]>
Commit | Line | Data |
---|---|---|
d0fa1179 | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
1da177e4 LT |
2 | /* |
3 | * Universal Interface for Intel High Definition Audio Codec | |
4 | * | |
1d045db9 | 5 | * HD audio interface patch for Realtek ALC codecs |
1da177e4 | 6 | * |
df694daa KY |
7 | * Copyright (c) 2004 Kailang Yang <[email protected]> |
8 | * PeiSen Hou <[email protected]> | |
1da177e4 | 9 | * Takashi Iwai <[email protected]> |
409a3e98 | 10 | * Jonathan Woithe <[email protected]> |
1da177e4 LT |
11 | */ |
12 | ||
1da177e4 LT |
13 | #include <linux/init.h> |
14 | #include <linux/delay.h> | |
15 | #include <linux/slab.h> | |
16 | #include <linux/pci.h> | |
08fb0d0e | 17 | #include <linux/dmi.h> |
da155d5b | 18 | #include <linux/module.h> |
33f4acd3 | 19 | #include <linux/input.h> |
87dc3648 | 20 | #include <linux/leds.h> |
1da177e4 | 21 | #include <sound/core.h> |
9ad0e496 | 22 | #include <sound/jack.h> |
be57bfff | 23 | #include <sound/hda_codec.h> |
1da177e4 | 24 | #include "hda_local.h" |
23d30f28 | 25 | #include "hda_auto_parser.h" |
1835a0f9 | 26 | #include "hda_jack.h" |
08c189f2 | 27 | #include "hda_generic.h" |
1da177e4 | 28 | |
cd63a5ff TI |
29 | /* keep halting ALC5505 DSP, for power saving */ |
30 | #define HALT_REALTEK_ALC5505 | |
31 | ||
4a79ba34 TI |
32 | /* extra amp-initialization sequence types */ |
33 | enum { | |
1c76aa5f | 34 | ALC_INIT_UNDEFINED, |
4a79ba34 TI |
35 | ALC_INIT_NONE, |
36 | ALC_INIT_DEFAULT, | |
4a79ba34 TI |
37 | }; |
38 | ||
73bdd597 DH |
39 | enum { |
40 | ALC_HEADSET_MODE_UNKNOWN, | |
41 | ALC_HEADSET_MODE_UNPLUGGED, | |
42 | ALC_HEADSET_MODE_HEADSET, | |
43 | ALC_HEADSET_MODE_MIC, | |
44 | ALC_HEADSET_MODE_HEADPHONE, | |
45 | }; | |
46 | ||
47 | enum { | |
48 | ALC_HEADSET_TYPE_UNKNOWN, | |
49 | ALC_HEADSET_TYPE_CTIA, | |
50 | ALC_HEADSET_TYPE_OMTP, | |
51 | }; | |
52 | ||
c7b60a89 HW |
53 | enum { |
54 | ALC_KEY_MICMUTE_INDEX, | |
55 | }; | |
56 | ||
da00c244 KY |
57 | struct alc_customize_define { |
58 | unsigned int sku_cfg; | |
59 | unsigned char port_connectivity; | |
60 | unsigned char check_sum; | |
61 | unsigned char customization; | |
62 | unsigned char external_amp; | |
63 | unsigned int enable_pcbeep:1; | |
64 | unsigned int platform_type:1; | |
65 | unsigned int swap:1; | |
66 | unsigned int override:1; | |
90622917 | 67 | unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */ |
da00c244 KY |
68 | }; |
69 | ||
766538ac TI |
70 | struct alc_coef_led { |
71 | unsigned int idx; | |
72 | unsigned int mask; | |
73 | unsigned int on; | |
74 | unsigned int off; | |
75 | }; | |
76 | ||
1da177e4 | 77 | struct alc_spec { |
08c189f2 | 78 | struct hda_gen_spec gen; /* must be at head */ |
23d30f28 | 79 | |
1da177e4 | 80 | /* codec parameterization */ |
da00c244 | 81 | struct alc_customize_define cdefine; |
08c189f2 | 82 | unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */ |
834be88d | 83 | |
5579cd6f TI |
84 | /* GPIO bits */ |
85 | unsigned int gpio_mask; | |
86 | unsigned int gpio_dir; | |
87 | unsigned int gpio_data; | |
215c850c | 88 | bool gpio_write_delay; /* add a delay before writing gpio_data */ |
5579cd6f | 89 | |
8d3d1ece | 90 | /* mute LED for HP laptops, see vref_mute_led_set() */ |
08fb0d0e | 91 | int mute_led_polarity; |
dbd13179 | 92 | int micmute_led_polarity; |
08fb0d0e | 93 | hda_nid_t mute_led_nid; |
9c5dc3bf | 94 | hda_nid_t cap_mute_led_nid; |
08fb0d0e | 95 | |
0f32fd19 TI |
96 | unsigned int gpio_mute_led_mask; |
97 | unsigned int gpio_mic_led_mask; | |
766538ac TI |
98 | struct alc_coef_led mute_led_coef; |
99 | struct alc_coef_led mic_led_coef; | |
9f5c6faf | 100 | |
73bdd597 DH |
101 | hda_nid_t headset_mic_pin; |
102 | hda_nid_t headphone_mic_pin; | |
103 | int current_headset_mode; | |
104 | int current_headset_type; | |
105 | ||
ae6b813a TI |
106 | /* hooks */ |
107 | void (*init_hook)(struct hda_codec *codec); | |
83012a7c | 108 | #ifdef CONFIG_PM |
c97259df | 109 | void (*power_hook)(struct hda_codec *codec); |
f5de24b0 | 110 | #endif |
1c716153 | 111 | void (*shutup)(struct hda_codec *codec); |
d922b51d | 112 | |
4a79ba34 | 113 | int init_amp; |
d433a678 | 114 | int codec_variant; /* flag for other variants */ |
97a26570 KY |
115 | unsigned int has_alc5505_dsp:1; |
116 | unsigned int no_depop_delay:1; | |
693abe11 | 117 | unsigned int done_hp_init:1; |
c0ca5ece | 118 | unsigned int no_shutup_pins:1; |
d3ba58bb | 119 | unsigned int ultra_low_power:1; |
476c02e0 | 120 | unsigned int has_hs_key:1; |
92666d45 | 121 | unsigned int no_internal_mic_pin:1; |
e64f14f4 | 122 | |
2c3bf9ab TI |
123 | /* for PLL fix */ |
124 | hda_nid_t pll_nid; | |
125 | unsigned int pll_coef_idx, pll_coef_bit; | |
1bb7e43e | 126 | unsigned int coef0; |
33f4acd3 | 127 | struct input_dev *kb_dev; |
c7b60a89 | 128 | u8 alc_mute_keycode_map[1]; |
df694daa KY |
129 | }; |
130 | ||
f2a227cd TI |
131 | /* |
132 | * COEF access helper functions | |
133 | */ | |
134 | ||
135 | static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid, | |
136 | unsigned int coef_idx) | |
137 | { | |
138 | unsigned int val; | |
139 | ||
140 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx); | |
141 | val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0); | |
142 | return val; | |
143 | } | |
144 | ||
145 | #define alc_read_coef_idx(codec, coef_idx) \ | |
146 | alc_read_coefex_idx(codec, 0x20, coef_idx) | |
147 | ||
148 | static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid, | |
149 | unsigned int coef_idx, unsigned int coef_val) | |
150 | { | |
151 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx); | |
152 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val); | |
153 | } | |
154 | ||
155 | #define alc_write_coef_idx(codec, coef_idx, coef_val) \ | |
156 | alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val) | |
157 | ||
98b24883 TI |
158 | static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid, |
159 | unsigned int coef_idx, unsigned int mask, | |
160 | unsigned int bits_set) | |
161 | { | |
162 | unsigned int val = alc_read_coefex_idx(codec, nid, coef_idx); | |
163 | ||
164 | if (val != -1) | |
165 | alc_write_coefex_idx(codec, nid, coef_idx, | |
166 | (val & ~mask) | bits_set); | |
167 | } | |
168 | ||
169 | #define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \ | |
170 | alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set) | |
171 | ||
f2a227cd TI |
172 | /* a special bypass for COEF 0; read the cached value at the second time */ |
173 | static unsigned int alc_get_coef0(struct hda_codec *codec) | |
174 | { | |
175 | struct alc_spec *spec = codec->spec; | |
176 | ||
177 | if (!spec->coef0) | |
178 | spec->coef0 = alc_read_coef_idx(codec, 0); | |
179 | return spec->coef0; | |
180 | } | |
181 | ||
54db6c39 TI |
182 | /* coef writes/updates batch */ |
183 | struct coef_fw { | |
184 | unsigned char nid; | |
185 | unsigned char idx; | |
186 | unsigned short mask; | |
187 | unsigned short val; | |
188 | }; | |
189 | ||
190 | #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \ | |
191 | { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) } | |
192 | #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val) | |
193 | #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val) | |
194 | #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val) | |
195 | ||
196 | static void alc_process_coef_fw(struct hda_codec *codec, | |
197 | const struct coef_fw *fw) | |
198 | { | |
199 | for (; fw->nid; fw++) { | |
200 | if (fw->mask == (unsigned short)-1) | |
201 | alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val); | |
202 | else | |
203 | alc_update_coefex_idx(codec, fw->nid, fw->idx, | |
204 | fw->mask, fw->val); | |
205 | } | |
206 | } | |
207 | ||
df694daa | 208 | /* |
1d045db9 | 209 | * GPIO setup tables, used in initialization |
df694daa | 210 | */ |
5579cd6f | 211 | |
bc9f98a9 | 212 | /* Enable GPIO mask and set output */ |
5579cd6f TI |
213 | static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask) |
214 | { | |
215 | struct alc_spec *spec = codec->spec; | |
bc9f98a9 | 216 | |
5579cd6f TI |
217 | spec->gpio_mask |= mask; |
218 | spec->gpio_dir |= mask; | |
219 | spec->gpio_data |= mask; | |
220 | } | |
bc9f98a9 | 221 | |
5579cd6f TI |
222 | static void alc_write_gpio_data(struct hda_codec *codec) |
223 | { | |
224 | struct alc_spec *spec = codec->spec; | |
225 | ||
226 | snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, | |
227 | spec->gpio_data); | |
228 | } | |
229 | ||
aaf312de TI |
230 | static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask, |
231 | bool on) | |
232 | { | |
233 | struct alc_spec *spec = codec->spec; | |
234 | unsigned int oldval = spec->gpio_data; | |
235 | ||
236 | if (on) | |
237 | spec->gpio_data |= mask; | |
238 | else | |
239 | spec->gpio_data &= ~mask; | |
240 | if (oldval != spec->gpio_data) | |
241 | alc_write_gpio_data(codec); | |
242 | } | |
243 | ||
5579cd6f TI |
244 | static void alc_write_gpio(struct hda_codec *codec) |
245 | { | |
246 | struct alc_spec *spec = codec->spec; | |
247 | ||
248 | if (!spec->gpio_mask) | |
249 | return; | |
250 | ||
251 | snd_hda_codec_write(codec, codec->core.afg, 0, | |
252 | AC_VERB_SET_GPIO_MASK, spec->gpio_mask); | |
253 | snd_hda_codec_write(codec, codec->core.afg, 0, | |
254 | AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir); | |
215c850c TI |
255 | if (spec->gpio_write_delay) |
256 | msleep(1); | |
5579cd6f TI |
257 | alc_write_gpio_data(codec); |
258 | } | |
259 | ||
260 | static void alc_fixup_gpio(struct hda_codec *codec, int action, | |
261 | unsigned int mask) | |
262 | { | |
263 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
264 | alc_setup_gpio(codec, mask); | |
265 | } | |
266 | ||
267 | static void alc_fixup_gpio1(struct hda_codec *codec, | |
268 | const struct hda_fixup *fix, int action) | |
269 | { | |
270 | alc_fixup_gpio(codec, action, 0x01); | |
271 | } | |
272 | ||
273 | static void alc_fixup_gpio2(struct hda_codec *codec, | |
274 | const struct hda_fixup *fix, int action) | |
275 | { | |
276 | alc_fixup_gpio(codec, action, 0x02); | |
277 | } | |
278 | ||
279 | static void alc_fixup_gpio3(struct hda_codec *codec, | |
280 | const struct hda_fixup *fix, int action) | |
281 | { | |
282 | alc_fixup_gpio(codec, action, 0x03); | |
283 | } | |
bdd148a3 | 284 | |
ae065f1c TI |
285 | static void alc_fixup_gpio4(struct hda_codec *codec, |
286 | const struct hda_fixup *fix, int action) | |
287 | { | |
288 | alc_fixup_gpio(codec, action, 0x04); | |
289 | } | |
290 | ||
8a503555 TI |
291 | static void alc_fixup_micmute_led(struct hda_codec *codec, |
292 | const struct hda_fixup *fix, int action) | |
293 | { | |
e65bf997 | 294 | if (action == HDA_FIXUP_ACT_PRE_PROBE) |
8a503555 TI |
295 | snd_hda_gen_add_micmute_led_cdev(codec, NULL); |
296 | } | |
297 | ||
2c3bf9ab TI |
298 | /* |
299 | * Fix hardware PLL issue | |
300 | * On some codecs, the analog PLL gating control must be off while | |
301 | * the default value is 1. | |
302 | */ | |
303 | static void alc_fix_pll(struct hda_codec *codec) | |
304 | { | |
305 | struct alc_spec *spec = codec->spec; | |
2c3bf9ab | 306 | |
98b24883 TI |
307 | if (spec->pll_nid) |
308 | alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx, | |
309 | 1 << spec->pll_coef_bit, 0); | |
2c3bf9ab TI |
310 | } |
311 | ||
312 | static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid, | |
313 | unsigned int coef_idx, unsigned int coef_bit) | |
314 | { | |
315 | struct alc_spec *spec = codec->spec; | |
316 | spec->pll_nid = nid; | |
317 | spec->pll_coef_idx = coef_idx; | |
318 | spec->pll_coef_bit = coef_bit; | |
319 | alc_fix_pll(codec); | |
320 | } | |
321 | ||
cf5a2279 | 322 | /* update the master volume per volume-knob's unsol event */ |
1a4f69d5 TI |
323 | static void alc_update_knob_master(struct hda_codec *codec, |
324 | struct hda_jack_callback *jack) | |
cf5a2279 TI |
325 | { |
326 | unsigned int val; | |
327 | struct snd_kcontrol *kctl; | |
328 | struct snd_ctl_elem_value *uctl; | |
329 | ||
330 | kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume"); | |
331 | if (!kctl) | |
332 | return; | |
333 | uctl = kzalloc(sizeof(*uctl), GFP_KERNEL); | |
334 | if (!uctl) | |
335 | return; | |
2ebab40e | 336 | val = snd_hda_codec_read(codec, jack->nid, 0, |
cf5a2279 TI |
337 | AC_VERB_GET_VOLUME_KNOB_CONTROL, 0); |
338 | val &= HDA_AMP_VOLMASK; | |
339 | uctl->value.integer.value[0] = val; | |
340 | uctl->value.integer.value[1] = val; | |
341 | kctl->put(kctl, uctl); | |
342 | kfree(uctl); | |
343 | } | |
344 | ||
29adc4b9 | 345 | static void alc880_unsol_event(struct hda_codec *codec, unsigned int res) |
f21d78e2 | 346 | { |
29adc4b9 DH |
347 | /* For some reason, the res given from ALC880 is broken. |
348 | Here we adjust it properly. */ | |
349 | snd_hda_jack_unsol_event(codec, res >> 2); | |
f21d78e2 TI |
350 | } |
351 | ||
394c97f8 KY |
352 | /* Change EAPD to verb control */ |
353 | static void alc_fill_eapd_coef(struct hda_codec *codec) | |
354 | { | |
355 | int coef; | |
356 | ||
357 | coef = alc_get_coef0(codec); | |
358 | ||
7639a06c | 359 | switch (codec->core.vendor_id) { |
394c97f8 KY |
360 | case 0x10ec0262: |
361 | alc_update_coef_idx(codec, 0x7, 0, 1<<5); | |
362 | break; | |
363 | case 0x10ec0267: | |
364 | case 0x10ec0268: | |
365 | alc_update_coef_idx(codec, 0x7, 0, 1<<13); | |
366 | break; | |
367 | case 0x10ec0269: | |
368 | if ((coef & 0x00f0) == 0x0010) | |
369 | alc_update_coef_idx(codec, 0xd, 0, 1<<14); | |
370 | if ((coef & 0x00f0) == 0x0020) | |
371 | alc_update_coef_idx(codec, 0x4, 1<<15, 0); | |
372 | if ((coef & 0x00f0) == 0x0030) | |
373 | alc_update_coef_idx(codec, 0x10, 1<<9, 0); | |
374 | break; | |
375 | case 0x10ec0280: | |
376 | case 0x10ec0284: | |
377 | case 0x10ec0290: | |
378 | case 0x10ec0292: | |
379 | alc_update_coef_idx(codec, 0x4, 1<<15, 0); | |
380 | break; | |
4231430d | 381 | case 0x10ec0225: |
44be77c5 TI |
382 | case 0x10ec0295: |
383 | case 0x10ec0299: | |
384 | alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000); | |
c0dbbdad | 385 | fallthrough; |
44be77c5 | 386 | case 0x10ec0215: |
1948fc06 | 387 | case 0x10ec0230: |
394c97f8 | 388 | case 0x10ec0233: |
ea04a1db | 389 | case 0x10ec0235: |
c4473744 | 390 | case 0x10ec0236: |
7fbdcd83 | 391 | case 0x10ec0245: |
394c97f8 | 392 | case 0x10ec0255: |
c4473744 | 393 | case 0x10ec0256: |
f429e7e4 | 394 | case 0x10ec0257: |
394c97f8 KY |
395 | case 0x10ec0282: |
396 | case 0x10ec0283: | |
397 | case 0x10ec0286: | |
398 | case 0x10ec0288: | |
0a6f0600 | 399 | case 0x10ec0285: |
506b62c3 | 400 | case 0x10ec0298: |
0a6f0600 | 401 | case 0x10ec0289: |
1078bef0 | 402 | case 0x10ec0300: |
394c97f8 KY |
403 | alc_update_coef_idx(codec, 0x10, 1<<9, 0); |
404 | break; | |
3aabf94c KY |
405 | case 0x10ec0275: |
406 | alc_update_coef_idx(codec, 0xe, 0, 1<<0); | |
407 | break; | |
8822702f HW |
408 | case 0x10ec0287: |
409 | alc_update_coef_idx(codec, 0x10, 1<<9, 0); | |
410 | alc_write_coef_idx(codec, 0x8, 0x4ab7); | |
411 | break; | |
394c97f8 KY |
412 | case 0x10ec0293: |
413 | alc_update_coef_idx(codec, 0xa, 1<<13, 0); | |
414 | break; | |
dcd4f0db KY |
415 | case 0x10ec0234: |
416 | case 0x10ec0274: | |
417 | case 0x10ec0294: | |
6fbae35a KY |
418 | case 0x10ec0700: |
419 | case 0x10ec0701: | |
420 | case 0x10ec0703: | |
83629532 | 421 | case 0x10ec0711: |
dcd4f0db KY |
422 | alc_update_coef_idx(codec, 0x10, 1<<15, 0); |
423 | break; | |
394c97f8 KY |
424 | case 0x10ec0662: |
425 | if ((coef & 0x00f0) == 0x0030) | |
426 | alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */ | |
427 | break; | |
428 | case 0x10ec0272: | |
429 | case 0x10ec0273: | |
430 | case 0x10ec0663: | |
431 | case 0x10ec0665: | |
432 | case 0x10ec0670: | |
433 | case 0x10ec0671: | |
434 | case 0x10ec0672: | |
435 | alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */ | |
436 | break; | |
9194a1eb | 437 | case 0x10ec0222: |
f0778871 KY |
438 | case 0x10ec0623: |
439 | alc_update_coef_idx(codec, 0x19, 1<<13, 0); | |
440 | break; | |
394c97f8 KY |
441 | case 0x10ec0668: |
442 | alc_update_coef_idx(codec, 0x7, 3<<13, 0); | |
443 | break; | |
444 | case 0x10ec0867: | |
445 | alc_update_coef_idx(codec, 0x4, 1<<10, 0); | |
446 | break; | |
447 | case 0x10ec0888: | |
448 | if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030) | |
449 | alc_update_coef_idx(codec, 0x7, 1<<5, 0); | |
450 | break; | |
451 | case 0x10ec0892: | |
e5782a5d | 452 | case 0x10ec0897: |
394c97f8 KY |
453 | alc_update_coef_idx(codec, 0x7, 1<<5, 0); |
454 | break; | |
455 | case 0x10ec0899: | |
456 | case 0x10ec0900: | |
6d9ffcff | 457 | case 0x10ec0b00: |
65553b12 | 458 | case 0x10ec1168: |
a535ad57 | 459 | case 0x10ec1220: |
394c97f8 KY |
460 | alc_update_coef_idx(codec, 0x7, 1<<1, 0); |
461 | break; | |
462 | } | |
463 | } | |
464 | ||
f9423e7a KY |
465 | /* additional initialization for ALC888 variants */ |
466 | static void alc888_coef_init(struct hda_codec *codec) | |
467 | { | |
1df8874b KY |
468 | switch (alc_get_coef0(codec) & 0x00f0) { |
469 | /* alc888-VA */ | |
470 | case 0x00: | |
471 | /* alc888-VB */ | |
472 | case 0x10: | |
473 | alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */ | |
474 | break; | |
475 | } | |
87a8c370 JK |
476 | } |
477 | ||
3fb4a508 TI |
478 | /* turn on/off EAPD control (only if available) */ |
479 | static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on) | |
480 | { | |
481 | if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) | |
482 | return; | |
483 | if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD) | |
484 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE, | |
485 | on ? 2 : 0); | |
486 | } | |
487 | ||
691f1fcc TI |
488 | /* turn on/off EAPD controls of the codec */ |
489 | static void alc_auto_setup_eapd(struct hda_codec *codec, bool on) | |
490 | { | |
491 | /* We currently only handle front, HP */ | |
caf3c043 | 492 | static const hda_nid_t pins[] = { |
af95b414 | 493 | 0x0f, 0x10, 0x14, 0x15, 0x17, 0 |
39fa84e9 | 494 | }; |
caf3c043 | 495 | const hda_nid_t *p; |
39fa84e9 TI |
496 | for (p = pins; *p; p++) |
497 | set_eapd(codec, *p, on); | |
691f1fcc TI |
498 | } |
499 | ||
dad3197d KY |
500 | static int find_ext_mic_pin(struct hda_codec *codec); |
501 | ||
502 | static void alc_headset_mic_no_shutup(struct hda_codec *codec) | |
503 | { | |
504 | const struct hda_pincfg *pin; | |
505 | int mic_pin = find_ext_mic_pin(codec); | |
506 | int i; | |
507 | ||
508 | /* don't shut up pins when unloading the driver; otherwise it breaks | |
509 | * the default pin setup at the next load of the driver | |
510 | */ | |
511 | if (codec->bus->shutdown) | |
512 | return; | |
513 | ||
514 | snd_array_for_each(&codec->init_pins, i, pin) { | |
515 | /* use read here for syncing after issuing each verb */ | |
516 | if (pin->nid != mic_pin) | |
517 | snd_hda_codec_read(codec, pin->nid, 0, | |
518 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0); | |
519 | } | |
520 | ||
521 | codec->pins_shutup = 1; | |
522 | } | |
523 | ||
c0ca5ece TI |
524 | static void alc_shutup_pins(struct hda_codec *codec) |
525 | { | |
526 | struct alc_spec *spec = codec->spec; | |
527 | ||
dad3197d | 528 | switch (codec->core.vendor_id) { |
5aec9891 KY |
529 | case 0x10ec0236: |
530 | case 0x10ec0256: | |
66c5d718 | 531 | case 0x10ec0283: |
dad3197d KY |
532 | case 0x10ec0286: |
533 | case 0x10ec0288: | |
534 | case 0x10ec0298: | |
535 | alc_headset_mic_no_shutup(codec); | |
536 | break; | |
537 | default: | |
538 | if (!spec->no_shutup_pins) | |
539 | snd_hda_shutup_pins(codec); | |
540 | break; | |
541 | } | |
c0ca5ece TI |
542 | } |
543 | ||
1c716153 | 544 | /* generic shutup callback; |
4ce8e6a5 | 545 | * just turning off EAPD and a little pause for avoiding pop-noise |
1c716153 TI |
546 | */ |
547 | static void alc_eapd_shutup(struct hda_codec *codec) | |
548 | { | |
97a26570 KY |
549 | struct alc_spec *spec = codec->spec; |
550 | ||
1c716153 | 551 | alc_auto_setup_eapd(codec, false); |
97a26570 KY |
552 | if (!spec->no_depop_delay) |
553 | msleep(200); | |
c0ca5ece | 554 | alc_shutup_pins(codec); |
1c716153 TI |
555 | } |
556 | ||
1d045db9 | 557 | /* generic EAPD initialization */ |
4a79ba34 | 558 | static void alc_auto_init_amp(struct hda_codec *codec, int type) |
bc9f98a9 | 559 | { |
39fa84e9 | 560 | alc_auto_setup_eapd(codec, true); |
5579cd6f | 561 | alc_write_gpio(codec); |
4a79ba34 | 562 | switch (type) { |
4a79ba34 | 563 | case ALC_INIT_DEFAULT: |
7639a06c | 564 | switch (codec->core.vendor_id) { |
c9b58006 | 565 | case 0x10ec0260: |
98b24883 | 566 | alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010); |
c9b58006 | 567 | break; |
c9b58006 KY |
568 | case 0x10ec0880: |
569 | case 0x10ec0882: | |
570 | case 0x10ec0883: | |
571 | case 0x10ec0885: | |
1df8874b | 572 | alc_update_coef_idx(codec, 7, 0, 0x2030); |
c9b58006 | 573 | break; |
f9423e7a | 574 | case 0x10ec0888: |
4a79ba34 | 575 | alc888_coef_init(codec); |
f9423e7a | 576 | break; |
bc9f98a9 | 577 | } |
4a79ba34 TI |
578 | break; |
579 | } | |
580 | } | |
581 | ||
35a39f98 TI |
582 | /* get a primary headphone pin if available */ |
583 | static hda_nid_t alc_get_hp_pin(struct alc_spec *spec) | |
584 | { | |
585 | if (spec->gen.autocfg.hp_pins[0]) | |
586 | return spec->gen.autocfg.hp_pins[0]; | |
587 | if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT) | |
588 | return spec->gen.autocfg.line_out_pins[0]; | |
589 | return 0; | |
590 | } | |
08c189f2 | 591 | |
1d045db9 | 592 | /* |
08c189f2 | 593 | * Realtek SSID verification |
1d045db9 | 594 | */ |
42cf0d01 | 595 | |
08c189f2 TI |
596 | /* Could be any non-zero and even value. When used as fixup, tells |
597 | * the driver to ignore any present sku defines. | |
598 | */ | |
599 | #define ALC_FIXUP_SKU_IGNORE (2) | |
1a1455de | 600 | |
08c189f2 TI |
601 | static void alc_fixup_sku_ignore(struct hda_codec *codec, |
602 | const struct hda_fixup *fix, int action) | |
1a1455de | 603 | { |
1a1455de | 604 | struct alc_spec *spec = codec->spec; |
08c189f2 TI |
605 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
606 | spec->cdefine.fixup = 1; | |
607 | spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE; | |
1a1455de | 608 | } |
1a1455de TI |
609 | } |
610 | ||
b5c6611f ML |
611 | static void alc_fixup_no_depop_delay(struct hda_codec *codec, |
612 | const struct hda_fixup *fix, int action) | |
613 | { | |
614 | struct alc_spec *spec = codec->spec; | |
615 | ||
84d2dc3e | 616 | if (action == HDA_FIXUP_ACT_PROBE) { |
b5c6611f | 617 | spec->no_depop_delay = 1; |
84d2dc3e ML |
618 | codec->depop_delay = 0; |
619 | } | |
b5c6611f ML |
620 | } |
621 | ||
08c189f2 | 622 | static int alc_auto_parse_customize_define(struct hda_codec *codec) |
4a79ba34 | 623 | { |
08c189f2 TI |
624 | unsigned int ass, tmp, i; |
625 | unsigned nid = 0; | |
4a79ba34 TI |
626 | struct alc_spec *spec = codec->spec; |
627 | ||
08c189f2 | 628 | spec->cdefine.enable_pcbeep = 1; /* assume always enabled */ |
4a79ba34 | 629 | |
08c189f2 TI |
630 | if (spec->cdefine.fixup) { |
631 | ass = spec->cdefine.sku_cfg; | |
632 | if (ass == ALC_FIXUP_SKU_IGNORE) | |
633 | return -1; | |
634 | goto do_sku; | |
bb35febd TI |
635 | } |
636 | ||
5100cd07 TI |
637 | if (!codec->bus->pci) |
638 | return -1; | |
7639a06c | 639 | ass = codec->core.subsystem_id & 0xffff; |
08c189f2 TI |
640 | if (ass != codec->bus->pci->subsystem_device && (ass & 1)) |
641 | goto do_sku; | |
4a79ba34 | 642 | |
08c189f2 | 643 | nid = 0x1d; |
7639a06c | 644 | if (codec->core.vendor_id == 0x10ec0260) |
08c189f2 TI |
645 | nid = 0x17; |
646 | ass = snd_hda_codec_get_pincfg(codec, nid); | |
42cf0d01 | 647 | |
08c189f2 | 648 | if (!(ass & 1)) { |
4e76a883 | 649 | codec_info(codec, "%s: SKU not ready 0x%08x\n", |
7639a06c | 650 | codec->core.chip_name, ass); |
08c189f2 | 651 | return -1; |
42cf0d01 DH |
652 | } |
653 | ||
08c189f2 TI |
654 | /* check sum */ |
655 | tmp = 0; | |
656 | for (i = 1; i < 16; i++) { | |
657 | if ((ass >> i) & 1) | |
658 | tmp++; | |
ae8a60a5 | 659 | } |
08c189f2 TI |
660 | if (((ass >> 16) & 0xf) != tmp) |
661 | return -1; | |
ae8a60a5 | 662 | |
da00c244 KY |
663 | spec->cdefine.port_connectivity = ass >> 30; |
664 | spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20; | |
665 | spec->cdefine.check_sum = (ass >> 16) & 0xf; | |
666 | spec->cdefine.customization = ass >> 8; | |
667 | do_sku: | |
668 | spec->cdefine.sku_cfg = ass; | |
669 | spec->cdefine.external_amp = (ass & 0x38) >> 3; | |
670 | spec->cdefine.platform_type = (ass & 0x4) >> 2; | |
671 | spec->cdefine.swap = (ass & 0x2) >> 1; | |
672 | spec->cdefine.override = ass & 0x1; | |
673 | ||
4e76a883 | 674 | codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n", |
da00c244 | 675 | nid, spec->cdefine.sku_cfg); |
4e76a883 | 676 | codec_dbg(codec, "SKU: port_connectivity=0x%x\n", |
da00c244 | 677 | spec->cdefine.port_connectivity); |
4e76a883 TI |
678 | codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep); |
679 | codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum); | |
680 | codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization); | |
681 | codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp); | |
682 | codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type); | |
683 | codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap); | |
684 | codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override); | |
da00c244 KY |
685 | |
686 | return 0; | |
687 | } | |
688 | ||
08c189f2 TI |
689 | /* return the position of NID in the list, or -1 if not found */ |
690 | static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums) | |
691 | { | |
692 | int i; | |
693 | for (i = 0; i < nums; i++) | |
694 | if (list[i] == nid) | |
695 | return i; | |
696 | return -1; | |
697 | } | |
1d045db9 | 698 | /* return true if the given NID is found in the list */ |
3af9ee6b TI |
699 | static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums) |
700 | { | |
21268961 | 701 | return find_idx_in_nid_list(nid, list, nums) >= 0; |
3af9ee6b TI |
702 | } |
703 | ||
4a79ba34 TI |
704 | /* check subsystem ID and set up device-specific initialization; |
705 | * return 1 if initialized, 0 if invalid SSID | |
706 | */ | |
707 | /* 32-bit subsystem ID for BIOS loading in HD Audio codec. | |
708 | * 31 ~ 16 : Manufacture ID | |
709 | * 15 ~ 8 : SKU ID | |
710 | * 7 ~ 0 : Assembly ID | |
711 | * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36 | |
712 | */ | |
58c57cfa | 713 | static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports) |
4a79ba34 TI |
714 | { |
715 | unsigned int ass, tmp, i; | |
716 | unsigned nid; | |
717 | struct alc_spec *spec = codec->spec; | |
718 | ||
90622917 DH |
719 | if (spec->cdefine.fixup) { |
720 | ass = spec->cdefine.sku_cfg; | |
721 | if (ass == ALC_FIXUP_SKU_IGNORE) | |
722 | return 0; | |
723 | goto do_sku; | |
724 | } | |
725 | ||
7639a06c | 726 | ass = codec->core.subsystem_id & 0xffff; |
5100cd07 TI |
727 | if (codec->bus->pci && |
728 | ass != codec->bus->pci->subsystem_device && (ass & 1)) | |
4a79ba34 TI |
729 | goto do_sku; |
730 | ||
731 | /* invalid SSID, check the special NID pin defcfg instead */ | |
732 | /* | |
def319f9 | 733 | * 31~30 : port connectivity |
4a79ba34 TI |
734 | * 29~21 : reserve |
735 | * 20 : PCBEEP input | |
736 | * 19~16 : Check sum (15:1) | |
737 | * 15~1 : Custom | |
738 | * 0 : override | |
739 | */ | |
740 | nid = 0x1d; | |
7639a06c | 741 | if (codec->core.vendor_id == 0x10ec0260) |
4a79ba34 TI |
742 | nid = 0x17; |
743 | ass = snd_hda_codec_get_pincfg(codec, nid); | |
4e76a883 TI |
744 | codec_dbg(codec, |
745 | "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n", | |
cb6605c1 | 746 | ass, nid); |
6227cdce | 747 | if (!(ass & 1)) |
4a79ba34 TI |
748 | return 0; |
749 | if ((ass >> 30) != 1) /* no physical connection */ | |
750 | return 0; | |
751 | ||
752 | /* check sum */ | |
753 | tmp = 0; | |
754 | for (i = 1; i < 16; i++) { | |
755 | if ((ass >> i) & 1) | |
756 | tmp++; | |
757 | } | |
758 | if (((ass >> 16) & 0xf) != tmp) | |
759 | return 0; | |
760 | do_sku: | |
4e76a883 | 761 | codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n", |
7639a06c | 762 | ass & 0xffff, codec->core.vendor_id); |
4a79ba34 TI |
763 | /* |
764 | * 0 : override | |
765 | * 1 : Swap Jack | |
766 | * 2 : 0 --> Desktop, 1 --> Laptop | |
767 | * 3~5 : External Amplifier control | |
768 | * 7~6 : Reserved | |
769 | */ | |
770 | tmp = (ass & 0x38) >> 3; /* external Amp control */ | |
1c76aa5f TI |
771 | if (spec->init_amp == ALC_INIT_UNDEFINED) { |
772 | switch (tmp) { | |
773 | case 1: | |
5579cd6f | 774 | alc_setup_gpio(codec, 0x01); |
1c76aa5f TI |
775 | break; |
776 | case 3: | |
5579cd6f | 777 | alc_setup_gpio(codec, 0x02); |
1c76aa5f TI |
778 | break; |
779 | case 7: | |
5579cd6f | 780 | alc_setup_gpio(codec, 0x03); |
1c76aa5f TI |
781 | break; |
782 | case 5: | |
783 | default: | |
784 | spec->init_amp = ALC_INIT_DEFAULT; | |
785 | break; | |
786 | } | |
bc9f98a9 | 787 | } |
ea1fb29a | 788 | |
8c427226 | 789 | /* is laptop or Desktop and enable the function "Mute internal speaker |
c9b58006 KY |
790 | * when the external headphone out jack is plugged" |
791 | */ | |
8c427226 | 792 | if (!(ass & 0x8000)) |
4a79ba34 | 793 | return 1; |
c9b58006 KY |
794 | /* |
795 | * 10~8 : Jack location | |
796 | * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered | |
797 | * 14~13: Resvered | |
798 | * 15 : 1 --> enable the function "Mute internal speaker | |
799 | * when the external headphone out jack is plugged" | |
800 | */ | |
35a39f98 | 801 | if (!alc_get_hp_pin(spec)) { |
01d4825d | 802 | hda_nid_t nid; |
c9b58006 | 803 | tmp = (ass >> 11) & 0x3; /* HP to chassis */ |
58c57cfa | 804 | nid = ports[tmp]; |
08c189f2 TI |
805 | if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins, |
806 | spec->gen.autocfg.line_outs)) | |
3af9ee6b | 807 | return 1; |
08c189f2 | 808 | spec->gen.autocfg.hp_pins[0] = nid; |
c9b58006 | 809 | } |
4a79ba34 TI |
810 | return 1; |
811 | } | |
ea1fb29a | 812 | |
3e6179b8 TI |
813 | /* Check the validity of ALC subsystem-id |
814 | * ports contains an array of 4 pin NIDs for port-A, E, D and I */ | |
815 | static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports) | |
4a79ba34 | 816 | { |
58c57cfa | 817 | if (!alc_subsystem_id(codec, ports)) { |
4a79ba34 | 818 | struct alc_spec *spec = codec->spec; |
67791202 TI |
819 | if (spec->init_amp == ALC_INIT_UNDEFINED) { |
820 | codec_dbg(codec, | |
821 | "realtek: Enable default setup for auto mode as fallback\n"); | |
822 | spec->init_amp = ALC_INIT_DEFAULT; | |
823 | } | |
4a79ba34 | 824 | } |
21268961 | 825 | } |
1a1455de | 826 | |
1d045db9 | 827 | /* |
ef8ef5fb | 828 | */ |
f9e336f6 | 829 | |
9d36a7dc DH |
830 | static void alc_fixup_inv_dmic(struct hda_codec *codec, |
831 | const struct hda_fixup *fix, int action) | |
125821ae TI |
832 | { |
833 | struct alc_spec *spec = codec->spec; | |
668d1e96 | 834 | |
9d36a7dc | 835 | spec->gen.inv_dmic_split = 1; |
6e72aa5f TI |
836 | } |
837 | ||
e9edcee0 | 838 | |
08c189f2 | 839 | static int alc_build_controls(struct hda_codec *codec) |
1d045db9 | 840 | { |
a5cb463a | 841 | int err; |
e9427969 | 842 | |
08c189f2 TI |
843 | err = snd_hda_gen_build_controls(codec); |
844 | if (err < 0) | |
845 | return err; | |
1da177e4 | 846 | |
1727a771 | 847 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD); |
1c4a54b4 | 848 | return 0; |
a361d84b KY |
849 | } |
850 | ||
a361d84b | 851 | |
df694daa | 852 | /* |
08c189f2 | 853 | * Common callbacks |
df694daa | 854 | */ |
a361d84b | 855 | |
c9af753f TI |
856 | static void alc_pre_init(struct hda_codec *codec) |
857 | { | |
858 | alc_fill_eapd_coef(codec); | |
859 | } | |
860 | ||
aeac1a0d KY |
861 | #define is_s3_resume(codec) \ |
862 | ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME) | |
c9af753f TI |
863 | #define is_s4_resume(codec) \ |
864 | ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE) | |
865 | ||
08c189f2 | 866 | static int alc_init(struct hda_codec *codec) |
1d045db9 TI |
867 | { |
868 | struct alc_spec *spec = codec->spec; | |
a361d84b | 869 | |
c9af753f TI |
870 | /* hibernation resume needs the full chip initialization */ |
871 | if (is_s4_resume(codec)) | |
872 | alc_pre_init(codec); | |
873 | ||
08c189f2 TI |
874 | if (spec->init_hook) |
875 | spec->init_hook(codec); | |
a361d84b | 876 | |
89781d08 | 877 | spec->gen.skip_verbs = 1; /* applied in below */ |
607ca3bd | 878 | snd_hda_gen_init(codec); |
08c189f2 TI |
879 | alc_fix_pll(codec); |
880 | alc_auto_init_amp(codec, spec->init_amp); | |
89781d08 | 881 | snd_hda_apply_verbs(codec); /* apply verbs here after own init */ |
3abf2f36 | 882 | |
1727a771 | 883 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT); |
a361d84b | 884 | |
1d045db9 TI |
885 | return 0; |
886 | } | |
a361d84b | 887 | |
08c189f2 | 888 | static inline void alc_shutup(struct hda_codec *codec) |
1d045db9 TI |
889 | { |
890 | struct alc_spec *spec = codec->spec; | |
a361d84b | 891 | |
c7273bd6 TI |
892 | if (!snd_hda_get_bool_hint(codec, "shutup")) |
893 | return; /* disabled explicitly by hints */ | |
894 | ||
08c189f2 TI |
895 | if (spec && spec->shutup) |
896 | spec->shutup(codec); | |
9bfb2844 | 897 | else |
c0ca5ece | 898 | alc_shutup_pins(codec); |
1d045db9 TI |
899 | } |
900 | ||
8a02c0cc | 901 | #define alc_free snd_hda_gen_free |
2134ea4f | 902 | |
08c189f2 TI |
903 | #ifdef CONFIG_PM |
904 | static void alc_power_eapd(struct hda_codec *codec) | |
1d045db9 | 905 | { |
08c189f2 | 906 | alc_auto_setup_eapd(codec, false); |
1d045db9 | 907 | } |
2134ea4f | 908 | |
08c189f2 | 909 | static int alc_suspend(struct hda_codec *codec) |
1d045db9 TI |
910 | { |
911 | struct alc_spec *spec = codec->spec; | |
08c189f2 TI |
912 | alc_shutup(codec); |
913 | if (spec && spec->power_hook) | |
914 | spec->power_hook(codec); | |
a361d84b KY |
915 | return 0; |
916 | } | |
08c189f2 | 917 | #endif |
a361d84b | 918 | |
08c189f2 TI |
919 | #ifdef CONFIG_PM |
920 | static int alc_resume(struct hda_codec *codec) | |
1d045db9 | 921 | { |
97a26570 KY |
922 | struct alc_spec *spec = codec->spec; |
923 | ||
924 | if (!spec->no_depop_delay) | |
925 | msleep(150); /* to avoid pop noise */ | |
08c189f2 | 926 | codec->patch_ops.init(codec); |
1a462be5 | 927 | snd_hda_regmap_sync(codec); |
08c189f2 TI |
928 | hda_call_check_power_status(codec, 0x01); |
929 | return 0; | |
1d045db9 | 930 | } |
08c189f2 | 931 | #endif |
f6a92248 | 932 | |
1d045db9 | 933 | /* |
1d045db9 | 934 | */ |
08c189f2 TI |
935 | static const struct hda_codec_ops alc_patch_ops = { |
936 | .build_controls = alc_build_controls, | |
937 | .build_pcms = snd_hda_gen_build_pcms, | |
938 | .init = alc_init, | |
939 | .free = alc_free, | |
940 | .unsol_event = snd_hda_jack_unsol_event, | |
941 | #ifdef CONFIG_PM | |
942 | .resume = alc_resume, | |
08c189f2 | 943 | .suspend = alc_suspend, |
fce52a3b | 944 | .check_power_status = snd_hda_gen_check_power_status, |
08c189f2 | 945 | #endif |
08c189f2 | 946 | }; |
f6a92248 | 947 | |
f53281e6 | 948 | |
ded255be | 949 | #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name) |
e01bf509 | 950 | |
e4770629 | 951 | /* |
4b016931 | 952 | * Rename codecs appropriately from COEF value or subvendor id |
e4770629 | 953 | */ |
08c189f2 TI |
954 | struct alc_codec_rename_table { |
955 | unsigned int vendor_id; | |
956 | unsigned short coef_mask; | |
957 | unsigned short coef_bits; | |
958 | const char *name; | |
959 | }; | |
84898e87 | 960 | |
4b016931 KY |
961 | struct alc_codec_rename_pci_table { |
962 | unsigned int codec_vendor_id; | |
963 | unsigned short pci_subvendor; | |
964 | unsigned short pci_subdevice; | |
965 | const char *name; | |
966 | }; | |
967 | ||
6b0f95c4 | 968 | static const struct alc_codec_rename_table rename_tbl[] = { |
e6e5f7ad | 969 | { 0x10ec0221, 0xf00f, 0x1003, "ALC231" }, |
08c189f2 TI |
970 | { 0x10ec0269, 0xfff0, 0x3010, "ALC277" }, |
971 | { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" }, | |
972 | { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" }, | |
973 | { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" }, | |
974 | { 0x10ec0269, 0xffff, 0xa023, "ALC259" }, | |
975 | { 0x10ec0269, 0xffff, 0x6023, "ALC281X" }, | |
976 | { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" }, | |
977 | { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" }, | |
e6e5f7ad | 978 | { 0x10ec0662, 0xffff, 0x4020, "ALC656" }, |
08c189f2 TI |
979 | { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" }, |
980 | { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" }, | |
981 | { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" }, | |
982 | { 0x10ec0899, 0x2000, 0x2000, "ALC899" }, | |
983 | { 0x10ec0892, 0xffff, 0x8020, "ALC661" }, | |
984 | { 0x10ec0892, 0xffff, 0x8011, "ALC661" }, | |
985 | { 0x10ec0892, 0xffff, 0x4011, "ALC656" }, | |
986 | { } /* terminator */ | |
987 | }; | |
84898e87 | 988 | |
6b0f95c4 | 989 | static const struct alc_codec_rename_pci_table rename_pci_tbl[] = { |
4b016931 KY |
990 | { 0x10ec0280, 0x1028, 0, "ALC3220" }, |
991 | { 0x10ec0282, 0x1028, 0, "ALC3221" }, | |
992 | { 0x10ec0283, 0x1028, 0, "ALC3223" }, | |
193177de | 993 | { 0x10ec0288, 0x1028, 0, "ALC3263" }, |
4b016931 | 994 | { 0x10ec0292, 0x1028, 0, "ALC3226" }, |
193177de | 995 | { 0x10ec0293, 0x1028, 0, "ALC3235" }, |
4b016931 KY |
996 | { 0x10ec0255, 0x1028, 0, "ALC3234" }, |
997 | { 0x10ec0668, 0x1028, 0, "ALC3661" }, | |
e6e5f7ad KY |
998 | { 0x10ec0275, 0x1028, 0, "ALC3260" }, |
999 | { 0x10ec0899, 0x1028, 0, "ALC3861" }, | |
2c674fac | 1000 | { 0x10ec0298, 0x1028, 0, "ALC3266" }, |
736f20a7 | 1001 | { 0x10ec0236, 0x1028, 0, "ALC3204" }, |
82324502 | 1002 | { 0x10ec0256, 0x1028, 0, "ALC3246" }, |
4231430d | 1003 | { 0x10ec0225, 0x1028, 0, "ALC3253" }, |
7d727869 | 1004 | { 0x10ec0295, 0x1028, 0, "ALC3254" }, |
28f1f9b2 | 1005 | { 0x10ec0299, 0x1028, 0, "ALC3271" }, |
e6e5f7ad KY |
1006 | { 0x10ec0670, 0x1025, 0, "ALC669X" }, |
1007 | { 0x10ec0676, 0x1025, 0, "ALC679X" }, | |
1008 | { 0x10ec0282, 0x1043, 0, "ALC3229" }, | |
1009 | { 0x10ec0233, 0x1043, 0, "ALC3236" }, | |
1010 | { 0x10ec0280, 0x103c, 0, "ALC3228" }, | |
1011 | { 0x10ec0282, 0x103c, 0, "ALC3227" }, | |
1012 | { 0x10ec0286, 0x103c, 0, "ALC3242" }, | |
1013 | { 0x10ec0290, 0x103c, 0, "ALC3241" }, | |
1014 | { 0x10ec0668, 0x103c, 0, "ALC3662" }, | |
1015 | { 0x10ec0283, 0x17aa, 0, "ALC3239" }, | |
1016 | { 0x10ec0292, 0x17aa, 0, "ALC3232" }, | |
4b016931 KY |
1017 | { } /* terminator */ |
1018 | }; | |
1019 | ||
08c189f2 | 1020 | static int alc_codec_rename_from_preset(struct hda_codec *codec) |
1d045db9 | 1021 | { |
08c189f2 | 1022 | const struct alc_codec_rename_table *p; |
4b016931 | 1023 | const struct alc_codec_rename_pci_table *q; |
60db6b53 | 1024 | |
08c189f2 | 1025 | for (p = rename_tbl; p->vendor_id; p++) { |
7639a06c | 1026 | if (p->vendor_id != codec->core.vendor_id) |
08c189f2 TI |
1027 | continue; |
1028 | if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits) | |
1029 | return alc_codec_rename(codec, p->name); | |
1d045db9 | 1030 | } |
4b016931 | 1031 | |
5100cd07 TI |
1032 | if (!codec->bus->pci) |
1033 | return 0; | |
4b016931 | 1034 | for (q = rename_pci_tbl; q->codec_vendor_id; q++) { |
7639a06c | 1035 | if (q->codec_vendor_id != codec->core.vendor_id) |
4b016931 KY |
1036 | continue; |
1037 | if (q->pci_subvendor != codec->bus->pci->subsystem_vendor) | |
1038 | continue; | |
1039 | if (!q->pci_subdevice || | |
1040 | q->pci_subdevice == codec->bus->pci->subsystem_device) | |
1041 | return alc_codec_rename(codec, q->name); | |
1042 | } | |
1043 | ||
08c189f2 | 1044 | return 0; |
1d045db9 | 1045 | } |
f53281e6 | 1046 | |
e4770629 | 1047 | |
1d045db9 TI |
1048 | /* |
1049 | * Digital-beep handlers | |
1050 | */ | |
1051 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | |
fea80fae TI |
1052 | |
1053 | /* additional beep mixers; private_value will be overwritten */ | |
1054 | static const struct snd_kcontrol_new alc_beep_mixer[] = { | |
1055 | HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT), | |
1056 | HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT), | |
1057 | }; | |
1058 | ||
1059 | /* set up and create beep controls */ | |
1060 | static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid, | |
1061 | int idx, int dir) | |
1062 | { | |
1063 | struct snd_kcontrol_new *knew; | |
1064 | unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir); | |
1065 | int i; | |
1066 | ||
1067 | for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) { | |
1068 | knew = snd_hda_gen_add_kctl(&spec->gen, NULL, | |
1069 | &alc_beep_mixer[i]); | |
1070 | if (!knew) | |
1071 | return -ENOMEM; | |
1072 | knew->private_value = beep_amp; | |
1073 | } | |
1074 | return 0; | |
1075 | } | |
84898e87 | 1076 | |
6317e5eb | 1077 | static const struct snd_pci_quirk beep_allow_list[] = { |
7110005e | 1078 | SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1), |
a4b7f21d | 1079 | SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1), |
1d045db9 | 1080 | SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1), |
8554ee40 | 1081 | SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1), |
1d045db9 TI |
1082 | SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1), |
1083 | SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1), | |
1084 | SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1), | |
78f8baf1 | 1085 | SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1), |
1d045db9 | 1086 | SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1), |
6317e5eb | 1087 | /* denylist -- no beep available */ |
051c78af TI |
1088 | SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0), |
1089 | SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0), | |
1d045db9 | 1090 | {} |
fe3eb0a7 KY |
1091 | }; |
1092 | ||
1d045db9 TI |
1093 | static inline int has_cdefine_beep(struct hda_codec *codec) |
1094 | { | |
1095 | struct alc_spec *spec = codec->spec; | |
1096 | const struct snd_pci_quirk *q; | |
6317e5eb | 1097 | q = snd_pci_quirk_lookup(codec->bus->pci, beep_allow_list); |
1d045db9 TI |
1098 | if (q) |
1099 | return q->value; | |
1100 | return spec->cdefine.enable_pcbeep; | |
1101 | } | |
1102 | #else | |
fea80fae | 1103 | #define set_beep_amp(spec, nid, idx, dir) 0 |
1d045db9 TI |
1104 | #define has_cdefine_beep(codec) 0 |
1105 | #endif | |
84898e87 | 1106 | |
1d045db9 TI |
1107 | /* parse the BIOS configuration and set up the alc_spec */ |
1108 | /* return 1 if successful, 0 if the proper config is not found, | |
1109 | * or a negative error code | |
1110 | */ | |
3e6179b8 TI |
1111 | static int alc_parse_auto_config(struct hda_codec *codec, |
1112 | const hda_nid_t *ignore_nids, | |
1113 | const hda_nid_t *ssid_nids) | |
1d045db9 TI |
1114 | { |
1115 | struct alc_spec *spec = codec->spec; | |
08c189f2 | 1116 | struct auto_pin_cfg *cfg = &spec->gen.autocfg; |
1d045db9 | 1117 | int err; |
26f5df26 | 1118 | |
53c334ad TI |
1119 | err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids, |
1120 | spec->parse_flags); | |
1d045db9 TI |
1121 | if (err < 0) |
1122 | return err; | |
3e6179b8 TI |
1123 | |
1124 | if (ssid_nids) | |
1125 | alc_ssid_check(codec, ssid_nids); | |
64154835 | 1126 | |
08c189f2 TI |
1127 | err = snd_hda_gen_parse_auto_config(codec, cfg); |
1128 | if (err < 0) | |
1129 | return err; | |
070cff4c | 1130 | |
1d045db9 | 1131 | return 1; |
60db6b53 | 1132 | } |
f6a92248 | 1133 | |
3de95173 TI |
1134 | /* common preparation job for alc_spec */ |
1135 | static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid) | |
1136 | { | |
1137 | struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL); | |
1138 | int err; | |
1139 | ||
1140 | if (!spec) | |
1141 | return -ENOMEM; | |
1142 | codec->spec = spec; | |
08c189f2 TI |
1143 | snd_hda_gen_spec_init(&spec->gen); |
1144 | spec->gen.mixer_nid = mixer_nid; | |
1145 | spec->gen.own_eapd_ctl = 1; | |
1098b7c2 | 1146 | codec->single_adc_amp = 1; |
08c189f2 TI |
1147 | /* FIXME: do we need this for all Realtek codec models? */ |
1148 | codec->spdif_status_reset = 1; | |
a6e7d0a4 | 1149 | codec->forced_resume = 1; |
225068ab | 1150 | codec->patch_ops = alc_patch_ops; |
3de95173 TI |
1151 | |
1152 | err = alc_codec_rename_from_preset(codec); | |
1153 | if (err < 0) { | |
1154 | kfree(spec); | |
1155 | return err; | |
1156 | } | |
1157 | return 0; | |
1158 | } | |
1159 | ||
3e6179b8 TI |
1160 | static int alc880_parse_auto_config(struct hda_codec *codec) |
1161 | { | |
1162 | static const hda_nid_t alc880_ignore[] = { 0x1d, 0 }; | |
7d7eb9ea | 1163 | static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 }; |
3e6179b8 TI |
1164 | return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids); |
1165 | } | |
1166 | ||
ee3b2969 TI |
1167 | /* |
1168 | * ALC880 fix-ups | |
1169 | */ | |
1170 | enum { | |
411225a0 | 1171 | ALC880_FIXUP_GPIO1, |
ee3b2969 TI |
1172 | ALC880_FIXUP_GPIO2, |
1173 | ALC880_FIXUP_MEDION_RIM, | |
dc6af52d | 1174 | ALC880_FIXUP_LG, |
db8a38e5 | 1175 | ALC880_FIXUP_LG_LW25, |
f02aab5d | 1176 | ALC880_FIXUP_W810, |
27e917f8 | 1177 | ALC880_FIXUP_EAPD_COEF, |
b9368f5c | 1178 | ALC880_FIXUP_TCL_S700, |
cf5a2279 TI |
1179 | ALC880_FIXUP_VOL_KNOB, |
1180 | ALC880_FIXUP_FUJITSU, | |
ba533818 | 1181 | ALC880_FIXUP_F1734, |
817de92f | 1182 | ALC880_FIXUP_UNIWILL, |
967b88c4 | 1183 | ALC880_FIXUP_UNIWILL_DIG, |
96e225f6 | 1184 | ALC880_FIXUP_Z71V, |
487a588d | 1185 | ALC880_FIXUP_ASUS_W5A, |
67b6ec31 TI |
1186 | ALC880_FIXUP_3ST_BASE, |
1187 | ALC880_FIXUP_3ST, | |
1188 | ALC880_FIXUP_3ST_DIG, | |
1189 | ALC880_FIXUP_5ST_BASE, | |
1190 | ALC880_FIXUP_5ST, | |
1191 | ALC880_FIXUP_5ST_DIG, | |
1192 | ALC880_FIXUP_6ST_BASE, | |
1193 | ALC880_FIXUP_6ST, | |
1194 | ALC880_FIXUP_6ST_DIG, | |
5397145f | 1195 | ALC880_FIXUP_6ST_AUTOMUTE, |
ee3b2969 TI |
1196 | }; |
1197 | ||
cf5a2279 TI |
1198 | /* enable the volume-knob widget support on NID 0x21 */ |
1199 | static void alc880_fixup_vol_knob(struct hda_codec *codec, | |
1727a771 | 1200 | const struct hda_fixup *fix, int action) |
cf5a2279 | 1201 | { |
1727a771 | 1202 | if (action == HDA_FIXUP_ACT_PROBE) |
62f949bf TI |
1203 | snd_hda_jack_detect_enable_callback(codec, 0x21, |
1204 | alc_update_knob_master); | |
cf5a2279 TI |
1205 | } |
1206 | ||
1727a771 | 1207 | static const struct hda_fixup alc880_fixups[] = { |
411225a0 | 1208 | [ALC880_FIXUP_GPIO1] = { |
5579cd6f TI |
1209 | .type = HDA_FIXUP_FUNC, |
1210 | .v.func = alc_fixup_gpio1, | |
411225a0 | 1211 | }, |
ee3b2969 | 1212 | [ALC880_FIXUP_GPIO2] = { |
5579cd6f TI |
1213 | .type = HDA_FIXUP_FUNC, |
1214 | .v.func = alc_fixup_gpio2, | |
ee3b2969 TI |
1215 | }, |
1216 | [ALC880_FIXUP_MEDION_RIM] = { | |
1727a771 | 1217 | .type = HDA_FIXUP_VERBS, |
ee3b2969 TI |
1218 | .v.verbs = (const struct hda_verb[]) { |
1219 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
1220 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 }, | |
1221 | { } | |
1222 | }, | |
1223 | .chained = true, | |
1224 | .chain_id = ALC880_FIXUP_GPIO2, | |
1225 | }, | |
dc6af52d | 1226 | [ALC880_FIXUP_LG] = { |
1727a771 TI |
1227 | .type = HDA_FIXUP_PINS, |
1228 | .v.pins = (const struct hda_pintbl[]) { | |
dc6af52d TI |
1229 | /* disable bogus unused pins */ |
1230 | { 0x16, 0x411111f0 }, | |
1231 | { 0x18, 0x411111f0 }, | |
1232 | { 0x1a, 0x411111f0 }, | |
1233 | { } | |
1234 | } | |
1235 | }, | |
db8a38e5 TI |
1236 | [ALC880_FIXUP_LG_LW25] = { |
1237 | .type = HDA_FIXUP_PINS, | |
1238 | .v.pins = (const struct hda_pintbl[]) { | |
1239 | { 0x1a, 0x0181344f }, /* line-in */ | |
1240 | { 0x1b, 0x0321403f }, /* headphone */ | |
1241 | { } | |
1242 | } | |
1243 | }, | |
f02aab5d | 1244 | [ALC880_FIXUP_W810] = { |
1727a771 TI |
1245 | .type = HDA_FIXUP_PINS, |
1246 | .v.pins = (const struct hda_pintbl[]) { | |
f02aab5d TI |
1247 | /* disable bogus unused pins */ |
1248 | { 0x17, 0x411111f0 }, | |
1249 | { } | |
1250 | }, | |
1251 | .chained = true, | |
1252 | .chain_id = ALC880_FIXUP_GPIO2, | |
1253 | }, | |
27e917f8 | 1254 | [ALC880_FIXUP_EAPD_COEF] = { |
1727a771 | 1255 | .type = HDA_FIXUP_VERBS, |
27e917f8 TI |
1256 | .v.verbs = (const struct hda_verb[]) { |
1257 | /* change to EAPD mode */ | |
1258 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
1259 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 }, | |
1260 | {} | |
1261 | }, | |
1262 | }, | |
b9368f5c | 1263 | [ALC880_FIXUP_TCL_S700] = { |
1727a771 | 1264 | .type = HDA_FIXUP_VERBS, |
b9368f5c TI |
1265 | .v.verbs = (const struct hda_verb[]) { |
1266 | /* change to EAPD mode */ | |
1267 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
1268 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, | |
1269 | {} | |
1270 | }, | |
1271 | .chained = true, | |
1272 | .chain_id = ALC880_FIXUP_GPIO2, | |
1273 | }, | |
cf5a2279 | 1274 | [ALC880_FIXUP_VOL_KNOB] = { |
1727a771 | 1275 | .type = HDA_FIXUP_FUNC, |
cf5a2279 TI |
1276 | .v.func = alc880_fixup_vol_knob, |
1277 | }, | |
1278 | [ALC880_FIXUP_FUJITSU] = { | |
1279 | /* override all pins as BIOS on old Amilo is broken */ | |
1727a771 TI |
1280 | .type = HDA_FIXUP_PINS, |
1281 | .v.pins = (const struct hda_pintbl[]) { | |
bb148bde | 1282 | { 0x14, 0x0121401f }, /* HP */ |
cf5a2279 TI |
1283 | { 0x15, 0x99030120 }, /* speaker */ |
1284 | { 0x16, 0x99030130 }, /* bass speaker */ | |
1285 | { 0x17, 0x411111f0 }, /* N/A */ | |
1286 | { 0x18, 0x411111f0 }, /* N/A */ | |
1287 | { 0x19, 0x01a19950 }, /* mic-in */ | |
1288 | { 0x1a, 0x411111f0 }, /* N/A */ | |
1289 | { 0x1b, 0x411111f0 }, /* N/A */ | |
1290 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1291 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1292 | { 0x1e, 0x01454140 }, /* SPDIF out */ | |
1293 | { } | |
1294 | }, | |
1295 | .chained = true, | |
1296 | .chain_id = ALC880_FIXUP_VOL_KNOB, | |
1297 | }, | |
ba533818 TI |
1298 | [ALC880_FIXUP_F1734] = { |
1299 | /* almost compatible with FUJITSU, but no bass and SPDIF */ | |
1727a771 TI |
1300 | .type = HDA_FIXUP_PINS, |
1301 | .v.pins = (const struct hda_pintbl[]) { | |
bb148bde | 1302 | { 0x14, 0x0121401f }, /* HP */ |
ba533818 TI |
1303 | { 0x15, 0x99030120 }, /* speaker */ |
1304 | { 0x16, 0x411111f0 }, /* N/A */ | |
1305 | { 0x17, 0x411111f0 }, /* N/A */ | |
1306 | { 0x18, 0x411111f0 }, /* N/A */ | |
1307 | { 0x19, 0x01a19950 }, /* mic-in */ | |
1308 | { 0x1a, 0x411111f0 }, /* N/A */ | |
1309 | { 0x1b, 0x411111f0 }, /* N/A */ | |
1310 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1311 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1312 | { 0x1e, 0x411111f0 }, /* N/A */ | |
1313 | { } | |
1314 | }, | |
1315 | .chained = true, | |
1316 | .chain_id = ALC880_FIXUP_VOL_KNOB, | |
1317 | }, | |
817de92f TI |
1318 | [ALC880_FIXUP_UNIWILL] = { |
1319 | /* need to fix HP and speaker pins to be parsed correctly */ | |
1727a771 TI |
1320 | .type = HDA_FIXUP_PINS, |
1321 | .v.pins = (const struct hda_pintbl[]) { | |
817de92f TI |
1322 | { 0x14, 0x0121411f }, /* HP */ |
1323 | { 0x15, 0x99030120 }, /* speaker */ | |
1324 | { 0x16, 0x99030130 }, /* bass speaker */ | |
1325 | { } | |
1326 | }, | |
1327 | }, | |
967b88c4 | 1328 | [ALC880_FIXUP_UNIWILL_DIG] = { |
1727a771 TI |
1329 | .type = HDA_FIXUP_PINS, |
1330 | .v.pins = (const struct hda_pintbl[]) { | |
967b88c4 TI |
1331 | /* disable bogus unused pins */ |
1332 | { 0x17, 0x411111f0 }, | |
1333 | { 0x19, 0x411111f0 }, | |
1334 | { 0x1b, 0x411111f0 }, | |
1335 | { 0x1f, 0x411111f0 }, | |
1336 | { } | |
1337 | } | |
1338 | }, | |
96e225f6 | 1339 | [ALC880_FIXUP_Z71V] = { |
1727a771 TI |
1340 | .type = HDA_FIXUP_PINS, |
1341 | .v.pins = (const struct hda_pintbl[]) { | |
96e225f6 TI |
1342 | /* set up the whole pins as BIOS is utterly broken */ |
1343 | { 0x14, 0x99030120 }, /* speaker */ | |
1344 | { 0x15, 0x0121411f }, /* HP */ | |
1345 | { 0x16, 0x411111f0 }, /* N/A */ | |
1346 | { 0x17, 0x411111f0 }, /* N/A */ | |
1347 | { 0x18, 0x01a19950 }, /* mic-in */ | |
1348 | { 0x19, 0x411111f0 }, /* N/A */ | |
1349 | { 0x1a, 0x01813031 }, /* line-in */ | |
1350 | { 0x1b, 0x411111f0 }, /* N/A */ | |
1351 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1352 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1353 | { 0x1e, 0x0144111e }, /* SPDIF */ | |
1354 | { } | |
1355 | } | |
1356 | }, | |
487a588d TI |
1357 | [ALC880_FIXUP_ASUS_W5A] = { |
1358 | .type = HDA_FIXUP_PINS, | |
1359 | .v.pins = (const struct hda_pintbl[]) { | |
1360 | /* set up the whole pins as BIOS is utterly broken */ | |
1361 | { 0x14, 0x0121411f }, /* HP */ | |
1362 | { 0x15, 0x411111f0 }, /* N/A */ | |
1363 | { 0x16, 0x411111f0 }, /* N/A */ | |
1364 | { 0x17, 0x411111f0 }, /* N/A */ | |
1365 | { 0x18, 0x90a60160 }, /* mic */ | |
1366 | { 0x19, 0x411111f0 }, /* N/A */ | |
1367 | { 0x1a, 0x411111f0 }, /* N/A */ | |
1368 | { 0x1b, 0x411111f0 }, /* N/A */ | |
1369 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1370 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1371 | { 0x1e, 0xb743111e }, /* SPDIF out */ | |
1372 | { } | |
1373 | }, | |
1374 | .chained = true, | |
1375 | .chain_id = ALC880_FIXUP_GPIO1, | |
1376 | }, | |
67b6ec31 | 1377 | [ALC880_FIXUP_3ST_BASE] = { |
1727a771 TI |
1378 | .type = HDA_FIXUP_PINS, |
1379 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1380 | { 0x14, 0x01014010 }, /* line-out */ |
1381 | { 0x15, 0x411111f0 }, /* N/A */ | |
1382 | { 0x16, 0x411111f0 }, /* N/A */ | |
1383 | { 0x17, 0x411111f0 }, /* N/A */ | |
1384 | { 0x18, 0x01a19c30 }, /* mic-in */ | |
1385 | { 0x19, 0x0121411f }, /* HP */ | |
1386 | { 0x1a, 0x01813031 }, /* line-in */ | |
1387 | { 0x1b, 0x02a19c40 }, /* front-mic */ | |
1388 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1389 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1390 | /* 0x1e is filled in below */ | |
1391 | { 0x1f, 0x411111f0 }, /* N/A */ | |
1392 | { } | |
1393 | } | |
1394 | }, | |
1395 | [ALC880_FIXUP_3ST] = { | |
1727a771 TI |
1396 | .type = HDA_FIXUP_PINS, |
1397 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1398 | { 0x1e, 0x411111f0 }, /* N/A */ |
1399 | { } | |
1400 | }, | |
1401 | .chained = true, | |
1402 | .chain_id = ALC880_FIXUP_3ST_BASE, | |
1403 | }, | |
1404 | [ALC880_FIXUP_3ST_DIG] = { | |
1727a771 TI |
1405 | .type = HDA_FIXUP_PINS, |
1406 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1407 | { 0x1e, 0x0144111e }, /* SPDIF */ |
1408 | { } | |
1409 | }, | |
1410 | .chained = true, | |
1411 | .chain_id = ALC880_FIXUP_3ST_BASE, | |
1412 | }, | |
1413 | [ALC880_FIXUP_5ST_BASE] = { | |
1727a771 TI |
1414 | .type = HDA_FIXUP_PINS, |
1415 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1416 | { 0x14, 0x01014010 }, /* front */ |
1417 | { 0x15, 0x411111f0 }, /* N/A */ | |
1418 | { 0x16, 0x01011411 }, /* CLFE */ | |
1419 | { 0x17, 0x01016412 }, /* surr */ | |
1420 | { 0x18, 0x01a19c30 }, /* mic-in */ | |
1421 | { 0x19, 0x0121411f }, /* HP */ | |
1422 | { 0x1a, 0x01813031 }, /* line-in */ | |
1423 | { 0x1b, 0x02a19c40 }, /* front-mic */ | |
1424 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1425 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1426 | /* 0x1e is filled in below */ | |
1427 | { 0x1f, 0x411111f0 }, /* N/A */ | |
1428 | { } | |
1429 | } | |
1430 | }, | |
1431 | [ALC880_FIXUP_5ST] = { | |
1727a771 TI |
1432 | .type = HDA_FIXUP_PINS, |
1433 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1434 | { 0x1e, 0x411111f0 }, /* N/A */ |
1435 | { } | |
1436 | }, | |
1437 | .chained = true, | |
1438 | .chain_id = ALC880_FIXUP_5ST_BASE, | |
1439 | }, | |
1440 | [ALC880_FIXUP_5ST_DIG] = { | |
1727a771 TI |
1441 | .type = HDA_FIXUP_PINS, |
1442 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1443 | { 0x1e, 0x0144111e }, /* SPDIF */ |
1444 | { } | |
1445 | }, | |
1446 | .chained = true, | |
1447 | .chain_id = ALC880_FIXUP_5ST_BASE, | |
1448 | }, | |
1449 | [ALC880_FIXUP_6ST_BASE] = { | |
1727a771 TI |
1450 | .type = HDA_FIXUP_PINS, |
1451 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1452 | { 0x14, 0x01014010 }, /* front */ |
1453 | { 0x15, 0x01016412 }, /* surr */ | |
1454 | { 0x16, 0x01011411 }, /* CLFE */ | |
1455 | { 0x17, 0x01012414 }, /* side */ | |
1456 | { 0x18, 0x01a19c30 }, /* mic-in */ | |
1457 | { 0x19, 0x02a19c40 }, /* front-mic */ | |
1458 | { 0x1a, 0x01813031 }, /* line-in */ | |
1459 | { 0x1b, 0x0121411f }, /* HP */ | |
1460 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1461 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1462 | /* 0x1e is filled in below */ | |
1463 | { 0x1f, 0x411111f0 }, /* N/A */ | |
1464 | { } | |
1465 | } | |
1466 | }, | |
1467 | [ALC880_FIXUP_6ST] = { | |
1727a771 TI |
1468 | .type = HDA_FIXUP_PINS, |
1469 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1470 | { 0x1e, 0x411111f0 }, /* N/A */ |
1471 | { } | |
1472 | }, | |
1473 | .chained = true, | |
1474 | .chain_id = ALC880_FIXUP_6ST_BASE, | |
1475 | }, | |
1476 | [ALC880_FIXUP_6ST_DIG] = { | |
1727a771 TI |
1477 | .type = HDA_FIXUP_PINS, |
1478 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1479 | { 0x1e, 0x0144111e }, /* SPDIF */ |
1480 | { } | |
1481 | }, | |
1482 | .chained = true, | |
1483 | .chain_id = ALC880_FIXUP_6ST_BASE, | |
1484 | }, | |
5397145f TI |
1485 | [ALC880_FIXUP_6ST_AUTOMUTE] = { |
1486 | .type = HDA_FIXUP_PINS, | |
1487 | .v.pins = (const struct hda_pintbl[]) { | |
1488 | { 0x1b, 0x0121401f }, /* HP with jack detect */ | |
1489 | { } | |
1490 | }, | |
1491 | .chained_before = true, | |
1492 | .chain_id = ALC880_FIXUP_6ST_BASE, | |
1493 | }, | |
ee3b2969 TI |
1494 | }; |
1495 | ||
1496 | static const struct snd_pci_quirk alc880_fixup_tbl[] = { | |
f02aab5d | 1497 | SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810), |
487a588d | 1498 | SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A), |
96e225f6 | 1499 | SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V), |
29e3fdcc | 1500 | SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1), |
6538de03 | 1501 | SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE), |
29e3fdcc | 1502 | SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2), |
27e917f8 | 1503 | SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF), |
967b88c4 | 1504 | SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG), |
ba533818 | 1505 | SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734), |
817de92f | 1506 | SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL), |
7833c7e8 | 1507 | SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB), |
f02aab5d | 1508 | SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810), |
ee3b2969 | 1509 | SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM), |
5397145f | 1510 | SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE), |
a161574e | 1511 | SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU), |
cf5a2279 | 1512 | SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU), |
ba533818 | 1513 | SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734), |
cf5a2279 | 1514 | SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU), |
dc6af52d TI |
1515 | SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG), |
1516 | SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG), | |
1517 | SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG), | |
db8a38e5 | 1518 | SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25), |
b9368f5c | 1519 | SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700), |
67b6ec31 TI |
1520 | |
1521 | /* Below is the copied entries from alc880_quirks.c. | |
1522 | * It's not quite sure whether BIOS sets the correct pin-config table | |
1523 | * on these machines, thus they are kept to be compatible with | |
1524 | * the old static quirks. Once when it's confirmed to work without | |
1525 | * these overrides, it'd be better to remove. | |
1526 | */ | |
1527 | SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG), | |
1528 | SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST), | |
1529 | SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG), | |
1530 | SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG), | |
1531 | SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG), | |
1532 | SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG), | |
1533 | SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG), | |
1534 | SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST), | |
1535 | SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG), | |
1536 | SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST), | |
1537 | SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST), | |
1538 | SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST), | |
1539 | SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST), | |
1540 | SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST), | |
1541 | SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG), | |
1542 | SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG), | |
1543 | SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG), | |
1544 | SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG), | |
1545 | SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG), | |
1546 | SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG), | |
1547 | SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG), | |
1548 | SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */ | |
1549 | SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG), | |
1550 | SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1551 | SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1552 | SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1553 | SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG), | |
1554 | SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1555 | SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG), | |
1556 | SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG), | |
1557 | SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1558 | SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1559 | SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1560 | /* default Intel */ | |
1561 | SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST), | |
1562 | SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG), | |
1563 | SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG), | |
1564 | {} | |
1565 | }; | |
1566 | ||
1727a771 | 1567 | static const struct hda_model_fixup alc880_fixup_models[] = { |
67b6ec31 TI |
1568 | {.id = ALC880_FIXUP_3ST, .name = "3stack"}, |
1569 | {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"}, | |
1570 | {.id = ALC880_FIXUP_5ST, .name = "5stack"}, | |
1571 | {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"}, | |
1572 | {.id = ALC880_FIXUP_6ST, .name = "6stack"}, | |
1573 | {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"}, | |
5397145f | 1574 | {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"}, |
ee3b2969 TI |
1575 | {} |
1576 | }; | |
1577 | ||
1578 | ||
1d045db9 TI |
1579 | /* |
1580 | * OK, here we have finally the patch for ALC880 | |
1581 | */ | |
1d045db9 | 1582 | static int patch_alc880(struct hda_codec *codec) |
60db6b53 | 1583 | { |
1d045db9 | 1584 | struct alc_spec *spec; |
1d045db9 | 1585 | int err; |
f6a92248 | 1586 | |
3de95173 TI |
1587 | err = alc_alloc_spec(codec, 0x0b); |
1588 | if (err < 0) | |
1589 | return err; | |
64154835 | 1590 | |
3de95173 | 1591 | spec = codec->spec; |
08c189f2 | 1592 | spec->gen.need_dac_fix = 1; |
7504b6cd | 1593 | spec->gen.beep_nid = 0x01; |
f53281e6 | 1594 | |
225068ab TI |
1595 | codec->patch_ops.unsol_event = alc880_unsol_event; |
1596 | ||
c9af753f TI |
1597 | alc_pre_init(codec); |
1598 | ||
1727a771 | 1599 | snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl, |
67b6ec31 | 1600 | alc880_fixups); |
1727a771 | 1601 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
ee3b2969 | 1602 | |
67b6ec31 TI |
1603 | /* automatic parse from the BIOS config */ |
1604 | err = alc880_parse_auto_config(codec); | |
1605 | if (err < 0) | |
1606 | goto error; | |
fe3eb0a7 | 1607 | |
fea80fae TI |
1608 | if (!spec->gen.no_analog) { |
1609 | err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | |
1610 | if (err < 0) | |
1611 | goto error; | |
1612 | } | |
f53281e6 | 1613 | |
1727a771 | 1614 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 1615 | |
1d045db9 | 1616 | return 0; |
e16fb6d1 TI |
1617 | |
1618 | error: | |
1619 | alc_free(codec); | |
1620 | return err; | |
226b1ec8 KY |
1621 | } |
1622 | ||
1d045db9 | 1623 | |
60db6b53 | 1624 | /* |
1d045db9 | 1625 | * ALC260 support |
60db6b53 | 1626 | */ |
1d045db9 | 1627 | static int alc260_parse_auto_config(struct hda_codec *codec) |
f6a92248 | 1628 | { |
1d045db9 | 1629 | static const hda_nid_t alc260_ignore[] = { 0x17, 0 }; |
3e6179b8 TI |
1630 | static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 }; |
1631 | return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids); | |
f6a92248 KY |
1632 | } |
1633 | ||
1d045db9 TI |
1634 | /* |
1635 | * Pin config fixes | |
1636 | */ | |
1637 | enum { | |
ca8f0424 TI |
1638 | ALC260_FIXUP_HP_DC5750, |
1639 | ALC260_FIXUP_HP_PIN_0F, | |
1640 | ALC260_FIXUP_COEF, | |
15317ab2 | 1641 | ALC260_FIXUP_GPIO1, |
20f7d928 TI |
1642 | ALC260_FIXUP_GPIO1_TOGGLE, |
1643 | ALC260_FIXUP_REPLACER, | |
0a1c4fa2 | 1644 | ALC260_FIXUP_HP_B1900, |
118cb4a4 | 1645 | ALC260_FIXUP_KN1, |
39aedee7 | 1646 | ALC260_FIXUP_FSC_S7020, |
5ebd3bbd | 1647 | ALC260_FIXUP_FSC_S7020_JWSE, |
d08c5ef2 | 1648 | ALC260_FIXUP_VAIO_PINS, |
1d045db9 TI |
1649 | }; |
1650 | ||
20f7d928 TI |
1651 | static void alc260_gpio1_automute(struct hda_codec *codec) |
1652 | { | |
1653 | struct alc_spec *spec = codec->spec; | |
aaf312de TI |
1654 | |
1655 | alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present); | |
20f7d928 TI |
1656 | } |
1657 | ||
1658 | static void alc260_fixup_gpio1_toggle(struct hda_codec *codec, | |
1727a771 | 1659 | const struct hda_fixup *fix, int action) |
20f7d928 TI |
1660 | { |
1661 | struct alc_spec *spec = codec->spec; | |
1727a771 | 1662 | if (action == HDA_FIXUP_ACT_PROBE) { |
20f7d928 TI |
1663 | /* although the machine has only one output pin, we need to |
1664 | * toggle GPIO1 according to the jack state | |
1665 | */ | |
08c189f2 TI |
1666 | spec->gen.automute_hook = alc260_gpio1_automute; |
1667 | spec->gen.detect_hp = 1; | |
1668 | spec->gen.automute_speaker = 1; | |
1669 | spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */ | |
62f949bf | 1670 | snd_hda_jack_detect_enable_callback(codec, 0x0f, |
08c189f2 | 1671 | snd_hda_gen_hp_automute); |
5579cd6f | 1672 | alc_setup_gpio(codec, 0x01); |
20f7d928 TI |
1673 | } |
1674 | } | |
1675 | ||
118cb4a4 | 1676 | static void alc260_fixup_kn1(struct hda_codec *codec, |
1727a771 | 1677 | const struct hda_fixup *fix, int action) |
118cb4a4 TI |
1678 | { |
1679 | struct alc_spec *spec = codec->spec; | |
1727a771 | 1680 | static const struct hda_pintbl pincfgs[] = { |
118cb4a4 TI |
1681 | { 0x0f, 0x02214000 }, /* HP/speaker */ |
1682 | { 0x12, 0x90a60160 }, /* int mic */ | |
1683 | { 0x13, 0x02a19000 }, /* ext mic */ | |
1684 | { 0x18, 0x01446000 }, /* SPDIF out */ | |
1685 | /* disable bogus I/O pins */ | |
1686 | { 0x10, 0x411111f0 }, | |
1687 | { 0x11, 0x411111f0 }, | |
1688 | { 0x14, 0x411111f0 }, | |
1689 | { 0x15, 0x411111f0 }, | |
1690 | { 0x16, 0x411111f0 }, | |
1691 | { 0x17, 0x411111f0 }, | |
1692 | { 0x19, 0x411111f0 }, | |
1693 | { } | |
1694 | }; | |
1695 | ||
1696 | switch (action) { | |
1727a771 TI |
1697 | case HDA_FIXUP_ACT_PRE_PROBE: |
1698 | snd_hda_apply_pincfgs(codec, pincfgs); | |
118cb4a4 TI |
1699 | spec->init_amp = ALC_INIT_NONE; |
1700 | break; | |
1701 | } | |
1702 | } | |
1703 | ||
39aedee7 TI |
1704 | static void alc260_fixup_fsc_s7020(struct hda_codec *codec, |
1705 | const struct hda_fixup *fix, int action) | |
1706 | { | |
1707 | struct alc_spec *spec = codec->spec; | |
1c76aa5f | 1708 | if (action == HDA_FIXUP_ACT_PRE_PROBE) |
5ebd3bbd TI |
1709 | spec->init_amp = ALC_INIT_NONE; |
1710 | } | |
39aedee7 | 1711 | |
5ebd3bbd TI |
1712 | static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec, |
1713 | const struct hda_fixup *fix, int action) | |
1714 | { | |
1715 | struct alc_spec *spec = codec->spec; | |
1716 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
f811c3cf | 1717 | spec->gen.add_jack_modes = 1; |
5ebd3bbd | 1718 | spec->gen.hp_mic = 1; |
e6e0ee50 | 1719 | } |
39aedee7 TI |
1720 | } |
1721 | ||
1727a771 | 1722 | static const struct hda_fixup alc260_fixups[] = { |
ca8f0424 | 1723 | [ALC260_FIXUP_HP_DC5750] = { |
1727a771 TI |
1724 | .type = HDA_FIXUP_PINS, |
1725 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
1726 | { 0x11, 0x90130110 }, /* speaker */ |
1727 | { } | |
1728 | } | |
1729 | }, | |
ca8f0424 | 1730 | [ALC260_FIXUP_HP_PIN_0F] = { |
1727a771 TI |
1731 | .type = HDA_FIXUP_PINS, |
1732 | .v.pins = (const struct hda_pintbl[]) { | |
ca8f0424 TI |
1733 | { 0x0f, 0x01214000 }, /* HP */ |
1734 | { } | |
1735 | } | |
1736 | }, | |
1737 | [ALC260_FIXUP_COEF] = { | |
1727a771 | 1738 | .type = HDA_FIXUP_VERBS, |
ca8f0424 | 1739 | .v.verbs = (const struct hda_verb[]) { |
e30cf2d2 RM |
1740 | { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 }, |
1741 | { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 }, | |
ca8f0424 TI |
1742 | { } |
1743 | }, | |
ca8f0424 | 1744 | }, |
15317ab2 | 1745 | [ALC260_FIXUP_GPIO1] = { |
5579cd6f TI |
1746 | .type = HDA_FIXUP_FUNC, |
1747 | .v.func = alc_fixup_gpio1, | |
15317ab2 | 1748 | }, |
20f7d928 | 1749 | [ALC260_FIXUP_GPIO1_TOGGLE] = { |
1727a771 | 1750 | .type = HDA_FIXUP_FUNC, |
20f7d928 TI |
1751 | .v.func = alc260_fixup_gpio1_toggle, |
1752 | .chained = true, | |
1753 | .chain_id = ALC260_FIXUP_HP_PIN_0F, | |
1754 | }, | |
1755 | [ALC260_FIXUP_REPLACER] = { | |
1727a771 | 1756 | .type = HDA_FIXUP_VERBS, |
20f7d928 | 1757 | .v.verbs = (const struct hda_verb[]) { |
192a98e2 TI |
1758 | { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 }, |
1759 | { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 }, | |
20f7d928 TI |
1760 | { } |
1761 | }, | |
1762 | .chained = true, | |
1763 | .chain_id = ALC260_FIXUP_GPIO1_TOGGLE, | |
1764 | }, | |
0a1c4fa2 | 1765 | [ALC260_FIXUP_HP_B1900] = { |
1727a771 | 1766 | .type = HDA_FIXUP_FUNC, |
0a1c4fa2 TI |
1767 | .v.func = alc260_fixup_gpio1_toggle, |
1768 | .chained = true, | |
1769 | .chain_id = ALC260_FIXUP_COEF, | |
118cb4a4 TI |
1770 | }, |
1771 | [ALC260_FIXUP_KN1] = { | |
1727a771 | 1772 | .type = HDA_FIXUP_FUNC, |
118cb4a4 TI |
1773 | .v.func = alc260_fixup_kn1, |
1774 | }, | |
39aedee7 TI |
1775 | [ALC260_FIXUP_FSC_S7020] = { |
1776 | .type = HDA_FIXUP_FUNC, | |
1777 | .v.func = alc260_fixup_fsc_s7020, | |
1778 | }, | |
5ebd3bbd TI |
1779 | [ALC260_FIXUP_FSC_S7020_JWSE] = { |
1780 | .type = HDA_FIXUP_FUNC, | |
1781 | .v.func = alc260_fixup_fsc_s7020_jwse, | |
1782 | .chained = true, | |
1783 | .chain_id = ALC260_FIXUP_FSC_S7020, | |
1784 | }, | |
d08c5ef2 TI |
1785 | [ALC260_FIXUP_VAIO_PINS] = { |
1786 | .type = HDA_FIXUP_PINS, | |
1787 | .v.pins = (const struct hda_pintbl[]) { | |
1788 | /* Pin configs are missing completely on some VAIOs */ | |
1789 | { 0x0f, 0x01211020 }, | |
1790 | { 0x10, 0x0001003f }, | |
1791 | { 0x11, 0x411111f0 }, | |
1792 | { 0x12, 0x01a15930 }, | |
1793 | { 0x13, 0x411111f0 }, | |
1794 | { 0x14, 0x411111f0 }, | |
1795 | { 0x15, 0x411111f0 }, | |
1796 | { 0x16, 0x411111f0 }, | |
1797 | { 0x17, 0x411111f0 }, | |
1798 | { 0x18, 0x411111f0 }, | |
1799 | { 0x19, 0x411111f0 }, | |
1800 | { } | |
1801 | } | |
1802 | }, | |
1d045db9 TI |
1803 | }; |
1804 | ||
1805 | static const struct snd_pci_quirk alc260_fixup_tbl[] = { | |
15317ab2 | 1806 | SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1), |
ca8f0424 | 1807 | SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF), |
15317ab2 | 1808 | SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1), |
ca8f0424 | 1809 | SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750), |
0a1c4fa2 | 1810 | SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900), |
d08c5ef2 | 1811 | SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS), |
0f5a5b85 | 1812 | SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F), |
39aedee7 | 1813 | SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020), |
b1f58085 | 1814 | SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1), |
118cb4a4 | 1815 | SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1), |
20f7d928 | 1816 | SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER), |
ca8f0424 | 1817 | SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF), |
1d045db9 TI |
1818 | {} |
1819 | }; | |
1820 | ||
5ebd3bbd TI |
1821 | static const struct hda_model_fixup alc260_fixup_models[] = { |
1822 | {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"}, | |
1823 | {.id = ALC260_FIXUP_COEF, .name = "coef"}, | |
1824 | {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"}, | |
1825 | {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"}, | |
1826 | {} | |
1827 | }; | |
1828 | ||
1d045db9 TI |
1829 | /* |
1830 | */ | |
1d045db9 | 1831 | static int patch_alc260(struct hda_codec *codec) |
977ddd6b | 1832 | { |
1d045db9 | 1833 | struct alc_spec *spec; |
c3c2c9e7 | 1834 | int err; |
1d045db9 | 1835 | |
3de95173 TI |
1836 | err = alc_alloc_spec(codec, 0x07); |
1837 | if (err < 0) | |
1838 | return err; | |
1d045db9 | 1839 | |
3de95173 | 1840 | spec = codec->spec; |
ea46c3c8 TI |
1841 | /* as quite a few machines require HP amp for speaker outputs, |
1842 | * it's easier to enable it unconditionally; even if it's unneeded, | |
1843 | * it's almost harmless. | |
1844 | */ | |
1845 | spec->gen.prefer_hp_amp = 1; | |
7504b6cd | 1846 | spec->gen.beep_nid = 0x01; |
1d045db9 | 1847 | |
225068ab TI |
1848 | spec->shutup = alc_eapd_shutup; |
1849 | ||
c9af753f TI |
1850 | alc_pre_init(codec); |
1851 | ||
5ebd3bbd TI |
1852 | snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl, |
1853 | alc260_fixups); | |
1727a771 | 1854 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
977ddd6b | 1855 | |
c3c2c9e7 TI |
1856 | /* automatic parse from the BIOS config */ |
1857 | err = alc260_parse_auto_config(codec); | |
1858 | if (err < 0) | |
1859 | goto error; | |
977ddd6b | 1860 | |
fea80fae TI |
1861 | if (!spec->gen.no_analog) { |
1862 | err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT); | |
1863 | if (err < 0) | |
1864 | goto error; | |
1865 | } | |
977ddd6b | 1866 | |
1727a771 | 1867 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 1868 | |
1d045db9 | 1869 | return 0; |
e16fb6d1 TI |
1870 | |
1871 | error: | |
1872 | alc_free(codec); | |
1873 | return err; | |
6981d184 TI |
1874 | } |
1875 | ||
1d045db9 TI |
1876 | |
1877 | /* | |
1878 | * ALC882/883/885/888/889 support | |
1879 | * | |
1880 | * ALC882 is almost identical with ALC880 but has cleaner and more flexible | |
1881 | * configuration. Each pin widget can choose any input DACs and a mixer. | |
1882 | * Each ADC is connected from a mixer of all inputs. This makes possible | |
1883 | * 6-channel independent captures. | |
1884 | * | |
1885 | * In addition, an independent DAC for the multi-playback (not used in this | |
1886 | * driver yet). | |
1887 | */ | |
1d045db9 TI |
1888 | |
1889 | /* | |
1890 | * Pin config fixes | |
1891 | */ | |
ff818c24 | 1892 | enum { |
5c0ebfbe TI |
1893 | ALC882_FIXUP_ABIT_AW9D_MAX, |
1894 | ALC882_FIXUP_LENOVO_Y530, | |
1895 | ALC882_FIXUP_PB_M5210, | |
1896 | ALC882_FIXUP_ACER_ASPIRE_7736, | |
1897 | ALC882_FIXUP_ASUS_W90V, | |
8f239214 | 1898 | ALC889_FIXUP_CD, |
b2c53e20 | 1899 | ALC889_FIXUP_FRONT_HP_NO_PRESENCE, |
5c0ebfbe | 1900 | ALC889_FIXUP_VAIO_TT, |
0e7cc2e7 | 1901 | ALC888_FIXUP_EEE1601, |
4841b8e6 | 1902 | ALC886_FIXUP_EAPD, |
177943a3 | 1903 | ALC882_FIXUP_EAPD, |
7a6069bf | 1904 | ALC883_FIXUP_EAPD, |
8812c4f9 | 1905 | ALC883_FIXUP_ACER_EAPD, |
1a97b7f2 TI |
1906 | ALC882_FIXUP_GPIO1, |
1907 | ALC882_FIXUP_GPIO2, | |
eb844d51 | 1908 | ALC882_FIXUP_GPIO3, |
68ef0561 TI |
1909 | ALC889_FIXUP_COEF, |
1910 | ALC882_FIXUP_ASUS_W2JC, | |
c3e837bb TI |
1911 | ALC882_FIXUP_ACER_ASPIRE_4930G, |
1912 | ALC882_FIXUP_ACER_ASPIRE_8930G, | |
1913 | ALC882_FIXUP_ASPIRE_8930G_VERBS, | |
5671087f | 1914 | ALC885_FIXUP_MACPRO_GPIO, |
02a237b2 | 1915 | ALC889_FIXUP_DAC_ROUTE, |
1a97b7f2 TI |
1916 | ALC889_FIXUP_MBP_VREF, |
1917 | ALC889_FIXUP_IMAC91_VREF, | |
e7729a41 | 1918 | ALC889_FIXUP_MBA11_VREF, |
0756f09c | 1919 | ALC889_FIXUP_MBA21_VREF, |
c20f31ec | 1920 | ALC889_FIXUP_MP11_VREF, |
9f660a1c | 1921 | ALC889_FIXUP_MP41_VREF, |
6e72aa5f | 1922 | ALC882_FIXUP_INV_DMIC, |
e427c237 | 1923 | ALC882_FIXUP_NO_PRIMARY_HP, |
1f0bbf03 | 1924 | ALC887_FIXUP_ASUS_BASS, |
eb9ca3ab | 1925 | ALC887_FIXUP_BASS_CHMAP, |
7beb3a6e | 1926 | ALC1220_FIXUP_GB_DUAL_CODECS, |
0202f5cd | 1927 | ALC1220_FIXUP_CLEVO_P950, |
80690a27 RS |
1928 | ALC1220_FIXUP_CLEVO_PB51ED, |
1929 | ALC1220_FIXUP_CLEVO_PB51ED_PINS, | |
ca184355 JHP |
1930 | ALC887_FIXUP_ASUS_AUDIO, |
1931 | ALC887_FIXUP_ASUS_HMIC, | |
ff818c24 TI |
1932 | }; |
1933 | ||
68ef0561 | 1934 | static void alc889_fixup_coef(struct hda_codec *codec, |
1727a771 | 1935 | const struct hda_fixup *fix, int action) |
68ef0561 | 1936 | { |
1727a771 | 1937 | if (action != HDA_FIXUP_ACT_INIT) |
68ef0561 | 1938 | return; |
1df8874b | 1939 | alc_update_coef_idx(codec, 7, 0, 0x2030); |
68ef0561 TI |
1940 | } |
1941 | ||
5671087f TI |
1942 | /* set up GPIO at initialization */ |
1943 | static void alc885_fixup_macpro_gpio(struct hda_codec *codec, | |
1727a771 | 1944 | const struct hda_fixup *fix, int action) |
5671087f | 1945 | { |
215c850c TI |
1946 | struct alc_spec *spec = codec->spec; |
1947 | ||
1948 | spec->gpio_write_delay = true; | |
1949 | alc_fixup_gpio3(codec, fix, action); | |
5671087f TI |
1950 | } |
1951 | ||
02a237b2 TI |
1952 | /* Fix the connection of some pins for ALC889: |
1953 | * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't | |
1954 | * work correctly (bko#42740) | |
1955 | */ | |
1956 | static void alc889_fixup_dac_route(struct hda_codec *codec, | |
1727a771 | 1957 | const struct hda_fixup *fix, int action) |
02a237b2 | 1958 | { |
1727a771 | 1959 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
ef8d60fb | 1960 | /* fake the connections during parsing the tree */ |
caf3c043 MM |
1961 | static const hda_nid_t conn1[] = { 0x0c, 0x0d }; |
1962 | static const hda_nid_t conn2[] = { 0x0e, 0x0f }; | |
1963 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1); | |
1964 | snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1); | |
1965 | snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn2), conn2); | |
1966 | snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn2), conn2); | |
1727a771 | 1967 | } else if (action == HDA_FIXUP_ACT_PROBE) { |
ef8d60fb | 1968 | /* restore the connections */ |
caf3c043 MM |
1969 | static const hda_nid_t conn[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 }; |
1970 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn); | |
1971 | snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn), conn); | |
1972 | snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn), conn); | |
1973 | snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn), conn); | |
02a237b2 TI |
1974 | } |
1975 | } | |
1976 | ||
1a97b7f2 TI |
1977 | /* Set VREF on HP pin */ |
1978 | static void alc889_fixup_mbp_vref(struct hda_codec *codec, | |
1727a771 | 1979 | const struct hda_fixup *fix, int action) |
1a97b7f2 | 1980 | { |
caf3c043 | 1981 | static const hda_nid_t nids[] = { 0x14, 0x15, 0x19 }; |
1a97b7f2 | 1982 | struct alc_spec *spec = codec->spec; |
1a97b7f2 TI |
1983 | int i; |
1984 | ||
1727a771 | 1985 | if (action != HDA_FIXUP_ACT_INIT) |
1a97b7f2 TI |
1986 | return; |
1987 | for (i = 0; i < ARRAY_SIZE(nids); i++) { | |
1988 | unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]); | |
1989 | if (get_defcfg_device(val) != AC_JACK_HP_OUT) | |
1990 | continue; | |
d3f02d60 | 1991 | val = snd_hda_codec_get_pin_target(codec, nids[i]); |
1a97b7f2 | 1992 | val |= AC_PINCTL_VREF_80; |
cdd03ced | 1993 | snd_hda_set_pin_ctl(codec, nids[i], val); |
08c189f2 | 1994 | spec->gen.keep_vref_in_automute = 1; |
1a97b7f2 TI |
1995 | break; |
1996 | } | |
1997 | } | |
1998 | ||
0756f09c TI |
1999 | static void alc889_fixup_mac_pins(struct hda_codec *codec, |
2000 | const hda_nid_t *nids, int num_nids) | |
1a97b7f2 TI |
2001 | { |
2002 | struct alc_spec *spec = codec->spec; | |
1a97b7f2 TI |
2003 | int i; |
2004 | ||
0756f09c | 2005 | for (i = 0; i < num_nids; i++) { |
1a97b7f2 | 2006 | unsigned int val; |
d3f02d60 | 2007 | val = snd_hda_codec_get_pin_target(codec, nids[i]); |
1a97b7f2 | 2008 | val |= AC_PINCTL_VREF_50; |
cdd03ced | 2009 | snd_hda_set_pin_ctl(codec, nids[i], val); |
1a97b7f2 | 2010 | } |
08c189f2 | 2011 | spec->gen.keep_vref_in_automute = 1; |
1a97b7f2 TI |
2012 | } |
2013 | ||
0756f09c TI |
2014 | /* Set VREF on speaker pins on imac91 */ |
2015 | static void alc889_fixup_imac91_vref(struct hda_codec *codec, | |
2016 | const struct hda_fixup *fix, int action) | |
2017 | { | |
caf3c043 | 2018 | static const hda_nid_t nids[] = { 0x18, 0x1a }; |
0756f09c TI |
2019 | |
2020 | if (action == HDA_FIXUP_ACT_INIT) | |
2021 | alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids)); | |
2022 | } | |
2023 | ||
e7729a41 AV |
2024 | /* Set VREF on speaker pins on mba11 */ |
2025 | static void alc889_fixup_mba11_vref(struct hda_codec *codec, | |
2026 | const struct hda_fixup *fix, int action) | |
2027 | { | |
caf3c043 | 2028 | static const hda_nid_t nids[] = { 0x18 }; |
e7729a41 AV |
2029 | |
2030 | if (action == HDA_FIXUP_ACT_INIT) | |
2031 | alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids)); | |
2032 | } | |
2033 | ||
0756f09c TI |
2034 | /* Set VREF on speaker pins on mba21 */ |
2035 | static void alc889_fixup_mba21_vref(struct hda_codec *codec, | |
2036 | const struct hda_fixup *fix, int action) | |
2037 | { | |
caf3c043 | 2038 | static const hda_nid_t nids[] = { 0x18, 0x19 }; |
0756f09c TI |
2039 | |
2040 | if (action == HDA_FIXUP_ACT_INIT) | |
2041 | alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids)); | |
2042 | } | |
2043 | ||
e427c237 | 2044 | /* Don't take HP output as primary |
d9111496 FLVC |
2045 | * Strangely, the speaker output doesn't work on Vaio Z and some Vaio |
2046 | * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05 | |
e427c237 TI |
2047 | */ |
2048 | static void alc882_fixup_no_primary_hp(struct hda_codec *codec, | |
1727a771 | 2049 | const struct hda_fixup *fix, int action) |
e427c237 TI |
2050 | { |
2051 | struct alc_spec *spec = codec->spec; | |
da96fb5b | 2052 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
08c189f2 | 2053 | spec->gen.no_primary_hp = 1; |
da96fb5b TI |
2054 | spec->gen.no_multi_io = 1; |
2055 | } | |
e427c237 TI |
2056 | } |
2057 | ||
eb9ca3ab TI |
2058 | static void alc_fixup_bass_chmap(struct hda_codec *codec, |
2059 | const struct hda_fixup *fix, int action); | |
2060 | ||
7beb3a6e TI |
2061 | /* For dual-codec configuration, we need to disable some features to avoid |
2062 | * conflicts of kctls and PCM streams | |
2063 | */ | |
2064 | static void alc_fixup_dual_codecs(struct hda_codec *codec, | |
2065 | const struct hda_fixup *fix, int action) | |
2066 | { | |
2067 | struct alc_spec *spec = codec->spec; | |
2068 | ||
2069 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
2070 | return; | |
2071 | /* disable vmaster */ | |
2072 | spec->gen.suppress_vmaster = 1; | |
2073 | /* auto-mute and auto-mic switch don't work with multiple codecs */ | |
2074 | spec->gen.suppress_auto_mute = 1; | |
2075 | spec->gen.suppress_auto_mic = 1; | |
2076 | /* disable aamix as well */ | |
2077 | spec->gen.mixer_nid = 0; | |
2078 | /* add location prefix to avoid conflicts */ | |
2079 | codec->force_pin_prefix = 1; | |
2080 | } | |
2081 | ||
2082 | static void rename_ctl(struct hda_codec *codec, const char *oldname, | |
2083 | const char *newname) | |
2084 | { | |
2085 | struct snd_kcontrol *kctl; | |
2086 | ||
2087 | kctl = snd_hda_find_mixer_ctl(codec, oldname); | |
2088 | if (kctl) | |
2089 | strcpy(kctl->id.name, newname); | |
2090 | } | |
2091 | ||
2092 | static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec, | |
2093 | const struct hda_fixup *fix, | |
2094 | int action) | |
2095 | { | |
2096 | alc_fixup_dual_codecs(codec, fix, action); | |
2097 | switch (action) { | |
2098 | case HDA_FIXUP_ACT_PRE_PROBE: | |
2099 | /* override card longname to provide a unique UCM profile */ | |
2100 | strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs"); | |
2101 | break; | |
2102 | case HDA_FIXUP_ACT_BUILD: | |
2103 | /* rename Capture controls depending on the codec */ | |
2104 | rename_ctl(codec, "Capture Volume", | |
2105 | codec->addr == 0 ? | |
2106 | "Rear-Panel Capture Volume" : | |
2107 | "Front-Panel Capture Volume"); | |
2108 | rename_ctl(codec, "Capture Switch", | |
2109 | codec->addr == 0 ? | |
2110 | "Rear-Panel Capture Switch" : | |
2111 | "Front-Panel Capture Switch"); | |
2112 | break; | |
2113 | } | |
2114 | } | |
2115 | ||
0202f5cd P |
2116 | static void alc1220_fixup_clevo_p950(struct hda_codec *codec, |
2117 | const struct hda_fixup *fix, | |
2118 | int action) | |
2119 | { | |
caf3c043 | 2120 | static const hda_nid_t conn1[] = { 0x0c }; |
0202f5cd P |
2121 | |
2122 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
2123 | return; | |
2124 | ||
2125 | alc_update_coef_idx(codec, 0x7, 0, 0x3c3); | |
2126 | /* We therefore want to make sure 0x14 (front headphone) and | |
2127 | * 0x1b (speakers) use the stereo DAC 0x02 | |
2128 | */ | |
caf3c043 MM |
2129 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1); |
2130 | snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1); | |
0202f5cd P |
2131 | } |
2132 | ||
7f665b1c JS |
2133 | static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec, |
2134 | const struct hda_fixup *fix, int action); | |
2135 | ||
80690a27 | 2136 | static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec, |
7f665b1c JS |
2137 | const struct hda_fixup *fix, |
2138 | int action) | |
2139 | { | |
2140 | alc1220_fixup_clevo_p950(codec, fix, action); | |
2141 | alc_fixup_headset_mode_no_hp_mic(codec, fix, action); | |
2142 | } | |
2143 | ||
ca184355 JHP |
2144 | static void alc887_asus_hp_automute_hook(struct hda_codec *codec, |
2145 | struct hda_jack_callback *jack) | |
2146 | { | |
2147 | struct alc_spec *spec = codec->spec; | |
2148 | unsigned int vref; | |
2149 | ||
2150 | snd_hda_gen_hp_automute(codec, jack); | |
2151 | ||
2152 | if (spec->gen.hp_jack_present) | |
2153 | vref = AC_PINCTL_VREF_80; | |
2154 | else | |
2155 | vref = AC_PINCTL_VREF_HIZ; | |
2156 | snd_hda_set_pin_ctl(codec, 0x19, PIN_HP | vref); | |
2157 | } | |
2158 | ||
2159 | static void alc887_fixup_asus_jack(struct hda_codec *codec, | |
2160 | const struct hda_fixup *fix, int action) | |
2161 | { | |
2162 | struct alc_spec *spec = codec->spec; | |
2163 | if (action != HDA_FIXUP_ACT_PROBE) | |
2164 | return; | |
2165 | snd_hda_set_pin_ctl_cache(codec, 0x1b, PIN_HP); | |
2166 | spec->gen.hp_automute_hook = alc887_asus_hp_automute_hook; | |
2167 | } | |
2168 | ||
1727a771 | 2169 | static const struct hda_fixup alc882_fixups[] = { |
5c0ebfbe | 2170 | [ALC882_FIXUP_ABIT_AW9D_MAX] = { |
1727a771 TI |
2171 | .type = HDA_FIXUP_PINS, |
2172 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
2173 | { 0x15, 0x01080104 }, /* side */ |
2174 | { 0x16, 0x01011012 }, /* rear */ | |
2175 | { 0x17, 0x01016011 }, /* clfe */ | |
2785591a | 2176 | { } |
145a902b DH |
2177 | } |
2178 | }, | |
5c0ebfbe | 2179 | [ALC882_FIXUP_LENOVO_Y530] = { |
1727a771 TI |
2180 | .type = HDA_FIXUP_PINS, |
2181 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
2182 | { 0x15, 0x99130112 }, /* rear int speakers */ |
2183 | { 0x16, 0x99130111 }, /* subwoofer */ | |
ac612407 DH |
2184 | { } |
2185 | } | |
2186 | }, | |
5c0ebfbe | 2187 | [ALC882_FIXUP_PB_M5210] = { |
fd108215 TI |
2188 | .type = HDA_FIXUP_PINCTLS, |
2189 | .v.pins = (const struct hda_pintbl[]) { | |
2190 | { 0x19, PIN_VREF50 }, | |
357f915e KY |
2191 | {} |
2192 | } | |
2193 | }, | |
5c0ebfbe | 2194 | [ALC882_FIXUP_ACER_ASPIRE_7736] = { |
1727a771 | 2195 | .type = HDA_FIXUP_FUNC, |
23d30f28 | 2196 | .v.func = alc_fixup_sku_ignore, |
6981d184 | 2197 | }, |
5c0ebfbe | 2198 | [ALC882_FIXUP_ASUS_W90V] = { |
1727a771 TI |
2199 | .type = HDA_FIXUP_PINS, |
2200 | .v.pins = (const struct hda_pintbl[]) { | |
5cdf745e TI |
2201 | { 0x16, 0x99130110 }, /* fix sequence for CLFE */ |
2202 | { } | |
2203 | } | |
2204 | }, | |
8f239214 | 2205 | [ALC889_FIXUP_CD] = { |
1727a771 TI |
2206 | .type = HDA_FIXUP_PINS, |
2207 | .v.pins = (const struct hda_pintbl[]) { | |
8f239214 MB |
2208 | { 0x1c, 0x993301f0 }, /* CD */ |
2209 | { } | |
2210 | } | |
2211 | }, | |
b2c53e20 DH |
2212 | [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = { |
2213 | .type = HDA_FIXUP_PINS, | |
2214 | .v.pins = (const struct hda_pintbl[]) { | |
2215 | { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */ | |
2216 | { } | |
2217 | }, | |
2218 | .chained = true, | |
2219 | .chain_id = ALC889_FIXUP_CD, | |
2220 | }, | |
5c0ebfbe | 2221 | [ALC889_FIXUP_VAIO_TT] = { |
1727a771 TI |
2222 | .type = HDA_FIXUP_PINS, |
2223 | .v.pins = (const struct hda_pintbl[]) { | |
5c0ebfbe TI |
2224 | { 0x17, 0x90170111 }, /* hidden surround speaker */ |
2225 | { } | |
2226 | } | |
2227 | }, | |
0e7cc2e7 | 2228 | [ALC888_FIXUP_EEE1601] = { |
1727a771 | 2229 | .type = HDA_FIXUP_VERBS, |
0e7cc2e7 TI |
2230 | .v.verbs = (const struct hda_verb[]) { |
2231 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b }, | |
2232 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 }, | |
2233 | { } | |
2234 | } | |
177943a3 | 2235 | }, |
4841b8e6 PH |
2236 | [ALC886_FIXUP_EAPD] = { |
2237 | .type = HDA_FIXUP_VERBS, | |
2238 | .v.verbs = (const struct hda_verb[]) { | |
2239 | /* change to EAPD mode */ | |
2240 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2241 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0068 }, | |
2242 | { } | |
2243 | } | |
2244 | }, | |
177943a3 | 2245 | [ALC882_FIXUP_EAPD] = { |
1727a771 | 2246 | .type = HDA_FIXUP_VERBS, |
177943a3 TI |
2247 | .v.verbs = (const struct hda_verb[]) { |
2248 | /* change to EAPD mode */ | |
2249 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2250 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 }, | |
2251 | { } | |
2252 | } | |
2253 | }, | |
7a6069bf | 2254 | [ALC883_FIXUP_EAPD] = { |
1727a771 | 2255 | .type = HDA_FIXUP_VERBS, |
7a6069bf TI |
2256 | .v.verbs = (const struct hda_verb[]) { |
2257 | /* change to EAPD mode */ | |
2258 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2259 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, | |
2260 | { } | |
2261 | } | |
2262 | }, | |
8812c4f9 | 2263 | [ALC883_FIXUP_ACER_EAPD] = { |
1727a771 | 2264 | .type = HDA_FIXUP_VERBS, |
8812c4f9 TI |
2265 | .v.verbs = (const struct hda_verb[]) { |
2266 | /* eanable EAPD on Acer laptops */ | |
2267 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2268 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, | |
2269 | { } | |
2270 | } | |
2271 | }, | |
1a97b7f2 | 2272 | [ALC882_FIXUP_GPIO1] = { |
5579cd6f TI |
2273 | .type = HDA_FIXUP_FUNC, |
2274 | .v.func = alc_fixup_gpio1, | |
1a97b7f2 TI |
2275 | }, |
2276 | [ALC882_FIXUP_GPIO2] = { | |
5579cd6f TI |
2277 | .type = HDA_FIXUP_FUNC, |
2278 | .v.func = alc_fixup_gpio2, | |
1a97b7f2 | 2279 | }, |
eb844d51 | 2280 | [ALC882_FIXUP_GPIO3] = { |
5579cd6f TI |
2281 | .type = HDA_FIXUP_FUNC, |
2282 | .v.func = alc_fixup_gpio3, | |
eb844d51 | 2283 | }, |
68ef0561 | 2284 | [ALC882_FIXUP_ASUS_W2JC] = { |
5579cd6f TI |
2285 | .type = HDA_FIXUP_FUNC, |
2286 | .v.func = alc_fixup_gpio1, | |
68ef0561 TI |
2287 | .chained = true, |
2288 | .chain_id = ALC882_FIXUP_EAPD, | |
2289 | }, | |
2290 | [ALC889_FIXUP_COEF] = { | |
1727a771 | 2291 | .type = HDA_FIXUP_FUNC, |
68ef0561 TI |
2292 | .v.func = alc889_fixup_coef, |
2293 | }, | |
c3e837bb | 2294 | [ALC882_FIXUP_ACER_ASPIRE_4930G] = { |
1727a771 TI |
2295 | .type = HDA_FIXUP_PINS, |
2296 | .v.pins = (const struct hda_pintbl[]) { | |
c3e837bb TI |
2297 | { 0x16, 0x99130111 }, /* CLFE speaker */ |
2298 | { 0x17, 0x99130112 }, /* surround speaker */ | |
2299 | { } | |
038d4fef TI |
2300 | }, |
2301 | .chained = true, | |
2302 | .chain_id = ALC882_FIXUP_GPIO1, | |
c3e837bb TI |
2303 | }, |
2304 | [ALC882_FIXUP_ACER_ASPIRE_8930G] = { | |
1727a771 TI |
2305 | .type = HDA_FIXUP_PINS, |
2306 | .v.pins = (const struct hda_pintbl[]) { | |
c3e837bb TI |
2307 | { 0x16, 0x99130111 }, /* CLFE speaker */ |
2308 | { 0x1b, 0x99130112 }, /* surround speaker */ | |
2309 | { } | |
2310 | }, | |
2311 | .chained = true, | |
2312 | .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS, | |
2313 | }, | |
2314 | [ALC882_FIXUP_ASPIRE_8930G_VERBS] = { | |
2315 | /* additional init verbs for Acer Aspire 8930G */ | |
1727a771 | 2316 | .type = HDA_FIXUP_VERBS, |
c3e837bb TI |
2317 | .v.verbs = (const struct hda_verb[]) { |
2318 | /* Enable all DACs */ | |
2319 | /* DAC DISABLE/MUTE 1? */ | |
2320 | /* setting bits 1-5 disables DAC nids 0x02-0x06 | |
2321 | * apparently. Init=0x38 */ | |
2322 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 }, | |
2323 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 }, | |
2324 | /* DAC DISABLE/MUTE 2? */ | |
2325 | /* some bit here disables the other DACs. | |
2326 | * Init=0x4900 */ | |
2327 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 }, | |
2328 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 }, | |
2329 | /* DMIC fix | |
2330 | * This laptop has a stereo digital microphone. | |
2331 | * The mics are only 1cm apart which makes the stereo | |
2332 | * useless. However, either the mic or the ALC889 | |
2333 | * makes the signal become a difference/sum signal | |
2334 | * instead of standard stereo, which is annoying. | |
2335 | * So instead we flip this bit which makes the | |
2336 | * codec replicate the sum signal to both channels, | |
2337 | * turning it into a normal mono mic. | |
2338 | */ | |
2339 | /* DMIC_CONTROL? Init value = 0x0001 */ | |
2340 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b }, | |
2341 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 }, | |
2342 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2343 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, | |
2344 | { } | |
038d4fef TI |
2345 | }, |
2346 | .chained = true, | |
2347 | .chain_id = ALC882_FIXUP_GPIO1, | |
c3e837bb | 2348 | }, |
5671087f | 2349 | [ALC885_FIXUP_MACPRO_GPIO] = { |
1727a771 | 2350 | .type = HDA_FIXUP_FUNC, |
5671087f TI |
2351 | .v.func = alc885_fixup_macpro_gpio, |
2352 | }, | |
02a237b2 | 2353 | [ALC889_FIXUP_DAC_ROUTE] = { |
1727a771 | 2354 | .type = HDA_FIXUP_FUNC, |
02a237b2 TI |
2355 | .v.func = alc889_fixup_dac_route, |
2356 | }, | |
1a97b7f2 | 2357 | [ALC889_FIXUP_MBP_VREF] = { |
1727a771 | 2358 | .type = HDA_FIXUP_FUNC, |
1a97b7f2 TI |
2359 | .v.func = alc889_fixup_mbp_vref, |
2360 | .chained = true, | |
2361 | .chain_id = ALC882_FIXUP_GPIO1, | |
2362 | }, | |
2363 | [ALC889_FIXUP_IMAC91_VREF] = { | |
1727a771 | 2364 | .type = HDA_FIXUP_FUNC, |
1a97b7f2 TI |
2365 | .v.func = alc889_fixup_imac91_vref, |
2366 | .chained = true, | |
2367 | .chain_id = ALC882_FIXUP_GPIO1, | |
2368 | }, | |
e7729a41 AV |
2369 | [ALC889_FIXUP_MBA11_VREF] = { |
2370 | .type = HDA_FIXUP_FUNC, | |
2371 | .v.func = alc889_fixup_mba11_vref, | |
2372 | .chained = true, | |
2373 | .chain_id = ALC889_FIXUP_MBP_VREF, | |
2374 | }, | |
0756f09c TI |
2375 | [ALC889_FIXUP_MBA21_VREF] = { |
2376 | .type = HDA_FIXUP_FUNC, | |
2377 | .v.func = alc889_fixup_mba21_vref, | |
2378 | .chained = true, | |
2379 | .chain_id = ALC889_FIXUP_MBP_VREF, | |
2380 | }, | |
c20f31ec TI |
2381 | [ALC889_FIXUP_MP11_VREF] = { |
2382 | .type = HDA_FIXUP_FUNC, | |
2383 | .v.func = alc889_fixup_mba11_vref, | |
2384 | .chained = true, | |
2385 | .chain_id = ALC885_FIXUP_MACPRO_GPIO, | |
2386 | }, | |
9f660a1c MK |
2387 | [ALC889_FIXUP_MP41_VREF] = { |
2388 | .type = HDA_FIXUP_FUNC, | |
2389 | .v.func = alc889_fixup_mbp_vref, | |
2390 | .chained = true, | |
2391 | .chain_id = ALC885_FIXUP_MACPRO_GPIO, | |
2392 | }, | |
6e72aa5f | 2393 | [ALC882_FIXUP_INV_DMIC] = { |
1727a771 | 2394 | .type = HDA_FIXUP_FUNC, |
9d36a7dc | 2395 | .v.func = alc_fixup_inv_dmic, |
6e72aa5f | 2396 | }, |
e427c237 | 2397 | [ALC882_FIXUP_NO_PRIMARY_HP] = { |
1727a771 | 2398 | .type = HDA_FIXUP_FUNC, |
e427c237 TI |
2399 | .v.func = alc882_fixup_no_primary_hp, |
2400 | }, | |
1f0bbf03 TI |
2401 | [ALC887_FIXUP_ASUS_BASS] = { |
2402 | .type = HDA_FIXUP_PINS, | |
2403 | .v.pins = (const struct hda_pintbl[]) { | |
2404 | {0x16, 0x99130130}, /* bass speaker */ | |
2405 | {} | |
2406 | }, | |
eb9ca3ab TI |
2407 | .chained = true, |
2408 | .chain_id = ALC887_FIXUP_BASS_CHMAP, | |
2409 | }, | |
2410 | [ALC887_FIXUP_BASS_CHMAP] = { | |
2411 | .type = HDA_FIXUP_FUNC, | |
2412 | .v.func = alc_fixup_bass_chmap, | |
1f0bbf03 | 2413 | }, |
7beb3a6e TI |
2414 | [ALC1220_FIXUP_GB_DUAL_CODECS] = { |
2415 | .type = HDA_FIXUP_FUNC, | |
2416 | .v.func = alc1220_fixup_gb_dual_codecs, | |
2417 | }, | |
0202f5cd P |
2418 | [ALC1220_FIXUP_CLEVO_P950] = { |
2419 | .type = HDA_FIXUP_FUNC, | |
2420 | .v.func = alc1220_fixup_clevo_p950, | |
2421 | }, | |
80690a27 | 2422 | [ALC1220_FIXUP_CLEVO_PB51ED] = { |
7f665b1c | 2423 | .type = HDA_FIXUP_FUNC, |
80690a27 | 2424 | .v.func = alc1220_fixup_clevo_pb51ed, |
7f665b1c | 2425 | }, |
80690a27 | 2426 | [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = { |
7f665b1c JS |
2427 | .type = HDA_FIXUP_PINS, |
2428 | .v.pins = (const struct hda_pintbl[]) { | |
2429 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
2430 | {} | |
2431 | }, | |
2432 | .chained = true, | |
80690a27 | 2433 | .chain_id = ALC1220_FIXUP_CLEVO_PB51ED, |
7f665b1c | 2434 | }, |
ca184355 JHP |
2435 | [ALC887_FIXUP_ASUS_AUDIO] = { |
2436 | .type = HDA_FIXUP_PINS, | |
2437 | .v.pins = (const struct hda_pintbl[]) { | |
2438 | { 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */ | |
2439 | { 0x19, 0x22219420 }, | |
2440 | {} | |
2441 | }, | |
2442 | }, | |
2443 | [ALC887_FIXUP_ASUS_HMIC] = { | |
2444 | .type = HDA_FIXUP_FUNC, | |
2445 | .v.func = alc887_fixup_asus_jack, | |
2446 | .chained = true, | |
2447 | .chain_id = ALC887_FIXUP_ASUS_AUDIO, | |
2448 | }, | |
ff818c24 TI |
2449 | }; |
2450 | ||
1d045db9 | 2451 | static const struct snd_pci_quirk alc882_fixup_tbl[] = { |
8812c4f9 TI |
2452 | SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD), |
2453 | SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), | |
b5d724b1 | 2454 | SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), |
8812c4f9 TI |
2455 | SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD), |
2456 | SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), | |
2457 | SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD), | |
2458 | SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD), | |
c3e837bb TI |
2459 | SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G", |
2460 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
2461 | SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G", | |
2462 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
2463 | SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G", | |
2464 | ALC882_FIXUP_ACER_ASPIRE_8930G), | |
2465 | SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G", | |
2466 | ALC882_FIXUP_ACER_ASPIRE_8930G), | |
b265047a TI |
2467 | SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G", |
2468 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
2469 | SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210), | |
c3e837bb TI |
2470 | SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G", |
2471 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
2472 | SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G", | |
2473 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
f5c53d89 TI |
2474 | SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G", |
2475 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
02a237b2 | 2476 | SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE), |
fe97da1f | 2477 | SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G), |
ac9b1cdd | 2478 | SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736), |
177943a3 | 2479 | SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD), |
5c0ebfbe | 2480 | SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V), |
68ef0561 | 2481 | SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC), |
ca184355 | 2482 | SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC), |
0e7cc2e7 | 2483 | SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601), |
1f0bbf03 | 2484 | SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS), |
85bcf96c | 2485 | SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3), |
b7529c18 TI |
2486 | SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP), |
2487 | SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP), | |
ac9b1cdd | 2488 | SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT), |
e427c237 | 2489 | SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP), |
3f3c3714 | 2490 | SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP), |
5671087f TI |
2491 | |
2492 | /* All Apple entries are in codec SSIDs */ | |
1a97b7f2 TI |
2493 | SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF), |
2494 | SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF), | |
2495 | SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF), | |
c20f31ec | 2496 | SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF), |
5671087f TI |
2497 | SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO), |
2498 | SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO), | |
1a97b7f2 TI |
2499 | SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF), |
2500 | SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF), | |
5671087f | 2501 | SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD), |
e7729a41 | 2502 | SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF), |
0756f09c | 2503 | SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF), |
1a97b7f2 TI |
2504 | SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF), |
2505 | SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF), | |
5671087f | 2506 | SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO), |
1a97b7f2 TI |
2507 | SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF), |
2508 | SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF), | |
2509 | SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF), | |
9f660a1c | 2510 | SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF), |
05193639 | 2511 | SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF), |
1a97b7f2 TI |
2512 | SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF), |
2513 | SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF), | |
649ccd08 | 2514 | SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF), |
5671087f | 2515 | |
7a6069bf | 2516 | SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD), |
4841b8e6 | 2517 | SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD), |
b2c53e20 | 2518 | SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE), |
7beb3a6e | 2519 | SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS), |
0d45e86d | 2520 | SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_CLEVO_P950), |
d9e8fe0c | 2521 | SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_CLEVO_P950), |
a0b03952 | 2522 | SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950), |
a655e2b1 | 2523 | SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950), |
09926202 | 2524 | SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950), |
1d3aa4a5 | 2525 | SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950), |
7dafba37 | 2526 | SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950), |
cc5049ae | 2527 | SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950), |
d2c3b14e | 2528 | SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD), |
26af1772 | 2529 | SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS), |
63691587 | 2530 | SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS), |
d2c3b14e | 2531 | SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3), |
5c0ebfbe | 2532 | SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX), |
13e1a4cd TI |
2533 | SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
2534 | SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
2535 | SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
2536 | SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
2537 | SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
aef454b4 | 2538 | SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
13e1a4cd TI |
2539 | SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
2540 | SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
2541 | SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
2542 | SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
1f8d398e | 2543 | SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
cc03069a | 2544 | SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED), |
0202f5cd | 2545 | SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950), |
b5acfe15 | 2546 | SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950), |
13e1a4cd | 2547 | SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950), |
f3d737b6 | 2548 | SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950), |
2f0d520a | 2549 | SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950), |
b5acfe15 PH |
2550 | SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950), |
2551 | SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950), | |
2552 | SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950), | |
2553 | SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950), | |
503d90b3 RS |
2554 | SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950), |
2555 | SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950), | |
b5acfe15 | 2556 | SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950), |
7a6069bf TI |
2557 | SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD), |
2558 | SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD), | |
ac9b1cdd | 2559 | SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530), |
68ef0561 | 2560 | SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF), |
ff818c24 TI |
2561 | {} |
2562 | }; | |
2563 | ||
1727a771 | 2564 | static const struct hda_model_fixup alc882_fixup_models[] = { |
772c2917 TI |
2565 | {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"}, |
2566 | {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"}, | |
2567 | {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"}, | |
2568 | {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"}, | |
2569 | {.id = ALC889_FIXUP_CD, .name = "cd"}, | |
2570 | {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"}, | |
2571 | {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"}, | |
2572 | {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"}, | |
2573 | {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"}, | |
2574 | {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"}, | |
2575 | {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"}, | |
2576 | {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"}, | |
2577 | {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"}, | |
2578 | {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"}, | |
2579 | {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"}, | |
912093bc TI |
2580 | {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"}, |
2581 | {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"}, | |
2582 | {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"}, | |
772c2917 TI |
2583 | {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"}, |
2584 | {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"}, | |
2585 | {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"}, | |
2586 | {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"}, | |
2587 | {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"}, | |
2588 | {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"}, | |
2589 | {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"}, | |
2590 | {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"}, | |
6e72aa5f | 2591 | {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"}, |
e427c237 | 2592 | {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"}, |
772c2917 | 2593 | {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"}, |
ba90d6a6 | 2594 | {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"}, |
772c2917 | 2595 | {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"}, |
912093bc TI |
2596 | {} |
2597 | }; | |
2598 | ||
119b75c1 HW |
2599 | static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl[] = { |
2600 | SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950, | |
2601 | {0x14, 0x01014010}, | |
2602 | {0x15, 0x01011012}, | |
2603 | {0x16, 0x01016011}, | |
2604 | {0x18, 0x01a19040}, | |
2605 | {0x19, 0x02a19050}, | |
2606 | {0x1a, 0x0181304f}, | |
2607 | {0x1b, 0x0221401f}, | |
2608 | {0x1e, 0x01456130}), | |
2609 | SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950, | |
2610 | {0x14, 0x01015010}, | |
2611 | {0x15, 0x01011012}, | |
2612 | {0x16, 0x01011011}, | |
2613 | {0x18, 0x01a11040}, | |
2614 | {0x19, 0x02a19050}, | |
2615 | {0x1a, 0x0181104f}, | |
2616 | {0x1b, 0x0221401f}, | |
2617 | {0x1e, 0x01451130}), | |
2618 | {} | |
2619 | }; | |
2620 | ||
f6a92248 | 2621 | /* |
1d045db9 | 2622 | * BIOS auto configuration |
f6a92248 | 2623 | */ |
1d045db9 TI |
2624 | /* almost identical with ALC880 parser... */ |
2625 | static int alc882_parse_auto_config(struct hda_codec *codec) | |
2626 | { | |
1d045db9 | 2627 | static const hda_nid_t alc882_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
2628 | static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 }; |
2629 | return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids); | |
1d045db9 | 2630 | } |
b896b4eb | 2631 | |
1d045db9 TI |
2632 | /* |
2633 | */ | |
1d045db9 | 2634 | static int patch_alc882(struct hda_codec *codec) |
f6a92248 KY |
2635 | { |
2636 | struct alc_spec *spec; | |
1a97b7f2 | 2637 | int err; |
f6a92248 | 2638 | |
3de95173 TI |
2639 | err = alc_alloc_spec(codec, 0x0b); |
2640 | if (err < 0) | |
2641 | return err; | |
f6a92248 | 2642 | |
3de95173 | 2643 | spec = codec->spec; |
1f0f4b80 | 2644 | |
7639a06c | 2645 | switch (codec->core.vendor_id) { |
1d045db9 TI |
2646 | case 0x10ec0882: |
2647 | case 0x10ec0885: | |
acf08081 | 2648 | case 0x10ec0900: |
6d9ffcff | 2649 | case 0x10ec0b00: |
a535ad57 | 2650 | case 0x10ec1220: |
1d045db9 TI |
2651 | break; |
2652 | default: | |
2653 | /* ALC883 and variants */ | |
2654 | alc_fix_pll_init(codec, 0x20, 0x0a, 10); | |
2655 | break; | |
c793bec5 | 2656 | } |
977ddd6b | 2657 | |
c9af753f TI |
2658 | alc_pre_init(codec); |
2659 | ||
1727a771 | 2660 | snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl, |
912093bc | 2661 | alc882_fixups); |
119b75c1 | 2662 | snd_hda_pick_pin_fixup(codec, alc882_pin_fixup_tbl, alc882_fixups, true); |
1727a771 | 2663 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
ff818c24 | 2664 | |
1d045db9 TI |
2665 | alc_auto_parse_customize_define(codec); |
2666 | ||
7504b6cd TI |
2667 | if (has_cdefine_beep(codec)) |
2668 | spec->gen.beep_nid = 0x01; | |
2669 | ||
1a97b7f2 TI |
2670 | /* automatic parse from the BIOS config */ |
2671 | err = alc882_parse_auto_config(codec); | |
2672 | if (err < 0) | |
2673 | goto error; | |
f6a92248 | 2674 | |
fea80fae TI |
2675 | if (!spec->gen.no_analog && spec->gen.beep_nid) { |
2676 | err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | |
2677 | if (err < 0) | |
2678 | goto error; | |
2679 | } | |
f6a92248 | 2680 | |
1727a771 | 2681 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 2682 | |
f6a92248 | 2683 | return 0; |
e16fb6d1 TI |
2684 | |
2685 | error: | |
2686 | alc_free(codec); | |
2687 | return err; | |
f6a92248 KY |
2688 | } |
2689 | ||
df694daa | 2690 | |
df694daa | 2691 | /* |
1d045db9 | 2692 | * ALC262 support |
df694daa | 2693 | */ |
1d045db9 | 2694 | static int alc262_parse_auto_config(struct hda_codec *codec) |
df694daa | 2695 | { |
1d045db9 | 2696 | static const hda_nid_t alc262_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
2697 | static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 }; |
2698 | return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids); | |
df694daa KY |
2699 | } |
2700 | ||
df694daa | 2701 | /* |
1d045db9 | 2702 | * Pin config fixes |
df694daa | 2703 | */ |
cfc9b06f | 2704 | enum { |
ea4e7af1 | 2705 | ALC262_FIXUP_FSC_H270, |
7513e6da | 2706 | ALC262_FIXUP_FSC_S7110, |
ea4e7af1 TI |
2707 | ALC262_FIXUP_HP_Z200, |
2708 | ALC262_FIXUP_TYAN, | |
c470150c | 2709 | ALC262_FIXUP_LENOVO_3000, |
b42590b8 TI |
2710 | ALC262_FIXUP_BENQ, |
2711 | ALC262_FIXUP_BENQ_T31, | |
6e72aa5f | 2712 | ALC262_FIXUP_INV_DMIC, |
b5c6611f | 2713 | ALC262_FIXUP_INTEL_BAYLEYBAY, |
cfc9b06f TI |
2714 | }; |
2715 | ||
1727a771 | 2716 | static const struct hda_fixup alc262_fixups[] = { |
ea4e7af1 | 2717 | [ALC262_FIXUP_FSC_H270] = { |
1727a771 TI |
2718 | .type = HDA_FIXUP_PINS, |
2719 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
2720 | { 0x14, 0x99130110 }, /* speaker */ |
2721 | { 0x15, 0x0221142f }, /* front HP */ | |
2722 | { 0x1b, 0x0121141f }, /* rear HP */ | |
2723 | { } | |
2724 | } | |
2725 | }, | |
7513e6da TI |
2726 | [ALC262_FIXUP_FSC_S7110] = { |
2727 | .type = HDA_FIXUP_PINS, | |
2728 | .v.pins = (const struct hda_pintbl[]) { | |
2729 | { 0x15, 0x90170110 }, /* speaker */ | |
2730 | { } | |
2731 | }, | |
2732 | .chained = true, | |
2733 | .chain_id = ALC262_FIXUP_BENQ, | |
2734 | }, | |
ea4e7af1 | 2735 | [ALC262_FIXUP_HP_Z200] = { |
1727a771 TI |
2736 | .type = HDA_FIXUP_PINS, |
2737 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 | 2738 | { 0x16, 0x99130120 }, /* internal speaker */ |
73413b12 TI |
2739 | { } |
2740 | } | |
cfc9b06f | 2741 | }, |
ea4e7af1 | 2742 | [ALC262_FIXUP_TYAN] = { |
1727a771 TI |
2743 | .type = HDA_FIXUP_PINS, |
2744 | .v.pins = (const struct hda_pintbl[]) { | |
ea4e7af1 TI |
2745 | { 0x14, 0x1993e1f0 }, /* int AUX */ |
2746 | { } | |
2747 | } | |
2748 | }, | |
c470150c | 2749 | [ALC262_FIXUP_LENOVO_3000] = { |
fd108215 TI |
2750 | .type = HDA_FIXUP_PINCTLS, |
2751 | .v.pins = (const struct hda_pintbl[]) { | |
2752 | { 0x19, PIN_VREF50 }, | |
b42590b8 TI |
2753 | {} |
2754 | }, | |
2755 | .chained = true, | |
2756 | .chain_id = ALC262_FIXUP_BENQ, | |
2757 | }, | |
2758 | [ALC262_FIXUP_BENQ] = { | |
1727a771 | 2759 | .type = HDA_FIXUP_VERBS, |
b42590b8 | 2760 | .v.verbs = (const struct hda_verb[]) { |
c470150c TI |
2761 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, |
2762 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, | |
2763 | {} | |
2764 | } | |
2765 | }, | |
b42590b8 | 2766 | [ALC262_FIXUP_BENQ_T31] = { |
1727a771 | 2767 | .type = HDA_FIXUP_VERBS, |
b42590b8 TI |
2768 | .v.verbs = (const struct hda_verb[]) { |
2769 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2770 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, | |
2771 | {} | |
2772 | } | |
2773 | }, | |
6e72aa5f | 2774 | [ALC262_FIXUP_INV_DMIC] = { |
1727a771 | 2775 | .type = HDA_FIXUP_FUNC, |
9d36a7dc | 2776 | .v.func = alc_fixup_inv_dmic, |
6e72aa5f | 2777 | }, |
b5c6611f ML |
2778 | [ALC262_FIXUP_INTEL_BAYLEYBAY] = { |
2779 | .type = HDA_FIXUP_FUNC, | |
2780 | .v.func = alc_fixup_no_depop_delay, | |
2781 | }, | |
cfc9b06f TI |
2782 | }; |
2783 | ||
1d045db9 | 2784 | static const struct snd_pci_quirk alc262_fixup_tbl[] = { |
ea4e7af1 | 2785 | SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200), |
7513e6da | 2786 | SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110), |
3dcd3be3 | 2787 | SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ), |
ea4e7af1 | 2788 | SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN), |
275ec0cb | 2789 | SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270), |
ea4e7af1 | 2790 | SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270), |
c470150c | 2791 | SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000), |
b42590b8 TI |
2792 | SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ), |
2793 | SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31), | |
b5c6611f | 2794 | SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY), |
cfc9b06f TI |
2795 | {} |
2796 | }; | |
df694daa | 2797 | |
1727a771 | 2798 | static const struct hda_model_fixup alc262_fixup_models[] = { |
6e72aa5f | 2799 | {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"}, |
e43c44d6 TI |
2800 | {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"}, |
2801 | {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"}, | |
2802 | {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"}, | |
2803 | {.id = ALC262_FIXUP_TYAN, .name = "tyan"}, | |
2804 | {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"}, | |
2805 | {.id = ALC262_FIXUP_BENQ, .name = "benq"}, | |
2806 | {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"}, | |
2807 | {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"}, | |
6e72aa5f TI |
2808 | {} |
2809 | }; | |
1d045db9 | 2810 | |
1d045db9 TI |
2811 | /* |
2812 | */ | |
1d045db9 | 2813 | static int patch_alc262(struct hda_codec *codec) |
df694daa KY |
2814 | { |
2815 | struct alc_spec *spec; | |
df694daa KY |
2816 | int err; |
2817 | ||
3de95173 TI |
2818 | err = alc_alloc_spec(codec, 0x0b); |
2819 | if (err < 0) | |
2820 | return err; | |
df694daa | 2821 | |
3de95173 | 2822 | spec = codec->spec; |
08c189f2 | 2823 | spec->gen.shared_mic_vref_pin = 0x18; |
1d045db9 | 2824 | |
225068ab TI |
2825 | spec->shutup = alc_eapd_shutup; |
2826 | ||
1d045db9 TI |
2827 | #if 0 |
2828 | /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is | |
2829 | * under-run | |
2830 | */ | |
98b24883 | 2831 | alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80); |
1d045db9 | 2832 | #endif |
1d045db9 TI |
2833 | alc_fix_pll_init(codec, 0x20, 0x0a, 10); |
2834 | ||
c9af753f TI |
2835 | alc_pre_init(codec); |
2836 | ||
1727a771 | 2837 | snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl, |
6e72aa5f | 2838 | alc262_fixups); |
1727a771 | 2839 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
9c7f852e | 2840 | |
af741c15 TI |
2841 | alc_auto_parse_customize_define(codec); |
2842 | ||
7504b6cd TI |
2843 | if (has_cdefine_beep(codec)) |
2844 | spec->gen.beep_nid = 0x01; | |
2845 | ||
42399f7a TI |
2846 | /* automatic parse from the BIOS config */ |
2847 | err = alc262_parse_auto_config(codec); | |
2848 | if (err < 0) | |
2849 | goto error; | |
df694daa | 2850 | |
fea80fae TI |
2851 | if (!spec->gen.no_analog && spec->gen.beep_nid) { |
2852 | err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | |
2853 | if (err < 0) | |
2854 | goto error; | |
2855 | } | |
2134ea4f | 2856 | |
1727a771 | 2857 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 2858 | |
1da177e4 | 2859 | return 0; |
e16fb6d1 TI |
2860 | |
2861 | error: | |
2862 | alc_free(codec); | |
2863 | return err; | |
1da177e4 LT |
2864 | } |
2865 | ||
f32610ed | 2866 | /* |
1d045db9 | 2867 | * ALC268 |
f32610ed | 2868 | */ |
1d045db9 | 2869 | /* bind Beep switches of both NID 0x0f and 0x10 */ |
a717777d TI |
2870 | static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol, |
2871 | struct snd_ctl_elem_value *ucontrol) | |
2872 | { | |
2873 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | |
2874 | unsigned long pval; | |
2875 | int err; | |
2876 | ||
2877 | mutex_lock(&codec->control_mutex); | |
2878 | pval = kcontrol->private_value; | |
2879 | kcontrol->private_value = (pval & ~0xff) | 0x0f; | |
2880 | err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); | |
2881 | if (err >= 0) { | |
2882 | kcontrol->private_value = (pval & ~0xff) | 0x10; | |
2883 | err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); | |
2884 | } | |
2885 | kcontrol->private_value = pval; | |
2886 | mutex_unlock(&codec->control_mutex); | |
2887 | return err; | |
2888 | } | |
f32610ed | 2889 | |
1d045db9 TI |
2890 | static const struct snd_kcontrol_new alc268_beep_mixer[] = { |
2891 | HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT), | |
a717777d TI |
2892 | { |
2893 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | |
2894 | .name = "Beep Playback Switch", | |
2895 | .subdevice = HDA_SUBDEV_AMP_FLAG, | |
2896 | .info = snd_hda_mixer_amp_switch_info, | |
2897 | .get = snd_hda_mixer_amp_switch_get, | |
2898 | .put = alc268_beep_switch_put, | |
2899 | .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT) | |
2900 | }, | |
f32610ed JS |
2901 | }; |
2902 | ||
1d045db9 TI |
2903 | /* set PCBEEP vol = 0, mute connections */ |
2904 | static const struct hda_verb alc268_beep_init_verbs[] = { | |
2905 | {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | |
2906 | {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | |
2907 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | |
2908 | { } | |
f32610ed JS |
2909 | }; |
2910 | ||
6e72aa5f TI |
2911 | enum { |
2912 | ALC268_FIXUP_INV_DMIC, | |
cb766404 | 2913 | ALC268_FIXUP_HP_EAPD, |
24eff328 | 2914 | ALC268_FIXUP_SPDIF, |
6e72aa5f TI |
2915 | }; |
2916 | ||
1727a771 | 2917 | static const struct hda_fixup alc268_fixups[] = { |
6e72aa5f | 2918 | [ALC268_FIXUP_INV_DMIC] = { |
1727a771 | 2919 | .type = HDA_FIXUP_FUNC, |
9d36a7dc | 2920 | .v.func = alc_fixup_inv_dmic, |
6e72aa5f | 2921 | }, |
cb766404 | 2922 | [ALC268_FIXUP_HP_EAPD] = { |
1727a771 | 2923 | .type = HDA_FIXUP_VERBS, |
cb766404 TI |
2924 | .v.verbs = (const struct hda_verb[]) { |
2925 | {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0}, | |
2926 | {} | |
2927 | } | |
2928 | }, | |
24eff328 TI |
2929 | [ALC268_FIXUP_SPDIF] = { |
2930 | .type = HDA_FIXUP_PINS, | |
2931 | .v.pins = (const struct hda_pintbl[]) { | |
2932 | { 0x1e, 0x014b1180 }, /* enable SPDIF out */ | |
2933 | {} | |
2934 | } | |
2935 | }, | |
6e72aa5f TI |
2936 | }; |
2937 | ||
1727a771 | 2938 | static const struct hda_model_fixup alc268_fixup_models[] = { |
6e72aa5f | 2939 | {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"}, |
cb766404 | 2940 | {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"}, |
03bf11c9 | 2941 | {.id = ALC268_FIXUP_SPDIF, .name = "spdif"}, |
cb766404 TI |
2942 | {} |
2943 | }; | |
2944 | ||
2945 | static const struct snd_pci_quirk alc268_fixup_tbl[] = { | |
24eff328 | 2946 | SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF), |
fcd8f3b1 | 2947 | SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC), |
cb766404 TI |
2948 | /* below is codec SSID since multiple Toshiba laptops have the |
2949 | * same PCI SSID 1179:ff00 | |
2950 | */ | |
2951 | SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD), | |
6e72aa5f TI |
2952 | {} |
2953 | }; | |
2954 | ||
f32610ed JS |
2955 | /* |
2956 | * BIOS auto configuration | |
2957 | */ | |
1d045db9 | 2958 | static int alc268_parse_auto_config(struct hda_codec *codec) |
f32610ed | 2959 | { |
3e6179b8 | 2960 | static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 }; |
7504b6cd | 2961 | return alc_parse_auto_config(codec, NULL, alc268_ssids); |
f32610ed JS |
2962 | } |
2963 | ||
1d045db9 TI |
2964 | /* |
2965 | */ | |
1d045db9 | 2966 | static int patch_alc268(struct hda_codec *codec) |
f32610ed JS |
2967 | { |
2968 | struct alc_spec *spec; | |
a5cb463a | 2969 | int i, err; |
f32610ed | 2970 | |
1d045db9 | 2971 | /* ALC268 has no aa-loopback mixer */ |
3de95173 TI |
2972 | err = alc_alloc_spec(codec, 0); |
2973 | if (err < 0) | |
2974 | return err; | |
2975 | ||
2976 | spec = codec->spec; | |
2722b535 TI |
2977 | if (has_cdefine_beep(codec)) |
2978 | spec->gen.beep_nid = 0x01; | |
1f0f4b80 | 2979 | |
225068ab TI |
2980 | spec->shutup = alc_eapd_shutup; |
2981 | ||
c9af753f TI |
2982 | alc_pre_init(codec); |
2983 | ||
1727a771 TI |
2984 | snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups); |
2985 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); | |
6e72aa5f | 2986 | |
6ebb8053 TI |
2987 | /* automatic parse from the BIOS config */ |
2988 | err = alc268_parse_auto_config(codec); | |
e16fb6d1 TI |
2989 | if (err < 0) |
2990 | goto error; | |
f32610ed | 2991 | |
7504b6cd TI |
2992 | if (err > 0 && !spec->gen.no_analog && |
2993 | spec->gen.autocfg.speaker_pins[0] != 0x1d) { | |
a5cb463a TI |
2994 | for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) { |
2995 | if (!snd_hda_gen_add_kctl(&spec->gen, NULL, | |
2996 | &alc268_beep_mixer[i])) { | |
2997 | err = -ENOMEM; | |
2998 | goto error; | |
2999 | } | |
3000 | } | |
7504b6cd | 3001 | snd_hda_add_verbs(codec, alc268_beep_init_verbs); |
1d045db9 TI |
3002 | if (!query_amp_caps(codec, 0x1d, HDA_INPUT)) |
3003 | /* override the amp caps for beep generator */ | |
3004 | snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT, | |
3005 | (0x0c << AC_AMPCAP_OFFSET_SHIFT) | | |
3006 | (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) | | |
3007 | (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) | | |
3008 | (0 << AC_AMPCAP_MUTE_SHIFT)); | |
2f893286 KY |
3009 | } |
3010 | ||
1727a771 | 3011 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
6e72aa5f | 3012 | |
f32610ed | 3013 | return 0; |
e16fb6d1 TI |
3014 | |
3015 | error: | |
3016 | alc_free(codec); | |
3017 | return err; | |
f32610ed JS |
3018 | } |
3019 | ||
bc9f98a9 | 3020 | /* |
1d045db9 | 3021 | * ALC269 |
bc9f98a9 | 3022 | */ |
08c189f2 | 3023 | |
1d045db9 | 3024 | static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = { |
1d045db9 | 3025 | .rates = SNDRV_PCM_RATE_44100, /* fixed rate */ |
bc9f98a9 KY |
3026 | }; |
3027 | ||
1d045db9 | 3028 | static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = { |
1d045db9 | 3029 | .rates = SNDRV_PCM_RATE_44100, /* fixed rate */ |
bc9f98a9 | 3030 | }; |
291702f0 | 3031 | |
1d045db9 TI |
3032 | /* different alc269-variants */ |
3033 | enum { | |
3034 | ALC269_TYPE_ALC269VA, | |
3035 | ALC269_TYPE_ALC269VB, | |
3036 | ALC269_TYPE_ALC269VC, | |
adcc70b2 | 3037 | ALC269_TYPE_ALC269VD, |
065380f0 KY |
3038 | ALC269_TYPE_ALC280, |
3039 | ALC269_TYPE_ALC282, | |
2af02be7 | 3040 | ALC269_TYPE_ALC283, |
065380f0 | 3041 | ALC269_TYPE_ALC284, |
4731d5de | 3042 | ALC269_TYPE_ALC293, |
7fc7d047 | 3043 | ALC269_TYPE_ALC286, |
506b62c3 | 3044 | ALC269_TYPE_ALC298, |
1d04c9de | 3045 | ALC269_TYPE_ALC255, |
4344aec8 | 3046 | ALC269_TYPE_ALC256, |
f429e7e4 | 3047 | ALC269_TYPE_ALC257, |
0a6f0600 | 3048 | ALC269_TYPE_ALC215, |
4231430d | 3049 | ALC269_TYPE_ALC225, |
99cee034 | 3050 | ALC269_TYPE_ALC287, |
dcd4f0db | 3051 | ALC269_TYPE_ALC294, |
1078bef0 | 3052 | ALC269_TYPE_ALC300, |
f0778871 | 3053 | ALC269_TYPE_ALC623, |
6fbae35a | 3054 | ALC269_TYPE_ALC700, |
bc9f98a9 KY |
3055 | }; |
3056 | ||
3057 | /* | |
1d045db9 | 3058 | * BIOS auto configuration |
bc9f98a9 | 3059 | */ |
1d045db9 TI |
3060 | static int alc269_parse_auto_config(struct hda_codec *codec) |
3061 | { | |
1d045db9 | 3062 | static const hda_nid_t alc269_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
3063 | static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 }; |
3064 | static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | |
3065 | struct alc_spec *spec = codec->spec; | |
adcc70b2 KY |
3066 | const hda_nid_t *ssids; |
3067 | ||
3068 | switch (spec->codec_variant) { | |
3069 | case ALC269_TYPE_ALC269VA: | |
3070 | case ALC269_TYPE_ALC269VC: | |
065380f0 KY |
3071 | case ALC269_TYPE_ALC280: |
3072 | case ALC269_TYPE_ALC284: | |
4731d5de | 3073 | case ALC269_TYPE_ALC293: |
adcc70b2 KY |
3074 | ssids = alc269va_ssids; |
3075 | break; | |
3076 | case ALC269_TYPE_ALC269VB: | |
3077 | case ALC269_TYPE_ALC269VD: | |
065380f0 | 3078 | case ALC269_TYPE_ALC282: |
2af02be7 | 3079 | case ALC269_TYPE_ALC283: |
7fc7d047 | 3080 | case ALC269_TYPE_ALC286: |
506b62c3 | 3081 | case ALC269_TYPE_ALC298: |
1d04c9de | 3082 | case ALC269_TYPE_ALC255: |
4344aec8 | 3083 | case ALC269_TYPE_ALC256: |
f429e7e4 | 3084 | case ALC269_TYPE_ALC257: |
0a6f0600 | 3085 | case ALC269_TYPE_ALC215: |
4231430d | 3086 | case ALC269_TYPE_ALC225: |
99cee034 | 3087 | case ALC269_TYPE_ALC287: |
dcd4f0db | 3088 | case ALC269_TYPE_ALC294: |
1078bef0 | 3089 | case ALC269_TYPE_ALC300: |
f0778871 | 3090 | case ALC269_TYPE_ALC623: |
6fbae35a | 3091 | case ALC269_TYPE_ALC700: |
adcc70b2 KY |
3092 | ssids = alc269_ssids; |
3093 | break; | |
3094 | default: | |
3095 | ssids = alc269_ssids; | |
3096 | break; | |
3097 | } | |
bc9f98a9 | 3098 | |
3e6179b8 | 3099 | return alc_parse_auto_config(codec, alc269_ignore, ssids); |
1d045db9 | 3100 | } |
bc9f98a9 | 3101 | |
476c02e0 HW |
3102 | static const struct hda_jack_keymap alc_headset_btn_keymap[] = { |
3103 | { SND_JACK_BTN_0, KEY_PLAYPAUSE }, | |
3104 | { SND_JACK_BTN_1, KEY_VOICECOMMAND }, | |
3105 | { SND_JACK_BTN_2, KEY_VOLUMEUP }, | |
3106 | { SND_JACK_BTN_3, KEY_VOLUMEDOWN }, | |
3107 | {} | |
3108 | }; | |
3109 | ||
3110 | static void alc_headset_btn_callback(struct hda_codec *codec, | |
3111 | struct hda_jack_callback *jack) | |
3112 | { | |
3113 | int report = 0; | |
3114 | ||
3115 | if (jack->unsol_res & (7 << 13)) | |
3116 | report |= SND_JACK_BTN_0; | |
3117 | ||
3118 | if (jack->unsol_res & (1 << 16 | 3 << 8)) | |
3119 | report |= SND_JACK_BTN_1; | |
3120 | ||
3121 | /* Volume up key */ | |
3122 | if (jack->unsol_res & (7 << 23)) | |
3123 | report |= SND_JACK_BTN_2; | |
3124 | ||
3125 | /* Volume down key */ | |
3126 | if (jack->unsol_res & (7 << 10)) | |
3127 | report |= SND_JACK_BTN_3; | |
3128 | ||
04f7791b | 3129 | snd_hda_jack_set_button_state(codec, jack->nid, report); |
476c02e0 HW |
3130 | } |
3131 | ||
3132 | static void alc_disable_headset_jack_key(struct hda_codec *codec) | |
3133 | { | |
3134 | struct alc_spec *spec = codec->spec; | |
3135 | ||
3136 | if (!spec->has_hs_key) | |
3137 | return; | |
3138 | ||
3139 | switch (codec->core.vendor_id) { | |
3140 | case 0x10ec0215: | |
3141 | case 0x10ec0225: | |
3142 | case 0x10ec0285: | |
c72b9bfe | 3143 | case 0x10ec0287: |
476c02e0 HW |
3144 | case 0x10ec0295: |
3145 | case 0x10ec0289: | |
3146 | case 0x10ec0299: | |
3147 | alc_write_coef_idx(codec, 0x48, 0x0); | |
3148 | alc_update_coef_idx(codec, 0x49, 0x0045, 0x0); | |
3149 | alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0); | |
3150 | break; | |
1948fc06 | 3151 | case 0x10ec0230: |
476c02e0 HW |
3152 | case 0x10ec0236: |
3153 | case 0x10ec0256: | |
3154 | alc_write_coef_idx(codec, 0x48, 0x0); | |
3155 | alc_update_coef_idx(codec, 0x49, 0x0045, 0x0); | |
3156 | break; | |
3157 | } | |
3158 | } | |
3159 | ||
3160 | static void alc_enable_headset_jack_key(struct hda_codec *codec) | |
3161 | { | |
3162 | struct alc_spec *spec = codec->spec; | |
3163 | ||
3164 | if (!spec->has_hs_key) | |
3165 | return; | |
3166 | ||
3167 | switch (codec->core.vendor_id) { | |
3168 | case 0x10ec0215: | |
3169 | case 0x10ec0225: | |
3170 | case 0x10ec0285: | |
c72b9bfe | 3171 | case 0x10ec0287: |
476c02e0 HW |
3172 | case 0x10ec0295: |
3173 | case 0x10ec0289: | |
3174 | case 0x10ec0299: | |
3175 | alc_write_coef_idx(codec, 0x48, 0xd011); | |
3176 | alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045); | |
3177 | alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8); | |
3178 | break; | |
1948fc06 | 3179 | case 0x10ec0230: |
476c02e0 HW |
3180 | case 0x10ec0236: |
3181 | case 0x10ec0256: | |
3182 | alc_write_coef_idx(codec, 0x48, 0xd011); | |
3183 | alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045); | |
3184 | break; | |
3185 | } | |
3186 | } | |
3187 | ||
3188 | static void alc_fixup_headset_jack(struct hda_codec *codec, | |
3189 | const struct hda_fixup *fix, int action) | |
3190 | { | |
3191 | struct alc_spec *spec = codec->spec; | |
04f7791b | 3192 | hda_nid_t hp_pin; |
476c02e0 HW |
3193 | |
3194 | switch (action) { | |
3195 | case HDA_FIXUP_ACT_PRE_PROBE: | |
3196 | spec->has_hs_key = 1; | |
3197 | snd_hda_jack_detect_enable_callback(codec, 0x55, | |
3198 | alc_headset_btn_callback); | |
476c02e0 | 3199 | break; |
04f7791b HW |
3200 | case HDA_FIXUP_ACT_BUILD: |
3201 | hp_pin = alc_get_hp_pin(spec); | |
3202 | if (!hp_pin || snd_hda_jack_bind_keymap(codec, 0x55, | |
3203 | alc_headset_btn_keymap, | |
3204 | hp_pin)) | |
3205 | snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack", | |
3206 | false, SND_JACK_HEADSET, | |
3207 | alc_headset_btn_keymap); | |
3208 | ||
476c02e0 HW |
3209 | alc_enable_headset_jack_key(codec); |
3210 | break; | |
3211 | } | |
3212 | } | |
3213 | ||
1387e2d1 | 3214 | static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up) |
1d045db9 | 3215 | { |
98b24883 | 3216 | alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0); |
1d045db9 | 3217 | } |
291702f0 | 3218 | |
1d045db9 TI |
3219 | static void alc269_shutup(struct hda_codec *codec) |
3220 | { | |
adcc70b2 KY |
3221 | struct alc_spec *spec = codec->spec; |
3222 | ||
1387e2d1 KY |
3223 | if (spec->codec_variant == ALC269_TYPE_ALC269VB) |
3224 | alc269vb_toggle_power_output(codec, 0); | |
3225 | if (spec->codec_variant == ALC269_TYPE_ALC269VB && | |
3226 | (alc_get_coef0(codec) & 0x00ff) == 0x018) { | |
1d045db9 TI |
3227 | msleep(150); |
3228 | } | |
c0ca5ece | 3229 | alc_shutup_pins(codec); |
1d045db9 | 3230 | } |
291702f0 | 3231 | |
6b0f95c4 | 3232 | static const struct coef_fw alc282_coefs[] = { |
54db6c39 | 3233 | WRITE_COEF(0x03, 0x0002), /* Power Down Control */ |
32fa7e49 | 3234 | UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */ |
54db6c39 TI |
3235 | WRITE_COEF(0x07, 0x0200), /* DMIC control */ |
3236 | UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */ | |
3237 | UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */ | |
3238 | WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */ | |
3239 | WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */ | |
3240 | WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */ | |
3241 | UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */ | |
3242 | UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */ | |
3243 | WRITE_COEF(0x6f, 0x0), /* Class D test 4 */ | |
3244 | UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */ | |
3245 | WRITE_COEF(0x34, 0xa0c0), /* ANC */ | |
3246 | UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */ | |
3247 | UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */ | |
3248 | UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */ | |
3249 | WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */ | |
3250 | WRITE_COEF(0x63, 0x2902), /* PLL */ | |
3251 | WRITE_COEF(0x68, 0xa080), /* capless control 2 */ | |
3252 | WRITE_COEF(0x69, 0x3400), /* capless control 3 */ | |
3253 | WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */ | |
3254 | WRITE_COEF(0x6b, 0x0), /* capless control 5 */ | |
3255 | UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */ | |
3256 | WRITE_COEF(0x6e, 0x110a), /* class D test 3 */ | |
3257 | UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */ | |
3258 | WRITE_COEF(0x71, 0x0014), /* class D test 6 */ | |
3259 | WRITE_COEF(0x72, 0xc2ba), /* classD OCP */ | |
3260 | UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */ | |
3261 | WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */ | |
3262 | {} | |
3263 | }; | |
3264 | ||
cb149cb3 KY |
3265 | static void alc282_restore_default_value(struct hda_codec *codec) |
3266 | { | |
54db6c39 | 3267 | alc_process_coef_fw(codec, alc282_coefs); |
cb149cb3 KY |
3268 | } |
3269 | ||
7b5c7a02 KY |
3270 | static void alc282_init(struct hda_codec *codec) |
3271 | { | |
3272 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3273 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
7b5c7a02 KY |
3274 | bool hp_pin_sense; |
3275 | int coef78; | |
3276 | ||
cb149cb3 KY |
3277 | alc282_restore_default_value(codec); |
3278 | ||
7b5c7a02 KY |
3279 | if (!hp_pin) |
3280 | return; | |
3281 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3282 | coef78 = alc_read_coef_idx(codec, 0x78); | |
3283 | ||
3284 | /* Index 0x78 Direct Drive HP AMP LPM Control 1 */ | |
3285 | /* Headphone capless set to high power mode */ | |
3286 | alc_write_coef_idx(codec, 0x78, 0x9004); | |
3287 | ||
3288 | if (hp_pin_sense) | |
3289 | msleep(2); | |
3290 | ||
3291 | snd_hda_codec_write(codec, hp_pin, 0, | |
3292 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3293 | ||
3294 | if (hp_pin_sense) | |
3295 | msleep(85); | |
3296 | ||
3297 | snd_hda_codec_write(codec, hp_pin, 0, | |
3298 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3299 | ||
3300 | if (hp_pin_sense) | |
3301 | msleep(100); | |
3302 | ||
3303 | /* Headphone capless set to normal mode */ | |
3304 | alc_write_coef_idx(codec, 0x78, coef78); | |
3305 | } | |
3306 | ||
3307 | static void alc282_shutup(struct hda_codec *codec) | |
3308 | { | |
3309 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3310 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
7b5c7a02 KY |
3311 | bool hp_pin_sense; |
3312 | int coef78; | |
3313 | ||
3314 | if (!hp_pin) { | |
3315 | alc269_shutup(codec); | |
3316 | return; | |
3317 | } | |
3318 | ||
3319 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3320 | coef78 = alc_read_coef_idx(codec, 0x78); | |
3321 | alc_write_coef_idx(codec, 0x78, 0x9004); | |
3322 | ||
3323 | if (hp_pin_sense) | |
3324 | msleep(2); | |
3325 | ||
3326 | snd_hda_codec_write(codec, hp_pin, 0, | |
3327 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3328 | ||
3329 | if (hp_pin_sense) | |
3330 | msleep(85); | |
3331 | ||
c0ca5ece TI |
3332 | if (!spec->no_shutup_pins) |
3333 | snd_hda_codec_write(codec, hp_pin, 0, | |
3334 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
7b5c7a02 KY |
3335 | |
3336 | if (hp_pin_sense) | |
3337 | msleep(100); | |
3338 | ||
3339 | alc_auto_setup_eapd(codec, false); | |
c0ca5ece | 3340 | alc_shutup_pins(codec); |
7b5c7a02 KY |
3341 | alc_write_coef_idx(codec, 0x78, coef78); |
3342 | } | |
3343 | ||
6b0f95c4 | 3344 | static const struct coef_fw alc283_coefs[] = { |
54db6c39 | 3345 | WRITE_COEF(0x03, 0x0002), /* Power Down Control */ |
56779864 | 3346 | UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */ |
54db6c39 TI |
3347 | WRITE_COEF(0x07, 0x0200), /* DMIC control */ |
3348 | UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */ | |
3349 | UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */ | |
3350 | WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */ | |
3351 | WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */ | |
3352 | WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */ | |
3353 | UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */ | |
3354 | UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */ | |
3355 | WRITE_COEF(0x3a, 0x0), /* Class D test 4 */ | |
3356 | UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */ | |
3357 | WRITE_COEF(0x22, 0xa0c0), /* ANC */ | |
3358 | UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */ | |
3359 | UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */ | |
3360 | UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */ | |
3361 | WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */ | |
3362 | WRITE_COEF(0x2e, 0x2902), /* PLL */ | |
3363 | WRITE_COEF(0x33, 0xa080), /* capless control 2 */ | |
3364 | WRITE_COEF(0x34, 0x3400), /* capless control 3 */ | |
3365 | WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */ | |
3366 | WRITE_COEF(0x36, 0x0), /* capless control 5 */ | |
3367 | UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */ | |
3368 | WRITE_COEF(0x39, 0x110a), /* class D test 3 */ | |
3369 | UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */ | |
3370 | WRITE_COEF(0x3c, 0x0014), /* class D test 6 */ | |
3371 | WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */ | |
3372 | UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */ | |
3373 | WRITE_COEF(0x49, 0x0), /* test mode */ | |
3374 | UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */ | |
3375 | UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */ | |
3376 | WRITE_COEF(0x37, 0xfc06), /* Class D amp control */ | |
56779864 | 3377 | UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */ |
54db6c39 TI |
3378 | {} |
3379 | }; | |
3380 | ||
6bd55b04 KY |
3381 | static void alc283_restore_default_value(struct hda_codec *codec) |
3382 | { | |
54db6c39 | 3383 | alc_process_coef_fw(codec, alc283_coefs); |
6bd55b04 KY |
3384 | } |
3385 | ||
2af02be7 KY |
3386 | static void alc283_init(struct hda_codec *codec) |
3387 | { | |
3388 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3389 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
2af02be7 | 3390 | bool hp_pin_sense; |
2af02be7 | 3391 | |
6bd55b04 KY |
3392 | alc283_restore_default_value(codec); |
3393 | ||
2af02be7 KY |
3394 | if (!hp_pin) |
3395 | return; | |
a59d7199 KY |
3396 | |
3397 | msleep(30); | |
2af02be7 KY |
3398 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); |
3399 | ||
3400 | /* Index 0x43 Direct Drive HP AMP LPM Control 1 */ | |
3401 | /* Headphone capless set to high power mode */ | |
3402 | alc_write_coef_idx(codec, 0x43, 0x9004); | |
3403 | ||
3404 | snd_hda_codec_write(codec, hp_pin, 0, | |
3405 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3406 | ||
3407 | if (hp_pin_sense) | |
3408 | msleep(85); | |
3409 | ||
3410 | snd_hda_codec_write(codec, hp_pin, 0, | |
3411 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3412 | ||
3413 | if (hp_pin_sense) | |
3414 | msleep(85); | |
3415 | /* Index 0x46 Combo jack auto switch control 2 */ | |
3416 | /* 3k pull low control for Headset jack. */ | |
98b24883 | 3417 | alc_update_coef_idx(codec, 0x46, 3 << 12, 0); |
2af02be7 KY |
3418 | /* Headphone capless set to normal mode */ |
3419 | alc_write_coef_idx(codec, 0x43, 0x9614); | |
3420 | } | |
3421 | ||
3422 | static void alc283_shutup(struct hda_codec *codec) | |
3423 | { | |
3424 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3425 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
2af02be7 | 3426 | bool hp_pin_sense; |
2af02be7 KY |
3427 | |
3428 | if (!hp_pin) { | |
3429 | alc269_shutup(codec); | |
3430 | return; | |
3431 | } | |
3432 | ||
3433 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3434 | ||
3435 | alc_write_coef_idx(codec, 0x43, 0x9004); | |
3436 | ||
b450b17c HP |
3437 | /*depop hp during suspend*/ |
3438 | alc_write_coef_idx(codec, 0x06, 0x2100); | |
3439 | ||
2af02be7 KY |
3440 | snd_hda_codec_write(codec, hp_pin, 0, |
3441 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3442 | ||
3443 | if (hp_pin_sense) | |
88011c09 | 3444 | msleep(100); |
2af02be7 | 3445 | |
c0ca5ece TI |
3446 | if (!spec->no_shutup_pins) |
3447 | snd_hda_codec_write(codec, hp_pin, 0, | |
3448 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
2af02be7 | 3449 | |
98b24883 | 3450 | alc_update_coef_idx(codec, 0x46, 0, 3 << 12); |
2af02be7 KY |
3451 | |
3452 | if (hp_pin_sense) | |
88011c09 | 3453 | msleep(100); |
0435b3ff | 3454 | alc_auto_setup_eapd(codec, false); |
c0ca5ece | 3455 | alc_shutup_pins(codec); |
2af02be7 KY |
3456 | alc_write_coef_idx(codec, 0x43, 0x9614); |
3457 | } | |
3458 | ||
4a219ef8 KY |
3459 | static void alc256_init(struct hda_codec *codec) |
3460 | { | |
3461 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3462 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
4a219ef8 KY |
3463 | bool hp_pin_sense; |
3464 | ||
3465 | if (!hp_pin) | |
6447c962 | 3466 | hp_pin = 0x21; |
4a219ef8 KY |
3467 | |
3468 | msleep(30); | |
3469 | ||
3470 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3471 | ||
3472 | if (hp_pin_sense) | |
3473 | msleep(2); | |
3474 | ||
3475 | alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */ | |
6447c962 KY |
3476 | if (spec->ultra_low_power) { |
3477 | alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1); | |
3478 | alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2); | |
3479 | alc_update_coef_idx(codec, 0x08, 7<<4, 0); | |
3480 | alc_update_coef_idx(codec, 0x3b, 1<<15, 0); | |
3481 | alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6); | |
3482 | msleep(30); | |
3483 | } | |
4a219ef8 KY |
3484 | |
3485 | snd_hda_codec_write(codec, hp_pin, 0, | |
3486 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3487 | ||
6447c962 | 3488 | if (hp_pin_sense || spec->ultra_low_power) |
4a219ef8 KY |
3489 | msleep(85); |
3490 | ||
3491 | snd_hda_codec_write(codec, hp_pin, 0, | |
3492 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3493 | ||
6447c962 | 3494 | if (hp_pin_sense || spec->ultra_low_power) |
4a219ef8 KY |
3495 | msleep(100); |
3496 | ||
3497 | alc_update_coef_idx(codec, 0x46, 3 << 12, 0); | |
3498 | alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */ | |
88d42b2b KY |
3499 | alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */ |
3500 | alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15); | |
c4473744 TH |
3501 | /* |
3502 | * Expose headphone mic (or possibly Line In on some machines) instead | |
3503 | * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See | |
3504 | * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of | |
3505 | * this register. | |
3506 | */ | |
3507 | alc_write_coef_idx(codec, 0x36, 0x5757); | |
4a219ef8 KY |
3508 | } |
3509 | ||
3510 | static void alc256_shutup(struct hda_codec *codec) | |
3511 | { | |
3512 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3513 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
4a219ef8 KY |
3514 | bool hp_pin_sense; |
3515 | ||
6447c962 KY |
3516 | if (!hp_pin) |
3517 | hp_pin = 0x21; | |
4a219ef8 KY |
3518 | |
3519 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3520 | ||
3521 | if (hp_pin_sense) | |
3522 | msleep(2); | |
3523 | ||
3524 | snd_hda_codec_write(codec, hp_pin, 0, | |
3525 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3526 | ||
6447c962 | 3527 | if (hp_pin_sense || spec->ultra_low_power) |
4a219ef8 KY |
3528 | msleep(85); |
3529 | ||
1c9609e3 TI |
3530 | /* 3k pull low control for Headset jack. */ |
3531 | /* NOTE: call this before clearing the pin, otherwise codec stalls */ | |
3f742490 HW |
3532 | /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly |
3533 | * when booting with headset plugged. So skip setting it for the codec alc257 | |
3534 | */ | |
5aec9891 KY |
3535 | if (spec->codec_variant != ALC269_TYPE_ALC257 && |
3536 | spec->codec_variant != ALC269_TYPE_ALC256) | |
3f742490 | 3537 | alc_update_coef_idx(codec, 0x46, 0, 3 << 12); |
1c9609e3 | 3538 | |
c0ca5ece TI |
3539 | if (!spec->no_shutup_pins) |
3540 | snd_hda_codec_write(codec, hp_pin, 0, | |
3541 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
4a219ef8 | 3542 | |
6447c962 | 3543 | if (hp_pin_sense || spec->ultra_low_power) |
4a219ef8 KY |
3544 | msleep(100); |
3545 | ||
3546 | alc_auto_setup_eapd(codec, false); | |
c0ca5ece | 3547 | alc_shutup_pins(codec); |
6447c962 KY |
3548 | if (spec->ultra_low_power) { |
3549 | msleep(50); | |
3550 | alc_update_coef_idx(codec, 0x03, 1<<1, 0); | |
3551 | alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4); | |
3552 | alc_update_coef_idx(codec, 0x08, 3<<2, 0); | |
3553 | alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15); | |
3554 | alc_update_coef_idx(codec, 0x0e, 7<<6, 0); | |
3555 | msleep(30); | |
3556 | } | |
4a219ef8 KY |
3557 | } |
3558 | ||
3c24e483 KY |
3559 | static void alc285_hp_init(struct hda_codec *codec) |
3560 | { | |
3561 | struct alc_spec *spec = codec->spec; | |
3562 | hda_nid_t hp_pin = alc_get_hp_pin(spec); | |
3563 | int i, val; | |
3564 | int coef38, coef0d, coef36; | |
3565 | ||
3566 | alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */ | |
3567 | coef38 = alc_read_coef_idx(codec, 0x38); /* Amp control */ | |
3568 | coef0d = alc_read_coef_idx(codec, 0x0d); /* Digital Misc control */ | |
3569 | coef36 = alc_read_coef_idx(codec, 0x36); /* Passthrough Control */ | |
3570 | alc_update_coef_idx(codec, 0x38, 1<<4, 0x0); | |
3571 | alc_update_coef_idx(codec, 0x0d, 0x110, 0x0); | |
3572 | ||
3573 | alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000); | |
3574 | ||
3575 | if (hp_pin) | |
3576 | snd_hda_codec_write(codec, hp_pin, 0, | |
3577 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3578 | ||
3579 | msleep(130); | |
3580 | alc_update_coef_idx(codec, 0x36, 1<<14, 1<<14); | |
3581 | alc_update_coef_idx(codec, 0x36, 1<<13, 0x0); | |
3582 | ||
3583 | if (hp_pin) | |
3584 | snd_hda_codec_write(codec, hp_pin, 0, | |
3585 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
3586 | msleep(10); | |
3587 | alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */ | |
3588 | alc_write_coefex_idx(codec, 0x58, 0x00, 0x7880); | |
3589 | alc_write_coefex_idx(codec, 0x58, 0x0f, 0xf049); | |
3590 | alc_update_coefex_idx(codec, 0x58, 0x03, 0x00f0, 0x00c0); | |
3591 | ||
3592 | alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */ | |
3593 | val = alc_read_coefex_idx(codec, 0x58, 0x00); | |
3594 | for (i = 0; i < 20 && val & 0x8000; i++) { | |
3595 | msleep(50); | |
3596 | val = alc_read_coefex_idx(codec, 0x58, 0x00); | |
3597 | } /* Wait for depop procedure finish */ | |
3598 | ||
3599 | alc_write_coefex_idx(codec, 0x58, 0x00, val); /* write back the result */ | |
3600 | alc_update_coef_idx(codec, 0x38, 1<<4, coef38); | |
3601 | alc_update_coef_idx(codec, 0x0d, 0x110, coef0d); | |
3602 | alc_update_coef_idx(codec, 0x36, 3<<13, coef36); | |
3603 | ||
3604 | msleep(50); | |
3605 | alc_update_coef_idx(codec, 0x4a, 1<<15, 0); | |
3606 | } | |
3607 | ||
da911b1f KY |
3608 | static void alc225_init(struct hda_codec *codec) |
3609 | { | |
3610 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3611 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
da911b1f KY |
3612 | bool hp1_pin_sense, hp2_pin_sense; |
3613 | ||
3c24e483 KY |
3614 | if (spec->codec_variant != ALC269_TYPE_ALC287) |
3615 | /* required only at boot or S3 and S4 resume time */ | |
3616 | if (!spec->done_hp_init || | |
3617 | is_s3_resume(codec) || | |
3618 | is_s4_resume(codec)) { | |
3619 | alc285_hp_init(codec); | |
3620 | spec->done_hp_init = true; | |
3621 | } | |
3622 | ||
da911b1f | 3623 | if (!hp_pin) |
d3ba58bb | 3624 | hp_pin = 0x21; |
da911b1f KY |
3625 | msleep(30); |
3626 | ||
3627 | hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3628 | hp2_pin_sense = snd_hda_jack_detect(codec, 0x16); | |
3629 | ||
3630 | if (hp1_pin_sense || hp2_pin_sense) | |
3631 | msleep(2); | |
3632 | ||
3633 | alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */ | |
d3ba58bb KY |
3634 | if (spec->ultra_low_power) { |
3635 | alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2); | |
3636 | alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6); | |
3637 | alc_update_coef_idx(codec, 0x33, 1<<11, 0); | |
3638 | msleep(30); | |
3639 | } | |
da911b1f | 3640 | |
d3ba58bb | 3641 | if (hp1_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3642 | snd_hda_codec_write(codec, hp_pin, 0, |
3643 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3644 | if (hp2_pin_sense) | |
3645 | snd_hda_codec_write(codec, 0x16, 0, | |
3646 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3647 | ||
d3ba58bb | 3648 | if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3649 | msleep(85); |
3650 | ||
d3ba58bb | 3651 | if (hp1_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3652 | snd_hda_codec_write(codec, hp_pin, 0, |
3653 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3654 | if (hp2_pin_sense) | |
3655 | snd_hda_codec_write(codec, 0x16, 0, | |
3656 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3657 | ||
d3ba58bb | 3658 | if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3659 | msleep(100); |
3660 | ||
3661 | alc_update_coef_idx(codec, 0x4a, 3 << 10, 0); | |
3662 | alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */ | |
3663 | } | |
3664 | ||
3665 | static void alc225_shutup(struct hda_codec *codec) | |
3666 | { | |
3667 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3668 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
da911b1f KY |
3669 | bool hp1_pin_sense, hp2_pin_sense; |
3670 | ||
d3ba58bb KY |
3671 | if (!hp_pin) |
3672 | hp_pin = 0x21; | |
476c02e0 HW |
3673 | |
3674 | alc_disable_headset_jack_key(codec); | |
da911b1f KY |
3675 | /* 3k pull low control for Headset jack. */ |
3676 | alc_update_coef_idx(codec, 0x4a, 0, 3 << 10); | |
3677 | ||
3678 | hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3679 | hp2_pin_sense = snd_hda_jack_detect(codec, 0x16); | |
3680 | ||
3681 | if (hp1_pin_sense || hp2_pin_sense) | |
3682 | msleep(2); | |
3683 | ||
d3ba58bb | 3684 | if (hp1_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3685 | snd_hda_codec_write(codec, hp_pin, 0, |
3686 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3687 | if (hp2_pin_sense) | |
3688 | snd_hda_codec_write(codec, 0x16, 0, | |
3689 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3690 | ||
d3ba58bb | 3691 | if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3692 | msleep(85); |
3693 | ||
d3ba58bb | 3694 | if (hp1_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3695 | snd_hda_codec_write(codec, hp_pin, 0, |
3696 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
3697 | if (hp2_pin_sense) | |
3698 | snd_hda_codec_write(codec, 0x16, 0, | |
3699 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
3700 | ||
d3ba58bb | 3701 | if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3702 | msleep(100); |
3703 | ||
3704 | alc_auto_setup_eapd(codec, false); | |
c0ca5ece | 3705 | alc_shutup_pins(codec); |
d3ba58bb KY |
3706 | if (spec->ultra_low_power) { |
3707 | msleep(50); | |
3708 | alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2); | |
3709 | alc_update_coef_idx(codec, 0x0e, 7<<6, 0); | |
3710 | alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11); | |
3711 | alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4); | |
3712 | msleep(30); | |
3713 | } | |
476c02e0 HW |
3714 | |
3715 | alc_update_coef_idx(codec, 0x4a, 3 << 10, 0); | |
3716 | alc_enable_headset_jack_key(codec); | |
da911b1f KY |
3717 | } |
3718 | ||
c2d6af53 KY |
3719 | static void alc_default_init(struct hda_codec *codec) |
3720 | { | |
3721 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3722 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
c2d6af53 KY |
3723 | bool hp_pin_sense; |
3724 | ||
3725 | if (!hp_pin) | |
3726 | return; | |
3727 | ||
3728 | msleep(30); | |
3729 | ||
3730 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3731 | ||
3732 | if (hp_pin_sense) | |
3733 | msleep(2); | |
3734 | ||
3735 | snd_hda_codec_write(codec, hp_pin, 0, | |
3736 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3737 | ||
3738 | if (hp_pin_sense) | |
3739 | msleep(85); | |
3740 | ||
3741 | snd_hda_codec_write(codec, hp_pin, 0, | |
3742 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3743 | ||
3744 | if (hp_pin_sense) | |
3745 | msleep(100); | |
3746 | } | |
3747 | ||
3748 | static void alc_default_shutup(struct hda_codec *codec) | |
3749 | { | |
3750 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3751 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
c2d6af53 KY |
3752 | bool hp_pin_sense; |
3753 | ||
3754 | if (!hp_pin) { | |
3755 | alc269_shutup(codec); | |
3756 | return; | |
3757 | } | |
3758 | ||
3759 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3760 | ||
3761 | if (hp_pin_sense) | |
3762 | msleep(2); | |
3763 | ||
3764 | snd_hda_codec_write(codec, hp_pin, 0, | |
3765 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3766 | ||
3767 | if (hp_pin_sense) | |
3768 | msleep(85); | |
3769 | ||
c0ca5ece TI |
3770 | if (!spec->no_shutup_pins) |
3771 | snd_hda_codec_write(codec, hp_pin, 0, | |
3772 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
c2d6af53 KY |
3773 | |
3774 | if (hp_pin_sense) | |
3775 | msleep(100); | |
3776 | ||
3777 | alc_auto_setup_eapd(codec, false); | |
c0ca5ece | 3778 | alc_shutup_pins(codec); |
c2d6af53 KY |
3779 | } |
3780 | ||
693abe11 KY |
3781 | static void alc294_hp_init(struct hda_codec *codec) |
3782 | { | |
3783 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3784 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
693abe11 KY |
3785 | int i, val; |
3786 | ||
3787 | if (!hp_pin) | |
3788 | return; | |
3789 | ||
3790 | snd_hda_codec_write(codec, hp_pin, 0, | |
3791 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3792 | ||
3793 | msleep(100); | |
3794 | ||
c0ca5ece TI |
3795 | if (!spec->no_shutup_pins) |
3796 | snd_hda_codec_write(codec, hp_pin, 0, | |
3797 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
693abe11 KY |
3798 | |
3799 | alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */ | |
3800 | alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */ | |
3801 | ||
3802 | /* Wait for depop procedure finish */ | |
3803 | val = alc_read_coefex_idx(codec, 0x58, 0x01); | |
3804 | for (i = 0; i < 20 && val & 0x0080; i++) { | |
3805 | msleep(50); | |
3806 | val = alc_read_coefex_idx(codec, 0x58, 0x01); | |
3807 | } | |
3808 | /* Set HP depop to auto mode */ | |
3809 | alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b); | |
3810 | msleep(50); | |
3811 | } | |
3812 | ||
3813 | static void alc294_init(struct hda_codec *codec) | |
3814 | { | |
3815 | struct alc_spec *spec = codec->spec; | |
3816 | ||
f6ef4e0e TI |
3817 | /* required only at boot or S4 resume time */ |
3818 | if (!spec->done_hp_init || | |
3819 | codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) { | |
693abe11 KY |
3820 | alc294_hp_init(codec); |
3821 | spec->done_hp_init = true; | |
3822 | } | |
3823 | alc_default_init(codec); | |
3824 | } | |
3825 | ||
ad60d502 KY |
3826 | static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg, |
3827 | unsigned int val) | |
3828 | { | |
3829 | snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1); | |
3830 | snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */ | |
3831 | snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */ | |
3832 | } | |
3833 | ||
3834 | static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg) | |
3835 | { | |
3836 | unsigned int val; | |
3837 | ||
3838 | snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1); | |
3839 | val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0) | |
3840 | & 0xffff; | |
3841 | val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0) | |
3842 | << 16; | |
3843 | return val; | |
3844 | } | |
3845 | ||
3846 | static void alc5505_dsp_halt(struct hda_codec *codec) | |
3847 | { | |
3848 | unsigned int val; | |
3849 | ||
3850 | alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */ | |
3851 | alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */ | |
3852 | alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */ | |
3853 | alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */ | |
3854 | alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */ | |
3855 | alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */ | |
3856 | alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */ | |
3857 | val = alc5505_coef_get(codec, 0x6220); | |
3858 | alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */ | |
3859 | } | |
3860 | ||
3861 | static void alc5505_dsp_back_from_halt(struct hda_codec *codec) | |
3862 | { | |
3863 | alc5505_coef_set(codec, 0x61b8, 0x04133302); | |
3864 | alc5505_coef_set(codec, 0x61b0, 0x00005b16); | |
3865 | alc5505_coef_set(codec, 0x61b4, 0x040a2b02); | |
3866 | alc5505_coef_set(codec, 0x6230, 0xf80d4011); | |
3867 | alc5505_coef_set(codec, 0x6220, 0x2002010f); | |
3868 | alc5505_coef_set(codec, 0x880c, 0x00000004); | |
3869 | } | |
3870 | ||
3871 | static void alc5505_dsp_init(struct hda_codec *codec) | |
3872 | { | |
3873 | unsigned int val; | |
3874 | ||
3875 | alc5505_dsp_halt(codec); | |
3876 | alc5505_dsp_back_from_halt(codec); | |
3877 | alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */ | |
3878 | alc5505_coef_set(codec, 0x61b0, 0x5b16); | |
3879 | alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */ | |
3880 | alc5505_coef_set(codec, 0x61b4, 0x04132b02); | |
3881 | alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/ | |
3882 | alc5505_coef_set(codec, 0x61b8, 0x041f3302); | |
3883 | snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */ | |
3884 | alc5505_coef_set(codec, 0x61b8, 0x041b3302); | |
3885 | alc5505_coef_set(codec, 0x61b8, 0x04173302); | |
3886 | alc5505_coef_set(codec, 0x61b8, 0x04163302); | |
3887 | alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */ | |
3888 | alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */ | |
3889 | alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */ | |
3890 | ||
3891 | val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */ | |
3892 | if (val <= 3) | |
3893 | alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */ | |
3894 | else | |
3895 | alc5505_coef_set(codec, 0x6220, 0x6002018f); | |
3896 | ||
3897 | alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/ | |
3898 | alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */ | |
3899 | alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */ | |
3900 | alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */ | |
3901 | alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */ | |
3902 | alc5505_coef_set(codec, 0x880c, 0x00000003); | |
3903 | alc5505_coef_set(codec, 0x880c, 0x00000010); | |
cd63a5ff TI |
3904 | |
3905 | #ifdef HALT_REALTEK_ALC5505 | |
3906 | alc5505_dsp_halt(codec); | |
3907 | #endif | |
ad60d502 KY |
3908 | } |
3909 | ||
cd63a5ff | 3910 | #ifdef HALT_REALTEK_ALC5505 |
8a71821f PLB |
3911 | #define alc5505_dsp_suspend(codec) do { } while (0) /* NOP */ |
3912 | #define alc5505_dsp_resume(codec) do { } while (0) /* NOP */ | |
cd63a5ff TI |
3913 | #else |
3914 | #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec) | |
3915 | #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec) | |
3916 | #endif | |
3917 | ||
2a43952a | 3918 | #ifdef CONFIG_PM |
ad60d502 KY |
3919 | static int alc269_suspend(struct hda_codec *codec) |
3920 | { | |
3921 | struct alc_spec *spec = codec->spec; | |
3922 | ||
3923 | if (spec->has_alc5505_dsp) | |
cd63a5ff | 3924 | alc5505_dsp_suspend(codec); |
ad60d502 KY |
3925 | return alc_suspend(codec); |
3926 | } | |
3927 | ||
1d045db9 TI |
3928 | static int alc269_resume(struct hda_codec *codec) |
3929 | { | |
adcc70b2 KY |
3930 | struct alc_spec *spec = codec->spec; |
3931 | ||
1387e2d1 KY |
3932 | if (spec->codec_variant == ALC269_TYPE_ALC269VB) |
3933 | alc269vb_toggle_power_output(codec, 0); | |
3934 | if (spec->codec_variant == ALC269_TYPE_ALC269VB && | |
adcc70b2 | 3935 | (alc_get_coef0(codec) & 0x00ff) == 0x018) { |
1d045db9 TI |
3936 | msleep(150); |
3937 | } | |
8c427226 | 3938 | |
1d045db9 | 3939 | codec->patch_ops.init(codec); |
f1d4e28b | 3940 | |
1387e2d1 KY |
3941 | if (spec->codec_variant == ALC269_TYPE_ALC269VB) |
3942 | alc269vb_toggle_power_output(codec, 1); | |
3943 | if (spec->codec_variant == ALC269_TYPE_ALC269VB && | |
adcc70b2 | 3944 | (alc_get_coef0(codec) & 0x00ff) == 0x017) { |
1d045db9 TI |
3945 | msleep(200); |
3946 | } | |
f1d4e28b | 3947 | |
1a462be5 | 3948 | snd_hda_regmap_sync(codec); |
1d045db9 | 3949 | hda_call_check_power_status(codec, 0x01); |
f475371a HW |
3950 | |
3951 | /* on some machine, the BIOS will clear the codec gpio data when enter | |
3952 | * suspend, and won't restore the data after resume, so we restore it | |
3953 | * in the driver. | |
3954 | */ | |
d261eec8 TI |
3955 | if (spec->gpio_data) |
3956 | alc_write_gpio_data(codec); | |
f475371a | 3957 | |
ad60d502 | 3958 | if (spec->has_alc5505_dsp) |
cd63a5ff | 3959 | alc5505_dsp_resume(codec); |
c5177c86 | 3960 | |
1d045db9 TI |
3961 | return 0; |
3962 | } | |
2a43952a | 3963 | #endif /* CONFIG_PM */ |
f1d4e28b | 3964 | |
108cc108 | 3965 | static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec, |
1727a771 | 3966 | const struct hda_fixup *fix, int action) |
108cc108 DH |
3967 | { |
3968 | struct alc_spec *spec = codec->spec; | |
3969 | ||
1727a771 | 3970 | if (action == HDA_FIXUP_ACT_PRE_PROBE) |
108cc108 DH |
3971 | spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; |
3972 | } | |
3973 | ||
fdcc968a JMG |
3974 | static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec, |
3975 | const struct hda_fixup *fix, | |
3976 | int action) | |
3977 | { | |
3978 | unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21); | |
3979 | unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19); | |
3980 | ||
3981 | if (cfg_headphone && cfg_headset_mic == 0x411111f0) | |
3982 | snd_hda_codec_set_pincfg(codec, 0x19, | |
3983 | (cfg_headphone & ~AC_DEFCFG_DEVICE) | | |
3984 | (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT)); | |
3985 | } | |
3986 | ||
1d045db9 | 3987 | static void alc269_fixup_hweq(struct hda_codec *codec, |
1727a771 | 3988 | const struct hda_fixup *fix, int action) |
1d045db9 | 3989 | { |
98b24883 TI |
3990 | if (action == HDA_FIXUP_ACT_INIT) |
3991 | alc_update_coef_idx(codec, 0x1e, 0, 0x80); | |
1d045db9 | 3992 | } |
f1d4e28b | 3993 | |
7c478f03 DH |
3994 | static void alc269_fixup_headset_mic(struct hda_codec *codec, |
3995 | const struct hda_fixup *fix, int action) | |
3996 | { | |
3997 | struct alc_spec *spec = codec->spec; | |
3998 | ||
3999 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
4000 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
4001 | } | |
4002 | ||
1d045db9 | 4003 | static void alc271_fixup_dmic(struct hda_codec *codec, |
1727a771 | 4004 | const struct hda_fixup *fix, int action) |
1d045db9 TI |
4005 | { |
4006 | static const struct hda_verb verbs[] = { | |
4007 | {0x20, AC_VERB_SET_COEF_INDEX, 0x0d}, | |
4008 | {0x20, AC_VERB_SET_PROC_COEF, 0x4000}, | |
4009 | {} | |
4010 | }; | |
4011 | unsigned int cfg; | |
f1d4e28b | 4012 | |
7639a06c TI |
4013 | if (strcmp(codec->core.chip_name, "ALC271X") && |
4014 | strcmp(codec->core.chip_name, "ALC269VB")) | |
1d045db9 TI |
4015 | return; |
4016 | cfg = snd_hda_codec_get_pincfg(codec, 0x12); | |
4017 | if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED) | |
4018 | snd_hda_sequence_write(codec, verbs); | |
4019 | } | |
f1d4e28b | 4020 | |
c8426b27 TI |
4021 | /* Fix the speaker amp after resume, etc */ |
4022 | static void alc269vb_fixup_aspire_e1_coef(struct hda_codec *codec, | |
4023 | const struct hda_fixup *fix, | |
4024 | int action) | |
4025 | { | |
4026 | if (action == HDA_FIXUP_ACT_INIT) | |
4027 | alc_update_coef_idx(codec, 0x0d, 0x6000, 0x6000); | |
4028 | } | |
4029 | ||
017f2a10 | 4030 | static void alc269_fixup_pcm_44k(struct hda_codec *codec, |
1727a771 | 4031 | const struct hda_fixup *fix, int action) |
017f2a10 TI |
4032 | { |
4033 | struct alc_spec *spec = codec->spec; | |
4034 | ||
1727a771 | 4035 | if (action != HDA_FIXUP_ACT_PROBE) |
017f2a10 TI |
4036 | return; |
4037 | ||
4038 | /* Due to a hardware problem on Lenovo Ideadpad, we need to | |
4039 | * fix the sample rate of analog I/O to 44.1kHz | |
4040 | */ | |
08c189f2 TI |
4041 | spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback; |
4042 | spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture; | |
017f2a10 TI |
4043 | } |
4044 | ||
adabb3ec | 4045 | static void alc269_fixup_stereo_dmic(struct hda_codec *codec, |
1727a771 | 4046 | const struct hda_fixup *fix, int action) |
adabb3ec | 4047 | { |
adabb3ec TI |
4048 | /* The digital-mic unit sends PDM (differential signal) instead of |
4049 | * the standard PCM, thus you can't record a valid mono stream as is. | |
4050 | * Below is a workaround specific to ALC269 to control the dmic | |
4051 | * signal source as mono. | |
4052 | */ | |
98b24883 TI |
4053 | if (action == HDA_FIXUP_ACT_INIT) |
4054 | alc_update_coef_idx(codec, 0x07, 0, 0x80); | |
adabb3ec TI |
4055 | } |
4056 | ||
24519911 TI |
4057 | static void alc269_quanta_automute(struct hda_codec *codec) |
4058 | { | |
08c189f2 | 4059 | snd_hda_gen_update_outputs(codec); |
24519911 | 4060 | |
1687ccc8 TI |
4061 | alc_write_coef_idx(codec, 0x0c, 0x680); |
4062 | alc_write_coef_idx(codec, 0x0c, 0x480); | |
24519911 TI |
4063 | } |
4064 | ||
4065 | static void alc269_fixup_quanta_mute(struct hda_codec *codec, | |
1727a771 | 4066 | const struct hda_fixup *fix, int action) |
24519911 TI |
4067 | { |
4068 | struct alc_spec *spec = codec->spec; | |
1727a771 | 4069 | if (action != HDA_FIXUP_ACT_PROBE) |
24519911 | 4070 | return; |
08c189f2 | 4071 | spec->gen.automute_hook = alc269_quanta_automute; |
24519911 TI |
4072 | } |
4073 | ||
d240d1dc | 4074 | static void alc269_x101_hp_automute_hook(struct hda_codec *codec, |
1a4f69d5 | 4075 | struct hda_jack_callback *jack) |
d240d1dc DH |
4076 | { |
4077 | struct alc_spec *spec = codec->spec; | |
4078 | int vref; | |
4079 | msleep(200); | |
4080 | snd_hda_gen_hp_automute(codec, jack); | |
4081 | ||
4082 | vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0; | |
4083 | msleep(100); | |
4084 | snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | |
4085 | vref); | |
4086 | msleep(500); | |
4087 | snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | |
4088 | vref); | |
4089 | } | |
4090 | ||
a2ef03fe TE |
4091 | /* |
4092 | * Magic sequence to make Huawei Matebook X right speaker working (bko#197801) | |
4093 | */ | |
4094 | struct hda_alc298_mbxinit { | |
4095 | unsigned char value_0x23; | |
4096 | unsigned char value_0x25; | |
4097 | }; | |
4098 | ||
4099 | static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec, | |
4100 | const struct hda_alc298_mbxinit *initval, | |
4101 | bool first) | |
4102 | { | |
4103 | snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0); | |
4104 | alc_write_coef_idx(codec, 0x26, 0xb000); | |
4105 | ||
4106 | if (first) | |
4107 | snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0); | |
4108 | ||
4109 | snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80); | |
4110 | alc_write_coef_idx(codec, 0x26, 0xf000); | |
4111 | alc_write_coef_idx(codec, 0x23, initval->value_0x23); | |
4112 | ||
4113 | if (initval->value_0x23 != 0x1e) | |
4114 | alc_write_coef_idx(codec, 0x25, initval->value_0x25); | |
4115 | ||
4116 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26); | |
4117 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010); | |
4118 | } | |
4119 | ||
4120 | static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec, | |
4121 | const struct hda_fixup *fix, | |
4122 | int action) | |
4123 | { | |
4124 | /* Initialization magic */ | |
4125 | static const struct hda_alc298_mbxinit dac_init[] = { | |
4126 | {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00}, | |
4127 | {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00}, | |
4128 | {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00}, | |
4129 | {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24}, | |
4130 | {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f}, | |
4131 | {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00}, | |
4132 | {0x2f, 0x00}, | |
4133 | {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00}, | |
4134 | {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c}, | |
4135 | {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80}, | |
4136 | {} | |
4137 | }; | |
4138 | const struct hda_alc298_mbxinit *seq; | |
4139 | ||
4140 | if (action != HDA_FIXUP_ACT_INIT) | |
4141 | return; | |
4142 | ||
4143 | /* Start */ | |
4144 | snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00); | |
4145 | snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80); | |
4146 | alc_write_coef_idx(codec, 0x26, 0xf000); | |
4147 | alc_write_coef_idx(codec, 0x22, 0x31); | |
4148 | alc_write_coef_idx(codec, 0x23, 0x0b); | |
4149 | alc_write_coef_idx(codec, 0x25, 0x00); | |
4150 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26); | |
4151 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010); | |
4152 | ||
4153 | for (seq = dac_init; seq->value_0x23; seq++) | |
4154 | alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init); | |
4155 | } | |
4156 | ||
d240d1dc DH |
4157 | static void alc269_fixup_x101_headset_mic(struct hda_codec *codec, |
4158 | const struct hda_fixup *fix, int action) | |
4159 | { | |
4160 | struct alc_spec *spec = codec->spec; | |
4161 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
4162 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
4163 | spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook; | |
4164 | } | |
4165 | } | |
4166 | ||
766538ac TI |
4167 | static void alc_update_vref_led(struct hda_codec *codec, hda_nid_t pin, |
4168 | bool polarity, bool on) | |
4169 | { | |
4170 | unsigned int pinval; | |
4171 | ||
4172 | if (!pin) | |
4173 | return; | |
4174 | if (polarity) | |
4175 | on = !on; | |
4176 | pinval = snd_hda_codec_get_pin_target(codec, pin); | |
4177 | pinval &= ~AC_PINCTL_VREFEN; | |
4178 | pinval |= on ? AC_PINCTL_VREF_80 : AC_PINCTL_VREF_HIZ; | |
4179 | /* temporarily power up/down for setting VREF */ | |
4180 | snd_hda_power_up_pm(codec); | |
4181 | snd_hda_set_pin_ctl_cache(codec, pin, pinval); | |
4182 | snd_hda_power_down_pm(codec); | |
4183 | } | |
d240d1dc | 4184 | |
08fb0d0e | 4185 | /* update mute-LED according to the speaker mute state via mic VREF pin */ |
8d3d1ece TI |
4186 | static int vref_mute_led_set(struct led_classdev *led_cdev, |
4187 | enum led_brightness brightness) | |
6d3cd5d4 | 4188 | { |
8d3d1ece | 4189 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); |
08fb0d0e | 4190 | struct alc_spec *spec = codec->spec; |
08fb0d0e | 4191 | |
766538ac TI |
4192 | alc_update_vref_led(codec, spec->mute_led_nid, |
4193 | spec->mute_led_polarity, brightness); | |
8d3d1ece | 4194 | return 0; |
6d3cd5d4 DH |
4195 | } |
4196 | ||
d5b6b65e DH |
4197 | /* Make sure the led works even in runtime suspend */ |
4198 | static unsigned int led_power_filter(struct hda_codec *codec, | |
4199 | hda_nid_t nid, | |
4200 | unsigned int power_state) | |
4201 | { | |
4202 | struct alc_spec *spec = codec->spec; | |
4203 | ||
50dd9050 HW |
4204 | if (power_state != AC_PWRST_D3 || nid == 0 || |
4205 | (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid)) | |
d5b6b65e DH |
4206 | return power_state; |
4207 | ||
4208 | /* Set pin ctl again, it might have just been set to 0 */ | |
4209 | snd_hda_set_pin_ctl(codec, nid, | |
4210 | snd_hda_codec_get_pin_target(codec, nid)); | |
4211 | ||
cffd3966 | 4212 | return snd_hda_gen_path_power_filter(codec, nid, power_state); |
d5b6b65e DH |
4213 | } |
4214 | ||
08fb0d0e TI |
4215 | static void alc269_fixup_hp_mute_led(struct hda_codec *codec, |
4216 | const struct hda_fixup *fix, int action) | |
6d3cd5d4 DH |
4217 | { |
4218 | struct alc_spec *spec = codec->spec; | |
08fb0d0e TI |
4219 | const struct dmi_device *dev = NULL; |
4220 | ||
4221 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
4222 | return; | |
4223 | ||
4224 | while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) { | |
4225 | int pol, pin; | |
4226 | if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2) | |
4227 | continue; | |
4228 | if (pin < 0x0a || pin >= 0x10) | |
4229 | break; | |
4230 | spec->mute_led_polarity = pol; | |
4231 | spec->mute_led_nid = pin - 0x0a + 0x18; | |
8d3d1ece | 4232 | snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set); |
d5b6b65e | 4233 | codec->power_filter = led_power_filter; |
4e76a883 TI |
4234 | codec_dbg(codec, |
4235 | "Detected mute LED for %x:%d\n", spec->mute_led_nid, | |
08fb0d0e | 4236 | spec->mute_led_polarity); |
6d3cd5d4 DH |
4237 | break; |
4238 | } | |
4239 | } | |
4240 | ||
85c467dc TI |
4241 | static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec, |
4242 | const struct hda_fixup *fix, | |
4243 | int action, hda_nid_t pin) | |
d06ac143 DH |
4244 | { |
4245 | struct alc_spec *spec = codec->spec; | |
85c467dc | 4246 | |
d06ac143 DH |
4247 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
4248 | spec->mute_led_polarity = 0; | |
85c467dc | 4249 | spec->mute_led_nid = pin; |
8d3d1ece | 4250 | snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set); |
d5b6b65e | 4251 | codec->power_filter = led_power_filter; |
d06ac143 DH |
4252 | } |
4253 | } | |
4254 | ||
85c467dc TI |
4255 | static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec, |
4256 | const struct hda_fixup *fix, int action) | |
4257 | { | |
4258 | alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18); | |
4259 | } | |
4260 | ||
08fb0d0e TI |
4261 | static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec, |
4262 | const struct hda_fixup *fix, int action) | |
420b0feb | 4263 | { |
85c467dc | 4264 | alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19); |
420b0feb TI |
4265 | } |
4266 | ||
7f783bd5 TB |
4267 | static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec, |
4268 | const struct hda_fixup *fix, int action) | |
4269 | { | |
85c467dc | 4270 | alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b); |
7f783bd5 TB |
4271 | } |
4272 | ||
0f32fd19 TI |
4273 | /* update LED status via GPIO */ |
4274 | static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask, | |
dbd13179 | 4275 | int polarity, bool enabled) |
9f5c6faf | 4276 | { |
dbd13179 | 4277 | if (polarity) |
0f32fd19 | 4278 | enabled = !enabled; |
d261eec8 | 4279 | alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */ |
9f5c6faf TI |
4280 | } |
4281 | ||
0f32fd19 | 4282 | /* turn on/off mute LED via GPIO per vmaster hook */ |
8d3d1ece TI |
4283 | static int gpio_mute_led_set(struct led_classdev *led_cdev, |
4284 | enum led_brightness brightness) | |
9f5c6faf | 4285 | { |
8d3d1ece | 4286 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); |
9f5c6faf | 4287 | struct alc_spec *spec = codec->spec; |
9f5c6faf | 4288 | |
dbd13179 | 4289 | alc_update_gpio_led(codec, spec->gpio_mute_led_mask, |
8d3d1ece TI |
4290 | spec->mute_led_polarity, !brightness); |
4291 | return 0; | |
0f32fd19 | 4292 | } |
9f5c6faf | 4293 | |
0f32fd19 | 4294 | /* turn on/off mic-mute LED via GPIO per capture hook */ |
87dc3648 KHF |
4295 | static int micmute_led_set(struct led_classdev *led_cdev, |
4296 | enum led_brightness brightness) | |
4297 | { | |
4298 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); | |
4299 | struct alc_spec *spec = codec->spec; | |
4300 | ||
4301 | alc_update_gpio_led(codec, spec->gpio_mic_led_mask, | |
40469064 | 4302 | spec->micmute_led_polarity, !brightness); |
87dc3648 KHF |
4303 | return 0; |
4304 | } | |
4305 | ||
01e4a275 TI |
4306 | /* setup mute and mic-mute GPIO bits, add hooks appropriately */ |
4307 | static void alc_fixup_hp_gpio_led(struct hda_codec *codec, | |
4308 | int action, | |
4309 | unsigned int mute_mask, | |
4310 | unsigned int micmute_mask) | |
9f5c6faf TI |
4311 | { |
4312 | struct alc_spec *spec = codec->spec; | |
9f5c6faf | 4313 | |
01e4a275 TI |
4314 | alc_fixup_gpio(codec, action, mute_mask | micmute_mask); |
4315 | ||
4316 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
4317 | return; | |
4318 | if (mute_mask) { | |
4319 | spec->gpio_mute_led_mask = mute_mask; | |
8d3d1ece | 4320 | snd_hda_gen_add_mute_led_cdev(codec, gpio_mute_led_set); |
01e4a275 TI |
4321 | } |
4322 | if (micmute_mask) { | |
4323 | spec->gpio_mic_led_mask = micmute_mask; | |
7cdf8c49 | 4324 | snd_hda_gen_add_micmute_led_cdev(codec, micmute_led_set); |
9f5c6faf TI |
4325 | } |
4326 | } | |
4327 | ||
e7d66cf7 JS |
4328 | static void alc236_fixup_hp_gpio_led(struct hda_codec *codec, |
4329 | const struct hda_fixup *fix, int action) | |
4330 | { | |
4331 | alc_fixup_hp_gpio_led(codec, action, 0x02, 0x01); | |
4332 | } | |
4333 | ||
01e4a275 | 4334 | static void alc269_fixup_hp_gpio_led(struct hda_codec *codec, |
eaa8e5ef KY |
4335 | const struct hda_fixup *fix, int action) |
4336 | { | |
01e4a275 TI |
4337 | alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10); |
4338 | } | |
eaa8e5ef | 4339 | |
f5a88b0a KHF |
4340 | static void alc285_fixup_hp_gpio_led(struct hda_codec *codec, |
4341 | const struct hda_fixup *fix, int action) | |
4342 | { | |
3e0650ab | 4343 | alc_fixup_hp_gpio_led(codec, action, 0x04, 0x01); |
f5a88b0a KHF |
4344 | } |
4345 | ||
01e4a275 TI |
4346 | static void alc286_fixup_hp_gpio_led(struct hda_codec *codec, |
4347 | const struct hda_fixup *fix, int action) | |
4348 | { | |
4349 | alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20); | |
9f5c6faf TI |
4350 | } |
4351 | ||
a0ccbc53 KY |
4352 | static void alc287_fixup_hp_gpio_led(struct hda_codec *codec, |
4353 | const struct hda_fixup *fix, int action) | |
4354 | { | |
4355 | alc_fixup_hp_gpio_led(codec, action, 0x10, 0); | |
4356 | } | |
4357 | ||
5fc462c3 JC |
4358 | static void alc245_fixup_hp_gpio_led(struct hda_codec *codec, |
4359 | const struct hda_fixup *fix, int action) | |
4360 | { | |
4361 | struct alc_spec *spec = codec->spec; | |
4362 | ||
4363 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
4364 | spec->micmute_led_polarity = 1; | |
4365 | alc_fixup_hp_gpio_led(codec, action, 0, 0x04); | |
4366 | } | |
4367 | ||
8a503555 TI |
4368 | /* turn on/off mic-mute LED per capture hook via VREF change */ |
4369 | static int vref_micmute_led_set(struct led_classdev *led_cdev, | |
4370 | enum led_brightness brightness) | |
9c5dc3bf | 4371 | { |
8a503555 | 4372 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); |
9c5dc3bf | 4373 | struct alc_spec *spec = codec->spec; |
9c5dc3bf | 4374 | |
766538ac TI |
4375 | alc_update_vref_led(codec, spec->cap_mute_led_nid, |
4376 | spec->micmute_led_polarity, brightness); | |
8a503555 | 4377 | return 0; |
9c5dc3bf KY |
4378 | } |
4379 | ||
4380 | static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec, | |
4381 | const struct hda_fixup *fix, int action) | |
4382 | { | |
4383 | struct alc_spec *spec = codec->spec; | |
9c5dc3bf | 4384 | |
01e4a275 | 4385 | alc_fixup_hp_gpio_led(codec, action, 0x08, 0); |
9c5dc3bf | 4386 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
01e4a275 TI |
4387 | /* Like hp_gpio_mic1_led, but also needs GPIO4 low to |
4388 | * enable headphone amp | |
4389 | */ | |
4390 | spec->gpio_mask |= 0x10; | |
4391 | spec->gpio_dir |= 0x10; | |
9c5dc3bf | 4392 | spec->cap_mute_led_nid = 0x18; |
8a503555 | 4393 | snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set); |
50dd9050 | 4394 | codec->power_filter = led_power_filter; |
9c5dc3bf KY |
4395 | } |
4396 | } | |
4397 | ||
7a5255f1 DH |
4398 | static void alc280_fixup_hp_gpio4(struct hda_codec *codec, |
4399 | const struct hda_fixup *fix, int action) | |
4400 | { | |
7a5255f1 | 4401 | struct alc_spec *spec = codec->spec; |
7a5255f1 | 4402 | |
01e4a275 | 4403 | alc_fixup_hp_gpio_led(codec, action, 0x08, 0); |
7a5255f1 | 4404 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
7a5255f1 | 4405 | spec->cap_mute_led_nid = 0x18; |
8a503555 | 4406 | snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set); |
7a5255f1 DH |
4407 | codec->power_filter = led_power_filter; |
4408 | } | |
4409 | } | |
4410 | ||
c3bb2b52 TI |
4411 | /* HP Spectre x360 14 model needs a unique workaround for enabling the amp; |
4412 | * it needs to toggle the GPIO0 once on and off at each time (bko#210633) | |
4413 | */ | |
4414 | static void alc245_fixup_hp_x360_amp(struct hda_codec *codec, | |
4415 | const struct hda_fixup *fix, int action) | |
4416 | { | |
4417 | struct alc_spec *spec = codec->spec; | |
4418 | ||
4419 | switch (action) { | |
4420 | case HDA_FIXUP_ACT_PRE_PROBE: | |
4421 | spec->gpio_mask |= 0x01; | |
4422 | spec->gpio_dir |= 0x01; | |
4423 | break; | |
4424 | case HDA_FIXUP_ACT_INIT: | |
4425 | /* need to toggle GPIO to enable the amp */ | |
4426 | alc_update_gpio_data(codec, 0x01, true); | |
4427 | msleep(100); | |
4428 | alc_update_gpio_data(codec, 0x01, false); | |
4429 | break; | |
4430 | } | |
4431 | } | |
4432 | ||
622464c8 TI |
4433 | /* toggle GPIO2 at each time stream is started; we use PREPARE state instead */ |
4434 | static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream *hinfo, | |
4435 | struct hda_codec *codec, | |
4436 | struct snd_pcm_substream *substream, | |
4437 | int action) | |
4438 | { | |
4439 | switch (action) { | |
4440 | case HDA_GEN_PCM_ACT_PREPARE: | |
4441 | alc_update_gpio_data(codec, 0x04, true); | |
4442 | break; | |
4443 | case HDA_GEN_PCM_ACT_CLEANUP: | |
4444 | alc_update_gpio_data(codec, 0x04, false); | |
4445 | break; | |
4446 | } | |
4447 | } | |
4448 | ||
4449 | static void alc274_fixup_hp_envy_gpio(struct hda_codec *codec, | |
4450 | const struct hda_fixup *fix, | |
4451 | int action) | |
4452 | { | |
4453 | struct alc_spec *spec = codec->spec; | |
4454 | ||
4455 | if (action == HDA_FIXUP_ACT_PROBE) { | |
4456 | spec->gpio_mask |= 0x04; | |
4457 | spec->gpio_dir |= 0x04; | |
4458 | spec->gen.pcm_playback_hook = alc274_hp_envy_pcm_hook; | |
4459 | } | |
4460 | } | |
4461 | ||
766538ac TI |
4462 | static void alc_update_coef_led(struct hda_codec *codec, |
4463 | struct alc_coef_led *led, | |
4464 | bool polarity, bool on) | |
4465 | { | |
4466 | if (polarity) | |
4467 | on = !on; | |
4468 | /* temporarily power up/down for setting COEF bit */ | |
4469 | alc_update_coef_idx(codec, led->idx, led->mask, | |
4470 | on ? led->on : led->off); | |
4471 | } | |
4472 | ||
431e76c3 | 4473 | /* update mute-LED according to the speaker mute state via COEF bit */ |
8d3d1ece TI |
4474 | static int coef_mute_led_set(struct led_classdev *led_cdev, |
4475 | enum led_brightness brightness) | |
431e76c3 | 4476 | { |
8d3d1ece | 4477 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); |
431e76c3 KY |
4478 | struct alc_spec *spec = codec->spec; |
4479 | ||
766538ac TI |
4480 | alc_update_coef_led(codec, &spec->mute_led_coef, |
4481 | spec->mute_led_polarity, brightness); | |
8d3d1ece | 4482 | return 0; |
431e76c3 KY |
4483 | } |
4484 | ||
4485 | static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec, | |
4486 | const struct hda_fixup *fix, | |
4487 | int action) | |
4488 | { | |
4489 | struct alc_spec *spec = codec->spec; | |
4490 | ||
4491 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
4492 | spec->mute_led_polarity = 0; | |
766538ac TI |
4493 | spec->mute_led_coef.idx = 0x0b; |
4494 | spec->mute_led_coef.mask = 1 << 3; | |
4495 | spec->mute_led_coef.on = 1 << 3; | |
4496 | spec->mute_led_coef.off = 0; | |
8d3d1ece | 4497 | snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set); |
431e76c3 KY |
4498 | } |
4499 | } | |
4500 | ||
24164f43 KY |
4501 | static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec *codec, |
4502 | const struct hda_fixup *fix, | |
4503 | int action) | |
4504 | { | |
4505 | struct alc_spec *spec = codec->spec; | |
4506 | ||
4507 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
4508 | spec->mute_led_polarity = 0; | |
766538ac TI |
4509 | spec->mute_led_coef.idx = 0x34; |
4510 | spec->mute_led_coef.mask = 1 << 5; | |
4511 | spec->mute_led_coef.on = 0; | |
4512 | spec->mute_led_coef.off = 1 << 5; | |
8d3d1ece | 4513 | snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set); |
24164f43 KY |
4514 | } |
4515 | } | |
4516 | ||
431e76c3 | 4517 | /* turn on/off mic-mute LED per capture hook by coef bit */ |
8a503555 TI |
4518 | static int coef_micmute_led_set(struct led_classdev *led_cdev, |
4519 | enum led_brightness brightness) | |
431e76c3 | 4520 | { |
8a503555 | 4521 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); |
431e76c3 KY |
4522 | struct alc_spec *spec = codec->spec; |
4523 | ||
766538ac TI |
4524 | alc_update_coef_led(codec, &spec->mic_led_coef, |
4525 | spec->micmute_led_polarity, brightness); | |
8a503555 | 4526 | return 0; |
431e76c3 KY |
4527 | } |
4528 | ||
4529 | static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec, | |
4530 | const struct hda_fixup *fix, int action) | |
4531 | { | |
4532 | struct alc_spec *spec = codec->spec; | |
4533 | ||
4534 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
766538ac TI |
4535 | spec->mic_led_coef.idx = 0x19; |
4536 | spec->mic_led_coef.mask = 1 << 13; | |
4537 | spec->mic_led_coef.on = 1 << 13; | |
4538 | spec->mic_led_coef.off = 0; | |
8a503555 | 4539 | snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set); |
431e76c3 KY |
4540 | } |
4541 | } | |
4542 | ||
24164f43 KY |
4543 | static void alc236_fixup_hp_coef_micmute_led(struct hda_codec *codec, |
4544 | const struct hda_fixup *fix, int action) | |
4545 | { | |
4546 | struct alc_spec *spec = codec->spec; | |
4547 | ||
4548 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
766538ac TI |
4549 | spec->mic_led_coef.idx = 0x35; |
4550 | spec->mic_led_coef.mask = 3 << 2; | |
4551 | spec->mic_led_coef.on = 2 << 2; | |
4552 | spec->mic_led_coef.off = 1 << 2; | |
8a503555 | 4553 | snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set); |
24164f43 KY |
4554 | } |
4555 | } | |
4556 | ||
431e76c3 KY |
4557 | static void alc285_fixup_hp_mute_led(struct hda_codec *codec, |
4558 | const struct hda_fixup *fix, int action) | |
4559 | { | |
4560 | alc285_fixup_hp_mute_led_coefbit(codec, fix, action); | |
4561 | alc285_fixup_hp_coef_micmute_led(codec, fix, action); | |
4562 | } | |
4563 | ||
24164f43 KY |
4564 | static void alc236_fixup_hp_mute_led(struct hda_codec *codec, |
4565 | const struct hda_fixup *fix, int action) | |
4566 | { | |
4567 | alc236_fixup_hp_mute_led_coefbit(codec, fix, action); | |
4568 | alc236_fixup_hp_coef_micmute_led(codec, fix, action); | |
4569 | } | |
4570 | ||
75b62ab6 JW |
4571 | static void alc236_fixup_hp_micmute_led_vref(struct hda_codec *codec, |
4572 | const struct hda_fixup *fix, int action) | |
4573 | { | |
4574 | struct alc_spec *spec = codec->spec; | |
4575 | ||
4576 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
4577 | spec->cap_mute_led_nid = 0x1a; | |
4578 | snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set); | |
4579 | codec->power_filter = led_power_filter; | |
4580 | } | |
4581 | } | |
4582 | ||
4583 | static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec *codec, | |
4584 | const struct hda_fixup *fix, int action) | |
4585 | { | |
4586 | alc236_fixup_hp_mute_led_coefbit(codec, fix, action); | |
4587 | alc236_fixup_hp_micmute_led_vref(codec, fix, action); | |
4588 | } | |
4589 | ||
6a30abaa | 4590 | #if IS_REACHABLE(CONFIG_INPUT) |
33f4acd3 DH |
4591 | static void gpio2_mic_hotkey_event(struct hda_codec *codec, |
4592 | struct hda_jack_callback *event) | |
4593 | { | |
4594 | struct alc_spec *spec = codec->spec; | |
4595 | ||
4596 | /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore | |
4597 | send both key on and key off event for every interrupt. */ | |
c7b60a89 | 4598 | input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1); |
33f4acd3 | 4599 | input_sync(spec->kb_dev); |
c7b60a89 | 4600 | input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0); |
33f4acd3 DH |
4601 | input_sync(spec->kb_dev); |
4602 | } | |
33f4acd3 | 4603 | |
3694cb29 K |
4604 | static int alc_register_micmute_input_device(struct hda_codec *codec) |
4605 | { | |
4606 | struct alc_spec *spec = codec->spec; | |
c7b60a89 | 4607 | int i; |
3694cb29 K |
4608 | |
4609 | spec->kb_dev = input_allocate_device(); | |
4610 | if (!spec->kb_dev) { | |
4611 | codec_err(codec, "Out of memory (input_allocate_device)\n"); | |
4612 | return -ENOMEM; | |
4613 | } | |
c7b60a89 HW |
4614 | |
4615 | spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE; | |
4616 | ||
3694cb29 K |
4617 | spec->kb_dev->name = "Microphone Mute Button"; |
4618 | spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY); | |
c7b60a89 HW |
4619 | spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]); |
4620 | spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map); | |
4621 | spec->kb_dev->keycode = spec->alc_mute_keycode_map; | |
4622 | for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++) | |
4623 | set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit); | |
3694cb29 K |
4624 | |
4625 | if (input_register_device(spec->kb_dev)) { | |
4626 | codec_err(codec, "input_register_device failed\n"); | |
4627 | input_free_device(spec->kb_dev); | |
4628 | spec->kb_dev = NULL; | |
4629 | return -ENOMEM; | |
4630 | } | |
4631 | ||
4632 | return 0; | |
4633 | } | |
4634 | ||
01e4a275 TI |
4635 | /* GPIO1 = set according to SKU external amp |
4636 | * GPIO2 = mic mute hotkey | |
4637 | * GPIO3 = mute LED | |
4638 | * GPIO4 = mic mute LED | |
4639 | */ | |
33f4acd3 DH |
4640 | static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec, |
4641 | const struct hda_fixup *fix, int action) | |
4642 | { | |
33f4acd3 DH |
4643 | struct alc_spec *spec = codec->spec; |
4644 | ||
01e4a275 | 4645 | alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10); |
33f4acd3 | 4646 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
1c76aa5f | 4647 | spec->init_amp = ALC_INIT_DEFAULT; |
3694cb29 | 4648 | if (alc_register_micmute_input_device(codec) != 0) |
33f4acd3 | 4649 | return; |
33f4acd3 | 4650 | |
01e4a275 TI |
4651 | spec->gpio_mask |= 0x06; |
4652 | spec->gpio_dir |= 0x02; | |
4653 | spec->gpio_data |= 0x02; | |
7639a06c | 4654 | snd_hda_codec_write_cache(codec, codec->core.afg, 0, |
33f4acd3 | 4655 | AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04); |
7639a06c | 4656 | snd_hda_jack_detect_enable_callback(codec, codec->core.afg, |
33f4acd3 | 4657 | gpio2_mic_hotkey_event); |
33f4acd3 DH |
4658 | return; |
4659 | } | |
4660 | ||
4661 | if (!spec->kb_dev) | |
4662 | return; | |
4663 | ||
4664 | switch (action) { | |
33f4acd3 DH |
4665 | case HDA_FIXUP_ACT_FREE: |
4666 | input_unregister_device(spec->kb_dev); | |
33f4acd3 DH |
4667 | spec->kb_dev = NULL; |
4668 | } | |
33f4acd3 DH |
4669 | } |
4670 | ||
01e4a275 TI |
4671 | /* Line2 = mic mute hotkey |
4672 | * GPIO2 = mic mute LED | |
4673 | */ | |
3694cb29 K |
4674 | static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec, |
4675 | const struct hda_fixup *fix, int action) | |
4676 | { | |
3694cb29 K |
4677 | struct alc_spec *spec = codec->spec; |
4678 | ||
01e4a275 | 4679 | alc_fixup_hp_gpio_led(codec, action, 0, 0x04); |
3694cb29 | 4680 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
1c76aa5f | 4681 | spec->init_amp = ALC_INIT_DEFAULT; |
3694cb29 K |
4682 | if (alc_register_micmute_input_device(codec) != 0) |
4683 | return; | |
4684 | ||
3694cb29 K |
4685 | snd_hda_jack_detect_enable_callback(codec, 0x1b, |
4686 | gpio2_mic_hotkey_event); | |
3694cb29 K |
4687 | return; |
4688 | } | |
4689 | ||
4690 | if (!spec->kb_dev) | |
4691 | return; | |
4692 | ||
4693 | switch (action) { | |
3694cb29 K |
4694 | case HDA_FIXUP_ACT_FREE: |
4695 | input_unregister_device(spec->kb_dev); | |
4696 | spec->kb_dev = NULL; | |
4697 | } | |
4698 | } | |
c469652b TI |
4699 | #else /* INPUT */ |
4700 | #define alc280_fixup_hp_gpio2_mic_hotkey NULL | |
4701 | #define alc233_fixup_lenovo_line2_mic_hotkey NULL | |
4702 | #endif /* INPUT */ | |
3694cb29 | 4703 | |
9c5dc3bf KY |
4704 | static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec, |
4705 | const struct hda_fixup *fix, int action) | |
4706 | { | |
4707 | struct alc_spec *spec = codec->spec; | |
4708 | ||
1bce62a6 | 4709 | alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a); |
9c5dc3bf | 4710 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
9c5dc3bf | 4711 | spec->cap_mute_led_nid = 0x18; |
8a503555 | 4712 | snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set); |
9c5dc3bf KY |
4713 | } |
4714 | } | |
4715 | ||
6b0f95c4 | 4716 | static const struct coef_fw alc225_pre_hsmode[] = { |
5a36767a KY |
4717 | UPDATE_COEF(0x4a, 1<<8, 0), |
4718 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), | |
4719 | UPDATE_COEF(0x63, 3<<14, 3<<14), | |
4720 | UPDATE_COEF(0x4a, 3<<4, 2<<4), | |
4721 | UPDATE_COEF(0x4a, 3<<10, 3<<10), | |
4722 | UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10), | |
4723 | UPDATE_COEF(0x4a, 3<<10, 0), | |
4724 | {} | |
4725 | }; | |
4726 | ||
73bdd597 DH |
4727 | static void alc_headset_mode_unplugged(struct hda_codec *codec) |
4728 | { | |
92666d45 | 4729 | struct alc_spec *spec = codec->spec; |
6b0f95c4 | 4730 | static const struct coef_fw coef0255[] = { |
717f43d8 | 4731 | WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */ |
54db6c39 TI |
4732 | WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */ |
4733 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/ | |
4734 | WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */ | |
4735 | WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */ | |
4736 | {} | |
4737 | }; | |
6b0f95c4 | 4738 | static const struct coef_fw coef0256[] = { |
e69e7e03 | 4739 | WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */ |
717f43d8 KY |
4740 | WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */ |
4741 | WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */ | |
4742 | WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */ | |
4743 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/ | |
e69e7e03 KY |
4744 | {} |
4745 | }; | |
6b0f95c4 | 4746 | static const struct coef_fw coef0233[] = { |
54db6c39 TI |
4747 | WRITE_COEF(0x1b, 0x0c0b), |
4748 | WRITE_COEF(0x45, 0xc429), | |
4749 | UPDATE_COEF(0x35, 0x4000, 0), | |
4750 | WRITE_COEF(0x06, 0x2104), | |
4751 | WRITE_COEF(0x1a, 0x0001), | |
4752 | WRITE_COEF(0x26, 0x0004), | |
4753 | WRITE_COEF(0x32, 0x42a3), | |
4754 | {} | |
4755 | }; | |
6b0f95c4 | 4756 | static const struct coef_fw coef0288[] = { |
f3b70332 KY |
4757 | UPDATE_COEF(0x4f, 0xfcc0, 0xc400), |
4758 | UPDATE_COEF(0x50, 0x2000, 0x2000), | |
4759 | UPDATE_COEF(0x56, 0x0006, 0x0006), | |
4760 | UPDATE_COEF(0x66, 0x0008, 0), | |
4761 | UPDATE_COEF(0x67, 0x2000, 0), | |
4762 | {} | |
4763 | }; | |
6b0f95c4 | 4764 | static const struct coef_fw coef0298[] = { |
89542936 KY |
4765 | UPDATE_COEF(0x19, 0x1300, 0x0300), |
4766 | {} | |
4767 | }; | |
6b0f95c4 | 4768 | static const struct coef_fw coef0292[] = { |
54db6c39 TI |
4769 | WRITE_COEF(0x76, 0x000e), |
4770 | WRITE_COEF(0x6c, 0x2400), | |
4771 | WRITE_COEF(0x18, 0x7308), | |
4772 | WRITE_COEF(0x6b, 0xc429), | |
4773 | {} | |
4774 | }; | |
6b0f95c4 | 4775 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
4776 | UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */ |
4777 | UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */ | |
4778 | UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */ | |
4779 | UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */ | |
4780 | WRITE_COEF(0x45, 0xc429), /* Set to TRS type */ | |
4781 | UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */ | |
4782 | {} | |
4783 | }; | |
6b0f95c4 | 4784 | static const struct coef_fw coef0668[] = { |
54db6c39 TI |
4785 | WRITE_COEF(0x15, 0x0d40), |
4786 | WRITE_COEF(0xb7, 0x802b), | |
4787 | {} | |
4788 | }; | |
6b0f95c4 | 4789 | static const struct coef_fw coef0225[] = { |
5a36767a | 4790 | UPDATE_COEF(0x63, 3<<14, 0), |
4cc9b9d6 KY |
4791 | {} |
4792 | }; | |
6b0f95c4 | 4793 | static const struct coef_fw coef0274[] = { |
71683c32 KY |
4794 | UPDATE_COEF(0x4a, 0x0100, 0), |
4795 | UPDATE_COEFEX(0x57, 0x05, 0x4000, 0), | |
4796 | UPDATE_COEF(0x6b, 0xf000, 0x5000), | |
4797 | UPDATE_COEF(0x4a, 0x0010, 0), | |
4798 | UPDATE_COEF(0x4a, 0x0c00, 0x0c00), | |
4799 | WRITE_COEF(0x45, 0x5289), | |
4800 | UPDATE_COEF(0x4a, 0x0c00, 0), | |
4801 | {} | |
4802 | }; | |
54db6c39 | 4803 | |
92666d45 KY |
4804 | if (spec->no_internal_mic_pin) { |
4805 | alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12); | |
4806 | return; | |
4807 | } | |
4808 | ||
7639a06c | 4809 | switch (codec->core.vendor_id) { |
9a22a8f5 | 4810 | case 0x10ec0255: |
e69e7e03 KY |
4811 | alc_process_coef_fw(codec, coef0255); |
4812 | break; | |
1948fc06 | 4813 | case 0x10ec0230: |
736f20a7 | 4814 | case 0x10ec0236: |
7081adf3 | 4815 | case 0x10ec0256: |
e69e7e03 | 4816 | alc_process_coef_fw(codec, coef0256); |
9a22a8f5 | 4817 | break; |
71683c32 KY |
4818 | case 0x10ec0234: |
4819 | case 0x10ec0274: | |
4820 | case 0x10ec0294: | |
4821 | alc_process_coef_fw(codec, coef0274); | |
4822 | break; | |
13fd08a3 | 4823 | case 0x10ec0233: |
73bdd597 | 4824 | case 0x10ec0283: |
54db6c39 | 4825 | alc_process_coef_fw(codec, coef0233); |
73bdd597 | 4826 | break; |
f3b70332 KY |
4827 | case 0x10ec0286: |
4828 | case 0x10ec0288: | |
89542936 KY |
4829 | alc_process_coef_fw(codec, coef0288); |
4830 | break; | |
1a5bc8d9 | 4831 | case 0x10ec0298: |
89542936 | 4832 | alc_process_coef_fw(codec, coef0298); |
f3b70332 KY |
4833 | alc_process_coef_fw(codec, coef0288); |
4834 | break; | |
73bdd597 | 4835 | case 0x10ec0292: |
54db6c39 | 4836 | alc_process_coef_fw(codec, coef0292); |
73bdd597 | 4837 | break; |
a22aa26f | 4838 | case 0x10ec0293: |
54db6c39 | 4839 | alc_process_coef_fw(codec, coef0293); |
a22aa26f | 4840 | break; |
73bdd597 | 4841 | case 0x10ec0668: |
54db6c39 | 4842 | alc_process_coef_fw(codec, coef0668); |
73bdd597 | 4843 | break; |
c2b691ee | 4844 | case 0x10ec0215: |
4cc9b9d6 | 4845 | case 0x10ec0225: |
c2b691ee | 4846 | case 0x10ec0285: |
7d727869 | 4847 | case 0x10ec0295: |
c2b691ee | 4848 | case 0x10ec0289: |
28f1f9b2 | 4849 | case 0x10ec0299: |
4d4b0c52 | 4850 | alc_process_coef_fw(codec, alc225_pre_hsmode); |
4cc9b9d6 KY |
4851 | alc_process_coef_fw(codec, coef0225); |
4852 | break; | |
78f4f7c2 KY |
4853 | case 0x10ec0867: |
4854 | alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); | |
4855 | break; | |
73bdd597 | 4856 | } |
4e76a883 | 4857 | codec_dbg(codec, "Headset jack set to unplugged mode.\n"); |
73bdd597 DH |
4858 | } |
4859 | ||
4860 | ||
4861 | static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin, | |
4862 | hda_nid_t mic_pin) | |
4863 | { | |
6b0f95c4 | 4864 | static const struct coef_fw coef0255[] = { |
54db6c39 TI |
4865 | WRITE_COEFEX(0x57, 0x03, 0x8aa6), |
4866 | WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */ | |
4867 | {} | |
4868 | }; | |
6b0f95c4 | 4869 | static const struct coef_fw coef0256[] = { |
717f43d8 KY |
4870 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/ |
4871 | WRITE_COEFEX(0x57, 0x03, 0x09a3), | |
4872 | WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */ | |
4873 | {} | |
4874 | }; | |
6b0f95c4 | 4875 | static const struct coef_fw coef0233[] = { |
54db6c39 TI |
4876 | UPDATE_COEF(0x35, 0, 1<<14), |
4877 | WRITE_COEF(0x06, 0x2100), | |
4878 | WRITE_COEF(0x1a, 0x0021), | |
4879 | WRITE_COEF(0x26, 0x008c), | |
4880 | {} | |
4881 | }; | |
6b0f95c4 | 4882 | static const struct coef_fw coef0288[] = { |
89542936 | 4883 | UPDATE_COEF(0x4f, 0x00c0, 0), |
f3b70332 KY |
4884 | UPDATE_COEF(0x50, 0x2000, 0), |
4885 | UPDATE_COEF(0x56, 0x0006, 0), | |
4886 | UPDATE_COEF(0x4f, 0xfcc0, 0xc400), | |
4887 | UPDATE_COEF(0x66, 0x0008, 0x0008), | |
4888 | UPDATE_COEF(0x67, 0x2000, 0x2000), | |
4889 | {} | |
4890 | }; | |
6b0f95c4 | 4891 | static const struct coef_fw coef0292[] = { |
54db6c39 TI |
4892 | WRITE_COEF(0x19, 0xa208), |
4893 | WRITE_COEF(0x2e, 0xacf0), | |
4894 | {} | |
4895 | }; | |
6b0f95c4 | 4896 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
4897 | UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */ |
4898 | UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */ | |
4899 | UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */ | |
4900 | {} | |
4901 | }; | |
6b0f95c4 | 4902 | static const struct coef_fw coef0688[] = { |
54db6c39 TI |
4903 | WRITE_COEF(0xb7, 0x802b), |
4904 | WRITE_COEF(0xb5, 0x1040), | |
4905 | UPDATE_COEF(0xc3, 0, 1<<12), | |
4906 | {} | |
4907 | }; | |
6b0f95c4 | 4908 | static const struct coef_fw coef0225[] = { |
4cc9b9d6 KY |
4909 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), |
4910 | UPDATE_COEF(0x4a, 3<<4, 2<<4), | |
4911 | UPDATE_COEF(0x63, 3<<14, 0), | |
4912 | {} | |
4913 | }; | |
6b0f95c4 | 4914 | static const struct coef_fw coef0274[] = { |
71683c32 KY |
4915 | UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000), |
4916 | UPDATE_COEF(0x4a, 0x0010, 0), | |
4917 | UPDATE_COEF(0x6b, 0xf000, 0), | |
4918 | {} | |
4919 | }; | |
54db6c39 | 4920 | |
7639a06c | 4921 | switch (codec->core.vendor_id) { |
9a22a8f5 KY |
4922 | case 0x10ec0255: |
4923 | alc_write_coef_idx(codec, 0x45, 0xc489); | |
4924 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
54db6c39 | 4925 | alc_process_coef_fw(codec, coef0255); |
9a22a8f5 KY |
4926 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); |
4927 | break; | |
1948fc06 | 4928 | case 0x10ec0230: |
717f43d8 KY |
4929 | case 0x10ec0236: |
4930 | case 0x10ec0256: | |
4931 | alc_write_coef_idx(codec, 0x45, 0xc489); | |
4932 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
4933 | alc_process_coef_fw(codec, coef0256); | |
4934 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); | |
4935 | break; | |
71683c32 KY |
4936 | case 0x10ec0234: |
4937 | case 0x10ec0274: | |
4938 | case 0x10ec0294: | |
4939 | alc_write_coef_idx(codec, 0x45, 0x4689); | |
4940 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
4941 | alc_process_coef_fw(codec, coef0274); | |
4942 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); | |
4943 | break; | |
13fd08a3 | 4944 | case 0x10ec0233: |
73bdd597 DH |
4945 | case 0x10ec0283: |
4946 | alc_write_coef_idx(codec, 0x45, 0xc429); | |
4947 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
54db6c39 | 4948 | alc_process_coef_fw(codec, coef0233); |
73bdd597 DH |
4949 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); |
4950 | break; | |
f3b70332 KY |
4951 | case 0x10ec0286: |
4952 | case 0x10ec0288: | |
1a5bc8d9 | 4953 | case 0x10ec0298: |
f3b70332 KY |
4954 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); |
4955 | alc_process_coef_fw(codec, coef0288); | |
4956 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); | |
4957 | break; | |
73bdd597 DH |
4958 | case 0x10ec0292: |
4959 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
54db6c39 | 4960 | alc_process_coef_fw(codec, coef0292); |
73bdd597 | 4961 | break; |
a22aa26f KY |
4962 | case 0x10ec0293: |
4963 | /* Set to TRS mode */ | |
4964 | alc_write_coef_idx(codec, 0x45, 0xc429); | |
4965 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
54db6c39 | 4966 | alc_process_coef_fw(codec, coef0293); |
a22aa26f KY |
4967 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); |
4968 | break; | |
78f4f7c2 KY |
4969 | case 0x10ec0867: |
4970 | alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14); | |
c0dbbdad | 4971 | fallthrough; |
9eb5d0e6 | 4972 | case 0x10ec0221: |
1f8b46cd DH |
4973 | case 0x10ec0662: |
4974 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
4975 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); | |
4976 | break; | |
73bdd597 DH |
4977 | case 0x10ec0668: |
4978 | alc_write_coef_idx(codec, 0x11, 0x0001); | |
4979 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
54db6c39 | 4980 | alc_process_coef_fw(codec, coef0688); |
73bdd597 DH |
4981 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); |
4982 | break; | |
c2b691ee | 4983 | case 0x10ec0215: |
4cc9b9d6 | 4984 | case 0x10ec0225: |
c2b691ee | 4985 | case 0x10ec0285: |
7d727869 | 4986 | case 0x10ec0295: |
c2b691ee | 4987 | case 0x10ec0289: |
28f1f9b2 | 4988 | case 0x10ec0299: |
5a36767a | 4989 | alc_process_coef_fw(codec, alc225_pre_hsmode); |
4cc9b9d6 KY |
4990 | alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10); |
4991 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
4992 | alc_process_coef_fw(codec, coef0225); | |
4993 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); | |
4994 | break; | |
73bdd597 | 4995 | } |
4e76a883 | 4996 | codec_dbg(codec, "Headset jack set to mic-in mode.\n"); |
73bdd597 DH |
4997 | } |
4998 | ||
4999 | static void alc_headset_mode_default(struct hda_codec *codec) | |
5000 | { | |
6b0f95c4 | 5001 | static const struct coef_fw coef0225[] = { |
5a36767a KY |
5002 | UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10), |
5003 | UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10), | |
5004 | UPDATE_COEF(0x49, 3<<8, 0<<8), | |
5005 | UPDATE_COEF(0x4a, 3<<4, 3<<4), | |
5006 | UPDATE_COEF(0x63, 3<<14, 0), | |
5007 | UPDATE_COEF(0x67, 0xf000, 0x3000), | |
2ae95577 DH |
5008 | {} |
5009 | }; | |
6b0f95c4 | 5010 | static const struct coef_fw coef0255[] = { |
54db6c39 TI |
5011 | WRITE_COEF(0x45, 0xc089), |
5012 | WRITE_COEF(0x45, 0xc489), | |
5013 | WRITE_COEFEX(0x57, 0x03, 0x8ea6), | |
5014 | WRITE_COEF(0x49, 0x0049), | |
5015 | {} | |
5016 | }; | |
6b0f95c4 | 5017 | static const struct coef_fw coef0256[] = { |
717f43d8 KY |
5018 | WRITE_COEF(0x45, 0xc489), |
5019 | WRITE_COEFEX(0x57, 0x03, 0x0da3), | |
5020 | WRITE_COEF(0x49, 0x0049), | |
5021 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/ | |
5022 | WRITE_COEF(0x06, 0x6100), | |
5023 | {} | |
5024 | }; | |
6b0f95c4 | 5025 | static const struct coef_fw coef0233[] = { |
54db6c39 TI |
5026 | WRITE_COEF(0x06, 0x2100), |
5027 | WRITE_COEF(0x32, 0x4ea3), | |
5028 | {} | |
5029 | }; | |
6b0f95c4 | 5030 | static const struct coef_fw coef0288[] = { |
f3b70332 KY |
5031 | UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */ |
5032 | UPDATE_COEF(0x50, 0x2000, 0x2000), | |
5033 | UPDATE_COEF(0x56, 0x0006, 0x0006), | |
5034 | UPDATE_COEF(0x66, 0x0008, 0), | |
5035 | UPDATE_COEF(0x67, 0x2000, 0), | |
5036 | {} | |
5037 | }; | |
6b0f95c4 | 5038 | static const struct coef_fw coef0292[] = { |
54db6c39 TI |
5039 | WRITE_COEF(0x76, 0x000e), |
5040 | WRITE_COEF(0x6c, 0x2400), | |
5041 | WRITE_COEF(0x6b, 0xc429), | |
5042 | WRITE_COEF(0x18, 0x7308), | |
5043 | {} | |
5044 | }; | |
6b0f95c4 | 5045 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
5046 | UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */ |
5047 | WRITE_COEF(0x45, 0xC429), /* Set to TRS type */ | |
5048 | UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */ | |
5049 | {} | |
5050 | }; | |
6b0f95c4 | 5051 | static const struct coef_fw coef0688[] = { |
54db6c39 TI |
5052 | WRITE_COEF(0x11, 0x0041), |
5053 | WRITE_COEF(0x15, 0x0d40), | |
5054 | WRITE_COEF(0xb7, 0x802b), | |
5055 | {} | |
5056 | }; | |
6b0f95c4 | 5057 | static const struct coef_fw coef0274[] = { |
71683c32 KY |
5058 | WRITE_COEF(0x45, 0x4289), |
5059 | UPDATE_COEF(0x4a, 0x0010, 0x0010), | |
5060 | UPDATE_COEF(0x6b, 0x0f00, 0), | |
5061 | UPDATE_COEF(0x49, 0x0300, 0x0300), | |
5062 | {} | |
5063 | }; | |
54db6c39 | 5064 | |
7639a06c | 5065 | switch (codec->core.vendor_id) { |
c2b691ee | 5066 | case 0x10ec0215: |
2ae95577 | 5067 | case 0x10ec0225: |
c2b691ee | 5068 | case 0x10ec0285: |
7d727869 | 5069 | case 0x10ec0295: |
c2b691ee | 5070 | case 0x10ec0289: |
28f1f9b2 | 5071 | case 0x10ec0299: |
5a36767a | 5072 | alc_process_coef_fw(codec, alc225_pre_hsmode); |
2ae95577 DH |
5073 | alc_process_coef_fw(codec, coef0225); |
5074 | break; | |
9a22a8f5 | 5075 | case 0x10ec0255: |
54db6c39 | 5076 | alc_process_coef_fw(codec, coef0255); |
9a22a8f5 | 5077 | break; |
1948fc06 | 5078 | case 0x10ec0230: |
717f43d8 KY |
5079 | case 0x10ec0236: |
5080 | case 0x10ec0256: | |
5081 | alc_write_coef_idx(codec, 0x1b, 0x0e4b); | |
5082 | alc_write_coef_idx(codec, 0x45, 0xc089); | |
5083 | msleep(50); | |
5084 | alc_process_coef_fw(codec, coef0256); | |
5085 | break; | |
71683c32 KY |
5086 | case 0x10ec0234: |
5087 | case 0x10ec0274: | |
5088 | case 0x10ec0294: | |
5089 | alc_process_coef_fw(codec, coef0274); | |
5090 | break; | |
13fd08a3 | 5091 | case 0x10ec0233: |
73bdd597 | 5092 | case 0x10ec0283: |
54db6c39 | 5093 | alc_process_coef_fw(codec, coef0233); |
73bdd597 | 5094 | break; |
f3b70332 KY |
5095 | case 0x10ec0286: |
5096 | case 0x10ec0288: | |
1a5bc8d9 | 5097 | case 0x10ec0298: |
f3b70332 KY |
5098 | alc_process_coef_fw(codec, coef0288); |
5099 | break; | |
73bdd597 | 5100 | case 0x10ec0292: |
54db6c39 | 5101 | alc_process_coef_fw(codec, coef0292); |
73bdd597 | 5102 | break; |
a22aa26f | 5103 | case 0x10ec0293: |
54db6c39 | 5104 | alc_process_coef_fw(codec, coef0293); |
a22aa26f | 5105 | break; |
73bdd597 | 5106 | case 0x10ec0668: |
54db6c39 | 5107 | alc_process_coef_fw(codec, coef0688); |
73bdd597 | 5108 | break; |
78f4f7c2 KY |
5109 | case 0x10ec0867: |
5110 | alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); | |
5111 | break; | |
73bdd597 | 5112 | } |
4e76a883 | 5113 | codec_dbg(codec, "Headset jack set to headphone (default) mode.\n"); |
73bdd597 DH |
5114 | } |
5115 | ||
5116 | /* Iphone type */ | |
5117 | static void alc_headset_mode_ctia(struct hda_codec *codec) | |
5118 | { | |
89542936 KY |
5119 | int val; |
5120 | ||
6b0f95c4 | 5121 | static const struct coef_fw coef0255[] = { |
54db6c39 TI |
5122 | WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */ |
5123 | WRITE_COEF(0x1b, 0x0c2b), | |
5124 | WRITE_COEFEX(0x57, 0x03, 0x8ea6), | |
5125 | {} | |
5126 | }; | |
6b0f95c4 | 5127 | static const struct coef_fw coef0256[] = { |
e69e7e03 | 5128 | WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */ |
717f43d8 | 5129 | WRITE_COEF(0x1b, 0x0e6b), |
e69e7e03 KY |
5130 | {} |
5131 | }; | |
6b0f95c4 | 5132 | static const struct coef_fw coef0233[] = { |
54db6c39 TI |
5133 | WRITE_COEF(0x45, 0xd429), |
5134 | WRITE_COEF(0x1b, 0x0c2b), | |
5135 | WRITE_COEF(0x32, 0x4ea3), | |
5136 | {} | |
5137 | }; | |
6b0f95c4 | 5138 | static const struct coef_fw coef0288[] = { |
f3b70332 KY |
5139 | UPDATE_COEF(0x50, 0x2000, 0x2000), |
5140 | UPDATE_COEF(0x56, 0x0006, 0x0006), | |
5141 | UPDATE_COEF(0x66, 0x0008, 0), | |
5142 | UPDATE_COEF(0x67, 0x2000, 0), | |
5143 | {} | |
5144 | }; | |
6b0f95c4 | 5145 | static const struct coef_fw coef0292[] = { |
54db6c39 TI |
5146 | WRITE_COEF(0x6b, 0xd429), |
5147 | WRITE_COEF(0x76, 0x0008), | |
5148 | WRITE_COEF(0x18, 0x7388), | |
5149 | {} | |
5150 | }; | |
6b0f95c4 | 5151 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
5152 | WRITE_COEF(0x45, 0xd429), /* Set to ctia type */ |
5153 | UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */ | |
5154 | {} | |
5155 | }; | |
6b0f95c4 | 5156 | static const struct coef_fw coef0688[] = { |
54db6c39 TI |
5157 | WRITE_COEF(0x11, 0x0001), |
5158 | WRITE_COEF(0x15, 0x0d60), | |
5159 | WRITE_COEF(0xc3, 0x0000), | |
5160 | {} | |
5161 | }; | |
6b0f95c4 | 5162 | static const struct coef_fw coef0225_1[] = { |
4cc9b9d6 | 5163 | UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10), |
5a36767a KY |
5164 | UPDATE_COEF(0x63, 3<<14, 2<<14), |
5165 | {} | |
5166 | }; | |
6b0f95c4 | 5167 | static const struct coef_fw coef0225_2[] = { |
5a36767a KY |
5168 | UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10), |
5169 | UPDATE_COEF(0x63, 3<<14, 1<<14), | |
4cc9b9d6 KY |
5170 | {} |
5171 | }; | |
54db6c39 | 5172 | |
7639a06c | 5173 | switch (codec->core.vendor_id) { |
9a22a8f5 | 5174 | case 0x10ec0255: |
54db6c39 | 5175 | alc_process_coef_fw(codec, coef0255); |
9a22a8f5 | 5176 | break; |
1948fc06 | 5177 | case 0x10ec0230: |
736f20a7 | 5178 | case 0x10ec0236: |
e69e7e03 KY |
5179 | case 0x10ec0256: |
5180 | alc_process_coef_fw(codec, coef0256); | |
5181 | break; | |
71683c32 KY |
5182 | case 0x10ec0234: |
5183 | case 0x10ec0274: | |
5184 | case 0x10ec0294: | |
5185 | alc_write_coef_idx(codec, 0x45, 0xd689); | |
5186 | break; | |
13fd08a3 | 5187 | case 0x10ec0233: |
73bdd597 | 5188 | case 0x10ec0283: |
54db6c39 | 5189 | alc_process_coef_fw(codec, coef0233); |
73bdd597 | 5190 | break; |
1a5bc8d9 | 5191 | case 0x10ec0298: |
89542936 KY |
5192 | val = alc_read_coef_idx(codec, 0x50); |
5193 | if (val & (1 << 12)) { | |
5194 | alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020); | |
5195 | alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400); | |
5196 | msleep(300); | |
5197 | } else { | |
5198 | alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010); | |
5199 | alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400); | |
5200 | msleep(300); | |
5201 | } | |
5202 | break; | |
f3b70332 KY |
5203 | case 0x10ec0286: |
5204 | case 0x10ec0288: | |
5205 | alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400); | |
5206 | msleep(300); | |
5207 | alc_process_coef_fw(codec, coef0288); | |
5208 | break; | |
73bdd597 | 5209 | case 0x10ec0292: |
54db6c39 | 5210 | alc_process_coef_fw(codec, coef0292); |
73bdd597 | 5211 | break; |
a22aa26f | 5212 | case 0x10ec0293: |
54db6c39 | 5213 | alc_process_coef_fw(codec, coef0293); |
a22aa26f | 5214 | break; |
73bdd597 | 5215 | case 0x10ec0668: |
54db6c39 | 5216 | alc_process_coef_fw(codec, coef0688); |
73bdd597 | 5217 | break; |
c2b691ee | 5218 | case 0x10ec0215: |
4cc9b9d6 | 5219 | case 0x10ec0225: |
c2b691ee | 5220 | case 0x10ec0285: |
7d727869 | 5221 | case 0x10ec0295: |
c2b691ee | 5222 | case 0x10ec0289: |
28f1f9b2 | 5223 | case 0x10ec0299: |
5a36767a KY |
5224 | val = alc_read_coef_idx(codec, 0x45); |
5225 | if (val & (1 << 9)) | |
5226 | alc_process_coef_fw(codec, coef0225_2); | |
5227 | else | |
5228 | alc_process_coef_fw(codec, coef0225_1); | |
4cc9b9d6 | 5229 | break; |
78f4f7c2 KY |
5230 | case 0x10ec0867: |
5231 | alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); | |
5232 | break; | |
73bdd597 | 5233 | } |
4e76a883 | 5234 | codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n"); |
73bdd597 DH |
5235 | } |
5236 | ||
5237 | /* Nokia type */ | |
5238 | static void alc_headset_mode_omtp(struct hda_codec *codec) | |
5239 | { | |
6b0f95c4 | 5240 | static const struct coef_fw coef0255[] = { |
54db6c39 TI |
5241 | WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */ |
5242 | WRITE_COEF(0x1b, 0x0c2b), | |
5243 | WRITE_COEFEX(0x57, 0x03, 0x8ea6), | |
5244 | {} | |
5245 | }; | |
6b0f95c4 | 5246 | static const struct coef_fw coef0256[] = { |
e69e7e03 | 5247 | WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */ |
717f43d8 | 5248 | WRITE_COEF(0x1b, 0x0e6b), |
e69e7e03 KY |
5249 | {} |
5250 | }; | |
6b0f95c4 | 5251 | static const struct coef_fw coef0233[] = { |
54db6c39 TI |
5252 | WRITE_COEF(0x45, 0xe429), |
5253 | WRITE_COEF(0x1b, 0x0c2b), | |
5254 | WRITE_COEF(0x32, 0x4ea3), | |
5255 | {} | |
5256 | }; | |
6b0f95c4 | 5257 | static const struct coef_fw coef0288[] = { |
f3b70332 KY |
5258 | UPDATE_COEF(0x50, 0x2000, 0x2000), |
5259 | UPDATE_COEF(0x56, 0x0006, 0x0006), | |
5260 | UPDATE_COEF(0x66, 0x0008, 0), | |
5261 | UPDATE_COEF(0x67, 0x2000, 0), | |
5262 | {} | |
5263 | }; | |
6b0f95c4 | 5264 | static const struct coef_fw coef0292[] = { |
54db6c39 TI |
5265 | WRITE_COEF(0x6b, 0xe429), |
5266 | WRITE_COEF(0x76, 0x0008), | |
5267 | WRITE_COEF(0x18, 0x7388), | |
5268 | {} | |
5269 | }; | |
6b0f95c4 | 5270 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
5271 | WRITE_COEF(0x45, 0xe429), /* Set to omtp type */ |
5272 | UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */ | |
5273 | {} | |
5274 | }; | |
6b0f95c4 | 5275 | static const struct coef_fw coef0688[] = { |
54db6c39 TI |
5276 | WRITE_COEF(0x11, 0x0001), |
5277 | WRITE_COEF(0x15, 0x0d50), | |
5278 | WRITE_COEF(0xc3, 0x0000), | |
5279 | {} | |
5280 | }; | |
6b0f95c4 | 5281 | static const struct coef_fw coef0225[] = { |
4cc9b9d6 | 5282 | UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10), |
5a36767a | 5283 | UPDATE_COEF(0x63, 3<<14, 2<<14), |
4cc9b9d6 KY |
5284 | {} |
5285 | }; | |
54db6c39 | 5286 | |
7639a06c | 5287 | switch (codec->core.vendor_id) { |
9a22a8f5 | 5288 | case 0x10ec0255: |
54db6c39 | 5289 | alc_process_coef_fw(codec, coef0255); |
9a22a8f5 | 5290 | break; |
1948fc06 | 5291 | case 0x10ec0230: |
736f20a7 | 5292 | case 0x10ec0236: |
e69e7e03 KY |
5293 | case 0x10ec0256: |
5294 | alc_process_coef_fw(codec, coef0256); | |
5295 | break; | |
71683c32 KY |
5296 | case 0x10ec0234: |
5297 | case 0x10ec0274: | |
5298 | case 0x10ec0294: | |
5299 | alc_write_coef_idx(codec, 0x45, 0xe689); | |
5300 | break; | |
13fd08a3 | 5301 | case 0x10ec0233: |
73bdd597 | 5302 | case 0x10ec0283: |
54db6c39 | 5303 | alc_process_coef_fw(codec, coef0233); |
73bdd597 | 5304 | break; |
1a5bc8d9 KY |
5305 | case 0x10ec0298: |
5306 | alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */ | |
89542936 KY |
5307 | alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400); |
5308 | msleep(300); | |
5309 | break; | |
f3b70332 KY |
5310 | case 0x10ec0286: |
5311 | case 0x10ec0288: | |
5312 | alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400); | |
5313 | msleep(300); | |
5314 | alc_process_coef_fw(codec, coef0288); | |
5315 | break; | |
73bdd597 | 5316 | case 0x10ec0292: |
54db6c39 | 5317 | alc_process_coef_fw(codec, coef0292); |
73bdd597 | 5318 | break; |
a22aa26f | 5319 | case 0x10ec0293: |
54db6c39 | 5320 | alc_process_coef_fw(codec, coef0293); |
a22aa26f | 5321 | break; |
73bdd597 | 5322 | case 0x10ec0668: |
54db6c39 | 5323 | alc_process_coef_fw(codec, coef0688); |
73bdd597 | 5324 | break; |
c2b691ee | 5325 | case 0x10ec0215: |
4cc9b9d6 | 5326 | case 0x10ec0225: |
c2b691ee | 5327 | case 0x10ec0285: |
7d727869 | 5328 | case 0x10ec0295: |
c2b691ee | 5329 | case 0x10ec0289: |
28f1f9b2 | 5330 | case 0x10ec0299: |
4cc9b9d6 KY |
5331 | alc_process_coef_fw(codec, coef0225); |
5332 | break; | |
73bdd597 | 5333 | } |
4e76a883 | 5334 | codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n"); |
73bdd597 DH |
5335 | } |
5336 | ||
5337 | static void alc_determine_headset_type(struct hda_codec *codec) | |
5338 | { | |
5339 | int val; | |
5340 | bool is_ctia = false; | |
5341 | struct alc_spec *spec = codec->spec; | |
6b0f95c4 | 5342 | static const struct coef_fw coef0255[] = { |
54db6c39 TI |
5343 | WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/ |
5344 | WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref | |
5345 | conteol) */ | |
5346 | {} | |
5347 | }; | |
6b0f95c4 | 5348 | static const struct coef_fw coef0288[] = { |
f3b70332 KY |
5349 | UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */ |
5350 | {} | |
5351 | }; | |
6b0f95c4 | 5352 | static const struct coef_fw coef0298[] = { |
89542936 KY |
5353 | UPDATE_COEF(0x50, 0x2000, 0x2000), |
5354 | UPDATE_COEF(0x56, 0x0006, 0x0006), | |
5355 | UPDATE_COEF(0x66, 0x0008, 0), | |
5356 | UPDATE_COEF(0x67, 0x2000, 0), | |
5357 | UPDATE_COEF(0x19, 0x1300, 0x1300), | |
5358 | {} | |
5359 | }; | |
6b0f95c4 | 5360 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
5361 | UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */ |
5362 | WRITE_COEF(0x45, 0xD429), /* Set to ctia type */ | |
5363 | {} | |
5364 | }; | |
6b0f95c4 | 5365 | static const struct coef_fw coef0688[] = { |
54db6c39 TI |
5366 | WRITE_COEF(0x11, 0x0001), |
5367 | WRITE_COEF(0xb7, 0x802b), | |
5368 | WRITE_COEF(0x15, 0x0d60), | |
5369 | WRITE_COEF(0xc3, 0x0c00), | |
5370 | {} | |
5371 | }; | |
6b0f95c4 | 5372 | static const struct coef_fw coef0274[] = { |
71683c32 KY |
5373 | UPDATE_COEF(0x4a, 0x0010, 0), |
5374 | UPDATE_COEF(0x4a, 0x8000, 0), | |
5375 | WRITE_COEF(0x45, 0xd289), | |
5376 | UPDATE_COEF(0x49, 0x0300, 0x0300), | |
5377 | {} | |
5378 | }; | |
73bdd597 | 5379 | |
92666d45 KY |
5380 | if (spec->no_internal_mic_pin) { |
5381 | alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12); | |
5382 | return; | |
5383 | } | |
5384 | ||
7639a06c | 5385 | switch (codec->core.vendor_id) { |
9a22a8f5 | 5386 | case 0x10ec0255: |
717f43d8 KY |
5387 | alc_process_coef_fw(codec, coef0255); |
5388 | msleep(300); | |
5389 | val = alc_read_coef_idx(codec, 0x46); | |
5390 | is_ctia = (val & 0x0070) == 0x0070; | |
5391 | break; | |
1948fc06 | 5392 | case 0x10ec0230: |
717f43d8 | 5393 | case 0x10ec0236: |
7081adf3 | 5394 | case 0x10ec0256: |
717f43d8 KY |
5395 | alc_write_coef_idx(codec, 0x1b, 0x0e4b); |
5396 | alc_write_coef_idx(codec, 0x06, 0x6104); | |
5397 | alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3); | |
5398 | ||
5399 | snd_hda_codec_write(codec, 0x21, 0, | |
5400 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
5401 | msleep(80); | |
5402 | snd_hda_codec_write(codec, 0x21, 0, | |
5403 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
5404 | ||
54db6c39 | 5405 | alc_process_coef_fw(codec, coef0255); |
9a22a8f5 KY |
5406 | msleep(300); |
5407 | val = alc_read_coef_idx(codec, 0x46); | |
5408 | is_ctia = (val & 0x0070) == 0x0070; | |
717f43d8 KY |
5409 | |
5410 | alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3); | |
5411 | alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); | |
5412 | ||
5413 | snd_hda_codec_write(codec, 0x21, 0, | |
5414 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
5415 | msleep(80); | |
5416 | snd_hda_codec_write(codec, 0x21, 0, | |
5417 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE); | |
9a22a8f5 | 5418 | break; |
71683c32 KY |
5419 | case 0x10ec0234: |
5420 | case 0x10ec0274: | |
5421 | case 0x10ec0294: | |
5422 | alc_process_coef_fw(codec, coef0274); | |
febf2256 | 5423 | msleep(850); |
71683c32 KY |
5424 | val = alc_read_coef_idx(codec, 0x46); |
5425 | is_ctia = (val & 0x00f0) == 0x00f0; | |
5426 | break; | |
13fd08a3 | 5427 | case 0x10ec0233: |
73bdd597 DH |
5428 | case 0x10ec0283: |
5429 | alc_write_coef_idx(codec, 0x45, 0xd029); | |
5430 | msleep(300); | |
5431 | val = alc_read_coef_idx(codec, 0x46); | |
5432 | is_ctia = (val & 0x0070) == 0x0070; | |
5433 | break; | |
1a5bc8d9 | 5434 | case 0x10ec0298: |
89542936 KY |
5435 | snd_hda_codec_write(codec, 0x21, 0, |
5436 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
5437 | msleep(100); | |
5438 | snd_hda_codec_write(codec, 0x21, 0, | |
5439 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
5440 | msleep(200); | |
5441 | ||
5442 | val = alc_read_coef_idx(codec, 0x50); | |
5443 | if (val & (1 << 12)) { | |
5444 | alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020); | |
5445 | alc_process_coef_fw(codec, coef0288); | |
5446 | msleep(350); | |
5447 | val = alc_read_coef_idx(codec, 0x50); | |
5448 | is_ctia = (val & 0x0070) == 0x0070; | |
5449 | } else { | |
5450 | alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010); | |
5451 | alc_process_coef_fw(codec, coef0288); | |
5452 | msleep(350); | |
5453 | val = alc_read_coef_idx(codec, 0x50); | |
5454 | is_ctia = (val & 0x0070) == 0x0070; | |
5455 | } | |
5456 | alc_process_coef_fw(codec, coef0298); | |
5457 | snd_hda_codec_write(codec, 0x21, 0, | |
5458 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP); | |
5459 | msleep(75); | |
5460 | snd_hda_codec_write(codec, 0x21, 0, | |
5461 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE); | |
5462 | break; | |
f3b70332 KY |
5463 | case 0x10ec0286: |
5464 | case 0x10ec0288: | |
5465 | alc_process_coef_fw(codec, coef0288); | |
5466 | msleep(350); | |
5467 | val = alc_read_coef_idx(codec, 0x50); | |
5468 | is_ctia = (val & 0x0070) == 0x0070; | |
5469 | break; | |
73bdd597 DH |
5470 | case 0x10ec0292: |
5471 | alc_write_coef_idx(codec, 0x6b, 0xd429); | |
5472 | msleep(300); | |
5473 | val = alc_read_coef_idx(codec, 0x6c); | |
5474 | is_ctia = (val & 0x001c) == 0x001c; | |
5475 | break; | |
a22aa26f | 5476 | case 0x10ec0293: |
54db6c39 | 5477 | alc_process_coef_fw(codec, coef0293); |
a22aa26f KY |
5478 | msleep(300); |
5479 | val = alc_read_coef_idx(codec, 0x46); | |
5480 | is_ctia = (val & 0x0070) == 0x0070; | |
5481 | break; | |
73bdd597 | 5482 | case 0x10ec0668: |
54db6c39 | 5483 | alc_process_coef_fw(codec, coef0688); |
73bdd597 DH |
5484 | msleep(300); |
5485 | val = alc_read_coef_idx(codec, 0xbe); | |
5486 | is_ctia = (val & 0x1c02) == 0x1c02; | |
5487 | break; | |
c2b691ee | 5488 | case 0x10ec0215: |
4cc9b9d6 | 5489 | case 0x10ec0225: |
c2b691ee | 5490 | case 0x10ec0285: |
7d727869 | 5491 | case 0x10ec0295: |
c2b691ee | 5492 | case 0x10ec0289: |
28f1f9b2 | 5493 | case 0x10ec0299: |
da911b1f KY |
5494 | snd_hda_codec_write(codec, 0x21, 0, |
5495 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
5496 | msleep(80); | |
5497 | snd_hda_codec_write(codec, 0x21, 0, | |
5498 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
5499 | ||
5a36767a KY |
5500 | alc_process_coef_fw(codec, alc225_pre_hsmode); |
5501 | alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000); | |
5502 | val = alc_read_coef_idx(codec, 0x45); | |
5503 | if (val & (1 << 9)) { | |
5504 | alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10); | |
5505 | alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8); | |
5506 | msleep(800); | |
5507 | val = alc_read_coef_idx(codec, 0x46); | |
5508 | is_ctia = (val & 0x00f0) == 0x00f0; | |
5509 | } else { | |
5510 | alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10); | |
5511 | alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8); | |
5512 | msleep(800); | |
5513 | val = alc_read_coef_idx(codec, 0x46); | |
5514 | is_ctia = (val & 0x00f0) == 0x00f0; | |
5515 | } | |
5516 | alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6); | |
5517 | alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4); | |
5518 | alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000); | |
da911b1f KY |
5519 | |
5520 | snd_hda_codec_write(codec, 0x21, 0, | |
5521 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
5522 | msleep(80); | |
5523 | snd_hda_codec_write(codec, 0x21, 0, | |
5524 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE); | |
4cc9b9d6 | 5525 | break; |
78f4f7c2 KY |
5526 | case 0x10ec0867: |
5527 | is_ctia = true; | |
5528 | break; | |
73bdd597 DH |
5529 | } |
5530 | ||
4e76a883 | 5531 | codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n", |
73bdd597 DH |
5532 | is_ctia ? "yes" : "no"); |
5533 | spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP; | |
5534 | } | |
5535 | ||
5536 | static void alc_update_headset_mode(struct hda_codec *codec) | |
5537 | { | |
5538 | struct alc_spec *spec = codec->spec; | |
5539 | ||
5540 | hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]]; | |
35a39f98 | 5541 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
73bdd597 DH |
5542 | |
5543 | int new_headset_mode; | |
5544 | ||
5545 | if (!snd_hda_jack_detect(codec, hp_pin)) | |
5546 | new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED; | |
5547 | else if (mux_pin == spec->headset_mic_pin) | |
5548 | new_headset_mode = ALC_HEADSET_MODE_HEADSET; | |
5549 | else if (mux_pin == spec->headphone_mic_pin) | |
5550 | new_headset_mode = ALC_HEADSET_MODE_MIC; | |
5551 | else | |
5552 | new_headset_mode = ALC_HEADSET_MODE_HEADPHONE; | |
5553 | ||
5959a6bc DH |
5554 | if (new_headset_mode == spec->current_headset_mode) { |
5555 | snd_hda_gen_update_outputs(codec); | |
73bdd597 | 5556 | return; |
5959a6bc | 5557 | } |
73bdd597 DH |
5558 | |
5559 | switch (new_headset_mode) { | |
5560 | case ALC_HEADSET_MODE_UNPLUGGED: | |
5561 | alc_headset_mode_unplugged(codec); | |
aeac1a0d KY |
5562 | spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN; |
5563 | spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN; | |
73bdd597 DH |
5564 | spec->gen.hp_jack_present = false; |
5565 | break; | |
5566 | case ALC_HEADSET_MODE_HEADSET: | |
5567 | if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN) | |
5568 | alc_determine_headset_type(codec); | |
5569 | if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA) | |
5570 | alc_headset_mode_ctia(codec); | |
5571 | else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP) | |
5572 | alc_headset_mode_omtp(codec); | |
5573 | spec->gen.hp_jack_present = true; | |
5574 | break; | |
5575 | case ALC_HEADSET_MODE_MIC: | |
5576 | alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin); | |
5577 | spec->gen.hp_jack_present = false; | |
5578 | break; | |
5579 | case ALC_HEADSET_MODE_HEADPHONE: | |
5580 | alc_headset_mode_default(codec); | |
5581 | spec->gen.hp_jack_present = true; | |
5582 | break; | |
5583 | } | |
5584 | if (new_headset_mode != ALC_HEADSET_MODE_MIC) { | |
5585 | snd_hda_set_pin_ctl_cache(codec, hp_pin, | |
5586 | AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); | |
1f8b46cd | 5587 | if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin) |
73bdd597 DH |
5588 | snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin, |
5589 | PIN_VREFHIZ); | |
5590 | } | |
5591 | spec->current_headset_mode = new_headset_mode; | |
5592 | ||
5593 | snd_hda_gen_update_outputs(codec); | |
5594 | } | |
5595 | ||
5596 | static void alc_update_headset_mode_hook(struct hda_codec *codec, | |
7fe30711 TI |
5597 | struct snd_kcontrol *kcontrol, |
5598 | struct snd_ctl_elem_value *ucontrol) | |
73bdd597 DH |
5599 | { |
5600 | alc_update_headset_mode(codec); | |
5601 | } | |
5602 | ||
1a4f69d5 TI |
5603 | static void alc_update_headset_jack_cb(struct hda_codec *codec, |
5604 | struct hda_jack_callback *jack) | |
73bdd597 | 5605 | { |
73bdd597 | 5606 | snd_hda_gen_hp_automute(codec, jack); |
e54f30be | 5607 | alc_update_headset_mode(codec); |
73bdd597 DH |
5608 | } |
5609 | ||
5610 | static void alc_probe_headset_mode(struct hda_codec *codec) | |
5611 | { | |
5612 | int i; | |
5613 | struct alc_spec *spec = codec->spec; | |
5614 | struct auto_pin_cfg *cfg = &spec->gen.autocfg; | |
5615 | ||
5616 | /* Find mic pins */ | |
5617 | for (i = 0; i < cfg->num_inputs; i++) { | |
5618 | if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin) | |
5619 | spec->headset_mic_pin = cfg->inputs[i].pin; | |
5620 | if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin) | |
5621 | spec->headphone_mic_pin = cfg->inputs[i].pin; | |
5622 | } | |
5623 | ||
0bed2aa3 | 5624 | WARN_ON(spec->gen.cap_sync_hook); |
73bdd597 DH |
5625 | spec->gen.cap_sync_hook = alc_update_headset_mode_hook; |
5626 | spec->gen.automute_hook = alc_update_headset_mode; | |
5627 | spec->gen.hp_automute_hook = alc_update_headset_jack_cb; | |
5628 | } | |
5629 | ||
5630 | static void alc_fixup_headset_mode(struct hda_codec *codec, | |
5631 | const struct hda_fixup *fix, int action) | |
5632 | { | |
5633 | struct alc_spec *spec = codec->spec; | |
5634 | ||
5635 | switch (action) { | |
5636 | case HDA_FIXUP_ACT_PRE_PROBE: | |
5637 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC; | |
5638 | break; | |
5639 | case HDA_FIXUP_ACT_PROBE: | |
5640 | alc_probe_headset_mode(codec); | |
5641 | break; | |
5642 | case HDA_FIXUP_ACT_INIT: | |
aeac1a0d KY |
5643 | if (is_s3_resume(codec) || is_s4_resume(codec)) { |
5644 | spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN; | |
5645 | spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN; | |
5646 | } | |
73bdd597 DH |
5647 | alc_update_headset_mode(codec); |
5648 | break; | |
5649 | } | |
5650 | } | |
5651 | ||
5652 | static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec, | |
5653 | const struct hda_fixup *fix, int action) | |
5654 | { | |
5655 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5656 | struct alc_spec *spec = codec->spec; | |
5657 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
5658 | } | |
5659 | else | |
5660 | alc_fixup_headset_mode(codec, fix, action); | |
5661 | } | |
5662 | ||
31278997 KY |
5663 | static void alc255_set_default_jack_type(struct hda_codec *codec) |
5664 | { | |
5665 | /* Set to iphone type */ | |
6b0f95c4 | 5666 | static const struct coef_fw alc255fw[] = { |
54db6c39 TI |
5667 | WRITE_COEF(0x1b, 0x880b), |
5668 | WRITE_COEF(0x45, 0xd089), | |
5669 | WRITE_COEF(0x1b, 0x080b), | |
5670 | WRITE_COEF(0x46, 0x0004), | |
5671 | WRITE_COEF(0x1b, 0x0c0b), | |
5672 | {} | |
5673 | }; | |
6b0f95c4 | 5674 | static const struct coef_fw alc256fw[] = { |
e69e7e03 KY |
5675 | WRITE_COEF(0x1b, 0x884b), |
5676 | WRITE_COEF(0x45, 0xd089), | |
5677 | WRITE_COEF(0x1b, 0x084b), | |
5678 | WRITE_COEF(0x46, 0x0004), | |
5679 | WRITE_COEF(0x1b, 0x0c4b), | |
5680 | {} | |
5681 | }; | |
5682 | switch (codec->core.vendor_id) { | |
5683 | case 0x10ec0255: | |
5684 | alc_process_coef_fw(codec, alc255fw); | |
5685 | break; | |
1948fc06 | 5686 | case 0x10ec0230: |
736f20a7 | 5687 | case 0x10ec0236: |
e69e7e03 KY |
5688 | case 0x10ec0256: |
5689 | alc_process_coef_fw(codec, alc256fw); | |
5690 | break; | |
5691 | } | |
31278997 KY |
5692 | msleep(30); |
5693 | } | |
5694 | ||
9a22a8f5 KY |
5695 | static void alc_fixup_headset_mode_alc255(struct hda_codec *codec, |
5696 | const struct hda_fixup *fix, int action) | |
5697 | { | |
5698 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
31278997 | 5699 | alc255_set_default_jack_type(codec); |
9a22a8f5 KY |
5700 | } |
5701 | alc_fixup_headset_mode(codec, fix, action); | |
5702 | } | |
5703 | ||
31278997 KY |
5704 | static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec, |
5705 | const struct hda_fixup *fix, int action) | |
5706 | { | |
5707 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5708 | struct alc_spec *spec = codec->spec; | |
5709 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
5710 | alc255_set_default_jack_type(codec); | |
5711 | } | |
5712 | else | |
5713 | alc_fixup_headset_mode(codec, fix, action); | |
5714 | } | |
5715 | ||
e1e62b98 KY |
5716 | static void alc288_update_headset_jack_cb(struct hda_codec *codec, |
5717 | struct hda_jack_callback *jack) | |
5718 | { | |
5719 | struct alc_spec *spec = codec->spec; | |
e1e62b98 KY |
5720 | |
5721 | alc_update_headset_jack_cb(codec, jack); | |
5722 | /* Headset Mic enable or disable, only for Dell Dino */ | |
d44a6864 | 5723 | alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present); |
e1e62b98 KY |
5724 | } |
5725 | ||
5726 | static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec, | |
5727 | const struct hda_fixup *fix, int action) | |
5728 | { | |
5729 | alc_fixup_headset_mode(codec, fix, action); | |
5730 | if (action == HDA_FIXUP_ACT_PROBE) { | |
5731 | struct alc_spec *spec = codec->spec; | |
d44a6864 TI |
5732 | /* toggled via hp_automute_hook */ |
5733 | spec->gpio_mask |= 0x40; | |
5734 | spec->gpio_dir |= 0x40; | |
e1e62b98 KY |
5735 | spec->gen.hp_automute_hook = alc288_update_headset_jack_cb; |
5736 | } | |
5737 | } | |
5738 | ||
493a52a9 HW |
5739 | static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec, |
5740 | const struct hda_fixup *fix, int action) | |
5741 | { | |
5742 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5743 | struct alc_spec *spec = codec->spec; | |
5744 | spec->gen.auto_mute_via_amp = 1; | |
5745 | } | |
5746 | } | |
5747 | ||
9b745ab8 TI |
5748 | static void alc_fixup_no_shutup(struct hda_codec *codec, |
5749 | const struct hda_fixup *fix, int action) | |
5750 | { | |
efe55732 | 5751 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
9b745ab8 | 5752 | struct alc_spec *spec = codec->spec; |
c0ca5ece | 5753 | spec->no_shutup_pins = 1; |
9b745ab8 TI |
5754 | } |
5755 | } | |
5756 | ||
5e6db669 GM |
5757 | static void alc_fixup_disable_aamix(struct hda_codec *codec, |
5758 | const struct hda_fixup *fix, int action) | |
5759 | { | |
5760 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5761 | struct alc_spec *spec = codec->spec; | |
5762 | /* Disable AA-loopback as it causes white noise */ | |
5763 | spec->gen.mixer_nid = 0; | |
5764 | } | |
5765 | } | |
5766 | ||
7f57d803 TI |
5767 | /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */ |
5768 | static void alc_fixup_tpt440_dock(struct hda_codec *codec, | |
5769 | const struct hda_fixup *fix, int action) | |
5770 | { | |
5771 | static const struct hda_pintbl pincfgs[] = { | |
5772 | { 0x16, 0x21211010 }, /* dock headphone */ | |
5773 | { 0x19, 0x21a11010 }, /* dock mic */ | |
5774 | { } | |
5775 | }; | |
5776 | struct alc_spec *spec = codec->spec; | |
5777 | ||
5778 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5779 | spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; | |
5780 | codec->power_save_node = 0; /* avoid click noises */ | |
5781 | snd_hda_apply_pincfgs(codec, pincfgs); | |
5782 | } | |
5783 | } | |
5784 | ||
61fcf8ec KY |
5785 | static void alc_fixup_tpt470_dock(struct hda_codec *codec, |
5786 | const struct hda_fixup *fix, int action) | |
5787 | { | |
5788 | static const struct hda_pintbl pincfgs[] = { | |
5789 | { 0x17, 0x21211010 }, /* dock headphone */ | |
5790 | { 0x19, 0x21a11010 }, /* dock mic */ | |
5791 | { } | |
5792 | }; | |
5793 | struct alc_spec *spec = codec->spec; | |
5794 | ||
5795 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5796 | spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; | |
71db96dd TI |
5797 | snd_hda_apply_pincfgs(codec, pincfgs); |
5798 | } else if (action == HDA_FIXUP_ACT_INIT) { | |
61fcf8ec KY |
5799 | /* Enable DOCK device */ |
5800 | snd_hda_codec_write(codec, 0x17, 0, | |
5801 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0); | |
5802 | /* Enable DOCK device */ | |
5803 | snd_hda_codec_write(codec, 0x19, 0, | |
5804 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0); | |
61fcf8ec KY |
5805 | } |
5806 | } | |
5807 | ||
399c01aa TI |
5808 | static void alc_fixup_tpt470_dacs(struct hda_codec *codec, |
5809 | const struct hda_fixup *fix, int action) | |
5810 | { | |
5811 | /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise | |
5812 | * the speaker output becomes too low by some reason on Thinkpads with | |
5813 | * ALC298 codec | |
5814 | */ | |
5815 | static const hda_nid_t preferred_pairs[] = { | |
5816 | 0x14, 0x03, 0x17, 0x02, 0x21, 0x02, | |
5817 | 0 | |
5818 | }; | |
5819 | struct alc_spec *spec = codec->spec; | |
5820 | ||
5821 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
5822 | spec->gen.preferred_dacs = preferred_pairs; | |
5823 | } | |
5824 | ||
8eedd3a7 TI |
5825 | static void alc295_fixup_asus_dacs(struct hda_codec *codec, |
5826 | const struct hda_fixup *fix, int action) | |
5827 | { | |
5828 | static const hda_nid_t preferred_pairs[] = { | |
5829 | 0x17, 0x02, 0x21, 0x03, 0 | |
5830 | }; | |
5831 | struct alc_spec *spec = codec->spec; | |
5832 | ||
5833 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
5834 | spec->gen.preferred_dacs = preferred_pairs; | |
5835 | } | |
5836 | ||
9476d369 | 5837 | static void alc_shutup_dell_xps13(struct hda_codec *codec) |
033b0a7c GM |
5838 | { |
5839 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 5840 | int hp_pin = alc_get_hp_pin(spec); |
033b0a7c | 5841 | |
9476d369 GM |
5842 | /* Prevent pop noises when headphones are plugged in */ |
5843 | snd_hda_codec_write(codec, hp_pin, 0, | |
5844 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
5845 | msleep(20); | |
033b0a7c GM |
5846 | } |
5847 | ||
5848 | static void alc_fixup_dell_xps13(struct hda_codec *codec, | |
5849 | const struct hda_fixup *fix, int action) | |
5850 | { | |
3e1b0c4a TI |
5851 | struct alc_spec *spec = codec->spec; |
5852 | struct hda_input_mux *imux = &spec->gen.input_mux; | |
5853 | int i; | |
f38663ab | 5854 | |
3e1b0c4a TI |
5855 | switch (action) { |
5856 | case HDA_FIXUP_ACT_PRE_PROBE: | |
5857 | /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise | |
5858 | * it causes a click noise at start up | |
5859 | */ | |
5860 | snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ); | |
efe55732 | 5861 | spec->shutup = alc_shutup_dell_xps13; |
3e1b0c4a TI |
5862 | break; |
5863 | case HDA_FIXUP_ACT_PROBE: | |
f38663ab GM |
5864 | /* Make the internal mic the default input source. */ |
5865 | for (i = 0; i < imux->num_items; i++) { | |
5866 | if (spec->gen.imux_pins[i] == 0x12) { | |
5867 | spec->gen.cur_mux[0] = i; | |
5868 | break; | |
5869 | } | |
5870 | } | |
3e1b0c4a | 5871 | break; |
033b0a7c GM |
5872 | } |
5873 | } | |
5874 | ||
1f8b46cd DH |
5875 | static void alc_fixup_headset_mode_alc662(struct hda_codec *codec, |
5876 | const struct hda_fixup *fix, int action) | |
5877 | { | |
5878 | struct alc_spec *spec = codec->spec; | |
5879 | ||
5880 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5881 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
5882 | spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */ | |
b40eda64 DH |
5883 | |
5884 | /* Disable boost for mic-in permanently. (This code is only called | |
5885 | from quirks that guarantee that the headphone is at NID 0x1b.) */ | |
5886 | snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000); | |
5887 | snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP); | |
1f8b46cd DH |
5888 | } else |
5889 | alc_fixup_headset_mode(codec, fix, action); | |
5890 | } | |
5891 | ||
73bdd597 DH |
5892 | static void alc_fixup_headset_mode_alc668(struct hda_codec *codec, |
5893 | const struct hda_fixup *fix, int action) | |
5894 | { | |
5895 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
73bdd597 | 5896 | alc_write_coef_idx(codec, 0xc4, 0x8000); |
98b24883 | 5897 | alc_update_coef_idx(codec, 0xc2, ~0xfe, 0); |
73bdd597 DH |
5898 | snd_hda_set_pin_ctl_cache(codec, 0x18, 0); |
5899 | } | |
5900 | alc_fixup_headset_mode(codec, fix, action); | |
5901 | } | |
5902 | ||
bde7bc60 CCC |
5903 | /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */ |
5904 | static int find_ext_mic_pin(struct hda_codec *codec) | |
5905 | { | |
5906 | struct alc_spec *spec = codec->spec; | |
5907 | struct auto_pin_cfg *cfg = &spec->gen.autocfg; | |
5908 | hda_nid_t nid; | |
5909 | unsigned int defcfg; | |
5910 | int i; | |
5911 | ||
5912 | for (i = 0; i < cfg->num_inputs; i++) { | |
5913 | if (cfg->inputs[i].type != AUTO_PIN_MIC) | |
5914 | continue; | |
5915 | nid = cfg->inputs[i].pin; | |
5916 | defcfg = snd_hda_codec_get_pincfg(codec, nid); | |
5917 | if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT) | |
5918 | continue; | |
5919 | return nid; | |
5920 | } | |
5921 | ||
5922 | return 0; | |
5923 | } | |
5924 | ||
08a978db | 5925 | static void alc271_hp_gate_mic_jack(struct hda_codec *codec, |
1727a771 | 5926 | const struct hda_fixup *fix, |
08a978db DR |
5927 | int action) |
5928 | { | |
5929 | struct alc_spec *spec = codec->spec; | |
5930 | ||
0db75790 | 5931 | if (action == HDA_FIXUP_ACT_PROBE) { |
bde7bc60 | 5932 | int mic_pin = find_ext_mic_pin(codec); |
35a39f98 | 5933 | int hp_pin = alc_get_hp_pin(spec); |
bde7bc60 CCC |
5934 | |
5935 | if (snd_BUG_ON(!mic_pin || !hp_pin)) | |
0db75790 | 5936 | return; |
bde7bc60 | 5937 | snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin); |
0db75790 | 5938 | } |
08a978db | 5939 | } |
693b613d | 5940 | |
3e0d611b DH |
5941 | static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec, |
5942 | const struct hda_fixup *fix, | |
5943 | int action) | |
5944 | { | |
5945 | struct alc_spec *spec = codec->spec; | |
5946 | struct auto_pin_cfg *cfg = &spec->gen.autocfg; | |
5947 | int i; | |
5948 | ||
5949 | /* The mic boosts on level 2 and 3 are too noisy | |
5950 | on the internal mic input. | |
5951 | Therefore limit the boost to 0 or 1. */ | |
5952 | ||
5953 | if (action != HDA_FIXUP_ACT_PROBE) | |
5954 | return; | |
5955 | ||
5956 | for (i = 0; i < cfg->num_inputs; i++) { | |
5957 | hda_nid_t nid = cfg->inputs[i].pin; | |
5958 | unsigned int defcfg; | |
5959 | if (cfg->inputs[i].type != AUTO_PIN_MIC) | |
5960 | continue; | |
5961 | defcfg = snd_hda_codec_get_pincfg(codec, nid); | |
5962 | if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT) | |
5963 | continue; | |
5964 | ||
5965 | snd_hda_override_amp_caps(codec, nid, HDA_INPUT, | |
5966 | (0x00 << AC_AMPCAP_OFFSET_SHIFT) | | |
5967 | (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) | | |
5968 | (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) | | |
5969 | (0 << AC_AMPCAP_MUTE_SHIFT)); | |
5970 | } | |
5971 | } | |
5972 | ||
cd217a63 | 5973 | static void alc283_hp_automute_hook(struct hda_codec *codec, |
1a4f69d5 | 5974 | struct hda_jack_callback *jack) |
cd217a63 KY |
5975 | { |
5976 | struct alc_spec *spec = codec->spec; | |
5977 | int vref; | |
5978 | ||
5979 | msleep(200); | |
5980 | snd_hda_gen_hp_automute(codec, jack); | |
5981 | ||
5982 | vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0; | |
5983 | ||
5984 | msleep(600); | |
5985 | snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | |
5986 | vref); | |
5987 | } | |
5988 | ||
cd217a63 KY |
5989 | static void alc283_fixup_chromebook(struct hda_codec *codec, |
5990 | const struct hda_fixup *fix, int action) | |
5991 | { | |
5992 | struct alc_spec *spec = codec->spec; | |
cd217a63 KY |
5993 | |
5994 | switch (action) { | |
5995 | case HDA_FIXUP_ACT_PRE_PROBE: | |
0202e99c | 5996 | snd_hda_override_wcaps(codec, 0x03, 0); |
d2e92709 TI |
5997 | /* Disable AA-loopback as it causes white noise */ |
5998 | spec->gen.mixer_nid = 0; | |
38070219 | 5999 | break; |
0202e99c | 6000 | case HDA_FIXUP_ACT_INIT: |
de9481cb KY |
6001 | /* MIC2-VREF control */ |
6002 | /* Set to manual mode */ | |
98b24883 | 6003 | alc_update_coef_idx(codec, 0x06, 0x000c, 0); |
0202e99c | 6004 | /* Enable Line1 input control by verb */ |
98b24883 | 6005 | alc_update_coef_idx(codec, 0x1a, 0, 1 << 4); |
0202e99c KY |
6006 | break; |
6007 | } | |
6008 | } | |
6009 | ||
6010 | static void alc283_fixup_sense_combo_jack(struct hda_codec *codec, | |
6011 | const struct hda_fixup *fix, int action) | |
6012 | { | |
6013 | struct alc_spec *spec = codec->spec; | |
0202e99c KY |
6014 | |
6015 | switch (action) { | |
6016 | case HDA_FIXUP_ACT_PRE_PROBE: | |
cd217a63 | 6017 | spec->gen.hp_automute_hook = alc283_hp_automute_hook; |
38070219 KY |
6018 | break; |
6019 | case HDA_FIXUP_ACT_INIT: | |
cd217a63 KY |
6020 | /* MIC2-VREF control */ |
6021 | /* Set to manual mode */ | |
98b24883 | 6022 | alc_update_coef_idx(codec, 0x06, 0x000c, 0); |
cd217a63 KY |
6023 | break; |
6024 | } | |
6025 | } | |
6026 | ||
7bba2157 TI |
6027 | /* mute tablet speaker pin (0x14) via dock plugging in addition */ |
6028 | static void asus_tx300_automute(struct hda_codec *codec) | |
6029 | { | |
6030 | struct alc_spec *spec = codec->spec; | |
6031 | snd_hda_gen_update_outputs(codec); | |
6032 | if (snd_hda_jack_detect(codec, 0x1b)) | |
6033 | spec->gen.mute_bits |= (1ULL << 0x14); | |
6034 | } | |
6035 | ||
6036 | static void alc282_fixup_asus_tx300(struct hda_codec *codec, | |
6037 | const struct hda_fixup *fix, int action) | |
6038 | { | |
6039 | struct alc_spec *spec = codec->spec; | |
7bba2157 TI |
6040 | static const struct hda_pintbl dock_pins[] = { |
6041 | { 0x1b, 0x21114000 }, /* dock speaker pin */ | |
6042 | {} | |
6043 | }; | |
7bba2157 TI |
6044 | |
6045 | switch (action) { | |
6046 | case HDA_FIXUP_ACT_PRE_PROBE: | |
1c76aa5f | 6047 | spec->init_amp = ALC_INIT_DEFAULT; |
ae065f1c TI |
6048 | /* TX300 needs to set up GPIO2 for the speaker amp */ |
6049 | alc_setup_gpio(codec, 0x04); | |
7bba2157 TI |
6050 | snd_hda_apply_pincfgs(codec, dock_pins); |
6051 | spec->gen.auto_mute_via_amp = 1; | |
6052 | spec->gen.automute_hook = asus_tx300_automute; | |
6053 | snd_hda_jack_detect_enable_callback(codec, 0x1b, | |
7bba2157 TI |
6054 | snd_hda_gen_hp_automute); |
6055 | break; | |
5579cd6f TI |
6056 | case HDA_FIXUP_ACT_PROBE: |
6057 | spec->init_amp = ALC_INIT_DEFAULT; | |
6058 | break; | |
7bba2157 TI |
6059 | case HDA_FIXUP_ACT_BUILD: |
6060 | /* this is a bit tricky; give more sane names for the main | |
6061 | * (tablet) speaker and the dock speaker, respectively | |
6062 | */ | |
56798e6b TI |
6063 | rename_ctl(codec, "Speaker Playback Switch", |
6064 | "Dock Speaker Playback Switch"); | |
6065 | rename_ctl(codec, "Bass Speaker Playback Switch", | |
6066 | "Speaker Playback Switch"); | |
7bba2157 TI |
6067 | break; |
6068 | } | |
6069 | } | |
6070 | ||
338cae56 DH |
6071 | static void alc290_fixup_mono_speakers(struct hda_codec *codec, |
6072 | const struct hda_fixup *fix, int action) | |
6073 | { | |
0f4881dc DH |
6074 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
6075 | /* DAC node 0x03 is giving mono output. We therefore want to | |
6076 | make sure 0x14 (front speaker) and 0x15 (headphones) use the | |
6077 | stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */ | |
caf3c043 MM |
6078 | static const hda_nid_t conn1[] = { 0x0c }; |
6079 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1); | |
6080 | snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1); | |
0f4881dc | 6081 | } |
338cae56 DH |
6082 | } |
6083 | ||
dd9aa335 HW |
6084 | static void alc298_fixup_speaker_volume(struct hda_codec *codec, |
6085 | const struct hda_fixup *fix, int action) | |
6086 | { | |
6087 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
6088 | /* The speaker is routed to the Node 0x06 by a mistake, as a result | |
6089 | we can't adjust the speaker's volume since this node does not has | |
6090 | Amp-out capability. we change the speaker's route to: | |
6091 | Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 ( | |
6092 | Pin Complex), since Node 0x02 has Amp-out caps, we can adjust | |
6093 | speaker's volume now. */ | |
6094 | ||
caf3c043 MM |
6095 | static const hda_nid_t conn1[] = { 0x0c }; |
6096 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn1), conn1); | |
dd9aa335 HW |
6097 | } |
6098 | } | |
6099 | ||
e312a869 TI |
6100 | /* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */ |
6101 | static void alc295_fixup_disable_dac3(struct hda_codec *codec, | |
6102 | const struct hda_fixup *fix, int action) | |
6103 | { | |
6104 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
caf3c043 MM |
6105 | static const hda_nid_t conn[] = { 0x02, 0x03 }; |
6106 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
e312a869 TI |
6107 | } |
6108 | } | |
6109 | ||
d2cd795c JK |
6110 | /* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */ |
6111 | static void alc285_fixup_speaker2_to_dac1(struct hda_codec *codec, | |
6112 | const struct hda_fixup *fix, int action) | |
6113 | { | |
6114 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
caf3c043 MM |
6115 | static const hda_nid_t conn[] = { 0x02 }; |
6116 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
d2cd795c JK |
6117 | } |
6118 | } | |
6119 | ||
98973f2f KP |
6120 | /* Hook to update amp GPIO4 for automute */ |
6121 | static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec, | |
6122 | struct hda_jack_callback *jack) | |
6123 | { | |
6124 | struct alc_spec *spec = codec->spec; | |
6125 | ||
6126 | snd_hda_gen_hp_automute(codec, jack); | |
6127 | /* mute_led_polarity is set to 0, so we pass inverted value here */ | |
dbd13179 KHF |
6128 | alc_update_gpio_led(codec, 0x10, spec->mute_led_polarity, |
6129 | !spec->gen.hp_jack_present); | |
98973f2f KP |
6130 | } |
6131 | ||
6132 | /* Manage GPIOs for HP EliteBook Folio 9480m. | |
6133 | * | |
6134 | * GPIO4 is the headphone amplifier power control | |
6135 | * GPIO3 is the audio output mute indicator LED | |
6136 | */ | |
6137 | ||
6138 | static void alc280_fixup_hp_9480m(struct hda_codec *codec, | |
6139 | const struct hda_fixup *fix, | |
6140 | int action) | |
6141 | { | |
6142 | struct alc_spec *spec = codec->spec; | |
98973f2f | 6143 | |
01e4a275 | 6144 | alc_fixup_hp_gpio_led(codec, action, 0x08, 0); |
98973f2f | 6145 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
01e4a275 TI |
6146 | /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */ |
6147 | spec->gpio_mask |= 0x10; | |
6148 | spec->gpio_dir |= 0x10; | |
98973f2f | 6149 | spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook; |
98973f2f KP |
6150 | } |
6151 | } | |
6152 | ||
ae065f1c TI |
6153 | static void alc275_fixup_gpio4_off(struct hda_codec *codec, |
6154 | const struct hda_fixup *fix, | |
6155 | int action) | |
6156 | { | |
6157 | struct alc_spec *spec = codec->spec; | |
6158 | ||
6159 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
6160 | spec->gpio_mask |= 0x04; | |
6161 | spec->gpio_dir |= 0x04; | |
6162 | /* set data bit low */ | |
6163 | } | |
6164 | } | |
6165 | ||
6a6660d0 TI |
6166 | /* Quirk for Thinkpad X1 7th and 8th Gen |
6167 | * The following fixed routing needed | |
6168 | * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly | |
6169 | * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC | |
6170 | * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp | |
6171 | */ | |
6172 | static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec *codec, | |
6173 | const struct hda_fixup *fix, int action) | |
6174 | { | |
6175 | static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */ | |
6176 | static const hda_nid_t preferred_pairs[] = { | |
6177 | 0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0 | |
6178 | }; | |
6179 | struct alc_spec *spec = codec->spec; | |
6180 | ||
6181 | switch (action) { | |
6182 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6183 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
6184 | spec->gen.preferred_dacs = preferred_pairs; | |
6185 | break; | |
6186 | case HDA_FIXUP_ACT_BUILD: | |
6187 | /* The generic parser creates somewhat unintuitive volume ctls | |
6188 | * with the fixed routing above, and the shared DAC2 may be | |
6189 | * confusing for PA. | |
6190 | * Rename those to unique names so that PA doesn't touch them | |
6191 | * and use only Master volume. | |
6192 | */ | |
6193 | rename_ctl(codec, "Front Playback Volume", "DAC1 Playback Volume"); | |
6194 | rename_ctl(codec, "Bass Speaker Playback Volume", "DAC2 Playback Volume"); | |
6195 | break; | |
6196 | } | |
6197 | } | |
6198 | ||
ca169cc2 KY |
6199 | static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec, |
6200 | const struct hda_fixup *fix, | |
6201 | int action) | |
6202 | { | |
6203 | alc_fixup_dual_codecs(codec, fix, action); | |
6204 | switch (action) { | |
6205 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6206 | /* override card longname to provide a unique UCM profile */ | |
6207 | strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs"); | |
6208 | break; | |
6209 | case HDA_FIXUP_ACT_BUILD: | |
6210 | /* rename Capture controls depending on the codec */ | |
6211 | rename_ctl(codec, "Capture Volume", | |
6212 | codec->addr == 0 ? | |
6213 | "Rear-Panel Capture Volume" : | |
6214 | "Front-Panel Capture Volume"); | |
6215 | rename_ctl(codec, "Capture Switch", | |
6216 | codec->addr == 0 ? | |
6217 | "Rear-Panel Capture Switch" : | |
6218 | "Front-Panel Capture Switch"); | |
6219 | break; | |
6220 | } | |
6221 | } | |
6222 | ||
52e4e368 KHF |
6223 | static void alc225_fixup_s3_pop_noise(struct hda_codec *codec, |
6224 | const struct hda_fixup *fix, int action) | |
6225 | { | |
6226 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
6227 | return; | |
6228 | ||
6229 | codec->power_save_node = 1; | |
6230 | } | |
6231 | ||
92266651 KY |
6232 | /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */ |
6233 | static void alc274_fixup_bind_dacs(struct hda_codec *codec, | |
6234 | const struct hda_fixup *fix, int action) | |
6235 | { | |
6236 | struct alc_spec *spec = codec->spec; | |
caf3c043 | 6237 | static const hda_nid_t preferred_pairs[] = { |
92266651 KY |
6238 | 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02, |
6239 | 0 | |
6240 | }; | |
6241 | ||
6242 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
6243 | return; | |
6244 | ||
6245 | spec->gen.preferred_dacs = preferred_pairs; | |
0700d3d1 KY |
6246 | spec->gen.auto_mute_via_amp = 1; |
6247 | codec->power_save_node = 0; | |
92266651 KY |
6248 | } |
6249 | ||
c84bfedc TI |
6250 | /* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */ |
6251 | static void alc289_fixup_asus_ga401(struct hda_codec *codec, | |
6252 | const struct hda_fixup *fix, int action) | |
6253 | { | |
6254 | static const hda_nid_t preferred_pairs[] = { | |
6255 | 0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0 | |
6256 | }; | |
6257 | struct alc_spec *spec = codec->spec; | |
6258 | ||
6259 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
6260 | spec->gen.preferred_dacs = preferred_pairs; | |
6261 | spec->gen.obey_preferred_dacs = 1; | |
6262 | } | |
6263 | } | |
6264 | ||
c4cfcf6f HW |
6265 | /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */ |
6266 | static void alc285_fixup_invalidate_dacs(struct hda_codec *codec, | |
6267 | const struct hda_fixup *fix, int action) | |
6268 | { | |
6269 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
6270 | return; | |
6271 | ||
6272 | snd_hda_override_wcaps(codec, 0x03, 0); | |
6273 | } | |
6274 | ||
8a8de09c KY |
6275 | static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec) |
6276 | { | |
6277 | switch (codec->core.vendor_id) { | |
6278 | case 0x10ec0274: | |
6279 | case 0x10ec0294: | |
6280 | case 0x10ec0225: | |
6281 | case 0x10ec0295: | |
6282 | case 0x10ec0299: | |
6283 | alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */ | |
6284 | alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15); | |
6285 | break; | |
1948fc06 | 6286 | case 0x10ec0230: |
8a8de09c KY |
6287 | case 0x10ec0235: |
6288 | case 0x10ec0236: | |
6289 | case 0x10ec0255: | |
6290 | case 0x10ec0256: | |
6291 | alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */ | |
6292 | alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15); | |
6293 | break; | |
6294 | } | |
6295 | } | |
6296 | ||
8983eb60 KY |
6297 | static void alc295_fixup_chromebook(struct hda_codec *codec, |
6298 | const struct hda_fixup *fix, int action) | |
6299 | { | |
d3ba58bb KY |
6300 | struct alc_spec *spec = codec->spec; |
6301 | ||
8983eb60 | 6302 | switch (action) { |
d3ba58bb KY |
6303 | case HDA_FIXUP_ACT_PRE_PROBE: |
6304 | spec->ultra_low_power = true; | |
6305 | break; | |
8983eb60 | 6306 | case HDA_FIXUP_ACT_INIT: |
8a8de09c | 6307 | alc_combo_jack_hp_jd_restart(codec); |
8983eb60 KY |
6308 | break; |
6309 | } | |
6310 | } | |
6311 | ||
d1dd4211 KY |
6312 | static void alc_fixup_disable_mic_vref(struct hda_codec *codec, |
6313 | const struct hda_fixup *fix, int action) | |
6314 | { | |
6315 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
6316 | snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ); | |
6317 | } | |
6318 | ||
c3cdf189 LJ |
6319 | |
6320 | static void alc294_gx502_toggle_output(struct hda_codec *codec, | |
6321 | struct hda_jack_callback *cb) | |
6322 | { | |
6323 | /* The Windows driver sets the codec up in a very different way where | |
6324 | * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it | |
6325 | */ | |
6326 | if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT) | |
6327 | alc_write_coef_idx(codec, 0x10, 0x8a20); | |
6328 | else | |
6329 | alc_write_coef_idx(codec, 0x10, 0x0a20); | |
6330 | } | |
6331 | ||
6332 | static void alc294_fixup_gx502_hp(struct hda_codec *codec, | |
6333 | const struct hda_fixup *fix, int action) | |
6334 | { | |
6335 | /* Pin 0x21: headphones/headset mic */ | |
6336 | if (!is_jack_detectable(codec, 0x21)) | |
6337 | return; | |
6338 | ||
6339 | switch (action) { | |
6340 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6341 | snd_hda_jack_detect_enable_callback(codec, 0x21, | |
6342 | alc294_gx502_toggle_output); | |
6343 | break; | |
6344 | case HDA_FIXUP_ACT_INIT: | |
6345 | /* Make sure to start in a correct state, i.e. if | |
6346 | * headphones have been plugged in before powering up the system | |
6347 | */ | |
6348 | alc294_gx502_toggle_output(codec, NULL); | |
6349 | break; | |
6350 | } | |
6351 | } | |
6352 | ||
c1b55029 DC |
6353 | static void alc294_gu502_toggle_output(struct hda_codec *codec, |
6354 | struct hda_jack_callback *cb) | |
6355 | { | |
6356 | /* Windows sets 0x10 to 0x8420 for Node 0x20 which is | |
6357 | * responsible from changes between speakers and headphones | |
6358 | */ | |
6359 | if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT) | |
6360 | alc_write_coef_idx(codec, 0x10, 0x8420); | |
6361 | else | |
6362 | alc_write_coef_idx(codec, 0x10, 0x0a20); | |
6363 | } | |
6364 | ||
6365 | static void alc294_fixup_gu502_hp(struct hda_codec *codec, | |
6366 | const struct hda_fixup *fix, int action) | |
6367 | { | |
6368 | if (!is_jack_detectable(codec, 0x21)) | |
6369 | return; | |
6370 | ||
6371 | switch (action) { | |
6372 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6373 | snd_hda_jack_detect_enable_callback(codec, 0x21, | |
6374 | alc294_gu502_toggle_output); | |
6375 | break; | |
6376 | case HDA_FIXUP_ACT_INIT: | |
6377 | alc294_gu502_toggle_output(codec, NULL); | |
6378 | break; | |
6379 | } | |
6380 | } | |
6381 | ||
56496253 KY |
6382 | static void alc285_fixup_hp_gpio_amp_init(struct hda_codec *codec, |
6383 | const struct hda_fixup *fix, int action) | |
6384 | { | |
6385 | if (action != HDA_FIXUP_ACT_INIT) | |
6386 | return; | |
6387 | ||
6388 | msleep(100); | |
6389 | alc_write_coef_idx(codec, 0x65, 0x0); | |
6390 | } | |
6391 | ||
8a8de09c KY |
6392 | static void alc274_fixup_hp_headset_mic(struct hda_codec *codec, |
6393 | const struct hda_fixup *fix, int action) | |
6394 | { | |
6395 | switch (action) { | |
6396 | case HDA_FIXUP_ACT_INIT: | |
6397 | alc_combo_jack_hp_jd_restart(codec); | |
6398 | break; | |
6399 | } | |
6400 | } | |
6401 | ||
92666d45 KY |
6402 | static void alc_fixup_no_int_mic(struct hda_codec *codec, |
6403 | const struct hda_fixup *fix, int action) | |
6404 | { | |
6405 | struct alc_spec *spec = codec->spec; | |
6406 | ||
6407 | switch (action) { | |
6408 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6409 | /* Mic RING SLEEVE swap for combo jack */ | |
6410 | alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12); | |
6411 | spec->no_internal_mic_pin = true; | |
6412 | break; | |
6413 | case HDA_FIXUP_ACT_INIT: | |
6414 | alc_combo_jack_hp_jd_restart(codec); | |
6415 | break; | |
6416 | } | |
6417 | } | |
6418 | ||
d94befbb DB |
6419 | /* GPIO1 = amplifier on/off |
6420 | * GPIO3 = mic mute LED | |
6421 | */ | |
6422 | static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec *codec, | |
6423 | const struct hda_fixup *fix, int action) | |
6424 | { | |
6425 | static const hda_nid_t conn[] = { 0x02 }; | |
6426 | ||
6427 | struct alc_spec *spec = codec->spec; | |
6428 | static const struct hda_pintbl pincfgs[] = { | |
6429 | { 0x14, 0x90170110 }, /* front/high speakers */ | |
6430 | { 0x17, 0x90170130 }, /* back/bass speakers */ | |
6431 | { } | |
6432 | }; | |
6433 | ||
6434 | //enable micmute led | |
6435 | alc_fixup_hp_gpio_led(codec, action, 0x00, 0x04); | |
6436 | ||
6437 | switch (action) { | |
6438 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6439 | spec->micmute_led_polarity = 1; | |
6440 | /* needed for amp of back speakers */ | |
6441 | spec->gpio_mask |= 0x01; | |
6442 | spec->gpio_dir |= 0x01; | |
6443 | snd_hda_apply_pincfgs(codec, pincfgs); | |
6444 | /* share DAC to have unified volume control */ | |
6445 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn); | |
6446 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
6447 | break; | |
6448 | case HDA_FIXUP_ACT_INIT: | |
6449 | /* need to toggle GPIO to enable the amp of back speakers */ | |
6450 | alc_update_gpio_data(codec, 0x01, true); | |
6451 | msleep(100); | |
6452 | alc_update_gpio_data(codec, 0x01, false); | |
6453 | break; | |
6454 | } | |
6455 | } | |
6456 | ||
434591b2 ED |
6457 | static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec, |
6458 | const struct hda_fixup *fix, int action) | |
6459 | { | |
6460 | static const hda_nid_t conn[] = { 0x02 }; | |
6461 | static const struct hda_pintbl pincfgs[] = { | |
6462 | { 0x14, 0x90170110 }, /* rear speaker */ | |
6463 | { } | |
6464 | }; | |
6465 | ||
6466 | switch (action) { | |
6467 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6468 | snd_hda_apply_pincfgs(codec, pincfgs); | |
6469 | /* force front speaker to DAC1 */ | |
6470 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
6471 | break; | |
6472 | } | |
6473 | } | |
6474 | ||
b317b032 TI |
6475 | /* for hda_fixup_thinkpad_acpi() */ |
6476 | #include "thinkpad_helper.c" | |
b67ae3f1 | 6477 | |
d5a6cabf TI |
6478 | static void alc_fixup_thinkpad_acpi(struct hda_codec *codec, |
6479 | const struct hda_fixup *fix, int action) | |
6480 | { | |
6481 | alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */ | |
6482 | hda_fixup_thinkpad_acpi(codec, fix, action); | |
6483 | } | |
6484 | ||
ad7cc2d4 CB |
6485 | /* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */ |
6486 | static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec, | |
6487 | const struct hda_fixup *fix, | |
6488 | int action) | |
6489 | { | |
6490 | struct alc_spec *spec = codec->spec; | |
6491 | ||
6492 | switch (action) { | |
6493 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6494 | spec->gen.suppress_auto_mute = 1; | |
6495 | break; | |
6496 | } | |
6497 | } | |
6498 | ||
bbf8ff6b TB |
6499 | /* for alc295_fixup_hp_top_speakers */ |
6500 | #include "hp_x360_helper.c" | |
6501 | ||
26928ca1 TI |
6502 | /* for alc285_fixup_ideapad_s740_coef() */ |
6503 | #include "ideapad_s740_helper.c" | |
6504 | ||
dd6dd6e3 WS |
6505 | static void alc256_fixup_tongfang_reset_persistent_settings(struct hda_codec *codec, |
6506 | const struct hda_fixup *fix, | |
6507 | int action) | |
6508 | { | |
6509 | /* | |
6510 | * A certain other OS sets these coeffs to different values. On at least one TongFang | |
6511 | * barebone these settings might survive even a cold reboot. So to restore a clean slate the | |
6512 | * values are explicitly reset to default here. Without this, the external microphone is | |
6513 | * always in a plugged-in state, while the internal microphone is always in an unplugged | |
6514 | * state, breaking the ability to use the internal microphone. | |
6515 | */ | |
6516 | alc_write_coef_idx(codec, 0x24, 0x0000); | |
6517 | alc_write_coef_idx(codec, 0x26, 0x0000); | |
6518 | alc_write_coef_idx(codec, 0x29, 0x3000); | |
6519 | alc_write_coef_idx(codec, 0x37, 0xfe05); | |
6520 | alc_write_coef_idx(codec, 0x45, 0x5089); | |
6521 | } | |
6522 | ||
1d045db9 | 6523 | enum { |
f73bbf63 | 6524 | ALC269_FIXUP_GPIO2, |
1d045db9 TI |
6525 | ALC269_FIXUP_SONY_VAIO, |
6526 | ALC275_FIXUP_SONY_VAIO_GPIO2, | |
6527 | ALC269_FIXUP_DELL_M101Z, | |
6528 | ALC269_FIXUP_SKU_IGNORE, | |
6529 | ALC269_FIXUP_ASUS_G73JW, | |
6530 | ALC269_FIXUP_LENOVO_EAPD, | |
6531 | ALC275_FIXUP_SONY_HWEQ, | |
e9bd7d5c | 6532 | ALC275_FIXUP_SONY_DISABLE_AAMIX, |
1d045db9 | 6533 | ALC271_FIXUP_DMIC, |
017f2a10 | 6534 | ALC269_FIXUP_PCM_44K, |
adabb3ec | 6535 | ALC269_FIXUP_STEREO_DMIC, |
7c478f03 | 6536 | ALC269_FIXUP_HEADSET_MIC, |
24519911 TI |
6537 | ALC269_FIXUP_QUANTA_MUTE, |
6538 | ALC269_FIXUP_LIFEBOOK, | |
2041d564 | 6539 | ALC269_FIXUP_LIFEBOOK_EXTMIC, |
cc7016ab | 6540 | ALC269_FIXUP_LIFEBOOK_HP_PIN, |
4df3fd17 | 6541 | ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT, |
fdcc968a | 6542 | ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, |
a4297b5d TI |
6543 | ALC269_FIXUP_AMIC, |
6544 | ALC269_FIXUP_DMIC, | |
6545 | ALC269VB_FIXUP_AMIC, | |
6546 | ALC269VB_FIXUP_DMIC, | |
08fb0d0e | 6547 | ALC269_FIXUP_HP_MUTE_LED, |
d06ac143 | 6548 | ALC269_FIXUP_HP_MUTE_LED_MIC1, |
08fb0d0e | 6549 | ALC269_FIXUP_HP_MUTE_LED_MIC2, |
7f783bd5 | 6550 | ALC269_FIXUP_HP_MUTE_LED_MIC3, |
9f5c6faf | 6551 | ALC269_FIXUP_HP_GPIO_LED, |
9c5dc3bf KY |
6552 | ALC269_FIXUP_HP_GPIO_MIC1_LED, |
6553 | ALC269_FIXUP_HP_LINE1_MIC1_LED, | |
693b613d | 6554 | ALC269_FIXUP_INV_DMIC, |
108cc108 | 6555 | ALC269_FIXUP_LENOVO_DOCK, |
b590b38c | 6556 | ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, |
9b745ab8 | 6557 | ALC269_FIXUP_NO_SHUTUP, |
88cfcf86 | 6558 | ALC286_FIXUP_SONY_MIC_NO_PRESENCE, |
108cc108 | 6559 | ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT, |
73bdd597 DH |
6560 | ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
6561 | ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, | |
338cae56 | 6562 | ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, |
fcc6c877 | 6563 | ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, |
73bdd597 DH |
6564 | ALC269_FIXUP_HEADSET_MODE, |
6565 | ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, | |
7819717b | 6566 | ALC269_FIXUP_ASPIRE_HEADSET_MIC, |
d240d1dc DH |
6567 | ALC269_FIXUP_ASUS_X101_FUNC, |
6568 | ALC269_FIXUP_ASUS_X101_VERB, | |
6569 | ALC269_FIXUP_ASUS_X101, | |
08a978db DR |
6570 | ALC271_FIXUP_AMIC_MIC2, |
6571 | ALC271_FIXUP_HP_GATE_MIC_JACK, | |
b1e8972e | 6572 | ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, |
42397004 | 6573 | ALC269_FIXUP_ACER_AC700, |
3e0d611b | 6574 | ALC269_FIXUP_LIMIT_INT_MIC_BOOST, |
2cede303 | 6575 | ALC269VB_FIXUP_ASUS_ZENBOOK, |
23870831 | 6576 | ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, |
8e35cd4a | 6577 | ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED, |
02b504d9 | 6578 | ALC269VB_FIXUP_ORDISSIMO_EVE2, |
cd217a63 | 6579 | ALC283_FIXUP_CHROME_BOOK, |
0202e99c | 6580 | ALC283_FIXUP_SENSE_COMBO_JACK, |
7bba2157 | 6581 | ALC282_FIXUP_ASUS_TX300, |
1bb3e062 | 6582 | ALC283_FIXUP_INT_MIC, |
338cae56 | 6583 | ALC290_FIXUP_MONO_SPEAKERS, |
0f4881dc DH |
6584 | ALC290_FIXUP_MONO_SPEAKERS_HSJACK, |
6585 | ALC290_FIXUP_SUBWOOFER, | |
6586 | ALC290_FIXUP_SUBWOOFER_HSJACK, | |
b67ae3f1 | 6587 | ALC269_FIXUP_THINKPAD_ACPI, |
56f27013 | 6588 | ALC269_FIXUP_DMIC_THINKPAD_ACPI, |
5824ce8d | 6589 | ALC255_FIXUP_ACER_MIC_NO_PRESENCE, |
615966ad | 6590 | ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, |
9a22a8f5 | 6591 | ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
31278997 | 6592 | ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, |
9a22a8f5 | 6593 | ALC255_FIXUP_HEADSET_MODE, |
31278997 | 6594 | ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC, |
a22aa26f | 6595 | ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, |
1c37c223 | 6596 | ALC292_FIXUP_TPT440_DOCK, |
9a811230 | 6597 | ALC292_FIXUP_TPT440, |
abaa2274 | 6598 | ALC283_FIXUP_HEADSET_MIC, |
b3802783 | 6599 | ALC255_FIXUP_MIC_MUTE_LED, |
1a22e775 | 6600 | ALC282_FIXUP_ASPIRE_V5_PINS, |
c8426b27 | 6601 | ALC269VB_FIXUP_ASPIRE_E1_COEF, |
7a5255f1 | 6602 | ALC280_FIXUP_HP_GPIO4, |
eaa8e5ef | 6603 | ALC286_FIXUP_HP_GPIO_LED, |
33f4acd3 | 6604 | ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, |
b4b33f9d | 6605 | ALC280_FIXUP_HP_DOCK_PINS, |
04d5466a | 6606 | ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, |
98973f2f | 6607 | ALC280_FIXUP_HP_9480M, |
c3bb2b52 | 6608 | ALC245_FIXUP_HP_X360_AMP, |
d94befbb | 6609 | ALC285_FIXUP_HP_SPECTRE_X360_EB1, |
e1e62b98 KY |
6610 | ALC288_FIXUP_DELL_HEADSET_MODE, |
6611 | ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, | |
831bfdf9 HW |
6612 | ALC288_FIXUP_DELL_XPS_13, |
6613 | ALC288_FIXUP_DISABLE_AAMIX, | |
5fab5829 | 6614 | ALC292_FIXUP_DELL_E7X_AAMIX, |
8b99aba7 TI |
6615 | ALC292_FIXUP_DELL_E7X, |
6616 | ALC292_FIXUP_DISABLE_AAMIX, | |
c04017ea | 6617 | ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, |
54324221 | 6618 | ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE, |
977e6276 | 6619 | ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, |
2f726aec | 6620 | ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, |
6ed1131f | 6621 | ALC275_FIXUP_DELL_XPS, |
23adc192 | 6622 | ALC293_FIXUP_LENOVO_SPK_NOISE, |
3694cb29 | 6623 | ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, |
3b43b71f | 6624 | ALC255_FIXUP_DELL_SPK_NOISE, |
d1dd4211 | 6625 | ALC225_FIXUP_DISABLE_MIC_VREF, |
2ae95577 | 6626 | ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, |
e312a869 | 6627 | ALC295_FIXUP_DISABLE_DAC3, |
d2cd795c | 6628 | ALC285_FIXUP_SPEAKER2_TO_DAC1, |
f883982d | 6629 | ALC280_FIXUP_HP_HEADSET_MIC, |
e549d190 | 6630 | ALC221_FIXUP_HP_FRONT_MIC, |
c636b95e | 6631 | ALC292_FIXUP_TPT460, |
dd9aa335 | 6632 | ALC298_FIXUP_SPK_VOLUME, |
f86de9b1 | 6633 | ALC298_FIXUP_LENOVO_SPK_VOLUME, |
fd06c77e | 6634 | ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, |
823ff161 | 6635 | ALC269_FIXUP_ATIV_BOOK_8, |
9eb5d0e6 | 6636 | ALC221_FIXUP_HP_MIC_NO_PRESENCE, |
c1732ede CC |
6637 | ALC256_FIXUP_ASUS_HEADSET_MODE, |
6638 | ALC256_FIXUP_ASUS_MIC, | |
eeed4cd1 | 6639 | ALC256_FIXUP_ASUS_AIO_GPIO2, |
216d7aeb CC |
6640 | ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, |
6641 | ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, | |
ca169cc2 | 6642 | ALC233_FIXUP_LENOVO_MULTI_CODECS, |
ea5c7eba | 6643 | ALC233_FIXUP_ACER_HEADSET_MIC, |
f33f79f3 | 6644 | ALC294_FIXUP_LENOVO_MIC_LOCATION, |
5f364135 | 6645 | ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, |
52e4e368 | 6646 | ALC225_FIXUP_S3_POP_NOISE, |
b84e8436 | 6647 | ALC700_FIXUP_INTEL_REFERENCE, |
92266651 KY |
6648 | ALC274_FIXUP_DELL_BIND_DACS, |
6649 | ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, | |
399c01aa | 6650 | ALC298_FIXUP_TPT470_DOCK_FIX, |
61fcf8ec | 6651 | ALC298_FIXUP_TPT470_DOCK, |
ae104a21 | 6652 | ALC255_FIXUP_DUMMY_LINEOUT_VERB, |
f0ba9d69 | 6653 | ALC255_FIXUP_DELL_HEADSET_MIC, |
0fbf21c3 | 6654 | ALC256_FIXUP_HUAWEI_MACH_WX9_PINS, |
a2ef03fe | 6655 | ALC298_FIXUP_HUAWEI_MBX_STEREO, |
bbf8ff6b | 6656 | ALC295_FIXUP_HP_X360, |
8a328ac1 | 6657 | ALC221_FIXUP_HP_HEADSET_MIC, |
c4cfcf6f | 6658 | ALC285_FIXUP_LENOVO_HEADPHONE_NOISE, |
e8ed64b0 | 6659 | ALC295_FIXUP_HP_AUTO_MUTE, |
33aaebd4 | 6660 | ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE, |
d8ae458e | 6661 | ALC294_FIXUP_ASUS_MIC, |
4e051106 JHP |
6662 | ALC294_FIXUP_ASUS_HEADSET_MIC, |
6663 | ALC294_FIXUP_ASUS_SPK, | |
89e3a568 | 6664 | ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE, |
c8c6ee61 | 6665 | ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE, |
cbc05fd6 | 6666 | ALC255_FIXUP_ACER_HEADSET_MIC, |
10f5b1b8 | 6667 | ALC295_FIXUP_CHROME_BOOK, |
8983eb60 | 6668 | ALC225_FIXUP_HEADSET_JACK, |
136824ef KY |
6669 | ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE, |
6670 | ALC225_FIXUP_WYSE_AUTO_MUTE, | |
6671 | ALC225_FIXUP_WYSE_DISABLE_MIC_VREF, | |
667a8f73 | 6672 | ALC286_FIXUP_ACER_AIO_HEADSET_MIC, |
8c8967a7 | 6673 | ALC256_FIXUP_ASUS_HEADSET_MIC, |
e1037354 | 6674 | ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, |
e2a829b3 | 6675 | ALC299_FIXUP_PREDATOR_SPK, |
bd9c10bc | 6676 | ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, |
e79c2269 KY |
6677 | ALC289_FIXUP_DELL_SPK2, |
6678 | ALC289_FIXUP_DUAL_SPK, | |
48e01504 CC |
6679 | ALC294_FIXUP_SPK2_TO_DAC1, |
6680 | ALC294_FIXUP_ASUS_DUAL_SPK, | |
6a6660d0 | 6681 | ALC285_FIXUP_THINKPAD_X1_GEN7, |
76f7dec0 | 6682 | ALC285_FIXUP_THINKPAD_HEADSET_JACK, |
8b33a134 | 6683 | ALC294_FIXUP_ASUS_HPE, |
1b94e59d | 6684 | ALC294_FIXUP_ASUS_COEF_1B, |
c3cdf189 LJ |
6685 | ALC294_FIXUP_ASUS_GX502_HP, |
6686 | ALC294_FIXUP_ASUS_GX502_PINS, | |
6687 | ALC294_FIXUP_ASUS_GX502_VERBS, | |
c1b55029 DC |
6688 | ALC294_FIXUP_ASUS_GU502_HP, |
6689 | ALC294_FIXUP_ASUS_GU502_PINS, | |
6690 | ALC294_FIXUP_ASUS_GU502_VERBS, | |
f5a88b0a | 6691 | ALC285_FIXUP_HP_GPIO_LED, |
431e76c3 | 6692 | ALC285_FIXUP_HP_MUTE_LED, |
e7d66cf7 | 6693 | ALC236_FIXUP_HP_GPIO_LED, |
24164f43 | 6694 | ALC236_FIXUP_HP_MUTE_LED, |
75b62ab6 | 6695 | ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF, |
14425f1f | 6696 | ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, |
9e43342b | 6697 | ALC295_FIXUP_ASUS_MIC_NO_PRESENCE, |
8eae7e9b | 6698 | ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS, |
6e15d126 | 6699 | ALC269VC_FIXUP_ACER_HEADSET_MIC, |
781c90c0 | 6700 | ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE, |
293a92c1 | 6701 | ALC289_FIXUP_ASUS_GA401, |
4b43d05a | 6702 | ALC289_FIXUP_ASUS_GA502, |
f50a121d | 6703 | ALC256_FIXUP_ACER_MIC_NO_PRESENCE, |
56496253 | 6704 | ALC285_FIXUP_HP_GPIO_AMP_INIT, |
f1ec5be1 HC |
6705 | ALC269_FIXUP_CZC_B20, |
6706 | ALC269_FIXUP_CZC_TMI, | |
6707 | ALC269_FIXUP_CZC_L101, | |
6708 | ALC269_FIXUP_LEMOTE_A1802, | |
6709 | ALC269_FIXUP_LEMOTE_A190X, | |
e2d2fded | 6710 | ALC256_FIXUP_INTEL_NUC8_RUGGED, |
d1ee66c5 PC |
6711 | ALC233_FIXUP_INTEL_NUC8_DMIC, |
6712 | ALC233_FIXUP_INTEL_NUC8_BOOST, | |
73e7161e | 6713 | ALC256_FIXUP_INTEL_NUC10, |
fc19d559 | 6714 | ALC255_FIXUP_XIAOMI_HEADSET_MIC, |
13468bfa | 6715 | ALC274_FIXUP_HP_MIC, |
8a8de09c | 6716 | ALC274_FIXUP_HP_HEADSET_MIC, |
622464c8 | 6717 | ALC274_FIXUP_HP_ENVY_GPIO, |
ef9ce66f | 6718 | ALC256_FIXUP_ASUS_HPE, |
446b8185 | 6719 | ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK, |
a0ccbc53 | 6720 | ALC287_FIXUP_HP_GPIO_LED, |
9e885770 | 6721 | ALC256_FIXUP_HP_HEADSET_MIC, |
5fc462c3 | 6722 | ALC245_FIXUP_HP_GPIO_LED, |
92666d45 | 6723 | ALC236_FIXUP_DELL_AIO_HEADSET_MIC, |
34cdf405 | 6724 | ALC282_FIXUP_ACER_DISABLE_LINEOUT, |
495dc763 | 6725 | ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST, |
d0e18561 | 6726 | ALC256_FIXUP_ACER_HEADSET_MIC, |
26928ca1 | 6727 | ALC285_FIXUP_IDEAPAD_S740_COEF, |
bd15b155 | 6728 | ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST, |
8eedd3a7 | 6729 | ALC295_FIXUP_ASUS_DACS, |
5d84b531 | 6730 | ALC295_FIXUP_HP_OMEN, |
f2be77fe | 6731 | ALC285_FIXUP_HP_SPECTRE_X360, |
9ebaef05 | 6732 | ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, |
29c8f40b | 6733 | ALC623_FIXUP_LENOVO_THINKSTATION_P340, |
57c9e21a | 6734 | ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, |
8903376d | 6735 | ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST, |
ad7cc2d4 CB |
6736 | ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS, |
6737 | ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE, | |
6738 | ALC287_FIXUP_YOGA7_14ITL_SPEAKERS, | |
dd6dd6e3 WS |
6739 | ALC287_FIXUP_13S_GEN2_SPEAKERS, |
6740 | ALC256_FIXUP_TONGFANG_RESET_PERSISTENT_SETTINGS, | |
f1d4e28b KY |
6741 | }; |
6742 | ||
1727a771 | 6743 | static const struct hda_fixup alc269_fixups[] = { |
f73bbf63 KHF |
6744 | [ALC269_FIXUP_GPIO2] = { |
6745 | .type = HDA_FIXUP_FUNC, | |
6746 | .v.func = alc_fixup_gpio2, | |
6747 | }, | |
1d045db9 | 6748 | [ALC269_FIXUP_SONY_VAIO] = { |
fd108215 TI |
6749 | .type = HDA_FIXUP_PINCTLS, |
6750 | .v.pins = (const struct hda_pintbl[]) { | |
6751 | {0x19, PIN_VREFGRD}, | |
1d045db9 TI |
6752 | {} |
6753 | } | |
f1d4e28b | 6754 | }, |
1d045db9 | 6755 | [ALC275_FIXUP_SONY_VAIO_GPIO2] = { |
ae065f1c TI |
6756 | .type = HDA_FIXUP_FUNC, |
6757 | .v.func = alc275_fixup_gpio4_off, | |
1d045db9 TI |
6758 | .chained = true, |
6759 | .chain_id = ALC269_FIXUP_SONY_VAIO | |
6760 | }, | |
6761 | [ALC269_FIXUP_DELL_M101Z] = { | |
1727a771 | 6762 | .type = HDA_FIXUP_VERBS, |
1d045db9 TI |
6763 | .v.verbs = (const struct hda_verb[]) { |
6764 | /* Enables internal speaker */ | |
6765 | {0x20, AC_VERB_SET_COEF_INDEX, 13}, | |
6766 | {0x20, AC_VERB_SET_PROC_COEF, 0x4040}, | |
6767 | {} | |
6768 | } | |
6769 | }, | |
6770 | [ALC269_FIXUP_SKU_IGNORE] = { | |
1727a771 | 6771 | .type = HDA_FIXUP_FUNC, |
23d30f28 | 6772 | .v.func = alc_fixup_sku_ignore, |
1d045db9 TI |
6773 | }, |
6774 | [ALC269_FIXUP_ASUS_G73JW] = { | |
1727a771 TI |
6775 | .type = HDA_FIXUP_PINS, |
6776 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
6777 | { 0x17, 0x99130111 }, /* subwoofer */ |
6778 | { } | |
6779 | } | |
6780 | }, | |
6781 | [ALC269_FIXUP_LENOVO_EAPD] = { | |
1727a771 | 6782 | .type = HDA_FIXUP_VERBS, |
1d045db9 TI |
6783 | .v.verbs = (const struct hda_verb[]) { |
6784 | {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0}, | |
6785 | {} | |
6786 | } | |
6787 | }, | |
6788 | [ALC275_FIXUP_SONY_HWEQ] = { | |
1727a771 | 6789 | .type = HDA_FIXUP_FUNC, |
1d045db9 TI |
6790 | .v.func = alc269_fixup_hweq, |
6791 | .chained = true, | |
6792 | .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2 | |
6793 | }, | |
e9bd7d5c TI |
6794 | [ALC275_FIXUP_SONY_DISABLE_AAMIX] = { |
6795 | .type = HDA_FIXUP_FUNC, | |
6796 | .v.func = alc_fixup_disable_aamix, | |
6797 | .chained = true, | |
6798 | .chain_id = ALC269_FIXUP_SONY_VAIO | |
6799 | }, | |
1d045db9 | 6800 | [ALC271_FIXUP_DMIC] = { |
1727a771 | 6801 | .type = HDA_FIXUP_FUNC, |
1d045db9 | 6802 | .v.func = alc271_fixup_dmic, |
f1d4e28b | 6803 | }, |
017f2a10 | 6804 | [ALC269_FIXUP_PCM_44K] = { |
1727a771 | 6805 | .type = HDA_FIXUP_FUNC, |
017f2a10 | 6806 | .v.func = alc269_fixup_pcm_44k, |
012e7eb1 DH |
6807 | .chained = true, |
6808 | .chain_id = ALC269_FIXUP_QUANTA_MUTE | |
017f2a10 | 6809 | }, |
adabb3ec | 6810 | [ALC269_FIXUP_STEREO_DMIC] = { |
1727a771 | 6811 | .type = HDA_FIXUP_FUNC, |
adabb3ec TI |
6812 | .v.func = alc269_fixup_stereo_dmic, |
6813 | }, | |
7c478f03 DH |
6814 | [ALC269_FIXUP_HEADSET_MIC] = { |
6815 | .type = HDA_FIXUP_FUNC, | |
6816 | .v.func = alc269_fixup_headset_mic, | |
6817 | }, | |
24519911 | 6818 | [ALC269_FIXUP_QUANTA_MUTE] = { |
1727a771 | 6819 | .type = HDA_FIXUP_FUNC, |
24519911 TI |
6820 | .v.func = alc269_fixup_quanta_mute, |
6821 | }, | |
6822 | [ALC269_FIXUP_LIFEBOOK] = { | |
1727a771 TI |
6823 | .type = HDA_FIXUP_PINS, |
6824 | .v.pins = (const struct hda_pintbl[]) { | |
24519911 TI |
6825 | { 0x1a, 0x2101103f }, /* dock line-out */ |
6826 | { 0x1b, 0x23a11040 }, /* dock mic-in */ | |
6827 | { } | |
6828 | }, | |
6829 | .chained = true, | |
6830 | .chain_id = ALC269_FIXUP_QUANTA_MUTE | |
6831 | }, | |
2041d564 DH |
6832 | [ALC269_FIXUP_LIFEBOOK_EXTMIC] = { |
6833 | .type = HDA_FIXUP_PINS, | |
6834 | .v.pins = (const struct hda_pintbl[]) { | |
6835 | { 0x19, 0x01a1903c }, /* headset mic, with jack detect */ | |
6836 | { } | |
6837 | }, | |
6838 | }, | |
cc7016ab TI |
6839 | [ALC269_FIXUP_LIFEBOOK_HP_PIN] = { |
6840 | .type = HDA_FIXUP_PINS, | |
6841 | .v.pins = (const struct hda_pintbl[]) { | |
6842 | { 0x21, 0x0221102f }, /* HP out */ | |
6843 | { } | |
6844 | }, | |
6845 | }, | |
4df3fd17 TI |
6846 | [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = { |
6847 | .type = HDA_FIXUP_FUNC, | |
6848 | .v.func = alc269_fixup_pincfg_no_hp_to_lineout, | |
6849 | }, | |
fdcc968a JMG |
6850 | [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = { |
6851 | .type = HDA_FIXUP_FUNC, | |
6852 | .v.func = alc269_fixup_pincfg_U7x7_headset_mic, | |
6853 | }, | |
a4297b5d | 6854 | [ALC269_FIXUP_AMIC] = { |
1727a771 TI |
6855 | .type = HDA_FIXUP_PINS, |
6856 | .v.pins = (const struct hda_pintbl[]) { | |
a4297b5d TI |
6857 | { 0x14, 0x99130110 }, /* speaker */ |
6858 | { 0x15, 0x0121401f }, /* HP out */ | |
6859 | { 0x18, 0x01a19c20 }, /* mic */ | |
6860 | { 0x19, 0x99a3092f }, /* int-mic */ | |
6861 | { } | |
6862 | }, | |
6863 | }, | |
6864 | [ALC269_FIXUP_DMIC] = { | |
1727a771 TI |
6865 | .type = HDA_FIXUP_PINS, |
6866 | .v.pins = (const struct hda_pintbl[]) { | |
a4297b5d TI |
6867 | { 0x12, 0x99a3092f }, /* int-mic */ |
6868 | { 0x14, 0x99130110 }, /* speaker */ | |
6869 | { 0x15, 0x0121401f }, /* HP out */ | |
6870 | { 0x18, 0x01a19c20 }, /* mic */ | |
6871 | { } | |
6872 | }, | |
6873 | }, | |
6874 | [ALC269VB_FIXUP_AMIC] = { | |
1727a771 TI |
6875 | .type = HDA_FIXUP_PINS, |
6876 | .v.pins = (const struct hda_pintbl[]) { | |
a4297b5d TI |
6877 | { 0x14, 0x99130110 }, /* speaker */ |
6878 | { 0x18, 0x01a19c20 }, /* mic */ | |
6879 | { 0x19, 0x99a3092f }, /* int-mic */ | |
6880 | { 0x21, 0x0121401f }, /* HP out */ | |
6881 | { } | |
6882 | }, | |
6883 | }, | |
2267ea97 | 6884 | [ALC269VB_FIXUP_DMIC] = { |
1727a771 TI |
6885 | .type = HDA_FIXUP_PINS, |
6886 | .v.pins = (const struct hda_pintbl[]) { | |
a4297b5d TI |
6887 | { 0x12, 0x99a3092f }, /* int-mic */ |
6888 | { 0x14, 0x99130110 }, /* speaker */ | |
6889 | { 0x18, 0x01a19c20 }, /* mic */ | |
6890 | { 0x21, 0x0121401f }, /* HP out */ | |
6891 | { } | |
6892 | }, | |
6893 | }, | |
08fb0d0e | 6894 | [ALC269_FIXUP_HP_MUTE_LED] = { |
1727a771 | 6895 | .type = HDA_FIXUP_FUNC, |
08fb0d0e | 6896 | .v.func = alc269_fixup_hp_mute_led, |
6d3cd5d4 | 6897 | }, |
d06ac143 DH |
6898 | [ALC269_FIXUP_HP_MUTE_LED_MIC1] = { |
6899 | .type = HDA_FIXUP_FUNC, | |
6900 | .v.func = alc269_fixup_hp_mute_led_mic1, | |
6901 | }, | |
08fb0d0e | 6902 | [ALC269_FIXUP_HP_MUTE_LED_MIC2] = { |
1727a771 | 6903 | .type = HDA_FIXUP_FUNC, |
08fb0d0e | 6904 | .v.func = alc269_fixup_hp_mute_led_mic2, |
420b0feb | 6905 | }, |
7f783bd5 TB |
6906 | [ALC269_FIXUP_HP_MUTE_LED_MIC3] = { |
6907 | .type = HDA_FIXUP_FUNC, | |
6908 | .v.func = alc269_fixup_hp_mute_led_mic3, | |
e8ed64b0 GKK |
6909 | .chained = true, |
6910 | .chain_id = ALC295_FIXUP_HP_AUTO_MUTE | |
7f783bd5 | 6911 | }, |
9f5c6faf TI |
6912 | [ALC269_FIXUP_HP_GPIO_LED] = { |
6913 | .type = HDA_FIXUP_FUNC, | |
6914 | .v.func = alc269_fixup_hp_gpio_led, | |
6915 | }, | |
9c5dc3bf KY |
6916 | [ALC269_FIXUP_HP_GPIO_MIC1_LED] = { |
6917 | .type = HDA_FIXUP_FUNC, | |
6918 | .v.func = alc269_fixup_hp_gpio_mic1_led, | |
6919 | }, | |
6920 | [ALC269_FIXUP_HP_LINE1_MIC1_LED] = { | |
6921 | .type = HDA_FIXUP_FUNC, | |
6922 | .v.func = alc269_fixup_hp_line1_mic1_led, | |
6923 | }, | |
693b613d | 6924 | [ALC269_FIXUP_INV_DMIC] = { |
1727a771 | 6925 | .type = HDA_FIXUP_FUNC, |
9d36a7dc | 6926 | .v.func = alc_fixup_inv_dmic, |
693b613d | 6927 | }, |
9b745ab8 TI |
6928 | [ALC269_FIXUP_NO_SHUTUP] = { |
6929 | .type = HDA_FIXUP_FUNC, | |
6930 | .v.func = alc_fixup_no_shutup, | |
6931 | }, | |
108cc108 | 6932 | [ALC269_FIXUP_LENOVO_DOCK] = { |
1727a771 TI |
6933 | .type = HDA_FIXUP_PINS, |
6934 | .v.pins = (const struct hda_pintbl[]) { | |
108cc108 DH |
6935 | { 0x19, 0x23a11040 }, /* dock mic */ |
6936 | { 0x1b, 0x2121103f }, /* dock headphone */ | |
6937 | { } | |
6938 | }, | |
6939 | .chained = true, | |
6940 | .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT | |
6941 | }, | |
b590b38c TI |
6942 | [ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST] = { |
6943 | .type = HDA_FIXUP_FUNC, | |
6944 | .v.func = alc269_fixup_limit_int_mic_boost, | |
6945 | .chained = true, | |
6946 | .chain_id = ALC269_FIXUP_LENOVO_DOCK, | |
6947 | }, | |
108cc108 | 6948 | [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = { |
1727a771 | 6949 | .type = HDA_FIXUP_FUNC, |
108cc108 | 6950 | .v.func = alc269_fixup_pincfg_no_hp_to_lineout, |
52129000 DH |
6951 | .chained = true, |
6952 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI, | |
108cc108 | 6953 | }, |
73bdd597 DH |
6954 | [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = { |
6955 | .type = HDA_FIXUP_PINS, | |
6956 | .v.pins = (const struct hda_pintbl[]) { | |
6957 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
6958 | { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
6959 | { } | |
6960 | }, | |
6961 | .chained = true, | |
6962 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
6963 | }, | |
6964 | [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = { | |
6965 | .type = HDA_FIXUP_PINS, | |
6966 | .v.pins = (const struct hda_pintbl[]) { | |
6967 | { 0x16, 0x21014020 }, /* dock line out */ | |
6968 | { 0x19, 0x21a19030 }, /* dock mic */ | |
6969 | { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
6970 | { } | |
6971 | }, | |
6972 | .chained = true, | |
6973 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
6974 | }, | |
338cae56 DH |
6975 | [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = { |
6976 | .type = HDA_FIXUP_PINS, | |
6977 | .v.pins = (const struct hda_pintbl[]) { | |
6978 | { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
6979 | { } | |
6980 | }, | |
6981 | .chained = true, | |
6982 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
6983 | }, | |
fcc6c877 KY |
6984 | [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = { |
6985 | .type = HDA_FIXUP_PINS, | |
6986 | .v.pins = (const struct hda_pintbl[]) { | |
6987 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
6988 | { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
6989 | { } | |
6990 | }, | |
6991 | .chained = true, | |
6992 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
6993 | }, | |
73bdd597 DH |
6994 | [ALC269_FIXUP_HEADSET_MODE] = { |
6995 | .type = HDA_FIXUP_FUNC, | |
6996 | .v.func = alc_fixup_headset_mode, | |
6676f308 | 6997 | .chained = true, |
b3802783 | 6998 | .chain_id = ALC255_FIXUP_MIC_MUTE_LED |
73bdd597 DH |
6999 | }, |
7000 | [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = { | |
7001 | .type = HDA_FIXUP_FUNC, | |
7002 | .v.func = alc_fixup_headset_mode_no_hp_mic, | |
7003 | }, | |
7819717b TI |
7004 | [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = { |
7005 | .type = HDA_FIXUP_PINS, | |
7006 | .v.pins = (const struct hda_pintbl[]) { | |
7007 | { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */ | |
7008 | { } | |
7009 | }, | |
7010 | .chained = true, | |
7011 | .chain_id = ALC269_FIXUP_HEADSET_MODE, | |
7012 | }, | |
88cfcf86 DH |
7013 | [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = { |
7014 | .type = HDA_FIXUP_PINS, | |
7015 | .v.pins = (const struct hda_pintbl[]) { | |
7016 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7017 | { } | |
7018 | }, | |
fbc78ad6 DH |
7019 | .chained = true, |
7020 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
88cfcf86 | 7021 | }, |
0fbf21c3 | 7022 | [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = { |
8ac51bbc AB |
7023 | .type = HDA_FIXUP_PINS, |
7024 | .v.pins = (const struct hda_pintbl[]) { | |
7025 | {0x12, 0x90a60130}, | |
7026 | {0x13, 0x40000000}, | |
7027 | {0x14, 0x90170110}, | |
7028 | {0x18, 0x411111f0}, | |
7029 | {0x19, 0x04a11040}, | |
7030 | {0x1a, 0x411111f0}, | |
7031 | {0x1b, 0x90170112}, | |
7032 | {0x1d, 0x40759a05}, | |
7033 | {0x1e, 0x411111f0}, | |
7034 | {0x21, 0x04211020}, | |
7035 | { } | |
7036 | }, | |
e2744fd7 AB |
7037 | .chained = true, |
7038 | .chain_id = ALC255_FIXUP_MIC_MUTE_LED | |
8ac51bbc | 7039 | }, |
a2ef03fe TE |
7040 | [ALC298_FIXUP_HUAWEI_MBX_STEREO] = { |
7041 | .type = HDA_FIXUP_FUNC, | |
7042 | .v.func = alc298_fixup_huawei_mbx_stereo, | |
7043 | .chained = true, | |
7044 | .chain_id = ALC255_FIXUP_MIC_MUTE_LED | |
7045 | }, | |
d240d1dc DH |
7046 | [ALC269_FIXUP_ASUS_X101_FUNC] = { |
7047 | .type = HDA_FIXUP_FUNC, | |
7048 | .v.func = alc269_fixup_x101_headset_mic, | |
7049 | }, | |
7050 | [ALC269_FIXUP_ASUS_X101_VERB] = { | |
7051 | .type = HDA_FIXUP_VERBS, | |
7052 | .v.verbs = (const struct hda_verb[]) { | |
7053 | {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | |
7054 | {0x20, AC_VERB_SET_COEF_INDEX, 0x08}, | |
7055 | {0x20, AC_VERB_SET_PROC_COEF, 0x0310}, | |
7056 | { } | |
7057 | }, | |
7058 | .chained = true, | |
7059 | .chain_id = ALC269_FIXUP_ASUS_X101_FUNC | |
7060 | }, | |
7061 | [ALC269_FIXUP_ASUS_X101] = { | |
7062 | .type = HDA_FIXUP_PINS, | |
7063 | .v.pins = (const struct hda_pintbl[]) { | |
7064 | { 0x18, 0x04a1182c }, /* Headset mic */ | |
7065 | { } | |
7066 | }, | |
7067 | .chained = true, | |
7068 | .chain_id = ALC269_FIXUP_ASUS_X101_VERB | |
7069 | }, | |
08a978db | 7070 | [ALC271_FIXUP_AMIC_MIC2] = { |
1727a771 TI |
7071 | .type = HDA_FIXUP_PINS, |
7072 | .v.pins = (const struct hda_pintbl[]) { | |
08a978db DR |
7073 | { 0x14, 0x99130110 }, /* speaker */ |
7074 | { 0x19, 0x01a19c20 }, /* mic */ | |
7075 | { 0x1b, 0x99a7012f }, /* int-mic */ | |
7076 | { 0x21, 0x0121401f }, /* HP out */ | |
7077 | { } | |
7078 | }, | |
7079 | }, | |
7080 | [ALC271_FIXUP_HP_GATE_MIC_JACK] = { | |
1727a771 | 7081 | .type = HDA_FIXUP_FUNC, |
08a978db DR |
7082 | .v.func = alc271_hp_gate_mic_jack, |
7083 | .chained = true, | |
7084 | .chain_id = ALC271_FIXUP_AMIC_MIC2, | |
7085 | }, | |
b1e8972e OR |
7086 | [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = { |
7087 | .type = HDA_FIXUP_FUNC, | |
7088 | .v.func = alc269_fixup_limit_int_mic_boost, | |
7089 | .chained = true, | |
7090 | .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK, | |
7091 | }, | |
42397004 DR |
7092 | [ALC269_FIXUP_ACER_AC700] = { |
7093 | .type = HDA_FIXUP_PINS, | |
7094 | .v.pins = (const struct hda_pintbl[]) { | |
7095 | { 0x12, 0x99a3092f }, /* int-mic */ | |
7096 | { 0x14, 0x99130110 }, /* speaker */ | |
7097 | { 0x18, 0x03a11c20 }, /* mic */ | |
7098 | { 0x1e, 0x0346101e }, /* SPDIF1 */ | |
7099 | { 0x21, 0x0321101f }, /* HP out */ | |
7100 | { } | |
7101 | }, | |
7102 | .chained = true, | |
7103 | .chain_id = ALC271_FIXUP_DMIC, | |
7104 | }, | |
3e0d611b DH |
7105 | [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = { |
7106 | .type = HDA_FIXUP_FUNC, | |
7107 | .v.func = alc269_fixup_limit_int_mic_boost, | |
2793769f DH |
7108 | .chained = true, |
7109 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI, | |
3e0d611b | 7110 | }, |
2cede303 OR |
7111 | [ALC269VB_FIXUP_ASUS_ZENBOOK] = { |
7112 | .type = HDA_FIXUP_FUNC, | |
7113 | .v.func = alc269_fixup_limit_int_mic_boost, | |
7114 | .chained = true, | |
7115 | .chain_id = ALC269VB_FIXUP_DMIC, | |
7116 | }, | |
23870831 TI |
7117 | [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = { |
7118 | .type = HDA_FIXUP_VERBS, | |
7119 | .v.verbs = (const struct hda_verb[]) { | |
7120 | /* class-D output amp +5dB */ | |
7121 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 }, | |
7122 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 }, | |
7123 | {} | |
7124 | }, | |
7125 | .chained = true, | |
7126 | .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK, | |
7127 | }, | |
8e35cd4a DH |
7128 | [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = { |
7129 | .type = HDA_FIXUP_FUNC, | |
7130 | .v.func = alc269_fixup_limit_int_mic_boost, | |
7131 | .chained = true, | |
7132 | .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1, | |
7133 | }, | |
02b504d9 AA |
7134 | [ALC269VB_FIXUP_ORDISSIMO_EVE2] = { |
7135 | .type = HDA_FIXUP_PINS, | |
7136 | .v.pins = (const struct hda_pintbl[]) { | |
7137 | { 0x12, 0x99a3092f }, /* int-mic */ | |
7138 | { 0x18, 0x03a11d20 }, /* mic */ | |
7139 | { 0x19, 0x411111f0 }, /* Unused bogus pin */ | |
7140 | { } | |
7141 | }, | |
7142 | }, | |
cd217a63 KY |
7143 | [ALC283_FIXUP_CHROME_BOOK] = { |
7144 | .type = HDA_FIXUP_FUNC, | |
7145 | .v.func = alc283_fixup_chromebook, | |
7146 | }, | |
0202e99c KY |
7147 | [ALC283_FIXUP_SENSE_COMBO_JACK] = { |
7148 | .type = HDA_FIXUP_FUNC, | |
7149 | .v.func = alc283_fixup_sense_combo_jack, | |
7150 | .chained = true, | |
7151 | .chain_id = ALC283_FIXUP_CHROME_BOOK, | |
7152 | }, | |
7bba2157 TI |
7153 | [ALC282_FIXUP_ASUS_TX300] = { |
7154 | .type = HDA_FIXUP_FUNC, | |
7155 | .v.func = alc282_fixup_asus_tx300, | |
7156 | }, | |
1bb3e062 KY |
7157 | [ALC283_FIXUP_INT_MIC] = { |
7158 | .type = HDA_FIXUP_VERBS, | |
7159 | .v.verbs = (const struct hda_verb[]) { | |
7160 | {0x20, AC_VERB_SET_COEF_INDEX, 0x1a}, | |
7161 | {0x20, AC_VERB_SET_PROC_COEF, 0x0011}, | |
7162 | { } | |
7163 | }, | |
7164 | .chained = true, | |
7165 | .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST | |
7166 | }, | |
0f4881dc DH |
7167 | [ALC290_FIXUP_SUBWOOFER_HSJACK] = { |
7168 | .type = HDA_FIXUP_PINS, | |
7169 | .v.pins = (const struct hda_pintbl[]) { | |
7170 | { 0x17, 0x90170112 }, /* subwoofer */ | |
7171 | { } | |
7172 | }, | |
7173 | .chained = true, | |
7174 | .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, | |
7175 | }, | |
7176 | [ALC290_FIXUP_SUBWOOFER] = { | |
7177 | .type = HDA_FIXUP_PINS, | |
7178 | .v.pins = (const struct hda_pintbl[]) { | |
7179 | { 0x17, 0x90170112 }, /* subwoofer */ | |
7180 | { } | |
7181 | }, | |
7182 | .chained = true, | |
7183 | .chain_id = ALC290_FIXUP_MONO_SPEAKERS, | |
7184 | }, | |
338cae56 DH |
7185 | [ALC290_FIXUP_MONO_SPEAKERS] = { |
7186 | .type = HDA_FIXUP_FUNC, | |
7187 | .v.func = alc290_fixup_mono_speakers, | |
0f4881dc DH |
7188 | }, |
7189 | [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = { | |
7190 | .type = HDA_FIXUP_FUNC, | |
7191 | .v.func = alc290_fixup_mono_speakers, | |
338cae56 DH |
7192 | .chained = true, |
7193 | .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, | |
7194 | }, | |
b67ae3f1 DH |
7195 | [ALC269_FIXUP_THINKPAD_ACPI] = { |
7196 | .type = HDA_FIXUP_FUNC, | |
d5a6cabf | 7197 | .v.func = alc_fixup_thinkpad_acpi, |
09da111a TI |
7198 | .chained = true, |
7199 | .chain_id = ALC269_FIXUP_SKU_IGNORE, | |
b67ae3f1 | 7200 | }, |
56f27013 DH |
7201 | [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = { |
7202 | .type = HDA_FIXUP_FUNC, | |
7203 | .v.func = alc_fixup_inv_dmic, | |
7204 | .chained = true, | |
7205 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI, | |
7206 | }, | |
5824ce8d | 7207 | [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = { |
17d30460 HW |
7208 | .type = HDA_FIXUP_PINS, |
7209 | .v.pins = (const struct hda_pintbl[]) { | |
7210 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7211 | { } | |
5824ce8d CC |
7212 | }, |
7213 | .chained = true, | |
17d30460 | 7214 | .chain_id = ALC255_FIXUP_HEADSET_MODE |
5824ce8d | 7215 | }, |
615966ad CC |
7216 | [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = { |
7217 | .type = HDA_FIXUP_PINS, | |
7218 | .v.pins = (const struct hda_pintbl[]) { | |
7219 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7220 | { } | |
7221 | }, | |
7222 | .chained = true, | |
7223 | .chain_id = ALC255_FIXUP_HEADSET_MODE | |
7224 | }, | |
9a22a8f5 KY |
7225 | [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = { |
7226 | .type = HDA_FIXUP_PINS, | |
7227 | .v.pins = (const struct hda_pintbl[]) { | |
7228 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7229 | { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7230 | { } | |
7231 | }, | |
7232 | .chained = true, | |
7233 | .chain_id = ALC255_FIXUP_HEADSET_MODE | |
7234 | }, | |
31278997 KY |
7235 | [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = { |
7236 | .type = HDA_FIXUP_PINS, | |
7237 | .v.pins = (const struct hda_pintbl[]) { | |
7238 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7239 | { } | |
7240 | }, | |
7241 | .chained = true, | |
7242 | .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC | |
7243 | }, | |
9a22a8f5 KY |
7244 | [ALC255_FIXUP_HEADSET_MODE] = { |
7245 | .type = HDA_FIXUP_FUNC, | |
7246 | .v.func = alc_fixup_headset_mode_alc255, | |
4a83d42a | 7247 | .chained = true, |
b3802783 | 7248 | .chain_id = ALC255_FIXUP_MIC_MUTE_LED |
9a22a8f5 | 7249 | }, |
31278997 KY |
7250 | [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = { |
7251 | .type = HDA_FIXUP_FUNC, | |
7252 | .v.func = alc_fixup_headset_mode_alc255_no_hp_mic, | |
7253 | }, | |
a22aa26f KY |
7254 | [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = { |
7255 | .type = HDA_FIXUP_PINS, | |
7256 | .v.pins = (const struct hda_pintbl[]) { | |
7257 | { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7258 | { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7259 | { } | |
7260 | }, | |
7261 | .chained = true, | |
7262 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
7263 | }, | |
1c37c223 | 7264 | [ALC292_FIXUP_TPT440_DOCK] = { |
ec56af67 | 7265 | .type = HDA_FIXUP_FUNC, |
7f57d803 | 7266 | .v.func = alc_fixup_tpt440_dock, |
1c37c223 TI |
7267 | .chained = true, |
7268 | .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST | |
7269 | }, | |
9a811230 TI |
7270 | [ALC292_FIXUP_TPT440] = { |
7271 | .type = HDA_FIXUP_FUNC, | |
157f0b7f | 7272 | .v.func = alc_fixup_disable_aamix, |
9a811230 TI |
7273 | .chained = true, |
7274 | .chain_id = ALC292_FIXUP_TPT440_DOCK, | |
7275 | }, | |
abaa2274 | 7276 | [ALC283_FIXUP_HEADSET_MIC] = { |
9dc12862 DD |
7277 | .type = HDA_FIXUP_PINS, |
7278 | .v.pins = (const struct hda_pintbl[]) { | |
7279 | { 0x19, 0x04a110f0 }, | |
7280 | { }, | |
7281 | }, | |
7282 | }, | |
b3802783 | 7283 | [ALC255_FIXUP_MIC_MUTE_LED] = { |
00ef9940 | 7284 | .type = HDA_FIXUP_FUNC, |
8a503555 | 7285 | .v.func = alc_fixup_micmute_led, |
00ef9940 | 7286 | }, |
1a22e775 TI |
7287 | [ALC282_FIXUP_ASPIRE_V5_PINS] = { |
7288 | .type = HDA_FIXUP_PINS, | |
7289 | .v.pins = (const struct hda_pintbl[]) { | |
7290 | { 0x12, 0x90a60130 }, | |
7291 | { 0x14, 0x90170110 }, | |
7292 | { 0x17, 0x40000008 }, | |
7293 | { 0x18, 0x411111f0 }, | |
0420694d | 7294 | { 0x19, 0x01a1913c }, |
1a22e775 TI |
7295 | { 0x1a, 0x411111f0 }, |
7296 | { 0x1b, 0x411111f0 }, | |
7297 | { 0x1d, 0x40f89b2d }, | |
7298 | { 0x1e, 0x411111f0 }, | |
7299 | { 0x21, 0x0321101f }, | |
7300 | { }, | |
7301 | }, | |
7302 | }, | |
c8426b27 TI |
7303 | [ALC269VB_FIXUP_ASPIRE_E1_COEF] = { |
7304 | .type = HDA_FIXUP_FUNC, | |
7305 | .v.func = alc269vb_fixup_aspire_e1_coef, | |
7306 | }, | |
7a5255f1 DH |
7307 | [ALC280_FIXUP_HP_GPIO4] = { |
7308 | .type = HDA_FIXUP_FUNC, | |
7309 | .v.func = alc280_fixup_hp_gpio4, | |
7310 | }, | |
eaa8e5ef KY |
7311 | [ALC286_FIXUP_HP_GPIO_LED] = { |
7312 | .type = HDA_FIXUP_FUNC, | |
7313 | .v.func = alc286_fixup_hp_gpio_led, | |
7314 | }, | |
33f4acd3 DH |
7315 | [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = { |
7316 | .type = HDA_FIXUP_FUNC, | |
7317 | .v.func = alc280_fixup_hp_gpio2_mic_hotkey, | |
7318 | }, | |
b4b33f9d TC |
7319 | [ALC280_FIXUP_HP_DOCK_PINS] = { |
7320 | .type = HDA_FIXUP_PINS, | |
7321 | .v.pins = (const struct hda_pintbl[]) { | |
7322 | { 0x1b, 0x21011020 }, /* line-out */ | |
7323 | { 0x1a, 0x01a1903c }, /* headset mic */ | |
7324 | { 0x18, 0x2181103f }, /* line-in */ | |
7325 | { }, | |
7326 | }, | |
7327 | .chained = true, | |
7328 | .chain_id = ALC280_FIXUP_HP_GPIO4 | |
7329 | }, | |
04d5466a JK |
7330 | [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = { |
7331 | .type = HDA_FIXUP_PINS, | |
7332 | .v.pins = (const struct hda_pintbl[]) { | |
7333 | { 0x1b, 0x21011020 }, /* line-out */ | |
7334 | { 0x18, 0x2181103f }, /* line-in */ | |
7335 | { }, | |
7336 | }, | |
7337 | .chained = true, | |
7338 | .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED | |
7339 | }, | |
98973f2f KP |
7340 | [ALC280_FIXUP_HP_9480M] = { |
7341 | .type = HDA_FIXUP_FUNC, | |
7342 | .v.func = alc280_fixup_hp_9480m, | |
7343 | }, | |
c3bb2b52 TI |
7344 | [ALC245_FIXUP_HP_X360_AMP] = { |
7345 | .type = HDA_FIXUP_FUNC, | |
7346 | .v.func = alc245_fixup_hp_x360_amp, | |
5fc462c3 JC |
7347 | .chained = true, |
7348 | .chain_id = ALC245_FIXUP_HP_GPIO_LED | |
c3bb2b52 | 7349 | }, |
e1e62b98 KY |
7350 | [ALC288_FIXUP_DELL_HEADSET_MODE] = { |
7351 | .type = HDA_FIXUP_FUNC, | |
7352 | .v.func = alc_fixup_headset_mode_dell_alc288, | |
7353 | .chained = true, | |
b3802783 | 7354 | .chain_id = ALC255_FIXUP_MIC_MUTE_LED |
e1e62b98 KY |
7355 | }, |
7356 | [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = { | |
7357 | .type = HDA_FIXUP_PINS, | |
7358 | .v.pins = (const struct hda_pintbl[]) { | |
7359 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7360 | { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7361 | { } | |
7362 | }, | |
7363 | .chained = true, | |
7364 | .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE | |
7365 | }, | |
831bfdf9 HW |
7366 | [ALC288_FIXUP_DISABLE_AAMIX] = { |
7367 | .type = HDA_FIXUP_FUNC, | |
7368 | .v.func = alc_fixup_disable_aamix, | |
7369 | .chained = true, | |
d44a6864 | 7370 | .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE |
831bfdf9 HW |
7371 | }, |
7372 | [ALC288_FIXUP_DELL_XPS_13] = { | |
7373 | .type = HDA_FIXUP_FUNC, | |
7374 | .v.func = alc_fixup_dell_xps13, | |
7375 | .chained = true, | |
7376 | .chain_id = ALC288_FIXUP_DISABLE_AAMIX | |
7377 | }, | |
8b99aba7 TI |
7378 | [ALC292_FIXUP_DISABLE_AAMIX] = { |
7379 | .type = HDA_FIXUP_FUNC, | |
7380 | .v.func = alc_fixup_disable_aamix, | |
831bfdf9 HW |
7381 | .chained = true, |
7382 | .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE | |
8b99aba7 | 7383 | }, |
c04017ea DH |
7384 | [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = { |
7385 | .type = HDA_FIXUP_FUNC, | |
7386 | .v.func = alc_fixup_disable_aamix, | |
7387 | .chained = true, | |
7388 | .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE | |
7389 | }, | |
5fab5829 | 7390 | [ALC292_FIXUP_DELL_E7X_AAMIX] = { |
8b99aba7 TI |
7391 | .type = HDA_FIXUP_FUNC, |
7392 | .v.func = alc_fixup_dell_xps13, | |
7393 | .chained = true, | |
7394 | .chain_id = ALC292_FIXUP_DISABLE_AAMIX | |
7395 | }, | |
5fab5829 TI |
7396 | [ALC292_FIXUP_DELL_E7X] = { |
7397 | .type = HDA_FIXUP_FUNC, | |
8a503555 | 7398 | .v.func = alc_fixup_micmute_led, |
5fab5829 TI |
7399 | /* micmute fixup must be applied at last */ |
7400 | .chained_before = true, | |
7401 | .chain_id = ALC292_FIXUP_DELL_E7X_AAMIX, | |
7402 | }, | |
54324221 JM |
7403 | [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = { |
7404 | .type = HDA_FIXUP_PINS, | |
7405 | .v.pins = (const struct hda_pintbl[]) { | |
7406 | { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */ | |
7407 | { } | |
7408 | }, | |
7409 | .chained_before = true, | |
7410 | .chain_id = ALC269_FIXUP_HEADSET_MODE, | |
7411 | }, | |
977e6276 KY |
7412 | [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = { |
7413 | .type = HDA_FIXUP_PINS, | |
7414 | .v.pins = (const struct hda_pintbl[]) { | |
7415 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7416 | { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7417 | { } | |
7418 | }, | |
7419 | .chained = true, | |
7420 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
7421 | }, | |
2f726aec HW |
7422 | [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = { |
7423 | .type = HDA_FIXUP_PINS, | |
7424 | .v.pins = (const struct hda_pintbl[]) { | |
7425 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7426 | { } | |
7427 | }, | |
7428 | .chained = true, | |
7429 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
7430 | }, | |
6ed1131f KY |
7431 | [ALC275_FIXUP_DELL_XPS] = { |
7432 | .type = HDA_FIXUP_VERBS, | |
7433 | .v.verbs = (const struct hda_verb[]) { | |
7434 | /* Enables internal speaker */ | |
7435 | {0x20, AC_VERB_SET_COEF_INDEX, 0x1f}, | |
7436 | {0x20, AC_VERB_SET_PROC_COEF, 0x00c0}, | |
7437 | {0x20, AC_VERB_SET_COEF_INDEX, 0x30}, | |
7438 | {0x20, AC_VERB_SET_PROC_COEF, 0x00b1}, | |
7439 | {} | |
7440 | } | |
7441 | }, | |
23adc192 HW |
7442 | [ALC293_FIXUP_LENOVO_SPK_NOISE] = { |
7443 | .type = HDA_FIXUP_FUNC, | |
7444 | .v.func = alc_fixup_disable_aamix, | |
7445 | .chained = true, | |
7446 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI | |
7447 | }, | |
3694cb29 K |
7448 | [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = { |
7449 | .type = HDA_FIXUP_FUNC, | |
7450 | .v.func = alc233_fixup_lenovo_line2_mic_hotkey, | |
7451 | }, | |
d1ee66c5 PC |
7452 | [ALC233_FIXUP_INTEL_NUC8_DMIC] = { |
7453 | .type = HDA_FIXUP_FUNC, | |
7454 | .v.func = alc_fixup_inv_dmic, | |
7455 | .chained = true, | |
7456 | .chain_id = ALC233_FIXUP_INTEL_NUC8_BOOST, | |
7457 | }, | |
7458 | [ALC233_FIXUP_INTEL_NUC8_BOOST] = { | |
7459 | .type = HDA_FIXUP_FUNC, | |
7460 | .v.func = alc269_fixup_limit_int_mic_boost | |
7461 | }, | |
3b43b71f KHF |
7462 | [ALC255_FIXUP_DELL_SPK_NOISE] = { |
7463 | .type = HDA_FIXUP_FUNC, | |
7464 | .v.func = alc_fixup_disable_aamix, | |
7465 | .chained = true, | |
7466 | .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE | |
7467 | }, | |
d1dd4211 KY |
7468 | [ALC225_FIXUP_DISABLE_MIC_VREF] = { |
7469 | .type = HDA_FIXUP_FUNC, | |
7470 | .v.func = alc_fixup_disable_mic_vref, | |
7471 | .chained = true, | |
7472 | .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE | |
7473 | }, | |
2ae95577 DH |
7474 | [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = { |
7475 | .type = HDA_FIXUP_VERBS, | |
7476 | .v.verbs = (const struct hda_verb[]) { | |
7477 | /* Disable pass-through path for FRONT 14h */ | |
7478 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 }, | |
7479 | { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 }, | |
7480 | {} | |
7481 | }, | |
7482 | .chained = true, | |
d1dd4211 | 7483 | .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF |
2ae95577 | 7484 | }, |
f883982d TI |
7485 | [ALC280_FIXUP_HP_HEADSET_MIC] = { |
7486 | .type = HDA_FIXUP_FUNC, | |
7487 | .v.func = alc_fixup_disable_aamix, | |
7488 | .chained = true, | |
7489 | .chain_id = ALC269_FIXUP_HEADSET_MIC, | |
7490 | }, | |
e549d190 HW |
7491 | [ALC221_FIXUP_HP_FRONT_MIC] = { |
7492 | .type = HDA_FIXUP_PINS, | |
7493 | .v.pins = (const struct hda_pintbl[]) { | |
7494 | { 0x19, 0x02a19020 }, /* Front Mic */ | |
7495 | { } | |
7496 | }, | |
7497 | }, | |
c636b95e SE |
7498 | [ALC292_FIXUP_TPT460] = { |
7499 | .type = HDA_FIXUP_FUNC, | |
7500 | .v.func = alc_fixup_tpt440_dock, | |
7501 | .chained = true, | |
7502 | .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE, | |
7503 | }, | |
dd9aa335 HW |
7504 | [ALC298_FIXUP_SPK_VOLUME] = { |
7505 | .type = HDA_FIXUP_FUNC, | |
7506 | .v.func = alc298_fixup_speaker_volume, | |
59ec4b57 | 7507 | .chained = true, |
2f726aec | 7508 | .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, |
dd9aa335 | 7509 | }, |
f86de9b1 KY |
7510 | [ALC298_FIXUP_LENOVO_SPK_VOLUME] = { |
7511 | .type = HDA_FIXUP_FUNC, | |
7512 | .v.func = alc298_fixup_speaker_volume, | |
7513 | }, | |
e312a869 TI |
7514 | [ALC295_FIXUP_DISABLE_DAC3] = { |
7515 | .type = HDA_FIXUP_FUNC, | |
7516 | .v.func = alc295_fixup_disable_dac3, | |
7517 | }, | |
d2cd795c JK |
7518 | [ALC285_FIXUP_SPEAKER2_TO_DAC1] = { |
7519 | .type = HDA_FIXUP_FUNC, | |
7520 | .v.func = alc285_fixup_speaker2_to_dac1, | |
c37c0ab0 HW |
7521 | .chained = true, |
7522 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI | |
d2cd795c | 7523 | }, |
fd06c77e KHF |
7524 | [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = { |
7525 | .type = HDA_FIXUP_PINS, | |
7526 | .v.pins = (const struct hda_pintbl[]) { | |
7527 | { 0x1b, 0x90170151 }, | |
7528 | { } | |
7529 | }, | |
7530 | .chained = true, | |
7531 | .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE | |
7532 | }, | |
823ff161 GM |
7533 | [ALC269_FIXUP_ATIV_BOOK_8] = { |
7534 | .type = HDA_FIXUP_FUNC, | |
7535 | .v.func = alc_fixup_auto_mute_via_amp, | |
7536 | .chained = true, | |
7537 | .chain_id = ALC269_FIXUP_NO_SHUTUP | |
7538 | }, | |
9eb5d0e6 KY |
7539 | [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = { |
7540 | .type = HDA_FIXUP_PINS, | |
7541 | .v.pins = (const struct hda_pintbl[]) { | |
7542 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7543 | { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7544 | { } | |
7545 | }, | |
7546 | .chained = true, | |
7547 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
7548 | }, | |
c1732ede CC |
7549 | [ALC256_FIXUP_ASUS_HEADSET_MODE] = { |
7550 | .type = HDA_FIXUP_FUNC, | |
7551 | .v.func = alc_fixup_headset_mode, | |
7552 | }, | |
7553 | [ALC256_FIXUP_ASUS_MIC] = { | |
7554 | .type = HDA_FIXUP_PINS, | |
7555 | .v.pins = (const struct hda_pintbl[]) { | |
7556 | { 0x13, 0x90a60160 }, /* use as internal mic */ | |
7557 | { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */ | |
7558 | { } | |
7559 | }, | |
7560 | .chained = true, | |
7561 | .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE | |
7562 | }, | |
eeed4cd1 | 7563 | [ALC256_FIXUP_ASUS_AIO_GPIO2] = { |
ae065f1c TI |
7564 | .type = HDA_FIXUP_FUNC, |
7565 | /* Set up GPIO2 for the speaker amp */ | |
7566 | .v.func = alc_fixup_gpio4, | |
eeed4cd1 | 7567 | }, |
216d7aeb CC |
7568 | [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = { |
7569 | .type = HDA_FIXUP_PINS, | |
7570 | .v.pins = (const struct hda_pintbl[]) { | |
7571 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7572 | { } | |
7573 | }, | |
7574 | .chained = true, | |
7575 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
7576 | }, | |
7577 | [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = { | |
7578 | .type = HDA_FIXUP_VERBS, | |
7579 | .v.verbs = (const struct hda_verb[]) { | |
7580 | /* Enables internal speaker */ | |
7581 | {0x20, AC_VERB_SET_COEF_INDEX, 0x40}, | |
7582 | {0x20, AC_VERB_SET_PROC_COEF, 0x8800}, | |
7583 | {} | |
7584 | }, | |
7585 | .chained = true, | |
7586 | .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE | |
7587 | }, | |
ca169cc2 KY |
7588 | [ALC233_FIXUP_LENOVO_MULTI_CODECS] = { |
7589 | .type = HDA_FIXUP_FUNC, | |
7590 | .v.func = alc233_alc662_fixup_lenovo_dual_codecs, | |
f73bbf63 KHF |
7591 | .chained = true, |
7592 | .chain_id = ALC269_FIXUP_GPIO2 | |
ca169cc2 | 7593 | }, |
ea5c7eba JHP |
7594 | [ALC233_FIXUP_ACER_HEADSET_MIC] = { |
7595 | .type = HDA_FIXUP_VERBS, | |
7596 | .v.verbs = (const struct hda_verb[]) { | |
7597 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 }, | |
7598 | { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 }, | |
7599 | { } | |
7600 | }, | |
7601 | .chained = true, | |
7602 | .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE | |
7603 | }, | |
f33f79f3 HW |
7604 | [ALC294_FIXUP_LENOVO_MIC_LOCATION] = { |
7605 | .type = HDA_FIXUP_PINS, | |
7606 | .v.pins = (const struct hda_pintbl[]) { | |
7607 | /* Change the mic location from front to right, otherwise there are | |
7608 | two front mics with the same name, pulseaudio can't handle them. | |
7609 | This is just a temporary workaround, after applying this fixup, | |
7610 | there will be one "Front Mic" and one "Mic" in this machine. | |
7611 | */ | |
7612 | { 0x1a, 0x04a19040 }, | |
7613 | { } | |
7614 | }, | |
7615 | }, | |
5f364135 KY |
7616 | [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = { |
7617 | .type = HDA_FIXUP_PINS, | |
7618 | .v.pins = (const struct hda_pintbl[]) { | |
7619 | { 0x16, 0x0101102f }, /* Rear Headset HP */ | |
7620 | { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */ | |
7621 | { 0x1a, 0x01a19030 }, /* Rear Headset MIC */ | |
7622 | { 0x1b, 0x02011020 }, | |
7623 | { } | |
7624 | }, | |
7625 | .chained = true, | |
52e4e368 KHF |
7626 | .chain_id = ALC225_FIXUP_S3_POP_NOISE |
7627 | }, | |
7628 | [ALC225_FIXUP_S3_POP_NOISE] = { | |
7629 | .type = HDA_FIXUP_FUNC, | |
7630 | .v.func = alc225_fixup_s3_pop_noise, | |
7631 | .chained = true, | |
5f364135 KY |
7632 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC |
7633 | }, | |
b84e8436 PH |
7634 | [ALC700_FIXUP_INTEL_REFERENCE] = { |
7635 | .type = HDA_FIXUP_VERBS, | |
7636 | .v.verbs = (const struct hda_verb[]) { | |
7637 | /* Enables internal speaker */ | |
7638 | {0x20, AC_VERB_SET_COEF_INDEX, 0x45}, | |
7639 | {0x20, AC_VERB_SET_PROC_COEF, 0x5289}, | |
7640 | {0x20, AC_VERB_SET_COEF_INDEX, 0x4A}, | |
7641 | {0x20, AC_VERB_SET_PROC_COEF, 0x001b}, | |
7642 | {0x58, AC_VERB_SET_COEF_INDEX, 0x00}, | |
7643 | {0x58, AC_VERB_SET_PROC_COEF, 0x3888}, | |
7644 | {0x20, AC_VERB_SET_COEF_INDEX, 0x6f}, | |
7645 | {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b}, | |
7646 | {} | |
7647 | } | |
7648 | }, | |
92266651 KY |
7649 | [ALC274_FIXUP_DELL_BIND_DACS] = { |
7650 | .type = HDA_FIXUP_FUNC, | |
7651 | .v.func = alc274_fixup_bind_dacs, | |
7652 | .chained = true, | |
7653 | .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE | |
7654 | }, | |
7655 | [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = { | |
7656 | .type = HDA_FIXUP_PINS, | |
7657 | .v.pins = (const struct hda_pintbl[]) { | |
7658 | { 0x1b, 0x0401102f }, | |
7659 | { } | |
7660 | }, | |
7661 | .chained = true, | |
7662 | .chain_id = ALC274_FIXUP_DELL_BIND_DACS | |
7663 | }, | |
399c01aa | 7664 | [ALC298_FIXUP_TPT470_DOCK_FIX] = { |
61fcf8ec KY |
7665 | .type = HDA_FIXUP_FUNC, |
7666 | .v.func = alc_fixup_tpt470_dock, | |
7667 | .chained = true, | |
7668 | .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE | |
7669 | }, | |
399c01aa TI |
7670 | [ALC298_FIXUP_TPT470_DOCK] = { |
7671 | .type = HDA_FIXUP_FUNC, | |
7672 | .v.func = alc_fixup_tpt470_dacs, | |
7673 | .chained = true, | |
7674 | .chain_id = ALC298_FIXUP_TPT470_DOCK_FIX | |
7675 | }, | |
ae104a21 KY |
7676 | [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = { |
7677 | .type = HDA_FIXUP_PINS, | |
7678 | .v.pins = (const struct hda_pintbl[]) { | |
7679 | { 0x14, 0x0201101f }, | |
7680 | { } | |
7681 | }, | |
7682 | .chained = true, | |
7683 | .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE | |
7684 | }, | |
f0ba9d69 KY |
7685 | [ALC255_FIXUP_DELL_HEADSET_MIC] = { |
7686 | .type = HDA_FIXUP_PINS, | |
7687 | .v.pins = (const struct hda_pintbl[]) { | |
7688 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7689 | { } | |
7690 | }, | |
3ce0d5aa HW |
7691 | .chained = true, |
7692 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
f0ba9d69 | 7693 | }, |
bbf8ff6b TB |
7694 | [ALC295_FIXUP_HP_X360] = { |
7695 | .type = HDA_FIXUP_FUNC, | |
7696 | .v.func = alc295_fixup_hp_top_speakers, | |
7697 | .chained = true, | |
7698 | .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3 | |
8a328ac1 KY |
7699 | }, |
7700 | [ALC221_FIXUP_HP_HEADSET_MIC] = { | |
7701 | .type = HDA_FIXUP_PINS, | |
7702 | .v.pins = (const struct hda_pintbl[]) { | |
7703 | { 0x19, 0x0181313f}, | |
7704 | { } | |
7705 | }, | |
7706 | .chained = true, | |
7707 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
7708 | }, | |
c4cfcf6f HW |
7709 | [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = { |
7710 | .type = HDA_FIXUP_FUNC, | |
7711 | .v.func = alc285_fixup_invalidate_dacs, | |
6ba189c5 HW |
7712 | .chained = true, |
7713 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI | |
c4cfcf6f | 7714 | }, |
e8ed64b0 GKK |
7715 | [ALC295_FIXUP_HP_AUTO_MUTE] = { |
7716 | .type = HDA_FIXUP_FUNC, | |
7717 | .v.func = alc_fixup_auto_mute_via_amp, | |
7718 | }, | |
33aaebd4 CC |
7719 | [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = { |
7720 | .type = HDA_FIXUP_PINS, | |
7721 | .v.pins = (const struct hda_pintbl[]) { | |
7722 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7723 | { } | |
7724 | }, | |
7725 | .chained = true, | |
7726 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
7727 | }, | |
d8ae458e CC |
7728 | [ALC294_FIXUP_ASUS_MIC] = { |
7729 | .type = HDA_FIXUP_PINS, | |
7730 | .v.pins = (const struct hda_pintbl[]) { | |
7731 | { 0x13, 0x90a60160 }, /* use as internal mic */ | |
7732 | { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */ | |
7733 | { } | |
7734 | }, | |
7735 | .chained = true, | |
ef9ddb9d | 7736 | .chain_id = ALC269_FIXUP_HEADSET_MIC |
d8ae458e | 7737 | }, |
4e051106 JHP |
7738 | [ALC294_FIXUP_ASUS_HEADSET_MIC] = { |
7739 | .type = HDA_FIXUP_PINS, | |
7740 | .v.pins = (const struct hda_pintbl[]) { | |
82b01149 | 7741 | { 0x19, 0x01a1103c }, /* use as headset mic */ |
4e051106 JHP |
7742 | { } |
7743 | }, | |
7744 | .chained = true, | |
ef9ddb9d | 7745 | .chain_id = ALC269_FIXUP_HEADSET_MIC |
4e051106 JHP |
7746 | }, |
7747 | [ALC294_FIXUP_ASUS_SPK] = { | |
7748 | .type = HDA_FIXUP_VERBS, | |
7749 | .v.verbs = (const struct hda_verb[]) { | |
7750 | /* Set EAPD high */ | |
7751 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 }, | |
7752 | { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 }, | |
473fbe13 KY |
7753 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f }, |
7754 | { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 }, | |
4e051106 JHP |
7755 | { } |
7756 | }, | |
7757 | .chained = true, | |
7758 | .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC | |
7759 | }, | |
c8a9afa6 | 7760 | [ALC295_FIXUP_CHROME_BOOK] = { |
e854747d | 7761 | .type = HDA_FIXUP_FUNC, |
c8a9afa6 | 7762 | .v.func = alc295_fixup_chromebook, |
8983eb60 KY |
7763 | .chained = true, |
7764 | .chain_id = ALC225_FIXUP_HEADSET_JACK | |
7765 | }, | |
7766 | [ALC225_FIXUP_HEADSET_JACK] = { | |
7767 | .type = HDA_FIXUP_FUNC, | |
7768 | .v.func = alc_fixup_headset_jack, | |
e854747d | 7769 | }, |
89e3a568 JS |
7770 | [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = { |
7771 | .type = HDA_FIXUP_PINS, | |
7772 | .v.pins = (const struct hda_pintbl[]) { | |
7773 | { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7774 | { } | |
7775 | }, | |
7776 | .chained = true, | |
7777 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
7778 | }, | |
c8c6ee61 HW |
7779 | [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = { |
7780 | .type = HDA_FIXUP_VERBS, | |
7781 | .v.verbs = (const struct hda_verb[]) { | |
7782 | /* Disable PCBEEP-IN passthrough */ | |
7783 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 }, | |
7784 | { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 }, | |
7785 | { } | |
7786 | }, | |
7787 | .chained = true, | |
7788 | .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE | |
7789 | }, | |
cbc05fd6 JHP |
7790 | [ALC255_FIXUP_ACER_HEADSET_MIC] = { |
7791 | .type = HDA_FIXUP_PINS, | |
7792 | .v.pins = (const struct hda_pintbl[]) { | |
7793 | { 0x19, 0x03a11130 }, | |
7794 | { 0x1a, 0x90a60140 }, /* use as internal mic */ | |
7795 | { } | |
7796 | }, | |
7797 | .chained = true, | |
7798 | .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC | |
7799 | }, | |
136824ef KY |
7800 | [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = { |
7801 | .type = HDA_FIXUP_PINS, | |
7802 | .v.pins = (const struct hda_pintbl[]) { | |
7803 | { 0x16, 0x01011020 }, /* Rear Line out */ | |
7804 | { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */ | |
7805 | { } | |
7806 | }, | |
7807 | .chained = true, | |
7808 | .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE | |
7809 | }, | |
7810 | [ALC225_FIXUP_WYSE_AUTO_MUTE] = { | |
7811 | .type = HDA_FIXUP_FUNC, | |
7812 | .v.func = alc_fixup_auto_mute_via_amp, | |
7813 | .chained = true, | |
7814 | .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF | |
7815 | }, | |
7816 | [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = { | |
7817 | .type = HDA_FIXUP_FUNC, | |
7818 | .v.func = alc_fixup_disable_mic_vref, | |
7819 | .chained = true, | |
7820 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
7821 | }, | |
667a8f73 JHP |
7822 | [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = { |
7823 | .type = HDA_FIXUP_VERBS, | |
7824 | .v.verbs = (const struct hda_verb[]) { | |
7825 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f }, | |
7826 | { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 }, | |
7827 | { } | |
7828 | }, | |
7829 | .chained = true, | |
7830 | .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE | |
7831 | }, | |
8c8967a7 DD |
7832 | [ALC256_FIXUP_ASUS_HEADSET_MIC] = { |
7833 | .type = HDA_FIXUP_PINS, | |
7834 | .v.pins = (const struct hda_pintbl[]) { | |
7835 | { 0x19, 0x03a11020 }, /* headset mic with jack detect */ | |
7836 | { } | |
7837 | }, | |
7838 | .chained = true, | |
7839 | .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE | |
7840 | }, | |
e1037354 JHP |
7841 | [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = { |
7842 | .type = HDA_FIXUP_PINS, | |
7843 | .v.pins = (const struct hda_pintbl[]) { | |
7844 | { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */ | |
7845 | { } | |
7846 | }, | |
7847 | .chained = true, | |
7848 | .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE | |
7849 | }, | |
e2a829b3 BR |
7850 | [ALC299_FIXUP_PREDATOR_SPK] = { |
7851 | .type = HDA_FIXUP_PINS, | |
7852 | .v.pins = (const struct hda_pintbl[]) { | |
7853 | { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */ | |
7854 | { } | |
7855 | } | |
7856 | }, | |
bd9c10bc | 7857 | [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = { |
60083f9e JHP |
7858 | .type = HDA_FIXUP_PINS, |
7859 | .v.pins = (const struct hda_pintbl[]) { | |
bd9c10bc JMG |
7860 | { 0x19, 0x04a11040 }, |
7861 | { 0x21, 0x04211020 }, | |
60083f9e JHP |
7862 | { } |
7863 | }, | |
7864 | .chained = true, | |
bd9c10bc | 7865 | .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE |
60083f9e | 7866 | }, |
e79c2269 | 7867 | [ALC289_FIXUP_DELL_SPK2] = { |
bd9c10bc JMG |
7868 | .type = HDA_FIXUP_PINS, |
7869 | .v.pins = (const struct hda_pintbl[]) { | |
e79c2269 | 7870 | { 0x17, 0x90170130 }, /* bass spk */ |
bd9c10bc JMG |
7871 | { } |
7872 | }, | |
7873 | .chained = true, | |
e79c2269 | 7874 | .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE |
bd9c10bc | 7875 | }, |
e79c2269 KY |
7876 | [ALC289_FIXUP_DUAL_SPK] = { |
7877 | .type = HDA_FIXUP_FUNC, | |
7878 | .v.func = alc285_fixup_speaker2_to_dac1, | |
7879 | .chained = true, | |
7880 | .chain_id = ALC289_FIXUP_DELL_SPK2 | |
7881 | }, | |
48e01504 CC |
7882 | [ALC294_FIXUP_SPK2_TO_DAC1] = { |
7883 | .type = HDA_FIXUP_FUNC, | |
7884 | .v.func = alc285_fixup_speaker2_to_dac1, | |
7885 | .chained = true, | |
7886 | .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC | |
7887 | }, | |
7888 | [ALC294_FIXUP_ASUS_DUAL_SPK] = { | |
436e2550 JHP |
7889 | .type = HDA_FIXUP_FUNC, |
7890 | /* The GPIO must be pulled to initialize the AMP */ | |
7891 | .v.func = alc_fixup_gpio4, | |
7892 | .chained = true, | |
48e01504 | 7893 | .chain_id = ALC294_FIXUP_SPK2_TO_DAC1 |
436e2550 | 7894 | }, |
6a6660d0 TI |
7895 | [ALC285_FIXUP_THINKPAD_X1_GEN7] = { |
7896 | .type = HDA_FIXUP_FUNC, | |
7897 | .v.func = alc285_fixup_thinkpad_x1_gen7, | |
7898 | .chained = true, | |
7899 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI | |
7900 | }, | |
76f7dec0 KY |
7901 | [ALC285_FIXUP_THINKPAD_HEADSET_JACK] = { |
7902 | .type = HDA_FIXUP_FUNC, | |
7903 | .v.func = alc_fixup_headset_jack, | |
7904 | .chained = true, | |
6a6660d0 | 7905 | .chain_id = ALC285_FIXUP_THINKPAD_X1_GEN7 |
76f7dec0 | 7906 | }, |
8b33a134 JHP |
7907 | [ALC294_FIXUP_ASUS_HPE] = { |
7908 | .type = HDA_FIXUP_VERBS, | |
7909 | .v.verbs = (const struct hda_verb[]) { | |
7910 | /* Set EAPD high */ | |
7911 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f }, | |
7912 | { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 }, | |
7913 | { } | |
7914 | }, | |
7915 | .chained = true, | |
7916 | .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC | |
7917 | }, | |
c3cdf189 LJ |
7918 | [ALC294_FIXUP_ASUS_GX502_PINS] = { |
7919 | .type = HDA_FIXUP_PINS, | |
7920 | .v.pins = (const struct hda_pintbl[]) { | |
7921 | { 0x19, 0x03a11050 }, /* front HP mic */ | |
7922 | { 0x1a, 0x01a11830 }, /* rear external mic */ | |
7923 | { 0x21, 0x03211020 }, /* front HP out */ | |
7924 | { } | |
7925 | }, | |
7926 | .chained = true, | |
7927 | .chain_id = ALC294_FIXUP_ASUS_GX502_VERBS | |
7928 | }, | |
7929 | [ALC294_FIXUP_ASUS_GX502_VERBS] = { | |
7930 | .type = HDA_FIXUP_VERBS, | |
7931 | .v.verbs = (const struct hda_verb[]) { | |
7932 | /* set 0x15 to HP-OUT ctrl */ | |
7933 | { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, | |
7934 | /* unmute the 0x15 amp */ | |
7935 | { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 }, | |
7936 | { } | |
7937 | }, | |
7938 | .chained = true, | |
7939 | .chain_id = ALC294_FIXUP_ASUS_GX502_HP | |
7940 | }, | |
7941 | [ALC294_FIXUP_ASUS_GX502_HP] = { | |
7942 | .type = HDA_FIXUP_FUNC, | |
7943 | .v.func = alc294_fixup_gx502_hp, | |
7944 | }, | |
c1b55029 DC |
7945 | [ALC294_FIXUP_ASUS_GU502_PINS] = { |
7946 | .type = HDA_FIXUP_PINS, | |
7947 | .v.pins = (const struct hda_pintbl[]) { | |
7948 | { 0x19, 0x01a11050 }, /* rear HP mic */ | |
7949 | { 0x1a, 0x01a11830 }, /* rear external mic */ | |
7950 | { 0x21, 0x012110f0 }, /* rear HP out */ | |
7951 | { } | |
7952 | }, | |
7953 | .chained = true, | |
7954 | .chain_id = ALC294_FIXUP_ASUS_GU502_VERBS | |
7955 | }, | |
7956 | [ALC294_FIXUP_ASUS_GU502_VERBS] = { | |
7957 | .type = HDA_FIXUP_VERBS, | |
7958 | .v.verbs = (const struct hda_verb[]) { | |
7959 | /* set 0x15 to HP-OUT ctrl */ | |
7960 | { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, | |
7961 | /* unmute the 0x15 amp */ | |
7962 | { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 }, | |
7963 | /* set 0x1b to HP-OUT */ | |
7964 | { 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 }, | |
7965 | { } | |
7966 | }, | |
7967 | .chained = true, | |
7968 | .chain_id = ALC294_FIXUP_ASUS_GU502_HP | |
7969 | }, | |
7970 | [ALC294_FIXUP_ASUS_GU502_HP] = { | |
7971 | .type = HDA_FIXUP_FUNC, | |
7972 | .v.func = alc294_fixup_gu502_hp, | |
7973 | }, | |
1b94e59d TI |
7974 | [ALC294_FIXUP_ASUS_COEF_1B] = { |
7975 | .type = HDA_FIXUP_VERBS, | |
7976 | .v.verbs = (const struct hda_verb[]) { | |
7977 | /* Set bit 10 to correct noisy output after reboot from | |
7978 | * Windows 10 (due to pop noise reduction?) | |
7979 | */ | |
7980 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x1b }, | |
7981 | { 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b }, | |
7982 | { } | |
7983 | }, | |
f8fbcdfb TI |
7984 | .chained = true, |
7985 | .chain_id = ALC289_FIXUP_ASUS_GA401, | |
1b94e59d | 7986 | }, |
f5a88b0a KHF |
7987 | [ALC285_FIXUP_HP_GPIO_LED] = { |
7988 | .type = HDA_FIXUP_FUNC, | |
7989 | .v.func = alc285_fixup_hp_gpio_led, | |
7990 | }, | |
431e76c3 KY |
7991 | [ALC285_FIXUP_HP_MUTE_LED] = { |
7992 | .type = HDA_FIXUP_FUNC, | |
7993 | .v.func = alc285_fixup_hp_mute_led, | |
7994 | }, | |
e7d66cf7 JS |
7995 | [ALC236_FIXUP_HP_GPIO_LED] = { |
7996 | .type = HDA_FIXUP_FUNC, | |
7997 | .v.func = alc236_fixup_hp_gpio_led, | |
7998 | }, | |
24164f43 KY |
7999 | [ALC236_FIXUP_HP_MUTE_LED] = { |
8000 | .type = HDA_FIXUP_FUNC, | |
8001 | .v.func = alc236_fixup_hp_mute_led, | |
8002 | }, | |
75b62ab6 JW |
8003 | [ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF] = { |
8004 | .type = HDA_FIXUP_FUNC, | |
8005 | .v.func = alc236_fixup_hp_mute_led_micmute_vref, | |
8006 | }, | |
14425f1f MP |
8007 | [ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = { |
8008 | .type = HDA_FIXUP_VERBS, | |
8009 | .v.verbs = (const struct hda_verb[]) { | |
8010 | { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc5 }, | |
8011 | { } | |
8012 | }, | |
8013 | }, | |
9e43342b CC |
8014 | [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = { |
8015 | .type = HDA_FIXUP_PINS, | |
8016 | .v.pins = (const struct hda_pintbl[]) { | |
8017 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8018 | { } | |
8019 | }, | |
8020 | .chained = true, | |
8021 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
8022 | }, | |
8eae7e9b JHP |
8023 | [ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = { |
8024 | .type = HDA_FIXUP_PINS, | |
8025 | .v.pins = (const struct hda_pintbl[]) { | |
8026 | { 0x14, 0x90100120 }, /* use as internal speaker */ | |
8027 | { 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */ | |
8028 | { 0x1a, 0x01011020 }, /* use as line out */ | |
8029 | { }, | |
8030 | }, | |
8031 | .chained = true, | |
8032 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
8033 | }, | |
6e15d126 JHP |
8034 | [ALC269VC_FIXUP_ACER_HEADSET_MIC] = { |
8035 | .type = HDA_FIXUP_PINS, | |
8036 | .v.pins = (const struct hda_pintbl[]) { | |
8037 | { 0x18, 0x02a11030 }, /* use as headset mic */ | |
8038 | { } | |
8039 | }, | |
8040 | .chained = true, | |
8041 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
8042 | }, | |
781c90c0 JHP |
8043 | [ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE] = { |
8044 | .type = HDA_FIXUP_PINS, | |
8045 | .v.pins = (const struct hda_pintbl[]) { | |
8046 | { 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */ | |
8047 | { } | |
8048 | }, | |
8049 | .chained = true, | |
8050 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
8051 | }, | |
293a92c1 | 8052 | [ALC289_FIXUP_ASUS_GA401] = { |
c84bfedc TI |
8053 | .type = HDA_FIXUP_FUNC, |
8054 | .v.func = alc289_fixup_asus_ga401, | |
8055 | .chained = true, | |
8056 | .chain_id = ALC289_FIXUP_ASUS_GA502, | |
ff53664d | 8057 | }, |
4b43d05a AS |
8058 | [ALC289_FIXUP_ASUS_GA502] = { |
8059 | .type = HDA_FIXUP_PINS, | |
8060 | .v.pins = (const struct hda_pintbl[]) { | |
8061 | { 0x19, 0x03a11020 }, /* headset mic with jack detect */ | |
8062 | { } | |
8063 | }, | |
8064 | }, | |
f50a121d JHP |
8065 | [ALC256_FIXUP_ACER_MIC_NO_PRESENCE] = { |
8066 | .type = HDA_FIXUP_PINS, | |
8067 | .v.pins = (const struct hda_pintbl[]) { | |
8068 | { 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */ | |
8069 | { } | |
8070 | }, | |
8071 | .chained = true, | |
8072 | .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE | |
8073 | }, | |
56496253 KY |
8074 | [ALC285_FIXUP_HP_GPIO_AMP_INIT] = { |
8075 | .type = HDA_FIXUP_FUNC, | |
8076 | .v.func = alc285_fixup_hp_gpio_amp_init, | |
8077 | .chained = true, | |
8078 | .chain_id = ALC285_FIXUP_HP_GPIO_LED | |
8079 | }, | |
f1ec5be1 HC |
8080 | [ALC269_FIXUP_CZC_B20] = { |
8081 | .type = HDA_FIXUP_PINS, | |
8082 | .v.pins = (const struct hda_pintbl[]) { | |
8083 | { 0x12, 0x411111f0 }, | |
8084 | { 0x14, 0x90170110 }, /* speaker */ | |
8085 | { 0x15, 0x032f1020 }, /* HP out */ | |
8086 | { 0x17, 0x411111f0 }, | |
8087 | { 0x18, 0x03ab1040 }, /* mic */ | |
8088 | { 0x19, 0xb7a7013f }, | |
8089 | { 0x1a, 0x0181305f }, | |
8090 | { 0x1b, 0x411111f0 }, | |
8091 | { 0x1d, 0x411111f0 }, | |
8092 | { 0x1e, 0x411111f0 }, | |
8093 | { } | |
8094 | }, | |
8095 | .chain_id = ALC269_FIXUP_DMIC, | |
8096 | }, | |
8097 | [ALC269_FIXUP_CZC_TMI] = { | |
8098 | .type = HDA_FIXUP_PINS, | |
8099 | .v.pins = (const struct hda_pintbl[]) { | |
8100 | { 0x12, 0x4000c000 }, | |
8101 | { 0x14, 0x90170110 }, /* speaker */ | |
8102 | { 0x15, 0x0421401f }, /* HP out */ | |
8103 | { 0x17, 0x411111f0 }, | |
8104 | { 0x18, 0x04a19020 }, /* mic */ | |
8105 | { 0x19, 0x411111f0 }, | |
8106 | { 0x1a, 0x411111f0 }, | |
8107 | { 0x1b, 0x411111f0 }, | |
8108 | { 0x1d, 0x40448505 }, | |
8109 | { 0x1e, 0x411111f0 }, | |
8110 | { 0x20, 0x8000ffff }, | |
8111 | { } | |
8112 | }, | |
8113 | .chain_id = ALC269_FIXUP_DMIC, | |
8114 | }, | |
8115 | [ALC269_FIXUP_CZC_L101] = { | |
8116 | .type = HDA_FIXUP_PINS, | |
8117 | .v.pins = (const struct hda_pintbl[]) { | |
8118 | { 0x12, 0x40000000 }, | |
8119 | { 0x14, 0x01014010 }, /* speaker */ | |
8120 | { 0x15, 0x411111f0 }, /* HP out */ | |
8121 | { 0x16, 0x411111f0 }, | |
8122 | { 0x18, 0x01a19020 }, /* mic */ | |
8123 | { 0x19, 0x02a19021 }, | |
8124 | { 0x1a, 0x0181302f }, | |
8125 | { 0x1b, 0x0221401f }, | |
8126 | { 0x1c, 0x411111f0 }, | |
8127 | { 0x1d, 0x4044c601 }, | |
8128 | { 0x1e, 0x411111f0 }, | |
8129 | { } | |
8130 | }, | |
8131 | .chain_id = ALC269_FIXUP_DMIC, | |
8132 | }, | |
8133 | [ALC269_FIXUP_LEMOTE_A1802] = { | |
8134 | .type = HDA_FIXUP_PINS, | |
8135 | .v.pins = (const struct hda_pintbl[]) { | |
8136 | { 0x12, 0x40000000 }, | |
8137 | { 0x14, 0x90170110 }, /* speaker */ | |
8138 | { 0x17, 0x411111f0 }, | |
8139 | { 0x18, 0x03a19040 }, /* mic1 */ | |
8140 | { 0x19, 0x90a70130 }, /* mic2 */ | |
8141 | { 0x1a, 0x411111f0 }, | |
8142 | { 0x1b, 0x411111f0 }, | |
8143 | { 0x1d, 0x40489d2d }, | |
8144 | { 0x1e, 0x411111f0 }, | |
8145 | { 0x20, 0x0003ffff }, | |
8146 | { 0x21, 0x03214020 }, | |
8147 | { } | |
8148 | }, | |
8149 | .chain_id = ALC269_FIXUP_DMIC, | |
8150 | }, | |
8151 | [ALC269_FIXUP_LEMOTE_A190X] = { | |
8152 | .type = HDA_FIXUP_PINS, | |
8153 | .v.pins = (const struct hda_pintbl[]) { | |
8154 | { 0x14, 0x99130110 }, /* speaker */ | |
8155 | { 0x15, 0x0121401f }, /* HP out */ | |
8156 | { 0x18, 0x01a19c20 }, /* rear mic */ | |
8157 | { 0x19, 0x99a3092f }, /* front mic */ | |
8158 | { 0x1b, 0x0201401f }, /* front lineout */ | |
8159 | { } | |
8160 | }, | |
8161 | .chain_id = ALC269_FIXUP_DMIC, | |
8162 | }, | |
e2d2fded KHF |
8163 | [ALC256_FIXUP_INTEL_NUC8_RUGGED] = { |
8164 | .type = HDA_FIXUP_PINS, | |
8165 | .v.pins = (const struct hda_pintbl[]) { | |
8166 | { 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8167 | { } | |
8168 | }, | |
8169 | .chained = true, | |
8170 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
8171 | }, | |
73e7161e WS |
8172 | [ALC256_FIXUP_INTEL_NUC10] = { |
8173 | .type = HDA_FIXUP_PINS, | |
8174 | .v.pins = (const struct hda_pintbl[]) { | |
8175 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8176 | { } | |
8177 | }, | |
8178 | .chained = true, | |
8179 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
8180 | }, | |
fc19d559 HW |
8181 | [ALC255_FIXUP_XIAOMI_HEADSET_MIC] = { |
8182 | .type = HDA_FIXUP_VERBS, | |
8183 | .v.verbs = (const struct hda_verb[]) { | |
8184 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 }, | |
8185 | { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 }, | |
8186 | { } | |
8187 | }, | |
8188 | .chained = true, | |
c84bfedc | 8189 | .chain_id = ALC289_FIXUP_ASUS_GA502 |
fc19d559 | 8190 | }, |
13468bfa HW |
8191 | [ALC274_FIXUP_HP_MIC] = { |
8192 | .type = HDA_FIXUP_VERBS, | |
8193 | .v.verbs = (const struct hda_verb[]) { | |
8194 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 }, | |
8195 | { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 }, | |
8196 | { } | |
8197 | }, | |
8198 | }, | |
8a8de09c KY |
8199 | [ALC274_FIXUP_HP_HEADSET_MIC] = { |
8200 | .type = HDA_FIXUP_FUNC, | |
8201 | .v.func = alc274_fixup_hp_headset_mic, | |
8202 | .chained = true, | |
8203 | .chain_id = ALC274_FIXUP_HP_MIC | |
8204 | }, | |
622464c8 TI |
8205 | [ALC274_FIXUP_HP_ENVY_GPIO] = { |
8206 | .type = HDA_FIXUP_FUNC, | |
8207 | .v.func = alc274_fixup_hp_envy_gpio, | |
8208 | }, | |
ef9ce66f KY |
8209 | [ALC256_FIXUP_ASUS_HPE] = { |
8210 | .type = HDA_FIXUP_VERBS, | |
8211 | .v.verbs = (const struct hda_verb[]) { | |
8212 | /* Set EAPD high */ | |
8213 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f }, | |
8214 | { 0x20, AC_VERB_SET_PROC_COEF, 0x7778 }, | |
8215 | { } | |
8216 | }, | |
8217 | .chained = true, | |
8218 | .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC | |
8219 | }, | |
446b8185 KY |
8220 | [ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK] = { |
8221 | .type = HDA_FIXUP_FUNC, | |
8222 | .v.func = alc_fixup_headset_jack, | |
8223 | .chained = true, | |
8224 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI | |
8225 | }, | |
a0ccbc53 KY |
8226 | [ALC287_FIXUP_HP_GPIO_LED] = { |
8227 | .type = HDA_FIXUP_FUNC, | |
8228 | .v.func = alc287_fixup_hp_gpio_led, | |
8229 | }, | |
9e885770 KY |
8230 | [ALC256_FIXUP_HP_HEADSET_MIC] = { |
8231 | .type = HDA_FIXUP_FUNC, | |
8232 | .v.func = alc274_fixup_hp_headset_mic, | |
8233 | }, | |
92666d45 KY |
8234 | [ALC236_FIXUP_DELL_AIO_HEADSET_MIC] = { |
8235 | .type = HDA_FIXUP_FUNC, | |
8236 | .v.func = alc_fixup_no_int_mic, | |
8237 | .chained = true, | |
8238 | .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE | |
8239 | }, | |
34cdf405 CC |
8240 | [ALC282_FIXUP_ACER_DISABLE_LINEOUT] = { |
8241 | .type = HDA_FIXUP_PINS, | |
8242 | .v.pins = (const struct hda_pintbl[]) { | |
8243 | { 0x1b, 0x411111f0 }, | |
8244 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8245 | { }, | |
8246 | }, | |
8247 | .chained = true, | |
8248 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
8249 | }, | |
495dc763 CC |
8250 | [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = { |
8251 | .type = HDA_FIXUP_FUNC, | |
8252 | .v.func = alc269_fixup_limit_int_mic_boost, | |
8253 | .chained = true, | |
8254 | .chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, | |
8255 | }, | |
d0e18561 CC |
8256 | [ALC256_FIXUP_ACER_HEADSET_MIC] = { |
8257 | .type = HDA_FIXUP_PINS, | |
8258 | .v.pins = (const struct hda_pintbl[]) { | |
8259 | { 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */ | |
8260 | { 0x1a, 0x90a1092f }, /* use as internal mic */ | |
8261 | { } | |
8262 | }, | |
8263 | .chained = true, | |
8264 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
8265 | }, | |
26928ca1 TI |
8266 | [ALC285_FIXUP_IDEAPAD_S740_COEF] = { |
8267 | .type = HDA_FIXUP_FUNC, | |
8268 | .v.func = alc285_fixup_ideapad_s740_coef, | |
8269 | .chained = true, | |
8270 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI, | |
8271 | }, | |
bd15b155 KHF |
8272 | [ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST] = { |
8273 | .type = HDA_FIXUP_FUNC, | |
8274 | .v.func = alc269_fixup_limit_int_mic_boost, | |
8275 | .chained = true, | |
8276 | .chain_id = ALC285_FIXUP_HP_MUTE_LED, | |
8277 | }, | |
8eedd3a7 TI |
8278 | [ALC295_FIXUP_ASUS_DACS] = { |
8279 | .type = HDA_FIXUP_FUNC, | |
8280 | .v.func = alc295_fixup_asus_dacs, | |
8281 | }, | |
5d84b531 TI |
8282 | [ALC295_FIXUP_HP_OMEN] = { |
8283 | .type = HDA_FIXUP_PINS, | |
8284 | .v.pins = (const struct hda_pintbl[]) { | |
8285 | { 0x12, 0xb7a60130 }, | |
8286 | { 0x13, 0x40000000 }, | |
8287 | { 0x14, 0x411111f0 }, | |
8288 | { 0x16, 0x411111f0 }, | |
8289 | { 0x17, 0x90170110 }, | |
8290 | { 0x18, 0x411111f0 }, | |
8291 | { 0x19, 0x02a11030 }, | |
8292 | { 0x1a, 0x411111f0 }, | |
8293 | { 0x1b, 0x04a19030 }, | |
8294 | { 0x1d, 0x40600001 }, | |
8295 | { 0x1e, 0x411111f0 }, | |
8296 | { 0x21, 0x03211020 }, | |
8297 | {} | |
8298 | }, | |
8299 | .chained = true, | |
8300 | .chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED, | |
8301 | }, | |
f2be77fe | 8302 | [ALC285_FIXUP_HP_SPECTRE_X360] = { |
434591b2 ED |
8303 | .type = HDA_FIXUP_FUNC, |
8304 | .v.func = alc285_fixup_hp_spectre_x360, | |
f2be77fe | 8305 | }, |
d94befbb DB |
8306 | [ALC285_FIXUP_HP_SPECTRE_X360_EB1] = { |
8307 | .type = HDA_FIXUP_FUNC, | |
8308 | .v.func = alc285_fixup_hp_spectre_x360_eb1 | |
8309 | }, | |
9ebaef05 HW |
8310 | [ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP] = { |
8311 | .type = HDA_FIXUP_FUNC, | |
8312 | .v.func = alc285_fixup_ideapad_s740_coef, | |
8313 | .chained = true, | |
8314 | .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK, | |
8315 | }, | |
29c8f40b PU |
8316 | [ALC623_FIXUP_LENOVO_THINKSTATION_P340] = { |
8317 | .type = HDA_FIXUP_FUNC, | |
8318 | .v.func = alc_fixup_no_shutup, | |
8319 | .chained = true, | |
8320 | .chain_id = ALC283_FIXUP_HEADSET_MIC, | |
8321 | }, | |
57c9e21a HW |
8322 | [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = { |
8323 | .type = HDA_FIXUP_PINS, | |
8324 | .v.pins = (const struct hda_pintbl[]) { | |
8325 | { 0x21, 0x03211030 }, /* Change the Headphone location to Left */ | |
8326 | { } | |
8327 | }, | |
8328 | .chained = true, | |
8329 | .chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC | |
8330 | }, | |
8903376d KHF |
8331 | [ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST] = { |
8332 | .type = HDA_FIXUP_FUNC, | |
8333 | .v.func = alc269_fixup_limit_int_mic_boost, | |
8334 | .chained = true, | |
8335 | .chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF, | |
8336 | }, | |
ad7cc2d4 CB |
8337 | [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = { |
8338 | .type = HDA_FIXUP_VERBS, | |
8339 | //.v.verbs = legion_15imhg05_coefs, | |
8340 | .v.verbs = (const struct hda_verb[]) { | |
8341 | // set left speaker Legion 7i. | |
8342 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8343 | { 0x20, AC_VERB_SET_PROC_COEF, 0x41 }, | |
8344 | ||
8345 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8346 | { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, | |
8347 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8348 | { 0x20, AC_VERB_SET_PROC_COEF, 0x1a }, | |
8349 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8350 | ||
8351 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8352 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
8353 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8354 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8355 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8356 | ||
8357 | // set right speaker Legion 7i. | |
8358 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8359 | { 0x20, AC_VERB_SET_PROC_COEF, 0x42 }, | |
8360 | ||
8361 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8362 | { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, | |
8363 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8364 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2a }, | |
8365 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8366 | ||
8367 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8368 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
8369 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8370 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8371 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8372 | {} | |
8373 | }, | |
8374 | .chained = true, | |
8375 | .chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE, | |
8376 | }, | |
8377 | [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = { | |
8378 | .type = HDA_FIXUP_FUNC, | |
8379 | .v.func = alc287_fixup_legion_15imhg05_speakers, | |
8380 | .chained = true, | |
8381 | .chain_id = ALC269_FIXUP_HEADSET_MODE, | |
8382 | }, | |
8383 | [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = { | |
8384 | .type = HDA_FIXUP_VERBS, | |
8385 | .v.verbs = (const struct hda_verb[]) { | |
8386 | // set left speaker Yoga 7i. | |
8387 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8388 | { 0x20, AC_VERB_SET_PROC_COEF, 0x41 }, | |
8389 | ||
8390 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8391 | { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, | |
8392 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8393 | { 0x20, AC_VERB_SET_PROC_COEF, 0x1a }, | |
8394 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8395 | ||
8396 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8397 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
8398 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8399 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8400 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8401 | ||
8402 | // set right speaker Yoga 7i. | |
8403 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8404 | { 0x20, AC_VERB_SET_PROC_COEF, 0x46 }, | |
8405 | ||
8406 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8407 | { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, | |
8408 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8409 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2a }, | |
8410 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8411 | ||
8412 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8413 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
8414 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8415 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8416 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8417 | {} | |
8418 | }, | |
8419 | .chained = true, | |
8420 | .chain_id = ALC269_FIXUP_HEADSET_MODE, | |
8421 | }, | |
8422 | [ALC287_FIXUP_13S_GEN2_SPEAKERS] = { | |
8423 | .type = HDA_FIXUP_VERBS, | |
8424 | .v.verbs = (const struct hda_verb[]) { | |
8425 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8426 | { 0x20, AC_VERB_SET_PROC_COEF, 0x41 }, | |
023a062f | 8427 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, |
ad7cc2d4 CB |
8428 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, |
8429 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8430 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8431 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8432 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8433 | { 0x20, AC_VERB_SET_PROC_COEF, 0x42 }, | |
8434 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8435 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
8436 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8437 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8438 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8439 | {} | |
8440 | }, | |
8441 | .chained = true, | |
8442 | .chain_id = ALC269_FIXUP_HEADSET_MODE, | |
8443 | }, | |
dd6dd6e3 WS |
8444 | [ALC256_FIXUP_TONGFANG_RESET_PERSISTENT_SETTINGS] = { |
8445 | .type = HDA_FIXUP_FUNC, | |
8446 | .v.func = alc256_fixup_tongfang_reset_persistent_settings, | |
8447 | }, | |
5fc462c3 JC |
8448 | [ALC245_FIXUP_HP_GPIO_LED] = { |
8449 | .type = HDA_FIXUP_FUNC, | |
8450 | .v.func = alc245_fixup_hp_gpio_led, | |
8451 | }, | |
f1d4e28b KY |
8452 | }; |
8453 | ||
1d045db9 | 8454 | static const struct snd_pci_quirk alc269_fixup_tbl[] = { |
a6b92b66 | 8455 | SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC), |
693b613d DH |
8456 | SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC), |
8457 | SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC), | |
aaedfb47 | 8458 | SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700), |
7819717b | 8459 | SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC), |
aaedfb47 DH |
8460 | SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK), |
8461 | SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK), | |
02322ac9 | 8462 | SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572), |
b1e8972e | 8463 | SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572), |
1a22e775 | 8464 | SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS), |
433f894e | 8465 | SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC), |
c8426b27 | 8466 | SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF), |
13be30f1 | 8467 | SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK), |
705b65f1 | 8468 | SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE), |
6e15d126 | 8469 | SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC), |
b9c2fa52 | 8470 | SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK), |
495dc763 | 8471 | SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST), |
c7531e31 CC |
8472 | SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), |
8473 | SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), | |
13be30f1 CC |
8474 | SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK), |
8475 | SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK), | |
e2a829b3 | 8476 | SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK), |
8eae7e9b | 8477 | SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS), |
781c90c0 | 8478 | SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE), |
d0e18561 | 8479 | SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC), |
667a8f73 JHP |
8480 | SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), |
8481 | SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), | |
8482 | SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), | |
d0e18561 | 8483 | SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC), |
35171fbf | 8484 | SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE), |
2733cceb | 8485 | SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), |
ea5c7eba | 8486 | SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC), |
cbc05fd6 | 8487 | SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC), |
0d4867a1 | 8488 | SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), |
f50a121d | 8489 | SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE), |
57c9e21a | 8490 | SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC), |
aaedfb47 | 8491 | SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z), |
6ed1131f | 8492 | SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS), |
86f799b8 | 8493 | SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X), |
cf52103a | 8494 | SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X), |
8b99aba7 TI |
8495 | SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X), |
8496 | SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X), | |
0f4881dc | 8497 | SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER), |
73bdd597 DH |
8498 | SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), |
8499 | SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), | |
8500 | SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), | |
0f4881dc DH |
8501 | SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK), |
8502 | SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK), | |
98070576 | 8503 | SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X), |
4275554d | 8504 | SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X), |
0f4881dc | 8505 | SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK), |
a22aa26f KY |
8506 | SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), |
8507 | SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), | |
831bfdf9 | 8508 | SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13), |
afecb146 | 8509 | SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), |
3a05d12f | 8510 | SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK), |
8b72415d | 8511 | SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), |
b734304f KY |
8512 | SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), |
8513 | SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), | |
c04017ea DH |
8514 | SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), |
8515 | SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), | |
8516 | SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), | |
8517 | SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), | |
8518 | SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), | |
fd06c77e | 8519 | SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER), |
3b43b71f | 8520 | SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE), |
c0ca5ece | 8521 | SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP), |
709ae62e | 8522 | SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME), |
dd9aa335 | 8523 | SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME), |
493de342 | 8524 | SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER), |
aa143ad3 | 8525 | SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3), |
5f364135 | 8526 | SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE), |
40e2c4e5 KY |
8527 | SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB), |
8528 | SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB), | |
f0ba9d69 KY |
8529 | SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC), |
8530 | SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC), | |
ae104a21 | 8531 | SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB), |
136824ef | 8532 | SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE), |
da484d00 | 8533 | SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE), |
c2a7c55a | 8534 | SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB), |
e79c2269 | 8535 | SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK), |
aa143ad3 | 8536 | SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK), |
78def224 KY |
8537 | SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE), |
8538 | SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE), | |
92666d45 KY |
8539 | SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC), |
8540 | SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC), | |
c1e89523 | 8541 | SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC), |
da946920 | 8542 | SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK), |
eb676622 | 8543 | SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK), |
2b987fe8 CC |
8544 | SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE), |
8545 | SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE), | |
a22aa26f KY |
8546 | SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), |
8547 | SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), | |
08fb0d0e | 8548 | SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2), |
9f5c6faf | 8549 | SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED), |
8e35cd4a | 8550 | SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED), |
7976eb49 | 8551 | SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
8a02b164 | 8552 | SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
8a02b164 | 8553 | SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
45461e3b TI |
8554 | SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
8555 | SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC), | |
8556 | SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
8557 | SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
9c5dc3bf KY |
8558 | SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), |
8559 | SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), | |
8560 | SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), | |
8561 | SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), | |
9c5dc3bf | 8562 | SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), |
9c5dc3bf KY |
8563 | SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
8564 | SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
8565 | SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
8566 | SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
8567 | SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
9c5dc3bf | 8568 | SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
04d5466a | 8569 | SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED), |
45461e3b | 8570 | SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY), |
c60666bd | 8571 | SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
c60666bd KY |
8572 | SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
8573 | SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
8574 | SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
45461e3b TI |
8575 | SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
8576 | SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
8577 | SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
8578 | SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
8579 | SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED), | |
9c5dc3bf | 8580 | SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
45461e3b | 8581 | SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS), |
9c5dc3bf | 8582 | SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
45461e3b | 8583 | SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS), |
9c5dc3bf | 8584 | SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
c60666bd | 8585 | SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
c60666bd | 8586 | SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
c60666bd | 8587 | SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
c60666bd | 8588 | SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
45461e3b TI |
8589 | SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
8590 | SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
8591 | SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
8592 | SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
8593 | SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
c60666bd | 8594 | SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
c60666bd KY |
8595 | SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
8596 | SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
45461e3b TI |
8597 | SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
8598 | SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M), | |
8599 | SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
8600 | SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
8a02b164 KY |
8601 | SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
8602 | SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
8603 | SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
8604 | SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
167897f4 JK |
8605 | SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE), |
8606 | SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE), | |
1c9d9dfd KY |
8607 | SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC), |
8608 | SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC), | |
563785ed | 8609 | SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
e549d190 | 8610 | SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC), |
bbf8ff6b | 8611 | SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360), |
aeedad25 | 8612 | SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
167897f4 JK |
8613 | SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE), |
8614 | SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE), | |
56e40eb6 | 8615 | SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
901be145 | 8616 | SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
190d0381 | 8617 | SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
5d84b531 | 8618 | SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN), |
d33cd42d | 8619 | SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
f2be77fe | 8620 | SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360), |
0ac05b25 | 8621 | SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
b2c22910 | 8622 | SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED), |
622464c8 | 8623 | SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO), |
15d295b5 | 8624 | SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
61d3e874 | 8625 | SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
a598098c | 8626 | SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED), |
b2c22910 | 8627 | SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED), |
75b62ab6 | 8628 | SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), |
56496253 | 8629 | SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
08befca4 | 8630 | SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED), |
431e76c3 | 8631 | SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED), |
24164f43 | 8632 | SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED), |
91bc1568 JS |
8633 | SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation", |
8634 | ALC285_FIXUP_HP_GPIO_AMP_INIT), | |
8635 | SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation", | |
8636 | ALC285_FIXUP_HP_GPIO_AMP_INIT), | |
375f8426 | 8637 | SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED), |
48422958 | 8638 | SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED), |
e7d66cf7 | 8639 | SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), |
2b70b264 | 8640 | SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), |
fb3acdb2 | 8641 | SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), |
417eadfd | 8642 | SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), |
a0ccbc53 KY |
8643 | SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED), |
8644 | SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED), | |
93ab3eaf | 8645 | SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP), |
c3bb2b52 | 8646 | SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP), |
d07149ab | 8647 | SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), |
dfc2e8ae | 8648 | SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), |
d94befbb DB |
8649 | SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1), |
8650 | SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1), | |
53b861be | 8651 | SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), |
c3d2c882 | 8652 | SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), |
dfb06401 | 8653 | SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), |
ca688339 | 8654 | SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), |
8903376d KHF |
8655 | SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST), |
8656 | SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST), | |
50dbfae9 | 8657 | SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
e650c1a9 | 8658 | SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
bbe183e0 | 8659 | SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
600dd2a7 | 8660 | SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED), |
0e68c4b1 | 8661 | SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED), |
bd15b155 | 8662 | SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST), |
42334fbc | 8663 | SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED), |
c1732ede | 8664 | SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC), |
7bba2157 | 8665 | SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300), |
3e0d611b | 8666 | SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
9cf6533e | 8667 | SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK), |
c1732ede | 8668 | SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC), |
4eab0ea1 | 8669 | SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), |
3e0d611b | 8670 | SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
4eab0ea1 | 8671 | SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), |
3cd0ed63 | 8672 | SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), |
5cfca596 | 8673 | SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE), |
4eab0ea1 TI |
8674 | SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE), |
8675 | SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE), | |
c1732ede | 8676 | SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC), |
3cd0ed63 | 8677 | SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC), |
c1732ede | 8678 | SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC), |
2cede303 | 8679 | SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK), |
23870831 | 8680 | SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A), |
3e0d611b | 8681 | SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC), |
8eedd3a7 | 8682 | SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS), |
48e01504 | 8683 | SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK), |
739d0959 | 8684 | SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK), |
3cd0ed63 | 8685 | SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS), |
8c8967a7 | 8686 | SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC), |
4963d66b | 8687 | SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC), |
158ae2f5 | 8688 | SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE), |
5de3b943 | 8689 | SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE), |
8b33a134 | 8690 | SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE), |
7900e817 | 8691 | SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE), |
017f2a10 | 8692 | SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW), |
28e8af8a | 8693 | SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC), |
1b94e59d | 8694 | SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B), |
693b613d | 8695 | SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC), |
615966ad | 8696 | SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), |
4eab0ea1 | 8697 | SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
c1732ede | 8698 | SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC), |
ef9ce66f | 8699 | SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE), |
4b43d05a | 8700 | SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502), |
c1b55029 | 8701 | SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS), |
76fae618 | 8702 | SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401), |
293a92c1 | 8703 | SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401), |
eeed4cd1 | 8704 | SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2), |
adabb3ec TI |
8705 | SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC), |
8706 | SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC), | |
8707 | SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC), | |
8708 | SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC), | |
d240d1dc | 8709 | SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101), |
1d045db9 TI |
8710 | SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2), |
8711 | SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ), | |
8712 | SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ), | |
e9bd7d5c | 8713 | SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX), |
cab561f8 TI |
8714 | SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE), |
8715 | SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE), | |
24519911 | 8716 | SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK), |
4df3fd17 | 8717 | SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT), |
cc7016ab | 8718 | SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN), |
fdcc968a | 8719 | SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC), |
c656f747 | 8720 | SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN), |
2041d564 | 8721 | SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC), |
b84e8436 | 8722 | SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE), |
c656f747 | 8723 | SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE), |
6fa38ef1 | 8724 | SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), |
ce2e79b2 PH |
8725 | SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), |
8726 | SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), | |
0fca97a2 | 8727 | SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE), |
a33cc48d | 8728 | SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC), |
14425f1f MP |
8729 | SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET), |
8730 | SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET), | |
f70fff83 | 8731 | SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET), |
8bcea6cb | 8732 | SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET), |
823ff161 | 8733 | SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8), |
568e4e82 | 8734 | SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET), |
c656f747 | 8735 | SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET), |
abaa2274 AA |
8736 | SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC), |
8737 | SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC), | |
8cd65271 | 8738 | SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC), |
6ca653e3 | 8739 | SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK), |
b5acfe15 | 8740 | SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
745f260b | 8741 | SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
b5acfe15 PH |
8742 | SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
8743 | SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8744 | SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8745 | SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8746 | SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8747 | SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8748 | SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8749 | SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8750 | SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8751 | SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8752 | SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8753 | SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8754 | SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8755 | SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8756 | SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8757 | SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
1d5cfca2 | 8758 | SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
b5acfe15 | 8759 | SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
1d5cfca2 PH |
8760 | SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
8761 | SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
b5acfe15 PH |
8762 | SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
8763 | SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8764 | SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8765 | SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8766 | SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
1d5cfca2 PH |
8767 | SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
8768 | SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8769 | SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8770 | SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
b5acfe15 PH |
8771 | SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
8772 | SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8773 | SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8774 | SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8775 | SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
745f260b WS |
8776 | SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
8777 | SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8778 | SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC), | |
8779 | SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC), | |
8780 | SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC), | |
b5acfe15 PH |
8781 | SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
8782 | SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8783 | SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8784 | SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8785 | SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8786 | SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8787 | SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
1d5cfca2 | 8788 | SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
b5acfe15 PH |
8789 | SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
8790 | SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
745f260b WS |
8791 | SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
8792 | SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
1d5cfca2 PH |
8793 | SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
8794 | SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8795 | SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8796 | SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8797 | SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
8798 | SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
ca169cc2 | 8799 | SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS), |
29c8f40b | 8800 | SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340), |
1d045db9 TI |
8801 | SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE), |
8802 | SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE), | |
8803 | SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE), | |
8804 | SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE), | |
8805 | SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE), | |
f552ff54 | 8806 | SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK), |
b590b38c | 8807 | SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST), |
c8415a48 | 8808 | SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK), |
4407be6b | 8809 | SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK), |
108cc108 | 8810 | SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK), |
aaedfb47 | 8811 | SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK), |
9a811230 | 8812 | SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440), |
1c37c223 | 8813 | SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK), |
a12137e7 | 8814 | SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK), |
59a51a6b | 8815 | SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK), |
6d16941a | 8816 | SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK), |
7c21539c | 8817 | SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK), |
a4a9e082 | 8818 | SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
b6903c0e | 8819 | SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK), |
d05ea7da | 8820 | SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK), |
c0278669 | 8821 | SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK), |
61fcf8ec KY |
8822 | SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), |
8823 | SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
dab38e43 | 8824 | SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460), |
c636b95e | 8825 | SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460), |
61fcf8ec KY |
8826 | SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK), |
8827 | SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
8828 | SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
e4c07b3b | 8829 | SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460), |
61fcf8ec KY |
8830 | SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), |
8831 | SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
8832 | SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
85981dfd | 8833 | SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
9774dc21 | 8834 | SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK), |
ca707b3f | 8835 | SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK), |
446b8185 KY |
8836 | SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK), |
8837 | SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK), | |
3694cb29 | 8838 | SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY), |
6ef2f68f | 8839 | SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY), |
f33f79f3 | 8840 | SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), |
bef33e19 | 8841 | SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), |
e41fc8c5 | 8842 | SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), |
65811834 | 8843 | SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), |
8da5bbfc | 8844 | SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), |
2a36c16e | 8845 | SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC), |
8a6c55d0 AM |
8846 | SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC), |
8847 | SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC), | |
e4efa826 | 8848 | SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340), |
f86de9b1 | 8849 | SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940", ALC298_FIXUP_LENOVO_SPK_VOLUME), |
26928ca1 | 8850 | SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF), |
9ebaef05 | 8851 | SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP), |
ad7cc2d4 CB |
8852 | SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS), |
8853 | SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), | |
8854 | SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), | |
8855 | SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS), | |
56f27013 | 8856 | SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI), |
fedb2245 | 8857 | SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC), |
56df90b6 | 8858 | SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI), |
f552ff54 | 8859 | SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K), |
a4a9e082 | 8860 | SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
1bb3e062 | 8861 | SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC), |
c497d9f9 | 8862 | SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK), |
cd5302c0 | 8863 | SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
f2aa1110 | 8864 | SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK), |
80b311d3 | 8865 | SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK), |
09ea9976 | 8866 | SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK), |
037e1197 | 8867 | SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK), |
23adc192 | 8868 | SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE), |
0f087ee3 | 8869 | SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460), |
9cd25743 | 8870 | SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460), |
0f087ee3 | 8871 | SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460), |
61fcf8ec KY |
8872 | SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), |
8873 | SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
8874 | SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
cd5302c0 | 8875 | SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
61fcf8ec KY |
8876 | SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), |
8877 | SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
1d045db9 | 8878 | SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD), |
0fbf21c3 | 8879 | SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS), |
f1ec5be1 HC |
8880 | SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20), |
8881 | SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI), | |
8882 | SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101), | |
02b504d9 | 8883 | SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */ |
c656f747 TI |
8884 | SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802), |
8885 | SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X), | |
dd6dd6e3 | 8886 | SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_TONGFANG_RESET_PERSISTENT_SETTINGS), |
fc19d559 | 8887 | SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC), |
b95bc12e | 8888 | SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE), |
695d1ec3 | 8889 | SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC), |
e1c86210 | 8890 | SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC), |
d1ee66c5 | 8891 | SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC), |
e2d2fded | 8892 | SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED), |
73e7161e | 8893 | SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10), |
a4297b5d | 8894 | |
a7f3eedc | 8895 | #if 0 |
a4297b5d TI |
8896 | /* Below is a quirk table taken from the old code. |
8897 | * Basically the device should work as is without the fixup table. | |
8898 | * If BIOS doesn't give a proper info, enable the corresponding | |
8899 | * fixup entry. | |
7d7eb9ea | 8900 | */ |
a4297b5d TI |
8901 | SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A", |
8902 | ALC269_FIXUP_AMIC), | |
8903 | SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC), | |
a4297b5d TI |
8904 | SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC), |
8905 | SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC), | |
8906 | SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC), | |
8907 | SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC), | |
8908 | SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC), | |
8909 | SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC), | |
8910 | SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC), | |
8911 | SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC), | |
8912 | SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC), | |
8913 | SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC), | |
8914 | SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC), | |
8915 | SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC), | |
8916 | SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC), | |
8917 | SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC), | |
8918 | SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC), | |
8919 | SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC), | |
8920 | SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC), | |
8921 | SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC), | |
8922 | SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC), | |
8923 | SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC), | |
8924 | SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC), | |
8925 | SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC), | |
8926 | SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC), | |
8927 | SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC), | |
8928 | SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC), | |
8929 | SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC), | |
8930 | SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC), | |
8931 | SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC), | |
8932 | SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC), | |
8933 | SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC), | |
8934 | SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC), | |
8935 | SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC), | |
8936 | SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC), | |
8937 | SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC), | |
8938 | SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC), | |
8939 | SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC), | |
8940 | SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC), | |
8941 | SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC), | |
8942 | #endif | |
8943 | {} | |
8944 | }; | |
8945 | ||
214eef76 DH |
8946 | static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = { |
8947 | SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC), | |
8948 | SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED), | |
8949 | SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO), | |
8950 | SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI), | |
0fbf21c3 | 8951 | SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED), |
214eef76 DH |
8952 | {} |
8953 | }; | |
8954 | ||
1727a771 | 8955 | static const struct hda_model_fixup alc269_fixup_models[] = { |
a4297b5d TI |
8956 | {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"}, |
8957 | {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"}, | |
6e72aa5f TI |
8958 | {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"}, |
8959 | {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"}, | |
8960 | {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"}, | |
7c478f03 | 8961 | {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"}, |
b016951e TI |
8962 | {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"}, |
8963 | {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"}, | |
108cc108 | 8964 | {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"}, |
b590b38c | 8965 | {.id = ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, .name = "lenovo-dock-limit-boost"}, |
9f5c6faf | 8966 | {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"}, |
04d5466a | 8967 | {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"}, |
e32aa85a DH |
8968 | {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"}, |
8969 | {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"}, | |
a26d96c7 TI |
8970 | {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"}, |
8971 | {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"}, | |
be8ef16a | 8972 | {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"}, |
0202e99c | 8973 | {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"}, |
1c37c223 | 8974 | {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"}, |
9a811230 | 8975 | {.id = ALC292_FIXUP_TPT440, .name = "tpt440"}, |
c636b95e | 8976 | {.id = ALC292_FIXUP_TPT460, .name = "tpt460"}, |
399c01aa | 8977 | {.id = ALC298_FIXUP_TPT470_DOCK_FIX, .name = "tpt470-dock-fix"}, |
a26d96c7 | 8978 | {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"}, |
ba90d6a6 | 8979 | {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"}, |
28d1d6d2 | 8980 | {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"}, |
a26d96c7 TI |
8981 | {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"}, |
8982 | {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"}, | |
8983 | {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"}, | |
8984 | {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"}, | |
8985 | {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"}, | |
8986 | {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"}, | |
8987 | {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"}, | |
8988 | {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"}, | |
8989 | {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"}, | |
8990 | {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"}, | |
8991 | {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"}, | |
8992 | {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"}, | |
8993 | {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"}, | |
8994 | {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"}, | |
8995 | {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"}, | |
8996 | {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"}, | |
8997 | {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"}, | |
8998 | {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"}, | |
8999 | {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"}, | |
9000 | {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"}, | |
9001 | {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"}, | |
9002 | {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"}, | |
9003 | {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"}, | |
9004 | {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"}, | |
9005 | {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"}, | |
9006 | {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"}, | |
9007 | {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"}, | |
9008 | {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"}, | |
9009 | {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"}, | |
9010 | {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"}, | |
9011 | {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"}, | |
9012 | {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"}, | |
9013 | {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"}, | |
9014 | {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"}, | |
9015 | {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"}, | |
9016 | {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"}, | |
9017 | {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"}, | |
9018 | {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"}, | |
9019 | {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"}, | |
9020 | {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"}, | |
b3802783 | 9021 | {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"}, |
a26d96c7 | 9022 | {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"}, |
c8426b27 | 9023 | {.id = ALC269VB_FIXUP_ASPIRE_E1_COEF, .name = "aspire-e1-coef"}, |
a26d96c7 TI |
9024 | {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"}, |
9025 | {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"}, | |
9026 | {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"}, | |
9027 | {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"}, | |
9028 | {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"}, | |
9029 | {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"}, | |
9030 | {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"}, | |
9031 | {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"}, | |
9032 | {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"}, | |
9033 | {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"}, | |
9034 | {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"}, | |
9035 | {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"}, | |
9036 | {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"}, | |
9037 | {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"}, | |
a26d96c7 TI |
9038 | {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"}, |
9039 | {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"}, | |
9040 | {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"}, | |
82aa0d7e | 9041 | {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"}, |
a26d96c7 | 9042 | {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"}, |
d2cd795c | 9043 | {.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"}, |
a26d96c7 TI |
9044 | {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"}, |
9045 | {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"}, | |
9046 | {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"}, | |
9047 | {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"}, | |
9048 | {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"}, | |
9049 | {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"}, | |
9050 | {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"}, | |
9051 | {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"}, | |
9052 | {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"}, | |
9053 | {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"}, | |
9054 | {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"}, | |
9055 | {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"}, | |
9056 | {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"}, | |
9057 | {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"}, | |
9058 | {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"}, | |
9059 | {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"}, | |
9060 | {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"}, | |
8983eb60 KY |
9061 | {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"}, |
9062 | {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"}, | |
e2a829b3 | 9063 | {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"}, |
a2ef03fe | 9064 | {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"}, |
bd9c10bc | 9065 | {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"}, |
23dc9586 | 9066 | {.id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc298-samsung-headphone"}, |
fc19d559 | 9067 | {.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"}, |
13468bfa | 9068 | {.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"}, |
c3bb2b52 | 9069 | {.id = ALC245_FIXUP_HP_X360_AMP, .name = "alc245-hp-x360-amp"}, |
5d84b531 | 9070 | {.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"}, |
f2be77fe | 9071 | {.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"}, |
d94befbb | 9072 | {.id = ALC285_FIXUP_HP_SPECTRE_X360_EB1, .name = "alc285-hp-spectre-x360-eb1"}, |
9ebaef05 | 9073 | {.id = ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, .name = "alc287-ideapad-bass-spk-amp"}, |
29c8f40b | 9074 | {.id = ALC623_FIXUP_LENOVO_THINKSTATION_P340, .name = "alc623-lenovo-thinkstation-p340"}, |
57c9e21a | 9075 | {.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"}, |
1d045db9 | 9076 | {} |
6dda9f4a | 9077 | }; |
cfc5a845 | 9078 | #define ALC225_STANDARD_PINS \ |
cfc5a845 | 9079 | {0x21, 0x04211020} |
6dda9f4a | 9080 | |
e8191a8e HW |
9081 | #define ALC256_STANDARD_PINS \ |
9082 | {0x12, 0x90a60140}, \ | |
9083 | {0x14, 0x90170110}, \ | |
e8191a8e HW |
9084 | {0x21, 0x02211020} |
9085 | ||
fea185e2 | 9086 | #define ALC282_STANDARD_PINS \ |
11580297 | 9087 | {0x14, 0x90170110} |
e1e62b98 | 9088 | |
fea185e2 | 9089 | #define ALC290_STANDARD_PINS \ |
11580297 | 9090 | {0x12, 0x99a30130} |
fea185e2 DH |
9091 | |
9092 | #define ALC292_STANDARD_PINS \ | |
9093 | {0x14, 0x90170110}, \ | |
11580297 | 9094 | {0x15, 0x0221401f} |
977e6276 | 9095 | |
3f640970 HW |
9096 | #define ALC295_STANDARD_PINS \ |
9097 | {0x12, 0xb7a60130}, \ | |
9098 | {0x14, 0x90170110}, \ | |
3f640970 HW |
9099 | {0x21, 0x04211020} |
9100 | ||
703867e2 WS |
9101 | #define ALC298_STANDARD_PINS \ |
9102 | {0x12, 0x90a60130}, \ | |
9103 | {0x21, 0x03211020} | |
9104 | ||
e1918938 | 9105 | static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = { |
8a328ac1 KY |
9106 | SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC, |
9107 | {0x14, 0x01014020}, | |
9108 | {0x17, 0x90170110}, | |
9109 | {0x18, 0x02a11030}, | |
9110 | {0x19, 0x0181303F}, | |
9111 | {0x21, 0x0221102f}), | |
5824ce8d CC |
9112 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE, |
9113 | {0x12, 0x90a601c0}, | |
9114 | {0x14, 0x90171120}, | |
9115 | {0x21, 0x02211030}), | |
615966ad CC |
9116 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, |
9117 | {0x14, 0x90170110}, | |
9118 | {0x1b, 0x90a70130}, | |
9119 | {0x21, 0x03211020}), | |
9120 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, | |
9121 | {0x1a, 0x90a70130}, | |
9122 | {0x1b, 0x90170110}, | |
9123 | {0x21, 0x03211020}), | |
2ae95577 | 9124 | SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, |
cfc5a845 | 9125 | ALC225_STANDARD_PINS, |
8a132099 | 9126 | {0x12, 0xb7a60130}, |
cfc5a845 | 9127 | {0x14, 0x901701a0}), |
2ae95577 | 9128 | SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, |
cfc5a845 | 9129 | ALC225_STANDARD_PINS, |
8a132099 | 9130 | {0x12, 0xb7a60130}, |
cfc5a845 | 9131 | {0x14, 0x901701b0}), |
8a132099 HW |
9132 | SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, |
9133 | ALC225_STANDARD_PINS, | |
9134 | {0x12, 0xb7a60150}, | |
9135 | {0x14, 0x901701a0}), | |
9136 | SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9137 | ALC225_STANDARD_PINS, | |
9138 | {0x12, 0xb7a60150}, | |
9139 | {0x14, 0x901701b0}), | |
9140 | SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9141 | ALC225_STANDARD_PINS, | |
9142 | {0x12, 0xb7a60130}, | |
9143 | {0x1b, 0x90170110}), | |
0ce48e17 KHF |
9144 | SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
9145 | {0x1b, 0x01111010}, | |
9146 | {0x1e, 0x01451130}, | |
9147 | {0x21, 0x02211020}), | |
986376b6 HW |
9148 | SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, |
9149 | {0x12, 0x90a60140}, | |
9150 | {0x14, 0x90170110}, | |
9151 | {0x19, 0x02a11030}, | |
9152 | {0x21, 0x02211020}), | |
e41fc8c5 HW |
9153 | SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION, |
9154 | {0x14, 0x90170110}, | |
9155 | {0x19, 0x02a11030}, | |
9156 | {0x1a, 0x02a11040}, | |
9157 | {0x1b, 0x01014020}, | |
9158 | {0x21, 0x0221101f}), | |
d06fb562 HW |
9159 | SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION, |
9160 | {0x14, 0x90170110}, | |
9161 | {0x19, 0x02a11030}, | |
9162 | {0x1a, 0x02a11040}, | |
9163 | {0x1b, 0x01011020}, | |
9164 | {0x21, 0x0221101f}), | |
c6b17f10 HW |
9165 | SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION, |
9166 | {0x14, 0x90170110}, | |
9167 | {0x19, 0x02a11020}, | |
9168 | {0x1a, 0x02a11030}, | |
9169 | {0x21, 0x0221101f}), | |
92666d45 KY |
9170 | SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC, |
9171 | {0x21, 0x02211010}), | |
9e885770 KY |
9172 | SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC, |
9173 | {0x14, 0x90170110}, | |
9174 | {0x19, 0x02a11020}, | |
9175 | {0x21, 0x02211030}), | |
c77900e6 | 9176 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, |
c77900e6 | 9177 | {0x14, 0x90170110}, |
c77900e6 | 9178 | {0x21, 0x02211020}), |
86c72d1c HW |
9179 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9180 | {0x14, 0x90170130}, | |
9181 | {0x21, 0x02211040}), | |
76c2132e DH |
9182 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9183 | {0x12, 0x90a60140}, | |
9184 | {0x14, 0x90170110}, | |
76c2132e DH |
9185 | {0x21, 0x02211020}), |
9186 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9187 | {0x12, 0x90a60160}, | |
9188 | {0x14, 0x90170120}, | |
76c2132e | 9189 | {0x21, 0x02211030}), |
392c9da2 HW |
9190 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9191 | {0x14, 0x90170110}, | |
9192 | {0x1b, 0x02011020}, | |
9193 | {0x21, 0x0221101f}), | |
6aecd871 HW |
9194 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9195 | {0x14, 0x90170110}, | |
9196 | {0x1b, 0x01011020}, | |
9197 | {0x21, 0x0221101f}), | |
cba59972 | 9198 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
cba59972 | 9199 | {0x14, 0x90170130}, |
cba59972 | 9200 | {0x1b, 0x01014020}, |
cba59972 | 9201 | {0x21, 0x0221103f}), |
6aecd871 HW |
9202 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9203 | {0x14, 0x90170130}, | |
9204 | {0x1b, 0x01011020}, | |
9205 | {0x21, 0x0221103f}), | |
59ec4b57 HW |
9206 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9207 | {0x14, 0x90170130}, | |
9208 | {0x1b, 0x02011020}, | |
9209 | {0x21, 0x0221103f}), | |
e9c28e16 | 9210 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
e9c28e16 | 9211 | {0x14, 0x90170150}, |
e9c28e16 | 9212 | {0x1b, 0x02011020}, |
e9c28e16 WS |
9213 | {0x21, 0x0221105f}), |
9214 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
e9c28e16 | 9215 | {0x14, 0x90170110}, |
e9c28e16 | 9216 | {0x1b, 0x01014020}, |
e9c28e16 | 9217 | {0x21, 0x0221101f}), |
76c2132e DH |
9218 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9219 | {0x12, 0x90a60160}, | |
9220 | {0x14, 0x90170120}, | |
9221 | {0x17, 0x90170140}, | |
76c2132e DH |
9222 | {0x21, 0x0321102f}), |
9223 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9224 | {0x12, 0x90a60160}, | |
9225 | {0x14, 0x90170130}, | |
76c2132e DH |
9226 | {0x21, 0x02211040}), |
9227 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9228 | {0x12, 0x90a60160}, | |
9229 | {0x14, 0x90170140}, | |
76c2132e DH |
9230 | {0x21, 0x02211050}), |
9231 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9232 | {0x12, 0x90a60170}, | |
9233 | {0x14, 0x90170120}, | |
76c2132e DH |
9234 | {0x21, 0x02211030}), |
9235 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9236 | {0x12, 0x90a60170}, | |
9237 | {0x14, 0x90170130}, | |
76c2132e | 9238 | {0x21, 0x02211040}), |
0a1f90a9 HW |
9239 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9240 | {0x12, 0x90a60170}, | |
9241 | {0x14, 0x90171130}, | |
9242 | {0x21, 0x02211040}), | |
70658b99 | 9243 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
70658b99 HW |
9244 | {0x12, 0x90a60170}, |
9245 | {0x14, 0x90170140}, | |
70658b99 | 9246 | {0x21, 0x02211050}), |
9b5a4e39 | 9247 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9b5a4e39 DH |
9248 | {0x12, 0x90a60180}, |
9249 | {0x14, 0x90170130}, | |
9b5a4e39 | 9250 | {0x21, 0x02211040}), |
f90d83b3 AK |
9251 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9252 | {0x12, 0x90a60180}, | |
9253 | {0x14, 0x90170120}, | |
9254 | {0x21, 0x02211030}), | |
989dbe4a HW |
9255 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9256 | {0x1b, 0x01011020}, | |
9257 | {0x21, 0x02211010}), | |
c1732ede CC |
9258 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC, |
9259 | {0x14, 0x90170110}, | |
9260 | {0x1b, 0x90a70130}, | |
9261 | {0x21, 0x04211020}), | |
9262 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC, | |
9263 | {0x14, 0x90170110}, | |
9264 | {0x1b, 0x90a70130}, | |
9265 | {0x21, 0x03211020}), | |
a806ef1c CC |
9266 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, |
9267 | {0x12, 0x90a60130}, | |
9268 | {0x14, 0x90170110}, | |
9269 | {0x21, 0x03211020}), | |
6ac371aa JHP |
9270 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, |
9271 | {0x12, 0x90a60130}, | |
9272 | {0x14, 0x90170110}, | |
9273 | {0x21, 0x04211020}), | |
e1037354 JHP |
9274 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, |
9275 | {0x1a, 0x90a70130}, | |
9276 | {0x1b, 0x90170110}, | |
9277 | {0x21, 0x03211020}), | |
9e885770 KY |
9278 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC, |
9279 | {0x14, 0x90170110}, | |
9280 | {0x19, 0x02a11020}, | |
9281 | {0x21, 0x0221101f}), | |
8a8de09c KY |
9282 | SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC, |
9283 | {0x17, 0x90170110}, | |
9284 | {0x19, 0x03a11030}, | |
9285 | {0x21, 0x03211020}), | |
cf51eb9d DH |
9286 | SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4, |
9287 | {0x12, 0x90a60130}, | |
cf51eb9d DH |
9288 | {0x14, 0x90170110}, |
9289 | {0x15, 0x0421101f}, | |
11580297 | 9290 | {0x1a, 0x04a11020}), |
0279661b HW |
9291 | SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED, |
9292 | {0x12, 0x90a60140}, | |
0279661b HW |
9293 | {0x14, 0x90170110}, |
9294 | {0x15, 0x0421101f}, | |
0279661b | 9295 | {0x18, 0x02811030}, |
0279661b | 9296 | {0x1a, 0x04a1103f}, |
11580297 | 9297 | {0x1b, 0x02011020}), |
42304474 | 9298 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 9299 | ALC282_STANDARD_PINS, |
42304474 | 9300 | {0x12, 0x99a30130}, |
42304474 | 9301 | {0x19, 0x03a11020}, |
42304474 | 9302 | {0x21, 0x0321101f}), |
2c609999 | 9303 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 9304 | ALC282_STANDARD_PINS, |
2c609999 | 9305 | {0x12, 0x99a30130}, |
2c609999 | 9306 | {0x19, 0x03a11020}, |
2c609999 HW |
9307 | {0x21, 0x03211040}), |
9308 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, | |
aec856d0 | 9309 | ALC282_STANDARD_PINS, |
2c609999 | 9310 | {0x12, 0x99a30130}, |
2c609999 | 9311 | {0x19, 0x03a11030}, |
2c609999 HW |
9312 | {0x21, 0x03211020}), |
9313 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, | |
aec856d0 | 9314 | ALC282_STANDARD_PINS, |
2c609999 | 9315 | {0x12, 0x99a30130}, |
2c609999 | 9316 | {0x19, 0x04a11020}, |
2c609999 | 9317 | {0x21, 0x0421101f}), |
200afc09 | 9318 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED, |
aec856d0 | 9319 | ALC282_STANDARD_PINS, |
200afc09 | 9320 | {0x12, 0x90a60140}, |
200afc09 | 9321 | {0x19, 0x04a11030}, |
200afc09 | 9322 | {0x21, 0x04211020}), |
34cdf405 CC |
9323 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT, |
9324 | ALC282_STANDARD_PINS, | |
9325 | {0x12, 0x90a609c0}, | |
9326 | {0x18, 0x03a11830}, | |
9327 | {0x19, 0x04a19831}, | |
9328 | {0x1a, 0x0481303f}, | |
9329 | {0x1b, 0x04211020}, | |
9330 | {0x21, 0x0321101f}), | |
9331 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT, | |
9332 | ALC282_STANDARD_PINS, | |
9333 | {0x12, 0x90a60940}, | |
9334 | {0x18, 0x03a11830}, | |
9335 | {0x19, 0x04a19831}, | |
9336 | {0x1a, 0x0481303f}, | |
9337 | {0x1b, 0x04211020}, | |
9338 | {0x21, 0x0321101f}), | |
76c2132e | 9339 | SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
aec856d0 | 9340 | ALC282_STANDARD_PINS, |
76c2132e | 9341 | {0x12, 0x90a60130}, |
76c2132e DH |
9342 | {0x21, 0x0321101f}), |
9343 | SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9344 | {0x12, 0x90a60160}, | |
9345 | {0x14, 0x90170120}, | |
76c2132e | 9346 | {0x21, 0x02211030}), |
bc262179 | 9347 | SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
aec856d0 | 9348 | ALC282_STANDARD_PINS, |
bc262179 | 9349 | {0x12, 0x90a60130}, |
bc262179 | 9350 | {0x19, 0x03a11020}, |
bc262179 | 9351 | {0x21, 0x0321101f}), |
c8c6ee61 | 9352 | SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE, |
266fd994 SL |
9353 | {0x12, 0x90a60130}, |
9354 | {0x14, 0x90170110}, | |
9355 | {0x19, 0x04a11040}, | |
9356 | {0x21, 0x04211020}), | |
9357 | SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE, | |
9358 | {0x14, 0x90170110}, | |
9359 | {0x19, 0x04a11040}, | |
9360 | {0x1d, 0x40600001}, | |
9361 | {0x21, 0x04211020}), | |
9362 | SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK, | |
c4cfcf6f HW |
9363 | {0x14, 0x90170110}, |
9364 | {0x19, 0x04a11040}, | |
9365 | {0x21, 0x04211020}), | |
c72b9bfe HW |
9366 | SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK, |
9367 | {0x14, 0x90170110}, | |
9368 | {0x17, 0x90170111}, | |
9369 | {0x19, 0x03a11030}, | |
9370 | {0x21, 0x03211020}), | |
33aaebd4 CC |
9371 | SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE, |
9372 | {0x12, 0x90a60130}, | |
9373 | {0x17, 0x90170110}, | |
9374 | {0x21, 0x02211020}), | |
d44a6864 | 9375 | SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, |
e1e62b98 | 9376 | {0x12, 0x90a60120}, |
e1e62b98 | 9377 | {0x14, 0x90170110}, |
e1e62b98 | 9378 | {0x21, 0x0321101f}), |
e4442bcf | 9379 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 9380 | ALC290_STANDARD_PINS, |
e4442bcf | 9381 | {0x15, 0x04211040}, |
e4442bcf | 9382 | {0x18, 0x90170112}, |
11580297 | 9383 | {0x1a, 0x04a11020}), |
e4442bcf | 9384 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 9385 | ALC290_STANDARD_PINS, |
e4442bcf | 9386 | {0x15, 0x04211040}, |
e4442bcf | 9387 | {0x18, 0x90170110}, |
11580297 | 9388 | {0x1a, 0x04a11020}), |
e4442bcf | 9389 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 9390 | ALC290_STANDARD_PINS, |
e4442bcf | 9391 | {0x15, 0x0421101f}, |
11580297 | 9392 | {0x1a, 0x04a11020}), |
e4442bcf | 9393 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 9394 | ALC290_STANDARD_PINS, |
e4442bcf | 9395 | {0x15, 0x04211020}, |
11580297 | 9396 | {0x1a, 0x04a11040}), |
e4442bcf | 9397 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 9398 | ALC290_STANDARD_PINS, |
e4442bcf HW |
9399 | {0x14, 0x90170110}, |
9400 | {0x15, 0x04211020}, | |
11580297 | 9401 | {0x1a, 0x04a11040}), |
e4442bcf | 9402 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 9403 | ALC290_STANDARD_PINS, |
e4442bcf HW |
9404 | {0x14, 0x90170110}, |
9405 | {0x15, 0x04211020}, | |
11580297 | 9406 | {0x1a, 0x04a11020}), |
e4442bcf | 9407 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 9408 | ALC290_STANDARD_PINS, |
e4442bcf HW |
9409 | {0x14, 0x90170110}, |
9410 | {0x15, 0x0421101f}, | |
11580297 | 9411 | {0x1a, 0x04a11020}), |
e8818fa8 | 9412 | SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, |
aec856d0 | 9413 | ALC292_STANDARD_PINS, |
e8818fa8 | 9414 | {0x12, 0x90a60140}, |
e8818fa8 | 9415 | {0x16, 0x01014020}, |
11580297 | 9416 | {0x19, 0x01a19030}), |
e8818fa8 | 9417 | SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, |
aec856d0 | 9418 | ALC292_STANDARD_PINS, |
e8818fa8 | 9419 | {0x12, 0x90a60140}, |
e8818fa8 HW |
9420 | {0x16, 0x01014020}, |
9421 | {0x18, 0x02a19031}, | |
11580297 | 9422 | {0x19, 0x01a1903e}), |
76c2132e | 9423 | SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, |
aec856d0 | 9424 | ALC292_STANDARD_PINS, |
11580297 | 9425 | {0x12, 0x90a60140}), |
76c2132e | 9426 | SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, |
aec856d0 | 9427 | ALC292_STANDARD_PINS, |
76c2132e | 9428 | {0x13, 0x90a60140}, |
76c2132e | 9429 | {0x16, 0x21014020}, |
11580297 | 9430 | {0x19, 0x21a19030}), |
e03fdbde | 9431 | SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, |
aec856d0 | 9432 | ALC292_STANDARD_PINS, |
11580297 | 9433 | {0x13, 0x90a60140}), |
eeacd80f JHP |
9434 | SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE, |
9435 | {0x17, 0x90170110}, | |
9436 | {0x21, 0x04211020}), | |
d8ae458e CC |
9437 | SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC, |
9438 | {0x14, 0x90170110}, | |
9439 | {0x1b, 0x90a70130}, | |
9440 | {0x21, 0x04211020}), | |
8bb37a2a JHP |
9441 | SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK, |
9442 | {0x12, 0x90a60130}, | |
9443 | {0x17, 0x90170110}, | |
9444 | {0x21, 0x03211020}), | |
0bea4cc8 JHP |
9445 | SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK, |
9446 | {0x12, 0x90a60130}, | |
9447 | {0x17, 0x90170110}, | |
9448 | {0x21, 0x04211020}), | |
3887c26c TI |
9449 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK, |
9450 | {0x12, 0x90a60130}, | |
9451 | {0x17, 0x90170110}, | |
9452 | {0x21, 0x03211020}), | |
9e43342b | 9453 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE, |
ad97d667 JHP |
9454 | {0x12, 0x90a60120}, |
9455 | {0x17, 0x90170110}, | |
9456 | {0x21, 0x04211030}), | |
9457 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE, | |
9e43342b CC |
9458 | {0x12, 0x90a60130}, |
9459 | {0x17, 0x90170110}, | |
9460 | {0x21, 0x03211020}), | |
9461 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE, | |
9462 | {0x12, 0x90a60130}, | |
9463 | {0x17, 0x90170110}, | |
9464 | {0x21, 0x03211020}), | |
fbc57129 | 9465 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, |
0a29c57b KY |
9466 | {0x14, 0x90170110}, |
9467 | {0x21, 0x04211020}), | |
fbc57129 KY |
9468 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, |
9469 | {0x14, 0x90170110}, | |
9470 | {0x21, 0x04211030}), | |
3f640970 | 9471 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
f771d5bb HW |
9472 | ALC295_STANDARD_PINS, |
9473 | {0x17, 0x21014020}, | |
9474 | {0x18, 0x21a19030}), | |
9475 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9476 | ALC295_STANDARD_PINS, | |
9477 | {0x17, 0x21014040}, | |
9478 | {0x18, 0x21a19050}), | |
3f307834 HW |
9479 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
9480 | ALC295_STANDARD_PINS), | |
9f502ff5 TI |
9481 | SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, |
9482 | ALC298_STANDARD_PINS, | |
9483 | {0x17, 0x90170110}), | |
977e6276 | 9484 | SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, |
703867e2 WS |
9485 | ALC298_STANDARD_PINS, |
9486 | {0x17, 0x90170140}), | |
9487 | SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9488 | ALC298_STANDARD_PINS, | |
9f502ff5 | 9489 | {0x17, 0x90170150}), |
9f1bc2c4 KHF |
9490 | SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME, |
9491 | {0x12, 0xb7a60140}, | |
9492 | {0x13, 0xb7a60150}, | |
9493 | {0x17, 0x90170110}, | |
9494 | {0x1a, 0x03011020}, | |
9495 | {0x21, 0x03211030}), | |
54324221 JM |
9496 | SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE, |
9497 | {0x12, 0xb7a60140}, | |
9498 | {0x17, 0x90170110}, | |
9499 | {0x1a, 0x03a11030}, | |
9500 | {0x21, 0x03211020}), | |
fcc6c877 KY |
9501 | SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, |
9502 | ALC225_STANDARD_PINS, | |
9503 | {0x12, 0xb7a60130}, | |
fcc6c877 | 9504 | {0x17, 0x90170110}), |
573fcbfd HW |
9505 | SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC, |
9506 | {0x14, 0x01014010}, | |
9507 | {0x17, 0x90170120}, | |
9508 | {0x18, 0x02a11030}, | |
9509 | {0x19, 0x02a1103f}, | |
9510 | {0x21, 0x0221101f}), | |
e1918938 HW |
9511 | {} |
9512 | }; | |
6dda9f4a | 9513 | |
7c0a6939 HW |
9514 | /* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match |
9515 | * more machines, don't need to match all valid pins, just need to match | |
9516 | * all the pins defined in the tbl. Just because of this reason, it is possible | |
9517 | * that a single machine matches multiple tbls, so there is one limitation: | |
9518 | * at most one tbl is allowed to define for the same vendor and same codec | |
9519 | */ | |
9520 | static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = { | |
9521 | SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, | |
9522 | {0x19, 0x40000000}, | |
9523 | {0x1b, 0x40000000}), | |
aed8c7f4 HW |
9524 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9525 | {0x19, 0x40000000}, | |
9526 | {0x1a, 0x40000000}), | |
d64ebdbf HW |
9527 | SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9528 | {0x19, 0x40000000}, | |
9529 | {0x1a, 0x40000000}), | |
5815bdfd HW |
9530 | SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, |
9531 | {0x19, 0x40000000}, | |
9532 | {0x1a, 0x40000000}), | |
7c0a6939 HW |
9533 | {} |
9534 | }; | |
9535 | ||
546bb678 | 9536 | static void alc269_fill_coef(struct hda_codec *codec) |
1d045db9 | 9537 | { |
526af6eb | 9538 | struct alc_spec *spec = codec->spec; |
1d045db9 | 9539 | int val; |
ebb83eeb | 9540 | |
526af6eb | 9541 | if (spec->codec_variant != ALC269_TYPE_ALC269VB) |
546bb678 | 9542 | return; |
526af6eb | 9543 | |
1bb7e43e | 9544 | if ((alc_get_coef0(codec) & 0x00ff) < 0x015) { |
1d045db9 TI |
9545 | alc_write_coef_idx(codec, 0xf, 0x960b); |
9546 | alc_write_coef_idx(codec, 0xe, 0x8817); | |
9547 | } | |
ebb83eeb | 9548 | |
1bb7e43e | 9549 | if ((alc_get_coef0(codec) & 0x00ff) == 0x016) { |
1d045db9 TI |
9550 | alc_write_coef_idx(codec, 0xf, 0x960b); |
9551 | alc_write_coef_idx(codec, 0xe, 0x8814); | |
9552 | } | |
ebb83eeb | 9553 | |
1bb7e43e | 9554 | if ((alc_get_coef0(codec) & 0x00ff) == 0x017) { |
1d045db9 | 9555 | /* Power up output pin */ |
98b24883 | 9556 | alc_update_coef_idx(codec, 0x04, 0, 1<<11); |
1d045db9 | 9557 | } |
ebb83eeb | 9558 | |
1bb7e43e | 9559 | if ((alc_get_coef0(codec) & 0x00ff) == 0x018) { |
1d045db9 | 9560 | val = alc_read_coef_idx(codec, 0xd); |
f3ee07d8 | 9561 | if (val != -1 && (val & 0x0c00) >> 10 != 0x1) { |
1d045db9 TI |
9562 | /* Capless ramp up clock control */ |
9563 | alc_write_coef_idx(codec, 0xd, val | (1<<10)); | |
9564 | } | |
9565 | val = alc_read_coef_idx(codec, 0x17); | |
f3ee07d8 | 9566 | if (val != -1 && (val & 0x01c0) >> 6 != 0x4) { |
1d045db9 TI |
9567 | /* Class D power on reset */ |
9568 | alc_write_coef_idx(codec, 0x17, val | (1<<7)); | |
9569 | } | |
9570 | } | |
ebb83eeb | 9571 | |
98b24883 TI |
9572 | /* HP */ |
9573 | alc_update_coef_idx(codec, 0x4, 0, 1<<11); | |
1d045db9 | 9574 | } |
a7f2371f | 9575 | |
1d045db9 TI |
9576 | /* |
9577 | */ | |
1d045db9 TI |
9578 | static int patch_alc269(struct hda_codec *codec) |
9579 | { | |
9580 | struct alc_spec *spec; | |
3de95173 | 9581 | int err; |
f1d4e28b | 9582 | |
3de95173 | 9583 | err = alc_alloc_spec(codec, 0x0b); |
e16fb6d1 | 9584 | if (err < 0) |
3de95173 TI |
9585 | return err; |
9586 | ||
9587 | spec = codec->spec; | |
08c189f2 | 9588 | spec->gen.shared_mic_vref_pin = 0x18; |
317d9313 | 9589 | codec->power_save_node = 0; |
e16fb6d1 | 9590 | |
225068ab TI |
9591 | #ifdef CONFIG_PM |
9592 | codec->patch_ops.suspend = alc269_suspend; | |
9593 | codec->patch_ops.resume = alc269_resume; | |
9594 | #endif | |
c2d6af53 KY |
9595 | spec->shutup = alc_default_shutup; |
9596 | spec->init_hook = alc_default_init; | |
225068ab | 9597 | |
7639a06c | 9598 | switch (codec->core.vendor_id) { |
065380f0 | 9599 | case 0x10ec0269: |
1d045db9 | 9600 | spec->codec_variant = ALC269_TYPE_ALC269VA; |
1bb7e43e TI |
9601 | switch (alc_get_coef0(codec) & 0x00f0) { |
9602 | case 0x0010: | |
5100cd07 TI |
9603 | if (codec->bus->pci && |
9604 | codec->bus->pci->subsystem_vendor == 0x1025 && | |
e16fb6d1 | 9605 | spec->cdefine.platform_type == 1) |
20ca0c35 | 9606 | err = alc_codec_rename(codec, "ALC271X"); |
1d045db9 | 9607 | spec->codec_variant = ALC269_TYPE_ALC269VB; |
1bb7e43e TI |
9608 | break; |
9609 | case 0x0020: | |
5100cd07 TI |
9610 | if (codec->bus->pci && |
9611 | codec->bus->pci->subsystem_vendor == 0x17aa && | |
e16fb6d1 | 9612 | codec->bus->pci->subsystem_device == 0x21f3) |
20ca0c35 | 9613 | err = alc_codec_rename(codec, "ALC3202"); |
1d045db9 | 9614 | spec->codec_variant = ALC269_TYPE_ALC269VC; |
1bb7e43e | 9615 | break; |
adcc70b2 KY |
9616 | case 0x0030: |
9617 | spec->codec_variant = ALC269_TYPE_ALC269VD; | |
9618 | break; | |
1bb7e43e | 9619 | default: |
1d045db9 | 9620 | alc_fix_pll_init(codec, 0x20, 0x04, 15); |
1bb7e43e | 9621 | } |
e16fb6d1 TI |
9622 | if (err < 0) |
9623 | goto error; | |
c2d6af53 | 9624 | spec->shutup = alc269_shutup; |
546bb678 | 9625 | spec->init_hook = alc269_fill_coef; |
1d045db9 | 9626 | alc269_fill_coef(codec); |
065380f0 KY |
9627 | break; |
9628 | ||
9629 | case 0x10ec0280: | |
9630 | case 0x10ec0290: | |
9631 | spec->codec_variant = ALC269_TYPE_ALC280; | |
9632 | break; | |
9633 | case 0x10ec0282: | |
065380f0 | 9634 | spec->codec_variant = ALC269_TYPE_ALC282; |
7b5c7a02 KY |
9635 | spec->shutup = alc282_shutup; |
9636 | spec->init_hook = alc282_init; | |
065380f0 | 9637 | break; |
2af02be7 KY |
9638 | case 0x10ec0233: |
9639 | case 0x10ec0283: | |
9640 | spec->codec_variant = ALC269_TYPE_ALC283; | |
9641 | spec->shutup = alc283_shutup; | |
9642 | spec->init_hook = alc283_init; | |
9643 | break; | |
065380f0 KY |
9644 | case 0x10ec0284: |
9645 | case 0x10ec0292: | |
9646 | spec->codec_variant = ALC269_TYPE_ALC284; | |
9647 | break; | |
161ebf29 | 9648 | case 0x10ec0293: |
4731d5de | 9649 | spec->codec_variant = ALC269_TYPE_ALC293; |
161ebf29 | 9650 | break; |
7fc7d047 | 9651 | case 0x10ec0286: |
7c665932 | 9652 | case 0x10ec0288: |
7fc7d047 KY |
9653 | spec->codec_variant = ALC269_TYPE_ALC286; |
9654 | break; | |
506b62c3 KY |
9655 | case 0x10ec0298: |
9656 | spec->codec_variant = ALC269_TYPE_ALC298; | |
9657 | break; | |
ea04a1db | 9658 | case 0x10ec0235: |
1d04c9de KY |
9659 | case 0x10ec0255: |
9660 | spec->codec_variant = ALC269_TYPE_ALC255; | |
ab3b8e51 KY |
9661 | spec->shutup = alc256_shutup; |
9662 | spec->init_hook = alc256_init; | |
1d04c9de | 9663 | break; |
1948fc06 | 9664 | case 0x10ec0230: |
736f20a7 | 9665 | case 0x10ec0236: |
4344aec8 KY |
9666 | case 0x10ec0256: |
9667 | spec->codec_variant = ALC269_TYPE_ALC256; | |
4a219ef8 KY |
9668 | spec->shutup = alc256_shutup; |
9669 | spec->init_hook = alc256_init; | |
7d1b6e29 | 9670 | spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */ |
4344aec8 | 9671 | break; |
f429e7e4 KY |
9672 | case 0x10ec0257: |
9673 | spec->codec_variant = ALC269_TYPE_ALC257; | |
88d42b2b KY |
9674 | spec->shutup = alc256_shutup; |
9675 | spec->init_hook = alc256_init; | |
f429e7e4 KY |
9676 | spec->gen.mixer_nid = 0; |
9677 | break; | |
0a6f0600 | 9678 | case 0x10ec0215: |
7fbdcd83 | 9679 | case 0x10ec0245: |
0a6f0600 KY |
9680 | case 0x10ec0285: |
9681 | case 0x10ec0289: | |
9682 | spec->codec_variant = ALC269_TYPE_ALC215; | |
1b6832be KY |
9683 | spec->shutup = alc225_shutup; |
9684 | spec->init_hook = alc225_init; | |
0a6f0600 KY |
9685 | spec->gen.mixer_nid = 0; |
9686 | break; | |
4231430d | 9687 | case 0x10ec0225: |
7d727869 | 9688 | case 0x10ec0295: |
28f1f9b2 | 9689 | case 0x10ec0299: |
4231430d | 9690 | spec->codec_variant = ALC269_TYPE_ALC225; |
da911b1f KY |
9691 | spec->shutup = alc225_shutup; |
9692 | spec->init_hook = alc225_init; | |
c1350bff | 9693 | spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */ |
4231430d | 9694 | break; |
99cee034 KY |
9695 | case 0x10ec0287: |
9696 | spec->codec_variant = ALC269_TYPE_ALC287; | |
9697 | spec->shutup = alc225_shutup; | |
9698 | spec->init_hook = alc225_init; | |
9699 | spec->gen.mixer_nid = 0; /* no loopback on ALC287 */ | |
9700 | break; | |
dcd4f0db KY |
9701 | case 0x10ec0234: |
9702 | case 0x10ec0274: | |
9703 | case 0x10ec0294: | |
9704 | spec->codec_variant = ALC269_TYPE_ALC294; | |
532a7784 | 9705 | spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */ |
71683c32 | 9706 | alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */ |
693abe11 | 9707 | spec->init_hook = alc294_init; |
dcd4f0db | 9708 | break; |
1078bef0 KY |
9709 | case 0x10ec0300: |
9710 | spec->codec_variant = ALC269_TYPE_ALC300; | |
9711 | spec->gen.mixer_nid = 0; /* no loopback on ALC300 */ | |
dcd4f0db | 9712 | break; |
f0778871 KY |
9713 | case 0x10ec0623: |
9714 | spec->codec_variant = ALC269_TYPE_ALC623; | |
9715 | break; | |
6fbae35a KY |
9716 | case 0x10ec0700: |
9717 | case 0x10ec0701: | |
9718 | case 0x10ec0703: | |
83629532 | 9719 | case 0x10ec0711: |
6fbae35a KY |
9720 | spec->codec_variant = ALC269_TYPE_ALC700; |
9721 | spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */ | |
2d7fe618 | 9722 | alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */ |
693abe11 | 9723 | spec->init_hook = alc294_init; |
6fbae35a KY |
9724 | break; |
9725 | ||
1d045db9 | 9726 | } |
6dda9f4a | 9727 | |
ad60d502 | 9728 | if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) { |
97a26570 | 9729 | spec->has_alc5505_dsp = 1; |
ad60d502 KY |
9730 | spec->init_hook = alc5505_dsp_init; |
9731 | } | |
9732 | ||
c9af753f TI |
9733 | alc_pre_init(codec); |
9734 | ||
efe55732 TI |
9735 | snd_hda_pick_fixup(codec, alc269_fixup_models, |
9736 | alc269_fixup_tbl, alc269_fixups); | |
13d9c6b9 TI |
9737 | /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and |
9738 | * the quirk breaks the latter (bko#214101). | |
9739 | * Clear the wrong entry. | |
9740 | */ | |
9741 | if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 && | |
9742 | codec->core.vendor_id == 0x10ec0294) { | |
9743 | codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n"); | |
9744 | codec->fixup_id = HDA_FIXUP_ID_NOT_SET; | |
9745 | } | |
9746 | ||
0fc1e447 | 9747 | snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true); |
7c0a6939 | 9748 | snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false); |
efe55732 TI |
9749 | snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl, |
9750 | alc269_fixups); | |
9751 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); | |
9752 | ||
9753 | alc_auto_parse_customize_define(codec); | |
9754 | ||
9755 | if (has_cdefine_beep(codec)) | |
9756 | spec->gen.beep_nid = 0x01; | |
9757 | ||
a4297b5d TI |
9758 | /* automatic parse from the BIOS config */ |
9759 | err = alc269_parse_auto_config(codec); | |
e16fb6d1 TI |
9760 | if (err < 0) |
9761 | goto error; | |
6dda9f4a | 9762 | |
fea80fae TI |
9763 | if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) { |
9764 | err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT); | |
9765 | if (err < 0) | |
9766 | goto error; | |
9767 | } | |
f1d4e28b | 9768 | |
1727a771 | 9769 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 9770 | |
1d045db9 | 9771 | return 0; |
e16fb6d1 TI |
9772 | |
9773 | error: | |
9774 | alc_free(codec); | |
9775 | return err; | |
1d045db9 | 9776 | } |
f1d4e28b | 9777 | |
1d045db9 TI |
9778 | /* |
9779 | * ALC861 | |
9780 | */ | |
622e84cd | 9781 | |
1d045db9 | 9782 | static int alc861_parse_auto_config(struct hda_codec *codec) |
6dda9f4a | 9783 | { |
1d045db9 | 9784 | static const hda_nid_t alc861_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
9785 | static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 }; |
9786 | return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids); | |
604401a9 TI |
9787 | } |
9788 | ||
1d045db9 TI |
9789 | /* Pin config fixes */ |
9790 | enum { | |
e652f4c8 TI |
9791 | ALC861_FIXUP_FSC_AMILO_PI1505, |
9792 | ALC861_FIXUP_AMP_VREF_0F, | |
9793 | ALC861_FIXUP_NO_JACK_DETECT, | |
9794 | ALC861_FIXUP_ASUS_A6RP, | |
6ddf0fd1 | 9795 | ALC660_FIXUP_ASUS_W7J, |
1d045db9 | 9796 | }; |
7085ec12 | 9797 | |
31150f23 TI |
9798 | /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */ |
9799 | static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec, | |
1727a771 | 9800 | const struct hda_fixup *fix, int action) |
31150f23 TI |
9801 | { |
9802 | struct alc_spec *spec = codec->spec; | |
9803 | unsigned int val; | |
9804 | ||
1727a771 | 9805 | if (action != HDA_FIXUP_ACT_INIT) |
31150f23 | 9806 | return; |
d3f02d60 | 9807 | val = snd_hda_codec_get_pin_target(codec, 0x0f); |
31150f23 TI |
9808 | if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))) |
9809 | val |= AC_PINCTL_IN_EN; | |
9810 | val |= AC_PINCTL_VREF_50; | |
cdd03ced | 9811 | snd_hda_set_pin_ctl(codec, 0x0f, val); |
08c189f2 | 9812 | spec->gen.keep_vref_in_automute = 1; |
31150f23 TI |
9813 | } |
9814 | ||
e652f4c8 TI |
9815 | /* suppress the jack-detection */ |
9816 | static void alc_fixup_no_jack_detect(struct hda_codec *codec, | |
1727a771 | 9817 | const struct hda_fixup *fix, int action) |
e652f4c8 | 9818 | { |
1727a771 | 9819 | if (action == HDA_FIXUP_ACT_PRE_PROBE) |
e652f4c8 | 9820 | codec->no_jack_detect = 1; |
7d7eb9ea | 9821 | } |
e652f4c8 | 9822 | |
1727a771 | 9823 | static const struct hda_fixup alc861_fixups[] = { |
e652f4c8 | 9824 | [ALC861_FIXUP_FSC_AMILO_PI1505] = { |
1727a771 TI |
9825 | .type = HDA_FIXUP_PINS, |
9826 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
9827 | { 0x0b, 0x0221101f }, /* HP */ |
9828 | { 0x0f, 0x90170310 }, /* speaker */ | |
9829 | { } | |
9830 | } | |
9831 | }, | |
e652f4c8 | 9832 | [ALC861_FIXUP_AMP_VREF_0F] = { |
1727a771 | 9833 | .type = HDA_FIXUP_FUNC, |
31150f23 | 9834 | .v.func = alc861_fixup_asus_amp_vref_0f, |
3b25eb69 | 9835 | }, |
e652f4c8 | 9836 | [ALC861_FIXUP_NO_JACK_DETECT] = { |
1727a771 | 9837 | .type = HDA_FIXUP_FUNC, |
e652f4c8 TI |
9838 | .v.func = alc_fixup_no_jack_detect, |
9839 | }, | |
9840 | [ALC861_FIXUP_ASUS_A6RP] = { | |
1727a771 | 9841 | .type = HDA_FIXUP_FUNC, |
e652f4c8 TI |
9842 | .v.func = alc861_fixup_asus_amp_vref_0f, |
9843 | .chained = true, | |
9844 | .chain_id = ALC861_FIXUP_NO_JACK_DETECT, | |
6ddf0fd1 TI |
9845 | }, |
9846 | [ALC660_FIXUP_ASUS_W7J] = { | |
9847 | .type = HDA_FIXUP_VERBS, | |
9848 | .v.verbs = (const struct hda_verb[]) { | |
9849 | /* ASUS W7J needs a magic pin setup on unused NID 0x10 | |
9850 | * for enabling outputs | |
9851 | */ | |
9852 | {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24}, | |
9853 | { } | |
9854 | }, | |
e652f4c8 | 9855 | } |
1d045db9 | 9856 | }; |
7085ec12 | 9857 | |
1d045db9 | 9858 | static const struct snd_pci_quirk alc861_fixup_tbl[] = { |
6ddf0fd1 | 9859 | SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J), |
e7ca237b | 9860 | SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J), |
e652f4c8 TI |
9861 | SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP), |
9862 | SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F), | |
9863 | SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT), | |
defce244 | 9864 | SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F), |
e652f4c8 | 9865 | SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505), |
1d045db9 TI |
9866 | {} |
9867 | }; | |
3af9ee6b | 9868 | |
1d045db9 TI |
9869 | /* |
9870 | */ | |
1d045db9 | 9871 | static int patch_alc861(struct hda_codec *codec) |
7085ec12 | 9872 | { |
1d045db9 | 9873 | struct alc_spec *spec; |
1d045db9 | 9874 | int err; |
7085ec12 | 9875 | |
3de95173 TI |
9876 | err = alc_alloc_spec(codec, 0x15); |
9877 | if (err < 0) | |
9878 | return err; | |
1d045db9 | 9879 | |
3de95173 | 9880 | spec = codec->spec; |
2722b535 TI |
9881 | if (has_cdefine_beep(codec)) |
9882 | spec->gen.beep_nid = 0x23; | |
1d045db9 | 9883 | |
225068ab TI |
9884 | #ifdef CONFIG_PM |
9885 | spec->power_hook = alc_power_eapd; | |
9886 | #endif | |
9887 | ||
c9af753f TI |
9888 | alc_pre_init(codec); |
9889 | ||
1727a771 TI |
9890 | snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups); |
9891 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); | |
3af9ee6b | 9892 | |
cb4e4824 TI |
9893 | /* automatic parse from the BIOS config */ |
9894 | err = alc861_parse_auto_config(codec); | |
e16fb6d1 TI |
9895 | if (err < 0) |
9896 | goto error; | |
3af9ee6b | 9897 | |
fea80fae TI |
9898 | if (!spec->gen.no_analog) { |
9899 | err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT); | |
9900 | if (err < 0) | |
9901 | goto error; | |
9902 | } | |
7085ec12 | 9903 | |
1727a771 | 9904 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 9905 | |
1d045db9 | 9906 | return 0; |
e16fb6d1 TI |
9907 | |
9908 | error: | |
9909 | alc_free(codec); | |
9910 | return err; | |
7085ec12 TI |
9911 | } |
9912 | ||
1d045db9 TI |
9913 | /* |
9914 | * ALC861-VD support | |
9915 | * | |
9916 | * Based on ALC882 | |
9917 | * | |
9918 | * In addition, an independent DAC | |
9919 | */ | |
1d045db9 | 9920 | static int alc861vd_parse_auto_config(struct hda_codec *codec) |
bc9f98a9 | 9921 | { |
1d045db9 | 9922 | static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
9923 | static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 }; |
9924 | return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids); | |
ce764ab2 TI |
9925 | } |
9926 | ||
1d045db9 | 9927 | enum { |
8fdcb6fe TI |
9928 | ALC660VD_FIX_ASUS_GPIO1, |
9929 | ALC861VD_FIX_DALLAS, | |
1d045db9 | 9930 | }; |
ce764ab2 | 9931 | |
8fdcb6fe TI |
9932 | /* exclude VREF80 */ |
9933 | static void alc861vd_fixup_dallas(struct hda_codec *codec, | |
1727a771 | 9934 | const struct hda_fixup *fix, int action) |
8fdcb6fe | 9935 | { |
1727a771 | 9936 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
b78562b1 TI |
9937 | snd_hda_override_pin_caps(codec, 0x18, 0x00000734); |
9938 | snd_hda_override_pin_caps(codec, 0x19, 0x0000073c); | |
8fdcb6fe TI |
9939 | } |
9940 | } | |
9941 | ||
df73d83f TI |
9942 | /* reset GPIO1 */ |
9943 | static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec, | |
9944 | const struct hda_fixup *fix, int action) | |
9945 | { | |
9946 | struct alc_spec *spec = codec->spec; | |
9947 | ||
9948 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
9949 | spec->gpio_mask |= 0x02; | |
9950 | alc_fixup_gpio(codec, action, 0x01); | |
9951 | } | |
9952 | ||
1727a771 | 9953 | static const struct hda_fixup alc861vd_fixups[] = { |
1d045db9 | 9954 | [ALC660VD_FIX_ASUS_GPIO1] = { |
df73d83f TI |
9955 | .type = HDA_FIXUP_FUNC, |
9956 | .v.func = alc660vd_fixup_asus_gpio1, | |
1d045db9 | 9957 | }, |
8fdcb6fe | 9958 | [ALC861VD_FIX_DALLAS] = { |
1727a771 | 9959 | .type = HDA_FIXUP_FUNC, |
8fdcb6fe TI |
9960 | .v.func = alc861vd_fixup_dallas, |
9961 | }, | |
1d045db9 | 9962 | }; |
ce764ab2 | 9963 | |
1d045db9 | 9964 | static const struct snd_pci_quirk alc861vd_fixup_tbl[] = { |
8fdcb6fe | 9965 | SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS), |
1d045db9 | 9966 | SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1), |
8fdcb6fe | 9967 | SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS), |
1d045db9 TI |
9968 | {} |
9969 | }; | |
ce764ab2 | 9970 | |
1d045db9 TI |
9971 | /* |
9972 | */ | |
1d045db9 | 9973 | static int patch_alc861vd(struct hda_codec *codec) |
ce764ab2 | 9974 | { |
1d045db9 | 9975 | struct alc_spec *spec; |
cb4e4824 | 9976 | int err; |
ce764ab2 | 9977 | |
3de95173 TI |
9978 | err = alc_alloc_spec(codec, 0x0b); |
9979 | if (err < 0) | |
9980 | return err; | |
1d045db9 | 9981 | |
3de95173 | 9982 | spec = codec->spec; |
2722b535 TI |
9983 | if (has_cdefine_beep(codec)) |
9984 | spec->gen.beep_nid = 0x23; | |
1d045db9 | 9985 | |
225068ab TI |
9986 | spec->shutup = alc_eapd_shutup; |
9987 | ||
c9af753f TI |
9988 | alc_pre_init(codec); |
9989 | ||
1727a771 TI |
9990 | snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups); |
9991 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); | |
1d045db9 | 9992 | |
cb4e4824 TI |
9993 | /* automatic parse from the BIOS config */ |
9994 | err = alc861vd_parse_auto_config(codec); | |
e16fb6d1 TI |
9995 | if (err < 0) |
9996 | goto error; | |
ce764ab2 | 9997 | |
fea80fae TI |
9998 | if (!spec->gen.no_analog) { |
9999 | err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | |
10000 | if (err < 0) | |
10001 | goto error; | |
10002 | } | |
1d045db9 | 10003 | |
1727a771 | 10004 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 10005 | |
ce764ab2 | 10006 | return 0; |
e16fb6d1 TI |
10007 | |
10008 | error: | |
10009 | alc_free(codec); | |
10010 | return err; | |
ce764ab2 TI |
10011 | } |
10012 | ||
1d045db9 TI |
10013 | /* |
10014 | * ALC662 support | |
10015 | * | |
10016 | * ALC662 is almost identical with ALC880 but has cleaner and more flexible | |
10017 | * configuration. Each pin widget can choose any input DACs and a mixer. | |
10018 | * Each ADC is connected from a mixer of all inputs. This makes possible | |
10019 | * 6-channel independent captures. | |
10020 | * | |
10021 | * In addition, an independent DAC for the multi-playback (not used in this | |
10022 | * driver yet). | |
10023 | */ | |
1d045db9 TI |
10024 | |
10025 | /* | |
10026 | * BIOS auto configuration | |
10027 | */ | |
10028 | ||
bc9f98a9 KY |
10029 | static int alc662_parse_auto_config(struct hda_codec *codec) |
10030 | { | |
4c6d72d1 | 10031 | static const hda_nid_t alc662_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
10032 | static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 }; |
10033 | static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | |
10034 | const hda_nid_t *ssids; | |
ee979a14 | 10035 | |
7639a06c TI |
10036 | if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 || |
10037 | codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 || | |
10038 | codec->core.vendor_id == 0x10ec0671) | |
3e6179b8 | 10039 | ssids = alc663_ssids; |
6227cdce | 10040 | else |
3e6179b8 TI |
10041 | ssids = alc662_ssids; |
10042 | return alc_parse_auto_config(codec, alc662_ignore, ssids); | |
bc9f98a9 KY |
10043 | } |
10044 | ||
6be7948f | 10045 | static void alc272_fixup_mario(struct hda_codec *codec, |
1727a771 | 10046 | const struct hda_fixup *fix, int action) |
6fc398cb | 10047 | { |
9bb1f06f | 10048 | if (action != HDA_FIXUP_ACT_PRE_PROBE) |
6fc398cb | 10049 | return; |
6be7948f TB |
10050 | if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT, |
10051 | (0x3b << AC_AMPCAP_OFFSET_SHIFT) | | |
10052 | (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) | | |
10053 | (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) | | |
10054 | (0 << AC_AMPCAP_MUTE_SHIFT))) | |
4e76a883 | 10055 | codec_warn(codec, "failed to override amp caps for NID 0x2\n"); |
6be7948f TB |
10056 | } |
10057 | ||
8e383953 TI |
10058 | static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = { |
10059 | { .channels = 2, | |
10060 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } }, | |
10061 | { .channels = 4, | |
10062 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, | |
10063 | SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */ | |
10064 | { } | |
10065 | }; | |
10066 | ||
10067 | /* override the 2.1 chmap */ | |
eb9ca3ab | 10068 | static void alc_fixup_bass_chmap(struct hda_codec *codec, |
8e383953 TI |
10069 | const struct hda_fixup *fix, int action) |
10070 | { | |
10071 | if (action == HDA_FIXUP_ACT_BUILD) { | |
10072 | struct alc_spec *spec = codec->spec; | |
bbbc7e85 | 10073 | spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps; |
8e383953 TI |
10074 | } |
10075 | } | |
10076 | ||
bf68665d TI |
10077 | /* avoid D3 for keeping GPIO up */ |
10078 | static unsigned int gpio_led_power_filter(struct hda_codec *codec, | |
10079 | hda_nid_t nid, | |
10080 | unsigned int power_state) | |
10081 | { | |
10082 | struct alc_spec *spec = codec->spec; | |
d261eec8 | 10083 | if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data) |
bf68665d TI |
10084 | return AC_PWRST_D0; |
10085 | return power_state; | |
10086 | } | |
10087 | ||
3e887f37 TI |
10088 | static void alc662_fixup_led_gpio1(struct hda_codec *codec, |
10089 | const struct hda_fixup *fix, int action) | |
10090 | { | |
10091 | struct alc_spec *spec = codec->spec; | |
3e887f37 | 10092 | |
01e4a275 | 10093 | alc_fixup_hp_gpio_led(codec, action, 0x01, 0); |
3e887f37 | 10094 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
0f32fd19 | 10095 | spec->mute_led_polarity = 1; |
bf68665d | 10096 | codec->power_filter = gpio_led_power_filter; |
3e887f37 TI |
10097 | } |
10098 | } | |
10099 | ||
c6790c8e KY |
10100 | static void alc662_usi_automute_hook(struct hda_codec *codec, |
10101 | struct hda_jack_callback *jack) | |
10102 | { | |
10103 | struct alc_spec *spec = codec->spec; | |
10104 | int vref; | |
10105 | msleep(200); | |
10106 | snd_hda_gen_hp_automute(codec, jack); | |
10107 | ||
10108 | vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0; | |
10109 | msleep(100); | |
10110 | snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | |
10111 | vref); | |
10112 | } | |
10113 | ||
10114 | static void alc662_fixup_usi_headset_mic(struct hda_codec *codec, | |
10115 | const struct hda_fixup *fix, int action) | |
10116 | { | |
10117 | struct alc_spec *spec = codec->spec; | |
10118 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
10119 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
10120 | spec->gen.hp_automute_hook = alc662_usi_automute_hook; | |
10121 | } | |
10122 | } | |
10123 | ||
00066e97 SB |
10124 | static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec, |
10125 | struct hda_jack_callback *cb) | |
10126 | { | |
10127 | /* surround speakers at 0x1b already get muted automatically when | |
10128 | * headphones are plugged in, but we have to mute/unmute the remaining | |
10129 | * channels manually: | |
10130 | * 0x15 - front left/front right | |
10131 | * 0x18 - front center/ LFE | |
10132 | */ | |
10133 | if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) { | |
10134 | snd_hda_set_pin_ctl_cache(codec, 0x15, 0); | |
10135 | snd_hda_set_pin_ctl_cache(codec, 0x18, 0); | |
10136 | } else { | |
10137 | snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT); | |
10138 | snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT); | |
10139 | } | |
10140 | } | |
10141 | ||
10142 | static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec, | |
10143 | const struct hda_fixup *fix, int action) | |
10144 | { | |
10145 | /* Pin 0x1b: shared headphones jack and surround speakers */ | |
10146 | if (!is_jack_detectable(codec, 0x1b)) | |
10147 | return; | |
10148 | ||
10149 | switch (action) { | |
10150 | case HDA_FIXUP_ACT_PRE_PROBE: | |
10151 | snd_hda_jack_detect_enable_callback(codec, 0x1b, | |
10152 | alc662_aspire_ethos_mute_speakers); | |
336820c4 TI |
10153 | /* subwoofer needs an extra GPIO setting to become audible */ |
10154 | alc_setup_gpio(codec, 0x02); | |
00066e97 SB |
10155 | break; |
10156 | case HDA_FIXUP_ACT_INIT: | |
10157 | /* Make sure to start in a correct state, i.e. if | |
10158 | * headphones have been plugged in before powering up the system | |
10159 | */ | |
10160 | alc662_aspire_ethos_mute_speakers(codec, NULL); | |
10161 | break; | |
10162 | } | |
10163 | } | |
10164 | ||
5af29028 KY |
10165 | static void alc671_fixup_hp_headset_mic2(struct hda_codec *codec, |
10166 | const struct hda_fixup *fix, int action) | |
10167 | { | |
10168 | struct alc_spec *spec = codec->spec; | |
10169 | ||
10170 | static const struct hda_pintbl pincfgs[] = { | |
10171 | { 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */ | |
10172 | { 0x1b, 0x0181304f }, | |
10173 | { } | |
10174 | }; | |
10175 | ||
10176 | switch (action) { | |
10177 | case HDA_FIXUP_ACT_PRE_PROBE: | |
10178 | spec->gen.mixer_nid = 0; | |
10179 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
10180 | snd_hda_apply_pincfgs(codec, pincfgs); | |
10181 | break; | |
10182 | case HDA_FIXUP_ACT_INIT: | |
10183 | alc_write_coef_idx(codec, 0x19, 0xa054); | |
10184 | break; | |
10185 | } | |
10186 | } | |
10187 | ||
6b0f95c4 | 10188 | static const struct coef_fw alc668_coefs[] = { |
f3f9185f KY |
10189 | WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0), |
10190 | WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80), | |
10191 | WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0), | |
10192 | WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f), | |
10193 | WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001), | |
10194 | WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940), | |
10195 | WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0), | |
10196 | WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418), | |
10197 | WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468), | |
10198 | WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418), | |
10199 | WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00), | |
10200 | WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000), | |
10201 | WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0), | |
10202 | WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480), | |
10203 | WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0), | |
10204 | WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040), | |
10205 | WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697), | |
10206 | WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab), | |
10207 | WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02), | |
10208 | WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6), | |
10209 | {} | |
10210 | }; | |
10211 | ||
10212 | static void alc668_restore_default_value(struct hda_codec *codec) | |
10213 | { | |
10214 | alc_process_coef_fw(codec, alc668_coefs); | |
10215 | } | |
10216 | ||
6cb3b707 | 10217 | enum { |
2df03514 | 10218 | ALC662_FIXUP_ASPIRE, |
3e887f37 | 10219 | ALC662_FIXUP_LED_GPIO1, |
6cb3b707 | 10220 | ALC662_FIXUP_IDEAPAD, |
6be7948f | 10221 | ALC272_FIXUP_MARIO, |
f1ec5be1 | 10222 | ALC662_FIXUP_CZC_ET26, |
d2ebd479 | 10223 | ALC662_FIXUP_CZC_P10T, |
94024cd1 | 10224 | ALC662_FIXUP_SKU_IGNORE, |
e59ea3ed | 10225 | ALC662_FIXUP_HP_RP5800, |
53c334ad TI |
10226 | ALC662_FIXUP_ASUS_MODE1, |
10227 | ALC662_FIXUP_ASUS_MODE2, | |
10228 | ALC662_FIXUP_ASUS_MODE3, | |
10229 | ALC662_FIXUP_ASUS_MODE4, | |
10230 | ALC662_FIXUP_ASUS_MODE5, | |
10231 | ALC662_FIXUP_ASUS_MODE6, | |
10232 | ALC662_FIXUP_ASUS_MODE7, | |
10233 | ALC662_FIXUP_ASUS_MODE8, | |
1565cc35 | 10234 | ALC662_FIXUP_NO_JACK_DETECT, |
edfe3bfc | 10235 | ALC662_FIXUP_ZOTAC_Z68, |
125821ae | 10236 | ALC662_FIXUP_INV_DMIC, |
1f8b46cd | 10237 | ALC662_FIXUP_DELL_MIC_NO_PRESENCE, |
73bdd597 | 10238 | ALC668_FIXUP_DELL_MIC_NO_PRESENCE, |
1f8b46cd | 10239 | ALC662_FIXUP_HEADSET_MODE, |
73bdd597 | 10240 | ALC668_FIXUP_HEADSET_MODE, |
8e54b4ac | 10241 | ALC662_FIXUP_BASS_MODE4_CHMAP, |
61a75f13 | 10242 | ALC662_FIXUP_BASS_16, |
a30c9aaa | 10243 | ALC662_FIXUP_BASS_1A, |
8e54b4ac | 10244 | ALC662_FIXUP_BASS_CHMAP, |
493a52a9 | 10245 | ALC668_FIXUP_AUTO_MUTE, |
5e6db669 | 10246 | ALC668_FIXUP_DELL_DISABLE_AAMIX, |
033b0a7c | 10247 | ALC668_FIXUP_DELL_XPS13, |
9d4dc584 | 10248 | ALC662_FIXUP_ASUS_Nx50, |
fc7438b1 | 10249 | ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE, |
3231e205 | 10250 | ALC668_FIXUP_ASUS_Nx51, |
5b7c5e1f | 10251 | ALC668_FIXUP_MIC_COEF, |
11ba6111 | 10252 | ALC668_FIXUP_ASUS_G751, |
78f4f7c2 KY |
10253 | ALC891_FIXUP_HEADSET_MODE, |
10254 | ALC891_FIXUP_DELL_MIC_NO_PRESENCE, | |
9b51fe3e | 10255 | ALC662_FIXUP_ACER_VERITON, |
1a3f0991 | 10256 | ALC892_FIXUP_ASROCK_MOBO, |
c6790c8e KY |
10257 | ALC662_FIXUP_USI_FUNC, |
10258 | ALC662_FIXUP_USI_HEADSET_MODE, | |
ca169cc2 | 10259 | ALC662_FIXUP_LENOVO_MULTI_CODECS, |
00066e97 | 10260 | ALC669_FIXUP_ACER_ASPIRE_ETHOS, |
00066e97 | 10261 | ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET, |
5af29028 | 10262 | ALC671_FIXUP_HP_HEADSET_MIC2, |
d858c706 | 10263 | ALC662_FIXUP_ACER_X2660G_HEADSET_MODE, |
a124458a | 10264 | ALC662_FIXUP_ACER_NITRO_HEADSET_MODE, |
a3fd1a98 HW |
10265 | ALC668_FIXUP_ASUS_NO_HEADSET_MIC, |
10266 | ALC668_FIXUP_HEADSET_MIC, | |
10267 | ALC668_FIXUP_MIC_DET_COEF, | |
6cb3b707 DH |
10268 | }; |
10269 | ||
1727a771 | 10270 | static const struct hda_fixup alc662_fixups[] = { |
2df03514 | 10271 | [ALC662_FIXUP_ASPIRE] = { |
1727a771 TI |
10272 | .type = HDA_FIXUP_PINS, |
10273 | .v.pins = (const struct hda_pintbl[]) { | |
2df03514 DC |
10274 | { 0x15, 0x99130112 }, /* subwoofer */ |
10275 | { } | |
10276 | } | |
10277 | }, | |
3e887f37 TI |
10278 | [ALC662_FIXUP_LED_GPIO1] = { |
10279 | .type = HDA_FIXUP_FUNC, | |
10280 | .v.func = alc662_fixup_led_gpio1, | |
10281 | }, | |
6cb3b707 | 10282 | [ALC662_FIXUP_IDEAPAD] = { |
1727a771 TI |
10283 | .type = HDA_FIXUP_PINS, |
10284 | .v.pins = (const struct hda_pintbl[]) { | |
6cb3b707 DH |
10285 | { 0x17, 0x99130112 }, /* subwoofer */ |
10286 | { } | |
3e887f37 TI |
10287 | }, |
10288 | .chained = true, | |
10289 | .chain_id = ALC662_FIXUP_LED_GPIO1, | |
6cb3b707 | 10290 | }, |
6be7948f | 10291 | [ALC272_FIXUP_MARIO] = { |
1727a771 | 10292 | .type = HDA_FIXUP_FUNC, |
b5bfbc67 | 10293 | .v.func = alc272_fixup_mario, |
d2ebd479 | 10294 | }, |
f1ec5be1 HC |
10295 | [ALC662_FIXUP_CZC_ET26] = { |
10296 | .type = HDA_FIXUP_PINS, | |
10297 | .v.pins = (const struct hda_pintbl[]) { | |
10298 | {0x12, 0x403cc000}, | |
10299 | {0x14, 0x90170110}, /* speaker */ | |
10300 | {0x15, 0x411111f0}, | |
10301 | {0x16, 0x411111f0}, | |
10302 | {0x18, 0x01a19030}, /* mic */ | |
10303 | {0x19, 0x90a7013f}, /* int-mic */ | |
10304 | {0x1a, 0x01014020}, | |
10305 | {0x1b, 0x0121401f}, | |
10306 | {0x1c, 0x411111f0}, | |
10307 | {0x1d, 0x411111f0}, | |
10308 | {0x1e, 0x40478e35}, | |
10309 | {} | |
10310 | }, | |
10311 | .chained = true, | |
10312 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
10313 | }, | |
d2ebd479 | 10314 | [ALC662_FIXUP_CZC_P10T] = { |
1727a771 | 10315 | .type = HDA_FIXUP_VERBS, |
d2ebd479 AA |
10316 | .v.verbs = (const struct hda_verb[]) { |
10317 | {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0}, | |
10318 | {} | |
10319 | } | |
10320 | }, | |
94024cd1 | 10321 | [ALC662_FIXUP_SKU_IGNORE] = { |
1727a771 | 10322 | .type = HDA_FIXUP_FUNC, |
23d30f28 | 10323 | .v.func = alc_fixup_sku_ignore, |
c6b35874 | 10324 | }, |
e59ea3ed | 10325 | [ALC662_FIXUP_HP_RP5800] = { |
1727a771 TI |
10326 | .type = HDA_FIXUP_PINS, |
10327 | .v.pins = (const struct hda_pintbl[]) { | |
e59ea3ed TI |
10328 | { 0x14, 0x0221201f }, /* HP out */ |
10329 | { } | |
10330 | }, | |
10331 | .chained = true, | |
10332 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
10333 | }, | |
53c334ad | 10334 | [ALC662_FIXUP_ASUS_MODE1] = { |
1727a771 TI |
10335 | .type = HDA_FIXUP_PINS, |
10336 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
10337 | { 0x14, 0x99130110 }, /* speaker */ |
10338 | { 0x18, 0x01a19c20 }, /* mic */ | |
10339 | { 0x19, 0x99a3092f }, /* int-mic */ | |
10340 | { 0x21, 0x0121401f }, /* HP out */ | |
10341 | { } | |
10342 | }, | |
10343 | .chained = true, | |
10344 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
10345 | }, | |
10346 | [ALC662_FIXUP_ASUS_MODE2] = { | |
1727a771 TI |
10347 | .type = HDA_FIXUP_PINS, |
10348 | .v.pins = (const struct hda_pintbl[]) { | |
2996bdba TI |
10349 | { 0x14, 0x99130110 }, /* speaker */ |
10350 | { 0x18, 0x01a19820 }, /* mic */ | |
10351 | { 0x19, 0x99a3092f }, /* int-mic */ | |
10352 | { 0x1b, 0x0121401f }, /* HP out */ | |
10353 | { } | |
10354 | }, | |
53c334ad TI |
10355 | .chained = true, |
10356 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
10357 | }, | |
10358 | [ALC662_FIXUP_ASUS_MODE3] = { | |
1727a771 TI |
10359 | .type = HDA_FIXUP_PINS, |
10360 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
10361 | { 0x14, 0x99130110 }, /* speaker */ |
10362 | { 0x15, 0x0121441f }, /* HP */ | |
10363 | { 0x18, 0x01a19840 }, /* mic */ | |
10364 | { 0x19, 0x99a3094f }, /* int-mic */ | |
10365 | { 0x21, 0x01211420 }, /* HP2 */ | |
10366 | { } | |
10367 | }, | |
10368 | .chained = true, | |
10369 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
10370 | }, | |
10371 | [ALC662_FIXUP_ASUS_MODE4] = { | |
1727a771 TI |
10372 | .type = HDA_FIXUP_PINS, |
10373 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
10374 | { 0x14, 0x99130110 }, /* speaker */ |
10375 | { 0x16, 0x99130111 }, /* speaker */ | |
10376 | { 0x18, 0x01a19840 }, /* mic */ | |
10377 | { 0x19, 0x99a3094f }, /* int-mic */ | |
10378 | { 0x21, 0x0121441f }, /* HP */ | |
10379 | { } | |
10380 | }, | |
10381 | .chained = true, | |
10382 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
10383 | }, | |
10384 | [ALC662_FIXUP_ASUS_MODE5] = { | |
1727a771 TI |
10385 | .type = HDA_FIXUP_PINS, |
10386 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
10387 | { 0x14, 0x99130110 }, /* speaker */ |
10388 | { 0x15, 0x0121441f }, /* HP */ | |
10389 | { 0x16, 0x99130111 }, /* speaker */ | |
10390 | { 0x18, 0x01a19840 }, /* mic */ | |
10391 | { 0x19, 0x99a3094f }, /* int-mic */ | |
10392 | { } | |
10393 | }, | |
10394 | .chained = true, | |
10395 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
10396 | }, | |
10397 | [ALC662_FIXUP_ASUS_MODE6] = { | |
1727a771 TI |
10398 | .type = HDA_FIXUP_PINS, |
10399 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
10400 | { 0x14, 0x99130110 }, /* speaker */ |
10401 | { 0x15, 0x01211420 }, /* HP2 */ | |
10402 | { 0x18, 0x01a19840 }, /* mic */ | |
10403 | { 0x19, 0x99a3094f }, /* int-mic */ | |
10404 | { 0x1b, 0x0121441f }, /* HP */ | |
10405 | { } | |
10406 | }, | |
10407 | .chained = true, | |
10408 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
10409 | }, | |
10410 | [ALC662_FIXUP_ASUS_MODE7] = { | |
1727a771 TI |
10411 | .type = HDA_FIXUP_PINS, |
10412 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
10413 | { 0x14, 0x99130110 }, /* speaker */ |
10414 | { 0x17, 0x99130111 }, /* speaker */ | |
10415 | { 0x18, 0x01a19840 }, /* mic */ | |
10416 | { 0x19, 0x99a3094f }, /* int-mic */ | |
10417 | { 0x1b, 0x01214020 }, /* HP */ | |
10418 | { 0x21, 0x0121401f }, /* HP */ | |
10419 | { } | |
10420 | }, | |
10421 | .chained = true, | |
10422 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
10423 | }, | |
10424 | [ALC662_FIXUP_ASUS_MODE8] = { | |
1727a771 TI |
10425 | .type = HDA_FIXUP_PINS, |
10426 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
10427 | { 0x14, 0x99130110 }, /* speaker */ |
10428 | { 0x12, 0x99a30970 }, /* int-mic */ | |
10429 | { 0x15, 0x01214020 }, /* HP */ | |
10430 | { 0x17, 0x99130111 }, /* speaker */ | |
10431 | { 0x18, 0x01a19840 }, /* mic */ | |
10432 | { 0x21, 0x0121401f }, /* HP */ | |
10433 | { } | |
10434 | }, | |
10435 | .chained = true, | |
10436 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
2996bdba | 10437 | }, |
1565cc35 | 10438 | [ALC662_FIXUP_NO_JACK_DETECT] = { |
1727a771 | 10439 | .type = HDA_FIXUP_FUNC, |
1565cc35 TI |
10440 | .v.func = alc_fixup_no_jack_detect, |
10441 | }, | |
edfe3bfc | 10442 | [ALC662_FIXUP_ZOTAC_Z68] = { |
1727a771 TI |
10443 | .type = HDA_FIXUP_PINS, |
10444 | .v.pins = (const struct hda_pintbl[]) { | |
edfe3bfc DH |
10445 | { 0x1b, 0x02214020 }, /* Front HP */ |
10446 | { } | |
10447 | } | |
10448 | }, | |
125821ae | 10449 | [ALC662_FIXUP_INV_DMIC] = { |
1727a771 | 10450 | .type = HDA_FIXUP_FUNC, |
9d36a7dc | 10451 | .v.func = alc_fixup_inv_dmic, |
125821ae | 10452 | }, |
033b0a7c GM |
10453 | [ALC668_FIXUP_DELL_XPS13] = { |
10454 | .type = HDA_FIXUP_FUNC, | |
10455 | .v.func = alc_fixup_dell_xps13, | |
10456 | .chained = true, | |
10457 | .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX | |
10458 | }, | |
5e6db669 GM |
10459 | [ALC668_FIXUP_DELL_DISABLE_AAMIX] = { |
10460 | .type = HDA_FIXUP_FUNC, | |
10461 | .v.func = alc_fixup_disable_aamix, | |
10462 | .chained = true, | |
10463 | .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE | |
10464 | }, | |
493a52a9 HW |
10465 | [ALC668_FIXUP_AUTO_MUTE] = { |
10466 | .type = HDA_FIXUP_FUNC, | |
10467 | .v.func = alc_fixup_auto_mute_via_amp, | |
10468 | .chained = true, | |
10469 | .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE | |
10470 | }, | |
1f8b46cd DH |
10471 | [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = { |
10472 | .type = HDA_FIXUP_PINS, | |
10473 | .v.pins = (const struct hda_pintbl[]) { | |
10474 | { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */ | |
10475 | /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */ | |
10476 | { } | |
10477 | }, | |
10478 | .chained = true, | |
10479 | .chain_id = ALC662_FIXUP_HEADSET_MODE | |
10480 | }, | |
10481 | [ALC662_FIXUP_HEADSET_MODE] = { | |
10482 | .type = HDA_FIXUP_FUNC, | |
10483 | .v.func = alc_fixup_headset_mode_alc662, | |
10484 | }, | |
73bdd597 DH |
10485 | [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = { |
10486 | .type = HDA_FIXUP_PINS, | |
10487 | .v.pins = (const struct hda_pintbl[]) { | |
10488 | { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */ | |
10489 | { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */ | |
10490 | { } | |
10491 | }, | |
10492 | .chained = true, | |
10493 | .chain_id = ALC668_FIXUP_HEADSET_MODE | |
10494 | }, | |
10495 | [ALC668_FIXUP_HEADSET_MODE] = { | |
10496 | .type = HDA_FIXUP_FUNC, | |
10497 | .v.func = alc_fixup_headset_mode_alc668, | |
10498 | }, | |
8e54b4ac | 10499 | [ALC662_FIXUP_BASS_MODE4_CHMAP] = { |
8e383953 | 10500 | .type = HDA_FIXUP_FUNC, |
eb9ca3ab | 10501 | .v.func = alc_fixup_bass_chmap, |
8e383953 TI |
10502 | .chained = true, |
10503 | .chain_id = ALC662_FIXUP_ASUS_MODE4 | |
10504 | }, | |
61a75f13 DH |
10505 | [ALC662_FIXUP_BASS_16] = { |
10506 | .type = HDA_FIXUP_PINS, | |
10507 | .v.pins = (const struct hda_pintbl[]) { | |
10508 | {0x16, 0x80106111}, /* bass speaker */ | |
10509 | {} | |
10510 | }, | |
10511 | .chained = true, | |
10512 | .chain_id = ALC662_FIXUP_BASS_CHMAP, | |
10513 | }, | |
a30c9aaa TI |
10514 | [ALC662_FIXUP_BASS_1A] = { |
10515 | .type = HDA_FIXUP_PINS, | |
10516 | .v.pins = (const struct hda_pintbl[]) { | |
10517 | {0x1a, 0x80106111}, /* bass speaker */ | |
10518 | {} | |
10519 | }, | |
8e54b4ac DH |
10520 | .chained = true, |
10521 | .chain_id = ALC662_FIXUP_BASS_CHMAP, | |
a30c9aaa | 10522 | }, |
8e54b4ac | 10523 | [ALC662_FIXUP_BASS_CHMAP] = { |
a30c9aaa | 10524 | .type = HDA_FIXUP_FUNC, |
eb9ca3ab | 10525 | .v.func = alc_fixup_bass_chmap, |
a30c9aaa | 10526 | }, |
9d4dc584 BM |
10527 | [ALC662_FIXUP_ASUS_Nx50] = { |
10528 | .type = HDA_FIXUP_FUNC, | |
10529 | .v.func = alc_fixup_auto_mute_via_amp, | |
10530 | .chained = true, | |
10531 | .chain_id = ALC662_FIXUP_BASS_1A | |
10532 | }, | |
fc7438b1 MP |
10533 | [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = { |
10534 | .type = HDA_FIXUP_FUNC, | |
10535 | .v.func = alc_fixup_headset_mode_alc668, | |
10536 | .chain_id = ALC662_FIXUP_BASS_CHMAP | |
10537 | }, | |
3231e205 YP |
10538 | [ALC668_FIXUP_ASUS_Nx51] = { |
10539 | .type = HDA_FIXUP_PINS, | |
10540 | .v.pins = (const struct hda_pintbl[]) { | |
fc7438b1 MP |
10541 | { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */ |
10542 | { 0x1a, 0x90170151 }, /* bass speaker */ | |
10543 | { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */ | |
3231e205 YP |
10544 | {} |
10545 | }, | |
10546 | .chained = true, | |
fc7438b1 | 10547 | .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE, |
3231e205 | 10548 | }, |
5b7c5e1f | 10549 | [ALC668_FIXUP_MIC_COEF] = { |
11ba6111 TI |
10550 | .type = HDA_FIXUP_VERBS, |
10551 | .v.verbs = (const struct hda_verb[]) { | |
10552 | { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 }, | |
10553 | { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 }, | |
10554 | {} | |
10555 | }, | |
10556 | }, | |
5b7c5e1f TI |
10557 | [ALC668_FIXUP_ASUS_G751] = { |
10558 | .type = HDA_FIXUP_PINS, | |
10559 | .v.pins = (const struct hda_pintbl[]) { | |
10560 | { 0x16, 0x0421101f }, /* HP */ | |
10561 | {} | |
10562 | }, | |
10563 | .chained = true, | |
10564 | .chain_id = ALC668_FIXUP_MIC_COEF | |
10565 | }, | |
78f4f7c2 KY |
10566 | [ALC891_FIXUP_HEADSET_MODE] = { |
10567 | .type = HDA_FIXUP_FUNC, | |
10568 | .v.func = alc_fixup_headset_mode, | |
10569 | }, | |
10570 | [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = { | |
10571 | .type = HDA_FIXUP_PINS, | |
10572 | .v.pins = (const struct hda_pintbl[]) { | |
10573 | { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */ | |
10574 | { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */ | |
10575 | { } | |
10576 | }, | |
10577 | .chained = true, | |
10578 | .chain_id = ALC891_FIXUP_HEADSET_MODE | |
10579 | }, | |
9b51fe3e SB |
10580 | [ALC662_FIXUP_ACER_VERITON] = { |
10581 | .type = HDA_FIXUP_PINS, | |
10582 | .v.pins = (const struct hda_pintbl[]) { | |
10583 | { 0x15, 0x50170120 }, /* no internal speaker */ | |
10584 | { } | |
10585 | } | |
10586 | }, | |
1a3f0991 TI |
10587 | [ALC892_FIXUP_ASROCK_MOBO] = { |
10588 | .type = HDA_FIXUP_PINS, | |
10589 | .v.pins = (const struct hda_pintbl[]) { | |
10590 | { 0x15, 0x40f000f0 }, /* disabled */ | |
10591 | { 0x16, 0x40f000f0 }, /* disabled */ | |
1a3f0991 TI |
10592 | { } |
10593 | } | |
10594 | }, | |
c6790c8e KY |
10595 | [ALC662_FIXUP_USI_FUNC] = { |
10596 | .type = HDA_FIXUP_FUNC, | |
10597 | .v.func = alc662_fixup_usi_headset_mic, | |
10598 | }, | |
10599 | [ALC662_FIXUP_USI_HEADSET_MODE] = { | |
10600 | .type = HDA_FIXUP_PINS, | |
10601 | .v.pins = (const struct hda_pintbl[]) { | |
10602 | { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */ | |
10603 | { 0x18, 0x01a1903d }, | |
10604 | { } | |
10605 | }, | |
10606 | .chained = true, | |
10607 | .chain_id = ALC662_FIXUP_USI_FUNC | |
10608 | }, | |
ca169cc2 KY |
10609 | [ALC662_FIXUP_LENOVO_MULTI_CODECS] = { |
10610 | .type = HDA_FIXUP_FUNC, | |
10611 | .v.func = alc233_alc662_fixup_lenovo_dual_codecs, | |
10612 | }, | |
00066e97 SB |
10613 | [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = { |
10614 | .type = HDA_FIXUP_FUNC, | |
10615 | .v.func = alc662_fixup_aspire_ethos_hp, | |
10616 | }, | |
00066e97 SB |
10617 | [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = { |
10618 | .type = HDA_FIXUP_PINS, | |
10619 | .v.pins = (const struct hda_pintbl[]) { | |
10620 | { 0x15, 0x92130110 }, /* front speakers */ | |
10621 | { 0x18, 0x99130111 }, /* center/subwoofer */ | |
10622 | { 0x1b, 0x11130012 }, /* surround plus jack for HP */ | |
10623 | { } | |
10624 | }, | |
10625 | .chained = true, | |
336820c4 | 10626 | .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET |
00066e97 | 10627 | }, |
5af29028 KY |
10628 | [ALC671_FIXUP_HP_HEADSET_MIC2] = { |
10629 | .type = HDA_FIXUP_FUNC, | |
10630 | .v.func = alc671_fixup_hp_headset_mic2, | |
10631 | }, | |
d858c706 JHP |
10632 | [ALC662_FIXUP_ACER_X2660G_HEADSET_MODE] = { |
10633 | .type = HDA_FIXUP_PINS, | |
10634 | .v.pins = (const struct hda_pintbl[]) { | |
10635 | { 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */ | |
10636 | { } | |
10637 | }, | |
10638 | .chained = true, | |
10639 | .chain_id = ALC662_FIXUP_USI_FUNC | |
10640 | }, | |
a124458a JHP |
10641 | [ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = { |
10642 | .type = HDA_FIXUP_PINS, | |
10643 | .v.pins = (const struct hda_pintbl[]) { | |
10644 | { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */ | |
10645 | { 0x1b, 0x0221144f }, | |
10646 | { } | |
10647 | }, | |
10648 | .chained = true, | |
10649 | .chain_id = ALC662_FIXUP_USI_FUNC | |
10650 | }, | |
a3fd1a98 HW |
10651 | [ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = { |
10652 | .type = HDA_FIXUP_PINS, | |
10653 | .v.pins = (const struct hda_pintbl[]) { | |
10654 | { 0x1b, 0x04a1112c }, | |
10655 | { } | |
10656 | }, | |
10657 | .chained = true, | |
10658 | .chain_id = ALC668_FIXUP_HEADSET_MIC | |
10659 | }, | |
10660 | [ALC668_FIXUP_HEADSET_MIC] = { | |
10661 | .type = HDA_FIXUP_FUNC, | |
10662 | .v.func = alc269_fixup_headset_mic, | |
10663 | .chained = true, | |
10664 | .chain_id = ALC668_FIXUP_MIC_DET_COEF | |
10665 | }, | |
10666 | [ALC668_FIXUP_MIC_DET_COEF] = { | |
10667 | .type = HDA_FIXUP_VERBS, | |
10668 | .v.verbs = (const struct hda_verb[]) { | |
10669 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x15 }, | |
10670 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 }, | |
10671 | {} | |
10672 | }, | |
10673 | }, | |
6cb3b707 DH |
10674 | }; |
10675 | ||
a9111321 | 10676 | static const struct snd_pci_quirk alc662_fixup_tbl[] = { |
53c334ad | 10677 | SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2), |
d3d3835c | 10678 | SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC), |
02f6ff90 | 10679 | SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC), |
a6c47a85 | 10680 | SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE), |
94024cd1 | 10681 | SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE), |
125821ae | 10682 | SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC), |
1801928e | 10683 | SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC), |
2df03514 | 10684 | SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE), |
9edeb110 | 10685 | SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS), |
a124458a | 10686 | SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE), |
d858c706 | 10687 | SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE), |
73bdd597 DH |
10688 | SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), |
10689 | SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), | |
c5d019c3 | 10690 | SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13), |
033b0a7c | 10691 | SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13), |
467e1436 | 10692 | SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13), |
09d2014f | 10693 | SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), |
ad8ff99e | 10694 | SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), |
8dc9abb9 KY |
10695 | SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), |
10696 | SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), | |
6a98e34b | 10697 | SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), |
e59ea3ed | 10698 | SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800), |
148ebf54 | 10699 | SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2), |
2da2dc9e | 10700 | SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE), |
83a9efb5 | 10701 | SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50), |
9d4dc584 | 10702 | SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50), |
11ba6111 | 10703 | SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751), |
9edeb110 | 10704 | SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A), |
8e54b4ac | 10705 | SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP), |
61a75f13 | 10706 | SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16), |
3231e205 YP |
10707 | SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51), |
10708 | SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51), | |
a3fd1a98 | 10709 | SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC), |
c7efff92 | 10710 | SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8), |
61a75f13 | 10711 | SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16), |
8e54b4ac | 10712 | SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP), |
1565cc35 | 10713 | SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT), |
53c334ad | 10714 | SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2), |
a0e90acc | 10715 | SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD), |
c6790c8e | 10716 | SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE), |
ca169cc2 | 10717 | SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS), |
d4118588 | 10718 | SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD), |
6cb3b707 | 10719 | SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD), |
1a3f0991 | 10720 | SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO), |
edfe3bfc | 10721 | SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68), |
9b51fe3e | 10722 | SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON), |
f1ec5be1 | 10723 | SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26), |
d2ebd479 | 10724 | SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T), |
53c334ad TI |
10725 | |
10726 | #if 0 | |
10727 | /* Below is a quirk table taken from the old code. | |
10728 | * Basically the device should work as is without the fixup table. | |
10729 | * If BIOS doesn't give a proper info, enable the corresponding | |
10730 | * fixup entry. | |
7d7eb9ea | 10731 | */ |
53c334ad TI |
10732 | SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1), |
10733 | SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3), | |
10734 | SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1), | |
10735 | SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3), | |
10736 | SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | |
10737 | SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
10738 | SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | |
10739 | SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1), | |
10740 | SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1), | |
10741 | SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
10742 | SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7), | |
10743 | SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7), | |
10744 | SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8), | |
10745 | SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3), | |
10746 | SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1), | |
10747 | SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
10748 | SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2), | |
10749 | SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1), | |
10750 | SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
10751 | SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), | |
10752 | SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), | |
10753 | SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
10754 | SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1), | |
10755 | SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3), | |
10756 | SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2), | |
10757 | SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
10758 | SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5), | |
10759 | SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), | |
10760 | SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
10761 | SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1), | |
10762 | SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
10763 | SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
10764 | SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3), | |
10765 | SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3), | |
10766 | SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1), | |
10767 | SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1), | |
10768 | SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1), | |
10769 | SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1), | |
10770 | SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1), | |
10771 | SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
10772 | SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2), | |
10773 | SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1), | |
10774 | SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | |
10775 | SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3), | |
10776 | SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1), | |
10777 | SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1), | |
10778 | SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1), | |
10779 | SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2), | |
10780 | SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | |
10781 | SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4), | |
10782 | #endif | |
6cb3b707 DH |
10783 | {} |
10784 | }; | |
10785 | ||
1727a771 | 10786 | static const struct hda_model_fixup alc662_fixup_models[] = { |
aa3841b5 TI |
10787 | {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"}, |
10788 | {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"}, | |
6be7948f | 10789 | {.id = ALC272_FIXUP_MARIO, .name = "mario"}, |
aa3841b5 | 10790 | {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"}, |
53c334ad TI |
10791 | {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"}, |
10792 | {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"}, | |
10793 | {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"}, | |
10794 | {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"}, | |
10795 | {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"}, | |
10796 | {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"}, | |
10797 | {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"}, | |
10798 | {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"}, | |
aa3841b5 | 10799 | {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"}, |
6e72aa5f | 10800 | {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"}, |
aa3841b5 | 10801 | {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"}, |
e32aa85a | 10802 | {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"}, |
aa3841b5 TI |
10803 | {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"}, |
10804 | {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"}, | |
10805 | {.id = ALC662_FIXUP_BASS_16, .name = "bass16"}, | |
10806 | {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"}, | |
10807 | {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"}, | |
10808 | {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"}, | |
10809 | {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"}, | |
10810 | {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"}, | |
40c51675 | 10811 | {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"}, |
aa3841b5 TI |
10812 | {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"}, |
10813 | {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"}, | |
10814 | {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"}, | |
10815 | {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"}, | |
10816 | {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"}, | |
ba90d6a6 | 10817 | {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"}, |
00066e97 | 10818 | {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"}, |
6be7948f TB |
10819 | {} |
10820 | }; | |
6cb3b707 | 10821 | |
532895c5 | 10822 | static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = { |
78f4f7c2 KY |
10823 | SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE, |
10824 | {0x17, 0x02211010}, | |
10825 | {0x18, 0x01a19030}, | |
10826 | {0x1a, 0x01813040}, | |
10827 | {0x21, 0x01014020}), | |
4b4e0e32 HW |
10828 | SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE, |
10829 | {0x16, 0x01813030}, | |
10830 | {0x17, 0x02211010}, | |
10831 | {0x18, 0x01a19040}, | |
10832 | {0x21, 0x01014020}), | |
1f8b46cd | 10833 | SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE, |
1f8b46cd | 10834 | {0x14, 0x01014010}, |
1f8b46cd | 10835 | {0x18, 0x01a19020}, |
1f8b46cd | 10836 | {0x1a, 0x0181302f}, |
11580297 | 10837 | {0x1b, 0x0221401f}), |
76c2132e DH |
10838 | SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, |
10839 | {0x12, 0x99a30130}, | |
10840 | {0x14, 0x90170110}, | |
10841 | {0x15, 0x0321101f}, | |
11580297 | 10842 | {0x16, 0x03011020}), |
76c2132e DH |
10843 | SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, |
10844 | {0x12, 0x99a30140}, | |
10845 | {0x14, 0x90170110}, | |
10846 | {0x15, 0x0321101f}, | |
11580297 | 10847 | {0x16, 0x03011020}), |
76c2132e DH |
10848 | SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, |
10849 | {0x12, 0x99a30150}, | |
10850 | {0x14, 0x90170110}, | |
10851 | {0x15, 0x0321101f}, | |
11580297 | 10852 | {0x16, 0x03011020}), |
76c2132e | 10853 | SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, |
76c2132e DH |
10854 | {0x14, 0x90170110}, |
10855 | {0x15, 0x0321101f}, | |
11580297 | 10856 | {0x16, 0x03011020}), |
76c2132e DH |
10857 | SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE, |
10858 | {0x12, 0x90a60130}, | |
10859 | {0x14, 0x90170110}, | |
11580297 | 10860 | {0x15, 0x0321101f}), |
5af29028 KY |
10861 | SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2, |
10862 | {0x14, 0x01014010}, | |
10863 | {0x17, 0x90170150}, | |
f2adbae0 | 10864 | {0x19, 0x02a11060}, |
5af29028 KY |
10865 | {0x1b, 0x01813030}, |
10866 | {0x21, 0x02211020}), | |
10867 | SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2, | |
10868 | {0x14, 0x01014010}, | |
10869 | {0x18, 0x01a19040}, | |
10870 | {0x1b, 0x01813030}, | |
10871 | {0x21, 0x02211020}), | |
10872 | SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2, | |
10873 | {0x14, 0x01014020}, | |
10874 | {0x17, 0x90170110}, | |
10875 | {0x18, 0x01a19050}, | |
10876 | {0x1b, 0x01813040}, | |
10877 | {0x21, 0x02211030}), | |
532895c5 HW |
10878 | {} |
10879 | }; | |
10880 | ||
1d045db9 TI |
10881 | /* |
10882 | */ | |
bc9f98a9 KY |
10883 | static int patch_alc662(struct hda_codec *codec) |
10884 | { | |
10885 | struct alc_spec *spec; | |
3de95173 | 10886 | int err; |
bc9f98a9 | 10887 | |
3de95173 TI |
10888 | err = alc_alloc_spec(codec, 0x0b); |
10889 | if (err < 0) | |
10890 | return err; | |
bc9f98a9 | 10891 | |
3de95173 | 10892 | spec = codec->spec; |
1f0f4b80 | 10893 | |
225068ab TI |
10894 | spec->shutup = alc_eapd_shutup; |
10895 | ||
53c334ad TI |
10896 | /* handle multiple HPs as is */ |
10897 | spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; | |
10898 | ||
2c3bf9ab TI |
10899 | alc_fix_pll_init(codec, 0x20, 0x04, 15); |
10900 | ||
7639a06c | 10901 | switch (codec->core.vendor_id) { |
f3f9185f KY |
10902 | case 0x10ec0668: |
10903 | spec->init_hook = alc668_restore_default_value; | |
10904 | break; | |
f3f9185f | 10905 | } |
8663ff75 | 10906 | |
c9af753f TI |
10907 | alc_pre_init(codec); |
10908 | ||
1727a771 | 10909 | snd_hda_pick_fixup(codec, alc662_fixup_models, |
8e5a0509 | 10910 | alc662_fixup_tbl, alc662_fixups); |
0fc1e447 | 10911 | snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true); |
1727a771 | 10912 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
8e5a0509 TI |
10913 | |
10914 | alc_auto_parse_customize_define(codec); | |
10915 | ||
7504b6cd TI |
10916 | if (has_cdefine_beep(codec)) |
10917 | spec->gen.beep_nid = 0x01; | |
10918 | ||
1bb7e43e | 10919 | if ((alc_get_coef0(codec) & (1 << 14)) && |
5100cd07 | 10920 | codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 && |
e16fb6d1 | 10921 | spec->cdefine.platform_type == 1) { |
6134b1a2 WY |
10922 | err = alc_codec_rename(codec, "ALC272X"); |
10923 | if (err < 0) | |
e16fb6d1 | 10924 | goto error; |
20ca0c35 | 10925 | } |
274693f3 | 10926 | |
b9c5106c TI |
10927 | /* automatic parse from the BIOS config */ |
10928 | err = alc662_parse_auto_config(codec); | |
e16fb6d1 TI |
10929 | if (err < 0) |
10930 | goto error; | |
bc9f98a9 | 10931 | |
7504b6cd | 10932 | if (!spec->gen.no_analog && spec->gen.beep_nid) { |
7639a06c | 10933 | switch (codec->core.vendor_id) { |
da00c244 | 10934 | case 0x10ec0662: |
fea80fae | 10935 | err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); |
da00c244 KY |
10936 | break; |
10937 | case 0x10ec0272: | |
10938 | case 0x10ec0663: | |
10939 | case 0x10ec0665: | |
9ad54547 | 10940 | case 0x10ec0668: |
fea80fae | 10941 | err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT); |
da00c244 KY |
10942 | break; |
10943 | case 0x10ec0273: | |
fea80fae | 10944 | err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT); |
da00c244 KY |
10945 | break; |
10946 | } | |
fea80fae TI |
10947 | if (err < 0) |
10948 | goto error; | |
cec27c89 | 10949 | } |
2134ea4f | 10950 | |
1727a771 | 10951 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 10952 | |
bc9f98a9 | 10953 | return 0; |
801f49d3 | 10954 | |
e16fb6d1 TI |
10955 | error: |
10956 | alc_free(codec); | |
10957 | return err; | |
b478b998 KY |
10958 | } |
10959 | ||
d1eb57f4 KY |
10960 | /* |
10961 | * ALC680 support | |
10962 | */ | |
d1eb57f4 | 10963 | |
d1eb57f4 KY |
10964 | static int alc680_parse_auto_config(struct hda_codec *codec) |
10965 | { | |
3e6179b8 | 10966 | return alc_parse_auto_config(codec, NULL, NULL); |
d1eb57f4 KY |
10967 | } |
10968 | ||
d1eb57f4 | 10969 | /* |
d1eb57f4 | 10970 | */ |
d1eb57f4 KY |
10971 | static int patch_alc680(struct hda_codec *codec) |
10972 | { | |
d1eb57f4 KY |
10973 | int err; |
10974 | ||
1f0f4b80 | 10975 | /* ALC680 has no aa-loopback mixer */ |
3de95173 TI |
10976 | err = alc_alloc_spec(codec, 0); |
10977 | if (err < 0) | |
10978 | return err; | |
1f0f4b80 | 10979 | |
1ebec5f2 TI |
10980 | /* automatic parse from the BIOS config */ |
10981 | err = alc680_parse_auto_config(codec); | |
10982 | if (err < 0) { | |
10983 | alc_free(codec); | |
10984 | return err; | |
d1eb57f4 KY |
10985 | } |
10986 | ||
d1eb57f4 KY |
10987 | return 0; |
10988 | } | |
10989 | ||
1da177e4 LT |
10990 | /* |
10991 | * patch entries | |
10992 | */ | |
b9a94a9c | 10993 | static const struct hda_device_id snd_hda_id_realtek[] = { |
0a6f0600 | 10994 | HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269), |
b9a94a9c | 10995 | HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269), |
2a36c16e | 10996 | HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269), |
4231430d | 10997 | HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269), |
1948fc06 | 10998 | HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269), |
b9a94a9c TI |
10999 | HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269), |
11000 | HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269), | |
dcd4f0db | 11001 | HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269), |
b9a94a9c | 11002 | HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269), |
736f20a7 | 11003 | HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269), |
7fbdcd83 | 11004 | HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269), |
b9a94a9c TI |
11005 | HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269), |
11006 | HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269), | |
f429e7e4 | 11007 | HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269), |
b9a94a9c TI |
11008 | HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260), |
11009 | HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262), | |
11010 | HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268), | |
11011 | HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268), | |
11012 | HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269), | |
11013 | HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269), | |
11014 | HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662), | |
dcd4f0db | 11015 | HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269), |
b9a94a9c TI |
11016 | HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269), |
11017 | HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269), | |
11018 | HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269), | |
11019 | HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269), | |
11020 | HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269), | |
11021 | HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269), | |
0a6f0600 | 11022 | HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269), |
b9a94a9c | 11023 | HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269), |
630e3612 | 11024 | HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269), |
b9a94a9c | 11025 | HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269), |
0a6f0600 | 11026 | HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269), |
b9a94a9c TI |
11027 | HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269), |
11028 | HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269), | |
11029 | HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269), | |
dcd4f0db | 11030 | HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269), |
7d727869 | 11031 | HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269), |
b9a94a9c | 11032 | HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269), |
28f1f9b2 | 11033 | HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269), |
1078bef0 | 11034 | HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269), |
f0778871 | 11035 | HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269), |
b9a94a9c TI |
11036 | HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861), |
11037 | HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd), | |
11038 | HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861), | |
11039 | HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd), | |
11040 | HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882), | |
11041 | HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662), | |
11042 | HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662), | |
11043 | HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662), | |
11044 | HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662), | |
11045 | HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662), | |
11046 | HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662), | |
11047 | HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662), | |
11048 | HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662), | |
11049 | HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680), | |
6fbae35a KY |
11050 | HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269), |
11051 | HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269), | |
11052 | HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269), | |
83629532 | 11053 | HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269), |
78f4f7c2 | 11054 | HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662), |
b9a94a9c TI |
11055 | HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880), |
11056 | HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882), | |
11057 | HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882), | |
11058 | HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882), | |
11059 | HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882), | |
11060 | HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882), | |
11061 | HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882), | |
11062 | HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882), | |
11063 | HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882), | |
11064 | HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882), | |
11065 | HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662), | |
e5782a5d | 11066 | HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662), |
b9a94a9c TI |
11067 | HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882), |
11068 | HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882), | |
6d9ffcff | 11069 | HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882), |
65553b12 | 11070 | HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882), |
a535ad57 | 11071 | HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882), |
1da177e4 LT |
11072 | {} /* terminator */ |
11073 | }; | |
b9a94a9c | 11074 | MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek); |
1289e9e8 TI |
11075 | |
11076 | MODULE_LICENSE("GPL"); | |
11077 | MODULE_DESCRIPTION("Realtek HD-audio codec"); | |
11078 | ||
d8a766a1 | 11079 | static struct hda_codec_driver realtek_driver = { |
b9a94a9c | 11080 | .id = snd_hda_id_realtek, |
1289e9e8 TI |
11081 | }; |
11082 | ||
d8a766a1 | 11083 | module_hda_codec_driver(realtek_driver); |