]>
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> |
35a17444 | 21 | #include <linux/ctype.h> |
1da177e4 | 22 | #include <sound/core.h> |
9ad0e496 | 23 | #include <sound/jack.h> |
be57bfff | 24 | #include <sound/hda_codec.h> |
1da177e4 | 25 | #include "hda_local.h" |
23d30f28 | 26 | #include "hda_auto_parser.h" |
1835a0f9 | 27 | #include "hda_jack.h" |
08c189f2 | 28 | #include "hda_generic.h" |
d3dca026 | 29 | #include "hda_component.h" |
1da177e4 | 30 | |
cd63a5ff TI |
31 | /* keep halting ALC5505 DSP, for power saving */ |
32 | #define HALT_REALTEK_ALC5505 | |
33 | ||
4a79ba34 TI |
34 | /* extra amp-initialization sequence types */ |
35 | enum { | |
1c76aa5f | 36 | ALC_INIT_UNDEFINED, |
4a79ba34 TI |
37 | ALC_INIT_NONE, |
38 | ALC_INIT_DEFAULT, | |
4a79ba34 TI |
39 | }; |
40 | ||
73bdd597 DH |
41 | enum { |
42 | ALC_HEADSET_MODE_UNKNOWN, | |
43 | ALC_HEADSET_MODE_UNPLUGGED, | |
44 | ALC_HEADSET_MODE_HEADSET, | |
45 | ALC_HEADSET_MODE_MIC, | |
46 | ALC_HEADSET_MODE_HEADPHONE, | |
47 | }; | |
48 | ||
49 | enum { | |
50 | ALC_HEADSET_TYPE_UNKNOWN, | |
51 | ALC_HEADSET_TYPE_CTIA, | |
52 | ALC_HEADSET_TYPE_OMTP, | |
53 | }; | |
54 | ||
c7b60a89 HW |
55 | enum { |
56 | ALC_KEY_MICMUTE_INDEX, | |
57 | }; | |
58 | ||
da00c244 KY |
59 | struct alc_customize_define { |
60 | unsigned int sku_cfg; | |
61 | unsigned char port_connectivity; | |
62 | unsigned char check_sum; | |
63 | unsigned char customization; | |
64 | unsigned char external_amp; | |
65 | unsigned int enable_pcbeep:1; | |
66 | unsigned int platform_type:1; | |
67 | unsigned int swap:1; | |
68 | unsigned int override:1; | |
90622917 | 69 | unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */ |
da00c244 KY |
70 | }; |
71 | ||
766538ac TI |
72 | struct alc_coef_led { |
73 | unsigned int idx; | |
74 | unsigned int mask; | |
75 | unsigned int on; | |
76 | unsigned int off; | |
77 | }; | |
78 | ||
1da177e4 | 79 | struct alc_spec { |
08c189f2 | 80 | struct hda_gen_spec gen; /* must be at head */ |
23d30f28 | 81 | |
1da177e4 | 82 | /* codec parameterization */ |
da00c244 | 83 | struct alc_customize_define cdefine; |
08c189f2 | 84 | unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */ |
834be88d | 85 | |
5579cd6f TI |
86 | /* GPIO bits */ |
87 | unsigned int gpio_mask; | |
88 | unsigned int gpio_dir; | |
89 | unsigned int gpio_data; | |
215c850c | 90 | bool gpio_write_delay; /* add a delay before writing gpio_data */ |
5579cd6f | 91 | |
8d3d1ece | 92 | /* mute LED for HP laptops, see vref_mute_led_set() */ |
08fb0d0e | 93 | int mute_led_polarity; |
dbd13179 | 94 | int micmute_led_polarity; |
08fb0d0e | 95 | hda_nid_t mute_led_nid; |
9c5dc3bf | 96 | hda_nid_t cap_mute_led_nid; |
08fb0d0e | 97 | |
0f32fd19 TI |
98 | unsigned int gpio_mute_led_mask; |
99 | unsigned int gpio_mic_led_mask; | |
766538ac TI |
100 | struct alc_coef_led mute_led_coef; |
101 | struct alc_coef_led mic_led_coef; | |
b837a9f5 | 102 | struct mutex coef_mutex; |
9f5c6faf | 103 | |
73bdd597 DH |
104 | hda_nid_t headset_mic_pin; |
105 | hda_nid_t headphone_mic_pin; | |
106 | int current_headset_mode; | |
107 | int current_headset_type; | |
108 | ||
ae6b813a TI |
109 | /* hooks */ |
110 | void (*init_hook)(struct hda_codec *codec); | |
83012a7c | 111 | #ifdef CONFIG_PM |
c97259df | 112 | void (*power_hook)(struct hda_codec *codec); |
f5de24b0 | 113 | #endif |
1c716153 | 114 | void (*shutup)(struct hda_codec *codec); |
d922b51d | 115 | |
4a79ba34 | 116 | int init_amp; |
d433a678 | 117 | int codec_variant; /* flag for other variants */ |
97a26570 KY |
118 | unsigned int has_alc5505_dsp:1; |
119 | unsigned int no_depop_delay:1; | |
693abe11 | 120 | unsigned int done_hp_init:1; |
c0ca5ece | 121 | unsigned int no_shutup_pins:1; |
d3ba58bb | 122 | unsigned int ultra_low_power:1; |
476c02e0 | 123 | unsigned int has_hs_key:1; |
92666d45 | 124 | unsigned int no_internal_mic_pin:1; |
e64f14f4 | 125 | |
2c3bf9ab TI |
126 | /* for PLL fix */ |
127 | hda_nid_t pll_nid; | |
128 | unsigned int pll_coef_idx, pll_coef_bit; | |
1bb7e43e | 129 | unsigned int coef0; |
33f4acd3 | 130 | struct input_dev *kb_dev; |
c7b60a89 | 131 | u8 alc_mute_keycode_map[1]; |
d3dca026 LT |
132 | |
133 | /* component binding */ | |
134 | struct component_match *match; | |
135 | struct hda_component comps[HDA_MAX_COMPONENTS]; | |
df694daa KY |
136 | }; |
137 | ||
f2a227cd TI |
138 | /* |
139 | * COEF access helper functions | |
140 | */ | |
141 | ||
2a845837 TI |
142 | static void coef_mutex_lock(struct hda_codec *codec) |
143 | { | |
144 | struct alc_spec *spec = codec->spec; | |
145 | ||
146 | snd_hda_power_up_pm(codec); | |
147 | mutex_lock(&spec->coef_mutex); | |
148 | } | |
149 | ||
150 | static void coef_mutex_unlock(struct hda_codec *codec) | |
151 | { | |
152 | struct alc_spec *spec = codec->spec; | |
153 | ||
154 | mutex_unlock(&spec->coef_mutex); | |
155 | snd_hda_power_down_pm(codec); | |
156 | } | |
157 | ||
b837a9f5 TI |
158 | static int __alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid, |
159 | unsigned int coef_idx) | |
f2a227cd TI |
160 | { |
161 | unsigned int val; | |
162 | ||
163 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx); | |
164 | val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0); | |
165 | return val; | |
166 | } | |
167 | ||
b837a9f5 TI |
168 | static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid, |
169 | unsigned int coef_idx) | |
170 | { | |
b837a9f5 TI |
171 | unsigned int val; |
172 | ||
2a845837 | 173 | coef_mutex_lock(codec); |
b837a9f5 | 174 | val = __alc_read_coefex_idx(codec, nid, coef_idx); |
2a845837 | 175 | coef_mutex_unlock(codec); |
b837a9f5 TI |
176 | return val; |
177 | } | |
178 | ||
f2a227cd TI |
179 | #define alc_read_coef_idx(codec, coef_idx) \ |
180 | alc_read_coefex_idx(codec, 0x20, coef_idx) | |
181 | ||
b837a9f5 TI |
182 | static void __alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid, |
183 | unsigned int coef_idx, unsigned int coef_val) | |
f2a227cd TI |
184 | { |
185 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx); | |
186 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val); | |
187 | } | |
188 | ||
b837a9f5 TI |
189 | static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid, |
190 | unsigned int coef_idx, unsigned int coef_val) | |
191 | { | |
2a845837 | 192 | coef_mutex_lock(codec); |
b837a9f5 | 193 | __alc_write_coefex_idx(codec, nid, coef_idx, coef_val); |
2a845837 | 194 | coef_mutex_unlock(codec); |
b837a9f5 TI |
195 | } |
196 | ||
f2a227cd TI |
197 | #define alc_write_coef_idx(codec, coef_idx, coef_val) \ |
198 | alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val) | |
199 | ||
b837a9f5 TI |
200 | static void __alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid, |
201 | unsigned int coef_idx, unsigned int mask, | |
202 | unsigned int bits_set) | |
203 | { | |
204 | unsigned int val = __alc_read_coefex_idx(codec, nid, coef_idx); | |
205 | ||
206 | if (val != -1) | |
207 | __alc_write_coefex_idx(codec, nid, coef_idx, | |
208 | (val & ~mask) | bits_set); | |
209 | } | |
210 | ||
98b24883 TI |
211 | static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid, |
212 | unsigned int coef_idx, unsigned int mask, | |
213 | unsigned int bits_set) | |
214 | { | |
2a845837 | 215 | coef_mutex_lock(codec); |
b837a9f5 | 216 | __alc_update_coefex_idx(codec, nid, coef_idx, mask, bits_set); |
2a845837 | 217 | coef_mutex_unlock(codec); |
98b24883 TI |
218 | } |
219 | ||
220 | #define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \ | |
221 | alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set) | |
222 | ||
f2a227cd TI |
223 | /* a special bypass for COEF 0; read the cached value at the second time */ |
224 | static unsigned int alc_get_coef0(struct hda_codec *codec) | |
225 | { | |
226 | struct alc_spec *spec = codec->spec; | |
227 | ||
228 | if (!spec->coef0) | |
229 | spec->coef0 = alc_read_coef_idx(codec, 0); | |
230 | return spec->coef0; | |
231 | } | |
232 | ||
54db6c39 TI |
233 | /* coef writes/updates batch */ |
234 | struct coef_fw { | |
235 | unsigned char nid; | |
236 | unsigned char idx; | |
237 | unsigned short mask; | |
238 | unsigned short val; | |
239 | }; | |
240 | ||
241 | #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \ | |
242 | { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) } | |
243 | #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val) | |
244 | #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val) | |
245 | #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val) | |
246 | ||
247 | static void alc_process_coef_fw(struct hda_codec *codec, | |
248 | const struct coef_fw *fw) | |
249 | { | |
2a845837 | 250 | coef_mutex_lock(codec); |
54db6c39 TI |
251 | for (; fw->nid; fw++) { |
252 | if (fw->mask == (unsigned short)-1) | |
b837a9f5 | 253 | __alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val); |
54db6c39 | 254 | else |
b837a9f5 TI |
255 | __alc_update_coefex_idx(codec, fw->nid, fw->idx, |
256 | fw->mask, fw->val); | |
54db6c39 | 257 | } |
2a845837 | 258 | coef_mutex_unlock(codec); |
54db6c39 TI |
259 | } |
260 | ||
df694daa | 261 | /* |
1d045db9 | 262 | * GPIO setup tables, used in initialization |
df694daa | 263 | */ |
5579cd6f | 264 | |
bc9f98a9 | 265 | /* Enable GPIO mask and set output */ |
5579cd6f TI |
266 | static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask) |
267 | { | |
268 | struct alc_spec *spec = codec->spec; | |
bc9f98a9 | 269 | |
5579cd6f TI |
270 | spec->gpio_mask |= mask; |
271 | spec->gpio_dir |= mask; | |
272 | spec->gpio_data |= mask; | |
273 | } | |
bc9f98a9 | 274 | |
5579cd6f TI |
275 | static void alc_write_gpio_data(struct hda_codec *codec) |
276 | { | |
277 | struct alc_spec *spec = codec->spec; | |
278 | ||
279 | snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, | |
280 | spec->gpio_data); | |
281 | } | |
282 | ||
aaf312de TI |
283 | static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask, |
284 | bool on) | |
285 | { | |
286 | struct alc_spec *spec = codec->spec; | |
287 | unsigned int oldval = spec->gpio_data; | |
288 | ||
289 | if (on) | |
290 | spec->gpio_data |= mask; | |
291 | else | |
292 | spec->gpio_data &= ~mask; | |
293 | if (oldval != spec->gpio_data) | |
294 | alc_write_gpio_data(codec); | |
295 | } | |
296 | ||
5579cd6f TI |
297 | static void alc_write_gpio(struct hda_codec *codec) |
298 | { | |
299 | struct alc_spec *spec = codec->spec; | |
300 | ||
301 | if (!spec->gpio_mask) | |
302 | return; | |
303 | ||
304 | snd_hda_codec_write(codec, codec->core.afg, 0, | |
305 | AC_VERB_SET_GPIO_MASK, spec->gpio_mask); | |
306 | snd_hda_codec_write(codec, codec->core.afg, 0, | |
307 | AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir); | |
215c850c TI |
308 | if (spec->gpio_write_delay) |
309 | msleep(1); | |
5579cd6f TI |
310 | alc_write_gpio_data(codec); |
311 | } | |
312 | ||
313 | static void alc_fixup_gpio(struct hda_codec *codec, int action, | |
314 | unsigned int mask) | |
315 | { | |
316 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
317 | alc_setup_gpio(codec, mask); | |
318 | } | |
319 | ||
320 | static void alc_fixup_gpio1(struct hda_codec *codec, | |
321 | const struct hda_fixup *fix, int action) | |
322 | { | |
323 | alc_fixup_gpio(codec, action, 0x01); | |
324 | } | |
325 | ||
326 | static void alc_fixup_gpio2(struct hda_codec *codec, | |
327 | const struct hda_fixup *fix, int action) | |
328 | { | |
329 | alc_fixup_gpio(codec, action, 0x02); | |
330 | } | |
331 | ||
332 | static void alc_fixup_gpio3(struct hda_codec *codec, | |
333 | const struct hda_fixup *fix, int action) | |
334 | { | |
335 | alc_fixup_gpio(codec, action, 0x03); | |
336 | } | |
bdd148a3 | 337 | |
ae065f1c TI |
338 | static void alc_fixup_gpio4(struct hda_codec *codec, |
339 | const struct hda_fixup *fix, int action) | |
340 | { | |
341 | alc_fixup_gpio(codec, action, 0x04); | |
342 | } | |
343 | ||
8a503555 TI |
344 | static void alc_fixup_micmute_led(struct hda_codec *codec, |
345 | const struct hda_fixup *fix, int action) | |
346 | { | |
e65bf997 | 347 | if (action == HDA_FIXUP_ACT_PRE_PROBE) |
8a503555 TI |
348 | snd_hda_gen_add_micmute_led_cdev(codec, NULL); |
349 | } | |
350 | ||
2c3bf9ab TI |
351 | /* |
352 | * Fix hardware PLL issue | |
353 | * On some codecs, the analog PLL gating control must be off while | |
354 | * the default value is 1. | |
355 | */ | |
356 | static void alc_fix_pll(struct hda_codec *codec) | |
357 | { | |
358 | struct alc_spec *spec = codec->spec; | |
2c3bf9ab | 359 | |
98b24883 TI |
360 | if (spec->pll_nid) |
361 | alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx, | |
362 | 1 << spec->pll_coef_bit, 0); | |
2c3bf9ab TI |
363 | } |
364 | ||
365 | static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid, | |
366 | unsigned int coef_idx, unsigned int coef_bit) | |
367 | { | |
368 | struct alc_spec *spec = codec->spec; | |
369 | spec->pll_nid = nid; | |
370 | spec->pll_coef_idx = coef_idx; | |
371 | spec->pll_coef_bit = coef_bit; | |
372 | alc_fix_pll(codec); | |
373 | } | |
374 | ||
cf5a2279 | 375 | /* update the master volume per volume-knob's unsol event */ |
1a4f69d5 TI |
376 | static void alc_update_knob_master(struct hda_codec *codec, |
377 | struct hda_jack_callback *jack) | |
cf5a2279 TI |
378 | { |
379 | unsigned int val; | |
380 | struct snd_kcontrol *kctl; | |
381 | struct snd_ctl_elem_value *uctl; | |
382 | ||
383 | kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume"); | |
384 | if (!kctl) | |
385 | return; | |
386 | uctl = kzalloc(sizeof(*uctl), GFP_KERNEL); | |
387 | if (!uctl) | |
388 | return; | |
2ebab40e | 389 | val = snd_hda_codec_read(codec, jack->nid, 0, |
cf5a2279 TI |
390 | AC_VERB_GET_VOLUME_KNOB_CONTROL, 0); |
391 | val &= HDA_AMP_VOLMASK; | |
392 | uctl->value.integer.value[0] = val; | |
393 | uctl->value.integer.value[1] = val; | |
394 | kctl->put(kctl, uctl); | |
395 | kfree(uctl); | |
396 | } | |
397 | ||
29adc4b9 | 398 | static void alc880_unsol_event(struct hda_codec *codec, unsigned int res) |
f21d78e2 | 399 | { |
29adc4b9 DH |
400 | /* For some reason, the res given from ALC880 is broken. |
401 | Here we adjust it properly. */ | |
402 | snd_hda_jack_unsol_event(codec, res >> 2); | |
f21d78e2 TI |
403 | } |
404 | ||
394c97f8 KY |
405 | /* Change EAPD to verb control */ |
406 | static void alc_fill_eapd_coef(struct hda_codec *codec) | |
407 | { | |
408 | int coef; | |
409 | ||
410 | coef = alc_get_coef0(codec); | |
411 | ||
7639a06c | 412 | switch (codec->core.vendor_id) { |
394c97f8 KY |
413 | case 0x10ec0262: |
414 | alc_update_coef_idx(codec, 0x7, 0, 1<<5); | |
415 | break; | |
416 | case 0x10ec0267: | |
417 | case 0x10ec0268: | |
418 | alc_update_coef_idx(codec, 0x7, 0, 1<<13); | |
419 | break; | |
420 | case 0x10ec0269: | |
421 | if ((coef & 0x00f0) == 0x0010) | |
422 | alc_update_coef_idx(codec, 0xd, 0, 1<<14); | |
423 | if ((coef & 0x00f0) == 0x0020) | |
424 | alc_update_coef_idx(codec, 0x4, 1<<15, 0); | |
425 | if ((coef & 0x00f0) == 0x0030) | |
426 | alc_update_coef_idx(codec, 0x10, 1<<9, 0); | |
427 | break; | |
428 | case 0x10ec0280: | |
429 | case 0x10ec0284: | |
430 | case 0x10ec0290: | |
431 | case 0x10ec0292: | |
432 | alc_update_coef_idx(codec, 0x4, 1<<15, 0); | |
433 | break; | |
4231430d | 434 | case 0x10ec0225: |
44be77c5 TI |
435 | case 0x10ec0295: |
436 | case 0x10ec0299: | |
437 | alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000); | |
c0dbbdad | 438 | fallthrough; |
44be77c5 | 439 | case 0x10ec0215: |
1948fc06 | 440 | case 0x10ec0230: |
394c97f8 | 441 | case 0x10ec0233: |
ea04a1db | 442 | case 0x10ec0235: |
c4473744 | 443 | case 0x10ec0236: |
7fbdcd83 | 444 | case 0x10ec0245: |
394c97f8 | 445 | case 0x10ec0255: |
c4473744 | 446 | case 0x10ec0256: |
527f4643 | 447 | case 0x19e58326: |
f429e7e4 | 448 | case 0x10ec0257: |
394c97f8 KY |
449 | case 0x10ec0282: |
450 | case 0x10ec0283: | |
451 | case 0x10ec0286: | |
452 | case 0x10ec0288: | |
0a6f0600 | 453 | case 0x10ec0285: |
506b62c3 | 454 | case 0x10ec0298: |
0a6f0600 | 455 | case 0x10ec0289: |
1078bef0 | 456 | case 0x10ec0300: |
394c97f8 KY |
457 | alc_update_coef_idx(codec, 0x10, 1<<9, 0); |
458 | break; | |
3aabf94c KY |
459 | case 0x10ec0275: |
460 | alc_update_coef_idx(codec, 0xe, 0, 1<<0); | |
461 | break; | |
8822702f HW |
462 | case 0x10ec0287: |
463 | alc_update_coef_idx(codec, 0x10, 1<<9, 0); | |
464 | alc_write_coef_idx(codec, 0x8, 0x4ab7); | |
465 | break; | |
394c97f8 KY |
466 | case 0x10ec0293: |
467 | alc_update_coef_idx(codec, 0xa, 1<<13, 0); | |
468 | break; | |
dcd4f0db KY |
469 | case 0x10ec0234: |
470 | case 0x10ec0274: | |
471 | case 0x10ec0294: | |
6fbae35a KY |
472 | case 0x10ec0700: |
473 | case 0x10ec0701: | |
474 | case 0x10ec0703: | |
83629532 | 475 | case 0x10ec0711: |
dcd4f0db KY |
476 | alc_update_coef_idx(codec, 0x10, 1<<15, 0); |
477 | break; | |
394c97f8 KY |
478 | case 0x10ec0662: |
479 | if ((coef & 0x00f0) == 0x0030) | |
480 | alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */ | |
481 | break; | |
482 | case 0x10ec0272: | |
483 | case 0x10ec0273: | |
484 | case 0x10ec0663: | |
485 | case 0x10ec0665: | |
486 | case 0x10ec0670: | |
487 | case 0x10ec0671: | |
488 | case 0x10ec0672: | |
489 | alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */ | |
490 | break; | |
9194a1eb | 491 | case 0x10ec0222: |
f0778871 KY |
492 | case 0x10ec0623: |
493 | alc_update_coef_idx(codec, 0x19, 1<<13, 0); | |
494 | break; | |
394c97f8 KY |
495 | case 0x10ec0668: |
496 | alc_update_coef_idx(codec, 0x7, 3<<13, 0); | |
497 | break; | |
498 | case 0x10ec0867: | |
499 | alc_update_coef_idx(codec, 0x4, 1<<10, 0); | |
500 | break; | |
501 | case 0x10ec0888: | |
502 | if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030) | |
503 | alc_update_coef_idx(codec, 0x7, 1<<5, 0); | |
504 | break; | |
505 | case 0x10ec0892: | |
e5782a5d | 506 | case 0x10ec0897: |
394c97f8 KY |
507 | alc_update_coef_idx(codec, 0x7, 1<<5, 0); |
508 | break; | |
509 | case 0x10ec0899: | |
510 | case 0x10ec0900: | |
6d9ffcff | 511 | case 0x10ec0b00: |
65553b12 | 512 | case 0x10ec1168: |
a535ad57 | 513 | case 0x10ec1220: |
394c97f8 KY |
514 | alc_update_coef_idx(codec, 0x7, 1<<1, 0); |
515 | break; | |
516 | } | |
517 | } | |
518 | ||
f9423e7a KY |
519 | /* additional initialization for ALC888 variants */ |
520 | static void alc888_coef_init(struct hda_codec *codec) | |
521 | { | |
1df8874b KY |
522 | switch (alc_get_coef0(codec) & 0x00f0) { |
523 | /* alc888-VA */ | |
524 | case 0x00: | |
525 | /* alc888-VB */ | |
526 | case 0x10: | |
527 | alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */ | |
528 | break; | |
529 | } | |
87a8c370 JK |
530 | } |
531 | ||
3fb4a508 TI |
532 | /* turn on/off EAPD control (only if available) */ |
533 | static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on) | |
534 | { | |
535 | if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) | |
536 | return; | |
537 | if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD) | |
538 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE, | |
539 | on ? 2 : 0); | |
540 | } | |
541 | ||
691f1fcc TI |
542 | /* turn on/off EAPD controls of the codec */ |
543 | static void alc_auto_setup_eapd(struct hda_codec *codec, bool on) | |
544 | { | |
545 | /* We currently only handle front, HP */ | |
caf3c043 | 546 | static const hda_nid_t pins[] = { |
af95b414 | 547 | 0x0f, 0x10, 0x14, 0x15, 0x17, 0 |
39fa84e9 | 548 | }; |
caf3c043 | 549 | const hda_nid_t *p; |
39fa84e9 TI |
550 | for (p = pins; *p; p++) |
551 | set_eapd(codec, *p, on); | |
691f1fcc TI |
552 | } |
553 | ||
dad3197d KY |
554 | static int find_ext_mic_pin(struct hda_codec *codec); |
555 | ||
556 | static void alc_headset_mic_no_shutup(struct hda_codec *codec) | |
557 | { | |
558 | const struct hda_pincfg *pin; | |
559 | int mic_pin = find_ext_mic_pin(codec); | |
560 | int i; | |
561 | ||
562 | /* don't shut up pins when unloading the driver; otherwise it breaks | |
563 | * the default pin setup at the next load of the driver | |
564 | */ | |
565 | if (codec->bus->shutdown) | |
566 | return; | |
567 | ||
568 | snd_array_for_each(&codec->init_pins, i, pin) { | |
569 | /* use read here for syncing after issuing each verb */ | |
570 | if (pin->nid != mic_pin) | |
571 | snd_hda_codec_read(codec, pin->nid, 0, | |
572 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0); | |
573 | } | |
574 | ||
575 | codec->pins_shutup = 1; | |
576 | } | |
577 | ||
c0ca5ece TI |
578 | static void alc_shutup_pins(struct hda_codec *codec) |
579 | { | |
580 | struct alc_spec *spec = codec->spec; | |
581 | ||
dad3197d | 582 | switch (codec->core.vendor_id) { |
5aec9891 KY |
583 | case 0x10ec0236: |
584 | case 0x10ec0256: | |
527f4643 | 585 | case 0x19e58326: |
66c5d718 | 586 | case 0x10ec0283: |
dad3197d KY |
587 | case 0x10ec0286: |
588 | case 0x10ec0288: | |
589 | case 0x10ec0298: | |
590 | alc_headset_mic_no_shutup(codec); | |
591 | break; | |
592 | default: | |
593 | if (!spec->no_shutup_pins) | |
594 | snd_hda_shutup_pins(codec); | |
595 | break; | |
596 | } | |
c0ca5ece TI |
597 | } |
598 | ||
1c716153 | 599 | /* generic shutup callback; |
4ce8e6a5 | 600 | * just turning off EAPD and a little pause for avoiding pop-noise |
1c716153 TI |
601 | */ |
602 | static void alc_eapd_shutup(struct hda_codec *codec) | |
603 | { | |
97a26570 KY |
604 | struct alc_spec *spec = codec->spec; |
605 | ||
1c716153 | 606 | alc_auto_setup_eapd(codec, false); |
97a26570 KY |
607 | if (!spec->no_depop_delay) |
608 | msleep(200); | |
c0ca5ece | 609 | alc_shutup_pins(codec); |
1c716153 TI |
610 | } |
611 | ||
1d045db9 | 612 | /* generic EAPD initialization */ |
4a79ba34 | 613 | static void alc_auto_init_amp(struct hda_codec *codec, int type) |
bc9f98a9 | 614 | { |
39fa84e9 | 615 | alc_auto_setup_eapd(codec, true); |
5579cd6f | 616 | alc_write_gpio(codec); |
4a79ba34 | 617 | switch (type) { |
4a79ba34 | 618 | case ALC_INIT_DEFAULT: |
7639a06c | 619 | switch (codec->core.vendor_id) { |
c9b58006 | 620 | case 0x10ec0260: |
98b24883 | 621 | alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010); |
c9b58006 | 622 | break; |
c9b58006 KY |
623 | case 0x10ec0880: |
624 | case 0x10ec0882: | |
625 | case 0x10ec0883: | |
626 | case 0x10ec0885: | |
1df8874b | 627 | alc_update_coef_idx(codec, 7, 0, 0x2030); |
c9b58006 | 628 | break; |
f9423e7a | 629 | case 0x10ec0888: |
4a79ba34 | 630 | alc888_coef_init(codec); |
f9423e7a | 631 | break; |
bc9f98a9 | 632 | } |
4a79ba34 TI |
633 | break; |
634 | } | |
635 | } | |
636 | ||
35a39f98 TI |
637 | /* get a primary headphone pin if available */ |
638 | static hda_nid_t alc_get_hp_pin(struct alc_spec *spec) | |
639 | { | |
640 | if (spec->gen.autocfg.hp_pins[0]) | |
641 | return spec->gen.autocfg.hp_pins[0]; | |
642 | if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT) | |
643 | return spec->gen.autocfg.line_out_pins[0]; | |
644 | return 0; | |
645 | } | |
08c189f2 | 646 | |
1d045db9 | 647 | /* |
08c189f2 | 648 | * Realtek SSID verification |
1d045db9 | 649 | */ |
42cf0d01 | 650 | |
08c189f2 TI |
651 | /* Could be any non-zero and even value. When used as fixup, tells |
652 | * the driver to ignore any present sku defines. | |
653 | */ | |
654 | #define ALC_FIXUP_SKU_IGNORE (2) | |
1a1455de | 655 | |
08c189f2 TI |
656 | static void alc_fixup_sku_ignore(struct hda_codec *codec, |
657 | const struct hda_fixup *fix, int action) | |
1a1455de | 658 | { |
1a1455de | 659 | struct alc_spec *spec = codec->spec; |
08c189f2 TI |
660 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
661 | spec->cdefine.fixup = 1; | |
662 | spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE; | |
1a1455de | 663 | } |
1a1455de TI |
664 | } |
665 | ||
b5c6611f ML |
666 | static void alc_fixup_no_depop_delay(struct hda_codec *codec, |
667 | const struct hda_fixup *fix, int action) | |
668 | { | |
669 | struct alc_spec *spec = codec->spec; | |
670 | ||
84d2dc3e | 671 | if (action == HDA_FIXUP_ACT_PROBE) { |
b5c6611f | 672 | spec->no_depop_delay = 1; |
84d2dc3e ML |
673 | codec->depop_delay = 0; |
674 | } | |
b5c6611f ML |
675 | } |
676 | ||
08c189f2 | 677 | static int alc_auto_parse_customize_define(struct hda_codec *codec) |
4a79ba34 | 678 | { |
08c189f2 TI |
679 | unsigned int ass, tmp, i; |
680 | unsigned nid = 0; | |
4a79ba34 TI |
681 | struct alc_spec *spec = codec->spec; |
682 | ||
08c189f2 | 683 | spec->cdefine.enable_pcbeep = 1; /* assume always enabled */ |
4a79ba34 | 684 | |
08c189f2 TI |
685 | if (spec->cdefine.fixup) { |
686 | ass = spec->cdefine.sku_cfg; | |
687 | if (ass == ALC_FIXUP_SKU_IGNORE) | |
688 | return -1; | |
689 | goto do_sku; | |
bb35febd TI |
690 | } |
691 | ||
5100cd07 TI |
692 | if (!codec->bus->pci) |
693 | return -1; | |
7639a06c | 694 | ass = codec->core.subsystem_id & 0xffff; |
08c189f2 TI |
695 | if (ass != codec->bus->pci->subsystem_device && (ass & 1)) |
696 | goto do_sku; | |
4a79ba34 | 697 | |
08c189f2 | 698 | nid = 0x1d; |
7639a06c | 699 | if (codec->core.vendor_id == 0x10ec0260) |
08c189f2 TI |
700 | nid = 0x17; |
701 | ass = snd_hda_codec_get_pincfg(codec, nid); | |
42cf0d01 | 702 | |
08c189f2 | 703 | if (!(ass & 1)) { |
4e76a883 | 704 | codec_info(codec, "%s: SKU not ready 0x%08x\n", |
7639a06c | 705 | codec->core.chip_name, ass); |
08c189f2 | 706 | return -1; |
42cf0d01 DH |
707 | } |
708 | ||
08c189f2 TI |
709 | /* check sum */ |
710 | tmp = 0; | |
711 | for (i = 1; i < 16; i++) { | |
712 | if ((ass >> i) & 1) | |
713 | tmp++; | |
ae8a60a5 | 714 | } |
08c189f2 TI |
715 | if (((ass >> 16) & 0xf) != tmp) |
716 | return -1; | |
ae8a60a5 | 717 | |
da00c244 KY |
718 | spec->cdefine.port_connectivity = ass >> 30; |
719 | spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20; | |
720 | spec->cdefine.check_sum = (ass >> 16) & 0xf; | |
721 | spec->cdefine.customization = ass >> 8; | |
722 | do_sku: | |
723 | spec->cdefine.sku_cfg = ass; | |
724 | spec->cdefine.external_amp = (ass & 0x38) >> 3; | |
725 | spec->cdefine.platform_type = (ass & 0x4) >> 2; | |
726 | spec->cdefine.swap = (ass & 0x2) >> 1; | |
727 | spec->cdefine.override = ass & 0x1; | |
728 | ||
4e76a883 | 729 | codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n", |
da00c244 | 730 | nid, spec->cdefine.sku_cfg); |
4e76a883 | 731 | codec_dbg(codec, "SKU: port_connectivity=0x%x\n", |
da00c244 | 732 | spec->cdefine.port_connectivity); |
4e76a883 TI |
733 | codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep); |
734 | codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum); | |
735 | codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization); | |
736 | codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp); | |
737 | codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type); | |
738 | codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap); | |
739 | codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override); | |
da00c244 KY |
740 | |
741 | return 0; | |
742 | } | |
743 | ||
08c189f2 TI |
744 | /* return the position of NID in the list, or -1 if not found */ |
745 | static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums) | |
746 | { | |
747 | int i; | |
748 | for (i = 0; i < nums; i++) | |
749 | if (list[i] == nid) | |
750 | return i; | |
751 | return -1; | |
752 | } | |
1d045db9 | 753 | /* return true if the given NID is found in the list */ |
3af9ee6b TI |
754 | static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums) |
755 | { | |
21268961 | 756 | return find_idx_in_nid_list(nid, list, nums) >= 0; |
3af9ee6b TI |
757 | } |
758 | ||
4a79ba34 TI |
759 | /* check subsystem ID and set up device-specific initialization; |
760 | * return 1 if initialized, 0 if invalid SSID | |
761 | */ | |
762 | /* 32-bit subsystem ID for BIOS loading in HD Audio codec. | |
763 | * 31 ~ 16 : Manufacture ID | |
764 | * 15 ~ 8 : SKU ID | |
765 | * 7 ~ 0 : Assembly ID | |
766 | * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36 | |
767 | */ | |
58c57cfa | 768 | static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports) |
4a79ba34 TI |
769 | { |
770 | unsigned int ass, tmp, i; | |
771 | unsigned nid; | |
772 | struct alc_spec *spec = codec->spec; | |
773 | ||
90622917 DH |
774 | if (spec->cdefine.fixup) { |
775 | ass = spec->cdefine.sku_cfg; | |
776 | if (ass == ALC_FIXUP_SKU_IGNORE) | |
777 | return 0; | |
778 | goto do_sku; | |
779 | } | |
780 | ||
7639a06c | 781 | ass = codec->core.subsystem_id & 0xffff; |
5100cd07 TI |
782 | if (codec->bus->pci && |
783 | ass != codec->bus->pci->subsystem_device && (ass & 1)) | |
4a79ba34 TI |
784 | goto do_sku; |
785 | ||
786 | /* invalid SSID, check the special NID pin defcfg instead */ | |
787 | /* | |
def319f9 | 788 | * 31~30 : port connectivity |
4a79ba34 TI |
789 | * 29~21 : reserve |
790 | * 20 : PCBEEP input | |
791 | * 19~16 : Check sum (15:1) | |
792 | * 15~1 : Custom | |
793 | * 0 : override | |
794 | */ | |
795 | nid = 0x1d; | |
7639a06c | 796 | if (codec->core.vendor_id == 0x10ec0260) |
4a79ba34 TI |
797 | nid = 0x17; |
798 | ass = snd_hda_codec_get_pincfg(codec, nid); | |
4e76a883 TI |
799 | codec_dbg(codec, |
800 | "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n", | |
cb6605c1 | 801 | ass, nid); |
6227cdce | 802 | if (!(ass & 1)) |
4a79ba34 TI |
803 | return 0; |
804 | if ((ass >> 30) != 1) /* no physical connection */ | |
805 | return 0; | |
806 | ||
807 | /* check sum */ | |
808 | tmp = 0; | |
809 | for (i = 1; i < 16; i++) { | |
810 | if ((ass >> i) & 1) | |
811 | tmp++; | |
812 | } | |
813 | if (((ass >> 16) & 0xf) != tmp) | |
814 | return 0; | |
815 | do_sku: | |
4e76a883 | 816 | codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n", |
7639a06c | 817 | ass & 0xffff, codec->core.vendor_id); |
4a79ba34 TI |
818 | /* |
819 | * 0 : override | |
820 | * 1 : Swap Jack | |
821 | * 2 : 0 --> Desktop, 1 --> Laptop | |
822 | * 3~5 : External Amplifier control | |
823 | * 7~6 : Reserved | |
824 | */ | |
825 | tmp = (ass & 0x38) >> 3; /* external Amp control */ | |
1c76aa5f TI |
826 | if (spec->init_amp == ALC_INIT_UNDEFINED) { |
827 | switch (tmp) { | |
828 | case 1: | |
5579cd6f | 829 | alc_setup_gpio(codec, 0x01); |
1c76aa5f TI |
830 | break; |
831 | case 3: | |
5579cd6f | 832 | alc_setup_gpio(codec, 0x02); |
1c76aa5f TI |
833 | break; |
834 | case 7: | |
5579cd6f | 835 | alc_setup_gpio(codec, 0x03); |
1c76aa5f TI |
836 | break; |
837 | case 5: | |
838 | default: | |
839 | spec->init_amp = ALC_INIT_DEFAULT; | |
840 | break; | |
841 | } | |
bc9f98a9 | 842 | } |
ea1fb29a | 843 | |
8c427226 | 844 | /* is laptop or Desktop and enable the function "Mute internal speaker |
c9b58006 KY |
845 | * when the external headphone out jack is plugged" |
846 | */ | |
8c427226 | 847 | if (!(ass & 0x8000)) |
4a79ba34 | 848 | return 1; |
c9b58006 KY |
849 | /* |
850 | * 10~8 : Jack location | |
851 | * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered | |
852 | * 14~13: Resvered | |
853 | * 15 : 1 --> enable the function "Mute internal speaker | |
854 | * when the external headphone out jack is plugged" | |
855 | */ | |
35a39f98 | 856 | if (!alc_get_hp_pin(spec)) { |
01d4825d | 857 | hda_nid_t nid; |
c9b58006 | 858 | tmp = (ass >> 11) & 0x3; /* HP to chassis */ |
58c57cfa | 859 | nid = ports[tmp]; |
08c189f2 TI |
860 | if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins, |
861 | spec->gen.autocfg.line_outs)) | |
3af9ee6b | 862 | return 1; |
08c189f2 | 863 | spec->gen.autocfg.hp_pins[0] = nid; |
c9b58006 | 864 | } |
4a79ba34 TI |
865 | return 1; |
866 | } | |
ea1fb29a | 867 | |
3e6179b8 TI |
868 | /* Check the validity of ALC subsystem-id |
869 | * ports contains an array of 4 pin NIDs for port-A, E, D and I */ | |
870 | static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports) | |
4a79ba34 | 871 | { |
58c57cfa | 872 | if (!alc_subsystem_id(codec, ports)) { |
4a79ba34 | 873 | struct alc_spec *spec = codec->spec; |
67791202 TI |
874 | if (spec->init_amp == ALC_INIT_UNDEFINED) { |
875 | codec_dbg(codec, | |
876 | "realtek: Enable default setup for auto mode as fallback\n"); | |
877 | spec->init_amp = ALC_INIT_DEFAULT; | |
878 | } | |
4a79ba34 | 879 | } |
21268961 | 880 | } |
1a1455de | 881 | |
1d045db9 | 882 | /* |
ef8ef5fb | 883 | */ |
f9e336f6 | 884 | |
9d36a7dc DH |
885 | static void alc_fixup_inv_dmic(struct hda_codec *codec, |
886 | const struct hda_fixup *fix, int action) | |
125821ae TI |
887 | { |
888 | struct alc_spec *spec = codec->spec; | |
668d1e96 | 889 | |
9d36a7dc | 890 | spec->gen.inv_dmic_split = 1; |
6e72aa5f TI |
891 | } |
892 | ||
e9edcee0 | 893 | |
08c189f2 | 894 | static int alc_build_controls(struct hda_codec *codec) |
1d045db9 | 895 | { |
a5cb463a | 896 | int err; |
e9427969 | 897 | |
08c189f2 TI |
898 | err = snd_hda_gen_build_controls(codec); |
899 | if (err < 0) | |
900 | return err; | |
1da177e4 | 901 | |
1727a771 | 902 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD); |
1c4a54b4 | 903 | return 0; |
a361d84b KY |
904 | } |
905 | ||
a361d84b | 906 | |
df694daa | 907 | /* |
08c189f2 | 908 | * Common callbacks |
df694daa | 909 | */ |
a361d84b | 910 | |
c9af753f TI |
911 | static void alc_pre_init(struct hda_codec *codec) |
912 | { | |
913 | alc_fill_eapd_coef(codec); | |
914 | } | |
915 | ||
aeac1a0d KY |
916 | #define is_s3_resume(codec) \ |
917 | ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME) | |
c9af753f TI |
918 | #define is_s4_resume(codec) \ |
919 | ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE) | |
920 | ||
08c189f2 | 921 | static int alc_init(struct hda_codec *codec) |
1d045db9 TI |
922 | { |
923 | struct alc_spec *spec = codec->spec; | |
a361d84b | 924 | |
c9af753f TI |
925 | /* hibernation resume needs the full chip initialization */ |
926 | if (is_s4_resume(codec)) | |
927 | alc_pre_init(codec); | |
928 | ||
08c189f2 TI |
929 | if (spec->init_hook) |
930 | spec->init_hook(codec); | |
a361d84b | 931 | |
89781d08 | 932 | spec->gen.skip_verbs = 1; /* applied in below */ |
607ca3bd | 933 | snd_hda_gen_init(codec); |
08c189f2 TI |
934 | alc_fix_pll(codec); |
935 | alc_auto_init_amp(codec, spec->init_amp); | |
89781d08 | 936 | snd_hda_apply_verbs(codec); /* apply verbs here after own init */ |
3abf2f36 | 937 | |
1727a771 | 938 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT); |
a361d84b | 939 | |
1d045db9 TI |
940 | return 0; |
941 | } | |
a361d84b | 942 | |
c3d9ca93 RD |
943 | #define alc_free snd_hda_gen_free |
944 | ||
945 | #ifdef CONFIG_PM | |
08c189f2 | 946 | static inline void alc_shutup(struct hda_codec *codec) |
1d045db9 TI |
947 | { |
948 | struct alc_spec *spec = codec->spec; | |
a361d84b | 949 | |
c7273bd6 TI |
950 | if (!snd_hda_get_bool_hint(codec, "shutup")) |
951 | return; /* disabled explicitly by hints */ | |
952 | ||
08c189f2 TI |
953 | if (spec && spec->shutup) |
954 | spec->shutup(codec); | |
9bfb2844 | 955 | else |
c0ca5ece | 956 | alc_shutup_pins(codec); |
1d045db9 TI |
957 | } |
958 | ||
08c189f2 | 959 | static void alc_power_eapd(struct hda_codec *codec) |
1d045db9 | 960 | { |
08c189f2 | 961 | alc_auto_setup_eapd(codec, false); |
1d045db9 | 962 | } |
2134ea4f | 963 | |
08c189f2 | 964 | static int alc_suspend(struct hda_codec *codec) |
1d045db9 TI |
965 | { |
966 | struct alc_spec *spec = codec->spec; | |
08c189f2 TI |
967 | alc_shutup(codec); |
968 | if (spec && spec->power_hook) | |
969 | spec->power_hook(codec); | |
a361d84b KY |
970 | return 0; |
971 | } | |
972 | ||
08c189f2 | 973 | static int alc_resume(struct hda_codec *codec) |
1d045db9 | 974 | { |
97a26570 KY |
975 | struct alc_spec *spec = codec->spec; |
976 | ||
977 | if (!spec->no_depop_delay) | |
978 | msleep(150); /* to avoid pop noise */ | |
08c189f2 | 979 | codec->patch_ops.init(codec); |
1a462be5 | 980 | snd_hda_regmap_sync(codec); |
08c189f2 TI |
981 | hda_call_check_power_status(codec, 0x01); |
982 | return 0; | |
1d045db9 | 983 | } |
08c189f2 | 984 | #endif |
f6a92248 | 985 | |
1d045db9 | 986 | /* |
1d045db9 | 987 | */ |
08c189f2 TI |
988 | static const struct hda_codec_ops alc_patch_ops = { |
989 | .build_controls = alc_build_controls, | |
990 | .build_pcms = snd_hda_gen_build_pcms, | |
991 | .init = alc_init, | |
992 | .free = alc_free, | |
993 | .unsol_event = snd_hda_jack_unsol_event, | |
994 | #ifdef CONFIG_PM | |
995 | .resume = alc_resume, | |
08c189f2 | 996 | .suspend = alc_suspend, |
fce52a3b | 997 | .check_power_status = snd_hda_gen_check_power_status, |
08c189f2 | 998 | #endif |
08c189f2 | 999 | }; |
f6a92248 | 1000 | |
f53281e6 | 1001 | |
ded255be | 1002 | #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name) |
e01bf509 | 1003 | |
e4770629 | 1004 | /* |
4b016931 | 1005 | * Rename codecs appropriately from COEF value or subvendor id |
e4770629 | 1006 | */ |
08c189f2 TI |
1007 | struct alc_codec_rename_table { |
1008 | unsigned int vendor_id; | |
1009 | unsigned short coef_mask; | |
1010 | unsigned short coef_bits; | |
1011 | const char *name; | |
1012 | }; | |
84898e87 | 1013 | |
4b016931 KY |
1014 | struct alc_codec_rename_pci_table { |
1015 | unsigned int codec_vendor_id; | |
1016 | unsigned short pci_subvendor; | |
1017 | unsigned short pci_subdevice; | |
1018 | const char *name; | |
1019 | }; | |
1020 | ||
6b0f95c4 | 1021 | static const struct alc_codec_rename_table rename_tbl[] = { |
e6e5f7ad | 1022 | { 0x10ec0221, 0xf00f, 0x1003, "ALC231" }, |
08c189f2 TI |
1023 | { 0x10ec0269, 0xfff0, 0x3010, "ALC277" }, |
1024 | { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" }, | |
1025 | { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" }, | |
1026 | { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" }, | |
1027 | { 0x10ec0269, 0xffff, 0xa023, "ALC259" }, | |
1028 | { 0x10ec0269, 0xffff, 0x6023, "ALC281X" }, | |
1029 | { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" }, | |
1030 | { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" }, | |
e6e5f7ad | 1031 | { 0x10ec0662, 0xffff, 0x4020, "ALC656" }, |
08c189f2 TI |
1032 | { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" }, |
1033 | { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" }, | |
1034 | { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" }, | |
1035 | { 0x10ec0899, 0x2000, 0x2000, "ALC899" }, | |
1036 | { 0x10ec0892, 0xffff, 0x8020, "ALC661" }, | |
1037 | { 0x10ec0892, 0xffff, 0x8011, "ALC661" }, | |
1038 | { 0x10ec0892, 0xffff, 0x4011, "ALC656" }, | |
1039 | { } /* terminator */ | |
1040 | }; | |
84898e87 | 1041 | |
6b0f95c4 | 1042 | static const struct alc_codec_rename_pci_table rename_pci_tbl[] = { |
4b016931 KY |
1043 | { 0x10ec0280, 0x1028, 0, "ALC3220" }, |
1044 | { 0x10ec0282, 0x1028, 0, "ALC3221" }, | |
1045 | { 0x10ec0283, 0x1028, 0, "ALC3223" }, | |
193177de | 1046 | { 0x10ec0288, 0x1028, 0, "ALC3263" }, |
4b016931 | 1047 | { 0x10ec0292, 0x1028, 0, "ALC3226" }, |
193177de | 1048 | { 0x10ec0293, 0x1028, 0, "ALC3235" }, |
4b016931 KY |
1049 | { 0x10ec0255, 0x1028, 0, "ALC3234" }, |
1050 | { 0x10ec0668, 0x1028, 0, "ALC3661" }, | |
e6e5f7ad KY |
1051 | { 0x10ec0275, 0x1028, 0, "ALC3260" }, |
1052 | { 0x10ec0899, 0x1028, 0, "ALC3861" }, | |
2c674fac | 1053 | { 0x10ec0298, 0x1028, 0, "ALC3266" }, |
736f20a7 | 1054 | { 0x10ec0236, 0x1028, 0, "ALC3204" }, |
82324502 | 1055 | { 0x10ec0256, 0x1028, 0, "ALC3246" }, |
4231430d | 1056 | { 0x10ec0225, 0x1028, 0, "ALC3253" }, |
7d727869 | 1057 | { 0x10ec0295, 0x1028, 0, "ALC3254" }, |
28f1f9b2 | 1058 | { 0x10ec0299, 0x1028, 0, "ALC3271" }, |
e6e5f7ad KY |
1059 | { 0x10ec0670, 0x1025, 0, "ALC669X" }, |
1060 | { 0x10ec0676, 0x1025, 0, "ALC679X" }, | |
1061 | { 0x10ec0282, 0x1043, 0, "ALC3229" }, | |
1062 | { 0x10ec0233, 0x1043, 0, "ALC3236" }, | |
1063 | { 0x10ec0280, 0x103c, 0, "ALC3228" }, | |
1064 | { 0x10ec0282, 0x103c, 0, "ALC3227" }, | |
1065 | { 0x10ec0286, 0x103c, 0, "ALC3242" }, | |
1066 | { 0x10ec0290, 0x103c, 0, "ALC3241" }, | |
1067 | { 0x10ec0668, 0x103c, 0, "ALC3662" }, | |
1068 | { 0x10ec0283, 0x17aa, 0, "ALC3239" }, | |
1069 | { 0x10ec0292, 0x17aa, 0, "ALC3232" }, | |
4b016931 KY |
1070 | { } /* terminator */ |
1071 | }; | |
1072 | ||
08c189f2 | 1073 | static int alc_codec_rename_from_preset(struct hda_codec *codec) |
1d045db9 | 1074 | { |
08c189f2 | 1075 | const struct alc_codec_rename_table *p; |
4b016931 | 1076 | const struct alc_codec_rename_pci_table *q; |
60db6b53 | 1077 | |
08c189f2 | 1078 | for (p = rename_tbl; p->vendor_id; p++) { |
7639a06c | 1079 | if (p->vendor_id != codec->core.vendor_id) |
08c189f2 TI |
1080 | continue; |
1081 | if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits) | |
1082 | return alc_codec_rename(codec, p->name); | |
1d045db9 | 1083 | } |
4b016931 | 1084 | |
5100cd07 TI |
1085 | if (!codec->bus->pci) |
1086 | return 0; | |
4b016931 | 1087 | for (q = rename_pci_tbl; q->codec_vendor_id; q++) { |
7639a06c | 1088 | if (q->codec_vendor_id != codec->core.vendor_id) |
4b016931 KY |
1089 | continue; |
1090 | if (q->pci_subvendor != codec->bus->pci->subsystem_vendor) | |
1091 | continue; | |
1092 | if (!q->pci_subdevice || | |
1093 | q->pci_subdevice == codec->bus->pci->subsystem_device) | |
1094 | return alc_codec_rename(codec, q->name); | |
1095 | } | |
1096 | ||
08c189f2 | 1097 | return 0; |
1d045db9 | 1098 | } |
f53281e6 | 1099 | |
e4770629 | 1100 | |
1d045db9 TI |
1101 | /* |
1102 | * Digital-beep handlers | |
1103 | */ | |
1104 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | |
fea80fae TI |
1105 | |
1106 | /* additional beep mixers; private_value will be overwritten */ | |
1107 | static const struct snd_kcontrol_new alc_beep_mixer[] = { | |
1108 | HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT), | |
1109 | HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT), | |
1110 | }; | |
1111 | ||
1112 | /* set up and create beep controls */ | |
1113 | static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid, | |
1114 | int idx, int dir) | |
1115 | { | |
1116 | struct snd_kcontrol_new *knew; | |
1117 | unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir); | |
1118 | int i; | |
1119 | ||
1120 | for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) { | |
1121 | knew = snd_hda_gen_add_kctl(&spec->gen, NULL, | |
1122 | &alc_beep_mixer[i]); | |
1123 | if (!knew) | |
1124 | return -ENOMEM; | |
1125 | knew->private_value = beep_amp; | |
1126 | } | |
1127 | return 0; | |
1128 | } | |
84898e87 | 1129 | |
6317e5eb | 1130 | static const struct snd_pci_quirk beep_allow_list[] = { |
7110005e | 1131 | SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1), |
a4b7f21d | 1132 | SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1), |
1d045db9 | 1133 | SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1), |
8554ee40 | 1134 | SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1), |
1d045db9 TI |
1135 | SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1), |
1136 | SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1), | |
1137 | SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1), | |
78f8baf1 | 1138 | SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1), |
1d045db9 | 1139 | SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1), |
6317e5eb | 1140 | /* denylist -- no beep available */ |
051c78af TI |
1141 | SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0), |
1142 | SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0), | |
1d045db9 | 1143 | {} |
fe3eb0a7 KY |
1144 | }; |
1145 | ||
1d045db9 TI |
1146 | static inline int has_cdefine_beep(struct hda_codec *codec) |
1147 | { | |
1148 | struct alc_spec *spec = codec->spec; | |
1149 | const struct snd_pci_quirk *q; | |
6317e5eb | 1150 | q = snd_pci_quirk_lookup(codec->bus->pci, beep_allow_list); |
1d045db9 TI |
1151 | if (q) |
1152 | return q->value; | |
1153 | return spec->cdefine.enable_pcbeep; | |
1154 | } | |
1155 | #else | |
fea80fae | 1156 | #define set_beep_amp(spec, nid, idx, dir) 0 |
1d045db9 TI |
1157 | #define has_cdefine_beep(codec) 0 |
1158 | #endif | |
84898e87 | 1159 | |
1d045db9 TI |
1160 | /* parse the BIOS configuration and set up the alc_spec */ |
1161 | /* return 1 if successful, 0 if the proper config is not found, | |
1162 | * or a negative error code | |
1163 | */ | |
3e6179b8 TI |
1164 | static int alc_parse_auto_config(struct hda_codec *codec, |
1165 | const hda_nid_t *ignore_nids, | |
1166 | const hda_nid_t *ssid_nids) | |
1d045db9 TI |
1167 | { |
1168 | struct alc_spec *spec = codec->spec; | |
08c189f2 | 1169 | struct auto_pin_cfg *cfg = &spec->gen.autocfg; |
1d045db9 | 1170 | int err; |
26f5df26 | 1171 | |
53c334ad TI |
1172 | err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids, |
1173 | spec->parse_flags); | |
1d045db9 TI |
1174 | if (err < 0) |
1175 | return err; | |
3e6179b8 TI |
1176 | |
1177 | if (ssid_nids) | |
1178 | alc_ssid_check(codec, ssid_nids); | |
64154835 | 1179 | |
08c189f2 TI |
1180 | err = snd_hda_gen_parse_auto_config(codec, cfg); |
1181 | if (err < 0) | |
1182 | return err; | |
070cff4c | 1183 | |
1d045db9 | 1184 | return 1; |
60db6b53 | 1185 | } |
f6a92248 | 1186 | |
3de95173 TI |
1187 | /* common preparation job for alc_spec */ |
1188 | static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid) | |
1189 | { | |
1190 | struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL); | |
1191 | int err; | |
1192 | ||
1193 | if (!spec) | |
1194 | return -ENOMEM; | |
1195 | codec->spec = spec; | |
08c189f2 TI |
1196 | snd_hda_gen_spec_init(&spec->gen); |
1197 | spec->gen.mixer_nid = mixer_nid; | |
1198 | spec->gen.own_eapd_ctl = 1; | |
1098b7c2 | 1199 | codec->single_adc_amp = 1; |
08c189f2 TI |
1200 | /* FIXME: do we need this for all Realtek codec models? */ |
1201 | codec->spdif_status_reset = 1; | |
a6e7d0a4 | 1202 | codec->forced_resume = 1; |
225068ab | 1203 | codec->patch_ops = alc_patch_ops; |
b837a9f5 | 1204 | mutex_init(&spec->coef_mutex); |
3de95173 TI |
1205 | |
1206 | err = alc_codec_rename_from_preset(codec); | |
1207 | if (err < 0) { | |
1208 | kfree(spec); | |
1209 | return err; | |
1210 | } | |
1211 | return 0; | |
1212 | } | |
1213 | ||
3e6179b8 TI |
1214 | static int alc880_parse_auto_config(struct hda_codec *codec) |
1215 | { | |
1216 | static const hda_nid_t alc880_ignore[] = { 0x1d, 0 }; | |
7d7eb9ea | 1217 | static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 }; |
3e6179b8 TI |
1218 | return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids); |
1219 | } | |
1220 | ||
ee3b2969 TI |
1221 | /* |
1222 | * ALC880 fix-ups | |
1223 | */ | |
1224 | enum { | |
411225a0 | 1225 | ALC880_FIXUP_GPIO1, |
ee3b2969 TI |
1226 | ALC880_FIXUP_GPIO2, |
1227 | ALC880_FIXUP_MEDION_RIM, | |
dc6af52d | 1228 | ALC880_FIXUP_LG, |
db8a38e5 | 1229 | ALC880_FIXUP_LG_LW25, |
f02aab5d | 1230 | ALC880_FIXUP_W810, |
27e917f8 | 1231 | ALC880_FIXUP_EAPD_COEF, |
b9368f5c | 1232 | ALC880_FIXUP_TCL_S700, |
cf5a2279 TI |
1233 | ALC880_FIXUP_VOL_KNOB, |
1234 | ALC880_FIXUP_FUJITSU, | |
ba533818 | 1235 | ALC880_FIXUP_F1734, |
817de92f | 1236 | ALC880_FIXUP_UNIWILL, |
967b88c4 | 1237 | ALC880_FIXUP_UNIWILL_DIG, |
96e225f6 | 1238 | ALC880_FIXUP_Z71V, |
487a588d | 1239 | ALC880_FIXUP_ASUS_W5A, |
67b6ec31 TI |
1240 | ALC880_FIXUP_3ST_BASE, |
1241 | ALC880_FIXUP_3ST, | |
1242 | ALC880_FIXUP_3ST_DIG, | |
1243 | ALC880_FIXUP_5ST_BASE, | |
1244 | ALC880_FIXUP_5ST, | |
1245 | ALC880_FIXUP_5ST_DIG, | |
1246 | ALC880_FIXUP_6ST_BASE, | |
1247 | ALC880_FIXUP_6ST, | |
1248 | ALC880_FIXUP_6ST_DIG, | |
5397145f | 1249 | ALC880_FIXUP_6ST_AUTOMUTE, |
ee3b2969 TI |
1250 | }; |
1251 | ||
cf5a2279 TI |
1252 | /* enable the volume-knob widget support on NID 0x21 */ |
1253 | static void alc880_fixup_vol_knob(struct hda_codec *codec, | |
1727a771 | 1254 | const struct hda_fixup *fix, int action) |
cf5a2279 | 1255 | { |
1727a771 | 1256 | if (action == HDA_FIXUP_ACT_PROBE) |
62f949bf TI |
1257 | snd_hda_jack_detect_enable_callback(codec, 0x21, |
1258 | alc_update_knob_master); | |
cf5a2279 TI |
1259 | } |
1260 | ||
1727a771 | 1261 | static const struct hda_fixup alc880_fixups[] = { |
411225a0 | 1262 | [ALC880_FIXUP_GPIO1] = { |
5579cd6f TI |
1263 | .type = HDA_FIXUP_FUNC, |
1264 | .v.func = alc_fixup_gpio1, | |
411225a0 | 1265 | }, |
ee3b2969 | 1266 | [ALC880_FIXUP_GPIO2] = { |
5579cd6f TI |
1267 | .type = HDA_FIXUP_FUNC, |
1268 | .v.func = alc_fixup_gpio2, | |
ee3b2969 TI |
1269 | }, |
1270 | [ALC880_FIXUP_MEDION_RIM] = { | |
1727a771 | 1271 | .type = HDA_FIXUP_VERBS, |
ee3b2969 TI |
1272 | .v.verbs = (const struct hda_verb[]) { |
1273 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
1274 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 }, | |
1275 | { } | |
1276 | }, | |
1277 | .chained = true, | |
1278 | .chain_id = ALC880_FIXUP_GPIO2, | |
1279 | }, | |
dc6af52d | 1280 | [ALC880_FIXUP_LG] = { |
1727a771 TI |
1281 | .type = HDA_FIXUP_PINS, |
1282 | .v.pins = (const struct hda_pintbl[]) { | |
dc6af52d TI |
1283 | /* disable bogus unused pins */ |
1284 | { 0x16, 0x411111f0 }, | |
1285 | { 0x18, 0x411111f0 }, | |
1286 | { 0x1a, 0x411111f0 }, | |
1287 | { } | |
1288 | } | |
1289 | }, | |
db8a38e5 TI |
1290 | [ALC880_FIXUP_LG_LW25] = { |
1291 | .type = HDA_FIXUP_PINS, | |
1292 | .v.pins = (const struct hda_pintbl[]) { | |
1293 | { 0x1a, 0x0181344f }, /* line-in */ | |
1294 | { 0x1b, 0x0321403f }, /* headphone */ | |
1295 | { } | |
1296 | } | |
1297 | }, | |
f02aab5d | 1298 | [ALC880_FIXUP_W810] = { |
1727a771 TI |
1299 | .type = HDA_FIXUP_PINS, |
1300 | .v.pins = (const struct hda_pintbl[]) { | |
f02aab5d TI |
1301 | /* disable bogus unused pins */ |
1302 | { 0x17, 0x411111f0 }, | |
1303 | { } | |
1304 | }, | |
1305 | .chained = true, | |
1306 | .chain_id = ALC880_FIXUP_GPIO2, | |
1307 | }, | |
27e917f8 | 1308 | [ALC880_FIXUP_EAPD_COEF] = { |
1727a771 | 1309 | .type = HDA_FIXUP_VERBS, |
27e917f8 TI |
1310 | .v.verbs = (const struct hda_verb[]) { |
1311 | /* change to EAPD mode */ | |
1312 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
1313 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 }, | |
1314 | {} | |
1315 | }, | |
1316 | }, | |
b9368f5c | 1317 | [ALC880_FIXUP_TCL_S700] = { |
1727a771 | 1318 | .type = HDA_FIXUP_VERBS, |
b9368f5c TI |
1319 | .v.verbs = (const struct hda_verb[]) { |
1320 | /* change to EAPD mode */ | |
1321 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
1322 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, | |
1323 | {} | |
1324 | }, | |
1325 | .chained = true, | |
1326 | .chain_id = ALC880_FIXUP_GPIO2, | |
1327 | }, | |
cf5a2279 | 1328 | [ALC880_FIXUP_VOL_KNOB] = { |
1727a771 | 1329 | .type = HDA_FIXUP_FUNC, |
cf5a2279 TI |
1330 | .v.func = alc880_fixup_vol_knob, |
1331 | }, | |
1332 | [ALC880_FIXUP_FUJITSU] = { | |
1333 | /* override all pins as BIOS on old Amilo is broken */ | |
1727a771 TI |
1334 | .type = HDA_FIXUP_PINS, |
1335 | .v.pins = (const struct hda_pintbl[]) { | |
bb148bde | 1336 | { 0x14, 0x0121401f }, /* HP */ |
cf5a2279 TI |
1337 | { 0x15, 0x99030120 }, /* speaker */ |
1338 | { 0x16, 0x99030130 }, /* bass speaker */ | |
1339 | { 0x17, 0x411111f0 }, /* N/A */ | |
1340 | { 0x18, 0x411111f0 }, /* N/A */ | |
1341 | { 0x19, 0x01a19950 }, /* mic-in */ | |
1342 | { 0x1a, 0x411111f0 }, /* N/A */ | |
1343 | { 0x1b, 0x411111f0 }, /* N/A */ | |
1344 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1345 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1346 | { 0x1e, 0x01454140 }, /* SPDIF out */ | |
1347 | { } | |
1348 | }, | |
1349 | .chained = true, | |
1350 | .chain_id = ALC880_FIXUP_VOL_KNOB, | |
1351 | }, | |
ba533818 TI |
1352 | [ALC880_FIXUP_F1734] = { |
1353 | /* almost compatible with FUJITSU, but no bass and SPDIF */ | |
1727a771 TI |
1354 | .type = HDA_FIXUP_PINS, |
1355 | .v.pins = (const struct hda_pintbl[]) { | |
bb148bde | 1356 | { 0x14, 0x0121401f }, /* HP */ |
ba533818 TI |
1357 | { 0x15, 0x99030120 }, /* speaker */ |
1358 | { 0x16, 0x411111f0 }, /* N/A */ | |
1359 | { 0x17, 0x411111f0 }, /* N/A */ | |
1360 | { 0x18, 0x411111f0 }, /* N/A */ | |
1361 | { 0x19, 0x01a19950 }, /* mic-in */ | |
1362 | { 0x1a, 0x411111f0 }, /* N/A */ | |
1363 | { 0x1b, 0x411111f0 }, /* N/A */ | |
1364 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1365 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1366 | { 0x1e, 0x411111f0 }, /* N/A */ | |
1367 | { } | |
1368 | }, | |
1369 | .chained = true, | |
1370 | .chain_id = ALC880_FIXUP_VOL_KNOB, | |
1371 | }, | |
817de92f TI |
1372 | [ALC880_FIXUP_UNIWILL] = { |
1373 | /* need to fix HP and speaker pins to be parsed correctly */ | |
1727a771 TI |
1374 | .type = HDA_FIXUP_PINS, |
1375 | .v.pins = (const struct hda_pintbl[]) { | |
817de92f TI |
1376 | { 0x14, 0x0121411f }, /* HP */ |
1377 | { 0x15, 0x99030120 }, /* speaker */ | |
1378 | { 0x16, 0x99030130 }, /* bass speaker */ | |
1379 | { } | |
1380 | }, | |
1381 | }, | |
967b88c4 | 1382 | [ALC880_FIXUP_UNIWILL_DIG] = { |
1727a771 TI |
1383 | .type = HDA_FIXUP_PINS, |
1384 | .v.pins = (const struct hda_pintbl[]) { | |
967b88c4 TI |
1385 | /* disable bogus unused pins */ |
1386 | { 0x17, 0x411111f0 }, | |
1387 | { 0x19, 0x411111f0 }, | |
1388 | { 0x1b, 0x411111f0 }, | |
1389 | { 0x1f, 0x411111f0 }, | |
1390 | { } | |
1391 | } | |
1392 | }, | |
96e225f6 | 1393 | [ALC880_FIXUP_Z71V] = { |
1727a771 TI |
1394 | .type = HDA_FIXUP_PINS, |
1395 | .v.pins = (const struct hda_pintbl[]) { | |
96e225f6 TI |
1396 | /* set up the whole pins as BIOS is utterly broken */ |
1397 | { 0x14, 0x99030120 }, /* speaker */ | |
1398 | { 0x15, 0x0121411f }, /* HP */ | |
1399 | { 0x16, 0x411111f0 }, /* N/A */ | |
1400 | { 0x17, 0x411111f0 }, /* N/A */ | |
1401 | { 0x18, 0x01a19950 }, /* mic-in */ | |
1402 | { 0x19, 0x411111f0 }, /* N/A */ | |
1403 | { 0x1a, 0x01813031 }, /* line-in */ | |
1404 | { 0x1b, 0x411111f0 }, /* N/A */ | |
1405 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1406 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1407 | { 0x1e, 0x0144111e }, /* SPDIF */ | |
1408 | { } | |
1409 | } | |
1410 | }, | |
487a588d TI |
1411 | [ALC880_FIXUP_ASUS_W5A] = { |
1412 | .type = HDA_FIXUP_PINS, | |
1413 | .v.pins = (const struct hda_pintbl[]) { | |
1414 | /* set up the whole pins as BIOS is utterly broken */ | |
1415 | { 0x14, 0x0121411f }, /* HP */ | |
1416 | { 0x15, 0x411111f0 }, /* N/A */ | |
1417 | { 0x16, 0x411111f0 }, /* N/A */ | |
1418 | { 0x17, 0x411111f0 }, /* N/A */ | |
1419 | { 0x18, 0x90a60160 }, /* mic */ | |
1420 | { 0x19, 0x411111f0 }, /* N/A */ | |
1421 | { 0x1a, 0x411111f0 }, /* N/A */ | |
1422 | { 0x1b, 0x411111f0 }, /* N/A */ | |
1423 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1424 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1425 | { 0x1e, 0xb743111e }, /* SPDIF out */ | |
1426 | { } | |
1427 | }, | |
1428 | .chained = true, | |
1429 | .chain_id = ALC880_FIXUP_GPIO1, | |
1430 | }, | |
67b6ec31 | 1431 | [ALC880_FIXUP_3ST_BASE] = { |
1727a771 TI |
1432 | .type = HDA_FIXUP_PINS, |
1433 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1434 | { 0x14, 0x01014010 }, /* line-out */ |
1435 | { 0x15, 0x411111f0 }, /* N/A */ | |
1436 | { 0x16, 0x411111f0 }, /* N/A */ | |
1437 | { 0x17, 0x411111f0 }, /* N/A */ | |
1438 | { 0x18, 0x01a19c30 }, /* mic-in */ | |
1439 | { 0x19, 0x0121411f }, /* HP */ | |
1440 | { 0x1a, 0x01813031 }, /* line-in */ | |
1441 | { 0x1b, 0x02a19c40 }, /* front-mic */ | |
1442 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1443 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1444 | /* 0x1e is filled in below */ | |
1445 | { 0x1f, 0x411111f0 }, /* N/A */ | |
1446 | { } | |
1447 | } | |
1448 | }, | |
1449 | [ALC880_FIXUP_3ST] = { | |
1727a771 TI |
1450 | .type = HDA_FIXUP_PINS, |
1451 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1452 | { 0x1e, 0x411111f0 }, /* N/A */ |
1453 | { } | |
1454 | }, | |
1455 | .chained = true, | |
1456 | .chain_id = ALC880_FIXUP_3ST_BASE, | |
1457 | }, | |
1458 | [ALC880_FIXUP_3ST_DIG] = { | |
1727a771 TI |
1459 | .type = HDA_FIXUP_PINS, |
1460 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1461 | { 0x1e, 0x0144111e }, /* SPDIF */ |
1462 | { } | |
1463 | }, | |
1464 | .chained = true, | |
1465 | .chain_id = ALC880_FIXUP_3ST_BASE, | |
1466 | }, | |
1467 | [ALC880_FIXUP_5ST_BASE] = { | |
1727a771 TI |
1468 | .type = HDA_FIXUP_PINS, |
1469 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1470 | { 0x14, 0x01014010 }, /* front */ |
1471 | { 0x15, 0x411111f0 }, /* N/A */ | |
1472 | { 0x16, 0x01011411 }, /* CLFE */ | |
1473 | { 0x17, 0x01016412 }, /* surr */ | |
1474 | { 0x18, 0x01a19c30 }, /* mic-in */ | |
1475 | { 0x19, 0x0121411f }, /* HP */ | |
1476 | { 0x1a, 0x01813031 }, /* line-in */ | |
1477 | { 0x1b, 0x02a19c40 }, /* front-mic */ | |
1478 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1479 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1480 | /* 0x1e is filled in below */ | |
1481 | { 0x1f, 0x411111f0 }, /* N/A */ | |
1482 | { } | |
1483 | } | |
1484 | }, | |
1485 | [ALC880_FIXUP_5ST] = { | |
1727a771 TI |
1486 | .type = HDA_FIXUP_PINS, |
1487 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1488 | { 0x1e, 0x411111f0 }, /* N/A */ |
1489 | { } | |
1490 | }, | |
1491 | .chained = true, | |
1492 | .chain_id = ALC880_FIXUP_5ST_BASE, | |
1493 | }, | |
1494 | [ALC880_FIXUP_5ST_DIG] = { | |
1727a771 TI |
1495 | .type = HDA_FIXUP_PINS, |
1496 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1497 | { 0x1e, 0x0144111e }, /* SPDIF */ |
1498 | { } | |
1499 | }, | |
1500 | .chained = true, | |
1501 | .chain_id = ALC880_FIXUP_5ST_BASE, | |
1502 | }, | |
1503 | [ALC880_FIXUP_6ST_BASE] = { | |
1727a771 TI |
1504 | .type = HDA_FIXUP_PINS, |
1505 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1506 | { 0x14, 0x01014010 }, /* front */ |
1507 | { 0x15, 0x01016412 }, /* surr */ | |
1508 | { 0x16, 0x01011411 }, /* CLFE */ | |
1509 | { 0x17, 0x01012414 }, /* side */ | |
1510 | { 0x18, 0x01a19c30 }, /* mic-in */ | |
1511 | { 0x19, 0x02a19c40 }, /* front-mic */ | |
1512 | { 0x1a, 0x01813031 }, /* line-in */ | |
1513 | { 0x1b, 0x0121411f }, /* HP */ | |
1514 | { 0x1c, 0x411111f0 }, /* N/A */ | |
1515 | { 0x1d, 0x411111f0 }, /* N/A */ | |
1516 | /* 0x1e is filled in below */ | |
1517 | { 0x1f, 0x411111f0 }, /* N/A */ | |
1518 | { } | |
1519 | } | |
1520 | }, | |
1521 | [ALC880_FIXUP_6ST] = { | |
1727a771 TI |
1522 | .type = HDA_FIXUP_PINS, |
1523 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1524 | { 0x1e, 0x411111f0 }, /* N/A */ |
1525 | { } | |
1526 | }, | |
1527 | .chained = true, | |
1528 | .chain_id = ALC880_FIXUP_6ST_BASE, | |
1529 | }, | |
1530 | [ALC880_FIXUP_6ST_DIG] = { | |
1727a771 TI |
1531 | .type = HDA_FIXUP_PINS, |
1532 | .v.pins = (const struct hda_pintbl[]) { | |
67b6ec31 TI |
1533 | { 0x1e, 0x0144111e }, /* SPDIF */ |
1534 | { } | |
1535 | }, | |
1536 | .chained = true, | |
1537 | .chain_id = ALC880_FIXUP_6ST_BASE, | |
1538 | }, | |
5397145f TI |
1539 | [ALC880_FIXUP_6ST_AUTOMUTE] = { |
1540 | .type = HDA_FIXUP_PINS, | |
1541 | .v.pins = (const struct hda_pintbl[]) { | |
1542 | { 0x1b, 0x0121401f }, /* HP with jack detect */ | |
1543 | { } | |
1544 | }, | |
1545 | .chained_before = true, | |
1546 | .chain_id = ALC880_FIXUP_6ST_BASE, | |
1547 | }, | |
ee3b2969 TI |
1548 | }; |
1549 | ||
1550 | static const struct snd_pci_quirk alc880_fixup_tbl[] = { | |
f02aab5d | 1551 | SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810), |
487a588d | 1552 | SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A), |
96e225f6 | 1553 | SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V), |
29e3fdcc | 1554 | SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1), |
6538de03 | 1555 | SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE), |
29e3fdcc | 1556 | SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2), |
27e917f8 | 1557 | SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF), |
967b88c4 | 1558 | SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG), |
ba533818 | 1559 | SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734), |
817de92f | 1560 | SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL), |
7833c7e8 | 1561 | SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB), |
f02aab5d | 1562 | SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810), |
ee3b2969 | 1563 | SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM), |
5397145f | 1564 | SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE), |
a161574e | 1565 | SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU), |
cf5a2279 | 1566 | SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU), |
ba533818 | 1567 | SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734), |
cf5a2279 | 1568 | SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU), |
dc6af52d TI |
1569 | SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG), |
1570 | SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG), | |
1571 | SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG), | |
db8a38e5 | 1572 | SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25), |
b9368f5c | 1573 | SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700), |
67b6ec31 TI |
1574 | |
1575 | /* Below is the copied entries from alc880_quirks.c. | |
1576 | * It's not quite sure whether BIOS sets the correct pin-config table | |
1577 | * on these machines, thus they are kept to be compatible with | |
1578 | * the old static quirks. Once when it's confirmed to work without | |
1579 | * these overrides, it'd be better to remove. | |
1580 | */ | |
1581 | SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG), | |
1582 | SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST), | |
1583 | SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG), | |
1584 | SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG), | |
1585 | SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG), | |
1586 | SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG), | |
1587 | SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG), | |
1588 | SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST), | |
1589 | SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG), | |
1590 | SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST), | |
1591 | SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST), | |
1592 | SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST), | |
1593 | SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST), | |
1594 | SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST), | |
1595 | SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG), | |
1596 | SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG), | |
1597 | SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG), | |
1598 | SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG), | |
1599 | SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG), | |
1600 | SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG), | |
1601 | SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG), | |
1602 | SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */ | |
1603 | SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG), | |
1604 | SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1605 | SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1606 | SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1607 | SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG), | |
1608 | SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1609 | SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG), | |
1610 | SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG), | |
1611 | SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1612 | SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1613 | SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG), | |
1614 | /* default Intel */ | |
1615 | SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST), | |
1616 | SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG), | |
1617 | SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG), | |
1618 | {} | |
1619 | }; | |
1620 | ||
1727a771 | 1621 | static const struct hda_model_fixup alc880_fixup_models[] = { |
67b6ec31 TI |
1622 | {.id = ALC880_FIXUP_3ST, .name = "3stack"}, |
1623 | {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"}, | |
1624 | {.id = ALC880_FIXUP_5ST, .name = "5stack"}, | |
1625 | {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"}, | |
1626 | {.id = ALC880_FIXUP_6ST, .name = "6stack"}, | |
1627 | {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"}, | |
5397145f | 1628 | {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"}, |
ee3b2969 TI |
1629 | {} |
1630 | }; | |
1631 | ||
1632 | ||
1d045db9 TI |
1633 | /* |
1634 | * OK, here we have finally the patch for ALC880 | |
1635 | */ | |
1d045db9 | 1636 | static int patch_alc880(struct hda_codec *codec) |
60db6b53 | 1637 | { |
1d045db9 | 1638 | struct alc_spec *spec; |
1d045db9 | 1639 | int err; |
f6a92248 | 1640 | |
3de95173 TI |
1641 | err = alc_alloc_spec(codec, 0x0b); |
1642 | if (err < 0) | |
1643 | return err; | |
64154835 | 1644 | |
3de95173 | 1645 | spec = codec->spec; |
08c189f2 | 1646 | spec->gen.need_dac_fix = 1; |
7504b6cd | 1647 | spec->gen.beep_nid = 0x01; |
f53281e6 | 1648 | |
225068ab TI |
1649 | codec->patch_ops.unsol_event = alc880_unsol_event; |
1650 | ||
c9af753f TI |
1651 | alc_pre_init(codec); |
1652 | ||
1727a771 | 1653 | snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl, |
67b6ec31 | 1654 | alc880_fixups); |
1727a771 | 1655 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
ee3b2969 | 1656 | |
67b6ec31 TI |
1657 | /* automatic parse from the BIOS config */ |
1658 | err = alc880_parse_auto_config(codec); | |
1659 | if (err < 0) | |
1660 | goto error; | |
fe3eb0a7 | 1661 | |
fea80fae TI |
1662 | if (!spec->gen.no_analog) { |
1663 | err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | |
1664 | if (err < 0) | |
1665 | goto error; | |
1666 | } | |
f53281e6 | 1667 | |
1727a771 | 1668 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 1669 | |
1d045db9 | 1670 | return 0; |
e16fb6d1 TI |
1671 | |
1672 | error: | |
1673 | alc_free(codec); | |
1674 | return err; | |
226b1ec8 KY |
1675 | } |
1676 | ||
1d045db9 | 1677 | |
60db6b53 | 1678 | /* |
1d045db9 | 1679 | * ALC260 support |
60db6b53 | 1680 | */ |
1d045db9 | 1681 | static int alc260_parse_auto_config(struct hda_codec *codec) |
f6a92248 | 1682 | { |
1d045db9 | 1683 | static const hda_nid_t alc260_ignore[] = { 0x17, 0 }; |
3e6179b8 TI |
1684 | static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 }; |
1685 | return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids); | |
f6a92248 KY |
1686 | } |
1687 | ||
1d045db9 TI |
1688 | /* |
1689 | * Pin config fixes | |
1690 | */ | |
1691 | enum { | |
ca8f0424 TI |
1692 | ALC260_FIXUP_HP_DC5750, |
1693 | ALC260_FIXUP_HP_PIN_0F, | |
1694 | ALC260_FIXUP_COEF, | |
15317ab2 | 1695 | ALC260_FIXUP_GPIO1, |
20f7d928 TI |
1696 | ALC260_FIXUP_GPIO1_TOGGLE, |
1697 | ALC260_FIXUP_REPLACER, | |
0a1c4fa2 | 1698 | ALC260_FIXUP_HP_B1900, |
118cb4a4 | 1699 | ALC260_FIXUP_KN1, |
39aedee7 | 1700 | ALC260_FIXUP_FSC_S7020, |
5ebd3bbd | 1701 | ALC260_FIXUP_FSC_S7020_JWSE, |
d08c5ef2 | 1702 | ALC260_FIXUP_VAIO_PINS, |
1d045db9 TI |
1703 | }; |
1704 | ||
20f7d928 TI |
1705 | static void alc260_gpio1_automute(struct hda_codec *codec) |
1706 | { | |
1707 | struct alc_spec *spec = codec->spec; | |
aaf312de TI |
1708 | |
1709 | alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present); | |
20f7d928 TI |
1710 | } |
1711 | ||
1712 | static void alc260_fixup_gpio1_toggle(struct hda_codec *codec, | |
1727a771 | 1713 | const struct hda_fixup *fix, int action) |
20f7d928 TI |
1714 | { |
1715 | struct alc_spec *spec = codec->spec; | |
1727a771 | 1716 | if (action == HDA_FIXUP_ACT_PROBE) { |
20f7d928 TI |
1717 | /* although the machine has only one output pin, we need to |
1718 | * toggle GPIO1 according to the jack state | |
1719 | */ | |
08c189f2 TI |
1720 | spec->gen.automute_hook = alc260_gpio1_automute; |
1721 | spec->gen.detect_hp = 1; | |
1722 | spec->gen.automute_speaker = 1; | |
1723 | spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */ | |
62f949bf | 1724 | snd_hda_jack_detect_enable_callback(codec, 0x0f, |
08c189f2 | 1725 | snd_hda_gen_hp_automute); |
5579cd6f | 1726 | alc_setup_gpio(codec, 0x01); |
20f7d928 TI |
1727 | } |
1728 | } | |
1729 | ||
118cb4a4 | 1730 | static void alc260_fixup_kn1(struct hda_codec *codec, |
1727a771 | 1731 | const struct hda_fixup *fix, int action) |
118cb4a4 TI |
1732 | { |
1733 | struct alc_spec *spec = codec->spec; | |
1727a771 | 1734 | static const struct hda_pintbl pincfgs[] = { |
118cb4a4 TI |
1735 | { 0x0f, 0x02214000 }, /* HP/speaker */ |
1736 | { 0x12, 0x90a60160 }, /* int mic */ | |
1737 | { 0x13, 0x02a19000 }, /* ext mic */ | |
1738 | { 0x18, 0x01446000 }, /* SPDIF out */ | |
1739 | /* disable bogus I/O pins */ | |
1740 | { 0x10, 0x411111f0 }, | |
1741 | { 0x11, 0x411111f0 }, | |
1742 | { 0x14, 0x411111f0 }, | |
1743 | { 0x15, 0x411111f0 }, | |
1744 | { 0x16, 0x411111f0 }, | |
1745 | { 0x17, 0x411111f0 }, | |
1746 | { 0x19, 0x411111f0 }, | |
1747 | { } | |
1748 | }; | |
1749 | ||
1750 | switch (action) { | |
1727a771 TI |
1751 | case HDA_FIXUP_ACT_PRE_PROBE: |
1752 | snd_hda_apply_pincfgs(codec, pincfgs); | |
118cb4a4 TI |
1753 | spec->init_amp = ALC_INIT_NONE; |
1754 | break; | |
1755 | } | |
1756 | } | |
1757 | ||
39aedee7 TI |
1758 | static void alc260_fixup_fsc_s7020(struct hda_codec *codec, |
1759 | const struct hda_fixup *fix, int action) | |
1760 | { | |
1761 | struct alc_spec *spec = codec->spec; | |
1c76aa5f | 1762 | if (action == HDA_FIXUP_ACT_PRE_PROBE) |
5ebd3bbd TI |
1763 | spec->init_amp = ALC_INIT_NONE; |
1764 | } | |
39aedee7 | 1765 | |
5ebd3bbd TI |
1766 | static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec, |
1767 | const struct hda_fixup *fix, int action) | |
1768 | { | |
1769 | struct alc_spec *spec = codec->spec; | |
1770 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
f811c3cf | 1771 | spec->gen.add_jack_modes = 1; |
5ebd3bbd | 1772 | spec->gen.hp_mic = 1; |
e6e0ee50 | 1773 | } |
39aedee7 TI |
1774 | } |
1775 | ||
1727a771 | 1776 | static const struct hda_fixup alc260_fixups[] = { |
ca8f0424 | 1777 | [ALC260_FIXUP_HP_DC5750] = { |
1727a771 TI |
1778 | .type = HDA_FIXUP_PINS, |
1779 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
1780 | { 0x11, 0x90130110 }, /* speaker */ |
1781 | { } | |
1782 | } | |
1783 | }, | |
ca8f0424 | 1784 | [ALC260_FIXUP_HP_PIN_0F] = { |
1727a771 TI |
1785 | .type = HDA_FIXUP_PINS, |
1786 | .v.pins = (const struct hda_pintbl[]) { | |
ca8f0424 TI |
1787 | { 0x0f, 0x01214000 }, /* HP */ |
1788 | { } | |
1789 | } | |
1790 | }, | |
1791 | [ALC260_FIXUP_COEF] = { | |
1727a771 | 1792 | .type = HDA_FIXUP_VERBS, |
ca8f0424 | 1793 | .v.verbs = (const struct hda_verb[]) { |
e30cf2d2 RM |
1794 | { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 }, |
1795 | { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 }, | |
ca8f0424 TI |
1796 | { } |
1797 | }, | |
ca8f0424 | 1798 | }, |
15317ab2 | 1799 | [ALC260_FIXUP_GPIO1] = { |
5579cd6f TI |
1800 | .type = HDA_FIXUP_FUNC, |
1801 | .v.func = alc_fixup_gpio1, | |
15317ab2 | 1802 | }, |
20f7d928 | 1803 | [ALC260_FIXUP_GPIO1_TOGGLE] = { |
1727a771 | 1804 | .type = HDA_FIXUP_FUNC, |
20f7d928 TI |
1805 | .v.func = alc260_fixup_gpio1_toggle, |
1806 | .chained = true, | |
1807 | .chain_id = ALC260_FIXUP_HP_PIN_0F, | |
1808 | }, | |
1809 | [ALC260_FIXUP_REPLACER] = { | |
1727a771 | 1810 | .type = HDA_FIXUP_VERBS, |
20f7d928 | 1811 | .v.verbs = (const struct hda_verb[]) { |
192a98e2 TI |
1812 | { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 }, |
1813 | { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 }, | |
20f7d928 TI |
1814 | { } |
1815 | }, | |
1816 | .chained = true, | |
1817 | .chain_id = ALC260_FIXUP_GPIO1_TOGGLE, | |
1818 | }, | |
0a1c4fa2 | 1819 | [ALC260_FIXUP_HP_B1900] = { |
1727a771 | 1820 | .type = HDA_FIXUP_FUNC, |
0a1c4fa2 TI |
1821 | .v.func = alc260_fixup_gpio1_toggle, |
1822 | .chained = true, | |
1823 | .chain_id = ALC260_FIXUP_COEF, | |
118cb4a4 TI |
1824 | }, |
1825 | [ALC260_FIXUP_KN1] = { | |
1727a771 | 1826 | .type = HDA_FIXUP_FUNC, |
118cb4a4 TI |
1827 | .v.func = alc260_fixup_kn1, |
1828 | }, | |
39aedee7 TI |
1829 | [ALC260_FIXUP_FSC_S7020] = { |
1830 | .type = HDA_FIXUP_FUNC, | |
1831 | .v.func = alc260_fixup_fsc_s7020, | |
1832 | }, | |
5ebd3bbd TI |
1833 | [ALC260_FIXUP_FSC_S7020_JWSE] = { |
1834 | .type = HDA_FIXUP_FUNC, | |
1835 | .v.func = alc260_fixup_fsc_s7020_jwse, | |
1836 | .chained = true, | |
1837 | .chain_id = ALC260_FIXUP_FSC_S7020, | |
1838 | }, | |
d08c5ef2 TI |
1839 | [ALC260_FIXUP_VAIO_PINS] = { |
1840 | .type = HDA_FIXUP_PINS, | |
1841 | .v.pins = (const struct hda_pintbl[]) { | |
1842 | /* Pin configs are missing completely on some VAIOs */ | |
1843 | { 0x0f, 0x01211020 }, | |
1844 | { 0x10, 0x0001003f }, | |
1845 | { 0x11, 0x411111f0 }, | |
1846 | { 0x12, 0x01a15930 }, | |
1847 | { 0x13, 0x411111f0 }, | |
1848 | { 0x14, 0x411111f0 }, | |
1849 | { 0x15, 0x411111f0 }, | |
1850 | { 0x16, 0x411111f0 }, | |
1851 | { 0x17, 0x411111f0 }, | |
1852 | { 0x18, 0x411111f0 }, | |
1853 | { 0x19, 0x411111f0 }, | |
1854 | { } | |
1855 | } | |
1856 | }, | |
1d045db9 TI |
1857 | }; |
1858 | ||
1859 | static const struct snd_pci_quirk alc260_fixup_tbl[] = { | |
15317ab2 | 1860 | SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1), |
ca8f0424 | 1861 | SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF), |
15317ab2 | 1862 | SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1), |
ca8f0424 | 1863 | SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750), |
0a1c4fa2 | 1864 | SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900), |
d08c5ef2 | 1865 | SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS), |
0f5a5b85 | 1866 | SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F), |
39aedee7 | 1867 | SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020), |
b1f58085 | 1868 | SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1), |
118cb4a4 | 1869 | SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1), |
20f7d928 | 1870 | SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER), |
ca8f0424 | 1871 | SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF), |
1d045db9 TI |
1872 | {} |
1873 | }; | |
1874 | ||
5ebd3bbd TI |
1875 | static const struct hda_model_fixup alc260_fixup_models[] = { |
1876 | {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"}, | |
1877 | {.id = ALC260_FIXUP_COEF, .name = "coef"}, | |
1878 | {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"}, | |
1879 | {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"}, | |
1880 | {} | |
1881 | }; | |
1882 | ||
1d045db9 TI |
1883 | /* |
1884 | */ | |
1d045db9 | 1885 | static int patch_alc260(struct hda_codec *codec) |
977ddd6b | 1886 | { |
1d045db9 | 1887 | struct alc_spec *spec; |
c3c2c9e7 | 1888 | int err; |
1d045db9 | 1889 | |
3de95173 TI |
1890 | err = alc_alloc_spec(codec, 0x07); |
1891 | if (err < 0) | |
1892 | return err; | |
1d045db9 | 1893 | |
3de95173 | 1894 | spec = codec->spec; |
ea46c3c8 TI |
1895 | /* as quite a few machines require HP amp for speaker outputs, |
1896 | * it's easier to enable it unconditionally; even if it's unneeded, | |
1897 | * it's almost harmless. | |
1898 | */ | |
1899 | spec->gen.prefer_hp_amp = 1; | |
7504b6cd | 1900 | spec->gen.beep_nid = 0x01; |
1d045db9 | 1901 | |
225068ab TI |
1902 | spec->shutup = alc_eapd_shutup; |
1903 | ||
c9af753f TI |
1904 | alc_pre_init(codec); |
1905 | ||
5ebd3bbd TI |
1906 | snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl, |
1907 | alc260_fixups); | |
1727a771 | 1908 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
977ddd6b | 1909 | |
c3c2c9e7 TI |
1910 | /* automatic parse from the BIOS config */ |
1911 | err = alc260_parse_auto_config(codec); | |
1912 | if (err < 0) | |
1913 | goto error; | |
977ddd6b | 1914 | |
fea80fae TI |
1915 | if (!spec->gen.no_analog) { |
1916 | err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT); | |
1917 | if (err < 0) | |
1918 | goto error; | |
1919 | } | |
977ddd6b | 1920 | |
1727a771 | 1921 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 1922 | |
1d045db9 | 1923 | return 0; |
e16fb6d1 TI |
1924 | |
1925 | error: | |
1926 | alc_free(codec); | |
1927 | return err; | |
6981d184 TI |
1928 | } |
1929 | ||
1d045db9 TI |
1930 | |
1931 | /* | |
1932 | * ALC882/883/885/888/889 support | |
1933 | * | |
1934 | * ALC882 is almost identical with ALC880 but has cleaner and more flexible | |
1935 | * configuration. Each pin widget can choose any input DACs and a mixer. | |
1936 | * Each ADC is connected from a mixer of all inputs. This makes possible | |
1937 | * 6-channel independent captures. | |
1938 | * | |
1939 | * In addition, an independent DAC for the multi-playback (not used in this | |
1940 | * driver yet). | |
1941 | */ | |
1d045db9 TI |
1942 | |
1943 | /* | |
1944 | * Pin config fixes | |
1945 | */ | |
ff818c24 | 1946 | enum { |
5c0ebfbe TI |
1947 | ALC882_FIXUP_ABIT_AW9D_MAX, |
1948 | ALC882_FIXUP_LENOVO_Y530, | |
1949 | ALC882_FIXUP_PB_M5210, | |
1950 | ALC882_FIXUP_ACER_ASPIRE_7736, | |
1951 | ALC882_FIXUP_ASUS_W90V, | |
8f239214 | 1952 | ALC889_FIXUP_CD, |
b2c53e20 | 1953 | ALC889_FIXUP_FRONT_HP_NO_PRESENCE, |
5c0ebfbe | 1954 | ALC889_FIXUP_VAIO_TT, |
0e7cc2e7 | 1955 | ALC888_FIXUP_EEE1601, |
4841b8e6 | 1956 | ALC886_FIXUP_EAPD, |
177943a3 | 1957 | ALC882_FIXUP_EAPD, |
7a6069bf | 1958 | ALC883_FIXUP_EAPD, |
8812c4f9 | 1959 | ALC883_FIXUP_ACER_EAPD, |
1a97b7f2 TI |
1960 | ALC882_FIXUP_GPIO1, |
1961 | ALC882_FIXUP_GPIO2, | |
eb844d51 | 1962 | ALC882_FIXUP_GPIO3, |
68ef0561 TI |
1963 | ALC889_FIXUP_COEF, |
1964 | ALC882_FIXUP_ASUS_W2JC, | |
c3e837bb TI |
1965 | ALC882_FIXUP_ACER_ASPIRE_4930G, |
1966 | ALC882_FIXUP_ACER_ASPIRE_8930G, | |
1967 | ALC882_FIXUP_ASPIRE_8930G_VERBS, | |
5671087f | 1968 | ALC885_FIXUP_MACPRO_GPIO, |
02a237b2 | 1969 | ALC889_FIXUP_DAC_ROUTE, |
1a97b7f2 TI |
1970 | ALC889_FIXUP_MBP_VREF, |
1971 | ALC889_FIXUP_IMAC91_VREF, | |
e7729a41 | 1972 | ALC889_FIXUP_MBA11_VREF, |
0756f09c | 1973 | ALC889_FIXUP_MBA21_VREF, |
c20f31ec | 1974 | ALC889_FIXUP_MP11_VREF, |
9f660a1c | 1975 | ALC889_FIXUP_MP41_VREF, |
6e72aa5f | 1976 | ALC882_FIXUP_INV_DMIC, |
e427c237 | 1977 | ALC882_FIXUP_NO_PRIMARY_HP, |
1f0bbf03 | 1978 | ALC887_FIXUP_ASUS_BASS, |
eb9ca3ab | 1979 | ALC887_FIXUP_BASS_CHMAP, |
7beb3a6e | 1980 | ALC1220_FIXUP_GB_DUAL_CODECS, |
c1933008 | 1981 | ALC1220_FIXUP_GB_X570, |
0202f5cd | 1982 | ALC1220_FIXUP_CLEVO_P950, |
80690a27 RS |
1983 | ALC1220_FIXUP_CLEVO_PB51ED, |
1984 | ALC1220_FIXUP_CLEVO_PB51ED_PINS, | |
ca184355 JHP |
1985 | ALC887_FIXUP_ASUS_AUDIO, |
1986 | ALC887_FIXUP_ASUS_HMIC, | |
9bfa7b36 | 1987 | ALCS1200A_FIXUP_MIC_VREF, |
ff818c24 TI |
1988 | }; |
1989 | ||
68ef0561 | 1990 | static void alc889_fixup_coef(struct hda_codec *codec, |
1727a771 | 1991 | const struct hda_fixup *fix, int action) |
68ef0561 | 1992 | { |
1727a771 | 1993 | if (action != HDA_FIXUP_ACT_INIT) |
68ef0561 | 1994 | return; |
1df8874b | 1995 | alc_update_coef_idx(codec, 7, 0, 0x2030); |
68ef0561 TI |
1996 | } |
1997 | ||
5671087f TI |
1998 | /* set up GPIO at initialization */ |
1999 | static void alc885_fixup_macpro_gpio(struct hda_codec *codec, | |
1727a771 | 2000 | const struct hda_fixup *fix, int action) |
5671087f | 2001 | { |
215c850c TI |
2002 | struct alc_spec *spec = codec->spec; |
2003 | ||
2004 | spec->gpio_write_delay = true; | |
2005 | alc_fixup_gpio3(codec, fix, action); | |
5671087f TI |
2006 | } |
2007 | ||
02a237b2 TI |
2008 | /* Fix the connection of some pins for ALC889: |
2009 | * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't | |
2010 | * work correctly (bko#42740) | |
2011 | */ | |
2012 | static void alc889_fixup_dac_route(struct hda_codec *codec, | |
1727a771 | 2013 | const struct hda_fixup *fix, int action) |
02a237b2 | 2014 | { |
1727a771 | 2015 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
ef8d60fb | 2016 | /* fake the connections during parsing the tree */ |
caf3c043 MM |
2017 | static const hda_nid_t conn1[] = { 0x0c, 0x0d }; |
2018 | static const hda_nid_t conn2[] = { 0x0e, 0x0f }; | |
2019 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1); | |
2020 | snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1); | |
2021 | snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn2), conn2); | |
2022 | snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn2), conn2); | |
1727a771 | 2023 | } else if (action == HDA_FIXUP_ACT_PROBE) { |
ef8d60fb | 2024 | /* restore the connections */ |
caf3c043 MM |
2025 | static const hda_nid_t conn[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 }; |
2026 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn); | |
2027 | snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn), conn); | |
2028 | snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn), conn); | |
2029 | snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn), conn); | |
02a237b2 TI |
2030 | } |
2031 | } | |
2032 | ||
1a97b7f2 TI |
2033 | /* Set VREF on HP pin */ |
2034 | static void alc889_fixup_mbp_vref(struct hda_codec *codec, | |
1727a771 | 2035 | const struct hda_fixup *fix, int action) |
1a97b7f2 | 2036 | { |
caf3c043 | 2037 | static const hda_nid_t nids[] = { 0x14, 0x15, 0x19 }; |
1a97b7f2 | 2038 | struct alc_spec *spec = codec->spec; |
1a97b7f2 TI |
2039 | int i; |
2040 | ||
1727a771 | 2041 | if (action != HDA_FIXUP_ACT_INIT) |
1a97b7f2 TI |
2042 | return; |
2043 | for (i = 0; i < ARRAY_SIZE(nids); i++) { | |
2044 | unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]); | |
2045 | if (get_defcfg_device(val) != AC_JACK_HP_OUT) | |
2046 | continue; | |
d3f02d60 | 2047 | val = snd_hda_codec_get_pin_target(codec, nids[i]); |
1a97b7f2 | 2048 | val |= AC_PINCTL_VREF_80; |
cdd03ced | 2049 | snd_hda_set_pin_ctl(codec, nids[i], val); |
08c189f2 | 2050 | spec->gen.keep_vref_in_automute = 1; |
1a97b7f2 TI |
2051 | break; |
2052 | } | |
2053 | } | |
2054 | ||
0756f09c TI |
2055 | static void alc889_fixup_mac_pins(struct hda_codec *codec, |
2056 | const hda_nid_t *nids, int num_nids) | |
1a97b7f2 TI |
2057 | { |
2058 | struct alc_spec *spec = codec->spec; | |
1a97b7f2 TI |
2059 | int i; |
2060 | ||
0756f09c | 2061 | for (i = 0; i < num_nids; i++) { |
1a97b7f2 | 2062 | unsigned int val; |
d3f02d60 | 2063 | val = snd_hda_codec_get_pin_target(codec, nids[i]); |
1a97b7f2 | 2064 | val |= AC_PINCTL_VREF_50; |
cdd03ced | 2065 | snd_hda_set_pin_ctl(codec, nids[i], val); |
1a97b7f2 | 2066 | } |
08c189f2 | 2067 | spec->gen.keep_vref_in_automute = 1; |
1a97b7f2 TI |
2068 | } |
2069 | ||
0756f09c TI |
2070 | /* Set VREF on speaker pins on imac91 */ |
2071 | static void alc889_fixup_imac91_vref(struct hda_codec *codec, | |
2072 | const struct hda_fixup *fix, int action) | |
2073 | { | |
caf3c043 | 2074 | static const hda_nid_t nids[] = { 0x18, 0x1a }; |
0756f09c TI |
2075 | |
2076 | if (action == HDA_FIXUP_ACT_INIT) | |
2077 | alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids)); | |
2078 | } | |
2079 | ||
e7729a41 AV |
2080 | /* Set VREF on speaker pins on mba11 */ |
2081 | static void alc889_fixup_mba11_vref(struct hda_codec *codec, | |
2082 | const struct hda_fixup *fix, int action) | |
2083 | { | |
caf3c043 | 2084 | static const hda_nid_t nids[] = { 0x18 }; |
e7729a41 AV |
2085 | |
2086 | if (action == HDA_FIXUP_ACT_INIT) | |
2087 | alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids)); | |
2088 | } | |
2089 | ||
0756f09c TI |
2090 | /* Set VREF on speaker pins on mba21 */ |
2091 | static void alc889_fixup_mba21_vref(struct hda_codec *codec, | |
2092 | const struct hda_fixup *fix, int action) | |
2093 | { | |
caf3c043 | 2094 | static const hda_nid_t nids[] = { 0x18, 0x19 }; |
0756f09c TI |
2095 | |
2096 | if (action == HDA_FIXUP_ACT_INIT) | |
2097 | alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids)); | |
2098 | } | |
2099 | ||
e427c237 | 2100 | /* Don't take HP output as primary |
d9111496 FLVC |
2101 | * Strangely, the speaker output doesn't work on Vaio Z and some Vaio |
2102 | * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05 | |
e427c237 TI |
2103 | */ |
2104 | static void alc882_fixup_no_primary_hp(struct hda_codec *codec, | |
1727a771 | 2105 | const struct hda_fixup *fix, int action) |
e427c237 TI |
2106 | { |
2107 | struct alc_spec *spec = codec->spec; | |
da96fb5b | 2108 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
08c189f2 | 2109 | spec->gen.no_primary_hp = 1; |
da96fb5b TI |
2110 | spec->gen.no_multi_io = 1; |
2111 | } | |
e427c237 TI |
2112 | } |
2113 | ||
eb9ca3ab TI |
2114 | static void alc_fixup_bass_chmap(struct hda_codec *codec, |
2115 | const struct hda_fixup *fix, int action); | |
2116 | ||
7beb3a6e TI |
2117 | /* For dual-codec configuration, we need to disable some features to avoid |
2118 | * conflicts of kctls and PCM streams | |
2119 | */ | |
2120 | static void alc_fixup_dual_codecs(struct hda_codec *codec, | |
2121 | const struct hda_fixup *fix, int action) | |
2122 | { | |
2123 | struct alc_spec *spec = codec->spec; | |
2124 | ||
2125 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
2126 | return; | |
2127 | /* disable vmaster */ | |
2128 | spec->gen.suppress_vmaster = 1; | |
2129 | /* auto-mute and auto-mic switch don't work with multiple codecs */ | |
2130 | spec->gen.suppress_auto_mute = 1; | |
2131 | spec->gen.suppress_auto_mic = 1; | |
2132 | /* disable aamix as well */ | |
2133 | spec->gen.mixer_nid = 0; | |
2134 | /* add location prefix to avoid conflicts */ | |
2135 | codec->force_pin_prefix = 1; | |
2136 | } | |
2137 | ||
2138 | static void rename_ctl(struct hda_codec *codec, const char *oldname, | |
2139 | const char *newname) | |
2140 | { | |
2141 | struct snd_kcontrol *kctl; | |
2142 | ||
2143 | kctl = snd_hda_find_mixer_ctl(codec, oldname); | |
2144 | if (kctl) | |
2145 | strcpy(kctl->id.name, newname); | |
2146 | } | |
2147 | ||
2148 | static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec, | |
2149 | const struct hda_fixup *fix, | |
2150 | int action) | |
2151 | { | |
2152 | alc_fixup_dual_codecs(codec, fix, action); | |
2153 | switch (action) { | |
2154 | case HDA_FIXUP_ACT_PRE_PROBE: | |
2155 | /* override card longname to provide a unique UCM profile */ | |
2156 | strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs"); | |
2157 | break; | |
2158 | case HDA_FIXUP_ACT_BUILD: | |
2159 | /* rename Capture controls depending on the codec */ | |
2160 | rename_ctl(codec, "Capture Volume", | |
2161 | codec->addr == 0 ? | |
2162 | "Rear-Panel Capture Volume" : | |
2163 | "Front-Panel Capture Volume"); | |
2164 | rename_ctl(codec, "Capture Switch", | |
2165 | codec->addr == 0 ? | |
2166 | "Rear-Panel Capture Switch" : | |
2167 | "Front-Panel Capture Switch"); | |
2168 | break; | |
2169 | } | |
2170 | } | |
2171 | ||
c1933008 CL |
2172 | static void alc1220_fixup_gb_x570(struct hda_codec *codec, |
2173 | const struct hda_fixup *fix, | |
2174 | int action) | |
2175 | { | |
2176 | static const hda_nid_t conn1[] = { 0x0c }; | |
2177 | static const struct coef_fw gb_x570_coefs[] = { | |
41a86013 | 2178 | WRITE_COEF(0x07, 0x03c0), |
c1933008 CL |
2179 | WRITE_COEF(0x1a, 0x01c1), |
2180 | WRITE_COEF(0x1b, 0x0202), | |
2181 | WRITE_COEF(0x43, 0x3005), | |
2182 | {} | |
2183 | }; | |
2184 | ||
2185 | switch (action) { | |
2186 | case HDA_FIXUP_ACT_PRE_PROBE: | |
2187 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1); | |
2188 | snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1); | |
2189 | break; | |
2190 | case HDA_FIXUP_ACT_INIT: | |
2191 | alc_process_coef_fw(codec, gb_x570_coefs); | |
2192 | break; | |
2193 | } | |
2194 | } | |
2195 | ||
0202f5cd P |
2196 | static void alc1220_fixup_clevo_p950(struct hda_codec *codec, |
2197 | const struct hda_fixup *fix, | |
2198 | int action) | |
2199 | { | |
caf3c043 | 2200 | static const hda_nid_t conn1[] = { 0x0c }; |
0202f5cd P |
2201 | |
2202 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
2203 | return; | |
2204 | ||
2205 | alc_update_coef_idx(codec, 0x7, 0, 0x3c3); | |
2206 | /* We therefore want to make sure 0x14 (front headphone) and | |
2207 | * 0x1b (speakers) use the stereo DAC 0x02 | |
2208 | */ | |
caf3c043 MM |
2209 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1); |
2210 | snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1); | |
0202f5cd P |
2211 | } |
2212 | ||
7f665b1c JS |
2213 | static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec, |
2214 | const struct hda_fixup *fix, int action); | |
2215 | ||
80690a27 | 2216 | static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec, |
7f665b1c JS |
2217 | const struct hda_fixup *fix, |
2218 | int action) | |
2219 | { | |
2220 | alc1220_fixup_clevo_p950(codec, fix, action); | |
2221 | alc_fixup_headset_mode_no_hp_mic(codec, fix, action); | |
2222 | } | |
2223 | ||
ca184355 JHP |
2224 | static void alc887_asus_hp_automute_hook(struct hda_codec *codec, |
2225 | struct hda_jack_callback *jack) | |
2226 | { | |
2227 | struct alc_spec *spec = codec->spec; | |
2228 | unsigned int vref; | |
2229 | ||
2230 | snd_hda_gen_hp_automute(codec, jack); | |
2231 | ||
2232 | if (spec->gen.hp_jack_present) | |
2233 | vref = AC_PINCTL_VREF_80; | |
2234 | else | |
2235 | vref = AC_PINCTL_VREF_HIZ; | |
2236 | snd_hda_set_pin_ctl(codec, 0x19, PIN_HP | vref); | |
2237 | } | |
2238 | ||
2239 | static void alc887_fixup_asus_jack(struct hda_codec *codec, | |
2240 | const struct hda_fixup *fix, int action) | |
2241 | { | |
2242 | struct alc_spec *spec = codec->spec; | |
2243 | if (action != HDA_FIXUP_ACT_PROBE) | |
2244 | return; | |
2245 | snd_hda_set_pin_ctl_cache(codec, 0x1b, PIN_HP); | |
2246 | spec->gen.hp_automute_hook = alc887_asus_hp_automute_hook; | |
2247 | } | |
2248 | ||
1727a771 | 2249 | static const struct hda_fixup alc882_fixups[] = { |
5c0ebfbe | 2250 | [ALC882_FIXUP_ABIT_AW9D_MAX] = { |
1727a771 TI |
2251 | .type = HDA_FIXUP_PINS, |
2252 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
2253 | { 0x15, 0x01080104 }, /* side */ |
2254 | { 0x16, 0x01011012 }, /* rear */ | |
2255 | { 0x17, 0x01016011 }, /* clfe */ | |
2785591a | 2256 | { } |
145a902b DH |
2257 | } |
2258 | }, | |
5c0ebfbe | 2259 | [ALC882_FIXUP_LENOVO_Y530] = { |
1727a771 TI |
2260 | .type = HDA_FIXUP_PINS, |
2261 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
2262 | { 0x15, 0x99130112 }, /* rear int speakers */ |
2263 | { 0x16, 0x99130111 }, /* subwoofer */ | |
ac612407 DH |
2264 | { } |
2265 | } | |
2266 | }, | |
5c0ebfbe | 2267 | [ALC882_FIXUP_PB_M5210] = { |
fd108215 TI |
2268 | .type = HDA_FIXUP_PINCTLS, |
2269 | .v.pins = (const struct hda_pintbl[]) { | |
2270 | { 0x19, PIN_VREF50 }, | |
357f915e KY |
2271 | {} |
2272 | } | |
2273 | }, | |
5c0ebfbe | 2274 | [ALC882_FIXUP_ACER_ASPIRE_7736] = { |
1727a771 | 2275 | .type = HDA_FIXUP_FUNC, |
23d30f28 | 2276 | .v.func = alc_fixup_sku_ignore, |
6981d184 | 2277 | }, |
5c0ebfbe | 2278 | [ALC882_FIXUP_ASUS_W90V] = { |
1727a771 TI |
2279 | .type = HDA_FIXUP_PINS, |
2280 | .v.pins = (const struct hda_pintbl[]) { | |
5cdf745e TI |
2281 | { 0x16, 0x99130110 }, /* fix sequence for CLFE */ |
2282 | { } | |
2283 | } | |
2284 | }, | |
8f239214 | 2285 | [ALC889_FIXUP_CD] = { |
1727a771 TI |
2286 | .type = HDA_FIXUP_PINS, |
2287 | .v.pins = (const struct hda_pintbl[]) { | |
8f239214 MB |
2288 | { 0x1c, 0x993301f0 }, /* CD */ |
2289 | { } | |
2290 | } | |
2291 | }, | |
b2c53e20 DH |
2292 | [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = { |
2293 | .type = HDA_FIXUP_PINS, | |
2294 | .v.pins = (const struct hda_pintbl[]) { | |
2295 | { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */ | |
2296 | { } | |
2297 | }, | |
2298 | .chained = true, | |
2299 | .chain_id = ALC889_FIXUP_CD, | |
2300 | }, | |
5c0ebfbe | 2301 | [ALC889_FIXUP_VAIO_TT] = { |
1727a771 TI |
2302 | .type = HDA_FIXUP_PINS, |
2303 | .v.pins = (const struct hda_pintbl[]) { | |
5c0ebfbe TI |
2304 | { 0x17, 0x90170111 }, /* hidden surround speaker */ |
2305 | { } | |
2306 | } | |
2307 | }, | |
0e7cc2e7 | 2308 | [ALC888_FIXUP_EEE1601] = { |
1727a771 | 2309 | .type = HDA_FIXUP_VERBS, |
0e7cc2e7 TI |
2310 | .v.verbs = (const struct hda_verb[]) { |
2311 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b }, | |
2312 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 }, | |
2313 | { } | |
2314 | } | |
177943a3 | 2315 | }, |
4841b8e6 PH |
2316 | [ALC886_FIXUP_EAPD] = { |
2317 | .type = HDA_FIXUP_VERBS, | |
2318 | .v.verbs = (const struct hda_verb[]) { | |
2319 | /* change to EAPD mode */ | |
2320 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2321 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0068 }, | |
2322 | { } | |
2323 | } | |
2324 | }, | |
177943a3 | 2325 | [ALC882_FIXUP_EAPD] = { |
1727a771 | 2326 | .type = HDA_FIXUP_VERBS, |
177943a3 TI |
2327 | .v.verbs = (const struct hda_verb[]) { |
2328 | /* change to EAPD mode */ | |
2329 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2330 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 }, | |
2331 | { } | |
2332 | } | |
2333 | }, | |
7a6069bf | 2334 | [ALC883_FIXUP_EAPD] = { |
1727a771 | 2335 | .type = HDA_FIXUP_VERBS, |
7a6069bf TI |
2336 | .v.verbs = (const struct hda_verb[]) { |
2337 | /* change to EAPD mode */ | |
2338 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2339 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, | |
2340 | { } | |
2341 | } | |
2342 | }, | |
8812c4f9 | 2343 | [ALC883_FIXUP_ACER_EAPD] = { |
1727a771 | 2344 | .type = HDA_FIXUP_VERBS, |
8812c4f9 TI |
2345 | .v.verbs = (const struct hda_verb[]) { |
2346 | /* eanable EAPD on Acer laptops */ | |
2347 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2348 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, | |
2349 | { } | |
2350 | } | |
2351 | }, | |
1a97b7f2 | 2352 | [ALC882_FIXUP_GPIO1] = { |
5579cd6f TI |
2353 | .type = HDA_FIXUP_FUNC, |
2354 | .v.func = alc_fixup_gpio1, | |
1a97b7f2 TI |
2355 | }, |
2356 | [ALC882_FIXUP_GPIO2] = { | |
5579cd6f TI |
2357 | .type = HDA_FIXUP_FUNC, |
2358 | .v.func = alc_fixup_gpio2, | |
1a97b7f2 | 2359 | }, |
eb844d51 | 2360 | [ALC882_FIXUP_GPIO3] = { |
5579cd6f TI |
2361 | .type = HDA_FIXUP_FUNC, |
2362 | .v.func = alc_fixup_gpio3, | |
eb844d51 | 2363 | }, |
68ef0561 | 2364 | [ALC882_FIXUP_ASUS_W2JC] = { |
5579cd6f TI |
2365 | .type = HDA_FIXUP_FUNC, |
2366 | .v.func = alc_fixup_gpio1, | |
68ef0561 TI |
2367 | .chained = true, |
2368 | .chain_id = ALC882_FIXUP_EAPD, | |
2369 | }, | |
2370 | [ALC889_FIXUP_COEF] = { | |
1727a771 | 2371 | .type = HDA_FIXUP_FUNC, |
68ef0561 TI |
2372 | .v.func = alc889_fixup_coef, |
2373 | }, | |
c3e837bb | 2374 | [ALC882_FIXUP_ACER_ASPIRE_4930G] = { |
1727a771 TI |
2375 | .type = HDA_FIXUP_PINS, |
2376 | .v.pins = (const struct hda_pintbl[]) { | |
c3e837bb TI |
2377 | { 0x16, 0x99130111 }, /* CLFE speaker */ |
2378 | { 0x17, 0x99130112 }, /* surround speaker */ | |
2379 | { } | |
038d4fef TI |
2380 | }, |
2381 | .chained = true, | |
2382 | .chain_id = ALC882_FIXUP_GPIO1, | |
c3e837bb TI |
2383 | }, |
2384 | [ALC882_FIXUP_ACER_ASPIRE_8930G] = { | |
1727a771 TI |
2385 | .type = HDA_FIXUP_PINS, |
2386 | .v.pins = (const struct hda_pintbl[]) { | |
c3e837bb TI |
2387 | { 0x16, 0x99130111 }, /* CLFE speaker */ |
2388 | { 0x1b, 0x99130112 }, /* surround speaker */ | |
2389 | { } | |
2390 | }, | |
2391 | .chained = true, | |
2392 | .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS, | |
2393 | }, | |
2394 | [ALC882_FIXUP_ASPIRE_8930G_VERBS] = { | |
2395 | /* additional init verbs for Acer Aspire 8930G */ | |
1727a771 | 2396 | .type = HDA_FIXUP_VERBS, |
c3e837bb TI |
2397 | .v.verbs = (const struct hda_verb[]) { |
2398 | /* Enable all DACs */ | |
2399 | /* DAC DISABLE/MUTE 1? */ | |
2400 | /* setting bits 1-5 disables DAC nids 0x02-0x06 | |
2401 | * apparently. Init=0x38 */ | |
2402 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 }, | |
2403 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 }, | |
2404 | /* DAC DISABLE/MUTE 2? */ | |
2405 | /* some bit here disables the other DACs. | |
2406 | * Init=0x4900 */ | |
2407 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 }, | |
2408 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 }, | |
2409 | /* DMIC fix | |
2410 | * This laptop has a stereo digital microphone. | |
2411 | * The mics are only 1cm apart which makes the stereo | |
2412 | * useless. However, either the mic or the ALC889 | |
2413 | * makes the signal become a difference/sum signal | |
2414 | * instead of standard stereo, which is annoying. | |
2415 | * So instead we flip this bit which makes the | |
2416 | * codec replicate the sum signal to both channels, | |
2417 | * turning it into a normal mono mic. | |
2418 | */ | |
2419 | /* DMIC_CONTROL? Init value = 0x0001 */ | |
2420 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b }, | |
2421 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 }, | |
2422 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2423 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, | |
2424 | { } | |
038d4fef TI |
2425 | }, |
2426 | .chained = true, | |
2427 | .chain_id = ALC882_FIXUP_GPIO1, | |
c3e837bb | 2428 | }, |
5671087f | 2429 | [ALC885_FIXUP_MACPRO_GPIO] = { |
1727a771 | 2430 | .type = HDA_FIXUP_FUNC, |
5671087f TI |
2431 | .v.func = alc885_fixup_macpro_gpio, |
2432 | }, | |
02a237b2 | 2433 | [ALC889_FIXUP_DAC_ROUTE] = { |
1727a771 | 2434 | .type = HDA_FIXUP_FUNC, |
02a237b2 TI |
2435 | .v.func = alc889_fixup_dac_route, |
2436 | }, | |
1a97b7f2 | 2437 | [ALC889_FIXUP_MBP_VREF] = { |
1727a771 | 2438 | .type = HDA_FIXUP_FUNC, |
1a97b7f2 TI |
2439 | .v.func = alc889_fixup_mbp_vref, |
2440 | .chained = true, | |
2441 | .chain_id = ALC882_FIXUP_GPIO1, | |
2442 | }, | |
2443 | [ALC889_FIXUP_IMAC91_VREF] = { | |
1727a771 | 2444 | .type = HDA_FIXUP_FUNC, |
1a97b7f2 TI |
2445 | .v.func = alc889_fixup_imac91_vref, |
2446 | .chained = true, | |
2447 | .chain_id = ALC882_FIXUP_GPIO1, | |
2448 | }, | |
e7729a41 AV |
2449 | [ALC889_FIXUP_MBA11_VREF] = { |
2450 | .type = HDA_FIXUP_FUNC, | |
2451 | .v.func = alc889_fixup_mba11_vref, | |
2452 | .chained = true, | |
2453 | .chain_id = ALC889_FIXUP_MBP_VREF, | |
2454 | }, | |
0756f09c TI |
2455 | [ALC889_FIXUP_MBA21_VREF] = { |
2456 | .type = HDA_FIXUP_FUNC, | |
2457 | .v.func = alc889_fixup_mba21_vref, | |
2458 | .chained = true, | |
2459 | .chain_id = ALC889_FIXUP_MBP_VREF, | |
2460 | }, | |
c20f31ec TI |
2461 | [ALC889_FIXUP_MP11_VREF] = { |
2462 | .type = HDA_FIXUP_FUNC, | |
2463 | .v.func = alc889_fixup_mba11_vref, | |
2464 | .chained = true, | |
2465 | .chain_id = ALC885_FIXUP_MACPRO_GPIO, | |
2466 | }, | |
9f660a1c MK |
2467 | [ALC889_FIXUP_MP41_VREF] = { |
2468 | .type = HDA_FIXUP_FUNC, | |
2469 | .v.func = alc889_fixup_mbp_vref, | |
2470 | .chained = true, | |
2471 | .chain_id = ALC885_FIXUP_MACPRO_GPIO, | |
2472 | }, | |
6e72aa5f | 2473 | [ALC882_FIXUP_INV_DMIC] = { |
1727a771 | 2474 | .type = HDA_FIXUP_FUNC, |
9d36a7dc | 2475 | .v.func = alc_fixup_inv_dmic, |
6e72aa5f | 2476 | }, |
e427c237 | 2477 | [ALC882_FIXUP_NO_PRIMARY_HP] = { |
1727a771 | 2478 | .type = HDA_FIXUP_FUNC, |
e427c237 TI |
2479 | .v.func = alc882_fixup_no_primary_hp, |
2480 | }, | |
1f0bbf03 TI |
2481 | [ALC887_FIXUP_ASUS_BASS] = { |
2482 | .type = HDA_FIXUP_PINS, | |
2483 | .v.pins = (const struct hda_pintbl[]) { | |
2484 | {0x16, 0x99130130}, /* bass speaker */ | |
2485 | {} | |
2486 | }, | |
eb9ca3ab TI |
2487 | .chained = true, |
2488 | .chain_id = ALC887_FIXUP_BASS_CHMAP, | |
2489 | }, | |
2490 | [ALC887_FIXUP_BASS_CHMAP] = { | |
2491 | .type = HDA_FIXUP_FUNC, | |
2492 | .v.func = alc_fixup_bass_chmap, | |
1f0bbf03 | 2493 | }, |
7beb3a6e TI |
2494 | [ALC1220_FIXUP_GB_DUAL_CODECS] = { |
2495 | .type = HDA_FIXUP_FUNC, | |
2496 | .v.func = alc1220_fixup_gb_dual_codecs, | |
2497 | }, | |
c1933008 CL |
2498 | [ALC1220_FIXUP_GB_X570] = { |
2499 | .type = HDA_FIXUP_FUNC, | |
2500 | .v.func = alc1220_fixup_gb_x570, | |
2501 | }, | |
0202f5cd P |
2502 | [ALC1220_FIXUP_CLEVO_P950] = { |
2503 | .type = HDA_FIXUP_FUNC, | |
2504 | .v.func = alc1220_fixup_clevo_p950, | |
2505 | }, | |
80690a27 | 2506 | [ALC1220_FIXUP_CLEVO_PB51ED] = { |
7f665b1c | 2507 | .type = HDA_FIXUP_FUNC, |
80690a27 | 2508 | .v.func = alc1220_fixup_clevo_pb51ed, |
7f665b1c | 2509 | }, |
80690a27 | 2510 | [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = { |
7f665b1c JS |
2511 | .type = HDA_FIXUP_PINS, |
2512 | .v.pins = (const struct hda_pintbl[]) { | |
2513 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
2514 | {} | |
2515 | }, | |
2516 | .chained = true, | |
80690a27 | 2517 | .chain_id = ALC1220_FIXUP_CLEVO_PB51ED, |
7f665b1c | 2518 | }, |
ca184355 JHP |
2519 | [ALC887_FIXUP_ASUS_AUDIO] = { |
2520 | .type = HDA_FIXUP_PINS, | |
2521 | .v.pins = (const struct hda_pintbl[]) { | |
2522 | { 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */ | |
2523 | { 0x19, 0x22219420 }, | |
2524 | {} | |
2525 | }, | |
2526 | }, | |
2527 | [ALC887_FIXUP_ASUS_HMIC] = { | |
2528 | .type = HDA_FIXUP_FUNC, | |
2529 | .v.func = alc887_fixup_asus_jack, | |
2530 | .chained = true, | |
2531 | .chain_id = ALC887_FIXUP_ASUS_AUDIO, | |
2532 | }, | |
9bfa7b36 ML |
2533 | [ALCS1200A_FIXUP_MIC_VREF] = { |
2534 | .type = HDA_FIXUP_PINCTLS, | |
2535 | .v.pins = (const struct hda_pintbl[]) { | |
2536 | { 0x18, PIN_VREF50 }, /* rear mic */ | |
2537 | { 0x19, PIN_VREF50 }, /* front mic */ | |
2538 | {} | |
2539 | } | |
2540 | }, | |
ff818c24 TI |
2541 | }; |
2542 | ||
1d045db9 | 2543 | static const struct snd_pci_quirk alc882_fixup_tbl[] = { |
8812c4f9 TI |
2544 | SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD), |
2545 | SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), | |
b5d724b1 | 2546 | SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), |
8812c4f9 TI |
2547 | SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD), |
2548 | SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), | |
2549 | SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD), | |
2550 | SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD), | |
c3e837bb TI |
2551 | SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G", |
2552 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
2553 | SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G", | |
2554 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
2555 | SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G", | |
2556 | ALC882_FIXUP_ACER_ASPIRE_8930G), | |
2557 | SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G", | |
2558 | ALC882_FIXUP_ACER_ASPIRE_8930G), | |
b265047a TI |
2559 | SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G", |
2560 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
2561 | SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210), | |
c3e837bb TI |
2562 | SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G", |
2563 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
2564 | SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G", | |
2565 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
f5c53d89 TI |
2566 | SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G", |
2567 | ALC882_FIXUP_ACER_ASPIRE_4930G), | |
02a237b2 | 2568 | SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE), |
fe97da1f | 2569 | SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G), |
ac9b1cdd | 2570 | SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736), |
177943a3 | 2571 | SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD), |
5c0ebfbe | 2572 | SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V), |
68ef0561 | 2573 | SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC), |
ca184355 | 2574 | SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC), |
0e7cc2e7 | 2575 | SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601), |
1f0bbf03 | 2576 | SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS), |
85bcf96c | 2577 | SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3), |
9bfa7b36 | 2578 | SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF), |
b7529c18 TI |
2579 | SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP), |
2580 | SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP), | |
ac9b1cdd | 2581 | SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT), |
e427c237 | 2582 | SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP), |
3f3c3714 | 2583 | SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP), |
5671087f TI |
2584 | |
2585 | /* All Apple entries are in codec SSIDs */ | |
1a97b7f2 TI |
2586 | SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF), |
2587 | SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF), | |
2588 | SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF), | |
c20f31ec | 2589 | SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF), |
5671087f TI |
2590 | SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO), |
2591 | SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO), | |
1a97b7f2 TI |
2592 | SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF), |
2593 | SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF), | |
5671087f | 2594 | SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD), |
e7729a41 | 2595 | SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF), |
0756f09c | 2596 | SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF), |
1a97b7f2 TI |
2597 | SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF), |
2598 | SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF), | |
5671087f | 2599 | SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO), |
1a97b7f2 TI |
2600 | SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF), |
2601 | SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF), | |
2602 | SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF), | |
9f660a1c | 2603 | SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF), |
05193639 | 2604 | SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF), |
1a97b7f2 TI |
2605 | SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF), |
2606 | SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF), | |
649ccd08 | 2607 | SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF), |
5671087f | 2608 | |
7a6069bf | 2609 | SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD), |
4841b8e6 | 2610 | SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD), |
b2c53e20 | 2611 | SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE), |
7beb3a6e | 2612 | SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS), |
c1933008 | 2613 | SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570), |
ea354196 | 2614 | SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570), |
41a86013 | 2615 | SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570), |
a0b03952 | 2616 | SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950), |
a655e2b1 | 2617 | SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950), |
09926202 | 2618 | SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950), |
1d3aa4a5 | 2619 | SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950), |
7dafba37 | 2620 | SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950), |
cc5049ae | 2621 | SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950), |
d2c3b14e | 2622 | SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD), |
26af1772 | 2623 | SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS), |
63691587 | 2624 | SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS), |
d2c3b14e | 2625 | SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3), |
5c0ebfbe | 2626 | SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX), |
13e1a4cd TI |
2627 | SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
2628 | SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
2629 | SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
2630 | SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
2631 | SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
aef454b4 | 2632 | SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
9eb6f5c3 | 2633 | SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
13e1a4cd TI |
2634 | SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
2635 | SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
2636 | SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS), | |
dbfe8350 | 2637 | SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
d4995121 | 2638 | SND_PCI_QUIRK(0x1558, 0x67f5, "Clevo PD70PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
13e1a4cd | 2639 | SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
1f8d398e | 2640 | SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS), |
cc03069a | 2641 | SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED), |
0202f5cd | 2642 | SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950), |
b5acfe15 | 2643 | SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950), |
13e1a4cd | 2644 | SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950), |
f3d737b6 | 2645 | SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950), |
2f0d520a | 2646 | SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950), |
b5acfe15 PH |
2647 | SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950), |
2648 | SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950), | |
2649 | SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950), | |
2650 | SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950), | |
503d90b3 RS |
2651 | SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950), |
2652 | SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950), | |
b5acfe15 | 2653 | SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950), |
7a6069bf TI |
2654 | SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD), |
2655 | SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD), | |
ac9b1cdd | 2656 | SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530), |
68ef0561 | 2657 | SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF), |
ff818c24 TI |
2658 | {} |
2659 | }; | |
2660 | ||
1727a771 | 2661 | static const struct hda_model_fixup alc882_fixup_models[] = { |
772c2917 TI |
2662 | {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"}, |
2663 | {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"}, | |
2664 | {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"}, | |
2665 | {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"}, | |
2666 | {.id = ALC889_FIXUP_CD, .name = "cd"}, | |
2667 | {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"}, | |
2668 | {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"}, | |
2669 | {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"}, | |
2670 | {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"}, | |
2671 | {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"}, | |
2672 | {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"}, | |
2673 | {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"}, | |
2674 | {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"}, | |
2675 | {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"}, | |
2676 | {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"}, | |
912093bc TI |
2677 | {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"}, |
2678 | {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"}, | |
2679 | {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"}, | |
772c2917 TI |
2680 | {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"}, |
2681 | {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"}, | |
2682 | {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"}, | |
2683 | {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"}, | |
2684 | {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"}, | |
2685 | {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"}, | |
2686 | {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"}, | |
2687 | {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"}, | |
6e72aa5f | 2688 | {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"}, |
e427c237 | 2689 | {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"}, |
772c2917 | 2690 | {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"}, |
ba90d6a6 | 2691 | {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"}, |
63394a16 | 2692 | {.id = ALC1220_FIXUP_GB_X570, .name = "gb-x570"}, |
772c2917 | 2693 | {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"}, |
912093bc TI |
2694 | {} |
2695 | }; | |
2696 | ||
119b75c1 HW |
2697 | static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl[] = { |
2698 | SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950, | |
2699 | {0x14, 0x01014010}, | |
2700 | {0x15, 0x01011012}, | |
2701 | {0x16, 0x01016011}, | |
2702 | {0x18, 0x01a19040}, | |
2703 | {0x19, 0x02a19050}, | |
2704 | {0x1a, 0x0181304f}, | |
2705 | {0x1b, 0x0221401f}, | |
2706 | {0x1e, 0x01456130}), | |
2707 | SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950, | |
2708 | {0x14, 0x01015010}, | |
2709 | {0x15, 0x01011012}, | |
2710 | {0x16, 0x01011011}, | |
2711 | {0x18, 0x01a11040}, | |
2712 | {0x19, 0x02a19050}, | |
2713 | {0x1a, 0x0181104f}, | |
2714 | {0x1b, 0x0221401f}, | |
2715 | {0x1e, 0x01451130}), | |
2716 | {} | |
2717 | }; | |
2718 | ||
f6a92248 | 2719 | /* |
1d045db9 | 2720 | * BIOS auto configuration |
f6a92248 | 2721 | */ |
1d045db9 TI |
2722 | /* almost identical with ALC880 parser... */ |
2723 | static int alc882_parse_auto_config(struct hda_codec *codec) | |
2724 | { | |
1d045db9 | 2725 | static const hda_nid_t alc882_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
2726 | static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 }; |
2727 | return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids); | |
1d045db9 | 2728 | } |
b896b4eb | 2729 | |
1d045db9 TI |
2730 | /* |
2731 | */ | |
1d045db9 | 2732 | static int patch_alc882(struct hda_codec *codec) |
f6a92248 KY |
2733 | { |
2734 | struct alc_spec *spec; | |
1a97b7f2 | 2735 | int err; |
f6a92248 | 2736 | |
3de95173 TI |
2737 | err = alc_alloc_spec(codec, 0x0b); |
2738 | if (err < 0) | |
2739 | return err; | |
f6a92248 | 2740 | |
3de95173 | 2741 | spec = codec->spec; |
1f0f4b80 | 2742 | |
7639a06c | 2743 | switch (codec->core.vendor_id) { |
1d045db9 TI |
2744 | case 0x10ec0882: |
2745 | case 0x10ec0885: | |
acf08081 | 2746 | case 0x10ec0900: |
6d9ffcff | 2747 | case 0x10ec0b00: |
a535ad57 | 2748 | case 0x10ec1220: |
1d045db9 TI |
2749 | break; |
2750 | default: | |
2751 | /* ALC883 and variants */ | |
2752 | alc_fix_pll_init(codec, 0x20, 0x0a, 10); | |
2753 | break; | |
c793bec5 | 2754 | } |
977ddd6b | 2755 | |
c9af753f TI |
2756 | alc_pre_init(codec); |
2757 | ||
1727a771 | 2758 | snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl, |
912093bc | 2759 | alc882_fixups); |
119b75c1 | 2760 | snd_hda_pick_pin_fixup(codec, alc882_pin_fixup_tbl, alc882_fixups, true); |
1727a771 | 2761 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
ff818c24 | 2762 | |
1d045db9 TI |
2763 | alc_auto_parse_customize_define(codec); |
2764 | ||
7504b6cd TI |
2765 | if (has_cdefine_beep(codec)) |
2766 | spec->gen.beep_nid = 0x01; | |
2767 | ||
1a97b7f2 TI |
2768 | /* automatic parse from the BIOS config */ |
2769 | err = alc882_parse_auto_config(codec); | |
2770 | if (err < 0) | |
2771 | goto error; | |
f6a92248 | 2772 | |
fea80fae TI |
2773 | if (!spec->gen.no_analog && spec->gen.beep_nid) { |
2774 | err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | |
2775 | if (err < 0) | |
2776 | goto error; | |
2777 | } | |
f6a92248 | 2778 | |
1727a771 | 2779 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 2780 | |
f6a92248 | 2781 | return 0; |
e16fb6d1 TI |
2782 | |
2783 | error: | |
2784 | alc_free(codec); | |
2785 | return err; | |
f6a92248 KY |
2786 | } |
2787 | ||
df694daa | 2788 | |
df694daa | 2789 | /* |
1d045db9 | 2790 | * ALC262 support |
df694daa | 2791 | */ |
1d045db9 | 2792 | static int alc262_parse_auto_config(struct hda_codec *codec) |
df694daa | 2793 | { |
1d045db9 | 2794 | static const hda_nid_t alc262_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
2795 | static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 }; |
2796 | return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids); | |
df694daa KY |
2797 | } |
2798 | ||
df694daa | 2799 | /* |
1d045db9 | 2800 | * Pin config fixes |
df694daa | 2801 | */ |
cfc9b06f | 2802 | enum { |
ea4e7af1 | 2803 | ALC262_FIXUP_FSC_H270, |
7513e6da | 2804 | ALC262_FIXUP_FSC_S7110, |
ea4e7af1 TI |
2805 | ALC262_FIXUP_HP_Z200, |
2806 | ALC262_FIXUP_TYAN, | |
c470150c | 2807 | ALC262_FIXUP_LENOVO_3000, |
b42590b8 TI |
2808 | ALC262_FIXUP_BENQ, |
2809 | ALC262_FIXUP_BENQ_T31, | |
6e72aa5f | 2810 | ALC262_FIXUP_INV_DMIC, |
b5c6611f | 2811 | ALC262_FIXUP_INTEL_BAYLEYBAY, |
cfc9b06f TI |
2812 | }; |
2813 | ||
1727a771 | 2814 | static const struct hda_fixup alc262_fixups[] = { |
ea4e7af1 | 2815 | [ALC262_FIXUP_FSC_H270] = { |
1727a771 TI |
2816 | .type = HDA_FIXUP_PINS, |
2817 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
2818 | { 0x14, 0x99130110 }, /* speaker */ |
2819 | { 0x15, 0x0221142f }, /* front HP */ | |
2820 | { 0x1b, 0x0121141f }, /* rear HP */ | |
2821 | { } | |
2822 | } | |
2823 | }, | |
7513e6da TI |
2824 | [ALC262_FIXUP_FSC_S7110] = { |
2825 | .type = HDA_FIXUP_PINS, | |
2826 | .v.pins = (const struct hda_pintbl[]) { | |
2827 | { 0x15, 0x90170110 }, /* speaker */ | |
2828 | { } | |
2829 | }, | |
2830 | .chained = true, | |
2831 | .chain_id = ALC262_FIXUP_BENQ, | |
2832 | }, | |
ea4e7af1 | 2833 | [ALC262_FIXUP_HP_Z200] = { |
1727a771 TI |
2834 | .type = HDA_FIXUP_PINS, |
2835 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 | 2836 | { 0x16, 0x99130120 }, /* internal speaker */ |
73413b12 TI |
2837 | { } |
2838 | } | |
cfc9b06f | 2839 | }, |
ea4e7af1 | 2840 | [ALC262_FIXUP_TYAN] = { |
1727a771 TI |
2841 | .type = HDA_FIXUP_PINS, |
2842 | .v.pins = (const struct hda_pintbl[]) { | |
ea4e7af1 TI |
2843 | { 0x14, 0x1993e1f0 }, /* int AUX */ |
2844 | { } | |
2845 | } | |
2846 | }, | |
c470150c | 2847 | [ALC262_FIXUP_LENOVO_3000] = { |
fd108215 TI |
2848 | .type = HDA_FIXUP_PINCTLS, |
2849 | .v.pins = (const struct hda_pintbl[]) { | |
2850 | { 0x19, PIN_VREF50 }, | |
b42590b8 TI |
2851 | {} |
2852 | }, | |
2853 | .chained = true, | |
2854 | .chain_id = ALC262_FIXUP_BENQ, | |
2855 | }, | |
2856 | [ALC262_FIXUP_BENQ] = { | |
1727a771 | 2857 | .type = HDA_FIXUP_VERBS, |
b42590b8 | 2858 | .v.verbs = (const struct hda_verb[]) { |
c470150c TI |
2859 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, |
2860 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, | |
2861 | {} | |
2862 | } | |
2863 | }, | |
b42590b8 | 2864 | [ALC262_FIXUP_BENQ_T31] = { |
1727a771 | 2865 | .type = HDA_FIXUP_VERBS, |
b42590b8 TI |
2866 | .v.verbs = (const struct hda_verb[]) { |
2867 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, | |
2868 | { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, | |
2869 | {} | |
2870 | } | |
2871 | }, | |
6e72aa5f | 2872 | [ALC262_FIXUP_INV_DMIC] = { |
1727a771 | 2873 | .type = HDA_FIXUP_FUNC, |
9d36a7dc | 2874 | .v.func = alc_fixup_inv_dmic, |
6e72aa5f | 2875 | }, |
b5c6611f ML |
2876 | [ALC262_FIXUP_INTEL_BAYLEYBAY] = { |
2877 | .type = HDA_FIXUP_FUNC, | |
2878 | .v.func = alc_fixup_no_depop_delay, | |
2879 | }, | |
cfc9b06f TI |
2880 | }; |
2881 | ||
1d045db9 | 2882 | static const struct snd_pci_quirk alc262_fixup_tbl[] = { |
ea4e7af1 | 2883 | SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200), |
7513e6da | 2884 | SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110), |
3dcd3be3 | 2885 | SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ), |
ea4e7af1 | 2886 | SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN), |
275ec0cb | 2887 | SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270), |
ea4e7af1 | 2888 | SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270), |
c470150c | 2889 | SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000), |
b42590b8 TI |
2890 | SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ), |
2891 | SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31), | |
b5c6611f | 2892 | SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY), |
cfc9b06f TI |
2893 | {} |
2894 | }; | |
df694daa | 2895 | |
1727a771 | 2896 | static const struct hda_model_fixup alc262_fixup_models[] = { |
6e72aa5f | 2897 | {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"}, |
e43c44d6 TI |
2898 | {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"}, |
2899 | {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"}, | |
2900 | {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"}, | |
2901 | {.id = ALC262_FIXUP_TYAN, .name = "tyan"}, | |
2902 | {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"}, | |
2903 | {.id = ALC262_FIXUP_BENQ, .name = "benq"}, | |
2904 | {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"}, | |
2905 | {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"}, | |
6e72aa5f TI |
2906 | {} |
2907 | }; | |
1d045db9 | 2908 | |
1d045db9 TI |
2909 | /* |
2910 | */ | |
1d045db9 | 2911 | static int patch_alc262(struct hda_codec *codec) |
df694daa KY |
2912 | { |
2913 | struct alc_spec *spec; | |
df694daa KY |
2914 | int err; |
2915 | ||
3de95173 TI |
2916 | err = alc_alloc_spec(codec, 0x0b); |
2917 | if (err < 0) | |
2918 | return err; | |
df694daa | 2919 | |
3de95173 | 2920 | spec = codec->spec; |
08c189f2 | 2921 | spec->gen.shared_mic_vref_pin = 0x18; |
1d045db9 | 2922 | |
225068ab TI |
2923 | spec->shutup = alc_eapd_shutup; |
2924 | ||
1d045db9 TI |
2925 | #if 0 |
2926 | /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is | |
2927 | * under-run | |
2928 | */ | |
98b24883 | 2929 | alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80); |
1d045db9 | 2930 | #endif |
1d045db9 TI |
2931 | alc_fix_pll_init(codec, 0x20, 0x0a, 10); |
2932 | ||
c9af753f TI |
2933 | alc_pre_init(codec); |
2934 | ||
1727a771 | 2935 | snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl, |
6e72aa5f | 2936 | alc262_fixups); |
1727a771 | 2937 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
9c7f852e | 2938 | |
af741c15 TI |
2939 | alc_auto_parse_customize_define(codec); |
2940 | ||
7504b6cd TI |
2941 | if (has_cdefine_beep(codec)) |
2942 | spec->gen.beep_nid = 0x01; | |
2943 | ||
42399f7a TI |
2944 | /* automatic parse from the BIOS config */ |
2945 | err = alc262_parse_auto_config(codec); | |
2946 | if (err < 0) | |
2947 | goto error; | |
df694daa | 2948 | |
fea80fae TI |
2949 | if (!spec->gen.no_analog && spec->gen.beep_nid) { |
2950 | err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | |
2951 | if (err < 0) | |
2952 | goto error; | |
2953 | } | |
2134ea4f | 2954 | |
1727a771 | 2955 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 2956 | |
1da177e4 | 2957 | return 0; |
e16fb6d1 TI |
2958 | |
2959 | error: | |
2960 | alc_free(codec); | |
2961 | return err; | |
1da177e4 LT |
2962 | } |
2963 | ||
f32610ed | 2964 | /* |
1d045db9 | 2965 | * ALC268 |
f32610ed | 2966 | */ |
1d045db9 | 2967 | /* bind Beep switches of both NID 0x0f and 0x10 */ |
a717777d TI |
2968 | static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol, |
2969 | struct snd_ctl_elem_value *ucontrol) | |
2970 | { | |
2971 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | |
2972 | unsigned long pval; | |
2973 | int err; | |
2974 | ||
2975 | mutex_lock(&codec->control_mutex); | |
2976 | pval = kcontrol->private_value; | |
2977 | kcontrol->private_value = (pval & ~0xff) | 0x0f; | |
2978 | err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); | |
2979 | if (err >= 0) { | |
2980 | kcontrol->private_value = (pval & ~0xff) | 0x10; | |
2981 | err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); | |
2982 | } | |
2983 | kcontrol->private_value = pval; | |
2984 | mutex_unlock(&codec->control_mutex); | |
2985 | return err; | |
2986 | } | |
f32610ed | 2987 | |
1d045db9 TI |
2988 | static const struct snd_kcontrol_new alc268_beep_mixer[] = { |
2989 | HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT), | |
a717777d TI |
2990 | { |
2991 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | |
2992 | .name = "Beep Playback Switch", | |
2993 | .subdevice = HDA_SUBDEV_AMP_FLAG, | |
2994 | .info = snd_hda_mixer_amp_switch_info, | |
2995 | .get = snd_hda_mixer_amp_switch_get, | |
2996 | .put = alc268_beep_switch_put, | |
2997 | .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT) | |
2998 | }, | |
f32610ed JS |
2999 | }; |
3000 | ||
1d045db9 TI |
3001 | /* set PCBEEP vol = 0, mute connections */ |
3002 | static const struct hda_verb alc268_beep_init_verbs[] = { | |
3003 | {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | |
3004 | {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | |
3005 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | |
3006 | { } | |
f32610ed JS |
3007 | }; |
3008 | ||
6e72aa5f TI |
3009 | enum { |
3010 | ALC268_FIXUP_INV_DMIC, | |
cb766404 | 3011 | ALC268_FIXUP_HP_EAPD, |
24eff328 | 3012 | ALC268_FIXUP_SPDIF, |
6e72aa5f TI |
3013 | }; |
3014 | ||
1727a771 | 3015 | static const struct hda_fixup alc268_fixups[] = { |
6e72aa5f | 3016 | [ALC268_FIXUP_INV_DMIC] = { |
1727a771 | 3017 | .type = HDA_FIXUP_FUNC, |
9d36a7dc | 3018 | .v.func = alc_fixup_inv_dmic, |
6e72aa5f | 3019 | }, |
cb766404 | 3020 | [ALC268_FIXUP_HP_EAPD] = { |
1727a771 | 3021 | .type = HDA_FIXUP_VERBS, |
cb766404 TI |
3022 | .v.verbs = (const struct hda_verb[]) { |
3023 | {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0}, | |
3024 | {} | |
3025 | } | |
3026 | }, | |
24eff328 TI |
3027 | [ALC268_FIXUP_SPDIF] = { |
3028 | .type = HDA_FIXUP_PINS, | |
3029 | .v.pins = (const struct hda_pintbl[]) { | |
3030 | { 0x1e, 0x014b1180 }, /* enable SPDIF out */ | |
3031 | {} | |
3032 | } | |
3033 | }, | |
6e72aa5f TI |
3034 | }; |
3035 | ||
1727a771 | 3036 | static const struct hda_model_fixup alc268_fixup_models[] = { |
6e72aa5f | 3037 | {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"}, |
cb766404 | 3038 | {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"}, |
03bf11c9 | 3039 | {.id = ALC268_FIXUP_SPDIF, .name = "spdif"}, |
cb766404 TI |
3040 | {} |
3041 | }; | |
3042 | ||
3043 | static const struct snd_pci_quirk alc268_fixup_tbl[] = { | |
24eff328 | 3044 | SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF), |
fcd8f3b1 | 3045 | SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC), |
cb766404 TI |
3046 | /* below is codec SSID since multiple Toshiba laptops have the |
3047 | * same PCI SSID 1179:ff00 | |
3048 | */ | |
3049 | SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD), | |
6e72aa5f TI |
3050 | {} |
3051 | }; | |
3052 | ||
f32610ed JS |
3053 | /* |
3054 | * BIOS auto configuration | |
3055 | */ | |
1d045db9 | 3056 | static int alc268_parse_auto_config(struct hda_codec *codec) |
f32610ed | 3057 | { |
3e6179b8 | 3058 | static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 }; |
7504b6cd | 3059 | return alc_parse_auto_config(codec, NULL, alc268_ssids); |
f32610ed JS |
3060 | } |
3061 | ||
1d045db9 TI |
3062 | /* |
3063 | */ | |
1d045db9 | 3064 | static int patch_alc268(struct hda_codec *codec) |
f32610ed JS |
3065 | { |
3066 | struct alc_spec *spec; | |
a5cb463a | 3067 | int i, err; |
f32610ed | 3068 | |
1d045db9 | 3069 | /* ALC268 has no aa-loopback mixer */ |
3de95173 TI |
3070 | err = alc_alloc_spec(codec, 0); |
3071 | if (err < 0) | |
3072 | return err; | |
3073 | ||
3074 | spec = codec->spec; | |
2722b535 TI |
3075 | if (has_cdefine_beep(codec)) |
3076 | spec->gen.beep_nid = 0x01; | |
1f0f4b80 | 3077 | |
225068ab TI |
3078 | spec->shutup = alc_eapd_shutup; |
3079 | ||
c9af753f TI |
3080 | alc_pre_init(codec); |
3081 | ||
1727a771 TI |
3082 | snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups); |
3083 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); | |
6e72aa5f | 3084 | |
6ebb8053 TI |
3085 | /* automatic parse from the BIOS config */ |
3086 | err = alc268_parse_auto_config(codec); | |
e16fb6d1 TI |
3087 | if (err < 0) |
3088 | goto error; | |
f32610ed | 3089 | |
7504b6cd TI |
3090 | if (err > 0 && !spec->gen.no_analog && |
3091 | spec->gen.autocfg.speaker_pins[0] != 0x1d) { | |
a5cb463a TI |
3092 | for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) { |
3093 | if (!snd_hda_gen_add_kctl(&spec->gen, NULL, | |
3094 | &alc268_beep_mixer[i])) { | |
3095 | err = -ENOMEM; | |
3096 | goto error; | |
3097 | } | |
3098 | } | |
7504b6cd | 3099 | snd_hda_add_verbs(codec, alc268_beep_init_verbs); |
1d045db9 TI |
3100 | if (!query_amp_caps(codec, 0x1d, HDA_INPUT)) |
3101 | /* override the amp caps for beep generator */ | |
3102 | snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT, | |
3103 | (0x0c << AC_AMPCAP_OFFSET_SHIFT) | | |
3104 | (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) | | |
3105 | (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) | | |
3106 | (0 << AC_AMPCAP_MUTE_SHIFT)); | |
2f893286 KY |
3107 | } |
3108 | ||
1727a771 | 3109 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
6e72aa5f | 3110 | |
f32610ed | 3111 | return 0; |
e16fb6d1 TI |
3112 | |
3113 | error: | |
3114 | alc_free(codec); | |
3115 | return err; | |
f32610ed JS |
3116 | } |
3117 | ||
bc9f98a9 | 3118 | /* |
1d045db9 | 3119 | * ALC269 |
bc9f98a9 | 3120 | */ |
08c189f2 | 3121 | |
1d045db9 | 3122 | static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = { |
1d045db9 | 3123 | .rates = SNDRV_PCM_RATE_44100, /* fixed rate */ |
bc9f98a9 KY |
3124 | }; |
3125 | ||
1d045db9 | 3126 | static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = { |
1d045db9 | 3127 | .rates = SNDRV_PCM_RATE_44100, /* fixed rate */ |
bc9f98a9 | 3128 | }; |
291702f0 | 3129 | |
1d045db9 TI |
3130 | /* different alc269-variants */ |
3131 | enum { | |
3132 | ALC269_TYPE_ALC269VA, | |
3133 | ALC269_TYPE_ALC269VB, | |
3134 | ALC269_TYPE_ALC269VC, | |
adcc70b2 | 3135 | ALC269_TYPE_ALC269VD, |
065380f0 KY |
3136 | ALC269_TYPE_ALC280, |
3137 | ALC269_TYPE_ALC282, | |
2af02be7 | 3138 | ALC269_TYPE_ALC283, |
065380f0 | 3139 | ALC269_TYPE_ALC284, |
4731d5de | 3140 | ALC269_TYPE_ALC293, |
7fc7d047 | 3141 | ALC269_TYPE_ALC286, |
506b62c3 | 3142 | ALC269_TYPE_ALC298, |
1d04c9de | 3143 | ALC269_TYPE_ALC255, |
4344aec8 | 3144 | ALC269_TYPE_ALC256, |
f429e7e4 | 3145 | ALC269_TYPE_ALC257, |
0a6f0600 | 3146 | ALC269_TYPE_ALC215, |
4231430d | 3147 | ALC269_TYPE_ALC225, |
60571929 | 3148 | ALC269_TYPE_ALC245, |
99cee034 | 3149 | ALC269_TYPE_ALC287, |
dcd4f0db | 3150 | ALC269_TYPE_ALC294, |
1078bef0 | 3151 | ALC269_TYPE_ALC300, |
f0778871 | 3152 | ALC269_TYPE_ALC623, |
6fbae35a | 3153 | ALC269_TYPE_ALC700, |
bc9f98a9 KY |
3154 | }; |
3155 | ||
3156 | /* | |
1d045db9 | 3157 | * BIOS auto configuration |
bc9f98a9 | 3158 | */ |
1d045db9 TI |
3159 | static int alc269_parse_auto_config(struct hda_codec *codec) |
3160 | { | |
1d045db9 | 3161 | static const hda_nid_t alc269_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
3162 | static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 }; |
3163 | static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | |
3164 | struct alc_spec *spec = codec->spec; | |
adcc70b2 KY |
3165 | const hda_nid_t *ssids; |
3166 | ||
3167 | switch (spec->codec_variant) { | |
3168 | case ALC269_TYPE_ALC269VA: | |
3169 | case ALC269_TYPE_ALC269VC: | |
065380f0 KY |
3170 | case ALC269_TYPE_ALC280: |
3171 | case ALC269_TYPE_ALC284: | |
4731d5de | 3172 | case ALC269_TYPE_ALC293: |
adcc70b2 KY |
3173 | ssids = alc269va_ssids; |
3174 | break; | |
3175 | case ALC269_TYPE_ALC269VB: | |
3176 | case ALC269_TYPE_ALC269VD: | |
065380f0 | 3177 | case ALC269_TYPE_ALC282: |
2af02be7 | 3178 | case ALC269_TYPE_ALC283: |
7fc7d047 | 3179 | case ALC269_TYPE_ALC286: |
506b62c3 | 3180 | case ALC269_TYPE_ALC298: |
1d04c9de | 3181 | case ALC269_TYPE_ALC255: |
4344aec8 | 3182 | case ALC269_TYPE_ALC256: |
f429e7e4 | 3183 | case ALC269_TYPE_ALC257: |
0a6f0600 | 3184 | case ALC269_TYPE_ALC215: |
4231430d | 3185 | case ALC269_TYPE_ALC225: |
60571929 | 3186 | case ALC269_TYPE_ALC245: |
99cee034 | 3187 | case ALC269_TYPE_ALC287: |
dcd4f0db | 3188 | case ALC269_TYPE_ALC294: |
1078bef0 | 3189 | case ALC269_TYPE_ALC300: |
f0778871 | 3190 | case ALC269_TYPE_ALC623: |
6fbae35a | 3191 | case ALC269_TYPE_ALC700: |
adcc70b2 KY |
3192 | ssids = alc269_ssids; |
3193 | break; | |
3194 | default: | |
3195 | ssids = alc269_ssids; | |
3196 | break; | |
3197 | } | |
bc9f98a9 | 3198 | |
3e6179b8 | 3199 | return alc_parse_auto_config(codec, alc269_ignore, ssids); |
1d045db9 | 3200 | } |
bc9f98a9 | 3201 | |
476c02e0 HW |
3202 | static const struct hda_jack_keymap alc_headset_btn_keymap[] = { |
3203 | { SND_JACK_BTN_0, KEY_PLAYPAUSE }, | |
3204 | { SND_JACK_BTN_1, KEY_VOICECOMMAND }, | |
3205 | { SND_JACK_BTN_2, KEY_VOLUMEUP }, | |
3206 | { SND_JACK_BTN_3, KEY_VOLUMEDOWN }, | |
3207 | {} | |
3208 | }; | |
3209 | ||
3210 | static void alc_headset_btn_callback(struct hda_codec *codec, | |
3211 | struct hda_jack_callback *jack) | |
3212 | { | |
3213 | int report = 0; | |
3214 | ||
3215 | if (jack->unsol_res & (7 << 13)) | |
3216 | report |= SND_JACK_BTN_0; | |
3217 | ||
3218 | if (jack->unsol_res & (1 << 16 | 3 << 8)) | |
3219 | report |= SND_JACK_BTN_1; | |
3220 | ||
3221 | /* Volume up key */ | |
3222 | if (jack->unsol_res & (7 << 23)) | |
3223 | report |= SND_JACK_BTN_2; | |
3224 | ||
3225 | /* Volume down key */ | |
3226 | if (jack->unsol_res & (7 << 10)) | |
3227 | report |= SND_JACK_BTN_3; | |
3228 | ||
04f7791b | 3229 | snd_hda_jack_set_button_state(codec, jack->nid, report); |
476c02e0 HW |
3230 | } |
3231 | ||
3232 | static void alc_disable_headset_jack_key(struct hda_codec *codec) | |
3233 | { | |
3234 | struct alc_spec *spec = codec->spec; | |
3235 | ||
3236 | if (!spec->has_hs_key) | |
3237 | return; | |
3238 | ||
3239 | switch (codec->core.vendor_id) { | |
3240 | case 0x10ec0215: | |
3241 | case 0x10ec0225: | |
3242 | case 0x10ec0285: | |
c72b9bfe | 3243 | case 0x10ec0287: |
476c02e0 HW |
3244 | case 0x10ec0295: |
3245 | case 0x10ec0289: | |
3246 | case 0x10ec0299: | |
3247 | alc_write_coef_idx(codec, 0x48, 0x0); | |
3248 | alc_update_coef_idx(codec, 0x49, 0x0045, 0x0); | |
3249 | alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0); | |
3250 | break; | |
1948fc06 | 3251 | case 0x10ec0230: |
476c02e0 HW |
3252 | case 0x10ec0236: |
3253 | case 0x10ec0256: | |
527f4643 | 3254 | case 0x19e58326: |
476c02e0 HW |
3255 | alc_write_coef_idx(codec, 0x48, 0x0); |
3256 | alc_update_coef_idx(codec, 0x49, 0x0045, 0x0); | |
3257 | break; | |
3258 | } | |
3259 | } | |
3260 | ||
3261 | static void alc_enable_headset_jack_key(struct hda_codec *codec) | |
3262 | { | |
3263 | struct alc_spec *spec = codec->spec; | |
3264 | ||
3265 | if (!spec->has_hs_key) | |
3266 | return; | |
3267 | ||
3268 | switch (codec->core.vendor_id) { | |
3269 | case 0x10ec0215: | |
3270 | case 0x10ec0225: | |
3271 | case 0x10ec0285: | |
c72b9bfe | 3272 | case 0x10ec0287: |
476c02e0 HW |
3273 | case 0x10ec0295: |
3274 | case 0x10ec0289: | |
3275 | case 0x10ec0299: | |
3276 | alc_write_coef_idx(codec, 0x48, 0xd011); | |
3277 | alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045); | |
3278 | alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8); | |
3279 | break; | |
1948fc06 | 3280 | case 0x10ec0230: |
476c02e0 HW |
3281 | case 0x10ec0236: |
3282 | case 0x10ec0256: | |
527f4643 | 3283 | case 0x19e58326: |
476c02e0 HW |
3284 | alc_write_coef_idx(codec, 0x48, 0xd011); |
3285 | alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045); | |
3286 | break; | |
3287 | } | |
3288 | } | |
3289 | ||
3290 | static void alc_fixup_headset_jack(struct hda_codec *codec, | |
3291 | const struct hda_fixup *fix, int action) | |
3292 | { | |
3293 | struct alc_spec *spec = codec->spec; | |
04f7791b | 3294 | hda_nid_t hp_pin; |
476c02e0 HW |
3295 | |
3296 | switch (action) { | |
3297 | case HDA_FIXUP_ACT_PRE_PROBE: | |
3298 | spec->has_hs_key = 1; | |
3299 | snd_hda_jack_detect_enable_callback(codec, 0x55, | |
3300 | alc_headset_btn_callback); | |
476c02e0 | 3301 | break; |
04f7791b HW |
3302 | case HDA_FIXUP_ACT_BUILD: |
3303 | hp_pin = alc_get_hp_pin(spec); | |
3304 | if (!hp_pin || snd_hda_jack_bind_keymap(codec, 0x55, | |
3305 | alc_headset_btn_keymap, | |
3306 | hp_pin)) | |
3307 | snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack", | |
3308 | false, SND_JACK_HEADSET, | |
3309 | alc_headset_btn_keymap); | |
3310 | ||
476c02e0 HW |
3311 | alc_enable_headset_jack_key(codec); |
3312 | break; | |
3313 | } | |
3314 | } | |
3315 | ||
1387e2d1 | 3316 | static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up) |
1d045db9 | 3317 | { |
98b24883 | 3318 | alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0); |
1d045db9 | 3319 | } |
291702f0 | 3320 | |
1d045db9 TI |
3321 | static void alc269_shutup(struct hda_codec *codec) |
3322 | { | |
adcc70b2 KY |
3323 | struct alc_spec *spec = codec->spec; |
3324 | ||
1387e2d1 KY |
3325 | if (spec->codec_variant == ALC269_TYPE_ALC269VB) |
3326 | alc269vb_toggle_power_output(codec, 0); | |
3327 | if (spec->codec_variant == ALC269_TYPE_ALC269VB && | |
3328 | (alc_get_coef0(codec) & 0x00ff) == 0x018) { | |
1d045db9 TI |
3329 | msleep(150); |
3330 | } | |
c0ca5ece | 3331 | alc_shutup_pins(codec); |
1d045db9 | 3332 | } |
291702f0 | 3333 | |
6b0f95c4 | 3334 | static const struct coef_fw alc282_coefs[] = { |
54db6c39 | 3335 | WRITE_COEF(0x03, 0x0002), /* Power Down Control */ |
32fa7e49 | 3336 | UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */ |
54db6c39 TI |
3337 | WRITE_COEF(0x07, 0x0200), /* DMIC control */ |
3338 | UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */ | |
3339 | UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */ | |
3340 | WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */ | |
3341 | WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */ | |
3342 | WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */ | |
3343 | UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */ | |
3344 | UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */ | |
3345 | WRITE_COEF(0x6f, 0x0), /* Class D test 4 */ | |
3346 | UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */ | |
3347 | WRITE_COEF(0x34, 0xa0c0), /* ANC */ | |
3348 | UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */ | |
3349 | UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */ | |
3350 | UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */ | |
3351 | WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */ | |
3352 | WRITE_COEF(0x63, 0x2902), /* PLL */ | |
3353 | WRITE_COEF(0x68, 0xa080), /* capless control 2 */ | |
3354 | WRITE_COEF(0x69, 0x3400), /* capless control 3 */ | |
3355 | WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */ | |
3356 | WRITE_COEF(0x6b, 0x0), /* capless control 5 */ | |
3357 | UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */ | |
3358 | WRITE_COEF(0x6e, 0x110a), /* class D test 3 */ | |
3359 | UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */ | |
3360 | WRITE_COEF(0x71, 0x0014), /* class D test 6 */ | |
3361 | WRITE_COEF(0x72, 0xc2ba), /* classD OCP */ | |
3362 | UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */ | |
3363 | WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */ | |
3364 | {} | |
3365 | }; | |
3366 | ||
cb149cb3 KY |
3367 | static void alc282_restore_default_value(struct hda_codec *codec) |
3368 | { | |
54db6c39 | 3369 | alc_process_coef_fw(codec, alc282_coefs); |
cb149cb3 KY |
3370 | } |
3371 | ||
7b5c7a02 KY |
3372 | static void alc282_init(struct hda_codec *codec) |
3373 | { | |
3374 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3375 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
7b5c7a02 KY |
3376 | bool hp_pin_sense; |
3377 | int coef78; | |
3378 | ||
cb149cb3 KY |
3379 | alc282_restore_default_value(codec); |
3380 | ||
7b5c7a02 KY |
3381 | if (!hp_pin) |
3382 | return; | |
3383 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3384 | coef78 = alc_read_coef_idx(codec, 0x78); | |
3385 | ||
3386 | /* Index 0x78 Direct Drive HP AMP LPM Control 1 */ | |
3387 | /* Headphone capless set to high power mode */ | |
3388 | alc_write_coef_idx(codec, 0x78, 0x9004); | |
3389 | ||
3390 | if (hp_pin_sense) | |
3391 | msleep(2); | |
3392 | ||
3393 | snd_hda_codec_write(codec, hp_pin, 0, | |
3394 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3395 | ||
3396 | if (hp_pin_sense) | |
3397 | msleep(85); | |
3398 | ||
3399 | snd_hda_codec_write(codec, hp_pin, 0, | |
3400 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3401 | ||
3402 | if (hp_pin_sense) | |
3403 | msleep(100); | |
3404 | ||
3405 | /* Headphone capless set to normal mode */ | |
3406 | alc_write_coef_idx(codec, 0x78, coef78); | |
3407 | } | |
3408 | ||
3409 | static void alc282_shutup(struct hda_codec *codec) | |
3410 | { | |
3411 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3412 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
7b5c7a02 KY |
3413 | bool hp_pin_sense; |
3414 | int coef78; | |
3415 | ||
3416 | if (!hp_pin) { | |
3417 | alc269_shutup(codec); | |
3418 | return; | |
3419 | } | |
3420 | ||
3421 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3422 | coef78 = alc_read_coef_idx(codec, 0x78); | |
3423 | alc_write_coef_idx(codec, 0x78, 0x9004); | |
3424 | ||
3425 | if (hp_pin_sense) | |
3426 | msleep(2); | |
3427 | ||
3428 | snd_hda_codec_write(codec, hp_pin, 0, | |
3429 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3430 | ||
3431 | if (hp_pin_sense) | |
3432 | msleep(85); | |
3433 | ||
c0ca5ece TI |
3434 | if (!spec->no_shutup_pins) |
3435 | snd_hda_codec_write(codec, hp_pin, 0, | |
3436 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
7b5c7a02 KY |
3437 | |
3438 | if (hp_pin_sense) | |
3439 | msleep(100); | |
3440 | ||
3441 | alc_auto_setup_eapd(codec, false); | |
c0ca5ece | 3442 | alc_shutup_pins(codec); |
7b5c7a02 KY |
3443 | alc_write_coef_idx(codec, 0x78, coef78); |
3444 | } | |
3445 | ||
6b0f95c4 | 3446 | static const struct coef_fw alc283_coefs[] = { |
54db6c39 | 3447 | WRITE_COEF(0x03, 0x0002), /* Power Down Control */ |
56779864 | 3448 | UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */ |
54db6c39 TI |
3449 | WRITE_COEF(0x07, 0x0200), /* DMIC control */ |
3450 | UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */ | |
3451 | UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */ | |
3452 | WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */ | |
3453 | WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */ | |
3454 | WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */ | |
3455 | UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */ | |
3456 | UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */ | |
3457 | WRITE_COEF(0x3a, 0x0), /* Class D test 4 */ | |
3458 | UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */ | |
3459 | WRITE_COEF(0x22, 0xa0c0), /* ANC */ | |
3460 | UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */ | |
3461 | UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */ | |
3462 | UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */ | |
3463 | WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */ | |
3464 | WRITE_COEF(0x2e, 0x2902), /* PLL */ | |
3465 | WRITE_COEF(0x33, 0xa080), /* capless control 2 */ | |
3466 | WRITE_COEF(0x34, 0x3400), /* capless control 3 */ | |
3467 | WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */ | |
3468 | WRITE_COEF(0x36, 0x0), /* capless control 5 */ | |
3469 | UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */ | |
3470 | WRITE_COEF(0x39, 0x110a), /* class D test 3 */ | |
3471 | UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */ | |
3472 | WRITE_COEF(0x3c, 0x0014), /* class D test 6 */ | |
3473 | WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */ | |
3474 | UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */ | |
3475 | WRITE_COEF(0x49, 0x0), /* test mode */ | |
3476 | UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */ | |
3477 | UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */ | |
3478 | WRITE_COEF(0x37, 0xfc06), /* Class D amp control */ | |
56779864 | 3479 | UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */ |
54db6c39 TI |
3480 | {} |
3481 | }; | |
3482 | ||
6bd55b04 KY |
3483 | static void alc283_restore_default_value(struct hda_codec *codec) |
3484 | { | |
54db6c39 | 3485 | alc_process_coef_fw(codec, alc283_coefs); |
6bd55b04 KY |
3486 | } |
3487 | ||
2af02be7 KY |
3488 | static void alc283_init(struct hda_codec *codec) |
3489 | { | |
3490 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3491 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
2af02be7 | 3492 | bool hp_pin_sense; |
2af02be7 | 3493 | |
6bd55b04 KY |
3494 | alc283_restore_default_value(codec); |
3495 | ||
2af02be7 KY |
3496 | if (!hp_pin) |
3497 | return; | |
a59d7199 KY |
3498 | |
3499 | msleep(30); | |
2af02be7 KY |
3500 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); |
3501 | ||
3502 | /* Index 0x43 Direct Drive HP AMP LPM Control 1 */ | |
3503 | /* Headphone capless set to high power mode */ | |
3504 | alc_write_coef_idx(codec, 0x43, 0x9004); | |
3505 | ||
3506 | snd_hda_codec_write(codec, hp_pin, 0, | |
3507 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3508 | ||
3509 | if (hp_pin_sense) | |
3510 | msleep(85); | |
3511 | ||
3512 | snd_hda_codec_write(codec, hp_pin, 0, | |
3513 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3514 | ||
3515 | if (hp_pin_sense) | |
3516 | msleep(85); | |
3517 | /* Index 0x46 Combo jack auto switch control 2 */ | |
3518 | /* 3k pull low control for Headset jack. */ | |
98b24883 | 3519 | alc_update_coef_idx(codec, 0x46, 3 << 12, 0); |
2af02be7 KY |
3520 | /* Headphone capless set to normal mode */ |
3521 | alc_write_coef_idx(codec, 0x43, 0x9614); | |
3522 | } | |
3523 | ||
3524 | static void alc283_shutup(struct hda_codec *codec) | |
3525 | { | |
3526 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3527 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
2af02be7 | 3528 | bool hp_pin_sense; |
2af02be7 KY |
3529 | |
3530 | if (!hp_pin) { | |
3531 | alc269_shutup(codec); | |
3532 | return; | |
3533 | } | |
3534 | ||
3535 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3536 | ||
3537 | alc_write_coef_idx(codec, 0x43, 0x9004); | |
3538 | ||
b450b17c HP |
3539 | /*depop hp during suspend*/ |
3540 | alc_write_coef_idx(codec, 0x06, 0x2100); | |
3541 | ||
2af02be7 KY |
3542 | snd_hda_codec_write(codec, hp_pin, 0, |
3543 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3544 | ||
3545 | if (hp_pin_sense) | |
88011c09 | 3546 | msleep(100); |
2af02be7 | 3547 | |
c0ca5ece TI |
3548 | if (!spec->no_shutup_pins) |
3549 | snd_hda_codec_write(codec, hp_pin, 0, | |
3550 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
2af02be7 | 3551 | |
98b24883 | 3552 | alc_update_coef_idx(codec, 0x46, 0, 3 << 12); |
2af02be7 KY |
3553 | |
3554 | if (hp_pin_sense) | |
88011c09 | 3555 | msleep(100); |
0435b3ff | 3556 | alc_auto_setup_eapd(codec, false); |
c0ca5ece | 3557 | alc_shutup_pins(codec); |
2af02be7 KY |
3558 | alc_write_coef_idx(codec, 0x43, 0x9614); |
3559 | } | |
3560 | ||
4a219ef8 KY |
3561 | static void alc256_init(struct hda_codec *codec) |
3562 | { | |
3563 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3564 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
4a219ef8 KY |
3565 | bool hp_pin_sense; |
3566 | ||
3567 | if (!hp_pin) | |
6447c962 | 3568 | hp_pin = 0x21; |
4a219ef8 KY |
3569 | |
3570 | msleep(30); | |
3571 | ||
3572 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3573 | ||
3574 | if (hp_pin_sense) | |
3575 | msleep(2); | |
3576 | ||
3577 | alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */ | |
6447c962 KY |
3578 | if (spec->ultra_low_power) { |
3579 | alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1); | |
3580 | alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2); | |
3581 | alc_update_coef_idx(codec, 0x08, 7<<4, 0); | |
3582 | alc_update_coef_idx(codec, 0x3b, 1<<15, 0); | |
3583 | alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6); | |
3584 | msleep(30); | |
3585 | } | |
4a219ef8 KY |
3586 | |
3587 | snd_hda_codec_write(codec, hp_pin, 0, | |
3588 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3589 | ||
6447c962 | 3590 | if (hp_pin_sense || spec->ultra_low_power) |
4a219ef8 KY |
3591 | msleep(85); |
3592 | ||
3593 | snd_hda_codec_write(codec, hp_pin, 0, | |
3594 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3595 | ||
6447c962 | 3596 | if (hp_pin_sense || spec->ultra_low_power) |
4a219ef8 KY |
3597 | msleep(100); |
3598 | ||
3599 | alc_update_coef_idx(codec, 0x46, 3 << 12, 0); | |
3600 | alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */ | |
88d42b2b KY |
3601 | alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */ |
3602 | alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15); | |
c4473744 TH |
3603 | /* |
3604 | * Expose headphone mic (or possibly Line In on some machines) instead | |
3605 | * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See | |
3606 | * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of | |
3607 | * this register. | |
3608 | */ | |
3609 | alc_write_coef_idx(codec, 0x36, 0x5757); | |
4a219ef8 KY |
3610 | } |
3611 | ||
3612 | static void alc256_shutup(struct hda_codec *codec) | |
3613 | { | |
3614 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3615 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
4a219ef8 KY |
3616 | bool hp_pin_sense; |
3617 | ||
6447c962 KY |
3618 | if (!hp_pin) |
3619 | hp_pin = 0x21; | |
4a219ef8 KY |
3620 | |
3621 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3622 | ||
3623 | if (hp_pin_sense) | |
3624 | msleep(2); | |
3625 | ||
3626 | snd_hda_codec_write(codec, hp_pin, 0, | |
3627 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3628 | ||
6447c962 | 3629 | if (hp_pin_sense || spec->ultra_low_power) |
4a219ef8 KY |
3630 | msleep(85); |
3631 | ||
1c9609e3 TI |
3632 | /* 3k pull low control for Headset jack. */ |
3633 | /* NOTE: call this before clearing the pin, otherwise codec stalls */ | |
3f742490 HW |
3634 | /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly |
3635 | * when booting with headset plugged. So skip setting it for the codec alc257 | |
3636 | */ | |
f30741cd KHF |
3637 | if (codec->core.vendor_id != 0x10ec0236 && |
3638 | codec->core.vendor_id != 0x10ec0257) | |
3f742490 | 3639 | alc_update_coef_idx(codec, 0x46, 0, 3 << 12); |
1c9609e3 | 3640 | |
c0ca5ece TI |
3641 | if (!spec->no_shutup_pins) |
3642 | snd_hda_codec_write(codec, hp_pin, 0, | |
3643 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
4a219ef8 | 3644 | |
6447c962 | 3645 | if (hp_pin_sense || spec->ultra_low_power) |
4a219ef8 KY |
3646 | msleep(100); |
3647 | ||
3648 | alc_auto_setup_eapd(codec, false); | |
c0ca5ece | 3649 | alc_shutup_pins(codec); |
6447c962 KY |
3650 | if (spec->ultra_low_power) { |
3651 | msleep(50); | |
3652 | alc_update_coef_idx(codec, 0x03, 1<<1, 0); | |
3653 | alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4); | |
3654 | alc_update_coef_idx(codec, 0x08, 3<<2, 0); | |
3655 | alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15); | |
3656 | alc_update_coef_idx(codec, 0x0e, 7<<6, 0); | |
3657 | msleep(30); | |
3658 | } | |
4a219ef8 KY |
3659 | } |
3660 | ||
3c24e483 KY |
3661 | static void alc285_hp_init(struct hda_codec *codec) |
3662 | { | |
3663 | struct alc_spec *spec = codec->spec; | |
3664 | hda_nid_t hp_pin = alc_get_hp_pin(spec); | |
3665 | int i, val; | |
3666 | int coef38, coef0d, coef36; | |
3667 | ||
3668 | alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */ | |
3669 | coef38 = alc_read_coef_idx(codec, 0x38); /* Amp control */ | |
3670 | coef0d = alc_read_coef_idx(codec, 0x0d); /* Digital Misc control */ | |
3671 | coef36 = alc_read_coef_idx(codec, 0x36); /* Passthrough Control */ | |
3672 | alc_update_coef_idx(codec, 0x38, 1<<4, 0x0); | |
3673 | alc_update_coef_idx(codec, 0x0d, 0x110, 0x0); | |
3674 | ||
3675 | alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000); | |
3676 | ||
3677 | if (hp_pin) | |
3678 | snd_hda_codec_write(codec, hp_pin, 0, | |
3679 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3680 | ||
3681 | msleep(130); | |
3682 | alc_update_coef_idx(codec, 0x36, 1<<14, 1<<14); | |
3683 | alc_update_coef_idx(codec, 0x36, 1<<13, 0x0); | |
3684 | ||
3685 | if (hp_pin) | |
3686 | snd_hda_codec_write(codec, hp_pin, 0, | |
3687 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
3688 | msleep(10); | |
3689 | alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */ | |
3690 | alc_write_coefex_idx(codec, 0x58, 0x00, 0x7880); | |
3691 | alc_write_coefex_idx(codec, 0x58, 0x0f, 0xf049); | |
3692 | alc_update_coefex_idx(codec, 0x58, 0x03, 0x00f0, 0x00c0); | |
3693 | ||
3694 | alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */ | |
3695 | val = alc_read_coefex_idx(codec, 0x58, 0x00); | |
3696 | for (i = 0; i < 20 && val & 0x8000; i++) { | |
3697 | msleep(50); | |
3698 | val = alc_read_coefex_idx(codec, 0x58, 0x00); | |
3699 | } /* Wait for depop procedure finish */ | |
3700 | ||
3701 | alc_write_coefex_idx(codec, 0x58, 0x00, val); /* write back the result */ | |
3702 | alc_update_coef_idx(codec, 0x38, 1<<4, coef38); | |
3703 | alc_update_coef_idx(codec, 0x0d, 0x110, coef0d); | |
3704 | alc_update_coef_idx(codec, 0x36, 3<<13, coef36); | |
3705 | ||
3706 | msleep(50); | |
3707 | alc_update_coef_idx(codec, 0x4a, 1<<15, 0); | |
3708 | } | |
3709 | ||
da911b1f KY |
3710 | static void alc225_init(struct hda_codec *codec) |
3711 | { | |
3712 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3713 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
da911b1f KY |
3714 | bool hp1_pin_sense, hp2_pin_sense; |
3715 | ||
60571929 KY |
3716 | if (spec->codec_variant != ALC269_TYPE_ALC287 && |
3717 | spec->codec_variant != ALC269_TYPE_ALC245) | |
3c24e483 KY |
3718 | /* required only at boot or S3 and S4 resume time */ |
3719 | if (!spec->done_hp_init || | |
3720 | is_s3_resume(codec) || | |
3721 | is_s4_resume(codec)) { | |
3722 | alc285_hp_init(codec); | |
3723 | spec->done_hp_init = true; | |
3724 | } | |
3725 | ||
da911b1f | 3726 | if (!hp_pin) |
d3ba58bb | 3727 | hp_pin = 0x21; |
da911b1f KY |
3728 | msleep(30); |
3729 | ||
3730 | hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3731 | hp2_pin_sense = snd_hda_jack_detect(codec, 0x16); | |
3732 | ||
3733 | if (hp1_pin_sense || hp2_pin_sense) | |
3734 | msleep(2); | |
3735 | ||
3736 | alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */ | |
d3ba58bb KY |
3737 | if (spec->ultra_low_power) { |
3738 | alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2); | |
3739 | alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6); | |
3740 | alc_update_coef_idx(codec, 0x33, 1<<11, 0); | |
3741 | msleep(30); | |
3742 | } | |
da911b1f | 3743 | |
d3ba58bb | 3744 | if (hp1_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3745 | snd_hda_codec_write(codec, hp_pin, 0, |
3746 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3747 | if (hp2_pin_sense) | |
3748 | snd_hda_codec_write(codec, 0x16, 0, | |
3749 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3750 | ||
d3ba58bb | 3751 | if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3752 | msleep(85); |
3753 | ||
d3ba58bb | 3754 | if (hp1_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3755 | snd_hda_codec_write(codec, hp_pin, 0, |
3756 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3757 | if (hp2_pin_sense) | |
3758 | snd_hda_codec_write(codec, 0x16, 0, | |
3759 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3760 | ||
d3ba58bb | 3761 | if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3762 | msleep(100); |
3763 | ||
3764 | alc_update_coef_idx(codec, 0x4a, 3 << 10, 0); | |
3765 | alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */ | |
3766 | } | |
3767 | ||
3768 | static void alc225_shutup(struct hda_codec *codec) | |
3769 | { | |
3770 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3771 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
da911b1f KY |
3772 | bool hp1_pin_sense, hp2_pin_sense; |
3773 | ||
d3ba58bb KY |
3774 | if (!hp_pin) |
3775 | hp_pin = 0x21; | |
476c02e0 HW |
3776 | |
3777 | alc_disable_headset_jack_key(codec); | |
da911b1f KY |
3778 | /* 3k pull low control for Headset jack. */ |
3779 | alc_update_coef_idx(codec, 0x4a, 0, 3 << 10); | |
3780 | ||
3781 | hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3782 | hp2_pin_sense = snd_hda_jack_detect(codec, 0x16); | |
3783 | ||
3784 | if (hp1_pin_sense || hp2_pin_sense) | |
3785 | msleep(2); | |
3786 | ||
d3ba58bb | 3787 | if (hp1_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3788 | snd_hda_codec_write(codec, hp_pin, 0, |
3789 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3790 | if (hp2_pin_sense) | |
3791 | snd_hda_codec_write(codec, 0x16, 0, | |
3792 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3793 | ||
d3ba58bb | 3794 | if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3795 | msleep(85); |
3796 | ||
d3ba58bb | 3797 | if (hp1_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3798 | snd_hda_codec_write(codec, hp_pin, 0, |
3799 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
3800 | if (hp2_pin_sense) | |
3801 | snd_hda_codec_write(codec, 0x16, 0, | |
3802 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
3803 | ||
d3ba58bb | 3804 | if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) |
da911b1f KY |
3805 | msleep(100); |
3806 | ||
3807 | alc_auto_setup_eapd(codec, false); | |
c0ca5ece | 3808 | alc_shutup_pins(codec); |
d3ba58bb KY |
3809 | if (spec->ultra_low_power) { |
3810 | msleep(50); | |
3811 | alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2); | |
3812 | alc_update_coef_idx(codec, 0x0e, 7<<6, 0); | |
3813 | alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11); | |
3814 | alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4); | |
3815 | msleep(30); | |
3816 | } | |
476c02e0 HW |
3817 | |
3818 | alc_update_coef_idx(codec, 0x4a, 3 << 10, 0); | |
3819 | alc_enable_headset_jack_key(codec); | |
da911b1f KY |
3820 | } |
3821 | ||
c2d6af53 KY |
3822 | static void alc_default_init(struct hda_codec *codec) |
3823 | { | |
3824 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3825 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
c2d6af53 KY |
3826 | bool hp_pin_sense; |
3827 | ||
3828 | if (!hp_pin) | |
3829 | return; | |
3830 | ||
3831 | msleep(30); | |
3832 | ||
3833 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3834 | ||
3835 | if (hp_pin_sense) | |
3836 | msleep(2); | |
3837 | ||
3838 | snd_hda_codec_write(codec, hp_pin, 0, | |
3839 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3840 | ||
3841 | if (hp_pin_sense) | |
3842 | msleep(85); | |
3843 | ||
3844 | snd_hda_codec_write(codec, hp_pin, 0, | |
3845 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
3846 | ||
3847 | if (hp_pin_sense) | |
3848 | msleep(100); | |
3849 | } | |
3850 | ||
3851 | static void alc_default_shutup(struct hda_codec *codec) | |
3852 | { | |
3853 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3854 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
c2d6af53 KY |
3855 | bool hp_pin_sense; |
3856 | ||
3857 | if (!hp_pin) { | |
3858 | alc269_shutup(codec); | |
3859 | return; | |
3860 | } | |
3861 | ||
3862 | hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); | |
3863 | ||
3864 | if (hp_pin_sense) | |
3865 | msleep(2); | |
3866 | ||
3867 | snd_hda_codec_write(codec, hp_pin, 0, | |
3868 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3869 | ||
3870 | if (hp_pin_sense) | |
3871 | msleep(85); | |
3872 | ||
c0ca5ece TI |
3873 | if (!spec->no_shutup_pins) |
3874 | snd_hda_codec_write(codec, hp_pin, 0, | |
3875 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
c2d6af53 KY |
3876 | |
3877 | if (hp_pin_sense) | |
3878 | msleep(100); | |
3879 | ||
3880 | alc_auto_setup_eapd(codec, false); | |
c0ca5ece | 3881 | alc_shutup_pins(codec); |
c2d6af53 KY |
3882 | } |
3883 | ||
693abe11 KY |
3884 | static void alc294_hp_init(struct hda_codec *codec) |
3885 | { | |
3886 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 3887 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
693abe11 KY |
3888 | int i, val; |
3889 | ||
3890 | if (!hp_pin) | |
3891 | return; | |
3892 | ||
3893 | snd_hda_codec_write(codec, hp_pin, 0, | |
3894 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
3895 | ||
3896 | msleep(100); | |
3897 | ||
c0ca5ece TI |
3898 | if (!spec->no_shutup_pins) |
3899 | snd_hda_codec_write(codec, hp_pin, 0, | |
3900 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
693abe11 KY |
3901 | |
3902 | alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */ | |
3903 | alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */ | |
3904 | ||
3905 | /* Wait for depop procedure finish */ | |
3906 | val = alc_read_coefex_idx(codec, 0x58, 0x01); | |
3907 | for (i = 0; i < 20 && val & 0x0080; i++) { | |
3908 | msleep(50); | |
3909 | val = alc_read_coefex_idx(codec, 0x58, 0x01); | |
3910 | } | |
3911 | /* Set HP depop to auto mode */ | |
3912 | alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b); | |
3913 | msleep(50); | |
3914 | } | |
3915 | ||
3916 | static void alc294_init(struct hda_codec *codec) | |
3917 | { | |
3918 | struct alc_spec *spec = codec->spec; | |
3919 | ||
f6ef4e0e TI |
3920 | /* required only at boot or S4 resume time */ |
3921 | if (!spec->done_hp_init || | |
3922 | codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) { | |
693abe11 KY |
3923 | alc294_hp_init(codec); |
3924 | spec->done_hp_init = true; | |
3925 | } | |
3926 | alc_default_init(codec); | |
3927 | } | |
3928 | ||
ad60d502 KY |
3929 | static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg, |
3930 | unsigned int val) | |
3931 | { | |
3932 | snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1); | |
3933 | snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */ | |
3934 | snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */ | |
3935 | } | |
3936 | ||
3937 | static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg) | |
3938 | { | |
3939 | unsigned int val; | |
3940 | ||
3941 | snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1); | |
3942 | val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0) | |
3943 | & 0xffff; | |
3944 | val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0) | |
3945 | << 16; | |
3946 | return val; | |
3947 | } | |
3948 | ||
3949 | static void alc5505_dsp_halt(struct hda_codec *codec) | |
3950 | { | |
3951 | unsigned int val; | |
3952 | ||
3953 | alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */ | |
3954 | alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */ | |
3955 | alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */ | |
3956 | alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */ | |
3957 | alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */ | |
3958 | alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */ | |
3959 | alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */ | |
3960 | val = alc5505_coef_get(codec, 0x6220); | |
3961 | alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */ | |
3962 | } | |
3963 | ||
3964 | static void alc5505_dsp_back_from_halt(struct hda_codec *codec) | |
3965 | { | |
3966 | alc5505_coef_set(codec, 0x61b8, 0x04133302); | |
3967 | alc5505_coef_set(codec, 0x61b0, 0x00005b16); | |
3968 | alc5505_coef_set(codec, 0x61b4, 0x040a2b02); | |
3969 | alc5505_coef_set(codec, 0x6230, 0xf80d4011); | |
3970 | alc5505_coef_set(codec, 0x6220, 0x2002010f); | |
3971 | alc5505_coef_set(codec, 0x880c, 0x00000004); | |
3972 | } | |
3973 | ||
3974 | static void alc5505_dsp_init(struct hda_codec *codec) | |
3975 | { | |
3976 | unsigned int val; | |
3977 | ||
3978 | alc5505_dsp_halt(codec); | |
3979 | alc5505_dsp_back_from_halt(codec); | |
3980 | alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */ | |
3981 | alc5505_coef_set(codec, 0x61b0, 0x5b16); | |
3982 | alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */ | |
3983 | alc5505_coef_set(codec, 0x61b4, 0x04132b02); | |
3984 | alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/ | |
3985 | alc5505_coef_set(codec, 0x61b8, 0x041f3302); | |
3986 | snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */ | |
3987 | alc5505_coef_set(codec, 0x61b8, 0x041b3302); | |
3988 | alc5505_coef_set(codec, 0x61b8, 0x04173302); | |
3989 | alc5505_coef_set(codec, 0x61b8, 0x04163302); | |
3990 | alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */ | |
3991 | alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */ | |
3992 | alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */ | |
3993 | ||
3994 | val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */ | |
3995 | if (val <= 3) | |
3996 | alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */ | |
3997 | else | |
3998 | alc5505_coef_set(codec, 0x6220, 0x6002018f); | |
3999 | ||
4000 | alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/ | |
4001 | alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */ | |
4002 | alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */ | |
4003 | alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */ | |
4004 | alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */ | |
4005 | alc5505_coef_set(codec, 0x880c, 0x00000003); | |
4006 | alc5505_coef_set(codec, 0x880c, 0x00000010); | |
cd63a5ff TI |
4007 | |
4008 | #ifdef HALT_REALTEK_ALC5505 | |
4009 | alc5505_dsp_halt(codec); | |
4010 | #endif | |
ad60d502 KY |
4011 | } |
4012 | ||
cd63a5ff | 4013 | #ifdef HALT_REALTEK_ALC5505 |
8a71821f PLB |
4014 | #define alc5505_dsp_suspend(codec) do { } while (0) /* NOP */ |
4015 | #define alc5505_dsp_resume(codec) do { } while (0) /* NOP */ | |
cd63a5ff TI |
4016 | #else |
4017 | #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec) | |
4018 | #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec) | |
4019 | #endif | |
4020 | ||
2a43952a | 4021 | #ifdef CONFIG_PM |
ad60d502 KY |
4022 | static int alc269_suspend(struct hda_codec *codec) |
4023 | { | |
4024 | struct alc_spec *spec = codec->spec; | |
1873ebd3 | 4025 | int i; |
ad60d502 KY |
4026 | |
4027 | if (spec->has_alc5505_dsp) | |
cd63a5ff | 4028 | alc5505_dsp_suspend(codec); |
1873ebd3 SB |
4029 | |
4030 | for (i = 0; i < HDA_MAX_COMPONENTS; i++) | |
4031 | if (spec->comps[i].suspend_hook) | |
4032 | spec->comps[i].suspend_hook(spec->comps[i].dev); | |
4033 | ||
ad60d502 KY |
4034 | return alc_suspend(codec); |
4035 | } | |
4036 | ||
1d045db9 TI |
4037 | static int alc269_resume(struct hda_codec *codec) |
4038 | { | |
adcc70b2 | 4039 | struct alc_spec *spec = codec->spec; |
1873ebd3 | 4040 | int i; |
adcc70b2 | 4041 | |
1387e2d1 KY |
4042 | if (spec->codec_variant == ALC269_TYPE_ALC269VB) |
4043 | alc269vb_toggle_power_output(codec, 0); | |
4044 | if (spec->codec_variant == ALC269_TYPE_ALC269VB && | |
adcc70b2 | 4045 | (alc_get_coef0(codec) & 0x00ff) == 0x018) { |
1d045db9 TI |
4046 | msleep(150); |
4047 | } | |
8c427226 | 4048 | |
1d045db9 | 4049 | codec->patch_ops.init(codec); |
f1d4e28b | 4050 | |
1387e2d1 KY |
4051 | if (spec->codec_variant == ALC269_TYPE_ALC269VB) |
4052 | alc269vb_toggle_power_output(codec, 1); | |
4053 | if (spec->codec_variant == ALC269_TYPE_ALC269VB && | |
adcc70b2 | 4054 | (alc_get_coef0(codec) & 0x00ff) == 0x017) { |
1d045db9 TI |
4055 | msleep(200); |
4056 | } | |
f1d4e28b | 4057 | |
1a462be5 | 4058 | snd_hda_regmap_sync(codec); |
1d045db9 | 4059 | hda_call_check_power_status(codec, 0x01); |
f475371a HW |
4060 | |
4061 | /* on some machine, the BIOS will clear the codec gpio data when enter | |
4062 | * suspend, and won't restore the data after resume, so we restore it | |
4063 | * in the driver. | |
4064 | */ | |
d261eec8 TI |
4065 | if (spec->gpio_data) |
4066 | alc_write_gpio_data(codec); | |
f475371a | 4067 | |
ad60d502 | 4068 | if (spec->has_alc5505_dsp) |
cd63a5ff | 4069 | alc5505_dsp_resume(codec); |
c5177c86 | 4070 | |
1873ebd3 SB |
4071 | for (i = 0; i < HDA_MAX_COMPONENTS; i++) |
4072 | if (spec->comps[i].resume_hook) | |
4073 | spec->comps[i].resume_hook(spec->comps[i].dev); | |
4074 | ||
1d045db9 TI |
4075 | return 0; |
4076 | } | |
2a43952a | 4077 | #endif /* CONFIG_PM */ |
f1d4e28b | 4078 | |
108cc108 | 4079 | static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec, |
1727a771 | 4080 | const struct hda_fixup *fix, int action) |
108cc108 DH |
4081 | { |
4082 | struct alc_spec *spec = codec->spec; | |
4083 | ||
1727a771 | 4084 | if (action == HDA_FIXUP_ACT_PRE_PROBE) |
108cc108 DH |
4085 | spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; |
4086 | } | |
4087 | ||
fdcc968a JMG |
4088 | static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec, |
4089 | const struct hda_fixup *fix, | |
4090 | int action) | |
4091 | { | |
4092 | unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21); | |
4093 | unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19); | |
4094 | ||
4095 | if (cfg_headphone && cfg_headset_mic == 0x411111f0) | |
4096 | snd_hda_codec_set_pincfg(codec, 0x19, | |
4097 | (cfg_headphone & ~AC_DEFCFG_DEVICE) | | |
4098 | (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT)); | |
4099 | } | |
4100 | ||
1d045db9 | 4101 | static void alc269_fixup_hweq(struct hda_codec *codec, |
1727a771 | 4102 | const struct hda_fixup *fix, int action) |
1d045db9 | 4103 | { |
98b24883 TI |
4104 | if (action == HDA_FIXUP_ACT_INIT) |
4105 | alc_update_coef_idx(codec, 0x1e, 0, 0x80); | |
1d045db9 | 4106 | } |
f1d4e28b | 4107 | |
7c478f03 DH |
4108 | static void alc269_fixup_headset_mic(struct hda_codec *codec, |
4109 | const struct hda_fixup *fix, int action) | |
4110 | { | |
4111 | struct alc_spec *spec = codec->spec; | |
4112 | ||
4113 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
4114 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
4115 | } | |
4116 | ||
1d045db9 | 4117 | static void alc271_fixup_dmic(struct hda_codec *codec, |
1727a771 | 4118 | const struct hda_fixup *fix, int action) |
1d045db9 TI |
4119 | { |
4120 | static const struct hda_verb verbs[] = { | |
4121 | {0x20, AC_VERB_SET_COEF_INDEX, 0x0d}, | |
4122 | {0x20, AC_VERB_SET_PROC_COEF, 0x4000}, | |
4123 | {} | |
4124 | }; | |
4125 | unsigned int cfg; | |
f1d4e28b | 4126 | |
7639a06c TI |
4127 | if (strcmp(codec->core.chip_name, "ALC271X") && |
4128 | strcmp(codec->core.chip_name, "ALC269VB")) | |
1d045db9 TI |
4129 | return; |
4130 | cfg = snd_hda_codec_get_pincfg(codec, 0x12); | |
4131 | if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED) | |
4132 | snd_hda_sequence_write(codec, verbs); | |
4133 | } | |
f1d4e28b | 4134 | |
c8426b27 TI |
4135 | /* Fix the speaker amp after resume, etc */ |
4136 | static void alc269vb_fixup_aspire_e1_coef(struct hda_codec *codec, | |
4137 | const struct hda_fixup *fix, | |
4138 | int action) | |
4139 | { | |
4140 | if (action == HDA_FIXUP_ACT_INIT) | |
4141 | alc_update_coef_idx(codec, 0x0d, 0x6000, 0x6000); | |
4142 | } | |
4143 | ||
017f2a10 | 4144 | static void alc269_fixup_pcm_44k(struct hda_codec *codec, |
1727a771 | 4145 | const struct hda_fixup *fix, int action) |
017f2a10 TI |
4146 | { |
4147 | struct alc_spec *spec = codec->spec; | |
4148 | ||
1727a771 | 4149 | if (action != HDA_FIXUP_ACT_PROBE) |
017f2a10 TI |
4150 | return; |
4151 | ||
4152 | /* Due to a hardware problem on Lenovo Ideadpad, we need to | |
4153 | * fix the sample rate of analog I/O to 44.1kHz | |
4154 | */ | |
08c189f2 TI |
4155 | spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback; |
4156 | spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture; | |
017f2a10 TI |
4157 | } |
4158 | ||
adabb3ec | 4159 | static void alc269_fixup_stereo_dmic(struct hda_codec *codec, |
1727a771 | 4160 | const struct hda_fixup *fix, int action) |
adabb3ec | 4161 | { |
adabb3ec TI |
4162 | /* The digital-mic unit sends PDM (differential signal) instead of |
4163 | * the standard PCM, thus you can't record a valid mono stream as is. | |
4164 | * Below is a workaround specific to ALC269 to control the dmic | |
4165 | * signal source as mono. | |
4166 | */ | |
98b24883 TI |
4167 | if (action == HDA_FIXUP_ACT_INIT) |
4168 | alc_update_coef_idx(codec, 0x07, 0, 0x80); | |
adabb3ec TI |
4169 | } |
4170 | ||
24519911 TI |
4171 | static void alc269_quanta_automute(struct hda_codec *codec) |
4172 | { | |
08c189f2 | 4173 | snd_hda_gen_update_outputs(codec); |
24519911 | 4174 | |
1687ccc8 TI |
4175 | alc_write_coef_idx(codec, 0x0c, 0x680); |
4176 | alc_write_coef_idx(codec, 0x0c, 0x480); | |
24519911 TI |
4177 | } |
4178 | ||
4179 | static void alc269_fixup_quanta_mute(struct hda_codec *codec, | |
1727a771 | 4180 | const struct hda_fixup *fix, int action) |
24519911 TI |
4181 | { |
4182 | struct alc_spec *spec = codec->spec; | |
1727a771 | 4183 | if (action != HDA_FIXUP_ACT_PROBE) |
24519911 | 4184 | return; |
08c189f2 | 4185 | spec->gen.automute_hook = alc269_quanta_automute; |
24519911 TI |
4186 | } |
4187 | ||
d240d1dc | 4188 | static void alc269_x101_hp_automute_hook(struct hda_codec *codec, |
1a4f69d5 | 4189 | struct hda_jack_callback *jack) |
d240d1dc DH |
4190 | { |
4191 | struct alc_spec *spec = codec->spec; | |
4192 | int vref; | |
4193 | msleep(200); | |
4194 | snd_hda_gen_hp_automute(codec, jack); | |
4195 | ||
4196 | vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0; | |
4197 | msleep(100); | |
4198 | snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | |
4199 | vref); | |
4200 | msleep(500); | |
4201 | snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | |
4202 | vref); | |
4203 | } | |
4204 | ||
a2ef03fe TE |
4205 | /* |
4206 | * Magic sequence to make Huawei Matebook X right speaker working (bko#197801) | |
4207 | */ | |
4208 | struct hda_alc298_mbxinit { | |
4209 | unsigned char value_0x23; | |
4210 | unsigned char value_0x25; | |
4211 | }; | |
4212 | ||
4213 | static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec, | |
4214 | const struct hda_alc298_mbxinit *initval, | |
4215 | bool first) | |
4216 | { | |
4217 | snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0); | |
4218 | alc_write_coef_idx(codec, 0x26, 0xb000); | |
4219 | ||
4220 | if (first) | |
4221 | snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0); | |
4222 | ||
4223 | snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80); | |
4224 | alc_write_coef_idx(codec, 0x26, 0xf000); | |
4225 | alc_write_coef_idx(codec, 0x23, initval->value_0x23); | |
4226 | ||
4227 | if (initval->value_0x23 != 0x1e) | |
4228 | alc_write_coef_idx(codec, 0x25, initval->value_0x25); | |
4229 | ||
4230 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26); | |
4231 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010); | |
4232 | } | |
4233 | ||
4234 | static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec, | |
4235 | const struct hda_fixup *fix, | |
4236 | int action) | |
4237 | { | |
4238 | /* Initialization magic */ | |
4239 | static const struct hda_alc298_mbxinit dac_init[] = { | |
4240 | {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00}, | |
4241 | {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00}, | |
4242 | {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00}, | |
4243 | {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24}, | |
4244 | {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f}, | |
4245 | {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00}, | |
4246 | {0x2f, 0x00}, | |
4247 | {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00}, | |
4248 | {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c}, | |
4249 | {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80}, | |
4250 | {} | |
4251 | }; | |
4252 | const struct hda_alc298_mbxinit *seq; | |
4253 | ||
4254 | if (action != HDA_FIXUP_ACT_INIT) | |
4255 | return; | |
4256 | ||
4257 | /* Start */ | |
4258 | snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00); | |
4259 | snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80); | |
4260 | alc_write_coef_idx(codec, 0x26, 0xf000); | |
4261 | alc_write_coef_idx(codec, 0x22, 0x31); | |
4262 | alc_write_coef_idx(codec, 0x23, 0x0b); | |
4263 | alc_write_coef_idx(codec, 0x25, 0x00); | |
4264 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26); | |
4265 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010); | |
4266 | ||
4267 | for (seq = dac_init; seq->value_0x23; seq++) | |
4268 | alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init); | |
4269 | } | |
4270 | ||
d240d1dc DH |
4271 | static void alc269_fixup_x101_headset_mic(struct hda_codec *codec, |
4272 | const struct hda_fixup *fix, int action) | |
4273 | { | |
4274 | struct alc_spec *spec = codec->spec; | |
4275 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
4276 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
4277 | spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook; | |
4278 | } | |
4279 | } | |
4280 | ||
766538ac TI |
4281 | static void alc_update_vref_led(struct hda_codec *codec, hda_nid_t pin, |
4282 | bool polarity, bool on) | |
4283 | { | |
4284 | unsigned int pinval; | |
4285 | ||
4286 | if (!pin) | |
4287 | return; | |
4288 | if (polarity) | |
4289 | on = !on; | |
4290 | pinval = snd_hda_codec_get_pin_target(codec, pin); | |
4291 | pinval &= ~AC_PINCTL_VREFEN; | |
4292 | pinval |= on ? AC_PINCTL_VREF_80 : AC_PINCTL_VREF_HIZ; | |
4293 | /* temporarily power up/down for setting VREF */ | |
4294 | snd_hda_power_up_pm(codec); | |
4295 | snd_hda_set_pin_ctl_cache(codec, pin, pinval); | |
4296 | snd_hda_power_down_pm(codec); | |
4297 | } | |
d240d1dc | 4298 | |
08fb0d0e | 4299 | /* update mute-LED according to the speaker mute state via mic VREF pin */ |
8d3d1ece TI |
4300 | static int vref_mute_led_set(struct led_classdev *led_cdev, |
4301 | enum led_brightness brightness) | |
6d3cd5d4 | 4302 | { |
8d3d1ece | 4303 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); |
08fb0d0e | 4304 | struct alc_spec *spec = codec->spec; |
08fb0d0e | 4305 | |
766538ac TI |
4306 | alc_update_vref_led(codec, spec->mute_led_nid, |
4307 | spec->mute_led_polarity, brightness); | |
8d3d1ece | 4308 | return 0; |
6d3cd5d4 DH |
4309 | } |
4310 | ||
d5b6b65e DH |
4311 | /* Make sure the led works even in runtime suspend */ |
4312 | static unsigned int led_power_filter(struct hda_codec *codec, | |
4313 | hda_nid_t nid, | |
4314 | unsigned int power_state) | |
4315 | { | |
4316 | struct alc_spec *spec = codec->spec; | |
4317 | ||
50dd9050 HW |
4318 | if (power_state != AC_PWRST_D3 || nid == 0 || |
4319 | (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid)) | |
d5b6b65e DH |
4320 | return power_state; |
4321 | ||
4322 | /* Set pin ctl again, it might have just been set to 0 */ | |
4323 | snd_hda_set_pin_ctl(codec, nid, | |
4324 | snd_hda_codec_get_pin_target(codec, nid)); | |
4325 | ||
cffd3966 | 4326 | return snd_hda_gen_path_power_filter(codec, nid, power_state); |
d5b6b65e DH |
4327 | } |
4328 | ||
08fb0d0e TI |
4329 | static void alc269_fixup_hp_mute_led(struct hda_codec *codec, |
4330 | const struct hda_fixup *fix, int action) | |
6d3cd5d4 DH |
4331 | { |
4332 | struct alc_spec *spec = codec->spec; | |
08fb0d0e TI |
4333 | const struct dmi_device *dev = NULL; |
4334 | ||
4335 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
4336 | return; | |
4337 | ||
4338 | while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) { | |
4339 | int pol, pin; | |
4340 | if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2) | |
4341 | continue; | |
4342 | if (pin < 0x0a || pin >= 0x10) | |
4343 | break; | |
4344 | spec->mute_led_polarity = pol; | |
4345 | spec->mute_led_nid = pin - 0x0a + 0x18; | |
8d3d1ece | 4346 | snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set); |
d5b6b65e | 4347 | codec->power_filter = led_power_filter; |
4e76a883 TI |
4348 | codec_dbg(codec, |
4349 | "Detected mute LED for %x:%d\n", spec->mute_led_nid, | |
08fb0d0e | 4350 | spec->mute_led_polarity); |
6d3cd5d4 DH |
4351 | break; |
4352 | } | |
4353 | } | |
4354 | ||
85c467dc TI |
4355 | static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec, |
4356 | const struct hda_fixup *fix, | |
4357 | int action, hda_nid_t pin) | |
d06ac143 DH |
4358 | { |
4359 | struct alc_spec *spec = codec->spec; | |
85c467dc | 4360 | |
d06ac143 DH |
4361 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
4362 | spec->mute_led_polarity = 0; | |
85c467dc | 4363 | spec->mute_led_nid = pin; |
8d3d1ece | 4364 | snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set); |
d5b6b65e | 4365 | codec->power_filter = led_power_filter; |
d06ac143 DH |
4366 | } |
4367 | } | |
4368 | ||
85c467dc TI |
4369 | static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec, |
4370 | const struct hda_fixup *fix, int action) | |
4371 | { | |
4372 | alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18); | |
4373 | } | |
4374 | ||
08fb0d0e TI |
4375 | static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec, |
4376 | const struct hda_fixup *fix, int action) | |
420b0feb | 4377 | { |
85c467dc | 4378 | alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19); |
420b0feb TI |
4379 | } |
4380 | ||
7f783bd5 TB |
4381 | static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec, |
4382 | const struct hda_fixup *fix, int action) | |
4383 | { | |
85c467dc | 4384 | alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b); |
7f783bd5 TB |
4385 | } |
4386 | ||
0f32fd19 TI |
4387 | /* update LED status via GPIO */ |
4388 | static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask, | |
dbd13179 | 4389 | int polarity, bool enabled) |
9f5c6faf | 4390 | { |
dbd13179 | 4391 | if (polarity) |
0f32fd19 | 4392 | enabled = !enabled; |
d261eec8 | 4393 | alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */ |
9f5c6faf TI |
4394 | } |
4395 | ||
0f32fd19 | 4396 | /* turn on/off mute LED via GPIO per vmaster hook */ |
8d3d1ece TI |
4397 | static int gpio_mute_led_set(struct led_classdev *led_cdev, |
4398 | enum led_brightness brightness) | |
9f5c6faf | 4399 | { |
8d3d1ece | 4400 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); |
9f5c6faf | 4401 | struct alc_spec *spec = codec->spec; |
9f5c6faf | 4402 | |
dbd13179 | 4403 | alc_update_gpio_led(codec, spec->gpio_mute_led_mask, |
8d3d1ece TI |
4404 | spec->mute_led_polarity, !brightness); |
4405 | return 0; | |
0f32fd19 | 4406 | } |
9f5c6faf | 4407 | |
0f32fd19 | 4408 | /* turn on/off mic-mute LED via GPIO per capture hook */ |
87dc3648 KHF |
4409 | static int micmute_led_set(struct led_classdev *led_cdev, |
4410 | enum led_brightness brightness) | |
4411 | { | |
4412 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); | |
4413 | struct alc_spec *spec = codec->spec; | |
4414 | ||
4415 | alc_update_gpio_led(codec, spec->gpio_mic_led_mask, | |
40469064 | 4416 | spec->micmute_led_polarity, !brightness); |
87dc3648 KHF |
4417 | return 0; |
4418 | } | |
4419 | ||
01e4a275 TI |
4420 | /* setup mute and mic-mute GPIO bits, add hooks appropriately */ |
4421 | static void alc_fixup_hp_gpio_led(struct hda_codec *codec, | |
4422 | int action, | |
4423 | unsigned int mute_mask, | |
4424 | unsigned int micmute_mask) | |
9f5c6faf TI |
4425 | { |
4426 | struct alc_spec *spec = codec->spec; | |
9f5c6faf | 4427 | |
01e4a275 TI |
4428 | alc_fixup_gpio(codec, action, mute_mask | micmute_mask); |
4429 | ||
4430 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
4431 | return; | |
4432 | if (mute_mask) { | |
4433 | spec->gpio_mute_led_mask = mute_mask; | |
8d3d1ece | 4434 | snd_hda_gen_add_mute_led_cdev(codec, gpio_mute_led_set); |
01e4a275 TI |
4435 | } |
4436 | if (micmute_mask) { | |
4437 | spec->gpio_mic_led_mask = micmute_mask; | |
7cdf8c49 | 4438 | snd_hda_gen_add_micmute_led_cdev(codec, micmute_led_set); |
9f5c6faf TI |
4439 | } |
4440 | } | |
4441 | ||
e7d66cf7 JS |
4442 | static void alc236_fixup_hp_gpio_led(struct hda_codec *codec, |
4443 | const struct hda_fixup *fix, int action) | |
4444 | { | |
4445 | alc_fixup_hp_gpio_led(codec, action, 0x02, 0x01); | |
4446 | } | |
4447 | ||
01e4a275 | 4448 | static void alc269_fixup_hp_gpio_led(struct hda_codec *codec, |
eaa8e5ef KY |
4449 | const struct hda_fixup *fix, int action) |
4450 | { | |
01e4a275 TI |
4451 | alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10); |
4452 | } | |
eaa8e5ef | 4453 | |
f5a88b0a KHF |
4454 | static void alc285_fixup_hp_gpio_led(struct hda_codec *codec, |
4455 | const struct hda_fixup *fix, int action) | |
4456 | { | |
3e0650ab | 4457 | alc_fixup_hp_gpio_led(codec, action, 0x04, 0x01); |
f5a88b0a KHF |
4458 | } |
4459 | ||
01e4a275 TI |
4460 | static void alc286_fixup_hp_gpio_led(struct hda_codec *codec, |
4461 | const struct hda_fixup *fix, int action) | |
4462 | { | |
4463 | alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20); | |
9f5c6faf TI |
4464 | } |
4465 | ||
a0ccbc53 KY |
4466 | static void alc287_fixup_hp_gpio_led(struct hda_codec *codec, |
4467 | const struct hda_fixup *fix, int action) | |
4468 | { | |
4469 | alc_fixup_hp_gpio_led(codec, action, 0x10, 0); | |
4470 | } | |
4471 | ||
5fc462c3 JC |
4472 | static void alc245_fixup_hp_gpio_led(struct hda_codec *codec, |
4473 | const struct hda_fixup *fix, int action) | |
4474 | { | |
4475 | struct alc_spec *spec = codec->spec; | |
4476 | ||
4477 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
4478 | spec->micmute_led_polarity = 1; | |
4479 | alc_fixup_hp_gpio_led(codec, action, 0, 0x04); | |
4480 | } | |
4481 | ||
8a503555 TI |
4482 | /* turn on/off mic-mute LED per capture hook via VREF change */ |
4483 | static int vref_micmute_led_set(struct led_classdev *led_cdev, | |
4484 | enum led_brightness brightness) | |
9c5dc3bf | 4485 | { |
8a503555 | 4486 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); |
9c5dc3bf | 4487 | struct alc_spec *spec = codec->spec; |
9c5dc3bf | 4488 | |
766538ac TI |
4489 | alc_update_vref_led(codec, spec->cap_mute_led_nid, |
4490 | spec->micmute_led_polarity, brightness); | |
8a503555 | 4491 | return 0; |
9c5dc3bf KY |
4492 | } |
4493 | ||
4494 | static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec, | |
4495 | const struct hda_fixup *fix, int action) | |
4496 | { | |
4497 | struct alc_spec *spec = codec->spec; | |
9c5dc3bf | 4498 | |
01e4a275 | 4499 | alc_fixup_hp_gpio_led(codec, action, 0x08, 0); |
9c5dc3bf | 4500 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
01e4a275 TI |
4501 | /* Like hp_gpio_mic1_led, but also needs GPIO4 low to |
4502 | * enable headphone amp | |
4503 | */ | |
4504 | spec->gpio_mask |= 0x10; | |
4505 | spec->gpio_dir |= 0x10; | |
9c5dc3bf | 4506 | spec->cap_mute_led_nid = 0x18; |
8a503555 | 4507 | snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set); |
50dd9050 | 4508 | codec->power_filter = led_power_filter; |
9c5dc3bf KY |
4509 | } |
4510 | } | |
4511 | ||
7a5255f1 DH |
4512 | static void alc280_fixup_hp_gpio4(struct hda_codec *codec, |
4513 | const struct hda_fixup *fix, int action) | |
4514 | { | |
7a5255f1 | 4515 | struct alc_spec *spec = codec->spec; |
7a5255f1 | 4516 | |
01e4a275 | 4517 | alc_fixup_hp_gpio_led(codec, action, 0x08, 0); |
7a5255f1 | 4518 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
7a5255f1 | 4519 | spec->cap_mute_led_nid = 0x18; |
8a503555 | 4520 | snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set); |
7a5255f1 DH |
4521 | codec->power_filter = led_power_filter; |
4522 | } | |
4523 | } | |
4524 | ||
c3bb2b52 TI |
4525 | /* HP Spectre x360 14 model needs a unique workaround for enabling the amp; |
4526 | * it needs to toggle the GPIO0 once on and off at each time (bko#210633) | |
4527 | */ | |
4528 | static void alc245_fixup_hp_x360_amp(struct hda_codec *codec, | |
4529 | const struct hda_fixup *fix, int action) | |
4530 | { | |
4531 | struct alc_spec *spec = codec->spec; | |
4532 | ||
4533 | switch (action) { | |
4534 | case HDA_FIXUP_ACT_PRE_PROBE: | |
4535 | spec->gpio_mask |= 0x01; | |
4536 | spec->gpio_dir |= 0x01; | |
4537 | break; | |
4538 | case HDA_FIXUP_ACT_INIT: | |
4539 | /* need to toggle GPIO to enable the amp */ | |
4540 | alc_update_gpio_data(codec, 0x01, true); | |
4541 | msleep(100); | |
4542 | alc_update_gpio_data(codec, 0x01, false); | |
4543 | break; | |
4544 | } | |
4545 | } | |
4546 | ||
622464c8 TI |
4547 | /* toggle GPIO2 at each time stream is started; we use PREPARE state instead */ |
4548 | static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream *hinfo, | |
4549 | struct hda_codec *codec, | |
4550 | struct snd_pcm_substream *substream, | |
4551 | int action) | |
4552 | { | |
4553 | switch (action) { | |
4554 | case HDA_GEN_PCM_ACT_PREPARE: | |
4555 | alc_update_gpio_data(codec, 0x04, true); | |
4556 | break; | |
4557 | case HDA_GEN_PCM_ACT_CLEANUP: | |
4558 | alc_update_gpio_data(codec, 0x04, false); | |
4559 | break; | |
4560 | } | |
4561 | } | |
4562 | ||
4563 | static void alc274_fixup_hp_envy_gpio(struct hda_codec *codec, | |
4564 | const struct hda_fixup *fix, | |
4565 | int action) | |
4566 | { | |
4567 | struct alc_spec *spec = codec->spec; | |
4568 | ||
4569 | if (action == HDA_FIXUP_ACT_PROBE) { | |
4570 | spec->gpio_mask |= 0x04; | |
4571 | spec->gpio_dir |= 0x04; | |
4572 | spec->gen.pcm_playback_hook = alc274_hp_envy_pcm_hook; | |
4573 | } | |
4574 | } | |
4575 | ||
766538ac TI |
4576 | static void alc_update_coef_led(struct hda_codec *codec, |
4577 | struct alc_coef_led *led, | |
4578 | bool polarity, bool on) | |
4579 | { | |
4580 | if (polarity) | |
4581 | on = !on; | |
4582 | /* temporarily power up/down for setting COEF bit */ | |
4583 | alc_update_coef_idx(codec, led->idx, led->mask, | |
4584 | on ? led->on : led->off); | |
4585 | } | |
4586 | ||
431e76c3 | 4587 | /* update mute-LED according to the speaker mute state via COEF bit */ |
8d3d1ece TI |
4588 | static int coef_mute_led_set(struct led_classdev *led_cdev, |
4589 | enum led_brightness brightness) | |
431e76c3 | 4590 | { |
8d3d1ece | 4591 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); |
431e76c3 KY |
4592 | struct alc_spec *spec = codec->spec; |
4593 | ||
766538ac TI |
4594 | alc_update_coef_led(codec, &spec->mute_led_coef, |
4595 | spec->mute_led_polarity, brightness); | |
8d3d1ece | 4596 | return 0; |
431e76c3 KY |
4597 | } |
4598 | ||
4599 | static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec, | |
4600 | const struct hda_fixup *fix, | |
4601 | int action) | |
4602 | { | |
4603 | struct alc_spec *spec = codec->spec; | |
4604 | ||
4605 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
4606 | spec->mute_led_polarity = 0; | |
766538ac TI |
4607 | spec->mute_led_coef.idx = 0x0b; |
4608 | spec->mute_led_coef.mask = 1 << 3; | |
4609 | spec->mute_led_coef.on = 1 << 3; | |
4610 | spec->mute_led_coef.off = 0; | |
8d3d1ece | 4611 | snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set); |
431e76c3 KY |
4612 | } |
4613 | } | |
4614 | ||
24164f43 KY |
4615 | static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec *codec, |
4616 | const struct hda_fixup *fix, | |
4617 | int action) | |
4618 | { | |
4619 | struct alc_spec *spec = codec->spec; | |
4620 | ||
4621 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
4622 | spec->mute_led_polarity = 0; | |
766538ac TI |
4623 | spec->mute_led_coef.idx = 0x34; |
4624 | spec->mute_led_coef.mask = 1 << 5; | |
4625 | spec->mute_led_coef.on = 0; | |
4626 | spec->mute_led_coef.off = 1 << 5; | |
8d3d1ece | 4627 | snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set); |
24164f43 KY |
4628 | } |
4629 | } | |
4630 | ||
431e76c3 | 4631 | /* turn on/off mic-mute LED per capture hook by coef bit */ |
8a503555 TI |
4632 | static int coef_micmute_led_set(struct led_classdev *led_cdev, |
4633 | enum led_brightness brightness) | |
431e76c3 | 4634 | { |
8a503555 | 4635 | struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); |
431e76c3 KY |
4636 | struct alc_spec *spec = codec->spec; |
4637 | ||
766538ac TI |
4638 | alc_update_coef_led(codec, &spec->mic_led_coef, |
4639 | spec->micmute_led_polarity, brightness); | |
8a503555 | 4640 | return 0; |
431e76c3 KY |
4641 | } |
4642 | ||
4643 | static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec, | |
4644 | const struct hda_fixup *fix, int action) | |
4645 | { | |
4646 | struct alc_spec *spec = codec->spec; | |
4647 | ||
4648 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
766538ac TI |
4649 | spec->mic_led_coef.idx = 0x19; |
4650 | spec->mic_led_coef.mask = 1 << 13; | |
4651 | spec->mic_led_coef.on = 1 << 13; | |
4652 | spec->mic_led_coef.off = 0; | |
8a503555 | 4653 | snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set); |
431e76c3 KY |
4654 | } |
4655 | } | |
4656 | ||
24164f43 KY |
4657 | static void alc236_fixup_hp_coef_micmute_led(struct hda_codec *codec, |
4658 | const struct hda_fixup *fix, int action) | |
4659 | { | |
4660 | struct alc_spec *spec = codec->spec; | |
4661 | ||
4662 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
766538ac TI |
4663 | spec->mic_led_coef.idx = 0x35; |
4664 | spec->mic_led_coef.mask = 3 << 2; | |
4665 | spec->mic_led_coef.on = 2 << 2; | |
4666 | spec->mic_led_coef.off = 1 << 2; | |
8a503555 | 4667 | snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set); |
24164f43 KY |
4668 | } |
4669 | } | |
4670 | ||
431e76c3 KY |
4671 | static void alc285_fixup_hp_mute_led(struct hda_codec *codec, |
4672 | const struct hda_fixup *fix, int action) | |
4673 | { | |
4674 | alc285_fixup_hp_mute_led_coefbit(codec, fix, action); | |
4675 | alc285_fixup_hp_coef_micmute_led(codec, fix, action); | |
4676 | } | |
4677 | ||
24164f43 KY |
4678 | static void alc236_fixup_hp_mute_led(struct hda_codec *codec, |
4679 | const struct hda_fixup *fix, int action) | |
4680 | { | |
4681 | alc236_fixup_hp_mute_led_coefbit(codec, fix, action); | |
4682 | alc236_fixup_hp_coef_micmute_led(codec, fix, action); | |
4683 | } | |
4684 | ||
75b62ab6 JW |
4685 | static void alc236_fixup_hp_micmute_led_vref(struct hda_codec *codec, |
4686 | const struct hda_fixup *fix, int action) | |
4687 | { | |
4688 | struct alc_spec *spec = codec->spec; | |
4689 | ||
4690 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
4691 | spec->cap_mute_led_nid = 0x1a; | |
4692 | snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set); | |
4693 | codec->power_filter = led_power_filter; | |
4694 | } | |
4695 | } | |
4696 | ||
4697 | static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec *codec, | |
4698 | const struct hda_fixup *fix, int action) | |
4699 | { | |
4700 | alc236_fixup_hp_mute_led_coefbit(codec, fix, action); | |
4701 | alc236_fixup_hp_micmute_led_vref(codec, fix, action); | |
4702 | } | |
4703 | ||
a2d57ebe KM |
4704 | static inline void alc298_samsung_write_coef_pack(struct hda_codec *codec, |
4705 | const unsigned short coefs[2]) | |
4706 | { | |
4707 | alc_write_coef_idx(codec, 0x23, coefs[0]); | |
4708 | alc_write_coef_idx(codec, 0x25, coefs[1]); | |
4709 | alc_write_coef_idx(codec, 0x26, 0xb011); | |
4710 | } | |
4711 | ||
4712 | struct alc298_samsung_amp_desc { | |
4713 | unsigned char nid; | |
4714 | unsigned short init_seq[2][2]; | |
4715 | }; | |
4716 | ||
4717 | static void alc298_fixup_samsung_amp(struct hda_codec *codec, | |
4718 | const struct hda_fixup *fix, int action) | |
4719 | { | |
4720 | int i, j; | |
4721 | static const unsigned short init_seq[][2] = { | |
4722 | { 0x19, 0x00 }, { 0x20, 0xc0 }, { 0x22, 0x44 }, { 0x23, 0x08 }, | |
4723 | { 0x24, 0x85 }, { 0x25, 0x41 }, { 0x35, 0x40 }, { 0x36, 0x01 }, | |
4724 | { 0x38, 0x81 }, { 0x3a, 0x03 }, { 0x3b, 0x81 }, { 0x40, 0x3e }, | |
4725 | { 0x41, 0x07 }, { 0x400, 0x1 } | |
4726 | }; | |
4727 | static const struct alc298_samsung_amp_desc amps[] = { | |
4728 | { 0x3a, { { 0x18, 0x1 }, { 0x26, 0x0 } } }, | |
4729 | { 0x39, { { 0x18, 0x2 }, { 0x26, 0x1 } } } | |
4730 | }; | |
4731 | ||
4732 | if (action != HDA_FIXUP_ACT_INIT) | |
4733 | return; | |
4734 | ||
4735 | for (i = 0; i < ARRAY_SIZE(amps); i++) { | |
4736 | alc_write_coef_idx(codec, 0x22, amps[i].nid); | |
4737 | ||
4738 | for (j = 0; j < ARRAY_SIZE(amps[i].init_seq); j++) | |
4739 | alc298_samsung_write_coef_pack(codec, amps[i].init_seq[j]); | |
4740 | ||
4741 | for (j = 0; j < ARRAY_SIZE(init_seq); j++) | |
4742 | alc298_samsung_write_coef_pack(codec, init_seq[j]); | |
4743 | } | |
4744 | } | |
4745 | ||
6a30abaa | 4746 | #if IS_REACHABLE(CONFIG_INPUT) |
33f4acd3 DH |
4747 | static void gpio2_mic_hotkey_event(struct hda_codec *codec, |
4748 | struct hda_jack_callback *event) | |
4749 | { | |
4750 | struct alc_spec *spec = codec->spec; | |
4751 | ||
4752 | /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore | |
4753 | send both key on and key off event for every interrupt. */ | |
c7b60a89 | 4754 | input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1); |
33f4acd3 | 4755 | input_sync(spec->kb_dev); |
c7b60a89 | 4756 | input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0); |
33f4acd3 DH |
4757 | input_sync(spec->kb_dev); |
4758 | } | |
33f4acd3 | 4759 | |
3694cb29 K |
4760 | static int alc_register_micmute_input_device(struct hda_codec *codec) |
4761 | { | |
4762 | struct alc_spec *spec = codec->spec; | |
c7b60a89 | 4763 | int i; |
3694cb29 K |
4764 | |
4765 | spec->kb_dev = input_allocate_device(); | |
4766 | if (!spec->kb_dev) { | |
4767 | codec_err(codec, "Out of memory (input_allocate_device)\n"); | |
4768 | return -ENOMEM; | |
4769 | } | |
c7b60a89 HW |
4770 | |
4771 | spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE; | |
4772 | ||
3694cb29 K |
4773 | spec->kb_dev->name = "Microphone Mute Button"; |
4774 | spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY); | |
c7b60a89 HW |
4775 | spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]); |
4776 | spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map); | |
4777 | spec->kb_dev->keycode = spec->alc_mute_keycode_map; | |
4778 | for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++) | |
4779 | set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit); | |
3694cb29 K |
4780 | |
4781 | if (input_register_device(spec->kb_dev)) { | |
4782 | codec_err(codec, "input_register_device failed\n"); | |
4783 | input_free_device(spec->kb_dev); | |
4784 | spec->kb_dev = NULL; | |
4785 | return -ENOMEM; | |
4786 | } | |
4787 | ||
4788 | return 0; | |
4789 | } | |
4790 | ||
01e4a275 TI |
4791 | /* GPIO1 = set according to SKU external amp |
4792 | * GPIO2 = mic mute hotkey | |
4793 | * GPIO3 = mute LED | |
4794 | * GPIO4 = mic mute LED | |
4795 | */ | |
33f4acd3 DH |
4796 | static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec, |
4797 | const struct hda_fixup *fix, int action) | |
4798 | { | |
33f4acd3 DH |
4799 | struct alc_spec *spec = codec->spec; |
4800 | ||
01e4a275 | 4801 | alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10); |
33f4acd3 | 4802 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
1c76aa5f | 4803 | spec->init_amp = ALC_INIT_DEFAULT; |
3694cb29 | 4804 | if (alc_register_micmute_input_device(codec) != 0) |
33f4acd3 | 4805 | return; |
33f4acd3 | 4806 | |
01e4a275 TI |
4807 | spec->gpio_mask |= 0x06; |
4808 | spec->gpio_dir |= 0x02; | |
4809 | spec->gpio_data |= 0x02; | |
7639a06c | 4810 | snd_hda_codec_write_cache(codec, codec->core.afg, 0, |
33f4acd3 | 4811 | AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04); |
7639a06c | 4812 | snd_hda_jack_detect_enable_callback(codec, codec->core.afg, |
33f4acd3 | 4813 | gpio2_mic_hotkey_event); |
33f4acd3 DH |
4814 | return; |
4815 | } | |
4816 | ||
4817 | if (!spec->kb_dev) | |
4818 | return; | |
4819 | ||
4820 | switch (action) { | |
33f4acd3 DH |
4821 | case HDA_FIXUP_ACT_FREE: |
4822 | input_unregister_device(spec->kb_dev); | |
33f4acd3 DH |
4823 | spec->kb_dev = NULL; |
4824 | } | |
33f4acd3 DH |
4825 | } |
4826 | ||
01e4a275 TI |
4827 | /* Line2 = mic mute hotkey |
4828 | * GPIO2 = mic mute LED | |
4829 | */ | |
3694cb29 K |
4830 | static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec, |
4831 | const struct hda_fixup *fix, int action) | |
4832 | { | |
3694cb29 K |
4833 | struct alc_spec *spec = codec->spec; |
4834 | ||
01e4a275 | 4835 | alc_fixup_hp_gpio_led(codec, action, 0, 0x04); |
3694cb29 | 4836 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
1c76aa5f | 4837 | spec->init_amp = ALC_INIT_DEFAULT; |
3694cb29 K |
4838 | if (alc_register_micmute_input_device(codec) != 0) |
4839 | return; | |
4840 | ||
3694cb29 K |
4841 | snd_hda_jack_detect_enable_callback(codec, 0x1b, |
4842 | gpio2_mic_hotkey_event); | |
3694cb29 K |
4843 | return; |
4844 | } | |
4845 | ||
4846 | if (!spec->kb_dev) | |
4847 | return; | |
4848 | ||
4849 | switch (action) { | |
3694cb29 K |
4850 | case HDA_FIXUP_ACT_FREE: |
4851 | input_unregister_device(spec->kb_dev); | |
4852 | spec->kb_dev = NULL; | |
4853 | } | |
4854 | } | |
c469652b TI |
4855 | #else /* INPUT */ |
4856 | #define alc280_fixup_hp_gpio2_mic_hotkey NULL | |
4857 | #define alc233_fixup_lenovo_line2_mic_hotkey NULL | |
4858 | #endif /* INPUT */ | |
3694cb29 | 4859 | |
9c5dc3bf KY |
4860 | static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec, |
4861 | const struct hda_fixup *fix, int action) | |
4862 | { | |
4863 | struct alc_spec *spec = codec->spec; | |
4864 | ||
1bce62a6 | 4865 | alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a); |
9c5dc3bf | 4866 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
9c5dc3bf | 4867 | spec->cap_mute_led_nid = 0x18; |
8a503555 | 4868 | snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set); |
9c5dc3bf KY |
4869 | } |
4870 | } | |
4871 | ||
6b0f95c4 | 4872 | static const struct coef_fw alc225_pre_hsmode[] = { |
5a36767a KY |
4873 | UPDATE_COEF(0x4a, 1<<8, 0), |
4874 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), | |
4875 | UPDATE_COEF(0x63, 3<<14, 3<<14), | |
4876 | UPDATE_COEF(0x4a, 3<<4, 2<<4), | |
4877 | UPDATE_COEF(0x4a, 3<<10, 3<<10), | |
4878 | UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10), | |
4879 | UPDATE_COEF(0x4a, 3<<10, 0), | |
4880 | {} | |
4881 | }; | |
4882 | ||
73bdd597 DH |
4883 | static void alc_headset_mode_unplugged(struct hda_codec *codec) |
4884 | { | |
92666d45 | 4885 | struct alc_spec *spec = codec->spec; |
6b0f95c4 | 4886 | static const struct coef_fw coef0255[] = { |
717f43d8 | 4887 | WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */ |
54db6c39 TI |
4888 | WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */ |
4889 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/ | |
4890 | WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */ | |
4891 | WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */ | |
4892 | {} | |
4893 | }; | |
6b0f95c4 | 4894 | static const struct coef_fw coef0256[] = { |
e69e7e03 | 4895 | WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */ |
717f43d8 KY |
4896 | WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */ |
4897 | WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */ | |
4898 | WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */ | |
4899 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/ | |
e69e7e03 KY |
4900 | {} |
4901 | }; | |
6b0f95c4 | 4902 | static const struct coef_fw coef0233[] = { |
54db6c39 TI |
4903 | WRITE_COEF(0x1b, 0x0c0b), |
4904 | WRITE_COEF(0x45, 0xc429), | |
4905 | UPDATE_COEF(0x35, 0x4000, 0), | |
4906 | WRITE_COEF(0x06, 0x2104), | |
4907 | WRITE_COEF(0x1a, 0x0001), | |
4908 | WRITE_COEF(0x26, 0x0004), | |
4909 | WRITE_COEF(0x32, 0x42a3), | |
4910 | {} | |
4911 | }; | |
6b0f95c4 | 4912 | static const struct coef_fw coef0288[] = { |
f3b70332 KY |
4913 | UPDATE_COEF(0x4f, 0xfcc0, 0xc400), |
4914 | UPDATE_COEF(0x50, 0x2000, 0x2000), | |
4915 | UPDATE_COEF(0x56, 0x0006, 0x0006), | |
4916 | UPDATE_COEF(0x66, 0x0008, 0), | |
4917 | UPDATE_COEF(0x67, 0x2000, 0), | |
4918 | {} | |
4919 | }; | |
6b0f95c4 | 4920 | static const struct coef_fw coef0298[] = { |
89542936 KY |
4921 | UPDATE_COEF(0x19, 0x1300, 0x0300), |
4922 | {} | |
4923 | }; | |
6b0f95c4 | 4924 | static const struct coef_fw coef0292[] = { |
54db6c39 TI |
4925 | WRITE_COEF(0x76, 0x000e), |
4926 | WRITE_COEF(0x6c, 0x2400), | |
4927 | WRITE_COEF(0x18, 0x7308), | |
4928 | WRITE_COEF(0x6b, 0xc429), | |
4929 | {} | |
4930 | }; | |
6b0f95c4 | 4931 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
4932 | UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */ |
4933 | UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */ | |
4934 | UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */ | |
4935 | UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */ | |
4936 | WRITE_COEF(0x45, 0xc429), /* Set to TRS type */ | |
4937 | UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */ | |
4938 | {} | |
4939 | }; | |
6b0f95c4 | 4940 | static const struct coef_fw coef0668[] = { |
54db6c39 TI |
4941 | WRITE_COEF(0x15, 0x0d40), |
4942 | WRITE_COEF(0xb7, 0x802b), | |
4943 | {} | |
4944 | }; | |
6b0f95c4 | 4945 | static const struct coef_fw coef0225[] = { |
5a36767a | 4946 | UPDATE_COEF(0x63, 3<<14, 0), |
4cc9b9d6 KY |
4947 | {} |
4948 | }; | |
6b0f95c4 | 4949 | static const struct coef_fw coef0274[] = { |
71683c32 KY |
4950 | UPDATE_COEF(0x4a, 0x0100, 0), |
4951 | UPDATE_COEFEX(0x57, 0x05, 0x4000, 0), | |
4952 | UPDATE_COEF(0x6b, 0xf000, 0x5000), | |
4953 | UPDATE_COEF(0x4a, 0x0010, 0), | |
4954 | UPDATE_COEF(0x4a, 0x0c00, 0x0c00), | |
4955 | WRITE_COEF(0x45, 0x5289), | |
4956 | UPDATE_COEF(0x4a, 0x0c00, 0), | |
4957 | {} | |
4958 | }; | |
54db6c39 | 4959 | |
92666d45 KY |
4960 | if (spec->no_internal_mic_pin) { |
4961 | alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12); | |
4962 | return; | |
4963 | } | |
4964 | ||
7639a06c | 4965 | switch (codec->core.vendor_id) { |
9a22a8f5 | 4966 | case 0x10ec0255: |
e69e7e03 KY |
4967 | alc_process_coef_fw(codec, coef0255); |
4968 | break; | |
1948fc06 | 4969 | case 0x10ec0230: |
736f20a7 | 4970 | case 0x10ec0236: |
7081adf3 | 4971 | case 0x10ec0256: |
527f4643 | 4972 | case 0x19e58326: |
e69e7e03 | 4973 | alc_process_coef_fw(codec, coef0256); |
9a22a8f5 | 4974 | break; |
71683c32 KY |
4975 | case 0x10ec0234: |
4976 | case 0x10ec0274: | |
4977 | case 0x10ec0294: | |
4978 | alc_process_coef_fw(codec, coef0274); | |
4979 | break; | |
13fd08a3 | 4980 | case 0x10ec0233: |
73bdd597 | 4981 | case 0x10ec0283: |
54db6c39 | 4982 | alc_process_coef_fw(codec, coef0233); |
73bdd597 | 4983 | break; |
f3b70332 KY |
4984 | case 0x10ec0286: |
4985 | case 0x10ec0288: | |
89542936 KY |
4986 | alc_process_coef_fw(codec, coef0288); |
4987 | break; | |
1a5bc8d9 | 4988 | case 0x10ec0298: |
89542936 | 4989 | alc_process_coef_fw(codec, coef0298); |
f3b70332 KY |
4990 | alc_process_coef_fw(codec, coef0288); |
4991 | break; | |
73bdd597 | 4992 | case 0x10ec0292: |
54db6c39 | 4993 | alc_process_coef_fw(codec, coef0292); |
73bdd597 | 4994 | break; |
a22aa26f | 4995 | case 0x10ec0293: |
54db6c39 | 4996 | alc_process_coef_fw(codec, coef0293); |
a22aa26f | 4997 | break; |
73bdd597 | 4998 | case 0x10ec0668: |
54db6c39 | 4999 | alc_process_coef_fw(codec, coef0668); |
73bdd597 | 5000 | break; |
c2b691ee | 5001 | case 0x10ec0215: |
4cc9b9d6 | 5002 | case 0x10ec0225: |
c2b691ee | 5003 | case 0x10ec0285: |
7d727869 | 5004 | case 0x10ec0295: |
c2b691ee | 5005 | case 0x10ec0289: |
28f1f9b2 | 5006 | case 0x10ec0299: |
4d4b0c52 | 5007 | alc_process_coef_fw(codec, alc225_pre_hsmode); |
4cc9b9d6 KY |
5008 | alc_process_coef_fw(codec, coef0225); |
5009 | break; | |
78f4f7c2 KY |
5010 | case 0x10ec0867: |
5011 | alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); | |
5012 | break; | |
73bdd597 | 5013 | } |
4e76a883 | 5014 | codec_dbg(codec, "Headset jack set to unplugged mode.\n"); |
73bdd597 DH |
5015 | } |
5016 | ||
5017 | ||
5018 | static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin, | |
5019 | hda_nid_t mic_pin) | |
5020 | { | |
6b0f95c4 | 5021 | static const struct coef_fw coef0255[] = { |
54db6c39 TI |
5022 | WRITE_COEFEX(0x57, 0x03, 0x8aa6), |
5023 | WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */ | |
5024 | {} | |
5025 | }; | |
6b0f95c4 | 5026 | static const struct coef_fw coef0256[] = { |
717f43d8 KY |
5027 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/ |
5028 | WRITE_COEFEX(0x57, 0x03, 0x09a3), | |
5029 | WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */ | |
5030 | {} | |
5031 | }; | |
6b0f95c4 | 5032 | static const struct coef_fw coef0233[] = { |
54db6c39 TI |
5033 | UPDATE_COEF(0x35, 0, 1<<14), |
5034 | WRITE_COEF(0x06, 0x2100), | |
5035 | WRITE_COEF(0x1a, 0x0021), | |
5036 | WRITE_COEF(0x26, 0x008c), | |
5037 | {} | |
5038 | }; | |
6b0f95c4 | 5039 | static const struct coef_fw coef0288[] = { |
89542936 | 5040 | UPDATE_COEF(0x4f, 0x00c0, 0), |
f3b70332 KY |
5041 | UPDATE_COEF(0x50, 0x2000, 0), |
5042 | UPDATE_COEF(0x56, 0x0006, 0), | |
5043 | UPDATE_COEF(0x4f, 0xfcc0, 0xc400), | |
5044 | UPDATE_COEF(0x66, 0x0008, 0x0008), | |
5045 | UPDATE_COEF(0x67, 0x2000, 0x2000), | |
5046 | {} | |
5047 | }; | |
6b0f95c4 | 5048 | static const struct coef_fw coef0292[] = { |
54db6c39 TI |
5049 | WRITE_COEF(0x19, 0xa208), |
5050 | WRITE_COEF(0x2e, 0xacf0), | |
5051 | {} | |
5052 | }; | |
6b0f95c4 | 5053 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
5054 | UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */ |
5055 | UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */ | |
5056 | UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */ | |
5057 | {} | |
5058 | }; | |
6b0f95c4 | 5059 | static const struct coef_fw coef0688[] = { |
54db6c39 TI |
5060 | WRITE_COEF(0xb7, 0x802b), |
5061 | WRITE_COEF(0xb5, 0x1040), | |
5062 | UPDATE_COEF(0xc3, 0, 1<<12), | |
5063 | {} | |
5064 | }; | |
6b0f95c4 | 5065 | static const struct coef_fw coef0225[] = { |
4cc9b9d6 KY |
5066 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), |
5067 | UPDATE_COEF(0x4a, 3<<4, 2<<4), | |
5068 | UPDATE_COEF(0x63, 3<<14, 0), | |
5069 | {} | |
5070 | }; | |
6b0f95c4 | 5071 | static const struct coef_fw coef0274[] = { |
71683c32 KY |
5072 | UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000), |
5073 | UPDATE_COEF(0x4a, 0x0010, 0), | |
5074 | UPDATE_COEF(0x6b, 0xf000, 0), | |
5075 | {} | |
5076 | }; | |
54db6c39 | 5077 | |
7639a06c | 5078 | switch (codec->core.vendor_id) { |
9a22a8f5 KY |
5079 | case 0x10ec0255: |
5080 | alc_write_coef_idx(codec, 0x45, 0xc489); | |
5081 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
54db6c39 | 5082 | alc_process_coef_fw(codec, coef0255); |
9a22a8f5 KY |
5083 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); |
5084 | break; | |
1948fc06 | 5085 | case 0x10ec0230: |
717f43d8 KY |
5086 | case 0x10ec0236: |
5087 | case 0x10ec0256: | |
527f4643 | 5088 | case 0x19e58326: |
717f43d8 KY |
5089 | alc_write_coef_idx(codec, 0x45, 0xc489); |
5090 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
5091 | alc_process_coef_fw(codec, coef0256); | |
5092 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); | |
5093 | break; | |
71683c32 KY |
5094 | case 0x10ec0234: |
5095 | case 0x10ec0274: | |
5096 | case 0x10ec0294: | |
5097 | alc_write_coef_idx(codec, 0x45, 0x4689); | |
5098 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
5099 | alc_process_coef_fw(codec, coef0274); | |
5100 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); | |
5101 | break; | |
13fd08a3 | 5102 | case 0x10ec0233: |
73bdd597 DH |
5103 | case 0x10ec0283: |
5104 | alc_write_coef_idx(codec, 0x45, 0xc429); | |
5105 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
54db6c39 | 5106 | alc_process_coef_fw(codec, coef0233); |
73bdd597 DH |
5107 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); |
5108 | break; | |
f3b70332 KY |
5109 | case 0x10ec0286: |
5110 | case 0x10ec0288: | |
1a5bc8d9 | 5111 | case 0x10ec0298: |
f3b70332 KY |
5112 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); |
5113 | alc_process_coef_fw(codec, coef0288); | |
5114 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); | |
5115 | break; | |
73bdd597 DH |
5116 | case 0x10ec0292: |
5117 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
54db6c39 | 5118 | alc_process_coef_fw(codec, coef0292); |
73bdd597 | 5119 | break; |
a22aa26f KY |
5120 | case 0x10ec0293: |
5121 | /* Set to TRS mode */ | |
5122 | alc_write_coef_idx(codec, 0x45, 0xc429); | |
5123 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
54db6c39 | 5124 | alc_process_coef_fw(codec, coef0293); |
a22aa26f KY |
5125 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); |
5126 | break; | |
78f4f7c2 KY |
5127 | case 0x10ec0867: |
5128 | alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14); | |
c0dbbdad | 5129 | fallthrough; |
9eb5d0e6 | 5130 | case 0x10ec0221: |
1f8b46cd DH |
5131 | case 0x10ec0662: |
5132 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
5133 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); | |
5134 | break; | |
73bdd597 DH |
5135 | case 0x10ec0668: |
5136 | alc_write_coef_idx(codec, 0x11, 0x0001); | |
5137 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
54db6c39 | 5138 | alc_process_coef_fw(codec, coef0688); |
73bdd597 DH |
5139 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); |
5140 | break; | |
c2b691ee | 5141 | case 0x10ec0215: |
4cc9b9d6 | 5142 | case 0x10ec0225: |
c2b691ee | 5143 | case 0x10ec0285: |
7d727869 | 5144 | case 0x10ec0295: |
c2b691ee | 5145 | case 0x10ec0289: |
28f1f9b2 | 5146 | case 0x10ec0299: |
5a36767a | 5147 | alc_process_coef_fw(codec, alc225_pre_hsmode); |
4cc9b9d6 KY |
5148 | alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10); |
5149 | snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); | |
5150 | alc_process_coef_fw(codec, coef0225); | |
5151 | snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); | |
5152 | break; | |
73bdd597 | 5153 | } |
4e76a883 | 5154 | codec_dbg(codec, "Headset jack set to mic-in mode.\n"); |
73bdd597 DH |
5155 | } |
5156 | ||
5157 | static void alc_headset_mode_default(struct hda_codec *codec) | |
5158 | { | |
6b0f95c4 | 5159 | static const struct coef_fw coef0225[] = { |
5a36767a KY |
5160 | UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10), |
5161 | UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10), | |
5162 | UPDATE_COEF(0x49, 3<<8, 0<<8), | |
5163 | UPDATE_COEF(0x4a, 3<<4, 3<<4), | |
5164 | UPDATE_COEF(0x63, 3<<14, 0), | |
5165 | UPDATE_COEF(0x67, 0xf000, 0x3000), | |
2ae95577 DH |
5166 | {} |
5167 | }; | |
6b0f95c4 | 5168 | static const struct coef_fw coef0255[] = { |
54db6c39 TI |
5169 | WRITE_COEF(0x45, 0xc089), |
5170 | WRITE_COEF(0x45, 0xc489), | |
5171 | WRITE_COEFEX(0x57, 0x03, 0x8ea6), | |
5172 | WRITE_COEF(0x49, 0x0049), | |
5173 | {} | |
5174 | }; | |
6b0f95c4 | 5175 | static const struct coef_fw coef0256[] = { |
717f43d8 KY |
5176 | WRITE_COEF(0x45, 0xc489), |
5177 | WRITE_COEFEX(0x57, 0x03, 0x0da3), | |
5178 | WRITE_COEF(0x49, 0x0049), | |
5179 | UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/ | |
5180 | WRITE_COEF(0x06, 0x6100), | |
5181 | {} | |
5182 | }; | |
6b0f95c4 | 5183 | static const struct coef_fw coef0233[] = { |
54db6c39 TI |
5184 | WRITE_COEF(0x06, 0x2100), |
5185 | WRITE_COEF(0x32, 0x4ea3), | |
5186 | {} | |
5187 | }; | |
6b0f95c4 | 5188 | static const struct coef_fw coef0288[] = { |
f3b70332 KY |
5189 | UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */ |
5190 | UPDATE_COEF(0x50, 0x2000, 0x2000), | |
5191 | UPDATE_COEF(0x56, 0x0006, 0x0006), | |
5192 | UPDATE_COEF(0x66, 0x0008, 0), | |
5193 | UPDATE_COEF(0x67, 0x2000, 0), | |
5194 | {} | |
5195 | }; | |
6b0f95c4 | 5196 | static const struct coef_fw coef0292[] = { |
54db6c39 TI |
5197 | WRITE_COEF(0x76, 0x000e), |
5198 | WRITE_COEF(0x6c, 0x2400), | |
5199 | WRITE_COEF(0x6b, 0xc429), | |
5200 | WRITE_COEF(0x18, 0x7308), | |
5201 | {} | |
5202 | }; | |
6b0f95c4 | 5203 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
5204 | UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */ |
5205 | WRITE_COEF(0x45, 0xC429), /* Set to TRS type */ | |
5206 | UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */ | |
5207 | {} | |
5208 | }; | |
6b0f95c4 | 5209 | static const struct coef_fw coef0688[] = { |
54db6c39 TI |
5210 | WRITE_COEF(0x11, 0x0041), |
5211 | WRITE_COEF(0x15, 0x0d40), | |
5212 | WRITE_COEF(0xb7, 0x802b), | |
5213 | {} | |
5214 | }; | |
6b0f95c4 | 5215 | static const struct coef_fw coef0274[] = { |
71683c32 KY |
5216 | WRITE_COEF(0x45, 0x4289), |
5217 | UPDATE_COEF(0x4a, 0x0010, 0x0010), | |
5218 | UPDATE_COEF(0x6b, 0x0f00, 0), | |
5219 | UPDATE_COEF(0x49, 0x0300, 0x0300), | |
5220 | {} | |
5221 | }; | |
54db6c39 | 5222 | |
7639a06c | 5223 | switch (codec->core.vendor_id) { |
c2b691ee | 5224 | case 0x10ec0215: |
2ae95577 | 5225 | case 0x10ec0225: |
c2b691ee | 5226 | case 0x10ec0285: |
7d727869 | 5227 | case 0x10ec0295: |
c2b691ee | 5228 | case 0x10ec0289: |
28f1f9b2 | 5229 | case 0x10ec0299: |
5a36767a | 5230 | alc_process_coef_fw(codec, alc225_pre_hsmode); |
2ae95577 DH |
5231 | alc_process_coef_fw(codec, coef0225); |
5232 | break; | |
9a22a8f5 | 5233 | case 0x10ec0255: |
54db6c39 | 5234 | alc_process_coef_fw(codec, coef0255); |
9a22a8f5 | 5235 | break; |
1948fc06 | 5236 | case 0x10ec0230: |
717f43d8 KY |
5237 | case 0x10ec0236: |
5238 | case 0x10ec0256: | |
527f4643 | 5239 | case 0x19e58326: |
717f43d8 KY |
5240 | alc_write_coef_idx(codec, 0x1b, 0x0e4b); |
5241 | alc_write_coef_idx(codec, 0x45, 0xc089); | |
5242 | msleep(50); | |
5243 | alc_process_coef_fw(codec, coef0256); | |
5244 | break; | |
71683c32 KY |
5245 | case 0x10ec0234: |
5246 | case 0x10ec0274: | |
5247 | case 0x10ec0294: | |
5248 | alc_process_coef_fw(codec, coef0274); | |
5249 | break; | |
13fd08a3 | 5250 | case 0x10ec0233: |
73bdd597 | 5251 | case 0x10ec0283: |
54db6c39 | 5252 | alc_process_coef_fw(codec, coef0233); |
73bdd597 | 5253 | break; |
f3b70332 KY |
5254 | case 0x10ec0286: |
5255 | case 0x10ec0288: | |
1a5bc8d9 | 5256 | case 0x10ec0298: |
f3b70332 KY |
5257 | alc_process_coef_fw(codec, coef0288); |
5258 | break; | |
73bdd597 | 5259 | case 0x10ec0292: |
54db6c39 | 5260 | alc_process_coef_fw(codec, coef0292); |
73bdd597 | 5261 | break; |
a22aa26f | 5262 | case 0x10ec0293: |
54db6c39 | 5263 | alc_process_coef_fw(codec, coef0293); |
a22aa26f | 5264 | break; |
73bdd597 | 5265 | case 0x10ec0668: |
54db6c39 | 5266 | alc_process_coef_fw(codec, coef0688); |
73bdd597 | 5267 | break; |
78f4f7c2 KY |
5268 | case 0x10ec0867: |
5269 | alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); | |
5270 | break; | |
73bdd597 | 5271 | } |
4e76a883 | 5272 | codec_dbg(codec, "Headset jack set to headphone (default) mode.\n"); |
73bdd597 DH |
5273 | } |
5274 | ||
5275 | /* Iphone type */ | |
5276 | static void alc_headset_mode_ctia(struct hda_codec *codec) | |
5277 | { | |
89542936 KY |
5278 | int val; |
5279 | ||
6b0f95c4 | 5280 | static const struct coef_fw coef0255[] = { |
54db6c39 TI |
5281 | WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */ |
5282 | WRITE_COEF(0x1b, 0x0c2b), | |
5283 | WRITE_COEFEX(0x57, 0x03, 0x8ea6), | |
5284 | {} | |
5285 | }; | |
6b0f95c4 | 5286 | static const struct coef_fw coef0256[] = { |
e69e7e03 | 5287 | WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */ |
717f43d8 | 5288 | WRITE_COEF(0x1b, 0x0e6b), |
e69e7e03 KY |
5289 | {} |
5290 | }; | |
6b0f95c4 | 5291 | static const struct coef_fw coef0233[] = { |
54db6c39 TI |
5292 | WRITE_COEF(0x45, 0xd429), |
5293 | WRITE_COEF(0x1b, 0x0c2b), | |
5294 | WRITE_COEF(0x32, 0x4ea3), | |
5295 | {} | |
5296 | }; | |
6b0f95c4 | 5297 | static const struct coef_fw coef0288[] = { |
f3b70332 KY |
5298 | UPDATE_COEF(0x50, 0x2000, 0x2000), |
5299 | UPDATE_COEF(0x56, 0x0006, 0x0006), | |
5300 | UPDATE_COEF(0x66, 0x0008, 0), | |
5301 | UPDATE_COEF(0x67, 0x2000, 0), | |
5302 | {} | |
5303 | }; | |
6b0f95c4 | 5304 | static const struct coef_fw coef0292[] = { |
54db6c39 TI |
5305 | WRITE_COEF(0x6b, 0xd429), |
5306 | WRITE_COEF(0x76, 0x0008), | |
5307 | WRITE_COEF(0x18, 0x7388), | |
5308 | {} | |
5309 | }; | |
6b0f95c4 | 5310 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
5311 | WRITE_COEF(0x45, 0xd429), /* Set to ctia type */ |
5312 | UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */ | |
5313 | {} | |
5314 | }; | |
6b0f95c4 | 5315 | static const struct coef_fw coef0688[] = { |
54db6c39 TI |
5316 | WRITE_COEF(0x11, 0x0001), |
5317 | WRITE_COEF(0x15, 0x0d60), | |
5318 | WRITE_COEF(0xc3, 0x0000), | |
5319 | {} | |
5320 | }; | |
6b0f95c4 | 5321 | static const struct coef_fw coef0225_1[] = { |
4cc9b9d6 | 5322 | UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10), |
5a36767a KY |
5323 | UPDATE_COEF(0x63, 3<<14, 2<<14), |
5324 | {} | |
5325 | }; | |
6b0f95c4 | 5326 | static const struct coef_fw coef0225_2[] = { |
5a36767a KY |
5327 | UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10), |
5328 | UPDATE_COEF(0x63, 3<<14, 1<<14), | |
4cc9b9d6 KY |
5329 | {} |
5330 | }; | |
54db6c39 | 5331 | |
7639a06c | 5332 | switch (codec->core.vendor_id) { |
9a22a8f5 | 5333 | case 0x10ec0255: |
54db6c39 | 5334 | alc_process_coef_fw(codec, coef0255); |
9a22a8f5 | 5335 | break; |
1948fc06 | 5336 | case 0x10ec0230: |
736f20a7 | 5337 | case 0x10ec0236: |
e69e7e03 | 5338 | case 0x10ec0256: |
527f4643 | 5339 | case 0x19e58326: |
e69e7e03 KY |
5340 | alc_process_coef_fw(codec, coef0256); |
5341 | break; | |
71683c32 KY |
5342 | case 0x10ec0234: |
5343 | case 0x10ec0274: | |
5344 | case 0x10ec0294: | |
5345 | alc_write_coef_idx(codec, 0x45, 0xd689); | |
5346 | break; | |
13fd08a3 | 5347 | case 0x10ec0233: |
73bdd597 | 5348 | case 0x10ec0283: |
54db6c39 | 5349 | alc_process_coef_fw(codec, coef0233); |
73bdd597 | 5350 | break; |
1a5bc8d9 | 5351 | case 0x10ec0298: |
89542936 KY |
5352 | val = alc_read_coef_idx(codec, 0x50); |
5353 | if (val & (1 << 12)) { | |
5354 | alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020); | |
5355 | alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400); | |
5356 | msleep(300); | |
5357 | } else { | |
5358 | alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010); | |
5359 | alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400); | |
5360 | msleep(300); | |
5361 | } | |
5362 | break; | |
f3b70332 KY |
5363 | case 0x10ec0286: |
5364 | case 0x10ec0288: | |
5365 | alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400); | |
5366 | msleep(300); | |
5367 | alc_process_coef_fw(codec, coef0288); | |
5368 | break; | |
73bdd597 | 5369 | case 0x10ec0292: |
54db6c39 | 5370 | alc_process_coef_fw(codec, coef0292); |
73bdd597 | 5371 | break; |
a22aa26f | 5372 | case 0x10ec0293: |
54db6c39 | 5373 | alc_process_coef_fw(codec, coef0293); |
a22aa26f | 5374 | break; |
73bdd597 | 5375 | case 0x10ec0668: |
54db6c39 | 5376 | alc_process_coef_fw(codec, coef0688); |
73bdd597 | 5377 | break; |
c2b691ee | 5378 | case 0x10ec0215: |
4cc9b9d6 | 5379 | case 0x10ec0225: |
c2b691ee | 5380 | case 0x10ec0285: |
7d727869 | 5381 | case 0x10ec0295: |
c2b691ee | 5382 | case 0x10ec0289: |
28f1f9b2 | 5383 | case 0x10ec0299: |
5a36767a KY |
5384 | val = alc_read_coef_idx(codec, 0x45); |
5385 | if (val & (1 << 9)) | |
5386 | alc_process_coef_fw(codec, coef0225_2); | |
5387 | else | |
5388 | alc_process_coef_fw(codec, coef0225_1); | |
4cc9b9d6 | 5389 | break; |
78f4f7c2 KY |
5390 | case 0x10ec0867: |
5391 | alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); | |
5392 | break; | |
73bdd597 | 5393 | } |
4e76a883 | 5394 | codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n"); |
73bdd597 DH |
5395 | } |
5396 | ||
5397 | /* Nokia type */ | |
5398 | static void alc_headset_mode_omtp(struct hda_codec *codec) | |
5399 | { | |
6b0f95c4 | 5400 | static const struct coef_fw coef0255[] = { |
54db6c39 TI |
5401 | WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */ |
5402 | WRITE_COEF(0x1b, 0x0c2b), | |
5403 | WRITE_COEFEX(0x57, 0x03, 0x8ea6), | |
5404 | {} | |
5405 | }; | |
6b0f95c4 | 5406 | static const struct coef_fw coef0256[] = { |
e69e7e03 | 5407 | WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */ |
717f43d8 | 5408 | WRITE_COEF(0x1b, 0x0e6b), |
e69e7e03 KY |
5409 | {} |
5410 | }; | |
6b0f95c4 | 5411 | static const struct coef_fw coef0233[] = { |
54db6c39 TI |
5412 | WRITE_COEF(0x45, 0xe429), |
5413 | WRITE_COEF(0x1b, 0x0c2b), | |
5414 | WRITE_COEF(0x32, 0x4ea3), | |
5415 | {} | |
5416 | }; | |
6b0f95c4 | 5417 | static const struct coef_fw coef0288[] = { |
f3b70332 KY |
5418 | UPDATE_COEF(0x50, 0x2000, 0x2000), |
5419 | UPDATE_COEF(0x56, 0x0006, 0x0006), | |
5420 | UPDATE_COEF(0x66, 0x0008, 0), | |
5421 | UPDATE_COEF(0x67, 0x2000, 0), | |
5422 | {} | |
5423 | }; | |
6b0f95c4 | 5424 | static const struct coef_fw coef0292[] = { |
54db6c39 TI |
5425 | WRITE_COEF(0x6b, 0xe429), |
5426 | WRITE_COEF(0x76, 0x0008), | |
5427 | WRITE_COEF(0x18, 0x7388), | |
5428 | {} | |
5429 | }; | |
6b0f95c4 | 5430 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
5431 | WRITE_COEF(0x45, 0xe429), /* Set to omtp type */ |
5432 | UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */ | |
5433 | {} | |
5434 | }; | |
6b0f95c4 | 5435 | static const struct coef_fw coef0688[] = { |
54db6c39 TI |
5436 | WRITE_COEF(0x11, 0x0001), |
5437 | WRITE_COEF(0x15, 0x0d50), | |
5438 | WRITE_COEF(0xc3, 0x0000), | |
5439 | {} | |
5440 | }; | |
6b0f95c4 | 5441 | static const struct coef_fw coef0225[] = { |
4cc9b9d6 | 5442 | UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10), |
5a36767a | 5443 | UPDATE_COEF(0x63, 3<<14, 2<<14), |
4cc9b9d6 KY |
5444 | {} |
5445 | }; | |
54db6c39 | 5446 | |
7639a06c | 5447 | switch (codec->core.vendor_id) { |
9a22a8f5 | 5448 | case 0x10ec0255: |
54db6c39 | 5449 | alc_process_coef_fw(codec, coef0255); |
9a22a8f5 | 5450 | break; |
1948fc06 | 5451 | case 0x10ec0230: |
736f20a7 | 5452 | case 0x10ec0236: |
e69e7e03 | 5453 | case 0x10ec0256: |
527f4643 | 5454 | case 0x19e58326: |
e69e7e03 KY |
5455 | alc_process_coef_fw(codec, coef0256); |
5456 | break; | |
71683c32 KY |
5457 | case 0x10ec0234: |
5458 | case 0x10ec0274: | |
5459 | case 0x10ec0294: | |
5460 | alc_write_coef_idx(codec, 0x45, 0xe689); | |
5461 | break; | |
13fd08a3 | 5462 | case 0x10ec0233: |
73bdd597 | 5463 | case 0x10ec0283: |
54db6c39 | 5464 | alc_process_coef_fw(codec, coef0233); |
73bdd597 | 5465 | break; |
1a5bc8d9 KY |
5466 | case 0x10ec0298: |
5467 | alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */ | |
89542936 KY |
5468 | alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400); |
5469 | msleep(300); | |
5470 | break; | |
f3b70332 KY |
5471 | case 0x10ec0286: |
5472 | case 0x10ec0288: | |
5473 | alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400); | |
5474 | msleep(300); | |
5475 | alc_process_coef_fw(codec, coef0288); | |
5476 | break; | |
73bdd597 | 5477 | case 0x10ec0292: |
54db6c39 | 5478 | alc_process_coef_fw(codec, coef0292); |
73bdd597 | 5479 | break; |
a22aa26f | 5480 | case 0x10ec0293: |
54db6c39 | 5481 | alc_process_coef_fw(codec, coef0293); |
a22aa26f | 5482 | break; |
73bdd597 | 5483 | case 0x10ec0668: |
54db6c39 | 5484 | alc_process_coef_fw(codec, coef0688); |
73bdd597 | 5485 | break; |
c2b691ee | 5486 | case 0x10ec0215: |
4cc9b9d6 | 5487 | case 0x10ec0225: |
c2b691ee | 5488 | case 0x10ec0285: |
7d727869 | 5489 | case 0x10ec0295: |
c2b691ee | 5490 | case 0x10ec0289: |
28f1f9b2 | 5491 | case 0x10ec0299: |
4cc9b9d6 KY |
5492 | alc_process_coef_fw(codec, coef0225); |
5493 | break; | |
73bdd597 | 5494 | } |
4e76a883 | 5495 | codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n"); |
73bdd597 DH |
5496 | } |
5497 | ||
5498 | static void alc_determine_headset_type(struct hda_codec *codec) | |
5499 | { | |
5500 | int val; | |
5501 | bool is_ctia = false; | |
5502 | struct alc_spec *spec = codec->spec; | |
6b0f95c4 | 5503 | static const struct coef_fw coef0255[] = { |
54db6c39 TI |
5504 | WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/ |
5505 | WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref | |
5506 | conteol) */ | |
5507 | {} | |
5508 | }; | |
6b0f95c4 | 5509 | static const struct coef_fw coef0288[] = { |
f3b70332 KY |
5510 | UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */ |
5511 | {} | |
5512 | }; | |
6b0f95c4 | 5513 | static const struct coef_fw coef0298[] = { |
89542936 KY |
5514 | UPDATE_COEF(0x50, 0x2000, 0x2000), |
5515 | UPDATE_COEF(0x56, 0x0006, 0x0006), | |
5516 | UPDATE_COEF(0x66, 0x0008, 0), | |
5517 | UPDATE_COEF(0x67, 0x2000, 0), | |
5518 | UPDATE_COEF(0x19, 0x1300, 0x1300), | |
5519 | {} | |
5520 | }; | |
6b0f95c4 | 5521 | static const struct coef_fw coef0293[] = { |
54db6c39 TI |
5522 | UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */ |
5523 | WRITE_COEF(0x45, 0xD429), /* Set to ctia type */ | |
5524 | {} | |
5525 | }; | |
6b0f95c4 | 5526 | static const struct coef_fw coef0688[] = { |
54db6c39 TI |
5527 | WRITE_COEF(0x11, 0x0001), |
5528 | WRITE_COEF(0xb7, 0x802b), | |
5529 | WRITE_COEF(0x15, 0x0d60), | |
5530 | WRITE_COEF(0xc3, 0x0c00), | |
5531 | {} | |
5532 | }; | |
6b0f95c4 | 5533 | static const struct coef_fw coef0274[] = { |
71683c32 KY |
5534 | UPDATE_COEF(0x4a, 0x0010, 0), |
5535 | UPDATE_COEF(0x4a, 0x8000, 0), | |
5536 | WRITE_COEF(0x45, 0xd289), | |
5537 | UPDATE_COEF(0x49, 0x0300, 0x0300), | |
5538 | {} | |
5539 | }; | |
73bdd597 | 5540 | |
92666d45 KY |
5541 | if (spec->no_internal_mic_pin) { |
5542 | alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12); | |
5543 | return; | |
5544 | } | |
5545 | ||
7639a06c | 5546 | switch (codec->core.vendor_id) { |
9a22a8f5 | 5547 | case 0x10ec0255: |
717f43d8 KY |
5548 | alc_process_coef_fw(codec, coef0255); |
5549 | msleep(300); | |
5550 | val = alc_read_coef_idx(codec, 0x46); | |
5551 | is_ctia = (val & 0x0070) == 0x0070; | |
5552 | break; | |
1948fc06 | 5553 | case 0x10ec0230: |
717f43d8 | 5554 | case 0x10ec0236: |
7081adf3 | 5555 | case 0x10ec0256: |
527f4643 | 5556 | case 0x19e58326: |
717f43d8 KY |
5557 | alc_write_coef_idx(codec, 0x1b, 0x0e4b); |
5558 | alc_write_coef_idx(codec, 0x06, 0x6104); | |
5559 | alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3); | |
5560 | ||
5561 | snd_hda_codec_write(codec, 0x21, 0, | |
5562 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
5563 | msleep(80); | |
5564 | snd_hda_codec_write(codec, 0x21, 0, | |
5565 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
5566 | ||
54db6c39 | 5567 | alc_process_coef_fw(codec, coef0255); |
9a22a8f5 KY |
5568 | msleep(300); |
5569 | val = alc_read_coef_idx(codec, 0x46); | |
5570 | is_ctia = (val & 0x0070) == 0x0070; | |
717f43d8 KY |
5571 | |
5572 | alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3); | |
5573 | alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); | |
5574 | ||
5575 | snd_hda_codec_write(codec, 0x21, 0, | |
5576 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
5577 | msleep(80); | |
5578 | snd_hda_codec_write(codec, 0x21, 0, | |
5579 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE); | |
9a22a8f5 | 5580 | break; |
71683c32 KY |
5581 | case 0x10ec0234: |
5582 | case 0x10ec0274: | |
5583 | case 0x10ec0294: | |
5584 | alc_process_coef_fw(codec, coef0274); | |
febf2256 | 5585 | msleep(850); |
71683c32 KY |
5586 | val = alc_read_coef_idx(codec, 0x46); |
5587 | is_ctia = (val & 0x00f0) == 0x00f0; | |
5588 | break; | |
13fd08a3 | 5589 | case 0x10ec0233: |
73bdd597 DH |
5590 | case 0x10ec0283: |
5591 | alc_write_coef_idx(codec, 0x45, 0xd029); | |
5592 | msleep(300); | |
5593 | val = alc_read_coef_idx(codec, 0x46); | |
5594 | is_ctia = (val & 0x0070) == 0x0070; | |
5595 | break; | |
1a5bc8d9 | 5596 | case 0x10ec0298: |
89542936 KY |
5597 | snd_hda_codec_write(codec, 0x21, 0, |
5598 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
5599 | msleep(100); | |
5600 | snd_hda_codec_write(codec, 0x21, 0, | |
5601 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
5602 | msleep(200); | |
5603 | ||
5604 | val = alc_read_coef_idx(codec, 0x50); | |
5605 | if (val & (1 << 12)) { | |
5606 | alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020); | |
5607 | alc_process_coef_fw(codec, coef0288); | |
5608 | msleep(350); | |
5609 | val = alc_read_coef_idx(codec, 0x50); | |
5610 | is_ctia = (val & 0x0070) == 0x0070; | |
5611 | } else { | |
5612 | alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010); | |
5613 | alc_process_coef_fw(codec, coef0288); | |
5614 | msleep(350); | |
5615 | val = alc_read_coef_idx(codec, 0x50); | |
5616 | is_ctia = (val & 0x0070) == 0x0070; | |
5617 | } | |
5618 | alc_process_coef_fw(codec, coef0298); | |
5619 | snd_hda_codec_write(codec, 0x21, 0, | |
5620 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP); | |
5621 | msleep(75); | |
5622 | snd_hda_codec_write(codec, 0x21, 0, | |
5623 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE); | |
5624 | break; | |
f3b70332 KY |
5625 | case 0x10ec0286: |
5626 | case 0x10ec0288: | |
5627 | alc_process_coef_fw(codec, coef0288); | |
5628 | msleep(350); | |
5629 | val = alc_read_coef_idx(codec, 0x50); | |
5630 | is_ctia = (val & 0x0070) == 0x0070; | |
5631 | break; | |
73bdd597 DH |
5632 | case 0x10ec0292: |
5633 | alc_write_coef_idx(codec, 0x6b, 0xd429); | |
5634 | msleep(300); | |
5635 | val = alc_read_coef_idx(codec, 0x6c); | |
5636 | is_ctia = (val & 0x001c) == 0x001c; | |
5637 | break; | |
a22aa26f | 5638 | case 0x10ec0293: |
54db6c39 | 5639 | alc_process_coef_fw(codec, coef0293); |
a22aa26f KY |
5640 | msleep(300); |
5641 | val = alc_read_coef_idx(codec, 0x46); | |
5642 | is_ctia = (val & 0x0070) == 0x0070; | |
5643 | break; | |
73bdd597 | 5644 | case 0x10ec0668: |
54db6c39 | 5645 | alc_process_coef_fw(codec, coef0688); |
73bdd597 DH |
5646 | msleep(300); |
5647 | val = alc_read_coef_idx(codec, 0xbe); | |
5648 | is_ctia = (val & 0x1c02) == 0x1c02; | |
5649 | break; | |
c2b691ee | 5650 | case 0x10ec0215: |
4cc9b9d6 | 5651 | case 0x10ec0225: |
c2b691ee | 5652 | case 0x10ec0285: |
7d727869 | 5653 | case 0x10ec0295: |
c2b691ee | 5654 | case 0x10ec0289: |
28f1f9b2 | 5655 | case 0x10ec0299: |
da911b1f KY |
5656 | snd_hda_codec_write(codec, 0x21, 0, |
5657 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
5658 | msleep(80); | |
5659 | snd_hda_codec_write(codec, 0x21, 0, | |
5660 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); | |
5661 | ||
5a36767a KY |
5662 | alc_process_coef_fw(codec, alc225_pre_hsmode); |
5663 | alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000); | |
5664 | val = alc_read_coef_idx(codec, 0x45); | |
5665 | if (val & (1 << 9)) { | |
5666 | alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10); | |
5667 | alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8); | |
5668 | msleep(800); | |
5669 | val = alc_read_coef_idx(codec, 0x46); | |
5670 | is_ctia = (val & 0x00f0) == 0x00f0; | |
5671 | } else { | |
5672 | alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10); | |
5673 | alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8); | |
5674 | msleep(800); | |
5675 | val = alc_read_coef_idx(codec, 0x46); | |
5676 | is_ctia = (val & 0x00f0) == 0x00f0; | |
5677 | } | |
5678 | alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6); | |
5679 | alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4); | |
5680 | alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000); | |
da911b1f KY |
5681 | |
5682 | snd_hda_codec_write(codec, 0x21, 0, | |
5683 | AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); | |
5684 | msleep(80); | |
5685 | snd_hda_codec_write(codec, 0x21, 0, | |
5686 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE); | |
4cc9b9d6 | 5687 | break; |
78f4f7c2 KY |
5688 | case 0x10ec0867: |
5689 | is_ctia = true; | |
5690 | break; | |
73bdd597 DH |
5691 | } |
5692 | ||
4e76a883 | 5693 | codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n", |
73bdd597 DH |
5694 | is_ctia ? "yes" : "no"); |
5695 | spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP; | |
5696 | } | |
5697 | ||
5698 | static void alc_update_headset_mode(struct hda_codec *codec) | |
5699 | { | |
5700 | struct alc_spec *spec = codec->spec; | |
5701 | ||
5702 | hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]]; | |
35a39f98 | 5703 | hda_nid_t hp_pin = alc_get_hp_pin(spec); |
73bdd597 DH |
5704 | |
5705 | int new_headset_mode; | |
5706 | ||
5707 | if (!snd_hda_jack_detect(codec, hp_pin)) | |
5708 | new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED; | |
5709 | else if (mux_pin == spec->headset_mic_pin) | |
5710 | new_headset_mode = ALC_HEADSET_MODE_HEADSET; | |
5711 | else if (mux_pin == spec->headphone_mic_pin) | |
5712 | new_headset_mode = ALC_HEADSET_MODE_MIC; | |
5713 | else | |
5714 | new_headset_mode = ALC_HEADSET_MODE_HEADPHONE; | |
5715 | ||
5959a6bc DH |
5716 | if (new_headset_mode == spec->current_headset_mode) { |
5717 | snd_hda_gen_update_outputs(codec); | |
73bdd597 | 5718 | return; |
5959a6bc | 5719 | } |
73bdd597 DH |
5720 | |
5721 | switch (new_headset_mode) { | |
5722 | case ALC_HEADSET_MODE_UNPLUGGED: | |
5723 | alc_headset_mode_unplugged(codec); | |
aeac1a0d KY |
5724 | spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN; |
5725 | spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN; | |
73bdd597 DH |
5726 | spec->gen.hp_jack_present = false; |
5727 | break; | |
5728 | case ALC_HEADSET_MODE_HEADSET: | |
5729 | if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN) | |
5730 | alc_determine_headset_type(codec); | |
5731 | if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA) | |
5732 | alc_headset_mode_ctia(codec); | |
5733 | else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP) | |
5734 | alc_headset_mode_omtp(codec); | |
5735 | spec->gen.hp_jack_present = true; | |
5736 | break; | |
5737 | case ALC_HEADSET_MODE_MIC: | |
5738 | alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin); | |
5739 | spec->gen.hp_jack_present = false; | |
5740 | break; | |
5741 | case ALC_HEADSET_MODE_HEADPHONE: | |
5742 | alc_headset_mode_default(codec); | |
5743 | spec->gen.hp_jack_present = true; | |
5744 | break; | |
5745 | } | |
5746 | if (new_headset_mode != ALC_HEADSET_MODE_MIC) { | |
5747 | snd_hda_set_pin_ctl_cache(codec, hp_pin, | |
5748 | AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); | |
1f8b46cd | 5749 | if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin) |
73bdd597 DH |
5750 | snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin, |
5751 | PIN_VREFHIZ); | |
5752 | } | |
5753 | spec->current_headset_mode = new_headset_mode; | |
5754 | ||
5755 | snd_hda_gen_update_outputs(codec); | |
5756 | } | |
5757 | ||
5758 | static void alc_update_headset_mode_hook(struct hda_codec *codec, | |
7fe30711 TI |
5759 | struct snd_kcontrol *kcontrol, |
5760 | struct snd_ctl_elem_value *ucontrol) | |
73bdd597 DH |
5761 | { |
5762 | alc_update_headset_mode(codec); | |
5763 | } | |
5764 | ||
1a4f69d5 TI |
5765 | static void alc_update_headset_jack_cb(struct hda_codec *codec, |
5766 | struct hda_jack_callback *jack) | |
73bdd597 | 5767 | { |
73bdd597 | 5768 | snd_hda_gen_hp_automute(codec, jack); |
e54f30be | 5769 | alc_update_headset_mode(codec); |
73bdd597 DH |
5770 | } |
5771 | ||
5772 | static void alc_probe_headset_mode(struct hda_codec *codec) | |
5773 | { | |
5774 | int i; | |
5775 | struct alc_spec *spec = codec->spec; | |
5776 | struct auto_pin_cfg *cfg = &spec->gen.autocfg; | |
5777 | ||
5778 | /* Find mic pins */ | |
5779 | for (i = 0; i < cfg->num_inputs; i++) { | |
5780 | if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin) | |
5781 | spec->headset_mic_pin = cfg->inputs[i].pin; | |
5782 | if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin) | |
5783 | spec->headphone_mic_pin = cfg->inputs[i].pin; | |
5784 | } | |
5785 | ||
0bed2aa3 | 5786 | WARN_ON(spec->gen.cap_sync_hook); |
73bdd597 DH |
5787 | spec->gen.cap_sync_hook = alc_update_headset_mode_hook; |
5788 | spec->gen.automute_hook = alc_update_headset_mode; | |
5789 | spec->gen.hp_automute_hook = alc_update_headset_jack_cb; | |
5790 | } | |
5791 | ||
5792 | static void alc_fixup_headset_mode(struct hda_codec *codec, | |
5793 | const struct hda_fixup *fix, int action) | |
5794 | { | |
5795 | struct alc_spec *spec = codec->spec; | |
5796 | ||
5797 | switch (action) { | |
5798 | case HDA_FIXUP_ACT_PRE_PROBE: | |
5799 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC; | |
5800 | break; | |
5801 | case HDA_FIXUP_ACT_PROBE: | |
5802 | alc_probe_headset_mode(codec); | |
5803 | break; | |
5804 | case HDA_FIXUP_ACT_INIT: | |
aeac1a0d KY |
5805 | if (is_s3_resume(codec) || is_s4_resume(codec)) { |
5806 | spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN; | |
5807 | spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN; | |
5808 | } | |
73bdd597 DH |
5809 | alc_update_headset_mode(codec); |
5810 | break; | |
5811 | } | |
5812 | } | |
5813 | ||
5814 | static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec, | |
5815 | const struct hda_fixup *fix, int action) | |
5816 | { | |
5817 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5818 | struct alc_spec *spec = codec->spec; | |
5819 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
5820 | } | |
5821 | else | |
5822 | alc_fixup_headset_mode(codec, fix, action); | |
5823 | } | |
5824 | ||
31278997 KY |
5825 | static void alc255_set_default_jack_type(struct hda_codec *codec) |
5826 | { | |
5827 | /* Set to iphone type */ | |
6b0f95c4 | 5828 | static const struct coef_fw alc255fw[] = { |
54db6c39 TI |
5829 | WRITE_COEF(0x1b, 0x880b), |
5830 | WRITE_COEF(0x45, 0xd089), | |
5831 | WRITE_COEF(0x1b, 0x080b), | |
5832 | WRITE_COEF(0x46, 0x0004), | |
5833 | WRITE_COEF(0x1b, 0x0c0b), | |
5834 | {} | |
5835 | }; | |
6b0f95c4 | 5836 | static const struct coef_fw alc256fw[] = { |
e69e7e03 KY |
5837 | WRITE_COEF(0x1b, 0x884b), |
5838 | WRITE_COEF(0x45, 0xd089), | |
5839 | WRITE_COEF(0x1b, 0x084b), | |
5840 | WRITE_COEF(0x46, 0x0004), | |
5841 | WRITE_COEF(0x1b, 0x0c4b), | |
5842 | {} | |
5843 | }; | |
5844 | switch (codec->core.vendor_id) { | |
5845 | case 0x10ec0255: | |
5846 | alc_process_coef_fw(codec, alc255fw); | |
5847 | break; | |
1948fc06 | 5848 | case 0x10ec0230: |
736f20a7 | 5849 | case 0x10ec0236: |
e69e7e03 | 5850 | case 0x10ec0256: |
527f4643 | 5851 | case 0x19e58326: |
e69e7e03 KY |
5852 | alc_process_coef_fw(codec, alc256fw); |
5853 | break; | |
5854 | } | |
31278997 KY |
5855 | msleep(30); |
5856 | } | |
5857 | ||
9a22a8f5 KY |
5858 | static void alc_fixup_headset_mode_alc255(struct hda_codec *codec, |
5859 | const struct hda_fixup *fix, int action) | |
5860 | { | |
5861 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
31278997 | 5862 | alc255_set_default_jack_type(codec); |
9a22a8f5 KY |
5863 | } |
5864 | alc_fixup_headset_mode(codec, fix, action); | |
5865 | } | |
5866 | ||
31278997 KY |
5867 | static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec, |
5868 | const struct hda_fixup *fix, int action) | |
5869 | { | |
5870 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5871 | struct alc_spec *spec = codec->spec; | |
5872 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
5873 | alc255_set_default_jack_type(codec); | |
5874 | } | |
5875 | else | |
5876 | alc_fixup_headset_mode(codec, fix, action); | |
5877 | } | |
5878 | ||
e1e62b98 KY |
5879 | static void alc288_update_headset_jack_cb(struct hda_codec *codec, |
5880 | struct hda_jack_callback *jack) | |
5881 | { | |
5882 | struct alc_spec *spec = codec->spec; | |
e1e62b98 KY |
5883 | |
5884 | alc_update_headset_jack_cb(codec, jack); | |
5885 | /* Headset Mic enable or disable, only for Dell Dino */ | |
d44a6864 | 5886 | alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present); |
e1e62b98 KY |
5887 | } |
5888 | ||
5889 | static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec, | |
5890 | const struct hda_fixup *fix, int action) | |
5891 | { | |
5892 | alc_fixup_headset_mode(codec, fix, action); | |
5893 | if (action == HDA_FIXUP_ACT_PROBE) { | |
5894 | struct alc_spec *spec = codec->spec; | |
d44a6864 TI |
5895 | /* toggled via hp_automute_hook */ |
5896 | spec->gpio_mask |= 0x40; | |
5897 | spec->gpio_dir |= 0x40; | |
e1e62b98 KY |
5898 | spec->gen.hp_automute_hook = alc288_update_headset_jack_cb; |
5899 | } | |
5900 | } | |
5901 | ||
493a52a9 HW |
5902 | static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec, |
5903 | const struct hda_fixup *fix, int action) | |
5904 | { | |
5905 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5906 | struct alc_spec *spec = codec->spec; | |
5907 | spec->gen.auto_mute_via_amp = 1; | |
5908 | } | |
5909 | } | |
5910 | ||
9b745ab8 TI |
5911 | static void alc_fixup_no_shutup(struct hda_codec *codec, |
5912 | const struct hda_fixup *fix, int action) | |
5913 | { | |
efe55732 | 5914 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
9b745ab8 | 5915 | struct alc_spec *spec = codec->spec; |
c0ca5ece | 5916 | spec->no_shutup_pins = 1; |
9b745ab8 TI |
5917 | } |
5918 | } | |
5919 | ||
5e6db669 GM |
5920 | static void alc_fixup_disable_aamix(struct hda_codec *codec, |
5921 | const struct hda_fixup *fix, int action) | |
5922 | { | |
5923 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5924 | struct alc_spec *spec = codec->spec; | |
5925 | /* Disable AA-loopback as it causes white noise */ | |
5926 | spec->gen.mixer_nid = 0; | |
5927 | } | |
5928 | } | |
5929 | ||
7f57d803 TI |
5930 | /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */ |
5931 | static void alc_fixup_tpt440_dock(struct hda_codec *codec, | |
5932 | const struct hda_fixup *fix, int action) | |
5933 | { | |
5934 | static const struct hda_pintbl pincfgs[] = { | |
5935 | { 0x16, 0x21211010 }, /* dock headphone */ | |
5936 | { 0x19, 0x21a11010 }, /* dock mic */ | |
5937 | { } | |
5938 | }; | |
5939 | struct alc_spec *spec = codec->spec; | |
5940 | ||
5941 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5942 | spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; | |
5943 | codec->power_save_node = 0; /* avoid click noises */ | |
5944 | snd_hda_apply_pincfgs(codec, pincfgs); | |
5945 | } | |
5946 | } | |
5947 | ||
61fcf8ec KY |
5948 | static void alc_fixup_tpt470_dock(struct hda_codec *codec, |
5949 | const struct hda_fixup *fix, int action) | |
5950 | { | |
5951 | static const struct hda_pintbl pincfgs[] = { | |
5952 | { 0x17, 0x21211010 }, /* dock headphone */ | |
5953 | { 0x19, 0x21a11010 }, /* dock mic */ | |
5954 | { } | |
5955 | }; | |
5956 | struct alc_spec *spec = codec->spec; | |
5957 | ||
5958 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
5959 | spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; | |
71db96dd TI |
5960 | snd_hda_apply_pincfgs(codec, pincfgs); |
5961 | } else if (action == HDA_FIXUP_ACT_INIT) { | |
61fcf8ec KY |
5962 | /* Enable DOCK device */ |
5963 | snd_hda_codec_write(codec, 0x17, 0, | |
5964 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0); | |
5965 | /* Enable DOCK device */ | |
5966 | snd_hda_codec_write(codec, 0x19, 0, | |
5967 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0); | |
61fcf8ec KY |
5968 | } |
5969 | } | |
5970 | ||
399c01aa TI |
5971 | static void alc_fixup_tpt470_dacs(struct hda_codec *codec, |
5972 | const struct hda_fixup *fix, int action) | |
5973 | { | |
5974 | /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise | |
5975 | * the speaker output becomes too low by some reason on Thinkpads with | |
5976 | * ALC298 codec | |
5977 | */ | |
5978 | static const hda_nid_t preferred_pairs[] = { | |
5979 | 0x14, 0x03, 0x17, 0x02, 0x21, 0x02, | |
5980 | 0 | |
5981 | }; | |
5982 | struct alc_spec *spec = codec->spec; | |
5983 | ||
5984 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
5985 | spec->gen.preferred_dacs = preferred_pairs; | |
5986 | } | |
5987 | ||
8eedd3a7 TI |
5988 | static void alc295_fixup_asus_dacs(struct hda_codec *codec, |
5989 | const struct hda_fixup *fix, int action) | |
5990 | { | |
5991 | static const hda_nid_t preferred_pairs[] = { | |
5992 | 0x17, 0x02, 0x21, 0x03, 0 | |
5993 | }; | |
5994 | struct alc_spec *spec = codec->spec; | |
5995 | ||
5996 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
5997 | spec->gen.preferred_dacs = preferred_pairs; | |
5998 | } | |
5999 | ||
9476d369 | 6000 | static void alc_shutup_dell_xps13(struct hda_codec *codec) |
033b0a7c GM |
6001 | { |
6002 | struct alc_spec *spec = codec->spec; | |
35a39f98 | 6003 | int hp_pin = alc_get_hp_pin(spec); |
033b0a7c | 6004 | |
9476d369 GM |
6005 | /* Prevent pop noises when headphones are plugged in */ |
6006 | snd_hda_codec_write(codec, hp_pin, 0, | |
6007 | AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); | |
6008 | msleep(20); | |
033b0a7c GM |
6009 | } |
6010 | ||
6011 | static void alc_fixup_dell_xps13(struct hda_codec *codec, | |
6012 | const struct hda_fixup *fix, int action) | |
6013 | { | |
3e1b0c4a TI |
6014 | struct alc_spec *spec = codec->spec; |
6015 | struct hda_input_mux *imux = &spec->gen.input_mux; | |
6016 | int i; | |
f38663ab | 6017 | |
3e1b0c4a TI |
6018 | switch (action) { |
6019 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6020 | /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise | |
6021 | * it causes a click noise at start up | |
6022 | */ | |
6023 | snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ); | |
efe55732 | 6024 | spec->shutup = alc_shutup_dell_xps13; |
3e1b0c4a TI |
6025 | break; |
6026 | case HDA_FIXUP_ACT_PROBE: | |
f38663ab GM |
6027 | /* Make the internal mic the default input source. */ |
6028 | for (i = 0; i < imux->num_items; i++) { | |
6029 | if (spec->gen.imux_pins[i] == 0x12) { | |
6030 | spec->gen.cur_mux[0] = i; | |
6031 | break; | |
6032 | } | |
6033 | } | |
3e1b0c4a | 6034 | break; |
033b0a7c GM |
6035 | } |
6036 | } | |
6037 | ||
1f8b46cd DH |
6038 | static void alc_fixup_headset_mode_alc662(struct hda_codec *codec, |
6039 | const struct hda_fixup *fix, int action) | |
6040 | { | |
6041 | struct alc_spec *spec = codec->spec; | |
6042 | ||
6043 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
6044 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
6045 | spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */ | |
b40eda64 DH |
6046 | |
6047 | /* Disable boost for mic-in permanently. (This code is only called | |
6048 | from quirks that guarantee that the headphone is at NID 0x1b.) */ | |
6049 | snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000); | |
6050 | snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP); | |
1f8b46cd DH |
6051 | } else |
6052 | alc_fixup_headset_mode(codec, fix, action); | |
6053 | } | |
6054 | ||
73bdd597 DH |
6055 | static void alc_fixup_headset_mode_alc668(struct hda_codec *codec, |
6056 | const struct hda_fixup *fix, int action) | |
6057 | { | |
6058 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
73bdd597 | 6059 | alc_write_coef_idx(codec, 0xc4, 0x8000); |
98b24883 | 6060 | alc_update_coef_idx(codec, 0xc2, ~0xfe, 0); |
73bdd597 DH |
6061 | snd_hda_set_pin_ctl_cache(codec, 0x18, 0); |
6062 | } | |
6063 | alc_fixup_headset_mode(codec, fix, action); | |
6064 | } | |
6065 | ||
bde7bc60 CCC |
6066 | /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */ |
6067 | static int find_ext_mic_pin(struct hda_codec *codec) | |
6068 | { | |
6069 | struct alc_spec *spec = codec->spec; | |
6070 | struct auto_pin_cfg *cfg = &spec->gen.autocfg; | |
6071 | hda_nid_t nid; | |
6072 | unsigned int defcfg; | |
6073 | int i; | |
6074 | ||
6075 | for (i = 0; i < cfg->num_inputs; i++) { | |
6076 | if (cfg->inputs[i].type != AUTO_PIN_MIC) | |
6077 | continue; | |
6078 | nid = cfg->inputs[i].pin; | |
6079 | defcfg = snd_hda_codec_get_pincfg(codec, nid); | |
6080 | if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT) | |
6081 | continue; | |
6082 | return nid; | |
6083 | } | |
6084 | ||
6085 | return 0; | |
6086 | } | |
6087 | ||
08a978db | 6088 | static void alc271_hp_gate_mic_jack(struct hda_codec *codec, |
1727a771 | 6089 | const struct hda_fixup *fix, |
08a978db DR |
6090 | int action) |
6091 | { | |
6092 | struct alc_spec *spec = codec->spec; | |
6093 | ||
0db75790 | 6094 | if (action == HDA_FIXUP_ACT_PROBE) { |
bde7bc60 | 6095 | int mic_pin = find_ext_mic_pin(codec); |
35a39f98 | 6096 | int hp_pin = alc_get_hp_pin(spec); |
bde7bc60 CCC |
6097 | |
6098 | if (snd_BUG_ON(!mic_pin || !hp_pin)) | |
0db75790 | 6099 | return; |
bde7bc60 | 6100 | snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin); |
0db75790 | 6101 | } |
08a978db | 6102 | } |
693b613d | 6103 | |
3e0d611b DH |
6104 | static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec, |
6105 | const struct hda_fixup *fix, | |
6106 | int action) | |
6107 | { | |
6108 | struct alc_spec *spec = codec->spec; | |
6109 | struct auto_pin_cfg *cfg = &spec->gen.autocfg; | |
6110 | int i; | |
6111 | ||
6112 | /* The mic boosts on level 2 and 3 are too noisy | |
6113 | on the internal mic input. | |
6114 | Therefore limit the boost to 0 or 1. */ | |
6115 | ||
6116 | if (action != HDA_FIXUP_ACT_PROBE) | |
6117 | return; | |
6118 | ||
6119 | for (i = 0; i < cfg->num_inputs; i++) { | |
6120 | hda_nid_t nid = cfg->inputs[i].pin; | |
6121 | unsigned int defcfg; | |
6122 | if (cfg->inputs[i].type != AUTO_PIN_MIC) | |
6123 | continue; | |
6124 | defcfg = snd_hda_codec_get_pincfg(codec, nid); | |
6125 | if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT) | |
6126 | continue; | |
6127 | ||
6128 | snd_hda_override_amp_caps(codec, nid, HDA_INPUT, | |
6129 | (0x00 << AC_AMPCAP_OFFSET_SHIFT) | | |
6130 | (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) | | |
6131 | (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) | | |
6132 | (0 << AC_AMPCAP_MUTE_SHIFT)); | |
6133 | } | |
6134 | } | |
6135 | ||
cd217a63 | 6136 | static void alc283_hp_automute_hook(struct hda_codec *codec, |
1a4f69d5 | 6137 | struct hda_jack_callback *jack) |
cd217a63 KY |
6138 | { |
6139 | struct alc_spec *spec = codec->spec; | |
6140 | int vref; | |
6141 | ||
6142 | msleep(200); | |
6143 | snd_hda_gen_hp_automute(codec, jack); | |
6144 | ||
6145 | vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0; | |
6146 | ||
6147 | msleep(600); | |
6148 | snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | |
6149 | vref); | |
6150 | } | |
6151 | ||
cd217a63 KY |
6152 | static void alc283_fixup_chromebook(struct hda_codec *codec, |
6153 | const struct hda_fixup *fix, int action) | |
6154 | { | |
6155 | struct alc_spec *spec = codec->spec; | |
cd217a63 KY |
6156 | |
6157 | switch (action) { | |
6158 | case HDA_FIXUP_ACT_PRE_PROBE: | |
0202e99c | 6159 | snd_hda_override_wcaps(codec, 0x03, 0); |
d2e92709 TI |
6160 | /* Disable AA-loopback as it causes white noise */ |
6161 | spec->gen.mixer_nid = 0; | |
38070219 | 6162 | break; |
0202e99c | 6163 | case HDA_FIXUP_ACT_INIT: |
de9481cb KY |
6164 | /* MIC2-VREF control */ |
6165 | /* Set to manual mode */ | |
98b24883 | 6166 | alc_update_coef_idx(codec, 0x06, 0x000c, 0); |
0202e99c | 6167 | /* Enable Line1 input control by verb */ |
98b24883 | 6168 | alc_update_coef_idx(codec, 0x1a, 0, 1 << 4); |
0202e99c KY |
6169 | break; |
6170 | } | |
6171 | } | |
6172 | ||
6173 | static void alc283_fixup_sense_combo_jack(struct hda_codec *codec, | |
6174 | const struct hda_fixup *fix, int action) | |
6175 | { | |
6176 | struct alc_spec *spec = codec->spec; | |
0202e99c KY |
6177 | |
6178 | switch (action) { | |
6179 | case HDA_FIXUP_ACT_PRE_PROBE: | |
cd217a63 | 6180 | spec->gen.hp_automute_hook = alc283_hp_automute_hook; |
38070219 KY |
6181 | break; |
6182 | case HDA_FIXUP_ACT_INIT: | |
cd217a63 KY |
6183 | /* MIC2-VREF control */ |
6184 | /* Set to manual mode */ | |
98b24883 | 6185 | alc_update_coef_idx(codec, 0x06, 0x000c, 0); |
cd217a63 KY |
6186 | break; |
6187 | } | |
6188 | } | |
6189 | ||
7bba2157 TI |
6190 | /* mute tablet speaker pin (0x14) via dock plugging in addition */ |
6191 | static void asus_tx300_automute(struct hda_codec *codec) | |
6192 | { | |
6193 | struct alc_spec *spec = codec->spec; | |
6194 | snd_hda_gen_update_outputs(codec); | |
6195 | if (snd_hda_jack_detect(codec, 0x1b)) | |
6196 | spec->gen.mute_bits |= (1ULL << 0x14); | |
6197 | } | |
6198 | ||
6199 | static void alc282_fixup_asus_tx300(struct hda_codec *codec, | |
6200 | const struct hda_fixup *fix, int action) | |
6201 | { | |
6202 | struct alc_spec *spec = codec->spec; | |
7bba2157 TI |
6203 | static const struct hda_pintbl dock_pins[] = { |
6204 | { 0x1b, 0x21114000 }, /* dock speaker pin */ | |
6205 | {} | |
6206 | }; | |
7bba2157 TI |
6207 | |
6208 | switch (action) { | |
6209 | case HDA_FIXUP_ACT_PRE_PROBE: | |
1c76aa5f | 6210 | spec->init_amp = ALC_INIT_DEFAULT; |
ae065f1c TI |
6211 | /* TX300 needs to set up GPIO2 for the speaker amp */ |
6212 | alc_setup_gpio(codec, 0x04); | |
7bba2157 TI |
6213 | snd_hda_apply_pincfgs(codec, dock_pins); |
6214 | spec->gen.auto_mute_via_amp = 1; | |
6215 | spec->gen.automute_hook = asus_tx300_automute; | |
6216 | snd_hda_jack_detect_enable_callback(codec, 0x1b, | |
7bba2157 TI |
6217 | snd_hda_gen_hp_automute); |
6218 | break; | |
5579cd6f TI |
6219 | case HDA_FIXUP_ACT_PROBE: |
6220 | spec->init_amp = ALC_INIT_DEFAULT; | |
6221 | break; | |
7bba2157 TI |
6222 | case HDA_FIXUP_ACT_BUILD: |
6223 | /* this is a bit tricky; give more sane names for the main | |
6224 | * (tablet) speaker and the dock speaker, respectively | |
6225 | */ | |
56798e6b TI |
6226 | rename_ctl(codec, "Speaker Playback Switch", |
6227 | "Dock Speaker Playback Switch"); | |
6228 | rename_ctl(codec, "Bass Speaker Playback Switch", | |
6229 | "Speaker Playback Switch"); | |
7bba2157 TI |
6230 | break; |
6231 | } | |
6232 | } | |
6233 | ||
338cae56 DH |
6234 | static void alc290_fixup_mono_speakers(struct hda_codec *codec, |
6235 | const struct hda_fixup *fix, int action) | |
6236 | { | |
0f4881dc DH |
6237 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
6238 | /* DAC node 0x03 is giving mono output. We therefore want to | |
6239 | make sure 0x14 (front speaker) and 0x15 (headphones) use the | |
6240 | stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */ | |
caf3c043 MM |
6241 | static const hda_nid_t conn1[] = { 0x0c }; |
6242 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1); | |
6243 | snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1); | |
0f4881dc | 6244 | } |
338cae56 DH |
6245 | } |
6246 | ||
dd9aa335 HW |
6247 | static void alc298_fixup_speaker_volume(struct hda_codec *codec, |
6248 | const struct hda_fixup *fix, int action) | |
6249 | { | |
6250 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
6251 | /* The speaker is routed to the Node 0x06 by a mistake, as a result | |
6252 | we can't adjust the speaker's volume since this node does not has | |
6253 | Amp-out capability. we change the speaker's route to: | |
6254 | Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 ( | |
6255 | Pin Complex), since Node 0x02 has Amp-out caps, we can adjust | |
6256 | speaker's volume now. */ | |
6257 | ||
caf3c043 MM |
6258 | static const hda_nid_t conn1[] = { 0x0c }; |
6259 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn1), conn1); | |
dd9aa335 HW |
6260 | } |
6261 | } | |
6262 | ||
e312a869 TI |
6263 | /* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */ |
6264 | static void alc295_fixup_disable_dac3(struct hda_codec *codec, | |
6265 | const struct hda_fixup *fix, int action) | |
6266 | { | |
6267 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
caf3c043 MM |
6268 | static const hda_nid_t conn[] = { 0x02, 0x03 }; |
6269 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
e312a869 TI |
6270 | } |
6271 | } | |
6272 | ||
d2cd795c JK |
6273 | /* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */ |
6274 | static void alc285_fixup_speaker2_to_dac1(struct hda_codec *codec, | |
6275 | const struct hda_fixup *fix, int action) | |
6276 | { | |
6277 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
caf3c043 MM |
6278 | static const hda_nid_t conn[] = { 0x02 }; |
6279 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
d2cd795c JK |
6280 | } |
6281 | } | |
6282 | ||
98973f2f KP |
6283 | /* Hook to update amp GPIO4 for automute */ |
6284 | static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec, | |
6285 | struct hda_jack_callback *jack) | |
6286 | { | |
6287 | struct alc_spec *spec = codec->spec; | |
6288 | ||
6289 | snd_hda_gen_hp_automute(codec, jack); | |
6290 | /* mute_led_polarity is set to 0, so we pass inverted value here */ | |
dbd13179 KHF |
6291 | alc_update_gpio_led(codec, 0x10, spec->mute_led_polarity, |
6292 | !spec->gen.hp_jack_present); | |
98973f2f KP |
6293 | } |
6294 | ||
6295 | /* Manage GPIOs for HP EliteBook Folio 9480m. | |
6296 | * | |
6297 | * GPIO4 is the headphone amplifier power control | |
6298 | * GPIO3 is the audio output mute indicator LED | |
6299 | */ | |
6300 | ||
6301 | static void alc280_fixup_hp_9480m(struct hda_codec *codec, | |
6302 | const struct hda_fixup *fix, | |
6303 | int action) | |
6304 | { | |
6305 | struct alc_spec *spec = codec->spec; | |
98973f2f | 6306 | |
01e4a275 | 6307 | alc_fixup_hp_gpio_led(codec, action, 0x08, 0); |
98973f2f | 6308 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
01e4a275 TI |
6309 | /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */ |
6310 | spec->gpio_mask |= 0x10; | |
6311 | spec->gpio_dir |= 0x10; | |
98973f2f | 6312 | spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook; |
98973f2f KP |
6313 | } |
6314 | } | |
6315 | ||
ae065f1c TI |
6316 | static void alc275_fixup_gpio4_off(struct hda_codec *codec, |
6317 | const struct hda_fixup *fix, | |
6318 | int action) | |
6319 | { | |
6320 | struct alc_spec *spec = codec->spec; | |
6321 | ||
6322 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
6323 | spec->gpio_mask |= 0x04; | |
6324 | spec->gpio_dir |= 0x04; | |
6325 | /* set data bit low */ | |
6326 | } | |
6327 | } | |
6328 | ||
6a6660d0 TI |
6329 | /* Quirk for Thinkpad X1 7th and 8th Gen |
6330 | * The following fixed routing needed | |
6331 | * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly | |
6332 | * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC | |
6333 | * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp | |
6334 | */ | |
6335 | static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec *codec, | |
6336 | const struct hda_fixup *fix, int action) | |
6337 | { | |
6338 | static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */ | |
6339 | static const hda_nid_t preferred_pairs[] = { | |
6340 | 0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0 | |
6341 | }; | |
6342 | struct alc_spec *spec = codec->spec; | |
6343 | ||
6344 | switch (action) { | |
6345 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6346 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
6347 | spec->gen.preferred_dacs = preferred_pairs; | |
6348 | break; | |
6349 | case HDA_FIXUP_ACT_BUILD: | |
6350 | /* The generic parser creates somewhat unintuitive volume ctls | |
6351 | * with the fixed routing above, and the shared DAC2 may be | |
6352 | * confusing for PA. | |
6353 | * Rename those to unique names so that PA doesn't touch them | |
6354 | * and use only Master volume. | |
6355 | */ | |
6356 | rename_ctl(codec, "Front Playback Volume", "DAC1 Playback Volume"); | |
6357 | rename_ctl(codec, "Bass Speaker Playback Volume", "DAC2 Playback Volume"); | |
6358 | break; | |
6359 | } | |
6360 | } | |
6361 | ||
ca169cc2 KY |
6362 | static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec, |
6363 | const struct hda_fixup *fix, | |
6364 | int action) | |
6365 | { | |
6366 | alc_fixup_dual_codecs(codec, fix, action); | |
6367 | switch (action) { | |
6368 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6369 | /* override card longname to provide a unique UCM profile */ | |
6370 | strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs"); | |
6371 | break; | |
6372 | case HDA_FIXUP_ACT_BUILD: | |
6373 | /* rename Capture controls depending on the codec */ | |
6374 | rename_ctl(codec, "Capture Volume", | |
6375 | codec->addr == 0 ? | |
6376 | "Rear-Panel Capture Volume" : | |
6377 | "Front-Panel Capture Volume"); | |
6378 | rename_ctl(codec, "Capture Switch", | |
6379 | codec->addr == 0 ? | |
6380 | "Rear-Panel Capture Switch" : | |
6381 | "Front-Panel Capture Switch"); | |
6382 | break; | |
6383 | } | |
6384 | } | |
6385 | ||
52e4e368 KHF |
6386 | static void alc225_fixup_s3_pop_noise(struct hda_codec *codec, |
6387 | const struct hda_fixup *fix, int action) | |
6388 | { | |
6389 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
6390 | return; | |
6391 | ||
6392 | codec->power_save_node = 1; | |
6393 | } | |
6394 | ||
92266651 KY |
6395 | /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */ |
6396 | static void alc274_fixup_bind_dacs(struct hda_codec *codec, | |
6397 | const struct hda_fixup *fix, int action) | |
6398 | { | |
6399 | struct alc_spec *spec = codec->spec; | |
caf3c043 | 6400 | static const hda_nid_t preferred_pairs[] = { |
92266651 KY |
6401 | 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02, |
6402 | 0 | |
6403 | }; | |
6404 | ||
6405 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
6406 | return; | |
6407 | ||
6408 | spec->gen.preferred_dacs = preferred_pairs; | |
0700d3d1 KY |
6409 | spec->gen.auto_mute_via_amp = 1; |
6410 | codec->power_save_node = 0; | |
92266651 KY |
6411 | } |
6412 | ||
c84bfedc TI |
6413 | /* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */ |
6414 | static void alc289_fixup_asus_ga401(struct hda_codec *codec, | |
6415 | const struct hda_fixup *fix, int action) | |
6416 | { | |
6417 | static const hda_nid_t preferred_pairs[] = { | |
6418 | 0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0 | |
6419 | }; | |
6420 | struct alc_spec *spec = codec->spec; | |
6421 | ||
6422 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
6423 | spec->gen.preferred_dacs = preferred_pairs; | |
6424 | spec->gen.obey_preferred_dacs = 1; | |
6425 | } | |
6426 | } | |
6427 | ||
c4cfcf6f HW |
6428 | /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */ |
6429 | static void alc285_fixup_invalidate_dacs(struct hda_codec *codec, | |
6430 | const struct hda_fixup *fix, int action) | |
6431 | { | |
6432 | if (action != HDA_FIXUP_ACT_PRE_PROBE) | |
6433 | return; | |
6434 | ||
6435 | snd_hda_override_wcaps(codec, 0x03, 0); | |
6436 | } | |
6437 | ||
8a8de09c KY |
6438 | static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec) |
6439 | { | |
6440 | switch (codec->core.vendor_id) { | |
6441 | case 0x10ec0274: | |
6442 | case 0x10ec0294: | |
6443 | case 0x10ec0225: | |
6444 | case 0x10ec0295: | |
6445 | case 0x10ec0299: | |
6446 | alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */ | |
6447 | alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15); | |
6448 | break; | |
1948fc06 | 6449 | case 0x10ec0230: |
8a8de09c KY |
6450 | case 0x10ec0235: |
6451 | case 0x10ec0236: | |
6452 | case 0x10ec0255: | |
6453 | case 0x10ec0256: | |
527f4643 | 6454 | case 0x19e58326: |
8a8de09c KY |
6455 | alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */ |
6456 | alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15); | |
6457 | break; | |
6458 | } | |
6459 | } | |
6460 | ||
8983eb60 KY |
6461 | static void alc295_fixup_chromebook(struct hda_codec *codec, |
6462 | const struct hda_fixup *fix, int action) | |
6463 | { | |
d3ba58bb KY |
6464 | struct alc_spec *spec = codec->spec; |
6465 | ||
8983eb60 | 6466 | switch (action) { |
d3ba58bb KY |
6467 | case HDA_FIXUP_ACT_PRE_PROBE: |
6468 | spec->ultra_low_power = true; | |
6469 | break; | |
8983eb60 | 6470 | case HDA_FIXUP_ACT_INIT: |
8a8de09c | 6471 | alc_combo_jack_hp_jd_restart(codec); |
8983eb60 KY |
6472 | break; |
6473 | } | |
6474 | } | |
6475 | ||
d1dd4211 KY |
6476 | static void alc_fixup_disable_mic_vref(struct hda_codec *codec, |
6477 | const struct hda_fixup *fix, int action) | |
6478 | { | |
6479 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
6480 | snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ); | |
6481 | } | |
6482 | ||
c3cdf189 LJ |
6483 | |
6484 | static void alc294_gx502_toggle_output(struct hda_codec *codec, | |
6485 | struct hda_jack_callback *cb) | |
6486 | { | |
6487 | /* The Windows driver sets the codec up in a very different way where | |
6488 | * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it | |
6489 | */ | |
6490 | if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT) | |
6491 | alc_write_coef_idx(codec, 0x10, 0x8a20); | |
6492 | else | |
6493 | alc_write_coef_idx(codec, 0x10, 0x0a20); | |
6494 | } | |
6495 | ||
6496 | static void alc294_fixup_gx502_hp(struct hda_codec *codec, | |
6497 | const struct hda_fixup *fix, int action) | |
6498 | { | |
6499 | /* Pin 0x21: headphones/headset mic */ | |
6500 | if (!is_jack_detectable(codec, 0x21)) | |
6501 | return; | |
6502 | ||
6503 | switch (action) { | |
6504 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6505 | snd_hda_jack_detect_enable_callback(codec, 0x21, | |
6506 | alc294_gx502_toggle_output); | |
6507 | break; | |
6508 | case HDA_FIXUP_ACT_INIT: | |
6509 | /* Make sure to start in a correct state, i.e. if | |
6510 | * headphones have been plugged in before powering up the system | |
6511 | */ | |
6512 | alc294_gx502_toggle_output(codec, NULL); | |
6513 | break; | |
6514 | } | |
6515 | } | |
6516 | ||
c1b55029 DC |
6517 | static void alc294_gu502_toggle_output(struct hda_codec *codec, |
6518 | struct hda_jack_callback *cb) | |
6519 | { | |
6520 | /* Windows sets 0x10 to 0x8420 for Node 0x20 which is | |
6521 | * responsible from changes between speakers and headphones | |
6522 | */ | |
6523 | if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT) | |
6524 | alc_write_coef_idx(codec, 0x10, 0x8420); | |
6525 | else | |
6526 | alc_write_coef_idx(codec, 0x10, 0x0a20); | |
6527 | } | |
6528 | ||
6529 | static void alc294_fixup_gu502_hp(struct hda_codec *codec, | |
6530 | const struct hda_fixup *fix, int action) | |
6531 | { | |
6532 | if (!is_jack_detectable(codec, 0x21)) | |
6533 | return; | |
6534 | ||
6535 | switch (action) { | |
6536 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6537 | snd_hda_jack_detect_enable_callback(codec, 0x21, | |
6538 | alc294_gu502_toggle_output); | |
6539 | break; | |
6540 | case HDA_FIXUP_ACT_INIT: | |
6541 | alc294_gu502_toggle_output(codec, NULL); | |
6542 | break; | |
6543 | } | |
6544 | } | |
6545 | ||
56496253 KY |
6546 | static void alc285_fixup_hp_gpio_amp_init(struct hda_codec *codec, |
6547 | const struct hda_fixup *fix, int action) | |
6548 | { | |
6549 | if (action != HDA_FIXUP_ACT_INIT) | |
6550 | return; | |
6551 | ||
6552 | msleep(100); | |
6553 | alc_write_coef_idx(codec, 0x65, 0x0); | |
6554 | } | |
6555 | ||
8a8de09c KY |
6556 | static void alc274_fixup_hp_headset_mic(struct hda_codec *codec, |
6557 | const struct hda_fixup *fix, int action) | |
6558 | { | |
6559 | switch (action) { | |
6560 | case HDA_FIXUP_ACT_INIT: | |
6561 | alc_combo_jack_hp_jd_restart(codec); | |
6562 | break; | |
6563 | } | |
6564 | } | |
6565 | ||
92666d45 KY |
6566 | static void alc_fixup_no_int_mic(struct hda_codec *codec, |
6567 | const struct hda_fixup *fix, int action) | |
6568 | { | |
6569 | struct alc_spec *spec = codec->spec; | |
6570 | ||
6571 | switch (action) { | |
6572 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6573 | /* Mic RING SLEEVE swap for combo jack */ | |
6574 | alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12); | |
6575 | spec->no_internal_mic_pin = true; | |
6576 | break; | |
6577 | case HDA_FIXUP_ACT_INIT: | |
6578 | alc_combo_jack_hp_jd_restart(codec); | |
6579 | break; | |
6580 | } | |
6581 | } | |
6582 | ||
d94befbb DB |
6583 | /* GPIO1 = amplifier on/off |
6584 | * GPIO3 = mic mute LED | |
6585 | */ | |
6586 | static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec *codec, | |
6587 | const struct hda_fixup *fix, int action) | |
6588 | { | |
6589 | static const hda_nid_t conn[] = { 0x02 }; | |
6590 | ||
6591 | struct alc_spec *spec = codec->spec; | |
6592 | static const struct hda_pintbl pincfgs[] = { | |
6593 | { 0x14, 0x90170110 }, /* front/high speakers */ | |
6594 | { 0x17, 0x90170130 }, /* back/bass speakers */ | |
6595 | { } | |
6596 | }; | |
6597 | ||
6598 | //enable micmute led | |
6599 | alc_fixup_hp_gpio_led(codec, action, 0x00, 0x04); | |
6600 | ||
6601 | switch (action) { | |
6602 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6603 | spec->micmute_led_polarity = 1; | |
6604 | /* needed for amp of back speakers */ | |
6605 | spec->gpio_mask |= 0x01; | |
6606 | spec->gpio_dir |= 0x01; | |
6607 | snd_hda_apply_pincfgs(codec, pincfgs); | |
6608 | /* share DAC to have unified volume control */ | |
6609 | snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn); | |
6610 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
6611 | break; | |
6612 | case HDA_FIXUP_ACT_INIT: | |
6613 | /* need to toggle GPIO to enable the amp of back speakers */ | |
6614 | alc_update_gpio_data(codec, 0x01, true); | |
6615 | msleep(100); | |
6616 | alc_update_gpio_data(codec, 0x01, false); | |
6617 | break; | |
6618 | } | |
6619 | } | |
6620 | ||
434591b2 ED |
6621 | static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec, |
6622 | const struct hda_fixup *fix, int action) | |
6623 | { | |
6624 | static const hda_nid_t conn[] = { 0x02 }; | |
6625 | static const struct hda_pintbl pincfgs[] = { | |
6626 | { 0x14, 0x90170110 }, /* rear speaker */ | |
6627 | { } | |
6628 | }; | |
6629 | ||
6630 | switch (action) { | |
6631 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6632 | snd_hda_apply_pincfgs(codec, pincfgs); | |
6633 | /* force front speaker to DAC1 */ | |
6634 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
6635 | break; | |
6636 | } | |
6637 | } | |
6638 | ||
b317b032 TI |
6639 | /* for hda_fixup_thinkpad_acpi() */ |
6640 | #include "thinkpad_helper.c" | |
b67ae3f1 | 6641 | |
d5a6cabf TI |
6642 | static void alc_fixup_thinkpad_acpi(struct hda_codec *codec, |
6643 | const struct hda_fixup *fix, int action) | |
6644 | { | |
6645 | alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */ | |
6646 | hda_fixup_thinkpad_acpi(codec, fix, action); | |
6647 | } | |
6648 | ||
ad7cc2d4 CB |
6649 | /* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */ |
6650 | static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec, | |
6651 | const struct hda_fixup *fix, | |
6652 | int action) | |
6653 | { | |
6654 | struct alc_spec *spec = codec->spec; | |
6655 | ||
6656 | switch (action) { | |
6657 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6658 | spec->gen.suppress_auto_mute = 1; | |
6659 | break; | |
6660 | } | |
6661 | } | |
6662 | ||
d3dca026 LT |
6663 | static int comp_bind(struct device *dev) |
6664 | { | |
6665 | struct hda_codec *cdc = dev_to_hda_codec(dev); | |
6666 | struct alc_spec *spec = cdc->spec; | |
1873ebd3 SB |
6667 | int ret, i; |
6668 | ||
6669 | ret = component_bind_all(dev, spec->comps); | |
6670 | if (ret) | |
6671 | return ret; | |
d3dca026 | 6672 | |
1873ebd3 SB |
6673 | if (snd_hdac_is_power_on(&cdc->core)) { |
6674 | codec_dbg(cdc, "Resuming after bind.\n"); | |
6675 | for (i = 0; i < HDA_MAX_COMPONENTS; i++) | |
6676 | if (spec->comps[i].resume_hook) | |
6677 | spec->comps[i].resume_hook(spec->comps[i].dev); | |
6678 | } | |
6679 | ||
6680 | return 0; | |
d3dca026 LT |
6681 | } |
6682 | ||
6683 | static void comp_unbind(struct device *dev) | |
6684 | { | |
6685 | struct hda_codec *cdc = dev_to_hda_codec(dev); | |
6686 | struct alc_spec *spec = cdc->spec; | |
6687 | ||
6688 | component_unbind_all(dev, spec->comps); | |
6689 | } | |
6690 | ||
6691 | static const struct component_master_ops comp_master_ops = { | |
6692 | .bind = comp_bind, | |
6693 | .unbind = comp_unbind, | |
6694 | }; | |
6695 | ||
6696 | static void comp_generic_playback_hook(struct hda_pcm_stream *hinfo, struct hda_codec *cdc, | |
6697 | struct snd_pcm_substream *sub, int action) | |
6698 | { | |
6699 | struct alc_spec *spec = cdc->spec; | |
6700 | int i; | |
6701 | ||
6702 | for (i = 0; i < HDA_MAX_COMPONENTS; i++) { | |
6703 | if (spec->comps[i].dev) | |
6704 | spec->comps[i].playback_hook(spec->comps[i].dev, action); | |
6705 | } | |
6706 | } | |
6707 | ||
35a17444 TI |
6708 | struct cs35l41_dev_name { |
6709 | const char *bus; | |
6710 | const char *hid; | |
6711 | int index; | |
6712 | }; | |
6713 | ||
6714 | /* match the device name in a slightly relaxed manner */ | |
6715 | static int comp_match_cs35l41_dev_name(struct device *dev, void *data) | |
6716 | { | |
6717 | struct cs35l41_dev_name *p = data; | |
6718 | const char *d = dev_name(dev); | |
6719 | int n = strlen(p->bus); | |
6720 | char tmp[32]; | |
6721 | ||
6722 | /* check the bus name */ | |
6723 | if (strncmp(d, p->bus, n)) | |
6724 | return 0; | |
6725 | /* skip the bus number */ | |
6726 | if (isdigit(d[n])) | |
6727 | n++; | |
6728 | /* the rest must be exact matching */ | |
6729 | snprintf(tmp, sizeof(tmp), "-%s:00-cs35l41-hda.%d", p->hid, p->index); | |
6730 | return !strcmp(d + n, tmp); | |
6731 | } | |
6732 | ||
ae7abe36 SB |
6733 | static void cs35l41_generic_fixup(struct hda_codec *cdc, int action, const char *bus, |
6734 | const char *hid, int count) | |
6735 | { | |
6736 | struct device *dev = hda_codec_dev(cdc); | |
6737 | struct alc_spec *spec = cdc->spec; | |
35a17444 | 6738 | struct cs35l41_dev_name *rec; |
ae7abe36 SB |
6739 | int ret, i; |
6740 | ||
6741 | switch (action) { | |
6742 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6743 | for (i = 0; i < count; i++) { | |
35a17444 TI |
6744 | rec = devm_kmalloc(dev, sizeof(*rec), GFP_KERNEL); |
6745 | if (!rec) | |
ae7abe36 | 6746 | return; |
35a17444 TI |
6747 | rec->bus = bus; |
6748 | rec->hid = hid; | |
6749 | rec->index = i; | |
22d5cbd2 | 6750 | spec->comps[i].codec = cdc; |
35a17444 TI |
6751 | component_match_add(dev, &spec->match, |
6752 | comp_match_cs35l41_dev_name, rec); | |
ae7abe36 SB |
6753 | } |
6754 | ret = component_master_add_with_match(dev, &comp_master_ops, spec->match); | |
6755 | if (ret) | |
6756 | codec_err(cdc, "Fail to register component aggregator %d\n", ret); | |
6757 | else | |
6758 | spec->gen.pcm_playback_hook = comp_generic_playback_hook; | |
6759 | break; | |
6760 | } | |
6761 | } | |
6762 | ||
6763 | static void cs35l41_fixup_i2c_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action) | |
6764 | { | |
6765 | cs35l41_generic_fixup(cdc, action, "i2c", "CSC3551", 2); | |
6766 | } | |
6767 | ||
07bcab93 LT |
6768 | static void cs35l41_fixup_spi_two(struct hda_codec *codec, const struct hda_fixup *fix, int action) |
6769 | { | |
35a17444 | 6770 | cs35l41_generic_fixup(codec, action, "spi", "CSC3551", 2); |
225f6e1b TI |
6771 | } |
6772 | ||
07bcab93 LT |
6773 | static void cs35l41_fixup_spi_four(struct hda_codec *codec, const struct hda_fixup *fix, int action) |
6774 | { | |
35a17444 | 6775 | cs35l41_generic_fixup(codec, action, "spi", "CSC3551", 4); |
07bcab93 LT |
6776 | } |
6777 | ||
d3dca026 LT |
6778 | static void alc287_fixup_legion_16achg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix, |
6779 | int action) | |
6780 | { | |
14e42cee | 6781 | cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0100", 2); |
d3dca026 LT |
6782 | } |
6783 | ||
1e24881d LT |
6784 | static void alc287_fixup_legion_16ithg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix, |
6785 | int action) | |
6786 | { | |
6787 | cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0101", 2); | |
6788 | } | |
6789 | ||
bbf8ff6b TB |
6790 | /* for alc295_fixup_hp_top_speakers */ |
6791 | #include "hp_x360_helper.c" | |
6792 | ||
26928ca1 TI |
6793 | /* for alc285_fixup_ideapad_s740_coef() */ |
6794 | #include "ideapad_s740_helper.c" | |
6795 | ||
619764cc WS |
6796 | static const struct coef_fw alc256_fixup_set_coef_defaults_coefs[] = { |
6797 | WRITE_COEF(0x10, 0x0020), WRITE_COEF(0x24, 0x0000), | |
6798 | WRITE_COEF(0x26, 0x0000), WRITE_COEF(0x29, 0x3000), | |
6799 | WRITE_COEF(0x37, 0xfe05), WRITE_COEF(0x45, 0x5089), | |
6800 | {} | |
6801 | }; | |
6802 | ||
6803 | static void alc256_fixup_set_coef_defaults(struct hda_codec *codec, | |
6804 | const struct hda_fixup *fix, | |
6805 | int action) | |
dd6dd6e3 WS |
6806 | { |
6807 | /* | |
619764cc WS |
6808 | * A certain other OS sets these coeffs to different values. On at least |
6809 | * one TongFang barebone these settings might survive even a cold | |
6810 | * reboot. So to restore a clean slate the values are explicitly reset | |
6811 | * to default here. Without this, the external microphone is always in a | |
6812 | * plugged-in state, while the internal microphone is always in an | |
6813 | * unplugged state, breaking the ability to use the internal microphone. | |
6814 | */ | |
6815 | alc_process_coef_fw(codec, alc256_fixup_set_coef_defaults_coefs); | |
dd6dd6e3 WS |
6816 | } |
6817 | ||
174a7fb3 WS |
6818 | static const struct coef_fw alc233_fixup_no_audio_jack_coefs[] = { |
6819 | WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06), | |
6820 | WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074), | |
6821 | WRITE_COEF(0x49, 0x0149), | |
6822 | {} | |
6823 | }; | |
6824 | ||
6825 | static void alc233_fixup_no_audio_jack(struct hda_codec *codec, | |
6826 | const struct hda_fixup *fix, | |
6827 | int action) | |
6828 | { | |
6829 | /* | |
6830 | * The audio jack input and output is not detected on the ASRock NUC Box | |
6831 | * 1100 series when cold booting without this fix. Warm rebooting from a | |
6832 | * certain other OS makes the audio functional, as COEF settings are | |
6833 | * preserved in this case. This fix sets these altered COEF values as | |
6834 | * the default. | |
6835 | */ | |
6836 | alc_process_coef_fw(codec, alc233_fixup_no_audio_jack_coefs); | |
6837 | } | |
6838 | ||
edca7cc4 WS |
6839 | static void alc256_fixup_mic_no_presence_and_resume(struct hda_codec *codec, |
6840 | const struct hda_fixup *fix, | |
6841 | int action) | |
6842 | { | |
6843 | /* | |
6844 | * The Clevo NJ51CU comes either with the ALC293 or the ALC256 codec, | |
6845 | * but uses the 0x8686 subproduct id in both cases. The ALC256 codec | |
6846 | * needs an additional quirk for sound working after suspend and resume. | |
6847 | */ | |
6848 | if (codec->core.vendor_id == 0x10ec0256) { | |
6849 | alc_update_coef_idx(codec, 0x10, 1<<9, 0); | |
6850 | snd_hda_codec_set_pincfg(codec, 0x19, 0x04a11120); | |
6851 | } else { | |
6852 | snd_hda_codec_set_pincfg(codec, 0x1a, 0x04a1113c); | |
6853 | } | |
6854 | } | |
6855 | ||
1efcdd9c GM |
6856 | static void alc_fixup_dell4_mic_no_presence_quiet(struct hda_codec *codec, |
6857 | const struct hda_fixup *fix, | |
6858 | int action) | |
6859 | { | |
6860 | struct alc_spec *spec = codec->spec; | |
6861 | struct hda_input_mux *imux = &spec->gen.input_mux; | |
6862 | int i; | |
6863 | ||
6864 | alc269_fixup_limit_int_mic_boost(codec, fix, action); | |
6865 | ||
6866 | switch (action) { | |
6867 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6868 | /** | |
6869 | * Set the vref of pin 0x19 (Headset Mic) and pin 0x1b (Headphone Mic) | |
6870 | * to Hi-Z to avoid pop noises at startup and when plugging and | |
6871 | * unplugging headphones. | |
6872 | */ | |
6873 | snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ); | |
6874 | snd_hda_codec_set_pin_target(codec, 0x1b, PIN_VREFHIZ); | |
6875 | break; | |
6876 | case HDA_FIXUP_ACT_PROBE: | |
6877 | /** | |
6878 | * Make the internal mic (0x12) the default input source to | |
6879 | * prevent pop noises on cold boot. | |
6880 | */ | |
6881 | for (i = 0; i < imux->num_items; i++) { | |
6882 | if (spec->gen.imux_pins[i] == 0x12) { | |
6883 | spec->gen.cur_mux[0] = i; | |
6884 | break; | |
6885 | } | |
6886 | } | |
6887 | break; | |
6888 | } | |
6889 | } | |
6890 | ||
3790a3d6 PJ |
6891 | static void alc287_fixup_yoga9_14iap7_bass_spk_pin(struct hda_codec *codec, |
6892 | const struct hda_fixup *fix, int action) | |
6893 | { | |
6894 | /* | |
6895 | * The Pin Complex 0x17 for the bass speakers is wrongly reported as | |
6896 | * unconnected. | |
6897 | */ | |
6898 | static const struct hda_pintbl pincfgs[] = { | |
6899 | { 0x17, 0x90170121 }, | |
6900 | { } | |
6901 | }; | |
6902 | /* | |
6903 | * Avoid DAC 0x06 and 0x08, as they have no volume controls. | |
6904 | * DAC 0x02 and 0x03 would be fine. | |
6905 | */ | |
6906 | static const hda_nid_t conn[] = { 0x02, 0x03 }; | |
6907 | /* | |
6908 | * Prefer both speakerbar (0x14) and bass speakers (0x17) connected to DAC 0x02. | |
6909 | * Headphones (0x21) are connected to DAC 0x03. | |
6910 | */ | |
6911 | static const hda_nid_t preferred_pairs[] = { | |
6912 | 0x14, 0x02, | |
6913 | 0x17, 0x02, | |
6914 | 0x21, 0x03, | |
6915 | 0 | |
6916 | }; | |
6917 | struct alc_spec *spec = codec->spec; | |
6918 | ||
6919 | switch (action) { | |
6920 | case HDA_FIXUP_ACT_PRE_PROBE: | |
6921 | snd_hda_apply_pincfgs(codec, pincfgs); | |
6922 | snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); | |
6923 | spec->gen.preferred_dacs = preferred_pairs; | |
6924 | break; | |
6925 | } | |
6926 | } | |
6927 | ||
1d045db9 | 6928 | enum { |
f73bbf63 | 6929 | ALC269_FIXUP_GPIO2, |
1d045db9 TI |
6930 | ALC269_FIXUP_SONY_VAIO, |
6931 | ALC275_FIXUP_SONY_VAIO_GPIO2, | |
6932 | ALC269_FIXUP_DELL_M101Z, | |
6933 | ALC269_FIXUP_SKU_IGNORE, | |
6934 | ALC269_FIXUP_ASUS_G73JW, | |
6935 | ALC269_FIXUP_LENOVO_EAPD, | |
6936 | ALC275_FIXUP_SONY_HWEQ, | |
e9bd7d5c | 6937 | ALC275_FIXUP_SONY_DISABLE_AAMIX, |
1d045db9 | 6938 | ALC271_FIXUP_DMIC, |
017f2a10 | 6939 | ALC269_FIXUP_PCM_44K, |
adabb3ec | 6940 | ALC269_FIXUP_STEREO_DMIC, |
7c478f03 | 6941 | ALC269_FIXUP_HEADSET_MIC, |
24519911 TI |
6942 | ALC269_FIXUP_QUANTA_MUTE, |
6943 | ALC269_FIXUP_LIFEBOOK, | |
2041d564 | 6944 | ALC269_FIXUP_LIFEBOOK_EXTMIC, |
cc7016ab | 6945 | ALC269_FIXUP_LIFEBOOK_HP_PIN, |
4df3fd17 | 6946 | ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT, |
fdcc968a | 6947 | ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, |
a4297b5d TI |
6948 | ALC269_FIXUP_AMIC, |
6949 | ALC269_FIXUP_DMIC, | |
6950 | ALC269VB_FIXUP_AMIC, | |
6951 | ALC269VB_FIXUP_DMIC, | |
08fb0d0e | 6952 | ALC269_FIXUP_HP_MUTE_LED, |
d06ac143 | 6953 | ALC269_FIXUP_HP_MUTE_LED_MIC1, |
08fb0d0e | 6954 | ALC269_FIXUP_HP_MUTE_LED_MIC2, |
7f783bd5 | 6955 | ALC269_FIXUP_HP_MUTE_LED_MIC3, |
9f5c6faf | 6956 | ALC269_FIXUP_HP_GPIO_LED, |
9c5dc3bf KY |
6957 | ALC269_FIXUP_HP_GPIO_MIC1_LED, |
6958 | ALC269_FIXUP_HP_LINE1_MIC1_LED, | |
693b613d | 6959 | ALC269_FIXUP_INV_DMIC, |
108cc108 | 6960 | ALC269_FIXUP_LENOVO_DOCK, |
b590b38c | 6961 | ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, |
9b745ab8 | 6962 | ALC269_FIXUP_NO_SHUTUP, |
88cfcf86 | 6963 | ALC286_FIXUP_SONY_MIC_NO_PRESENCE, |
108cc108 | 6964 | ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT, |
73bdd597 DH |
6965 | ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
6966 | ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, | |
338cae56 | 6967 | ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, |
fcc6c877 | 6968 | ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, |
1efcdd9c | 6969 | ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET, |
73bdd597 DH |
6970 | ALC269_FIXUP_HEADSET_MODE, |
6971 | ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, | |
7819717b | 6972 | ALC269_FIXUP_ASPIRE_HEADSET_MIC, |
d240d1dc DH |
6973 | ALC269_FIXUP_ASUS_X101_FUNC, |
6974 | ALC269_FIXUP_ASUS_X101_VERB, | |
6975 | ALC269_FIXUP_ASUS_X101, | |
08a978db DR |
6976 | ALC271_FIXUP_AMIC_MIC2, |
6977 | ALC271_FIXUP_HP_GATE_MIC_JACK, | |
b1e8972e | 6978 | ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, |
42397004 | 6979 | ALC269_FIXUP_ACER_AC700, |
3e0d611b | 6980 | ALC269_FIXUP_LIMIT_INT_MIC_BOOST, |
2cede303 | 6981 | ALC269VB_FIXUP_ASUS_ZENBOOK, |
23870831 | 6982 | ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, |
f882c4be | 6983 | ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE, |
8e35cd4a | 6984 | ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED, |
02b504d9 | 6985 | ALC269VB_FIXUP_ORDISSIMO_EVE2, |
cd217a63 | 6986 | ALC283_FIXUP_CHROME_BOOK, |
0202e99c | 6987 | ALC283_FIXUP_SENSE_COMBO_JACK, |
7bba2157 | 6988 | ALC282_FIXUP_ASUS_TX300, |
1bb3e062 | 6989 | ALC283_FIXUP_INT_MIC, |
338cae56 | 6990 | ALC290_FIXUP_MONO_SPEAKERS, |
0f4881dc DH |
6991 | ALC290_FIXUP_MONO_SPEAKERS_HSJACK, |
6992 | ALC290_FIXUP_SUBWOOFER, | |
6993 | ALC290_FIXUP_SUBWOOFER_HSJACK, | |
b67ae3f1 | 6994 | ALC269_FIXUP_THINKPAD_ACPI, |
56f27013 | 6995 | ALC269_FIXUP_DMIC_THINKPAD_ACPI, |
5824ce8d | 6996 | ALC255_FIXUP_ACER_MIC_NO_PRESENCE, |
615966ad | 6997 | ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, |
9a22a8f5 | 6998 | ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
31278997 | 6999 | ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, |
9a22a8f5 | 7000 | ALC255_FIXUP_HEADSET_MODE, |
31278997 | 7001 | ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC, |
a22aa26f | 7002 | ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, |
1c37c223 | 7003 | ALC292_FIXUP_TPT440_DOCK, |
9a811230 | 7004 | ALC292_FIXUP_TPT440, |
abaa2274 | 7005 | ALC283_FIXUP_HEADSET_MIC, |
b3802783 | 7006 | ALC255_FIXUP_MIC_MUTE_LED, |
1a22e775 | 7007 | ALC282_FIXUP_ASPIRE_V5_PINS, |
c8426b27 | 7008 | ALC269VB_FIXUP_ASPIRE_E1_COEF, |
7a5255f1 | 7009 | ALC280_FIXUP_HP_GPIO4, |
eaa8e5ef | 7010 | ALC286_FIXUP_HP_GPIO_LED, |
33f4acd3 | 7011 | ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, |
b4b33f9d | 7012 | ALC280_FIXUP_HP_DOCK_PINS, |
04d5466a | 7013 | ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, |
98973f2f | 7014 | ALC280_FIXUP_HP_9480M, |
c3bb2b52 | 7015 | ALC245_FIXUP_HP_X360_AMP, |
d94befbb | 7016 | ALC285_FIXUP_HP_SPECTRE_X360_EB1, |
e1e62b98 KY |
7017 | ALC288_FIXUP_DELL_HEADSET_MODE, |
7018 | ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, | |
831bfdf9 HW |
7019 | ALC288_FIXUP_DELL_XPS_13, |
7020 | ALC288_FIXUP_DISABLE_AAMIX, | |
5fab5829 | 7021 | ALC292_FIXUP_DELL_E7X_AAMIX, |
8b99aba7 TI |
7022 | ALC292_FIXUP_DELL_E7X, |
7023 | ALC292_FIXUP_DISABLE_AAMIX, | |
c04017ea | 7024 | ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, |
54324221 | 7025 | ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE, |
977e6276 | 7026 | ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, |
2f726aec | 7027 | ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, |
6ed1131f | 7028 | ALC275_FIXUP_DELL_XPS, |
23adc192 | 7029 | ALC293_FIXUP_LENOVO_SPK_NOISE, |
3694cb29 | 7030 | ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, |
3b43b71f | 7031 | ALC255_FIXUP_DELL_SPK_NOISE, |
d1dd4211 | 7032 | ALC225_FIXUP_DISABLE_MIC_VREF, |
2ae95577 | 7033 | ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, |
e312a869 | 7034 | ALC295_FIXUP_DISABLE_DAC3, |
d2cd795c | 7035 | ALC285_FIXUP_SPEAKER2_TO_DAC1, |
f883982d | 7036 | ALC280_FIXUP_HP_HEADSET_MIC, |
e549d190 | 7037 | ALC221_FIXUP_HP_FRONT_MIC, |
c636b95e | 7038 | ALC292_FIXUP_TPT460, |
dd9aa335 | 7039 | ALC298_FIXUP_SPK_VOLUME, |
f86de9b1 | 7040 | ALC298_FIXUP_LENOVO_SPK_VOLUME, |
fd06c77e | 7041 | ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, |
823ff161 | 7042 | ALC269_FIXUP_ATIV_BOOK_8, |
4ba5c853 | 7043 | ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE, |
9eb5d0e6 | 7044 | ALC221_FIXUP_HP_MIC_NO_PRESENCE, |
c1732ede CC |
7045 | ALC256_FIXUP_ASUS_HEADSET_MODE, |
7046 | ALC256_FIXUP_ASUS_MIC, | |
eeed4cd1 | 7047 | ALC256_FIXUP_ASUS_AIO_GPIO2, |
216d7aeb CC |
7048 | ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, |
7049 | ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, | |
ca169cc2 | 7050 | ALC233_FIXUP_LENOVO_MULTI_CODECS, |
ea5c7eba | 7051 | ALC233_FIXUP_ACER_HEADSET_MIC, |
f33f79f3 | 7052 | ALC294_FIXUP_LENOVO_MIC_LOCATION, |
5f364135 | 7053 | ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, |
52e4e368 | 7054 | ALC225_FIXUP_S3_POP_NOISE, |
b84e8436 | 7055 | ALC700_FIXUP_INTEL_REFERENCE, |
92266651 KY |
7056 | ALC274_FIXUP_DELL_BIND_DACS, |
7057 | ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, | |
399c01aa | 7058 | ALC298_FIXUP_TPT470_DOCK_FIX, |
61fcf8ec | 7059 | ALC298_FIXUP_TPT470_DOCK, |
ae104a21 | 7060 | ALC255_FIXUP_DUMMY_LINEOUT_VERB, |
f0ba9d69 | 7061 | ALC255_FIXUP_DELL_HEADSET_MIC, |
0fbf21c3 | 7062 | ALC256_FIXUP_HUAWEI_MACH_WX9_PINS, |
a2ef03fe | 7063 | ALC298_FIXUP_HUAWEI_MBX_STEREO, |
bbf8ff6b | 7064 | ALC295_FIXUP_HP_X360, |
8a328ac1 | 7065 | ALC221_FIXUP_HP_HEADSET_MIC, |
c4cfcf6f | 7066 | ALC285_FIXUP_LENOVO_HEADPHONE_NOISE, |
e8ed64b0 | 7067 | ALC295_FIXUP_HP_AUTO_MUTE, |
33aaebd4 | 7068 | ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE, |
d8ae458e | 7069 | ALC294_FIXUP_ASUS_MIC, |
4e051106 JHP |
7070 | ALC294_FIXUP_ASUS_HEADSET_MIC, |
7071 | ALC294_FIXUP_ASUS_SPK, | |
89e3a568 | 7072 | ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE, |
c8c6ee61 | 7073 | ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE, |
cbc05fd6 | 7074 | ALC255_FIXUP_ACER_HEADSET_MIC, |
10f5b1b8 | 7075 | ALC295_FIXUP_CHROME_BOOK, |
8983eb60 | 7076 | ALC225_FIXUP_HEADSET_JACK, |
136824ef KY |
7077 | ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE, |
7078 | ALC225_FIXUP_WYSE_AUTO_MUTE, | |
7079 | ALC225_FIXUP_WYSE_DISABLE_MIC_VREF, | |
667a8f73 | 7080 | ALC286_FIXUP_ACER_AIO_HEADSET_MIC, |
8c8967a7 | 7081 | ALC256_FIXUP_ASUS_HEADSET_MIC, |
e1037354 | 7082 | ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, |
e2a829b3 | 7083 | ALC299_FIXUP_PREDATOR_SPK, |
bd9c10bc | 7084 | ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, |
e79c2269 KY |
7085 | ALC289_FIXUP_DELL_SPK2, |
7086 | ALC289_FIXUP_DUAL_SPK, | |
48e01504 CC |
7087 | ALC294_FIXUP_SPK2_TO_DAC1, |
7088 | ALC294_FIXUP_ASUS_DUAL_SPK, | |
6a6660d0 | 7089 | ALC285_FIXUP_THINKPAD_X1_GEN7, |
76f7dec0 | 7090 | ALC285_FIXUP_THINKPAD_HEADSET_JACK, |
8b33a134 | 7091 | ALC294_FIXUP_ASUS_HPE, |
1b94e59d | 7092 | ALC294_FIXUP_ASUS_COEF_1B, |
c3cdf189 LJ |
7093 | ALC294_FIXUP_ASUS_GX502_HP, |
7094 | ALC294_FIXUP_ASUS_GX502_PINS, | |
7095 | ALC294_FIXUP_ASUS_GX502_VERBS, | |
c1b55029 DC |
7096 | ALC294_FIXUP_ASUS_GU502_HP, |
7097 | ALC294_FIXUP_ASUS_GU502_PINS, | |
7098 | ALC294_FIXUP_ASUS_GU502_VERBS, | |
c611e659 | 7099 | ALC294_FIXUP_ASUS_G513_PINS, |
bc2c2354 | 7100 | ALC285_FIXUP_ASUS_G533Z_PINS, |
f5a88b0a | 7101 | ALC285_FIXUP_HP_GPIO_LED, |
431e76c3 | 7102 | ALC285_FIXUP_HP_MUTE_LED, |
e7d66cf7 | 7103 | ALC236_FIXUP_HP_GPIO_LED, |
24164f43 | 7104 | ALC236_FIXUP_HP_MUTE_LED, |
75b62ab6 | 7105 | ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF, |
a2d57ebe | 7106 | ALC298_FIXUP_SAMSUNG_AMP, |
14425f1f | 7107 | ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, |
ef248d9b | 7108 | ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, |
9e43342b | 7109 | ALC295_FIXUP_ASUS_MIC_NO_PRESENCE, |
8eae7e9b | 7110 | ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS, |
6e15d126 | 7111 | ALC269VC_FIXUP_ACER_HEADSET_MIC, |
781c90c0 | 7112 | ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE, |
293a92c1 | 7113 | ALC289_FIXUP_ASUS_GA401, |
4b43d05a | 7114 | ALC289_FIXUP_ASUS_GA502, |
f50a121d | 7115 | ALC256_FIXUP_ACER_MIC_NO_PRESENCE, |
56496253 | 7116 | ALC285_FIXUP_HP_GPIO_AMP_INIT, |
f1ec5be1 HC |
7117 | ALC269_FIXUP_CZC_B20, |
7118 | ALC269_FIXUP_CZC_TMI, | |
7119 | ALC269_FIXUP_CZC_L101, | |
7120 | ALC269_FIXUP_LEMOTE_A1802, | |
7121 | ALC269_FIXUP_LEMOTE_A190X, | |
e2d2fded | 7122 | ALC256_FIXUP_INTEL_NUC8_RUGGED, |
d1ee66c5 PC |
7123 | ALC233_FIXUP_INTEL_NUC8_DMIC, |
7124 | ALC233_FIXUP_INTEL_NUC8_BOOST, | |
73e7161e | 7125 | ALC256_FIXUP_INTEL_NUC10, |
fc19d559 | 7126 | ALC255_FIXUP_XIAOMI_HEADSET_MIC, |
13468bfa | 7127 | ALC274_FIXUP_HP_MIC, |
8a8de09c | 7128 | ALC274_FIXUP_HP_HEADSET_MIC, |
622464c8 | 7129 | ALC274_FIXUP_HP_ENVY_GPIO, |
ef9ce66f | 7130 | ALC256_FIXUP_ASUS_HPE, |
446b8185 | 7131 | ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK, |
a0ccbc53 | 7132 | ALC287_FIXUP_HP_GPIO_LED, |
9e885770 | 7133 | ALC256_FIXUP_HP_HEADSET_MIC, |
5fc462c3 | 7134 | ALC245_FIXUP_HP_GPIO_LED, |
92666d45 | 7135 | ALC236_FIXUP_DELL_AIO_HEADSET_MIC, |
34cdf405 | 7136 | ALC282_FIXUP_ACER_DISABLE_LINEOUT, |
495dc763 | 7137 | ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST, |
d0e18561 | 7138 | ALC256_FIXUP_ACER_HEADSET_MIC, |
26928ca1 | 7139 | ALC285_FIXUP_IDEAPAD_S740_COEF, |
bd15b155 | 7140 | ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST, |
8eedd3a7 | 7141 | ALC295_FIXUP_ASUS_DACS, |
5d84b531 | 7142 | ALC295_FIXUP_HP_OMEN, |
f2be77fe | 7143 | ALC285_FIXUP_HP_SPECTRE_X360, |
9ebaef05 | 7144 | ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, |
29c8f40b | 7145 | ALC623_FIXUP_LENOVO_THINKSTATION_P340, |
57c9e21a | 7146 | ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, |
8903376d | 7147 | ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST, |
ad7cc2d4 CB |
7148 | ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS, |
7149 | ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE, | |
7150 | ALC287_FIXUP_YOGA7_14ITL_SPEAKERS, | |
56ec3e75 | 7151 | ALC298_FIXUP_LENOVO_C940_DUET7, |
dd6dd6e3 | 7152 | ALC287_FIXUP_13S_GEN2_SPEAKERS, |
619764cc | 7153 | ALC256_FIXUP_SET_COEF_DEFAULTS, |
1278cc5a | 7154 | ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE, |
174a7fb3 | 7155 | ALC233_FIXUP_NO_AUDIO_JACK, |
edca7cc4 | 7156 | ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME, |
8f4c9042 BF |
7157 | ALC285_FIXUP_LEGION_Y9000X_SPEAKERS, |
7158 | ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE, | |
d3dca026 | 7159 | ALC287_FIXUP_LEGION_16ACHG6, |
ae7abe36 | 7160 | ALC287_FIXUP_CS35L41_I2C_2, |
b3fbe536 | 7161 | ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED, |
07bcab93 | 7162 | ALC245_FIXUP_CS35L41_SPI_2, |
ce18f905 | 7163 | ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED, |
07bcab93 LT |
7164 | ALC245_FIXUP_CS35L41_SPI_4, |
7165 | ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED, | |
91502a9a | 7166 | ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED, |
309d7363 | 7167 | ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE, |
1e24881d | 7168 | ALC287_FIXUP_LEGION_16ITHG6, |
3790a3d6 PJ |
7169 | ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK, |
7170 | ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN, | |
f1d4e28b KY |
7171 | }; |
7172 | ||
56ec3e75 TI |
7173 | /* A special fixup for Lenovo C940 and Yoga Duet 7; |
7174 | * both have the very same PCI SSID, and we need to apply different fixups | |
7175 | * depending on the codec ID | |
7176 | */ | |
7177 | static void alc298_fixup_lenovo_c940_duet7(struct hda_codec *codec, | |
7178 | const struct hda_fixup *fix, | |
7179 | int action) | |
7180 | { | |
7181 | int id; | |
7182 | ||
7183 | if (codec->core.vendor_id == 0x10ec0298) | |
7184 | id = ALC298_FIXUP_LENOVO_SPK_VOLUME; /* C940 */ | |
7185 | else | |
7186 | id = ALC287_FIXUP_YOGA7_14ITL_SPEAKERS; /* Duet 7 */ | |
7187 | __snd_hda_apply_fixup(codec, id, action, 0); | |
7188 | } | |
7189 | ||
1727a771 | 7190 | static const struct hda_fixup alc269_fixups[] = { |
f73bbf63 KHF |
7191 | [ALC269_FIXUP_GPIO2] = { |
7192 | .type = HDA_FIXUP_FUNC, | |
7193 | .v.func = alc_fixup_gpio2, | |
7194 | }, | |
1d045db9 | 7195 | [ALC269_FIXUP_SONY_VAIO] = { |
fd108215 TI |
7196 | .type = HDA_FIXUP_PINCTLS, |
7197 | .v.pins = (const struct hda_pintbl[]) { | |
7198 | {0x19, PIN_VREFGRD}, | |
1d045db9 TI |
7199 | {} |
7200 | } | |
f1d4e28b | 7201 | }, |
1d045db9 | 7202 | [ALC275_FIXUP_SONY_VAIO_GPIO2] = { |
ae065f1c TI |
7203 | .type = HDA_FIXUP_FUNC, |
7204 | .v.func = alc275_fixup_gpio4_off, | |
1d045db9 TI |
7205 | .chained = true, |
7206 | .chain_id = ALC269_FIXUP_SONY_VAIO | |
7207 | }, | |
7208 | [ALC269_FIXUP_DELL_M101Z] = { | |
1727a771 | 7209 | .type = HDA_FIXUP_VERBS, |
1d045db9 TI |
7210 | .v.verbs = (const struct hda_verb[]) { |
7211 | /* Enables internal speaker */ | |
7212 | {0x20, AC_VERB_SET_COEF_INDEX, 13}, | |
7213 | {0x20, AC_VERB_SET_PROC_COEF, 0x4040}, | |
7214 | {} | |
7215 | } | |
7216 | }, | |
7217 | [ALC269_FIXUP_SKU_IGNORE] = { | |
1727a771 | 7218 | .type = HDA_FIXUP_FUNC, |
23d30f28 | 7219 | .v.func = alc_fixup_sku_ignore, |
1d045db9 TI |
7220 | }, |
7221 | [ALC269_FIXUP_ASUS_G73JW] = { | |
1727a771 TI |
7222 | .type = HDA_FIXUP_PINS, |
7223 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
7224 | { 0x17, 0x99130111 }, /* subwoofer */ |
7225 | { } | |
7226 | } | |
7227 | }, | |
7228 | [ALC269_FIXUP_LENOVO_EAPD] = { | |
1727a771 | 7229 | .type = HDA_FIXUP_VERBS, |
1d045db9 TI |
7230 | .v.verbs = (const struct hda_verb[]) { |
7231 | {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0}, | |
7232 | {} | |
7233 | } | |
7234 | }, | |
7235 | [ALC275_FIXUP_SONY_HWEQ] = { | |
1727a771 | 7236 | .type = HDA_FIXUP_FUNC, |
1d045db9 TI |
7237 | .v.func = alc269_fixup_hweq, |
7238 | .chained = true, | |
7239 | .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2 | |
7240 | }, | |
e9bd7d5c TI |
7241 | [ALC275_FIXUP_SONY_DISABLE_AAMIX] = { |
7242 | .type = HDA_FIXUP_FUNC, | |
7243 | .v.func = alc_fixup_disable_aamix, | |
7244 | .chained = true, | |
7245 | .chain_id = ALC269_FIXUP_SONY_VAIO | |
7246 | }, | |
1d045db9 | 7247 | [ALC271_FIXUP_DMIC] = { |
1727a771 | 7248 | .type = HDA_FIXUP_FUNC, |
1d045db9 | 7249 | .v.func = alc271_fixup_dmic, |
f1d4e28b | 7250 | }, |
017f2a10 | 7251 | [ALC269_FIXUP_PCM_44K] = { |
1727a771 | 7252 | .type = HDA_FIXUP_FUNC, |
017f2a10 | 7253 | .v.func = alc269_fixup_pcm_44k, |
012e7eb1 DH |
7254 | .chained = true, |
7255 | .chain_id = ALC269_FIXUP_QUANTA_MUTE | |
017f2a10 | 7256 | }, |
adabb3ec | 7257 | [ALC269_FIXUP_STEREO_DMIC] = { |
1727a771 | 7258 | .type = HDA_FIXUP_FUNC, |
adabb3ec TI |
7259 | .v.func = alc269_fixup_stereo_dmic, |
7260 | }, | |
7c478f03 DH |
7261 | [ALC269_FIXUP_HEADSET_MIC] = { |
7262 | .type = HDA_FIXUP_FUNC, | |
7263 | .v.func = alc269_fixup_headset_mic, | |
7264 | }, | |
24519911 | 7265 | [ALC269_FIXUP_QUANTA_MUTE] = { |
1727a771 | 7266 | .type = HDA_FIXUP_FUNC, |
24519911 TI |
7267 | .v.func = alc269_fixup_quanta_mute, |
7268 | }, | |
7269 | [ALC269_FIXUP_LIFEBOOK] = { | |
1727a771 TI |
7270 | .type = HDA_FIXUP_PINS, |
7271 | .v.pins = (const struct hda_pintbl[]) { | |
24519911 TI |
7272 | { 0x1a, 0x2101103f }, /* dock line-out */ |
7273 | { 0x1b, 0x23a11040 }, /* dock mic-in */ | |
7274 | { } | |
7275 | }, | |
7276 | .chained = true, | |
7277 | .chain_id = ALC269_FIXUP_QUANTA_MUTE | |
7278 | }, | |
2041d564 DH |
7279 | [ALC269_FIXUP_LIFEBOOK_EXTMIC] = { |
7280 | .type = HDA_FIXUP_PINS, | |
7281 | .v.pins = (const struct hda_pintbl[]) { | |
7282 | { 0x19, 0x01a1903c }, /* headset mic, with jack detect */ | |
7283 | { } | |
7284 | }, | |
7285 | }, | |
cc7016ab TI |
7286 | [ALC269_FIXUP_LIFEBOOK_HP_PIN] = { |
7287 | .type = HDA_FIXUP_PINS, | |
7288 | .v.pins = (const struct hda_pintbl[]) { | |
7289 | { 0x21, 0x0221102f }, /* HP out */ | |
7290 | { } | |
7291 | }, | |
7292 | }, | |
4df3fd17 TI |
7293 | [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = { |
7294 | .type = HDA_FIXUP_FUNC, | |
7295 | .v.func = alc269_fixup_pincfg_no_hp_to_lineout, | |
7296 | }, | |
fdcc968a JMG |
7297 | [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = { |
7298 | .type = HDA_FIXUP_FUNC, | |
7299 | .v.func = alc269_fixup_pincfg_U7x7_headset_mic, | |
7300 | }, | |
a4297b5d | 7301 | [ALC269_FIXUP_AMIC] = { |
1727a771 TI |
7302 | .type = HDA_FIXUP_PINS, |
7303 | .v.pins = (const struct hda_pintbl[]) { | |
a4297b5d TI |
7304 | { 0x14, 0x99130110 }, /* speaker */ |
7305 | { 0x15, 0x0121401f }, /* HP out */ | |
7306 | { 0x18, 0x01a19c20 }, /* mic */ | |
7307 | { 0x19, 0x99a3092f }, /* int-mic */ | |
7308 | { } | |
7309 | }, | |
7310 | }, | |
7311 | [ALC269_FIXUP_DMIC] = { | |
1727a771 TI |
7312 | .type = HDA_FIXUP_PINS, |
7313 | .v.pins = (const struct hda_pintbl[]) { | |
a4297b5d TI |
7314 | { 0x12, 0x99a3092f }, /* int-mic */ |
7315 | { 0x14, 0x99130110 }, /* speaker */ | |
7316 | { 0x15, 0x0121401f }, /* HP out */ | |
7317 | { 0x18, 0x01a19c20 }, /* mic */ | |
7318 | { } | |
7319 | }, | |
7320 | }, | |
7321 | [ALC269VB_FIXUP_AMIC] = { | |
1727a771 TI |
7322 | .type = HDA_FIXUP_PINS, |
7323 | .v.pins = (const struct hda_pintbl[]) { | |
a4297b5d TI |
7324 | { 0x14, 0x99130110 }, /* speaker */ |
7325 | { 0x18, 0x01a19c20 }, /* mic */ | |
7326 | { 0x19, 0x99a3092f }, /* int-mic */ | |
7327 | { 0x21, 0x0121401f }, /* HP out */ | |
7328 | { } | |
7329 | }, | |
7330 | }, | |
2267ea97 | 7331 | [ALC269VB_FIXUP_DMIC] = { |
1727a771 TI |
7332 | .type = HDA_FIXUP_PINS, |
7333 | .v.pins = (const struct hda_pintbl[]) { | |
a4297b5d TI |
7334 | { 0x12, 0x99a3092f }, /* int-mic */ |
7335 | { 0x14, 0x99130110 }, /* speaker */ | |
7336 | { 0x18, 0x01a19c20 }, /* mic */ | |
7337 | { 0x21, 0x0121401f }, /* HP out */ | |
7338 | { } | |
7339 | }, | |
7340 | }, | |
08fb0d0e | 7341 | [ALC269_FIXUP_HP_MUTE_LED] = { |
1727a771 | 7342 | .type = HDA_FIXUP_FUNC, |
08fb0d0e | 7343 | .v.func = alc269_fixup_hp_mute_led, |
6d3cd5d4 | 7344 | }, |
d06ac143 DH |
7345 | [ALC269_FIXUP_HP_MUTE_LED_MIC1] = { |
7346 | .type = HDA_FIXUP_FUNC, | |
7347 | .v.func = alc269_fixup_hp_mute_led_mic1, | |
7348 | }, | |
08fb0d0e | 7349 | [ALC269_FIXUP_HP_MUTE_LED_MIC2] = { |
1727a771 | 7350 | .type = HDA_FIXUP_FUNC, |
08fb0d0e | 7351 | .v.func = alc269_fixup_hp_mute_led_mic2, |
420b0feb | 7352 | }, |
7f783bd5 TB |
7353 | [ALC269_FIXUP_HP_MUTE_LED_MIC3] = { |
7354 | .type = HDA_FIXUP_FUNC, | |
7355 | .v.func = alc269_fixup_hp_mute_led_mic3, | |
e8ed64b0 GKK |
7356 | .chained = true, |
7357 | .chain_id = ALC295_FIXUP_HP_AUTO_MUTE | |
7f783bd5 | 7358 | }, |
9f5c6faf TI |
7359 | [ALC269_FIXUP_HP_GPIO_LED] = { |
7360 | .type = HDA_FIXUP_FUNC, | |
7361 | .v.func = alc269_fixup_hp_gpio_led, | |
7362 | }, | |
9c5dc3bf KY |
7363 | [ALC269_FIXUP_HP_GPIO_MIC1_LED] = { |
7364 | .type = HDA_FIXUP_FUNC, | |
7365 | .v.func = alc269_fixup_hp_gpio_mic1_led, | |
7366 | }, | |
7367 | [ALC269_FIXUP_HP_LINE1_MIC1_LED] = { | |
7368 | .type = HDA_FIXUP_FUNC, | |
7369 | .v.func = alc269_fixup_hp_line1_mic1_led, | |
7370 | }, | |
693b613d | 7371 | [ALC269_FIXUP_INV_DMIC] = { |
1727a771 | 7372 | .type = HDA_FIXUP_FUNC, |
9d36a7dc | 7373 | .v.func = alc_fixup_inv_dmic, |
693b613d | 7374 | }, |
9b745ab8 TI |
7375 | [ALC269_FIXUP_NO_SHUTUP] = { |
7376 | .type = HDA_FIXUP_FUNC, | |
7377 | .v.func = alc_fixup_no_shutup, | |
7378 | }, | |
108cc108 | 7379 | [ALC269_FIXUP_LENOVO_DOCK] = { |
1727a771 TI |
7380 | .type = HDA_FIXUP_PINS, |
7381 | .v.pins = (const struct hda_pintbl[]) { | |
108cc108 DH |
7382 | { 0x19, 0x23a11040 }, /* dock mic */ |
7383 | { 0x1b, 0x2121103f }, /* dock headphone */ | |
7384 | { } | |
7385 | }, | |
7386 | .chained = true, | |
7387 | .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT | |
7388 | }, | |
b590b38c TI |
7389 | [ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST] = { |
7390 | .type = HDA_FIXUP_FUNC, | |
7391 | .v.func = alc269_fixup_limit_int_mic_boost, | |
7392 | .chained = true, | |
7393 | .chain_id = ALC269_FIXUP_LENOVO_DOCK, | |
7394 | }, | |
108cc108 | 7395 | [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = { |
1727a771 | 7396 | .type = HDA_FIXUP_FUNC, |
108cc108 | 7397 | .v.func = alc269_fixup_pincfg_no_hp_to_lineout, |
52129000 DH |
7398 | .chained = true, |
7399 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI, | |
108cc108 | 7400 | }, |
73bdd597 DH |
7401 | [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = { |
7402 | .type = HDA_FIXUP_PINS, | |
7403 | .v.pins = (const struct hda_pintbl[]) { | |
7404 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7405 | { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7406 | { } | |
7407 | }, | |
7408 | .chained = true, | |
7409 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
7410 | }, | |
7411 | [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = { | |
7412 | .type = HDA_FIXUP_PINS, | |
7413 | .v.pins = (const struct hda_pintbl[]) { | |
7414 | { 0x16, 0x21014020 }, /* dock line out */ | |
7415 | { 0x19, 0x21a19030 }, /* dock mic */ | |
7416 | { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7417 | { } | |
7418 | }, | |
7419 | .chained = true, | |
7420 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
7421 | }, | |
338cae56 DH |
7422 | [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = { |
7423 | .type = HDA_FIXUP_PINS, | |
7424 | .v.pins = (const struct hda_pintbl[]) { | |
7425 | { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7426 | { } | |
7427 | }, | |
7428 | .chained = true, | |
7429 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
7430 | }, | |
fcc6c877 KY |
7431 | [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = { |
7432 | .type = HDA_FIXUP_PINS, | |
7433 | .v.pins = (const struct hda_pintbl[]) { | |
7434 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7435 | { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7436 | { } | |
7437 | }, | |
7438 | .chained = true, | |
7439 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
7440 | }, | |
73bdd597 DH |
7441 | [ALC269_FIXUP_HEADSET_MODE] = { |
7442 | .type = HDA_FIXUP_FUNC, | |
7443 | .v.func = alc_fixup_headset_mode, | |
6676f308 | 7444 | .chained = true, |
b3802783 | 7445 | .chain_id = ALC255_FIXUP_MIC_MUTE_LED |
73bdd597 DH |
7446 | }, |
7447 | [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = { | |
7448 | .type = HDA_FIXUP_FUNC, | |
7449 | .v.func = alc_fixup_headset_mode_no_hp_mic, | |
7450 | }, | |
7819717b TI |
7451 | [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = { |
7452 | .type = HDA_FIXUP_PINS, | |
7453 | .v.pins = (const struct hda_pintbl[]) { | |
7454 | { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */ | |
7455 | { } | |
7456 | }, | |
7457 | .chained = true, | |
7458 | .chain_id = ALC269_FIXUP_HEADSET_MODE, | |
7459 | }, | |
88cfcf86 DH |
7460 | [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = { |
7461 | .type = HDA_FIXUP_PINS, | |
7462 | .v.pins = (const struct hda_pintbl[]) { | |
7463 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7464 | { } | |
7465 | }, | |
fbc78ad6 DH |
7466 | .chained = true, |
7467 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
88cfcf86 | 7468 | }, |
0fbf21c3 | 7469 | [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = { |
8ac51bbc AB |
7470 | .type = HDA_FIXUP_PINS, |
7471 | .v.pins = (const struct hda_pintbl[]) { | |
7472 | {0x12, 0x90a60130}, | |
7473 | {0x13, 0x40000000}, | |
7474 | {0x14, 0x90170110}, | |
7475 | {0x18, 0x411111f0}, | |
7476 | {0x19, 0x04a11040}, | |
7477 | {0x1a, 0x411111f0}, | |
7478 | {0x1b, 0x90170112}, | |
7479 | {0x1d, 0x40759a05}, | |
7480 | {0x1e, 0x411111f0}, | |
7481 | {0x21, 0x04211020}, | |
7482 | { } | |
7483 | }, | |
e2744fd7 AB |
7484 | .chained = true, |
7485 | .chain_id = ALC255_FIXUP_MIC_MUTE_LED | |
8ac51bbc | 7486 | }, |
a2ef03fe TE |
7487 | [ALC298_FIXUP_HUAWEI_MBX_STEREO] = { |
7488 | .type = HDA_FIXUP_FUNC, | |
7489 | .v.func = alc298_fixup_huawei_mbx_stereo, | |
7490 | .chained = true, | |
7491 | .chain_id = ALC255_FIXUP_MIC_MUTE_LED | |
7492 | }, | |
d240d1dc DH |
7493 | [ALC269_FIXUP_ASUS_X101_FUNC] = { |
7494 | .type = HDA_FIXUP_FUNC, | |
7495 | .v.func = alc269_fixup_x101_headset_mic, | |
7496 | }, | |
7497 | [ALC269_FIXUP_ASUS_X101_VERB] = { | |
7498 | .type = HDA_FIXUP_VERBS, | |
7499 | .v.verbs = (const struct hda_verb[]) { | |
7500 | {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | |
7501 | {0x20, AC_VERB_SET_COEF_INDEX, 0x08}, | |
7502 | {0x20, AC_VERB_SET_PROC_COEF, 0x0310}, | |
7503 | { } | |
7504 | }, | |
7505 | .chained = true, | |
7506 | .chain_id = ALC269_FIXUP_ASUS_X101_FUNC | |
7507 | }, | |
7508 | [ALC269_FIXUP_ASUS_X101] = { | |
7509 | .type = HDA_FIXUP_PINS, | |
7510 | .v.pins = (const struct hda_pintbl[]) { | |
7511 | { 0x18, 0x04a1182c }, /* Headset mic */ | |
7512 | { } | |
7513 | }, | |
7514 | .chained = true, | |
7515 | .chain_id = ALC269_FIXUP_ASUS_X101_VERB | |
7516 | }, | |
08a978db | 7517 | [ALC271_FIXUP_AMIC_MIC2] = { |
1727a771 TI |
7518 | .type = HDA_FIXUP_PINS, |
7519 | .v.pins = (const struct hda_pintbl[]) { | |
08a978db DR |
7520 | { 0x14, 0x99130110 }, /* speaker */ |
7521 | { 0x19, 0x01a19c20 }, /* mic */ | |
7522 | { 0x1b, 0x99a7012f }, /* int-mic */ | |
7523 | { 0x21, 0x0121401f }, /* HP out */ | |
7524 | { } | |
7525 | }, | |
7526 | }, | |
7527 | [ALC271_FIXUP_HP_GATE_MIC_JACK] = { | |
1727a771 | 7528 | .type = HDA_FIXUP_FUNC, |
08a978db DR |
7529 | .v.func = alc271_hp_gate_mic_jack, |
7530 | .chained = true, | |
7531 | .chain_id = ALC271_FIXUP_AMIC_MIC2, | |
7532 | }, | |
b1e8972e OR |
7533 | [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = { |
7534 | .type = HDA_FIXUP_FUNC, | |
7535 | .v.func = alc269_fixup_limit_int_mic_boost, | |
7536 | .chained = true, | |
7537 | .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK, | |
7538 | }, | |
42397004 DR |
7539 | [ALC269_FIXUP_ACER_AC700] = { |
7540 | .type = HDA_FIXUP_PINS, | |
7541 | .v.pins = (const struct hda_pintbl[]) { | |
7542 | { 0x12, 0x99a3092f }, /* int-mic */ | |
7543 | { 0x14, 0x99130110 }, /* speaker */ | |
7544 | { 0x18, 0x03a11c20 }, /* mic */ | |
7545 | { 0x1e, 0x0346101e }, /* SPDIF1 */ | |
7546 | { 0x21, 0x0321101f }, /* HP out */ | |
7547 | { } | |
7548 | }, | |
7549 | .chained = true, | |
7550 | .chain_id = ALC271_FIXUP_DMIC, | |
7551 | }, | |
3e0d611b DH |
7552 | [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = { |
7553 | .type = HDA_FIXUP_FUNC, | |
7554 | .v.func = alc269_fixup_limit_int_mic_boost, | |
2793769f DH |
7555 | .chained = true, |
7556 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI, | |
3e0d611b | 7557 | }, |
2cede303 OR |
7558 | [ALC269VB_FIXUP_ASUS_ZENBOOK] = { |
7559 | .type = HDA_FIXUP_FUNC, | |
7560 | .v.func = alc269_fixup_limit_int_mic_boost, | |
7561 | .chained = true, | |
7562 | .chain_id = ALC269VB_FIXUP_DMIC, | |
7563 | }, | |
23870831 TI |
7564 | [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = { |
7565 | .type = HDA_FIXUP_VERBS, | |
7566 | .v.verbs = (const struct hda_verb[]) { | |
7567 | /* class-D output amp +5dB */ | |
7568 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 }, | |
7569 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 }, | |
7570 | {} | |
7571 | }, | |
7572 | .chained = true, | |
7573 | .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK, | |
7574 | }, | |
f882c4be MT |
7575 | [ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE] = { |
7576 | .type = HDA_FIXUP_PINS, | |
7577 | .v.pins = (const struct hda_pintbl[]) { | |
7578 | { 0x18, 0x01a110f0 }, /* use as headset mic */ | |
7579 | { } | |
7580 | }, | |
7581 | .chained = true, | |
7582 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
7583 | }, | |
8e35cd4a DH |
7584 | [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = { |
7585 | .type = HDA_FIXUP_FUNC, | |
7586 | .v.func = alc269_fixup_limit_int_mic_boost, | |
7587 | .chained = true, | |
7588 | .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1, | |
7589 | }, | |
02b504d9 AA |
7590 | [ALC269VB_FIXUP_ORDISSIMO_EVE2] = { |
7591 | .type = HDA_FIXUP_PINS, | |
7592 | .v.pins = (const struct hda_pintbl[]) { | |
7593 | { 0x12, 0x99a3092f }, /* int-mic */ | |
7594 | { 0x18, 0x03a11d20 }, /* mic */ | |
7595 | { 0x19, 0x411111f0 }, /* Unused bogus pin */ | |
7596 | { } | |
7597 | }, | |
7598 | }, | |
cd217a63 KY |
7599 | [ALC283_FIXUP_CHROME_BOOK] = { |
7600 | .type = HDA_FIXUP_FUNC, | |
7601 | .v.func = alc283_fixup_chromebook, | |
7602 | }, | |
0202e99c KY |
7603 | [ALC283_FIXUP_SENSE_COMBO_JACK] = { |
7604 | .type = HDA_FIXUP_FUNC, | |
7605 | .v.func = alc283_fixup_sense_combo_jack, | |
7606 | .chained = true, | |
7607 | .chain_id = ALC283_FIXUP_CHROME_BOOK, | |
7608 | }, | |
7bba2157 TI |
7609 | [ALC282_FIXUP_ASUS_TX300] = { |
7610 | .type = HDA_FIXUP_FUNC, | |
7611 | .v.func = alc282_fixup_asus_tx300, | |
7612 | }, | |
1bb3e062 KY |
7613 | [ALC283_FIXUP_INT_MIC] = { |
7614 | .type = HDA_FIXUP_VERBS, | |
7615 | .v.verbs = (const struct hda_verb[]) { | |
7616 | {0x20, AC_VERB_SET_COEF_INDEX, 0x1a}, | |
7617 | {0x20, AC_VERB_SET_PROC_COEF, 0x0011}, | |
7618 | { } | |
7619 | }, | |
7620 | .chained = true, | |
7621 | .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST | |
7622 | }, | |
0f4881dc DH |
7623 | [ALC290_FIXUP_SUBWOOFER_HSJACK] = { |
7624 | .type = HDA_FIXUP_PINS, | |
7625 | .v.pins = (const struct hda_pintbl[]) { | |
7626 | { 0x17, 0x90170112 }, /* subwoofer */ | |
7627 | { } | |
7628 | }, | |
7629 | .chained = true, | |
7630 | .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, | |
7631 | }, | |
7632 | [ALC290_FIXUP_SUBWOOFER] = { | |
7633 | .type = HDA_FIXUP_PINS, | |
7634 | .v.pins = (const struct hda_pintbl[]) { | |
7635 | { 0x17, 0x90170112 }, /* subwoofer */ | |
7636 | { } | |
7637 | }, | |
7638 | .chained = true, | |
7639 | .chain_id = ALC290_FIXUP_MONO_SPEAKERS, | |
7640 | }, | |
338cae56 DH |
7641 | [ALC290_FIXUP_MONO_SPEAKERS] = { |
7642 | .type = HDA_FIXUP_FUNC, | |
7643 | .v.func = alc290_fixup_mono_speakers, | |
0f4881dc DH |
7644 | }, |
7645 | [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = { | |
7646 | .type = HDA_FIXUP_FUNC, | |
7647 | .v.func = alc290_fixup_mono_speakers, | |
338cae56 DH |
7648 | .chained = true, |
7649 | .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, | |
7650 | }, | |
b67ae3f1 DH |
7651 | [ALC269_FIXUP_THINKPAD_ACPI] = { |
7652 | .type = HDA_FIXUP_FUNC, | |
d5a6cabf | 7653 | .v.func = alc_fixup_thinkpad_acpi, |
09da111a TI |
7654 | .chained = true, |
7655 | .chain_id = ALC269_FIXUP_SKU_IGNORE, | |
b67ae3f1 | 7656 | }, |
56f27013 DH |
7657 | [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = { |
7658 | .type = HDA_FIXUP_FUNC, | |
7659 | .v.func = alc_fixup_inv_dmic, | |
7660 | .chained = true, | |
7661 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI, | |
7662 | }, | |
5824ce8d | 7663 | [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = { |
17d30460 HW |
7664 | .type = HDA_FIXUP_PINS, |
7665 | .v.pins = (const struct hda_pintbl[]) { | |
7666 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7667 | { } | |
5824ce8d CC |
7668 | }, |
7669 | .chained = true, | |
17d30460 | 7670 | .chain_id = ALC255_FIXUP_HEADSET_MODE |
5824ce8d | 7671 | }, |
615966ad CC |
7672 | [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = { |
7673 | .type = HDA_FIXUP_PINS, | |
7674 | .v.pins = (const struct hda_pintbl[]) { | |
7675 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7676 | { } | |
7677 | }, | |
7678 | .chained = true, | |
7679 | .chain_id = ALC255_FIXUP_HEADSET_MODE | |
7680 | }, | |
9a22a8f5 KY |
7681 | [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = { |
7682 | .type = HDA_FIXUP_PINS, | |
7683 | .v.pins = (const struct hda_pintbl[]) { | |
7684 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7685 | { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7686 | { } | |
7687 | }, | |
7688 | .chained = true, | |
7689 | .chain_id = ALC255_FIXUP_HEADSET_MODE | |
7690 | }, | |
31278997 KY |
7691 | [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = { |
7692 | .type = HDA_FIXUP_PINS, | |
7693 | .v.pins = (const struct hda_pintbl[]) { | |
7694 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7695 | { } | |
7696 | }, | |
7697 | .chained = true, | |
7698 | .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC | |
7699 | }, | |
9a22a8f5 KY |
7700 | [ALC255_FIXUP_HEADSET_MODE] = { |
7701 | .type = HDA_FIXUP_FUNC, | |
7702 | .v.func = alc_fixup_headset_mode_alc255, | |
4a83d42a | 7703 | .chained = true, |
b3802783 | 7704 | .chain_id = ALC255_FIXUP_MIC_MUTE_LED |
9a22a8f5 | 7705 | }, |
31278997 KY |
7706 | [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = { |
7707 | .type = HDA_FIXUP_FUNC, | |
7708 | .v.func = alc_fixup_headset_mode_alc255_no_hp_mic, | |
7709 | }, | |
a22aa26f KY |
7710 | [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = { |
7711 | .type = HDA_FIXUP_PINS, | |
7712 | .v.pins = (const struct hda_pintbl[]) { | |
7713 | { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7714 | { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7715 | { } | |
7716 | }, | |
7717 | .chained = true, | |
7718 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
7719 | }, | |
1c37c223 | 7720 | [ALC292_FIXUP_TPT440_DOCK] = { |
ec56af67 | 7721 | .type = HDA_FIXUP_FUNC, |
7f57d803 | 7722 | .v.func = alc_fixup_tpt440_dock, |
1c37c223 TI |
7723 | .chained = true, |
7724 | .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST | |
7725 | }, | |
9a811230 TI |
7726 | [ALC292_FIXUP_TPT440] = { |
7727 | .type = HDA_FIXUP_FUNC, | |
157f0b7f | 7728 | .v.func = alc_fixup_disable_aamix, |
9a811230 TI |
7729 | .chained = true, |
7730 | .chain_id = ALC292_FIXUP_TPT440_DOCK, | |
7731 | }, | |
abaa2274 | 7732 | [ALC283_FIXUP_HEADSET_MIC] = { |
9dc12862 DD |
7733 | .type = HDA_FIXUP_PINS, |
7734 | .v.pins = (const struct hda_pintbl[]) { | |
7735 | { 0x19, 0x04a110f0 }, | |
7736 | { }, | |
7737 | }, | |
7738 | }, | |
b3802783 | 7739 | [ALC255_FIXUP_MIC_MUTE_LED] = { |
00ef9940 | 7740 | .type = HDA_FIXUP_FUNC, |
8a503555 | 7741 | .v.func = alc_fixup_micmute_led, |
00ef9940 | 7742 | }, |
1a22e775 TI |
7743 | [ALC282_FIXUP_ASPIRE_V5_PINS] = { |
7744 | .type = HDA_FIXUP_PINS, | |
7745 | .v.pins = (const struct hda_pintbl[]) { | |
7746 | { 0x12, 0x90a60130 }, | |
7747 | { 0x14, 0x90170110 }, | |
7748 | { 0x17, 0x40000008 }, | |
7749 | { 0x18, 0x411111f0 }, | |
0420694d | 7750 | { 0x19, 0x01a1913c }, |
1a22e775 TI |
7751 | { 0x1a, 0x411111f0 }, |
7752 | { 0x1b, 0x411111f0 }, | |
7753 | { 0x1d, 0x40f89b2d }, | |
7754 | { 0x1e, 0x411111f0 }, | |
7755 | { 0x21, 0x0321101f }, | |
7756 | { }, | |
7757 | }, | |
7758 | }, | |
c8426b27 TI |
7759 | [ALC269VB_FIXUP_ASPIRE_E1_COEF] = { |
7760 | .type = HDA_FIXUP_FUNC, | |
7761 | .v.func = alc269vb_fixup_aspire_e1_coef, | |
7762 | }, | |
7a5255f1 DH |
7763 | [ALC280_FIXUP_HP_GPIO4] = { |
7764 | .type = HDA_FIXUP_FUNC, | |
7765 | .v.func = alc280_fixup_hp_gpio4, | |
7766 | }, | |
eaa8e5ef KY |
7767 | [ALC286_FIXUP_HP_GPIO_LED] = { |
7768 | .type = HDA_FIXUP_FUNC, | |
7769 | .v.func = alc286_fixup_hp_gpio_led, | |
7770 | }, | |
33f4acd3 DH |
7771 | [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = { |
7772 | .type = HDA_FIXUP_FUNC, | |
7773 | .v.func = alc280_fixup_hp_gpio2_mic_hotkey, | |
7774 | }, | |
b4b33f9d TC |
7775 | [ALC280_FIXUP_HP_DOCK_PINS] = { |
7776 | .type = HDA_FIXUP_PINS, | |
7777 | .v.pins = (const struct hda_pintbl[]) { | |
7778 | { 0x1b, 0x21011020 }, /* line-out */ | |
7779 | { 0x1a, 0x01a1903c }, /* headset mic */ | |
7780 | { 0x18, 0x2181103f }, /* line-in */ | |
7781 | { }, | |
7782 | }, | |
7783 | .chained = true, | |
7784 | .chain_id = ALC280_FIXUP_HP_GPIO4 | |
7785 | }, | |
04d5466a JK |
7786 | [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = { |
7787 | .type = HDA_FIXUP_PINS, | |
7788 | .v.pins = (const struct hda_pintbl[]) { | |
7789 | { 0x1b, 0x21011020 }, /* line-out */ | |
7790 | { 0x18, 0x2181103f }, /* line-in */ | |
7791 | { }, | |
7792 | }, | |
7793 | .chained = true, | |
7794 | .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED | |
7795 | }, | |
98973f2f KP |
7796 | [ALC280_FIXUP_HP_9480M] = { |
7797 | .type = HDA_FIXUP_FUNC, | |
7798 | .v.func = alc280_fixup_hp_9480m, | |
7799 | }, | |
c3bb2b52 TI |
7800 | [ALC245_FIXUP_HP_X360_AMP] = { |
7801 | .type = HDA_FIXUP_FUNC, | |
7802 | .v.func = alc245_fixup_hp_x360_amp, | |
5fc462c3 JC |
7803 | .chained = true, |
7804 | .chain_id = ALC245_FIXUP_HP_GPIO_LED | |
c3bb2b52 | 7805 | }, |
e1e62b98 KY |
7806 | [ALC288_FIXUP_DELL_HEADSET_MODE] = { |
7807 | .type = HDA_FIXUP_FUNC, | |
7808 | .v.func = alc_fixup_headset_mode_dell_alc288, | |
7809 | .chained = true, | |
b3802783 | 7810 | .chain_id = ALC255_FIXUP_MIC_MUTE_LED |
e1e62b98 KY |
7811 | }, |
7812 | [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = { | |
7813 | .type = HDA_FIXUP_PINS, | |
7814 | .v.pins = (const struct hda_pintbl[]) { | |
7815 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7816 | { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7817 | { } | |
7818 | }, | |
7819 | .chained = true, | |
7820 | .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE | |
7821 | }, | |
831bfdf9 HW |
7822 | [ALC288_FIXUP_DISABLE_AAMIX] = { |
7823 | .type = HDA_FIXUP_FUNC, | |
7824 | .v.func = alc_fixup_disable_aamix, | |
7825 | .chained = true, | |
d44a6864 | 7826 | .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE |
831bfdf9 HW |
7827 | }, |
7828 | [ALC288_FIXUP_DELL_XPS_13] = { | |
7829 | .type = HDA_FIXUP_FUNC, | |
7830 | .v.func = alc_fixup_dell_xps13, | |
7831 | .chained = true, | |
7832 | .chain_id = ALC288_FIXUP_DISABLE_AAMIX | |
7833 | }, | |
8b99aba7 TI |
7834 | [ALC292_FIXUP_DISABLE_AAMIX] = { |
7835 | .type = HDA_FIXUP_FUNC, | |
7836 | .v.func = alc_fixup_disable_aamix, | |
831bfdf9 HW |
7837 | .chained = true, |
7838 | .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE | |
8b99aba7 | 7839 | }, |
c04017ea DH |
7840 | [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = { |
7841 | .type = HDA_FIXUP_FUNC, | |
7842 | .v.func = alc_fixup_disable_aamix, | |
7843 | .chained = true, | |
7844 | .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE | |
7845 | }, | |
5fab5829 | 7846 | [ALC292_FIXUP_DELL_E7X_AAMIX] = { |
8b99aba7 TI |
7847 | .type = HDA_FIXUP_FUNC, |
7848 | .v.func = alc_fixup_dell_xps13, | |
7849 | .chained = true, | |
7850 | .chain_id = ALC292_FIXUP_DISABLE_AAMIX | |
7851 | }, | |
5fab5829 TI |
7852 | [ALC292_FIXUP_DELL_E7X] = { |
7853 | .type = HDA_FIXUP_FUNC, | |
8a503555 | 7854 | .v.func = alc_fixup_micmute_led, |
5fab5829 TI |
7855 | /* micmute fixup must be applied at last */ |
7856 | .chained_before = true, | |
7857 | .chain_id = ALC292_FIXUP_DELL_E7X_AAMIX, | |
7858 | }, | |
54324221 JM |
7859 | [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = { |
7860 | .type = HDA_FIXUP_PINS, | |
7861 | .v.pins = (const struct hda_pintbl[]) { | |
7862 | { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */ | |
7863 | { } | |
7864 | }, | |
7865 | .chained_before = true, | |
7866 | .chain_id = ALC269_FIXUP_HEADSET_MODE, | |
7867 | }, | |
977e6276 KY |
7868 | [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = { |
7869 | .type = HDA_FIXUP_PINS, | |
7870 | .v.pins = (const struct hda_pintbl[]) { | |
7871 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7872 | { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
7873 | { } | |
7874 | }, | |
7875 | .chained = true, | |
7876 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
7877 | }, | |
2f726aec HW |
7878 | [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = { |
7879 | .type = HDA_FIXUP_PINS, | |
7880 | .v.pins = (const struct hda_pintbl[]) { | |
7881 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7882 | { } | |
7883 | }, | |
7884 | .chained = true, | |
7885 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
7886 | }, | |
6ed1131f KY |
7887 | [ALC275_FIXUP_DELL_XPS] = { |
7888 | .type = HDA_FIXUP_VERBS, | |
7889 | .v.verbs = (const struct hda_verb[]) { | |
7890 | /* Enables internal speaker */ | |
7891 | {0x20, AC_VERB_SET_COEF_INDEX, 0x1f}, | |
7892 | {0x20, AC_VERB_SET_PROC_COEF, 0x00c0}, | |
7893 | {0x20, AC_VERB_SET_COEF_INDEX, 0x30}, | |
7894 | {0x20, AC_VERB_SET_PROC_COEF, 0x00b1}, | |
7895 | {} | |
7896 | } | |
7897 | }, | |
23adc192 HW |
7898 | [ALC293_FIXUP_LENOVO_SPK_NOISE] = { |
7899 | .type = HDA_FIXUP_FUNC, | |
7900 | .v.func = alc_fixup_disable_aamix, | |
7901 | .chained = true, | |
7902 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI | |
7903 | }, | |
3694cb29 K |
7904 | [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = { |
7905 | .type = HDA_FIXUP_FUNC, | |
7906 | .v.func = alc233_fixup_lenovo_line2_mic_hotkey, | |
7907 | }, | |
d1ee66c5 PC |
7908 | [ALC233_FIXUP_INTEL_NUC8_DMIC] = { |
7909 | .type = HDA_FIXUP_FUNC, | |
7910 | .v.func = alc_fixup_inv_dmic, | |
7911 | .chained = true, | |
7912 | .chain_id = ALC233_FIXUP_INTEL_NUC8_BOOST, | |
7913 | }, | |
7914 | [ALC233_FIXUP_INTEL_NUC8_BOOST] = { | |
7915 | .type = HDA_FIXUP_FUNC, | |
7916 | .v.func = alc269_fixup_limit_int_mic_boost | |
7917 | }, | |
3b43b71f KHF |
7918 | [ALC255_FIXUP_DELL_SPK_NOISE] = { |
7919 | .type = HDA_FIXUP_FUNC, | |
7920 | .v.func = alc_fixup_disable_aamix, | |
7921 | .chained = true, | |
7922 | .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE | |
7923 | }, | |
d1dd4211 KY |
7924 | [ALC225_FIXUP_DISABLE_MIC_VREF] = { |
7925 | .type = HDA_FIXUP_FUNC, | |
7926 | .v.func = alc_fixup_disable_mic_vref, | |
7927 | .chained = true, | |
7928 | .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE | |
7929 | }, | |
2ae95577 DH |
7930 | [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = { |
7931 | .type = HDA_FIXUP_VERBS, | |
7932 | .v.verbs = (const struct hda_verb[]) { | |
7933 | /* Disable pass-through path for FRONT 14h */ | |
7934 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 }, | |
7935 | { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 }, | |
7936 | {} | |
7937 | }, | |
7938 | .chained = true, | |
d1dd4211 | 7939 | .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF |
2ae95577 | 7940 | }, |
f883982d TI |
7941 | [ALC280_FIXUP_HP_HEADSET_MIC] = { |
7942 | .type = HDA_FIXUP_FUNC, | |
7943 | .v.func = alc_fixup_disable_aamix, | |
7944 | .chained = true, | |
7945 | .chain_id = ALC269_FIXUP_HEADSET_MIC, | |
7946 | }, | |
e549d190 HW |
7947 | [ALC221_FIXUP_HP_FRONT_MIC] = { |
7948 | .type = HDA_FIXUP_PINS, | |
7949 | .v.pins = (const struct hda_pintbl[]) { | |
7950 | { 0x19, 0x02a19020 }, /* Front Mic */ | |
7951 | { } | |
7952 | }, | |
7953 | }, | |
c636b95e SE |
7954 | [ALC292_FIXUP_TPT460] = { |
7955 | .type = HDA_FIXUP_FUNC, | |
7956 | .v.func = alc_fixup_tpt440_dock, | |
7957 | .chained = true, | |
7958 | .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE, | |
7959 | }, | |
dd9aa335 HW |
7960 | [ALC298_FIXUP_SPK_VOLUME] = { |
7961 | .type = HDA_FIXUP_FUNC, | |
7962 | .v.func = alc298_fixup_speaker_volume, | |
59ec4b57 | 7963 | .chained = true, |
2f726aec | 7964 | .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, |
dd9aa335 | 7965 | }, |
f86de9b1 KY |
7966 | [ALC298_FIXUP_LENOVO_SPK_VOLUME] = { |
7967 | .type = HDA_FIXUP_FUNC, | |
7968 | .v.func = alc298_fixup_speaker_volume, | |
7969 | }, | |
e312a869 TI |
7970 | [ALC295_FIXUP_DISABLE_DAC3] = { |
7971 | .type = HDA_FIXUP_FUNC, | |
7972 | .v.func = alc295_fixup_disable_dac3, | |
7973 | }, | |
d2cd795c JK |
7974 | [ALC285_FIXUP_SPEAKER2_TO_DAC1] = { |
7975 | .type = HDA_FIXUP_FUNC, | |
7976 | .v.func = alc285_fixup_speaker2_to_dac1, | |
c37c0ab0 HW |
7977 | .chained = true, |
7978 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI | |
d2cd795c | 7979 | }, |
fd06c77e KHF |
7980 | [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = { |
7981 | .type = HDA_FIXUP_PINS, | |
7982 | .v.pins = (const struct hda_pintbl[]) { | |
7983 | { 0x1b, 0x90170151 }, | |
7984 | { } | |
7985 | }, | |
7986 | .chained = true, | |
7987 | .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE | |
7988 | }, | |
823ff161 GM |
7989 | [ALC269_FIXUP_ATIV_BOOK_8] = { |
7990 | .type = HDA_FIXUP_FUNC, | |
7991 | .v.func = alc_fixup_auto_mute_via_amp, | |
7992 | .chained = true, | |
7993 | .chain_id = ALC269_FIXUP_NO_SHUTUP | |
7994 | }, | |
4ba5c853 MT |
7995 | [ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE] = { |
7996 | .type = HDA_FIXUP_PINS, | |
7997 | .v.pins = (const struct hda_pintbl[]) { | |
7998 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
7999 | { 0x1a, 0x01813030 }, /* use as headphone mic, without its own jack detect */ | |
8000 | { } | |
8001 | }, | |
8002 | .chained = true, | |
8003 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
8004 | }, | |
9eb5d0e6 KY |
8005 | [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = { |
8006 | .type = HDA_FIXUP_PINS, | |
8007 | .v.pins = (const struct hda_pintbl[]) { | |
8008 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8009 | { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ | |
8010 | { } | |
8011 | }, | |
8012 | .chained = true, | |
8013 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
8014 | }, | |
c1732ede CC |
8015 | [ALC256_FIXUP_ASUS_HEADSET_MODE] = { |
8016 | .type = HDA_FIXUP_FUNC, | |
8017 | .v.func = alc_fixup_headset_mode, | |
8018 | }, | |
8019 | [ALC256_FIXUP_ASUS_MIC] = { | |
8020 | .type = HDA_FIXUP_PINS, | |
8021 | .v.pins = (const struct hda_pintbl[]) { | |
8022 | { 0x13, 0x90a60160 }, /* use as internal mic */ | |
8023 | { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */ | |
8024 | { } | |
8025 | }, | |
8026 | .chained = true, | |
8027 | .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE | |
8028 | }, | |
eeed4cd1 | 8029 | [ALC256_FIXUP_ASUS_AIO_GPIO2] = { |
ae065f1c TI |
8030 | .type = HDA_FIXUP_FUNC, |
8031 | /* Set up GPIO2 for the speaker amp */ | |
8032 | .v.func = alc_fixup_gpio4, | |
eeed4cd1 | 8033 | }, |
216d7aeb CC |
8034 | [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = { |
8035 | .type = HDA_FIXUP_PINS, | |
8036 | .v.pins = (const struct hda_pintbl[]) { | |
8037 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8038 | { } | |
8039 | }, | |
8040 | .chained = true, | |
8041 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
8042 | }, | |
8043 | [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = { | |
8044 | .type = HDA_FIXUP_VERBS, | |
8045 | .v.verbs = (const struct hda_verb[]) { | |
8046 | /* Enables internal speaker */ | |
8047 | {0x20, AC_VERB_SET_COEF_INDEX, 0x40}, | |
8048 | {0x20, AC_VERB_SET_PROC_COEF, 0x8800}, | |
8049 | {} | |
8050 | }, | |
8051 | .chained = true, | |
8052 | .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE | |
8053 | }, | |
ca169cc2 KY |
8054 | [ALC233_FIXUP_LENOVO_MULTI_CODECS] = { |
8055 | .type = HDA_FIXUP_FUNC, | |
8056 | .v.func = alc233_alc662_fixup_lenovo_dual_codecs, | |
f73bbf63 KHF |
8057 | .chained = true, |
8058 | .chain_id = ALC269_FIXUP_GPIO2 | |
ca169cc2 | 8059 | }, |
ea5c7eba JHP |
8060 | [ALC233_FIXUP_ACER_HEADSET_MIC] = { |
8061 | .type = HDA_FIXUP_VERBS, | |
8062 | .v.verbs = (const struct hda_verb[]) { | |
8063 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 }, | |
8064 | { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 }, | |
8065 | { } | |
8066 | }, | |
8067 | .chained = true, | |
8068 | .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE | |
8069 | }, | |
f33f79f3 HW |
8070 | [ALC294_FIXUP_LENOVO_MIC_LOCATION] = { |
8071 | .type = HDA_FIXUP_PINS, | |
8072 | .v.pins = (const struct hda_pintbl[]) { | |
8073 | /* Change the mic location from front to right, otherwise there are | |
8074 | two front mics with the same name, pulseaudio can't handle them. | |
8075 | This is just a temporary workaround, after applying this fixup, | |
8076 | there will be one "Front Mic" and one "Mic" in this machine. | |
8077 | */ | |
8078 | { 0x1a, 0x04a19040 }, | |
8079 | { } | |
8080 | }, | |
8081 | }, | |
5f364135 KY |
8082 | [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = { |
8083 | .type = HDA_FIXUP_PINS, | |
8084 | .v.pins = (const struct hda_pintbl[]) { | |
8085 | { 0x16, 0x0101102f }, /* Rear Headset HP */ | |
8086 | { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */ | |
8087 | { 0x1a, 0x01a19030 }, /* Rear Headset MIC */ | |
8088 | { 0x1b, 0x02011020 }, | |
8089 | { } | |
8090 | }, | |
8091 | .chained = true, | |
52e4e368 KHF |
8092 | .chain_id = ALC225_FIXUP_S3_POP_NOISE |
8093 | }, | |
8094 | [ALC225_FIXUP_S3_POP_NOISE] = { | |
8095 | .type = HDA_FIXUP_FUNC, | |
8096 | .v.func = alc225_fixup_s3_pop_noise, | |
8097 | .chained = true, | |
5f364135 KY |
8098 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC |
8099 | }, | |
b84e8436 PH |
8100 | [ALC700_FIXUP_INTEL_REFERENCE] = { |
8101 | .type = HDA_FIXUP_VERBS, | |
8102 | .v.verbs = (const struct hda_verb[]) { | |
8103 | /* Enables internal speaker */ | |
8104 | {0x20, AC_VERB_SET_COEF_INDEX, 0x45}, | |
8105 | {0x20, AC_VERB_SET_PROC_COEF, 0x5289}, | |
8106 | {0x20, AC_VERB_SET_COEF_INDEX, 0x4A}, | |
8107 | {0x20, AC_VERB_SET_PROC_COEF, 0x001b}, | |
8108 | {0x58, AC_VERB_SET_COEF_INDEX, 0x00}, | |
8109 | {0x58, AC_VERB_SET_PROC_COEF, 0x3888}, | |
8110 | {0x20, AC_VERB_SET_COEF_INDEX, 0x6f}, | |
8111 | {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b}, | |
8112 | {} | |
8113 | } | |
8114 | }, | |
92266651 KY |
8115 | [ALC274_FIXUP_DELL_BIND_DACS] = { |
8116 | .type = HDA_FIXUP_FUNC, | |
8117 | .v.func = alc274_fixup_bind_dacs, | |
8118 | .chained = true, | |
8119 | .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE | |
8120 | }, | |
8121 | [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = { | |
8122 | .type = HDA_FIXUP_PINS, | |
8123 | .v.pins = (const struct hda_pintbl[]) { | |
8124 | { 0x1b, 0x0401102f }, | |
8125 | { } | |
8126 | }, | |
8127 | .chained = true, | |
8128 | .chain_id = ALC274_FIXUP_DELL_BIND_DACS | |
8129 | }, | |
399c01aa | 8130 | [ALC298_FIXUP_TPT470_DOCK_FIX] = { |
61fcf8ec KY |
8131 | .type = HDA_FIXUP_FUNC, |
8132 | .v.func = alc_fixup_tpt470_dock, | |
8133 | .chained = true, | |
8134 | .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE | |
8135 | }, | |
399c01aa TI |
8136 | [ALC298_FIXUP_TPT470_DOCK] = { |
8137 | .type = HDA_FIXUP_FUNC, | |
8138 | .v.func = alc_fixup_tpt470_dacs, | |
8139 | .chained = true, | |
8140 | .chain_id = ALC298_FIXUP_TPT470_DOCK_FIX | |
8141 | }, | |
ae104a21 KY |
8142 | [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = { |
8143 | .type = HDA_FIXUP_PINS, | |
8144 | .v.pins = (const struct hda_pintbl[]) { | |
8145 | { 0x14, 0x0201101f }, | |
8146 | { } | |
8147 | }, | |
8148 | .chained = true, | |
8149 | .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE | |
8150 | }, | |
f0ba9d69 KY |
8151 | [ALC255_FIXUP_DELL_HEADSET_MIC] = { |
8152 | .type = HDA_FIXUP_PINS, | |
8153 | .v.pins = (const struct hda_pintbl[]) { | |
8154 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8155 | { } | |
8156 | }, | |
3ce0d5aa HW |
8157 | .chained = true, |
8158 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
f0ba9d69 | 8159 | }, |
bbf8ff6b TB |
8160 | [ALC295_FIXUP_HP_X360] = { |
8161 | .type = HDA_FIXUP_FUNC, | |
8162 | .v.func = alc295_fixup_hp_top_speakers, | |
8163 | .chained = true, | |
8164 | .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3 | |
8a328ac1 KY |
8165 | }, |
8166 | [ALC221_FIXUP_HP_HEADSET_MIC] = { | |
8167 | .type = HDA_FIXUP_PINS, | |
8168 | .v.pins = (const struct hda_pintbl[]) { | |
8169 | { 0x19, 0x0181313f}, | |
8170 | { } | |
8171 | }, | |
8172 | .chained = true, | |
8173 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
8174 | }, | |
c4cfcf6f HW |
8175 | [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = { |
8176 | .type = HDA_FIXUP_FUNC, | |
8177 | .v.func = alc285_fixup_invalidate_dacs, | |
6ba189c5 HW |
8178 | .chained = true, |
8179 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI | |
c4cfcf6f | 8180 | }, |
e8ed64b0 GKK |
8181 | [ALC295_FIXUP_HP_AUTO_MUTE] = { |
8182 | .type = HDA_FIXUP_FUNC, | |
8183 | .v.func = alc_fixup_auto_mute_via_amp, | |
8184 | }, | |
33aaebd4 CC |
8185 | [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = { |
8186 | .type = HDA_FIXUP_PINS, | |
8187 | .v.pins = (const struct hda_pintbl[]) { | |
8188 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8189 | { } | |
8190 | }, | |
8191 | .chained = true, | |
8192 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
8193 | }, | |
d8ae458e CC |
8194 | [ALC294_FIXUP_ASUS_MIC] = { |
8195 | .type = HDA_FIXUP_PINS, | |
8196 | .v.pins = (const struct hda_pintbl[]) { | |
8197 | { 0x13, 0x90a60160 }, /* use as internal mic */ | |
8198 | { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */ | |
8199 | { } | |
8200 | }, | |
8201 | .chained = true, | |
ef9ddb9d | 8202 | .chain_id = ALC269_FIXUP_HEADSET_MIC |
d8ae458e | 8203 | }, |
4e051106 JHP |
8204 | [ALC294_FIXUP_ASUS_HEADSET_MIC] = { |
8205 | .type = HDA_FIXUP_PINS, | |
8206 | .v.pins = (const struct hda_pintbl[]) { | |
82b01149 | 8207 | { 0x19, 0x01a1103c }, /* use as headset mic */ |
4e051106 JHP |
8208 | { } |
8209 | }, | |
8210 | .chained = true, | |
ef9ddb9d | 8211 | .chain_id = ALC269_FIXUP_HEADSET_MIC |
4e051106 JHP |
8212 | }, |
8213 | [ALC294_FIXUP_ASUS_SPK] = { | |
8214 | .type = HDA_FIXUP_VERBS, | |
8215 | .v.verbs = (const struct hda_verb[]) { | |
8216 | /* Set EAPD high */ | |
8217 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 }, | |
8218 | { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 }, | |
473fbe13 KY |
8219 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f }, |
8220 | { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 }, | |
4e051106 JHP |
8221 | { } |
8222 | }, | |
8223 | .chained = true, | |
8224 | .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC | |
8225 | }, | |
c8a9afa6 | 8226 | [ALC295_FIXUP_CHROME_BOOK] = { |
e854747d | 8227 | .type = HDA_FIXUP_FUNC, |
c8a9afa6 | 8228 | .v.func = alc295_fixup_chromebook, |
8983eb60 KY |
8229 | .chained = true, |
8230 | .chain_id = ALC225_FIXUP_HEADSET_JACK | |
8231 | }, | |
8232 | [ALC225_FIXUP_HEADSET_JACK] = { | |
8233 | .type = HDA_FIXUP_FUNC, | |
8234 | .v.func = alc_fixup_headset_jack, | |
e854747d | 8235 | }, |
89e3a568 JS |
8236 | [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = { |
8237 | .type = HDA_FIXUP_PINS, | |
8238 | .v.pins = (const struct hda_pintbl[]) { | |
8239 | { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8240 | { } | |
8241 | }, | |
8242 | .chained = true, | |
8243 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
8244 | }, | |
c8c6ee61 HW |
8245 | [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = { |
8246 | .type = HDA_FIXUP_VERBS, | |
8247 | .v.verbs = (const struct hda_verb[]) { | |
8248 | /* Disable PCBEEP-IN passthrough */ | |
8249 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 }, | |
8250 | { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 }, | |
8251 | { } | |
8252 | }, | |
8253 | .chained = true, | |
8254 | .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE | |
8255 | }, | |
cbc05fd6 JHP |
8256 | [ALC255_FIXUP_ACER_HEADSET_MIC] = { |
8257 | .type = HDA_FIXUP_PINS, | |
8258 | .v.pins = (const struct hda_pintbl[]) { | |
8259 | { 0x19, 0x03a11130 }, | |
8260 | { 0x1a, 0x90a60140 }, /* use as internal mic */ | |
8261 | { } | |
8262 | }, | |
8263 | .chained = true, | |
8264 | .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC | |
8265 | }, | |
136824ef KY |
8266 | [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = { |
8267 | .type = HDA_FIXUP_PINS, | |
8268 | .v.pins = (const struct hda_pintbl[]) { | |
8269 | { 0x16, 0x01011020 }, /* Rear Line out */ | |
8270 | { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */ | |
8271 | { } | |
8272 | }, | |
8273 | .chained = true, | |
8274 | .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE | |
8275 | }, | |
8276 | [ALC225_FIXUP_WYSE_AUTO_MUTE] = { | |
8277 | .type = HDA_FIXUP_FUNC, | |
8278 | .v.func = alc_fixup_auto_mute_via_amp, | |
8279 | .chained = true, | |
8280 | .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF | |
8281 | }, | |
8282 | [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = { | |
8283 | .type = HDA_FIXUP_FUNC, | |
8284 | .v.func = alc_fixup_disable_mic_vref, | |
8285 | .chained = true, | |
8286 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
8287 | }, | |
667a8f73 JHP |
8288 | [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = { |
8289 | .type = HDA_FIXUP_VERBS, | |
8290 | .v.verbs = (const struct hda_verb[]) { | |
8291 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f }, | |
8292 | { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 }, | |
8293 | { } | |
8294 | }, | |
8295 | .chained = true, | |
8296 | .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE | |
8297 | }, | |
8c8967a7 DD |
8298 | [ALC256_FIXUP_ASUS_HEADSET_MIC] = { |
8299 | .type = HDA_FIXUP_PINS, | |
8300 | .v.pins = (const struct hda_pintbl[]) { | |
8301 | { 0x19, 0x03a11020 }, /* headset mic with jack detect */ | |
8302 | { } | |
8303 | }, | |
8304 | .chained = true, | |
8305 | .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE | |
8306 | }, | |
e1037354 JHP |
8307 | [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = { |
8308 | .type = HDA_FIXUP_PINS, | |
8309 | .v.pins = (const struct hda_pintbl[]) { | |
8310 | { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */ | |
8311 | { } | |
8312 | }, | |
8313 | .chained = true, | |
8314 | .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE | |
8315 | }, | |
e2a829b3 BR |
8316 | [ALC299_FIXUP_PREDATOR_SPK] = { |
8317 | .type = HDA_FIXUP_PINS, | |
8318 | .v.pins = (const struct hda_pintbl[]) { | |
8319 | { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */ | |
8320 | { } | |
8321 | } | |
8322 | }, | |
bd9c10bc | 8323 | [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = { |
60083f9e JHP |
8324 | .type = HDA_FIXUP_PINS, |
8325 | .v.pins = (const struct hda_pintbl[]) { | |
bd9c10bc JMG |
8326 | { 0x19, 0x04a11040 }, |
8327 | { 0x21, 0x04211020 }, | |
60083f9e JHP |
8328 | { } |
8329 | }, | |
8330 | .chained = true, | |
bd9c10bc | 8331 | .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE |
60083f9e | 8332 | }, |
e79c2269 | 8333 | [ALC289_FIXUP_DELL_SPK2] = { |
bd9c10bc JMG |
8334 | .type = HDA_FIXUP_PINS, |
8335 | .v.pins = (const struct hda_pintbl[]) { | |
e79c2269 | 8336 | { 0x17, 0x90170130 }, /* bass spk */ |
bd9c10bc JMG |
8337 | { } |
8338 | }, | |
8339 | .chained = true, | |
e79c2269 | 8340 | .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE |
bd9c10bc | 8341 | }, |
e79c2269 KY |
8342 | [ALC289_FIXUP_DUAL_SPK] = { |
8343 | .type = HDA_FIXUP_FUNC, | |
8344 | .v.func = alc285_fixup_speaker2_to_dac1, | |
8345 | .chained = true, | |
8346 | .chain_id = ALC289_FIXUP_DELL_SPK2 | |
8347 | }, | |
48e01504 CC |
8348 | [ALC294_FIXUP_SPK2_TO_DAC1] = { |
8349 | .type = HDA_FIXUP_FUNC, | |
8350 | .v.func = alc285_fixup_speaker2_to_dac1, | |
8351 | .chained = true, | |
8352 | .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC | |
8353 | }, | |
8354 | [ALC294_FIXUP_ASUS_DUAL_SPK] = { | |
436e2550 JHP |
8355 | .type = HDA_FIXUP_FUNC, |
8356 | /* The GPIO must be pulled to initialize the AMP */ | |
8357 | .v.func = alc_fixup_gpio4, | |
8358 | .chained = true, | |
48e01504 | 8359 | .chain_id = ALC294_FIXUP_SPK2_TO_DAC1 |
436e2550 | 8360 | }, |
6a6660d0 TI |
8361 | [ALC285_FIXUP_THINKPAD_X1_GEN7] = { |
8362 | .type = HDA_FIXUP_FUNC, | |
8363 | .v.func = alc285_fixup_thinkpad_x1_gen7, | |
8364 | .chained = true, | |
8365 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI | |
8366 | }, | |
76f7dec0 KY |
8367 | [ALC285_FIXUP_THINKPAD_HEADSET_JACK] = { |
8368 | .type = HDA_FIXUP_FUNC, | |
8369 | .v.func = alc_fixup_headset_jack, | |
8370 | .chained = true, | |
6a6660d0 | 8371 | .chain_id = ALC285_FIXUP_THINKPAD_X1_GEN7 |
76f7dec0 | 8372 | }, |
8b33a134 JHP |
8373 | [ALC294_FIXUP_ASUS_HPE] = { |
8374 | .type = HDA_FIXUP_VERBS, | |
8375 | .v.verbs = (const struct hda_verb[]) { | |
8376 | /* Set EAPD high */ | |
8377 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f }, | |
8378 | { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 }, | |
8379 | { } | |
8380 | }, | |
8381 | .chained = true, | |
8382 | .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC | |
8383 | }, | |
c3cdf189 LJ |
8384 | [ALC294_FIXUP_ASUS_GX502_PINS] = { |
8385 | .type = HDA_FIXUP_PINS, | |
8386 | .v.pins = (const struct hda_pintbl[]) { | |
8387 | { 0x19, 0x03a11050 }, /* front HP mic */ | |
8388 | { 0x1a, 0x01a11830 }, /* rear external mic */ | |
8389 | { 0x21, 0x03211020 }, /* front HP out */ | |
8390 | { } | |
8391 | }, | |
8392 | .chained = true, | |
8393 | .chain_id = ALC294_FIXUP_ASUS_GX502_VERBS | |
8394 | }, | |
8395 | [ALC294_FIXUP_ASUS_GX502_VERBS] = { | |
8396 | .type = HDA_FIXUP_VERBS, | |
8397 | .v.verbs = (const struct hda_verb[]) { | |
8398 | /* set 0x15 to HP-OUT ctrl */ | |
8399 | { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, | |
8400 | /* unmute the 0x15 amp */ | |
8401 | { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 }, | |
8402 | { } | |
8403 | }, | |
8404 | .chained = true, | |
8405 | .chain_id = ALC294_FIXUP_ASUS_GX502_HP | |
8406 | }, | |
8407 | [ALC294_FIXUP_ASUS_GX502_HP] = { | |
8408 | .type = HDA_FIXUP_FUNC, | |
8409 | .v.func = alc294_fixup_gx502_hp, | |
8410 | }, | |
c1b55029 DC |
8411 | [ALC294_FIXUP_ASUS_GU502_PINS] = { |
8412 | .type = HDA_FIXUP_PINS, | |
8413 | .v.pins = (const struct hda_pintbl[]) { | |
8414 | { 0x19, 0x01a11050 }, /* rear HP mic */ | |
8415 | { 0x1a, 0x01a11830 }, /* rear external mic */ | |
8416 | { 0x21, 0x012110f0 }, /* rear HP out */ | |
8417 | { } | |
8418 | }, | |
8419 | .chained = true, | |
8420 | .chain_id = ALC294_FIXUP_ASUS_GU502_VERBS | |
8421 | }, | |
8422 | [ALC294_FIXUP_ASUS_GU502_VERBS] = { | |
8423 | .type = HDA_FIXUP_VERBS, | |
8424 | .v.verbs = (const struct hda_verb[]) { | |
8425 | /* set 0x15 to HP-OUT ctrl */ | |
8426 | { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, | |
8427 | /* unmute the 0x15 amp */ | |
8428 | { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 }, | |
8429 | /* set 0x1b to HP-OUT */ | |
8430 | { 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 }, | |
8431 | { } | |
8432 | }, | |
8433 | .chained = true, | |
8434 | .chain_id = ALC294_FIXUP_ASUS_GU502_HP | |
8435 | }, | |
8436 | [ALC294_FIXUP_ASUS_GU502_HP] = { | |
8437 | .type = HDA_FIXUP_FUNC, | |
8438 | .v.func = alc294_fixup_gu502_hp, | |
c611e659 LJ |
8439 | }, |
8440 | [ALC294_FIXUP_ASUS_G513_PINS] = { | |
8441 | .type = HDA_FIXUP_PINS, | |
8442 | .v.pins = (const struct hda_pintbl[]) { | |
8443 | { 0x19, 0x03a11050 }, /* front HP mic */ | |
8444 | { 0x1a, 0x03a11c30 }, /* rear external mic */ | |
8445 | { 0x21, 0x03211420 }, /* front HP out */ | |
8446 | { } | |
8447 | }, | |
c1b55029 | 8448 | }, |
bc2c2354 LJ |
8449 | [ALC285_FIXUP_ASUS_G533Z_PINS] = { |
8450 | .type = HDA_FIXUP_PINS, | |
8451 | .v.pins = (const struct hda_pintbl[]) { | |
66ba7c88 LJ |
8452 | { 0x14, 0x90170152 }, /* Speaker Surround Playback Switch */ |
8453 | { 0x19, 0x03a19020 }, /* Mic Boost Volume */ | |
8454 | { 0x1a, 0x03a11c30 }, /* Mic Boost Volume */ | |
8455 | { 0x1e, 0x90170151 }, /* Rear jack, IN OUT EAPD Detect */ | |
8456 | { 0x21, 0x03211420 }, | |
bc2c2354 LJ |
8457 | { } |
8458 | }, | |
bc2c2354 | 8459 | }, |
1b94e59d TI |
8460 | [ALC294_FIXUP_ASUS_COEF_1B] = { |
8461 | .type = HDA_FIXUP_VERBS, | |
8462 | .v.verbs = (const struct hda_verb[]) { | |
8463 | /* Set bit 10 to correct noisy output after reboot from | |
8464 | * Windows 10 (due to pop noise reduction?) | |
8465 | */ | |
8466 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x1b }, | |
8467 | { 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b }, | |
8468 | { } | |
8469 | }, | |
f8fbcdfb TI |
8470 | .chained = true, |
8471 | .chain_id = ALC289_FIXUP_ASUS_GA401, | |
1b94e59d | 8472 | }, |
f5a88b0a KHF |
8473 | [ALC285_FIXUP_HP_GPIO_LED] = { |
8474 | .type = HDA_FIXUP_FUNC, | |
8475 | .v.func = alc285_fixup_hp_gpio_led, | |
8476 | }, | |
431e76c3 KY |
8477 | [ALC285_FIXUP_HP_MUTE_LED] = { |
8478 | .type = HDA_FIXUP_FUNC, | |
8479 | .v.func = alc285_fixup_hp_mute_led, | |
8480 | }, | |
e7d66cf7 JS |
8481 | [ALC236_FIXUP_HP_GPIO_LED] = { |
8482 | .type = HDA_FIXUP_FUNC, | |
8483 | .v.func = alc236_fixup_hp_gpio_led, | |
8484 | }, | |
24164f43 KY |
8485 | [ALC236_FIXUP_HP_MUTE_LED] = { |
8486 | .type = HDA_FIXUP_FUNC, | |
8487 | .v.func = alc236_fixup_hp_mute_led, | |
8488 | }, | |
75b62ab6 JW |
8489 | [ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF] = { |
8490 | .type = HDA_FIXUP_FUNC, | |
8491 | .v.func = alc236_fixup_hp_mute_led_micmute_vref, | |
8492 | }, | |
a2d57ebe KM |
8493 | [ALC298_FIXUP_SAMSUNG_AMP] = { |
8494 | .type = HDA_FIXUP_FUNC, | |
8495 | .v.func = alc298_fixup_samsung_amp, | |
8496 | .chained = true, | |
8497 | .chain_id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET | |
8498 | }, | |
14425f1f MP |
8499 | [ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = { |
8500 | .type = HDA_FIXUP_VERBS, | |
8501 | .v.verbs = (const struct hda_verb[]) { | |
8502 | { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc5 }, | |
8503 | { } | |
8504 | }, | |
8505 | }, | |
ef248d9b MK |
8506 | [ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = { |
8507 | .type = HDA_FIXUP_VERBS, | |
8508 | .v.verbs = (const struct hda_verb[]) { | |
8509 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x08}, | |
8510 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2fcf}, | |
8511 | { } | |
8512 | }, | |
8513 | }, | |
9e43342b CC |
8514 | [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = { |
8515 | .type = HDA_FIXUP_PINS, | |
8516 | .v.pins = (const struct hda_pintbl[]) { | |
8517 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8518 | { } | |
8519 | }, | |
8520 | .chained = true, | |
8521 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
8522 | }, | |
8eae7e9b JHP |
8523 | [ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = { |
8524 | .type = HDA_FIXUP_PINS, | |
8525 | .v.pins = (const struct hda_pintbl[]) { | |
8526 | { 0x14, 0x90100120 }, /* use as internal speaker */ | |
8527 | { 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */ | |
8528 | { 0x1a, 0x01011020 }, /* use as line out */ | |
8529 | { }, | |
8530 | }, | |
8531 | .chained = true, | |
8532 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
8533 | }, | |
6e15d126 JHP |
8534 | [ALC269VC_FIXUP_ACER_HEADSET_MIC] = { |
8535 | .type = HDA_FIXUP_PINS, | |
8536 | .v.pins = (const struct hda_pintbl[]) { | |
8537 | { 0x18, 0x02a11030 }, /* use as headset mic */ | |
8538 | { } | |
8539 | }, | |
8540 | .chained = true, | |
8541 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
8542 | }, | |
781c90c0 JHP |
8543 | [ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE] = { |
8544 | .type = HDA_FIXUP_PINS, | |
8545 | .v.pins = (const struct hda_pintbl[]) { | |
8546 | { 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */ | |
8547 | { } | |
8548 | }, | |
8549 | .chained = true, | |
8550 | .chain_id = ALC269_FIXUP_HEADSET_MIC | |
8551 | }, | |
293a92c1 | 8552 | [ALC289_FIXUP_ASUS_GA401] = { |
c84bfedc TI |
8553 | .type = HDA_FIXUP_FUNC, |
8554 | .v.func = alc289_fixup_asus_ga401, | |
8555 | .chained = true, | |
8556 | .chain_id = ALC289_FIXUP_ASUS_GA502, | |
ff53664d | 8557 | }, |
4b43d05a AS |
8558 | [ALC289_FIXUP_ASUS_GA502] = { |
8559 | .type = HDA_FIXUP_PINS, | |
8560 | .v.pins = (const struct hda_pintbl[]) { | |
8561 | { 0x19, 0x03a11020 }, /* headset mic with jack detect */ | |
8562 | { } | |
8563 | }, | |
8564 | }, | |
f50a121d JHP |
8565 | [ALC256_FIXUP_ACER_MIC_NO_PRESENCE] = { |
8566 | .type = HDA_FIXUP_PINS, | |
8567 | .v.pins = (const struct hda_pintbl[]) { | |
8568 | { 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */ | |
8569 | { } | |
8570 | }, | |
8571 | .chained = true, | |
8572 | .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE | |
8573 | }, | |
56496253 KY |
8574 | [ALC285_FIXUP_HP_GPIO_AMP_INIT] = { |
8575 | .type = HDA_FIXUP_FUNC, | |
8576 | .v.func = alc285_fixup_hp_gpio_amp_init, | |
8577 | .chained = true, | |
8578 | .chain_id = ALC285_FIXUP_HP_GPIO_LED | |
8579 | }, | |
f1ec5be1 HC |
8580 | [ALC269_FIXUP_CZC_B20] = { |
8581 | .type = HDA_FIXUP_PINS, | |
8582 | .v.pins = (const struct hda_pintbl[]) { | |
8583 | { 0x12, 0x411111f0 }, | |
8584 | { 0x14, 0x90170110 }, /* speaker */ | |
8585 | { 0x15, 0x032f1020 }, /* HP out */ | |
8586 | { 0x17, 0x411111f0 }, | |
8587 | { 0x18, 0x03ab1040 }, /* mic */ | |
8588 | { 0x19, 0xb7a7013f }, | |
8589 | { 0x1a, 0x0181305f }, | |
8590 | { 0x1b, 0x411111f0 }, | |
8591 | { 0x1d, 0x411111f0 }, | |
8592 | { 0x1e, 0x411111f0 }, | |
8593 | { } | |
8594 | }, | |
8595 | .chain_id = ALC269_FIXUP_DMIC, | |
8596 | }, | |
8597 | [ALC269_FIXUP_CZC_TMI] = { | |
8598 | .type = HDA_FIXUP_PINS, | |
8599 | .v.pins = (const struct hda_pintbl[]) { | |
8600 | { 0x12, 0x4000c000 }, | |
8601 | { 0x14, 0x90170110 }, /* speaker */ | |
8602 | { 0x15, 0x0421401f }, /* HP out */ | |
8603 | { 0x17, 0x411111f0 }, | |
8604 | { 0x18, 0x04a19020 }, /* mic */ | |
8605 | { 0x19, 0x411111f0 }, | |
8606 | { 0x1a, 0x411111f0 }, | |
8607 | { 0x1b, 0x411111f0 }, | |
8608 | { 0x1d, 0x40448505 }, | |
8609 | { 0x1e, 0x411111f0 }, | |
8610 | { 0x20, 0x8000ffff }, | |
8611 | { } | |
8612 | }, | |
8613 | .chain_id = ALC269_FIXUP_DMIC, | |
8614 | }, | |
8615 | [ALC269_FIXUP_CZC_L101] = { | |
8616 | .type = HDA_FIXUP_PINS, | |
8617 | .v.pins = (const struct hda_pintbl[]) { | |
8618 | { 0x12, 0x40000000 }, | |
8619 | { 0x14, 0x01014010 }, /* speaker */ | |
8620 | { 0x15, 0x411111f0 }, /* HP out */ | |
8621 | { 0x16, 0x411111f0 }, | |
8622 | { 0x18, 0x01a19020 }, /* mic */ | |
8623 | { 0x19, 0x02a19021 }, | |
8624 | { 0x1a, 0x0181302f }, | |
8625 | { 0x1b, 0x0221401f }, | |
8626 | { 0x1c, 0x411111f0 }, | |
8627 | { 0x1d, 0x4044c601 }, | |
8628 | { 0x1e, 0x411111f0 }, | |
8629 | { } | |
8630 | }, | |
8631 | .chain_id = ALC269_FIXUP_DMIC, | |
8632 | }, | |
8633 | [ALC269_FIXUP_LEMOTE_A1802] = { | |
8634 | .type = HDA_FIXUP_PINS, | |
8635 | .v.pins = (const struct hda_pintbl[]) { | |
8636 | { 0x12, 0x40000000 }, | |
8637 | { 0x14, 0x90170110 }, /* speaker */ | |
8638 | { 0x17, 0x411111f0 }, | |
8639 | { 0x18, 0x03a19040 }, /* mic1 */ | |
8640 | { 0x19, 0x90a70130 }, /* mic2 */ | |
8641 | { 0x1a, 0x411111f0 }, | |
8642 | { 0x1b, 0x411111f0 }, | |
8643 | { 0x1d, 0x40489d2d }, | |
8644 | { 0x1e, 0x411111f0 }, | |
8645 | { 0x20, 0x0003ffff }, | |
8646 | { 0x21, 0x03214020 }, | |
8647 | { } | |
8648 | }, | |
8649 | .chain_id = ALC269_FIXUP_DMIC, | |
8650 | }, | |
8651 | [ALC269_FIXUP_LEMOTE_A190X] = { | |
8652 | .type = HDA_FIXUP_PINS, | |
8653 | .v.pins = (const struct hda_pintbl[]) { | |
8654 | { 0x14, 0x99130110 }, /* speaker */ | |
8655 | { 0x15, 0x0121401f }, /* HP out */ | |
8656 | { 0x18, 0x01a19c20 }, /* rear mic */ | |
8657 | { 0x19, 0x99a3092f }, /* front mic */ | |
8658 | { 0x1b, 0x0201401f }, /* front lineout */ | |
8659 | { } | |
8660 | }, | |
8661 | .chain_id = ALC269_FIXUP_DMIC, | |
8662 | }, | |
e2d2fded KHF |
8663 | [ALC256_FIXUP_INTEL_NUC8_RUGGED] = { |
8664 | .type = HDA_FIXUP_PINS, | |
8665 | .v.pins = (const struct hda_pintbl[]) { | |
8666 | { 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8667 | { } | |
8668 | }, | |
8669 | .chained = true, | |
8670 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
8671 | }, | |
73e7161e WS |
8672 | [ALC256_FIXUP_INTEL_NUC10] = { |
8673 | .type = HDA_FIXUP_PINS, | |
8674 | .v.pins = (const struct hda_pintbl[]) { | |
8675 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8676 | { } | |
8677 | }, | |
8678 | .chained = true, | |
8679 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
8680 | }, | |
fc19d559 HW |
8681 | [ALC255_FIXUP_XIAOMI_HEADSET_MIC] = { |
8682 | .type = HDA_FIXUP_VERBS, | |
8683 | .v.verbs = (const struct hda_verb[]) { | |
8684 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 }, | |
8685 | { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 }, | |
8686 | { } | |
8687 | }, | |
8688 | .chained = true, | |
c84bfedc | 8689 | .chain_id = ALC289_FIXUP_ASUS_GA502 |
fc19d559 | 8690 | }, |
13468bfa HW |
8691 | [ALC274_FIXUP_HP_MIC] = { |
8692 | .type = HDA_FIXUP_VERBS, | |
8693 | .v.verbs = (const struct hda_verb[]) { | |
8694 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 }, | |
8695 | { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 }, | |
8696 | { } | |
8697 | }, | |
8698 | }, | |
8a8de09c KY |
8699 | [ALC274_FIXUP_HP_HEADSET_MIC] = { |
8700 | .type = HDA_FIXUP_FUNC, | |
8701 | .v.func = alc274_fixup_hp_headset_mic, | |
8702 | .chained = true, | |
8703 | .chain_id = ALC274_FIXUP_HP_MIC | |
8704 | }, | |
622464c8 TI |
8705 | [ALC274_FIXUP_HP_ENVY_GPIO] = { |
8706 | .type = HDA_FIXUP_FUNC, | |
8707 | .v.func = alc274_fixup_hp_envy_gpio, | |
8708 | }, | |
ef9ce66f KY |
8709 | [ALC256_FIXUP_ASUS_HPE] = { |
8710 | .type = HDA_FIXUP_VERBS, | |
8711 | .v.verbs = (const struct hda_verb[]) { | |
8712 | /* Set EAPD high */ | |
8713 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f }, | |
8714 | { 0x20, AC_VERB_SET_PROC_COEF, 0x7778 }, | |
8715 | { } | |
8716 | }, | |
8717 | .chained = true, | |
8718 | .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC | |
8719 | }, | |
446b8185 KY |
8720 | [ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK] = { |
8721 | .type = HDA_FIXUP_FUNC, | |
8722 | .v.func = alc_fixup_headset_jack, | |
8723 | .chained = true, | |
8724 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI | |
8725 | }, | |
a0ccbc53 KY |
8726 | [ALC287_FIXUP_HP_GPIO_LED] = { |
8727 | .type = HDA_FIXUP_FUNC, | |
8728 | .v.func = alc287_fixup_hp_gpio_led, | |
8729 | }, | |
9e885770 KY |
8730 | [ALC256_FIXUP_HP_HEADSET_MIC] = { |
8731 | .type = HDA_FIXUP_FUNC, | |
8732 | .v.func = alc274_fixup_hp_headset_mic, | |
8733 | }, | |
92666d45 KY |
8734 | [ALC236_FIXUP_DELL_AIO_HEADSET_MIC] = { |
8735 | .type = HDA_FIXUP_FUNC, | |
8736 | .v.func = alc_fixup_no_int_mic, | |
8737 | .chained = true, | |
8738 | .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE | |
8739 | }, | |
34cdf405 CC |
8740 | [ALC282_FIXUP_ACER_DISABLE_LINEOUT] = { |
8741 | .type = HDA_FIXUP_PINS, | |
8742 | .v.pins = (const struct hda_pintbl[]) { | |
8743 | { 0x1b, 0x411111f0 }, | |
8744 | { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
8745 | { }, | |
8746 | }, | |
8747 | .chained = true, | |
8748 | .chain_id = ALC269_FIXUP_HEADSET_MODE | |
8749 | }, | |
495dc763 CC |
8750 | [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = { |
8751 | .type = HDA_FIXUP_FUNC, | |
8752 | .v.func = alc269_fixup_limit_int_mic_boost, | |
8753 | .chained = true, | |
8754 | .chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, | |
8755 | }, | |
d0e18561 CC |
8756 | [ALC256_FIXUP_ACER_HEADSET_MIC] = { |
8757 | .type = HDA_FIXUP_PINS, | |
8758 | .v.pins = (const struct hda_pintbl[]) { | |
8759 | { 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */ | |
8760 | { 0x1a, 0x90a1092f }, /* use as internal mic */ | |
8761 | { } | |
8762 | }, | |
8763 | .chained = true, | |
8764 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
8765 | }, | |
26928ca1 TI |
8766 | [ALC285_FIXUP_IDEAPAD_S740_COEF] = { |
8767 | .type = HDA_FIXUP_FUNC, | |
8768 | .v.func = alc285_fixup_ideapad_s740_coef, | |
8769 | .chained = true, | |
8770 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI, | |
8771 | }, | |
bd15b155 KHF |
8772 | [ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST] = { |
8773 | .type = HDA_FIXUP_FUNC, | |
8774 | .v.func = alc269_fixup_limit_int_mic_boost, | |
8775 | .chained = true, | |
8776 | .chain_id = ALC285_FIXUP_HP_MUTE_LED, | |
8777 | }, | |
8eedd3a7 TI |
8778 | [ALC295_FIXUP_ASUS_DACS] = { |
8779 | .type = HDA_FIXUP_FUNC, | |
8780 | .v.func = alc295_fixup_asus_dacs, | |
8781 | }, | |
5d84b531 TI |
8782 | [ALC295_FIXUP_HP_OMEN] = { |
8783 | .type = HDA_FIXUP_PINS, | |
8784 | .v.pins = (const struct hda_pintbl[]) { | |
8785 | { 0x12, 0xb7a60130 }, | |
8786 | { 0x13, 0x40000000 }, | |
8787 | { 0x14, 0x411111f0 }, | |
8788 | { 0x16, 0x411111f0 }, | |
8789 | { 0x17, 0x90170110 }, | |
8790 | { 0x18, 0x411111f0 }, | |
8791 | { 0x19, 0x02a11030 }, | |
8792 | { 0x1a, 0x411111f0 }, | |
8793 | { 0x1b, 0x04a19030 }, | |
8794 | { 0x1d, 0x40600001 }, | |
8795 | { 0x1e, 0x411111f0 }, | |
8796 | { 0x21, 0x03211020 }, | |
8797 | {} | |
8798 | }, | |
8799 | .chained = true, | |
8800 | .chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED, | |
8801 | }, | |
f2be77fe | 8802 | [ALC285_FIXUP_HP_SPECTRE_X360] = { |
434591b2 ED |
8803 | .type = HDA_FIXUP_FUNC, |
8804 | .v.func = alc285_fixup_hp_spectre_x360, | |
f2be77fe | 8805 | }, |
d94befbb DB |
8806 | [ALC285_FIXUP_HP_SPECTRE_X360_EB1] = { |
8807 | .type = HDA_FIXUP_FUNC, | |
8808 | .v.func = alc285_fixup_hp_spectre_x360_eb1 | |
8809 | }, | |
9ebaef05 HW |
8810 | [ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP] = { |
8811 | .type = HDA_FIXUP_FUNC, | |
8812 | .v.func = alc285_fixup_ideapad_s740_coef, | |
8813 | .chained = true, | |
8814 | .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK, | |
8815 | }, | |
29c8f40b PU |
8816 | [ALC623_FIXUP_LENOVO_THINKSTATION_P340] = { |
8817 | .type = HDA_FIXUP_FUNC, | |
8818 | .v.func = alc_fixup_no_shutup, | |
8819 | .chained = true, | |
8820 | .chain_id = ALC283_FIXUP_HEADSET_MIC, | |
8821 | }, | |
57c9e21a HW |
8822 | [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = { |
8823 | .type = HDA_FIXUP_PINS, | |
8824 | .v.pins = (const struct hda_pintbl[]) { | |
8825 | { 0x21, 0x03211030 }, /* Change the Headphone location to Left */ | |
8826 | { } | |
8827 | }, | |
8828 | .chained = true, | |
8829 | .chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC | |
8830 | }, | |
8903376d KHF |
8831 | [ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST] = { |
8832 | .type = HDA_FIXUP_FUNC, | |
8833 | .v.func = alc269_fixup_limit_int_mic_boost, | |
8834 | .chained = true, | |
8835 | .chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF, | |
8836 | }, | |
8f4c9042 BF |
8837 | [ALC285_FIXUP_LEGION_Y9000X_SPEAKERS] = { |
8838 | .type = HDA_FIXUP_FUNC, | |
8839 | .v.func = alc285_fixup_ideapad_s740_coef, | |
8840 | .chained = true, | |
8841 | .chain_id = ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE, | |
8842 | }, | |
8843 | [ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE] = { | |
8844 | .type = HDA_FIXUP_FUNC, | |
8845 | .v.func = alc287_fixup_legion_15imhg05_speakers, | |
8846 | .chained = true, | |
8847 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI, | |
8848 | }, | |
ad7cc2d4 CB |
8849 | [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = { |
8850 | .type = HDA_FIXUP_VERBS, | |
8851 | //.v.verbs = legion_15imhg05_coefs, | |
8852 | .v.verbs = (const struct hda_verb[]) { | |
8853 | // set left speaker Legion 7i. | |
8854 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8855 | { 0x20, AC_VERB_SET_PROC_COEF, 0x41 }, | |
8856 | ||
8857 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8858 | { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, | |
8859 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8860 | { 0x20, AC_VERB_SET_PROC_COEF, 0x1a }, | |
8861 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8862 | ||
8863 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8864 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
8865 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8866 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8867 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8868 | ||
8869 | // set right speaker Legion 7i. | |
8870 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8871 | { 0x20, AC_VERB_SET_PROC_COEF, 0x42 }, | |
8872 | ||
8873 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8874 | { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, | |
8875 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8876 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2a }, | |
8877 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8878 | ||
8879 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8880 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
8881 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8882 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8883 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8884 | {} | |
8885 | }, | |
8886 | .chained = true, | |
8887 | .chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE, | |
8888 | }, | |
8889 | [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = { | |
8890 | .type = HDA_FIXUP_FUNC, | |
8891 | .v.func = alc287_fixup_legion_15imhg05_speakers, | |
8892 | .chained = true, | |
8893 | .chain_id = ALC269_FIXUP_HEADSET_MODE, | |
8894 | }, | |
8895 | [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = { | |
8896 | .type = HDA_FIXUP_VERBS, | |
8897 | .v.verbs = (const struct hda_verb[]) { | |
8898 | // set left speaker Yoga 7i. | |
8899 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8900 | { 0x20, AC_VERB_SET_PROC_COEF, 0x41 }, | |
8901 | ||
8902 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8903 | { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, | |
8904 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8905 | { 0x20, AC_VERB_SET_PROC_COEF, 0x1a }, | |
8906 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8907 | ||
8908 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8909 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
8910 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8911 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8912 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8913 | ||
8914 | // set right speaker Yoga 7i. | |
8915 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8916 | { 0x20, AC_VERB_SET_PROC_COEF, 0x46 }, | |
8917 | ||
8918 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8919 | { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, | |
8920 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8921 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2a }, | |
8922 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8923 | ||
8924 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8925 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
8926 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8927 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8928 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8929 | {} | |
8930 | }, | |
8931 | .chained = true, | |
8932 | .chain_id = ALC269_FIXUP_HEADSET_MODE, | |
8933 | }, | |
56ec3e75 TI |
8934 | [ALC298_FIXUP_LENOVO_C940_DUET7] = { |
8935 | .type = HDA_FIXUP_FUNC, | |
8936 | .v.func = alc298_fixup_lenovo_c940_duet7, | |
8937 | }, | |
ad7cc2d4 CB |
8938 | [ALC287_FIXUP_13S_GEN2_SPEAKERS] = { |
8939 | .type = HDA_FIXUP_VERBS, | |
8940 | .v.verbs = (const struct hda_verb[]) { | |
8941 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8942 | { 0x20, AC_VERB_SET_PROC_COEF, 0x41 }, | |
023a062f | 8943 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, |
ad7cc2d4 CB |
8944 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, |
8945 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8946 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8947 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8948 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
8949 | { 0x20, AC_VERB_SET_PROC_COEF, 0x42 }, | |
8950 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
8951 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
8952 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8953 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
8954 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
8955 | {} | |
8956 | }, | |
8957 | .chained = true, | |
8958 | .chain_id = ALC269_FIXUP_HEADSET_MODE, | |
8959 | }, | |
619764cc | 8960 | [ALC256_FIXUP_SET_COEF_DEFAULTS] = { |
dd6dd6e3 | 8961 | .type = HDA_FIXUP_FUNC, |
619764cc | 8962 | .v.func = alc256_fixup_set_coef_defaults, |
dd6dd6e3 | 8963 | }, |
5fc462c3 JC |
8964 | [ALC245_FIXUP_HP_GPIO_LED] = { |
8965 | .type = HDA_FIXUP_FUNC, | |
8966 | .v.func = alc245_fixup_hp_gpio_led, | |
8967 | }, | |
1278cc5a JS |
8968 | [ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = { |
8969 | .type = HDA_FIXUP_PINS, | |
8970 | .v.pins = (const struct hda_pintbl[]) { | |
8971 | { 0x19, 0x03a11120 }, /* use as headset mic, without its own jack detect */ | |
8972 | { } | |
8973 | }, | |
8974 | .chained = true, | |
8975 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, | |
8976 | }, | |
174a7fb3 WS |
8977 | [ALC233_FIXUP_NO_AUDIO_JACK] = { |
8978 | .type = HDA_FIXUP_FUNC, | |
8979 | .v.func = alc233_fixup_no_audio_jack, | |
8980 | }, | |
edca7cc4 WS |
8981 | [ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME] = { |
8982 | .type = HDA_FIXUP_FUNC, | |
8983 | .v.func = alc256_fixup_mic_no_presence_and_resume, | |
8984 | .chained = true, | |
8985 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
8986 | }, | |
d3dca026 LT |
8987 | [ALC287_FIXUP_LEGION_16ACHG6] = { |
8988 | .type = HDA_FIXUP_FUNC, | |
8989 | .v.func = alc287_fixup_legion_16achg6_speakers, | |
8990 | }, | |
ae7abe36 SB |
8991 | [ALC287_FIXUP_CS35L41_I2C_2] = { |
8992 | .type = HDA_FIXUP_FUNC, | |
8993 | .v.func = cs35l41_fixup_i2c_two, | |
a6ac60b3 HW |
8994 | .chained = true, |
8995 | .chain_id = ALC269_FIXUP_THINKPAD_ACPI, | |
ae7abe36 | 8996 | }, |
b3fbe536 AC |
8997 | [ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED] = { |
8998 | .type = HDA_FIXUP_FUNC, | |
8999 | .v.func = cs35l41_fixup_i2c_two, | |
9000 | .chained = true, | |
9001 | .chain_id = ALC285_FIXUP_HP_MUTE_LED, | |
ae7abe36 | 9002 | }, |
07bcab93 LT |
9003 | [ALC245_FIXUP_CS35L41_SPI_2] = { |
9004 | .type = HDA_FIXUP_FUNC, | |
9005 | .v.func = cs35l41_fixup_spi_two, | |
9006 | }, | |
ce18f905 KHF |
9007 | [ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED] = { |
9008 | .type = HDA_FIXUP_FUNC, | |
9009 | .v.func = cs35l41_fixup_spi_two, | |
9010 | .chained = true, | |
9011 | .chain_id = ALC285_FIXUP_HP_GPIO_LED, | |
9012 | }, | |
07bcab93 LT |
9013 | [ALC245_FIXUP_CS35L41_SPI_4] = { |
9014 | .type = HDA_FIXUP_FUNC, | |
9015 | .v.func = cs35l41_fixup_spi_four, | |
9016 | }, | |
9017 | [ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED] = { | |
9018 | .type = HDA_FIXUP_FUNC, | |
864cb14c | 9019 | .v.func = cs35l41_fixup_spi_four, |
07bcab93 | 9020 | .chained = true, |
864cb14c | 9021 | .chain_id = ALC285_FIXUP_HP_GPIO_LED, |
07bcab93 | 9022 | }, |
91502a9a AS |
9023 | [ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED] = { |
9024 | .type = HDA_FIXUP_VERBS, | |
9025 | .v.verbs = (const struct hda_verb[]) { | |
9026 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x19 }, | |
9027 | { 0x20, AC_VERB_SET_PROC_COEF, 0x8e11 }, | |
9028 | { } | |
9029 | }, | |
9030 | .chained = true, | |
9031 | .chain_id = ALC285_FIXUP_HP_MUTE_LED, | |
9032 | }, | |
1efcdd9c GM |
9033 | [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET] = { |
9034 | .type = HDA_FIXUP_FUNC, | |
9035 | .v.func = alc_fixup_dell4_mic_no_presence_quiet, | |
9036 | .chained = true, | |
9037 | .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, | |
9038 | }, | |
309d7363 DH |
9039 | [ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE] = { |
9040 | .type = HDA_FIXUP_PINS, | |
9041 | .v.pins = (const struct hda_pintbl[]) { | |
9042 | { 0x19, 0x02a1112c }, /* use as headset mic, without its own jack detect */ | |
9043 | { } | |
9044 | }, | |
9045 | .chained = true, | |
9046 | .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC | |
9047 | }, | |
1e24881d LT |
9048 | [ALC287_FIXUP_LEGION_16ITHG6] = { |
9049 | .type = HDA_FIXUP_FUNC, | |
9050 | .v.func = alc287_fixup_legion_16ithg6_speakers, | |
9051 | }, | |
3790a3d6 PJ |
9052 | [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK] = { |
9053 | .type = HDA_FIXUP_VERBS, | |
9054 | .v.verbs = (const struct hda_verb[]) { | |
9055 | // enable left speaker | |
9056 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
9057 | { 0x20, AC_VERB_SET_PROC_COEF, 0x41 }, | |
9058 | ||
9059 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
9060 | { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, | |
9061 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
9062 | { 0x20, AC_VERB_SET_PROC_COEF, 0x1a }, | |
9063 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
9064 | ||
9065 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
9066 | { 0x20, AC_VERB_SET_PROC_COEF, 0xf }, | |
9067 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
9068 | { 0x20, AC_VERB_SET_PROC_COEF, 0x42 }, | |
9069 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
9070 | ||
9071 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
9072 | { 0x20, AC_VERB_SET_PROC_COEF, 0x10 }, | |
9073 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
9074 | { 0x20, AC_VERB_SET_PROC_COEF, 0x40 }, | |
9075 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
9076 | ||
9077 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
9078 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
9079 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
9080 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
9081 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
9082 | ||
9083 | // enable right speaker | |
9084 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 }, | |
9085 | { 0x20, AC_VERB_SET_PROC_COEF, 0x46 }, | |
9086 | ||
9087 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
9088 | { 0x20, AC_VERB_SET_PROC_COEF, 0xc }, | |
9089 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
9090 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2a }, | |
9091 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
9092 | ||
9093 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
9094 | { 0x20, AC_VERB_SET_PROC_COEF, 0xf }, | |
9095 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
9096 | { 0x20, AC_VERB_SET_PROC_COEF, 0x46 }, | |
9097 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
9098 | ||
9099 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
9100 | { 0x20, AC_VERB_SET_PROC_COEF, 0x10 }, | |
9101 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
9102 | { 0x20, AC_VERB_SET_PROC_COEF, 0x44 }, | |
9103 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
9104 | ||
9105 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 }, | |
9106 | { 0x20, AC_VERB_SET_PROC_COEF, 0x2 }, | |
9107 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
9108 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0 }, | |
9109 | { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 }, | |
9110 | ||
9111 | { }, | |
9112 | }, | |
9113 | }, | |
9114 | [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN] = { | |
9115 | .type = HDA_FIXUP_FUNC, | |
9116 | .v.func = alc287_fixup_yoga9_14iap7_bass_spk_pin, | |
9117 | .chained = true, | |
9118 | .chain_id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK, | |
9119 | }, | |
f1d4e28b KY |
9120 | }; |
9121 | ||
1d045db9 | 9122 | static const struct snd_pci_quirk alc269_fixup_tbl[] = { |
a6b92b66 | 9123 | SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC), |
693b613d DH |
9124 | SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC), |
9125 | SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC), | |
aaedfb47 | 9126 | SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700), |
7819717b | 9127 | SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC), |
aaedfb47 DH |
9128 | SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK), |
9129 | SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK), | |
02322ac9 | 9130 | SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572), |
b1e8972e | 9131 | SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572), |
1a22e775 | 9132 | SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS), |
433f894e | 9133 | SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC), |
c8426b27 | 9134 | SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF), |
13be30f1 | 9135 | SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK), |
705b65f1 | 9136 | SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE), |
6e15d126 | 9137 | SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC), |
b9c2fa52 | 9138 | SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK), |
495dc763 | 9139 | SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST), |
c7531e31 CC |
9140 | SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), |
9141 | SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), | |
13be30f1 CC |
9142 | SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK), |
9143 | SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK), | |
e2a829b3 | 9144 | SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK), |
8eae7e9b | 9145 | SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS), |
781c90c0 | 9146 | SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE), |
d0e18561 | 9147 | SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC), |
667a8f73 JHP |
9148 | SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), |
9149 | SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), | |
9150 | SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), | |
d0e18561 | 9151 | SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC), |
5f3fe25e | 9152 | SND_PCI_QUIRK(0x1025, 0x129d, "Acer SWIFT SF313-51", ALC256_FIXUP_ACER_MIC_NO_PRESENCE), |
35171fbf | 9153 | SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE), |
2733cceb | 9154 | SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), |
ea5c7eba | 9155 | SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC), |
cbc05fd6 | 9156 | SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC), |
2a5bb694 | 9157 | SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), |
0d4867a1 | 9158 | SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), |
f50a121d | 9159 | SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE), |
57c9e21a | 9160 | SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC), |
aaedfb47 | 9161 | SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z), |
841bdf85 | 9162 | SND_PCI_QUIRK(0x1028, 0x053c, "Dell Latitude E5430", ALC292_FIXUP_DELL_E7X), |
6ed1131f | 9163 | SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS), |
86f799b8 | 9164 | SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X), |
cf52103a | 9165 | SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X), |
8b99aba7 TI |
9166 | SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X), |
9167 | SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X), | |
0f4881dc | 9168 | SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER), |
73bdd597 DH |
9169 | SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), |
9170 | SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), | |
9171 | SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), | |
0f4881dc DH |
9172 | SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK), |
9173 | SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK), | |
98070576 | 9174 | SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X), |
4275554d | 9175 | SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X), |
0f4881dc | 9176 | SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK), |
a22aa26f KY |
9177 | SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), |
9178 | SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), | |
831bfdf9 | 9179 | SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13), |
afecb146 | 9180 | SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), |
3a05d12f | 9181 | SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK), |
8b72415d | 9182 | SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), |
b734304f KY |
9183 | SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), |
9184 | SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), | |
c04017ea DH |
9185 | SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), |
9186 | SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), | |
9187 | SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), | |
9188 | SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), | |
9189 | SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), | |
fd06c77e | 9190 | SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER), |
3b43b71f | 9191 | SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE), |
c0ca5ece | 9192 | SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP), |
709ae62e | 9193 | SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME), |
dd9aa335 | 9194 | SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME), |
493de342 | 9195 | SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER), |
aa143ad3 | 9196 | SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3), |
5f364135 | 9197 | SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE), |
40e2c4e5 KY |
9198 | SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB), |
9199 | SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB), | |
f0ba9d69 KY |
9200 | SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC), |
9201 | SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC), | |
ae104a21 | 9202 | SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB), |
136824ef | 9203 | SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE), |
da484d00 | 9204 | SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE), |
c2a7c55a | 9205 | SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB), |
e79c2269 | 9206 | SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK), |
aa143ad3 | 9207 | SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK), |
78def224 KY |
9208 | SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE), |
9209 | SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE), | |
92666d45 KY |
9210 | SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC), |
9211 | SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC), | |
1efcdd9c | 9212 | SND_PCI_QUIRK(0x1028, 0x0a38, "Dell Latitude 7520", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET), |
c1e89523 | 9213 | SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC), |
da946920 | 9214 | SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK), |
eb676622 | 9215 | SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK), |
2b987fe8 CC |
9216 | SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE), |
9217 | SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE), | |
15dad62f | 9218 | SND_PCI_QUIRK(0x1028, 0x0b19, "Dell XPS 15 9520", ALC289_FIXUP_DUAL_SPK), |
bdc9b739 | 9219 | SND_PCI_QUIRK(0x1028, 0x0b1a, "Dell Precision 5570", ALC289_FIXUP_DUAL_SPK), |
a22aa26f KY |
9220 | SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), |
9221 | SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), | |
08fb0d0e | 9222 | SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2), |
9f5c6faf | 9223 | SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED), |
8e35cd4a | 9224 | SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED), |
7976eb49 | 9225 | SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
8a02b164 | 9226 | SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
8a02b164 | 9227 | SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
45461e3b TI |
9228 | SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
9229 | SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC), | |
9230 | SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
9231 | SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
9c5dc3bf KY |
9232 | SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), |
9233 | SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), | |
9234 | SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), | |
9235 | SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), | |
9c5dc3bf | 9236 | SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), |
9c5dc3bf KY |
9237 | SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
9238 | SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
9239 | SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
9240 | SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
9241 | SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
9c5dc3bf | 9242 | SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
04d5466a | 9243 | SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED), |
45461e3b | 9244 | SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY), |
c60666bd | 9245 | SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
c60666bd KY |
9246 | SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
9247 | SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
9248 | SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
45461e3b TI |
9249 | SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
9250 | SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
9251 | SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
9252 | SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
9253 | SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED), | |
9c5dc3bf | 9254 | SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
45461e3b | 9255 | SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS), |
9c5dc3bf | 9256 | SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
45461e3b | 9257 | SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS), |
9c5dc3bf | 9258 | SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), |
c60666bd | 9259 | SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
c60666bd | 9260 | SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
c60666bd | 9261 | SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
c60666bd | 9262 | SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
45461e3b TI |
9263 | SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
9264 | SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
9265 | SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
9266 | SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
9267 | SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
c60666bd | 9268 | SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
c60666bd KY |
9269 | SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
9270 | SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
45461e3b TI |
9271 | SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
9272 | SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M), | |
9273 | SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
9274 | SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), | |
8a02b164 KY |
9275 | SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), |
9276 | SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
9277 | SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
9278 | SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), | |
4ba5c853 | 9279 | SND_PCI_QUIRK(0x103c, 0x2b5e, "HP 288 Pro G2 MT", ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE), |
167897f4 JK |
9280 | SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE), |
9281 | SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE), | |
1c9d9dfd KY |
9282 | SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC), |
9283 | SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC), | |
563785ed | 9284 | SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
e549d190 | 9285 | SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC), |
bbf8ff6b | 9286 | SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360), |
aeedad25 | 9287 | SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
167897f4 JK |
9288 | SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE), |
9289 | SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE), | |
56e40eb6 | 9290 | SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
901be145 | 9291 | SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
190d0381 | 9292 | SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
5d84b531 | 9293 | SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN), |
d33cd42d | 9294 | SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3), |
f2be77fe | 9295 | SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360), |
d296a74b | 9296 | SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
0ac05b25 | 9297 | SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
b2c22910 | 9298 | SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED), |
622464c8 | 9299 | SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO), |
24df5428 IH |
9300 | SND_PCI_QUIRK(0x103c, 0x86e7, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1), |
9301 | SND_PCI_QUIRK(0x103c, 0x86e8, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1), | |
15d295b5 | 9302 | SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
61d3e874 | 9303 | SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
a598098c | 9304 | SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED), |
c058493d | 9305 | SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED), |
b2c22910 | 9306 | SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED), |
75b62ab6 | 9307 | SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), |
05ec7161 | 9308 | SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), |
56496253 | 9309 | SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
08befca4 | 9310 | SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED), |
431e76c3 | 9311 | SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED), |
24164f43 | 9312 | SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED), |
91bc1568 JS |
9313 | SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation", |
9314 | ALC285_FIXUP_HP_GPIO_AMP_INIT), | |
9315 | SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation", | |
9316 | ALC285_FIXUP_HP_GPIO_AMP_INIT), | |
30267718 | 9317 | SND_PCI_QUIRK(0x103c, 0x8786, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED), |
b2e6b3d9 | 9318 | SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED), |
375f8426 | 9319 | SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED), |
48422958 | 9320 | SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED), |
e7d66cf7 | 9321 | SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), |
2b70b264 | 9322 | SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), |
fb3acdb2 | 9323 | SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), |
417eadfd | 9324 | SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), |
a0ccbc53 KY |
9325 | SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED), |
9326 | SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED), | |
93ab3eaf | 9327 | SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP), |
c3bb2b52 | 9328 | SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP), |
d07149ab | 9329 | SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), |
dfc2e8ae | 9330 | SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), |
d94befbb DB |
9331 | SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1), |
9332 | SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1), | |
53b861be | 9333 | SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), |
c3d2c882 | 9334 | SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), |
dfb06401 | 9335 | SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), |
ca688339 | 9336 | SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), |
8903376d KHF |
9337 | SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST), |
9338 | SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST), | |
50dbfae9 | 9339 | SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
e650c1a9 | 9340 | SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
bbe183e0 | 9341 | SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), |
600dd2a7 | 9342 | SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED), |
91502a9a | 9343 | SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED), |
0e68c4b1 | 9344 | SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED), |
bd15b155 | 9345 | SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST), |
42334fbc | 9346 | SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED), |
49632230 | 9347 | SND_PCI_QUIRK(0x103c, 0x8902, "HP OMEN 16", ALC285_FIXUP_HP_MUTE_LED), |
5f5d8890 AC |
9348 | SND_PCI_QUIRK(0x103c, 0x896e, "HP EliteBook x360 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), |
9349 | SND_PCI_QUIRK(0x103c, 0x8971, "HP EliteBook 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), | |
9350 | SND_PCI_QUIRK(0x103c, 0x8972, "HP EliteBook 840 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), | |
9351 | SND_PCI_QUIRK(0x103c, 0x8973, "HP EliteBook 860 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), | |
9352 | SND_PCI_QUIRK(0x103c, 0x8974, "HP EliteBook 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), | |
9353 | SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), | |
07bcab93 LT |
9354 | SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4), |
9355 | SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2), | |
9356 | SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2), | |
b3fbe536 | 9357 | SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED), |
07bcab93 | 9358 | SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2), |
b3fbe536 | 9359 | SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED), |
07bcab93 | 9360 | SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2), |
e6194c8d AC |
9361 | SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED), |
9362 | SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED), | |
024a7ad9 | 9363 | SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED), |
e6194c8d AC |
9364 | SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED), |
9365 | SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED), | |
07bcab93 | 9366 | SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED), |
ce18f905 | 9367 | SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), |
f7ac570d | 9368 | SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), |
5f3d696e | 9369 | SND_PCI_QUIRK(0x103c, 0x8a78, "HP Dev One", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST), |
61d30785 JS |
9370 | SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED), |
9371 | SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED), | |
9372 | SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED), | |
9373 | SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED), | |
35a17444 | 9374 | SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), |
c578d5da KHF |
9375 | SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), |
9376 | SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), | |
c1732ede | 9377 | SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC), |
7bba2157 | 9378 | SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300), |
3e0d611b | 9379 | SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
9cf6533e | 9380 | SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK), |
c1732ede | 9381 | SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC), |
4eab0ea1 | 9382 | SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), |
3e0d611b | 9383 | SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
4eab0ea1 | 9384 | SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), |
3cd0ed63 | 9385 | SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), |
5cfca596 | 9386 | SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE), |
4eab0ea1 TI |
9387 | SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE), |
9388 | SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE), | |
461122b9 | 9389 | SND_PCI_QUIRK(0x1043, 0x12af, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2), |
c1732ede | 9390 | SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC), |
3cd0ed63 | 9391 | SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC), |
f882c4be | 9392 | SND_PCI_QUIRK(0x1043, 0x1313, "Asus K42JZ", ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE), |
c1732ede | 9393 | SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC), |
2cede303 | 9394 | SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK), |
23870831 | 9395 | SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A), |
b16c8f22 TI |
9396 | SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK), |
9397 | SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401), | |
3e0d611b | 9398 | SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC), |
8eedd3a7 | 9399 | SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS), |
48e01504 | 9400 | SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK), |
3cd0ed63 | 9401 | SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS), |
8c8967a7 | 9402 | SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC), |
4963d66b | 9403 | SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC), |
158ae2f5 | 9404 | SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE), |
4fad4fb9 | 9405 | SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401), |
5de3b943 | 9406 | SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE), |
8b33a134 | 9407 | SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE), |
7900e817 | 9408 | SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE), |
017f2a10 | 9409 | SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW), |
28e8af8a | 9410 | SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC), |
461122b9 | 9411 | SND_PCI_QUIRK(0x1043, 0x1a8f, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2), |
1b94e59d | 9412 | SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B), |
693b613d | 9413 | SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC), |
615966ad | 9414 | SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), |
4eab0ea1 | 9415 | SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
bc2c2354 | 9416 | SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS), |
c1732ede | 9417 | SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC), |
b16c8f22 | 9418 | SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401), |
ef9ce66f | 9419 | SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE), |
4b43d05a | 9420 | SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502), |
c1b55029 | 9421 | SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS), |
c611e659 | 9422 | SND_PCI_QUIRK(0x1043, 0x1e5e, "ASUS ROG Strix G513", ALC294_FIXUP_ASUS_G513_PINS), |
76fae618 | 9423 | SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401), |
ba1f8180 | 9424 | SND_PCI_QUIRK(0x1043, 0x1c52, "ASUS Zephyrus G15 2022", ALC289_FIXUP_ASUS_GA401), |
293a92c1 | 9425 | SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401), |
2ea8e129 | 9426 | SND_PCI_QUIRK(0x1043, 0x1f92, "ASUS ROG Flow X16", ALC289_FIXUP_ASUS_GA401), |
eeed4cd1 | 9427 | SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2), |
adabb3ec TI |
9428 | SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC), |
9429 | SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC), | |
9430 | SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC), | |
9431 | SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC), | |
d240d1dc | 9432 | SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101), |
1d045db9 TI |
9433 | SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2), |
9434 | SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ), | |
9435 | SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ), | |
e9bd7d5c | 9436 | SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX), |
cab561f8 TI |
9437 | SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE), |
9438 | SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE), | |
24519911 | 9439 | SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK), |
4df3fd17 | 9440 | SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT), |
cc7016ab | 9441 | SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN), |
fdcc968a | 9442 | SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC), |
c656f747 | 9443 | SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN), |
2041d564 | 9444 | SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC), |
b84e8436 | 9445 | SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE), |
c656f747 | 9446 | SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE), |
6fa38ef1 | 9447 | SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), |
ce2e79b2 PH |
9448 | SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), |
9449 | SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), | |
0fca97a2 | 9450 | SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE), |
a33cc48d | 9451 | SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC), |
a2d57ebe KM |
9452 | SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_AMP), |
9453 | SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_AMP), | |
9454 | SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_AMP), | |
9455 | SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_AMP), | |
823ff161 | 9456 | SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8), |
a2d57ebe KM |
9457 | SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_AMP), |
9458 | SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_AMP), | |
ef248d9b | 9459 | SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET), |
abaa2274 AA |
9460 | SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC), |
9461 | SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC), | |
8cd65271 | 9462 | SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC), |
6ca653e3 | 9463 | SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK), |
b5acfe15 | 9464 | SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
745f260b | 9465 | SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
b5acfe15 PH |
9466 | SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9467 | SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9468 | SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9469 | SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9470 | SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9471 | SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9472 | SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
be561ffa | 9473 | SND_PCI_QUIRK(0x1558, 0x4041, "Clevo NV4[15]PZ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
b5acfe15 PH |
9474 | SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9475 | SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9476 | SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
1278cc5a JS |
9477 | SND_PCI_QUIRK(0x1558, 0x5015, "Clevo NH5[58]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9478 | SND_PCI_QUIRK(0x1558, 0x5017, "Clevo NH7[79]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
b5acfe15 PH |
9479 | SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9480 | SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9481 | SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9482 | SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9483 | SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
1278cc5a JS |
9484 | SND_PCI_QUIRK(0x1558, 0x50e1, "Clevo NH5[58]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9485 | SND_PCI_QUIRK(0x1558, 0x50e2, "Clevo NH7[79]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
b5acfe15 | 9486 | SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
1d5cfca2 | 9487 | SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
b5acfe15 | 9488 | SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
1d5cfca2 PH |
9489 | SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9490 | SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
b5acfe15 PH |
9491 | SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9492 | SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9493 | SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9494 | SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9495 | SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
1d5cfca2 PH |
9496 | SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9497 | SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9498 | SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9499 | SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
627ce0d6 | 9500 | SND_PCI_QUIRK(0x1558, 0x7716, "Clevo NS50PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
90d74fdb | 9501 | SND_PCI_QUIRK(0x1558, 0x7717, "Clevo NS70PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
11bea269 | 9502 | SND_PCI_QUIRK(0x1558, 0x7718, "Clevo L140PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
b5acfe15 PH |
9503 | SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9504 | SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9505 | SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9506 | SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9507 | SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
745f260b WS |
9508 | SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9509 | SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9510 | SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC), | |
9511 | SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC), | |
9512 | SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC), | |
b5acfe15 | 9513 | SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9cb72750 | 9514 | SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
86222af0 | 9515 | SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
0c20fce1 | 9516 | SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
b5acfe15 | 9517 | SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
edca7cc4 | 9518 | SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME), |
b5acfe15 PH |
9519 | SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9520 | SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9521 | SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9522 | SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
1d5cfca2 | 9523 | SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
b5acfe15 PH |
9524 | SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9525 | SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
745f260b WS |
9526 | SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9527 | SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
1d5cfca2 PH |
9528 | SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), |
9529 | SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9530 | SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9531 | SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9532 | SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
9533 | SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), | |
ca169cc2 | 9534 | SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS), |
29c8f40b | 9535 | SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340), |
1d045db9 TI |
9536 | SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE), |
9537 | SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE), | |
9538 | SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE), | |
9539 | SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE), | |
9540 | SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE), | |
f552ff54 | 9541 | SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK), |
b590b38c | 9542 | SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST), |
c8415a48 | 9543 | SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK), |
4407be6b | 9544 | SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK), |
108cc108 | 9545 | SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK), |
aaedfb47 | 9546 | SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK), |
9a811230 | 9547 | SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440), |
1c37c223 | 9548 | SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK), |
a12137e7 | 9549 | SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK), |
59a51a6b | 9550 | SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK), |
6d16941a | 9551 | SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK), |
7c21539c | 9552 | SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK), |
a4a9e082 | 9553 | SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
b6903c0e | 9554 | SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK), |
d05ea7da | 9555 | SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK), |
c0278669 | 9556 | SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK), |
61fcf8ec KY |
9557 | SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), |
9558 | SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
dab38e43 | 9559 | SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460), |
c636b95e | 9560 | SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460), |
61fcf8ec KY |
9561 | SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK), |
9562 | SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
9563 | SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
e4c07b3b | 9564 | SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460), |
61fcf8ec KY |
9565 | SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), |
9566 | SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
9567 | SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
85981dfd | 9568 | SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
9774dc21 | 9569 | SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK), |
ca707b3f | 9570 | SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK), |
446b8185 KY |
9571 | SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK), |
9572 | SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK), | |
ae7abe36 SB |
9573 | SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2), |
9574 | SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2), | |
9575 | SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2), | |
3694cb29 | 9576 | SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY), |
6ef2f68f | 9577 | SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY), |
f33f79f3 | 9578 | SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), |
bef33e19 | 9579 | SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), |
e41fc8c5 | 9580 | SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), |
65811834 | 9581 | SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), |
8da5bbfc | 9582 | SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), |
2a36c16e | 9583 | SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC), |
8a6c55d0 AM |
9584 | SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC), |
9585 | SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC), | |
e4efa826 | 9586 | SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340), |
3790a3d6 | 9587 | SND_PCI_QUIRK(0x17aa, 0x3801, "Lenovo Yoga9 14IAP7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN), |
85743a84 | 9588 | SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo Yoga DuetITL 2021", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), |
2aac550d | 9589 | SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS), |
56ec3e75 | 9590 | SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940 / Yoga Duet 7", ALC298_FIXUP_LENOVO_C940_DUET7), |
2aac550d | 9591 | SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS), |
3b79954f | 9592 | SND_PCI_QUIRK(0x17aa, 0x3820, "Yoga Duet 7 13ITL6", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), |
8f4c9042 | 9593 | SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS), |
2aac550d | 9594 | SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF), |
b81e9e5c | 9595 | SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), |
c07f2c7b | 9596 | SND_PCI_QUIRK(0x17aa, 0x383d, "Legion Y9000X 2019", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS), |
9ebaef05 | 9597 | SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP), |
d3dca026 | 9598 | SND_PCI_QUIRK(0x17aa, 0x3847, "Legion 7 16ACHG6", ALC287_FIXUP_LEGION_16ACHG6), |
2aac550d | 9599 | SND_PCI_QUIRK(0x17aa, 0x384a, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), |
ad7cc2d4 CB |
9600 | SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), |
9601 | SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), | |
1e24881d | 9602 | SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6), |
70cfdd03 | 9603 | SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN), |
56f27013 | 9604 | SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI), |
fedb2245 | 9605 | SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC), |
56df90b6 | 9606 | SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI), |
f552ff54 | 9607 | SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K), |
a4a9e082 | 9608 | SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
1bb3e062 | 9609 | SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC), |
c497d9f9 | 9610 | SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK), |
cd5302c0 | 9611 | SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
f2aa1110 | 9612 | SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK), |
80b311d3 | 9613 | SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK), |
09ea9976 | 9614 | SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK), |
037e1197 | 9615 | SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK), |
23adc192 | 9616 | SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE), |
0f087ee3 | 9617 | SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460), |
9cd25743 | 9618 | SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460), |
0f087ee3 | 9619 | SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460), |
61fcf8ec KY |
9620 | SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), |
9621 | SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
9622 | SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
264fb034 | 9623 | SND_PCI_QUIRK(0x17aa, 0x508b, "Thinkpad X12 Gen 1", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS), |
cd5302c0 | 9624 | SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), |
61fcf8ec KY |
9625 | SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), |
9626 | SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), | |
1d045db9 | 9627 | SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD), |
174a7fb3 | 9628 | SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK), |
0fbf21c3 | 9629 | SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS), |
cbcdf8c4 | 9630 | SND_PCI_QUIRK(0x19e5, 0x320f, "Huawei WRT-WX9 ", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE), |
f1ec5be1 HC |
9631 | SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20), |
9632 | SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI), | |
9633 | SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101), | |
02b504d9 | 9634 | SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */ |
c656f747 TI |
9635 | SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802), |
9636 | SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X), | |
619764cc | 9637 | SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS), |
8b3b2392 WS |
9638 | SND_PCI_QUIRK(0x1d05, 0x1096, "TongFang GMxMRxx", ALC269_FIXUP_NO_SHUTUP), |
9639 | SND_PCI_QUIRK(0x1d05, 0x1100, "TongFang GKxNRxx", ALC269_FIXUP_NO_SHUTUP), | |
9640 | SND_PCI_QUIRK(0x1d05, 0x1111, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP), | |
9641 | SND_PCI_QUIRK(0x1d05, 0x1119, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP), | |
9642 | SND_PCI_QUIRK(0x1d05, 0x1129, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP), | |
9643 | SND_PCI_QUIRK(0x1d05, 0x1147, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP), | |
9644 | SND_PCI_QUIRK(0x1d05, 0x115c, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP), | |
9645 | SND_PCI_QUIRK(0x1d05, 0x121b, "TongFang GMxAGxx", ALC269_FIXUP_NO_SHUTUP), | |
fc19d559 | 9646 | SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC), |
b95bc12e | 9647 | SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE), |
695d1ec3 | 9648 | SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC), |
9b043a8f | 9649 | SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC), |
e1c86210 | 9650 | SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC), |
d1ee66c5 | 9651 | SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC), |
e2d2fded | 9652 | SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED), |
73e7161e | 9653 | SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10), |
309d7363 | 9654 | SND_PCI_QUIRK(0xf111, 0x0001, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE), |
a4297b5d | 9655 | |
a7f3eedc | 9656 | #if 0 |
a4297b5d TI |
9657 | /* Below is a quirk table taken from the old code. |
9658 | * Basically the device should work as is without the fixup table. | |
9659 | * If BIOS doesn't give a proper info, enable the corresponding | |
9660 | * fixup entry. | |
7d7eb9ea | 9661 | */ |
a4297b5d TI |
9662 | SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A", |
9663 | ALC269_FIXUP_AMIC), | |
9664 | SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC), | |
a4297b5d TI |
9665 | SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC), |
9666 | SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC), | |
9667 | SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC), | |
9668 | SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC), | |
9669 | SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC), | |
9670 | SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC), | |
9671 | SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC), | |
9672 | SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC), | |
9673 | SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC), | |
9674 | SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC), | |
9675 | SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC), | |
9676 | SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC), | |
9677 | SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC), | |
9678 | SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC), | |
9679 | SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC), | |
9680 | SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC), | |
9681 | SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC), | |
9682 | SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC), | |
9683 | SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC), | |
9684 | SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC), | |
9685 | SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC), | |
9686 | SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC), | |
9687 | SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC), | |
9688 | SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC), | |
9689 | SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC), | |
9690 | SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC), | |
9691 | SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC), | |
9692 | SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC), | |
9693 | SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC), | |
9694 | SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC), | |
9695 | SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC), | |
9696 | SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC), | |
9697 | SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC), | |
9698 | SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC), | |
9699 | SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC), | |
9700 | SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC), | |
9701 | SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC), | |
9702 | SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC), | |
9703 | #endif | |
9704 | {} | |
9705 | }; | |
9706 | ||
214eef76 DH |
9707 | static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = { |
9708 | SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC), | |
9709 | SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED), | |
9710 | SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO), | |
9711 | SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI), | |
0fbf21c3 | 9712 | SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED), |
214eef76 DH |
9713 | {} |
9714 | }; | |
9715 | ||
1727a771 | 9716 | static const struct hda_model_fixup alc269_fixup_models[] = { |
a4297b5d TI |
9717 | {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"}, |
9718 | {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"}, | |
6e72aa5f TI |
9719 | {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"}, |
9720 | {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"}, | |
9721 | {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"}, | |
7c478f03 | 9722 | {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"}, |
b016951e TI |
9723 | {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"}, |
9724 | {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"}, | |
108cc108 | 9725 | {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"}, |
b590b38c | 9726 | {.id = ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, .name = "lenovo-dock-limit-boost"}, |
9f5c6faf | 9727 | {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"}, |
04d5466a | 9728 | {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"}, |
e32aa85a DH |
9729 | {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"}, |
9730 | {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"}, | |
a26d96c7 TI |
9731 | {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"}, |
9732 | {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"}, | |
be8ef16a | 9733 | {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"}, |
0202e99c | 9734 | {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"}, |
1c37c223 | 9735 | {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"}, |
9a811230 | 9736 | {.id = ALC292_FIXUP_TPT440, .name = "tpt440"}, |
c636b95e | 9737 | {.id = ALC292_FIXUP_TPT460, .name = "tpt460"}, |
399c01aa | 9738 | {.id = ALC298_FIXUP_TPT470_DOCK_FIX, .name = "tpt470-dock-fix"}, |
a26d96c7 | 9739 | {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"}, |
ba90d6a6 | 9740 | {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"}, |
28d1d6d2 | 9741 | {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"}, |
a26d96c7 TI |
9742 | {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"}, |
9743 | {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"}, | |
9744 | {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"}, | |
9745 | {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"}, | |
9746 | {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"}, | |
9747 | {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"}, | |
9748 | {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"}, | |
9749 | {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"}, | |
9750 | {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"}, | |
9751 | {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"}, | |
9752 | {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"}, | |
9753 | {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"}, | |
9754 | {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"}, | |
9755 | {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"}, | |
9756 | {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"}, | |
9757 | {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"}, | |
9758 | {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"}, | |
9759 | {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"}, | |
9760 | {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"}, | |
9761 | {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"}, | |
9762 | {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"}, | |
9763 | {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"}, | |
9764 | {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"}, | |
9765 | {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"}, | |
9766 | {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"}, | |
9767 | {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"}, | |
9768 | {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"}, | |
9769 | {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"}, | |
9770 | {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"}, | |
9771 | {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"}, | |
9772 | {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"}, | |
9773 | {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"}, | |
9774 | {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"}, | |
9775 | {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"}, | |
9776 | {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"}, | |
9777 | {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"}, | |
9778 | {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"}, | |
9779 | {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"}, | |
9780 | {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"}, | |
9781 | {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"}, | |
b3802783 | 9782 | {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"}, |
a26d96c7 | 9783 | {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"}, |
c8426b27 | 9784 | {.id = ALC269VB_FIXUP_ASPIRE_E1_COEF, .name = "aspire-e1-coef"}, |
a26d96c7 TI |
9785 | {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"}, |
9786 | {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"}, | |
9787 | {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"}, | |
9788 | {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"}, | |
9789 | {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"}, | |
9790 | {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"}, | |
9791 | {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"}, | |
9792 | {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"}, | |
9793 | {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"}, | |
9794 | {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"}, | |
9795 | {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"}, | |
9796 | {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"}, | |
9797 | {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"}, | |
9798 | {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"}, | |
a26d96c7 TI |
9799 | {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"}, |
9800 | {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"}, | |
9801 | {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"}, | |
82aa0d7e | 9802 | {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"}, |
a26d96c7 | 9803 | {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"}, |
d2cd795c | 9804 | {.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"}, |
a26d96c7 TI |
9805 | {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"}, |
9806 | {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"}, | |
9807 | {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"}, | |
9808 | {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"}, | |
9809 | {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"}, | |
9810 | {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"}, | |
9811 | {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"}, | |
9812 | {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"}, | |
9813 | {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"}, | |
9814 | {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"}, | |
9815 | {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"}, | |
9816 | {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"}, | |
9817 | {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"}, | |
9818 | {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"}, | |
9819 | {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"}, | |
9820 | {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"}, | |
9821 | {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"}, | |
8983eb60 KY |
9822 | {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"}, |
9823 | {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"}, | |
e2a829b3 | 9824 | {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"}, |
a2ef03fe | 9825 | {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"}, |
bd9c10bc | 9826 | {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"}, |
a2d57ebe | 9827 | {.id = ALC298_FIXUP_SAMSUNG_AMP, .name = "alc298-samsung-amp"}, |
ef248d9b | 9828 | {.id = ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc256-samsung-headphone"}, |
fc19d559 | 9829 | {.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"}, |
13468bfa | 9830 | {.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"}, |
c3bb2b52 | 9831 | {.id = ALC245_FIXUP_HP_X360_AMP, .name = "alc245-hp-x360-amp"}, |
5d84b531 | 9832 | {.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"}, |
f2be77fe | 9833 | {.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"}, |
d94befbb | 9834 | {.id = ALC285_FIXUP_HP_SPECTRE_X360_EB1, .name = "alc285-hp-spectre-x360-eb1"}, |
9ebaef05 | 9835 | {.id = ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, .name = "alc287-ideapad-bass-spk-amp"}, |
3790a3d6 | 9836 | {.id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN, .name = "alc287-yoga9-bass-spk-pin"}, |
29c8f40b | 9837 | {.id = ALC623_FIXUP_LENOVO_THINKSTATION_P340, .name = "alc623-lenovo-thinkstation-p340"}, |
57c9e21a | 9838 | {.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"}, |
aa723946 | 9839 | {.id = ALC285_FIXUP_HP_GPIO_AMP_INIT, .name = "alc285-hp-amp-init"}, |
1d045db9 | 9840 | {} |
6dda9f4a | 9841 | }; |
cfc5a845 | 9842 | #define ALC225_STANDARD_PINS \ |
cfc5a845 | 9843 | {0x21, 0x04211020} |
6dda9f4a | 9844 | |
e8191a8e HW |
9845 | #define ALC256_STANDARD_PINS \ |
9846 | {0x12, 0x90a60140}, \ | |
9847 | {0x14, 0x90170110}, \ | |
e8191a8e HW |
9848 | {0x21, 0x02211020} |
9849 | ||
fea185e2 | 9850 | #define ALC282_STANDARD_PINS \ |
11580297 | 9851 | {0x14, 0x90170110} |
e1e62b98 | 9852 | |
fea185e2 | 9853 | #define ALC290_STANDARD_PINS \ |
11580297 | 9854 | {0x12, 0x99a30130} |
fea185e2 DH |
9855 | |
9856 | #define ALC292_STANDARD_PINS \ | |
9857 | {0x14, 0x90170110}, \ | |
11580297 | 9858 | {0x15, 0x0221401f} |
977e6276 | 9859 | |
3f640970 HW |
9860 | #define ALC295_STANDARD_PINS \ |
9861 | {0x12, 0xb7a60130}, \ | |
9862 | {0x14, 0x90170110}, \ | |
3f640970 HW |
9863 | {0x21, 0x04211020} |
9864 | ||
703867e2 WS |
9865 | #define ALC298_STANDARD_PINS \ |
9866 | {0x12, 0x90a60130}, \ | |
9867 | {0x21, 0x03211020} | |
9868 | ||
e1918938 | 9869 | static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = { |
8a328ac1 KY |
9870 | SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC, |
9871 | {0x14, 0x01014020}, | |
9872 | {0x17, 0x90170110}, | |
9873 | {0x18, 0x02a11030}, | |
9874 | {0x19, 0x0181303F}, | |
9875 | {0x21, 0x0221102f}), | |
5824ce8d CC |
9876 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE, |
9877 | {0x12, 0x90a601c0}, | |
9878 | {0x14, 0x90171120}, | |
9879 | {0x21, 0x02211030}), | |
615966ad CC |
9880 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, |
9881 | {0x14, 0x90170110}, | |
9882 | {0x1b, 0x90a70130}, | |
9883 | {0x21, 0x03211020}), | |
9884 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, | |
9885 | {0x1a, 0x90a70130}, | |
9886 | {0x1b, 0x90170110}, | |
9887 | {0x21, 0x03211020}), | |
2ae95577 | 9888 | SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, |
cfc5a845 | 9889 | ALC225_STANDARD_PINS, |
8a132099 | 9890 | {0x12, 0xb7a60130}, |
cfc5a845 | 9891 | {0x14, 0x901701a0}), |
2ae95577 | 9892 | SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, |
cfc5a845 | 9893 | ALC225_STANDARD_PINS, |
8a132099 | 9894 | {0x12, 0xb7a60130}, |
cfc5a845 | 9895 | {0x14, 0x901701b0}), |
8a132099 HW |
9896 | SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, |
9897 | ALC225_STANDARD_PINS, | |
9898 | {0x12, 0xb7a60150}, | |
9899 | {0x14, 0x901701a0}), | |
9900 | SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9901 | ALC225_STANDARD_PINS, | |
9902 | {0x12, 0xb7a60150}, | |
9903 | {0x14, 0x901701b0}), | |
9904 | SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9905 | ALC225_STANDARD_PINS, | |
9906 | {0x12, 0xb7a60130}, | |
9907 | {0x1b, 0x90170110}), | |
0ce48e17 KHF |
9908 | SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
9909 | {0x1b, 0x01111010}, | |
9910 | {0x1e, 0x01451130}, | |
9911 | {0x21, 0x02211020}), | |
986376b6 HW |
9912 | SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, |
9913 | {0x12, 0x90a60140}, | |
9914 | {0x14, 0x90170110}, | |
9915 | {0x19, 0x02a11030}, | |
9916 | {0x21, 0x02211020}), | |
e41fc8c5 HW |
9917 | SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION, |
9918 | {0x14, 0x90170110}, | |
9919 | {0x19, 0x02a11030}, | |
9920 | {0x1a, 0x02a11040}, | |
9921 | {0x1b, 0x01014020}, | |
9922 | {0x21, 0x0221101f}), | |
d06fb562 HW |
9923 | SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION, |
9924 | {0x14, 0x90170110}, | |
9925 | {0x19, 0x02a11030}, | |
9926 | {0x1a, 0x02a11040}, | |
9927 | {0x1b, 0x01011020}, | |
9928 | {0x21, 0x0221101f}), | |
c6b17f10 HW |
9929 | SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION, |
9930 | {0x14, 0x90170110}, | |
9931 | {0x19, 0x02a11020}, | |
9932 | {0x1a, 0x02a11030}, | |
9933 | {0x21, 0x0221101f}), | |
92666d45 KY |
9934 | SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC, |
9935 | {0x21, 0x02211010}), | |
9e885770 KY |
9936 | SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC, |
9937 | {0x14, 0x90170110}, | |
9938 | {0x19, 0x02a11020}, | |
9939 | {0x21, 0x02211030}), | |
c77900e6 | 9940 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, |
c77900e6 | 9941 | {0x14, 0x90170110}, |
c77900e6 | 9942 | {0x21, 0x02211020}), |
86c72d1c HW |
9943 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9944 | {0x14, 0x90170130}, | |
9945 | {0x21, 0x02211040}), | |
76c2132e DH |
9946 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9947 | {0x12, 0x90a60140}, | |
9948 | {0x14, 0x90170110}, | |
76c2132e DH |
9949 | {0x21, 0x02211020}), |
9950 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9951 | {0x12, 0x90a60160}, | |
9952 | {0x14, 0x90170120}, | |
76c2132e | 9953 | {0x21, 0x02211030}), |
392c9da2 HW |
9954 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9955 | {0x14, 0x90170110}, | |
9956 | {0x1b, 0x02011020}, | |
9957 | {0x21, 0x0221101f}), | |
6aecd871 HW |
9958 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9959 | {0x14, 0x90170110}, | |
9960 | {0x1b, 0x01011020}, | |
9961 | {0x21, 0x0221101f}), | |
cba59972 | 9962 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
cba59972 | 9963 | {0x14, 0x90170130}, |
cba59972 | 9964 | {0x1b, 0x01014020}, |
cba59972 | 9965 | {0x21, 0x0221103f}), |
6aecd871 HW |
9966 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9967 | {0x14, 0x90170130}, | |
9968 | {0x1b, 0x01011020}, | |
9969 | {0x21, 0x0221103f}), | |
59ec4b57 HW |
9970 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9971 | {0x14, 0x90170130}, | |
9972 | {0x1b, 0x02011020}, | |
9973 | {0x21, 0x0221103f}), | |
e9c28e16 | 9974 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
e9c28e16 | 9975 | {0x14, 0x90170150}, |
e9c28e16 | 9976 | {0x1b, 0x02011020}, |
e9c28e16 WS |
9977 | {0x21, 0x0221105f}), |
9978 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
e9c28e16 | 9979 | {0x14, 0x90170110}, |
e9c28e16 | 9980 | {0x1b, 0x01014020}, |
e9c28e16 | 9981 | {0x21, 0x0221101f}), |
76c2132e DH |
9982 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9983 | {0x12, 0x90a60160}, | |
9984 | {0x14, 0x90170120}, | |
9985 | {0x17, 0x90170140}, | |
76c2132e DH |
9986 | {0x21, 0x0321102f}), |
9987 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9988 | {0x12, 0x90a60160}, | |
9989 | {0x14, 0x90170130}, | |
76c2132e DH |
9990 | {0x21, 0x02211040}), |
9991 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9992 | {0x12, 0x90a60160}, | |
9993 | {0x14, 0x90170140}, | |
76c2132e DH |
9994 | {0x21, 0x02211050}), |
9995 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
9996 | {0x12, 0x90a60170}, | |
9997 | {0x14, 0x90170120}, | |
76c2132e DH |
9998 | {0x21, 0x02211030}), |
9999 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, | |
10000 | {0x12, 0x90a60170}, | |
10001 | {0x14, 0x90170130}, | |
76c2132e | 10002 | {0x21, 0x02211040}), |
0a1f90a9 HW |
10003 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
10004 | {0x12, 0x90a60170}, | |
10005 | {0x14, 0x90171130}, | |
10006 | {0x21, 0x02211040}), | |
70658b99 | 10007 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
70658b99 HW |
10008 | {0x12, 0x90a60170}, |
10009 | {0x14, 0x90170140}, | |
70658b99 | 10010 | {0x21, 0x02211050}), |
9b5a4e39 | 10011 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
9b5a4e39 DH |
10012 | {0x12, 0x90a60180}, |
10013 | {0x14, 0x90170130}, | |
9b5a4e39 | 10014 | {0x21, 0x02211040}), |
f90d83b3 AK |
10015 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
10016 | {0x12, 0x90a60180}, | |
10017 | {0x14, 0x90170120}, | |
10018 | {0x21, 0x02211030}), | |
989dbe4a HW |
10019 | SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
10020 | {0x1b, 0x01011020}, | |
10021 | {0x21, 0x02211010}), | |
c1732ede CC |
10022 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC, |
10023 | {0x14, 0x90170110}, | |
10024 | {0x1b, 0x90a70130}, | |
10025 | {0x21, 0x04211020}), | |
10026 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC, | |
10027 | {0x14, 0x90170110}, | |
10028 | {0x1b, 0x90a70130}, | |
10029 | {0x21, 0x03211020}), | |
a806ef1c CC |
10030 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, |
10031 | {0x12, 0x90a60130}, | |
10032 | {0x14, 0x90170110}, | |
10033 | {0x21, 0x03211020}), | |
6ac371aa JHP |
10034 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, |
10035 | {0x12, 0x90a60130}, | |
10036 | {0x14, 0x90170110}, | |
10037 | {0x21, 0x04211020}), | |
e1037354 JHP |
10038 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, |
10039 | {0x1a, 0x90a70130}, | |
10040 | {0x1b, 0x90170110}, | |
10041 | {0x21, 0x03211020}), | |
9e885770 KY |
10042 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC, |
10043 | {0x14, 0x90170110}, | |
10044 | {0x19, 0x02a11020}, | |
10045 | {0x21, 0x0221101f}), | |
8a8de09c KY |
10046 | SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC, |
10047 | {0x17, 0x90170110}, | |
10048 | {0x19, 0x03a11030}, | |
10049 | {0x21, 0x03211020}), | |
cf51eb9d DH |
10050 | SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4, |
10051 | {0x12, 0x90a60130}, | |
cf51eb9d DH |
10052 | {0x14, 0x90170110}, |
10053 | {0x15, 0x0421101f}, | |
11580297 | 10054 | {0x1a, 0x04a11020}), |
0279661b HW |
10055 | SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED, |
10056 | {0x12, 0x90a60140}, | |
0279661b HW |
10057 | {0x14, 0x90170110}, |
10058 | {0x15, 0x0421101f}, | |
0279661b | 10059 | {0x18, 0x02811030}, |
0279661b | 10060 | {0x1a, 0x04a1103f}, |
11580297 | 10061 | {0x1b, 0x02011020}), |
42304474 | 10062 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 10063 | ALC282_STANDARD_PINS, |
42304474 | 10064 | {0x12, 0x99a30130}, |
42304474 | 10065 | {0x19, 0x03a11020}, |
42304474 | 10066 | {0x21, 0x0321101f}), |
2c609999 | 10067 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 10068 | ALC282_STANDARD_PINS, |
2c609999 | 10069 | {0x12, 0x99a30130}, |
2c609999 | 10070 | {0x19, 0x03a11020}, |
2c609999 HW |
10071 | {0x21, 0x03211040}), |
10072 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, | |
aec856d0 | 10073 | ALC282_STANDARD_PINS, |
2c609999 | 10074 | {0x12, 0x99a30130}, |
2c609999 | 10075 | {0x19, 0x03a11030}, |
2c609999 HW |
10076 | {0x21, 0x03211020}), |
10077 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, | |
aec856d0 | 10078 | ALC282_STANDARD_PINS, |
2c609999 | 10079 | {0x12, 0x99a30130}, |
2c609999 | 10080 | {0x19, 0x04a11020}, |
2c609999 | 10081 | {0x21, 0x0421101f}), |
200afc09 | 10082 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED, |
aec856d0 | 10083 | ALC282_STANDARD_PINS, |
200afc09 | 10084 | {0x12, 0x90a60140}, |
200afc09 | 10085 | {0x19, 0x04a11030}, |
200afc09 | 10086 | {0x21, 0x04211020}), |
34cdf405 CC |
10087 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT, |
10088 | ALC282_STANDARD_PINS, | |
10089 | {0x12, 0x90a609c0}, | |
10090 | {0x18, 0x03a11830}, | |
10091 | {0x19, 0x04a19831}, | |
10092 | {0x1a, 0x0481303f}, | |
10093 | {0x1b, 0x04211020}, | |
10094 | {0x21, 0x0321101f}), | |
10095 | SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT, | |
10096 | ALC282_STANDARD_PINS, | |
10097 | {0x12, 0x90a60940}, | |
10098 | {0x18, 0x03a11830}, | |
10099 | {0x19, 0x04a19831}, | |
10100 | {0x1a, 0x0481303f}, | |
10101 | {0x1b, 0x04211020}, | |
10102 | {0x21, 0x0321101f}), | |
76c2132e | 10103 | SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
aec856d0 | 10104 | ALC282_STANDARD_PINS, |
76c2132e | 10105 | {0x12, 0x90a60130}, |
76c2132e DH |
10106 | {0x21, 0x0321101f}), |
10107 | SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, | |
10108 | {0x12, 0x90a60160}, | |
10109 | {0x14, 0x90170120}, | |
76c2132e | 10110 | {0x21, 0x02211030}), |
bc262179 | 10111 | SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
aec856d0 | 10112 | ALC282_STANDARD_PINS, |
bc262179 | 10113 | {0x12, 0x90a60130}, |
bc262179 | 10114 | {0x19, 0x03a11020}, |
bc262179 | 10115 | {0x21, 0x0321101f}), |
c8c6ee61 | 10116 | SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE, |
266fd994 SL |
10117 | {0x12, 0x90a60130}, |
10118 | {0x14, 0x90170110}, | |
10119 | {0x19, 0x04a11040}, | |
10120 | {0x21, 0x04211020}), | |
10121 | SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE, | |
10122 | {0x14, 0x90170110}, | |
10123 | {0x19, 0x04a11040}, | |
10124 | {0x1d, 0x40600001}, | |
10125 | {0x21, 0x04211020}), | |
10126 | SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK, | |
c4cfcf6f HW |
10127 | {0x14, 0x90170110}, |
10128 | {0x19, 0x04a11040}, | |
10129 | {0x21, 0x04211020}), | |
c72b9bfe HW |
10130 | SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK, |
10131 | {0x14, 0x90170110}, | |
10132 | {0x17, 0x90170111}, | |
10133 | {0x19, 0x03a11030}, | |
10134 | {0x21, 0x03211020}), | |
33aaebd4 CC |
10135 | SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE, |
10136 | {0x12, 0x90a60130}, | |
10137 | {0x17, 0x90170110}, | |
10138 | {0x21, 0x02211020}), | |
d44a6864 | 10139 | SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, |
e1e62b98 | 10140 | {0x12, 0x90a60120}, |
e1e62b98 | 10141 | {0x14, 0x90170110}, |
e1e62b98 | 10142 | {0x21, 0x0321101f}), |
e4442bcf | 10143 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 10144 | ALC290_STANDARD_PINS, |
e4442bcf | 10145 | {0x15, 0x04211040}, |
e4442bcf | 10146 | {0x18, 0x90170112}, |
11580297 | 10147 | {0x1a, 0x04a11020}), |
e4442bcf | 10148 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 10149 | ALC290_STANDARD_PINS, |
e4442bcf | 10150 | {0x15, 0x04211040}, |
e4442bcf | 10151 | {0x18, 0x90170110}, |
11580297 | 10152 | {0x1a, 0x04a11020}), |
e4442bcf | 10153 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 10154 | ALC290_STANDARD_PINS, |
e4442bcf | 10155 | {0x15, 0x0421101f}, |
11580297 | 10156 | {0x1a, 0x04a11020}), |
e4442bcf | 10157 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 10158 | ALC290_STANDARD_PINS, |
e4442bcf | 10159 | {0x15, 0x04211020}, |
11580297 | 10160 | {0x1a, 0x04a11040}), |
e4442bcf | 10161 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 10162 | ALC290_STANDARD_PINS, |
e4442bcf HW |
10163 | {0x14, 0x90170110}, |
10164 | {0x15, 0x04211020}, | |
11580297 | 10165 | {0x1a, 0x04a11040}), |
e4442bcf | 10166 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 10167 | ALC290_STANDARD_PINS, |
e4442bcf HW |
10168 | {0x14, 0x90170110}, |
10169 | {0x15, 0x04211020}, | |
11580297 | 10170 | {0x1a, 0x04a11020}), |
e4442bcf | 10171 | SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, |
aec856d0 | 10172 | ALC290_STANDARD_PINS, |
e4442bcf HW |
10173 | {0x14, 0x90170110}, |
10174 | {0x15, 0x0421101f}, | |
11580297 | 10175 | {0x1a, 0x04a11020}), |
e8818fa8 | 10176 | SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, |
aec856d0 | 10177 | ALC292_STANDARD_PINS, |
e8818fa8 | 10178 | {0x12, 0x90a60140}, |
e8818fa8 | 10179 | {0x16, 0x01014020}, |
11580297 | 10180 | {0x19, 0x01a19030}), |
e8818fa8 | 10181 | SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, |
aec856d0 | 10182 | ALC292_STANDARD_PINS, |
e8818fa8 | 10183 | {0x12, 0x90a60140}, |
e8818fa8 HW |
10184 | {0x16, 0x01014020}, |
10185 | {0x18, 0x02a19031}, | |
11580297 | 10186 | {0x19, 0x01a1903e}), |
76c2132e | 10187 | SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, |
aec856d0 | 10188 | ALC292_STANDARD_PINS, |
11580297 | 10189 | {0x12, 0x90a60140}), |
76c2132e | 10190 | SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, |
aec856d0 | 10191 | ALC292_STANDARD_PINS, |
76c2132e | 10192 | {0x13, 0x90a60140}, |
76c2132e | 10193 | {0x16, 0x21014020}, |
11580297 | 10194 | {0x19, 0x21a19030}), |
e03fdbde | 10195 | SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, |
aec856d0 | 10196 | ALC292_STANDARD_PINS, |
11580297 | 10197 | {0x13, 0x90a60140}), |
eeacd80f JHP |
10198 | SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE, |
10199 | {0x17, 0x90170110}, | |
10200 | {0x21, 0x04211020}), | |
d8ae458e CC |
10201 | SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC, |
10202 | {0x14, 0x90170110}, | |
10203 | {0x1b, 0x90a70130}, | |
10204 | {0x21, 0x04211020}), | |
8bb37a2a JHP |
10205 | SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK, |
10206 | {0x12, 0x90a60130}, | |
10207 | {0x17, 0x90170110}, | |
10208 | {0x21, 0x03211020}), | |
0bea4cc8 JHP |
10209 | SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK, |
10210 | {0x12, 0x90a60130}, | |
10211 | {0x17, 0x90170110}, | |
10212 | {0x21, 0x04211020}), | |
3887c26c TI |
10213 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK, |
10214 | {0x12, 0x90a60130}, | |
10215 | {0x17, 0x90170110}, | |
10216 | {0x21, 0x03211020}), | |
9e43342b | 10217 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE, |
ad97d667 JHP |
10218 | {0x12, 0x90a60120}, |
10219 | {0x17, 0x90170110}, | |
10220 | {0x21, 0x04211030}), | |
10221 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE, | |
9e43342b CC |
10222 | {0x12, 0x90a60130}, |
10223 | {0x17, 0x90170110}, | |
10224 | {0x21, 0x03211020}), | |
10225 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE, | |
10226 | {0x12, 0x90a60130}, | |
10227 | {0x17, 0x90170110}, | |
10228 | {0x21, 0x03211020}), | |
fbc57129 | 10229 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, |
0a29c57b KY |
10230 | {0x14, 0x90170110}, |
10231 | {0x21, 0x04211020}), | |
fbc57129 KY |
10232 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, |
10233 | {0x14, 0x90170110}, | |
10234 | {0x21, 0x04211030}), | |
3f640970 | 10235 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
f771d5bb HW |
10236 | ALC295_STANDARD_PINS, |
10237 | {0x17, 0x21014020}, | |
10238 | {0x18, 0x21a19030}), | |
10239 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, | |
10240 | ALC295_STANDARD_PINS, | |
10241 | {0x17, 0x21014040}, | |
10242 | {0x18, 0x21a19050}), | |
3f307834 HW |
10243 | SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, |
10244 | ALC295_STANDARD_PINS), | |
9f502ff5 TI |
10245 | SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, |
10246 | ALC298_STANDARD_PINS, | |
10247 | {0x17, 0x90170110}), | |
977e6276 | 10248 | SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, |
703867e2 WS |
10249 | ALC298_STANDARD_PINS, |
10250 | {0x17, 0x90170140}), | |
10251 | SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, | |
10252 | ALC298_STANDARD_PINS, | |
9f502ff5 | 10253 | {0x17, 0x90170150}), |
9f1bc2c4 KHF |
10254 | SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME, |
10255 | {0x12, 0xb7a60140}, | |
10256 | {0x13, 0xb7a60150}, | |
10257 | {0x17, 0x90170110}, | |
10258 | {0x1a, 0x03011020}, | |
10259 | {0x21, 0x03211030}), | |
54324221 JM |
10260 | SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE, |
10261 | {0x12, 0xb7a60140}, | |
10262 | {0x17, 0x90170110}, | |
10263 | {0x1a, 0x03a11030}, | |
10264 | {0x21, 0x03211020}), | |
fcc6c877 KY |
10265 | SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, |
10266 | ALC225_STANDARD_PINS, | |
10267 | {0x12, 0xb7a60130}, | |
fcc6c877 | 10268 | {0x17, 0x90170110}), |
573fcbfd HW |
10269 | SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC, |
10270 | {0x14, 0x01014010}, | |
10271 | {0x17, 0x90170120}, | |
10272 | {0x18, 0x02a11030}, | |
10273 | {0x19, 0x02a1103f}, | |
10274 | {0x21, 0x0221101f}), | |
e1918938 HW |
10275 | {} |
10276 | }; | |
6dda9f4a | 10277 | |
7c0a6939 HW |
10278 | /* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match |
10279 | * more machines, don't need to match all valid pins, just need to match | |
10280 | * all the pins defined in the tbl. Just because of this reason, it is possible | |
10281 | * that a single machine matches multiple tbls, so there is one limitation: | |
10282 | * at most one tbl is allowed to define for the same vendor and same codec | |
10283 | */ | |
10284 | static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = { | |
10285 | SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, | |
10286 | {0x19, 0x40000000}, | |
10287 | {0x1b, 0x40000000}), | |
aed8c7f4 HW |
10288 | SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
10289 | {0x19, 0x40000000}, | |
10290 | {0x1a, 0x40000000}), | |
d64ebdbf HW |
10291 | SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, |
10292 | {0x19, 0x40000000}, | |
10293 | {0x1a, 0x40000000}), | |
5815bdfd HW |
10294 | SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, |
10295 | {0x19, 0x40000000}, | |
10296 | {0x1a, 0x40000000}), | |
7c0a6939 HW |
10297 | {} |
10298 | }; | |
10299 | ||
546bb678 | 10300 | static void alc269_fill_coef(struct hda_codec *codec) |
1d045db9 | 10301 | { |
526af6eb | 10302 | struct alc_spec *spec = codec->spec; |
1d045db9 | 10303 | int val; |
ebb83eeb | 10304 | |
526af6eb | 10305 | if (spec->codec_variant != ALC269_TYPE_ALC269VB) |
546bb678 | 10306 | return; |
526af6eb | 10307 | |
1bb7e43e | 10308 | if ((alc_get_coef0(codec) & 0x00ff) < 0x015) { |
1d045db9 TI |
10309 | alc_write_coef_idx(codec, 0xf, 0x960b); |
10310 | alc_write_coef_idx(codec, 0xe, 0x8817); | |
10311 | } | |
ebb83eeb | 10312 | |
1bb7e43e | 10313 | if ((alc_get_coef0(codec) & 0x00ff) == 0x016) { |
1d045db9 TI |
10314 | alc_write_coef_idx(codec, 0xf, 0x960b); |
10315 | alc_write_coef_idx(codec, 0xe, 0x8814); | |
10316 | } | |
ebb83eeb | 10317 | |
1bb7e43e | 10318 | if ((alc_get_coef0(codec) & 0x00ff) == 0x017) { |
1d045db9 | 10319 | /* Power up output pin */ |
98b24883 | 10320 | alc_update_coef_idx(codec, 0x04, 0, 1<<11); |
1d045db9 | 10321 | } |
ebb83eeb | 10322 | |
1bb7e43e | 10323 | if ((alc_get_coef0(codec) & 0x00ff) == 0x018) { |
1d045db9 | 10324 | val = alc_read_coef_idx(codec, 0xd); |
f3ee07d8 | 10325 | if (val != -1 && (val & 0x0c00) >> 10 != 0x1) { |
1d045db9 TI |
10326 | /* Capless ramp up clock control */ |
10327 | alc_write_coef_idx(codec, 0xd, val | (1<<10)); | |
10328 | } | |
10329 | val = alc_read_coef_idx(codec, 0x17); | |
f3ee07d8 | 10330 | if (val != -1 && (val & 0x01c0) >> 6 != 0x4) { |
1d045db9 TI |
10331 | /* Class D power on reset */ |
10332 | alc_write_coef_idx(codec, 0x17, val | (1<<7)); | |
10333 | } | |
10334 | } | |
ebb83eeb | 10335 | |
98b24883 TI |
10336 | /* HP */ |
10337 | alc_update_coef_idx(codec, 0x4, 0, 1<<11); | |
1d045db9 | 10338 | } |
a7f2371f | 10339 | |
1d045db9 TI |
10340 | /* |
10341 | */ | |
1d045db9 TI |
10342 | static int patch_alc269(struct hda_codec *codec) |
10343 | { | |
10344 | struct alc_spec *spec; | |
3de95173 | 10345 | int err; |
f1d4e28b | 10346 | |
3de95173 | 10347 | err = alc_alloc_spec(codec, 0x0b); |
e16fb6d1 | 10348 | if (err < 0) |
3de95173 TI |
10349 | return err; |
10350 | ||
10351 | spec = codec->spec; | |
08c189f2 | 10352 | spec->gen.shared_mic_vref_pin = 0x18; |
317d9313 | 10353 | codec->power_save_node = 0; |
e16fb6d1 | 10354 | |
225068ab TI |
10355 | #ifdef CONFIG_PM |
10356 | codec->patch_ops.suspend = alc269_suspend; | |
10357 | codec->patch_ops.resume = alc269_resume; | |
10358 | #endif | |
c2d6af53 KY |
10359 | spec->shutup = alc_default_shutup; |
10360 | spec->init_hook = alc_default_init; | |
225068ab | 10361 | |
7639a06c | 10362 | switch (codec->core.vendor_id) { |
065380f0 | 10363 | case 0x10ec0269: |
1d045db9 | 10364 | spec->codec_variant = ALC269_TYPE_ALC269VA; |
1bb7e43e TI |
10365 | switch (alc_get_coef0(codec) & 0x00f0) { |
10366 | case 0x0010: | |
5100cd07 TI |
10367 | if (codec->bus->pci && |
10368 | codec->bus->pci->subsystem_vendor == 0x1025 && | |
e16fb6d1 | 10369 | spec->cdefine.platform_type == 1) |
20ca0c35 | 10370 | err = alc_codec_rename(codec, "ALC271X"); |
1d045db9 | 10371 | spec->codec_variant = ALC269_TYPE_ALC269VB; |
1bb7e43e TI |
10372 | break; |
10373 | case 0x0020: | |
5100cd07 TI |
10374 | if (codec->bus->pci && |
10375 | codec->bus->pci->subsystem_vendor == 0x17aa && | |
e16fb6d1 | 10376 | codec->bus->pci->subsystem_device == 0x21f3) |
20ca0c35 | 10377 | err = alc_codec_rename(codec, "ALC3202"); |
1d045db9 | 10378 | spec->codec_variant = ALC269_TYPE_ALC269VC; |
1bb7e43e | 10379 | break; |
adcc70b2 KY |
10380 | case 0x0030: |
10381 | spec->codec_variant = ALC269_TYPE_ALC269VD; | |
10382 | break; | |
1bb7e43e | 10383 | default: |
1d045db9 | 10384 | alc_fix_pll_init(codec, 0x20, 0x04, 15); |
1bb7e43e | 10385 | } |
e16fb6d1 TI |
10386 | if (err < 0) |
10387 | goto error; | |
c2d6af53 | 10388 | spec->shutup = alc269_shutup; |
546bb678 | 10389 | spec->init_hook = alc269_fill_coef; |
1d045db9 | 10390 | alc269_fill_coef(codec); |
065380f0 KY |
10391 | break; |
10392 | ||
10393 | case 0x10ec0280: | |
10394 | case 0x10ec0290: | |
10395 | spec->codec_variant = ALC269_TYPE_ALC280; | |
10396 | break; | |
10397 | case 0x10ec0282: | |
065380f0 | 10398 | spec->codec_variant = ALC269_TYPE_ALC282; |
7b5c7a02 KY |
10399 | spec->shutup = alc282_shutup; |
10400 | spec->init_hook = alc282_init; | |
065380f0 | 10401 | break; |
2af02be7 KY |
10402 | case 0x10ec0233: |
10403 | case 0x10ec0283: | |
10404 | spec->codec_variant = ALC269_TYPE_ALC283; | |
10405 | spec->shutup = alc283_shutup; | |
10406 | spec->init_hook = alc283_init; | |
10407 | break; | |
065380f0 KY |
10408 | case 0x10ec0284: |
10409 | case 0x10ec0292: | |
10410 | spec->codec_variant = ALC269_TYPE_ALC284; | |
10411 | break; | |
161ebf29 | 10412 | case 0x10ec0293: |
4731d5de | 10413 | spec->codec_variant = ALC269_TYPE_ALC293; |
161ebf29 | 10414 | break; |
7fc7d047 | 10415 | case 0x10ec0286: |
7c665932 | 10416 | case 0x10ec0288: |
7fc7d047 KY |
10417 | spec->codec_variant = ALC269_TYPE_ALC286; |
10418 | break; | |
506b62c3 KY |
10419 | case 0x10ec0298: |
10420 | spec->codec_variant = ALC269_TYPE_ALC298; | |
10421 | break; | |
ea04a1db | 10422 | case 0x10ec0235: |
1d04c9de KY |
10423 | case 0x10ec0255: |
10424 | spec->codec_variant = ALC269_TYPE_ALC255; | |
ab3b8e51 KY |
10425 | spec->shutup = alc256_shutup; |
10426 | spec->init_hook = alc256_init; | |
1d04c9de | 10427 | break; |
1948fc06 | 10428 | case 0x10ec0230: |
736f20a7 | 10429 | case 0x10ec0236: |
4344aec8 | 10430 | case 0x10ec0256: |
527f4643 | 10431 | case 0x19e58326: |
4344aec8 | 10432 | spec->codec_variant = ALC269_TYPE_ALC256; |
4a219ef8 KY |
10433 | spec->shutup = alc256_shutup; |
10434 | spec->init_hook = alc256_init; | |
7d1b6e29 | 10435 | spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */ |
4344aec8 | 10436 | break; |
f429e7e4 KY |
10437 | case 0x10ec0257: |
10438 | spec->codec_variant = ALC269_TYPE_ALC257; | |
88d42b2b KY |
10439 | spec->shutup = alc256_shutup; |
10440 | spec->init_hook = alc256_init; | |
f429e7e4 KY |
10441 | spec->gen.mixer_nid = 0; |
10442 | break; | |
0a6f0600 | 10443 | case 0x10ec0215: |
7fbdcd83 | 10444 | case 0x10ec0245: |
0a6f0600 KY |
10445 | case 0x10ec0285: |
10446 | case 0x10ec0289: | |
60571929 KY |
10447 | if (alc_get_coef0(codec) & 0x0010) |
10448 | spec->codec_variant = ALC269_TYPE_ALC245; | |
10449 | else | |
10450 | spec->codec_variant = ALC269_TYPE_ALC215; | |
1b6832be KY |
10451 | spec->shutup = alc225_shutup; |
10452 | spec->init_hook = alc225_init; | |
0a6f0600 KY |
10453 | spec->gen.mixer_nid = 0; |
10454 | break; | |
4231430d | 10455 | case 0x10ec0225: |
7d727869 | 10456 | case 0x10ec0295: |
28f1f9b2 | 10457 | case 0x10ec0299: |
4231430d | 10458 | spec->codec_variant = ALC269_TYPE_ALC225; |
da911b1f KY |
10459 | spec->shutup = alc225_shutup; |
10460 | spec->init_hook = alc225_init; | |
c1350bff | 10461 | spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */ |
4231430d | 10462 | break; |
99cee034 KY |
10463 | case 0x10ec0287: |
10464 | spec->codec_variant = ALC269_TYPE_ALC287; | |
10465 | spec->shutup = alc225_shutup; | |
10466 | spec->init_hook = alc225_init; | |
10467 | spec->gen.mixer_nid = 0; /* no loopback on ALC287 */ | |
10468 | break; | |
dcd4f0db KY |
10469 | case 0x10ec0234: |
10470 | case 0x10ec0274: | |
10471 | case 0x10ec0294: | |
10472 | spec->codec_variant = ALC269_TYPE_ALC294; | |
532a7784 | 10473 | spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */ |
71683c32 | 10474 | alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */ |
693abe11 | 10475 | spec->init_hook = alc294_init; |
dcd4f0db | 10476 | break; |
1078bef0 KY |
10477 | case 0x10ec0300: |
10478 | spec->codec_variant = ALC269_TYPE_ALC300; | |
10479 | spec->gen.mixer_nid = 0; /* no loopback on ALC300 */ | |
dcd4f0db | 10480 | break; |
f0778871 KY |
10481 | case 0x10ec0623: |
10482 | spec->codec_variant = ALC269_TYPE_ALC623; | |
10483 | break; | |
6fbae35a KY |
10484 | case 0x10ec0700: |
10485 | case 0x10ec0701: | |
10486 | case 0x10ec0703: | |
83629532 | 10487 | case 0x10ec0711: |
6fbae35a KY |
10488 | spec->codec_variant = ALC269_TYPE_ALC700; |
10489 | spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */ | |
2d7fe618 | 10490 | alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */ |
693abe11 | 10491 | spec->init_hook = alc294_init; |
6fbae35a KY |
10492 | break; |
10493 | ||
1d045db9 | 10494 | } |
6dda9f4a | 10495 | |
ad60d502 | 10496 | if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) { |
97a26570 | 10497 | spec->has_alc5505_dsp = 1; |
ad60d502 KY |
10498 | spec->init_hook = alc5505_dsp_init; |
10499 | } | |
10500 | ||
c9af753f TI |
10501 | alc_pre_init(codec); |
10502 | ||
efe55732 TI |
10503 | snd_hda_pick_fixup(codec, alc269_fixup_models, |
10504 | alc269_fixup_tbl, alc269_fixups); | |
13d9c6b9 TI |
10505 | /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and |
10506 | * the quirk breaks the latter (bko#214101). | |
10507 | * Clear the wrong entry. | |
10508 | */ | |
10509 | if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 && | |
10510 | codec->core.vendor_id == 0x10ec0294) { | |
10511 | codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n"); | |
10512 | codec->fixup_id = HDA_FIXUP_ID_NOT_SET; | |
10513 | } | |
10514 | ||
0fc1e447 | 10515 | snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true); |
7c0a6939 | 10516 | snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false); |
efe55732 TI |
10517 | snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl, |
10518 | alc269_fixups); | |
10519 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); | |
10520 | ||
10521 | alc_auto_parse_customize_define(codec); | |
10522 | ||
10523 | if (has_cdefine_beep(codec)) | |
10524 | spec->gen.beep_nid = 0x01; | |
10525 | ||
a4297b5d TI |
10526 | /* automatic parse from the BIOS config */ |
10527 | err = alc269_parse_auto_config(codec); | |
e16fb6d1 TI |
10528 | if (err < 0) |
10529 | goto error; | |
6dda9f4a | 10530 | |
fea80fae TI |
10531 | if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) { |
10532 | err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT); | |
10533 | if (err < 0) | |
10534 | goto error; | |
10535 | } | |
f1d4e28b | 10536 | |
1727a771 | 10537 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 10538 | |
1d045db9 | 10539 | return 0; |
e16fb6d1 TI |
10540 | |
10541 | error: | |
10542 | alc_free(codec); | |
10543 | return err; | |
1d045db9 | 10544 | } |
f1d4e28b | 10545 | |
1d045db9 TI |
10546 | /* |
10547 | * ALC861 | |
10548 | */ | |
622e84cd | 10549 | |
1d045db9 | 10550 | static int alc861_parse_auto_config(struct hda_codec *codec) |
6dda9f4a | 10551 | { |
1d045db9 | 10552 | static const hda_nid_t alc861_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
10553 | static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 }; |
10554 | return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids); | |
604401a9 TI |
10555 | } |
10556 | ||
1d045db9 TI |
10557 | /* Pin config fixes */ |
10558 | enum { | |
e652f4c8 TI |
10559 | ALC861_FIXUP_FSC_AMILO_PI1505, |
10560 | ALC861_FIXUP_AMP_VREF_0F, | |
10561 | ALC861_FIXUP_NO_JACK_DETECT, | |
10562 | ALC861_FIXUP_ASUS_A6RP, | |
6ddf0fd1 | 10563 | ALC660_FIXUP_ASUS_W7J, |
1d045db9 | 10564 | }; |
7085ec12 | 10565 | |
31150f23 TI |
10566 | /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */ |
10567 | static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec, | |
1727a771 | 10568 | const struct hda_fixup *fix, int action) |
31150f23 TI |
10569 | { |
10570 | struct alc_spec *spec = codec->spec; | |
10571 | unsigned int val; | |
10572 | ||
1727a771 | 10573 | if (action != HDA_FIXUP_ACT_INIT) |
31150f23 | 10574 | return; |
d3f02d60 | 10575 | val = snd_hda_codec_get_pin_target(codec, 0x0f); |
31150f23 TI |
10576 | if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))) |
10577 | val |= AC_PINCTL_IN_EN; | |
10578 | val |= AC_PINCTL_VREF_50; | |
cdd03ced | 10579 | snd_hda_set_pin_ctl(codec, 0x0f, val); |
08c189f2 | 10580 | spec->gen.keep_vref_in_automute = 1; |
31150f23 TI |
10581 | } |
10582 | ||
e652f4c8 TI |
10583 | /* suppress the jack-detection */ |
10584 | static void alc_fixup_no_jack_detect(struct hda_codec *codec, | |
1727a771 | 10585 | const struct hda_fixup *fix, int action) |
e652f4c8 | 10586 | { |
1727a771 | 10587 | if (action == HDA_FIXUP_ACT_PRE_PROBE) |
e652f4c8 | 10588 | codec->no_jack_detect = 1; |
7d7eb9ea | 10589 | } |
e652f4c8 | 10590 | |
1727a771 | 10591 | static const struct hda_fixup alc861_fixups[] = { |
e652f4c8 | 10592 | [ALC861_FIXUP_FSC_AMILO_PI1505] = { |
1727a771 TI |
10593 | .type = HDA_FIXUP_PINS, |
10594 | .v.pins = (const struct hda_pintbl[]) { | |
1d045db9 TI |
10595 | { 0x0b, 0x0221101f }, /* HP */ |
10596 | { 0x0f, 0x90170310 }, /* speaker */ | |
10597 | { } | |
10598 | } | |
10599 | }, | |
e652f4c8 | 10600 | [ALC861_FIXUP_AMP_VREF_0F] = { |
1727a771 | 10601 | .type = HDA_FIXUP_FUNC, |
31150f23 | 10602 | .v.func = alc861_fixup_asus_amp_vref_0f, |
3b25eb69 | 10603 | }, |
e652f4c8 | 10604 | [ALC861_FIXUP_NO_JACK_DETECT] = { |
1727a771 | 10605 | .type = HDA_FIXUP_FUNC, |
e652f4c8 TI |
10606 | .v.func = alc_fixup_no_jack_detect, |
10607 | }, | |
10608 | [ALC861_FIXUP_ASUS_A6RP] = { | |
1727a771 | 10609 | .type = HDA_FIXUP_FUNC, |
e652f4c8 TI |
10610 | .v.func = alc861_fixup_asus_amp_vref_0f, |
10611 | .chained = true, | |
10612 | .chain_id = ALC861_FIXUP_NO_JACK_DETECT, | |
6ddf0fd1 TI |
10613 | }, |
10614 | [ALC660_FIXUP_ASUS_W7J] = { | |
10615 | .type = HDA_FIXUP_VERBS, | |
10616 | .v.verbs = (const struct hda_verb[]) { | |
10617 | /* ASUS W7J needs a magic pin setup on unused NID 0x10 | |
10618 | * for enabling outputs | |
10619 | */ | |
10620 | {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24}, | |
10621 | { } | |
10622 | }, | |
e652f4c8 | 10623 | } |
1d045db9 | 10624 | }; |
7085ec12 | 10625 | |
1d045db9 | 10626 | static const struct snd_pci_quirk alc861_fixup_tbl[] = { |
6ddf0fd1 | 10627 | SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J), |
e7ca237b | 10628 | SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J), |
e652f4c8 TI |
10629 | SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP), |
10630 | SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F), | |
10631 | SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT), | |
defce244 | 10632 | SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F), |
e652f4c8 | 10633 | SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505), |
1d045db9 TI |
10634 | {} |
10635 | }; | |
3af9ee6b | 10636 | |
1d045db9 TI |
10637 | /* |
10638 | */ | |
1d045db9 | 10639 | static int patch_alc861(struct hda_codec *codec) |
7085ec12 | 10640 | { |
1d045db9 | 10641 | struct alc_spec *spec; |
1d045db9 | 10642 | int err; |
7085ec12 | 10643 | |
3de95173 TI |
10644 | err = alc_alloc_spec(codec, 0x15); |
10645 | if (err < 0) | |
10646 | return err; | |
1d045db9 | 10647 | |
3de95173 | 10648 | spec = codec->spec; |
2722b535 TI |
10649 | if (has_cdefine_beep(codec)) |
10650 | spec->gen.beep_nid = 0x23; | |
1d045db9 | 10651 | |
225068ab TI |
10652 | #ifdef CONFIG_PM |
10653 | spec->power_hook = alc_power_eapd; | |
10654 | #endif | |
10655 | ||
c9af753f TI |
10656 | alc_pre_init(codec); |
10657 | ||
1727a771 TI |
10658 | snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups); |
10659 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); | |
3af9ee6b | 10660 | |
cb4e4824 TI |
10661 | /* automatic parse from the BIOS config */ |
10662 | err = alc861_parse_auto_config(codec); | |
e16fb6d1 TI |
10663 | if (err < 0) |
10664 | goto error; | |
3af9ee6b | 10665 | |
fea80fae TI |
10666 | if (!spec->gen.no_analog) { |
10667 | err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT); | |
10668 | if (err < 0) | |
10669 | goto error; | |
10670 | } | |
7085ec12 | 10671 | |
1727a771 | 10672 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 10673 | |
1d045db9 | 10674 | return 0; |
e16fb6d1 TI |
10675 | |
10676 | error: | |
10677 | alc_free(codec); | |
10678 | return err; | |
7085ec12 TI |
10679 | } |
10680 | ||
1d045db9 TI |
10681 | /* |
10682 | * ALC861-VD support | |
10683 | * | |
10684 | * Based on ALC882 | |
10685 | * | |
10686 | * In addition, an independent DAC | |
10687 | */ | |
1d045db9 | 10688 | static int alc861vd_parse_auto_config(struct hda_codec *codec) |
bc9f98a9 | 10689 | { |
1d045db9 | 10690 | static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
10691 | static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 }; |
10692 | return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids); | |
ce764ab2 TI |
10693 | } |
10694 | ||
1d045db9 | 10695 | enum { |
8fdcb6fe TI |
10696 | ALC660VD_FIX_ASUS_GPIO1, |
10697 | ALC861VD_FIX_DALLAS, | |
1d045db9 | 10698 | }; |
ce764ab2 | 10699 | |
8fdcb6fe TI |
10700 | /* exclude VREF80 */ |
10701 | static void alc861vd_fixup_dallas(struct hda_codec *codec, | |
1727a771 | 10702 | const struct hda_fixup *fix, int action) |
8fdcb6fe | 10703 | { |
1727a771 | 10704 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
b78562b1 TI |
10705 | snd_hda_override_pin_caps(codec, 0x18, 0x00000734); |
10706 | snd_hda_override_pin_caps(codec, 0x19, 0x0000073c); | |
8fdcb6fe TI |
10707 | } |
10708 | } | |
10709 | ||
df73d83f TI |
10710 | /* reset GPIO1 */ |
10711 | static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec, | |
10712 | const struct hda_fixup *fix, int action) | |
10713 | { | |
10714 | struct alc_spec *spec = codec->spec; | |
10715 | ||
10716 | if (action == HDA_FIXUP_ACT_PRE_PROBE) | |
10717 | spec->gpio_mask |= 0x02; | |
10718 | alc_fixup_gpio(codec, action, 0x01); | |
10719 | } | |
10720 | ||
1727a771 | 10721 | static const struct hda_fixup alc861vd_fixups[] = { |
1d045db9 | 10722 | [ALC660VD_FIX_ASUS_GPIO1] = { |
df73d83f TI |
10723 | .type = HDA_FIXUP_FUNC, |
10724 | .v.func = alc660vd_fixup_asus_gpio1, | |
1d045db9 | 10725 | }, |
8fdcb6fe | 10726 | [ALC861VD_FIX_DALLAS] = { |
1727a771 | 10727 | .type = HDA_FIXUP_FUNC, |
8fdcb6fe TI |
10728 | .v.func = alc861vd_fixup_dallas, |
10729 | }, | |
1d045db9 | 10730 | }; |
ce764ab2 | 10731 | |
1d045db9 | 10732 | static const struct snd_pci_quirk alc861vd_fixup_tbl[] = { |
8fdcb6fe | 10733 | SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS), |
1d045db9 | 10734 | SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1), |
8fdcb6fe | 10735 | SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS), |
1d045db9 TI |
10736 | {} |
10737 | }; | |
ce764ab2 | 10738 | |
1d045db9 TI |
10739 | /* |
10740 | */ | |
1d045db9 | 10741 | static int patch_alc861vd(struct hda_codec *codec) |
ce764ab2 | 10742 | { |
1d045db9 | 10743 | struct alc_spec *spec; |
cb4e4824 | 10744 | int err; |
ce764ab2 | 10745 | |
3de95173 TI |
10746 | err = alc_alloc_spec(codec, 0x0b); |
10747 | if (err < 0) | |
10748 | return err; | |
1d045db9 | 10749 | |
3de95173 | 10750 | spec = codec->spec; |
2722b535 TI |
10751 | if (has_cdefine_beep(codec)) |
10752 | spec->gen.beep_nid = 0x23; | |
1d045db9 | 10753 | |
225068ab TI |
10754 | spec->shutup = alc_eapd_shutup; |
10755 | ||
c9af753f TI |
10756 | alc_pre_init(codec); |
10757 | ||
1727a771 TI |
10758 | snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups); |
10759 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); | |
1d045db9 | 10760 | |
cb4e4824 TI |
10761 | /* automatic parse from the BIOS config */ |
10762 | err = alc861vd_parse_auto_config(codec); | |
e16fb6d1 TI |
10763 | if (err < 0) |
10764 | goto error; | |
ce764ab2 | 10765 | |
fea80fae TI |
10766 | if (!spec->gen.no_analog) { |
10767 | err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); | |
10768 | if (err < 0) | |
10769 | goto error; | |
10770 | } | |
1d045db9 | 10771 | |
1727a771 | 10772 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 10773 | |
ce764ab2 | 10774 | return 0; |
e16fb6d1 TI |
10775 | |
10776 | error: | |
10777 | alc_free(codec); | |
10778 | return err; | |
ce764ab2 TI |
10779 | } |
10780 | ||
1d045db9 TI |
10781 | /* |
10782 | * ALC662 support | |
10783 | * | |
10784 | * ALC662 is almost identical with ALC880 but has cleaner and more flexible | |
10785 | * configuration. Each pin widget can choose any input DACs and a mixer. | |
10786 | * Each ADC is connected from a mixer of all inputs. This makes possible | |
10787 | * 6-channel independent captures. | |
10788 | * | |
10789 | * In addition, an independent DAC for the multi-playback (not used in this | |
10790 | * driver yet). | |
10791 | */ | |
1d045db9 TI |
10792 | |
10793 | /* | |
10794 | * BIOS auto configuration | |
10795 | */ | |
10796 | ||
bc9f98a9 KY |
10797 | static int alc662_parse_auto_config(struct hda_codec *codec) |
10798 | { | |
4c6d72d1 | 10799 | static const hda_nid_t alc662_ignore[] = { 0x1d, 0 }; |
3e6179b8 TI |
10800 | static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 }; |
10801 | static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 }; | |
10802 | const hda_nid_t *ssids; | |
ee979a14 | 10803 | |
7639a06c TI |
10804 | if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 || |
10805 | codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 || | |
10806 | codec->core.vendor_id == 0x10ec0671) | |
3e6179b8 | 10807 | ssids = alc663_ssids; |
6227cdce | 10808 | else |
3e6179b8 TI |
10809 | ssids = alc662_ssids; |
10810 | return alc_parse_auto_config(codec, alc662_ignore, ssids); | |
bc9f98a9 KY |
10811 | } |
10812 | ||
6be7948f | 10813 | static void alc272_fixup_mario(struct hda_codec *codec, |
1727a771 | 10814 | const struct hda_fixup *fix, int action) |
6fc398cb | 10815 | { |
9bb1f06f | 10816 | if (action != HDA_FIXUP_ACT_PRE_PROBE) |
6fc398cb | 10817 | return; |
6be7948f TB |
10818 | if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT, |
10819 | (0x3b << AC_AMPCAP_OFFSET_SHIFT) | | |
10820 | (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) | | |
10821 | (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) | | |
10822 | (0 << AC_AMPCAP_MUTE_SHIFT))) | |
4e76a883 | 10823 | codec_warn(codec, "failed to override amp caps for NID 0x2\n"); |
6be7948f TB |
10824 | } |
10825 | ||
8e383953 TI |
10826 | static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = { |
10827 | { .channels = 2, | |
10828 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } }, | |
10829 | { .channels = 4, | |
10830 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, | |
10831 | SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */ | |
10832 | { } | |
10833 | }; | |
10834 | ||
10835 | /* override the 2.1 chmap */ | |
eb9ca3ab | 10836 | static void alc_fixup_bass_chmap(struct hda_codec *codec, |
8e383953 TI |
10837 | const struct hda_fixup *fix, int action) |
10838 | { | |
10839 | if (action == HDA_FIXUP_ACT_BUILD) { | |
10840 | struct alc_spec *spec = codec->spec; | |
bbbc7e85 | 10841 | spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps; |
8e383953 TI |
10842 | } |
10843 | } | |
10844 | ||
bf68665d TI |
10845 | /* avoid D3 for keeping GPIO up */ |
10846 | static unsigned int gpio_led_power_filter(struct hda_codec *codec, | |
10847 | hda_nid_t nid, | |
10848 | unsigned int power_state) | |
10849 | { | |
10850 | struct alc_spec *spec = codec->spec; | |
d261eec8 | 10851 | if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data) |
bf68665d TI |
10852 | return AC_PWRST_D0; |
10853 | return power_state; | |
10854 | } | |
10855 | ||
3e887f37 TI |
10856 | static void alc662_fixup_led_gpio1(struct hda_codec *codec, |
10857 | const struct hda_fixup *fix, int action) | |
10858 | { | |
10859 | struct alc_spec *spec = codec->spec; | |
3e887f37 | 10860 | |
01e4a275 | 10861 | alc_fixup_hp_gpio_led(codec, action, 0x01, 0); |
3e887f37 | 10862 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { |
0f32fd19 | 10863 | spec->mute_led_polarity = 1; |
bf68665d | 10864 | codec->power_filter = gpio_led_power_filter; |
3e887f37 TI |
10865 | } |
10866 | } | |
10867 | ||
c6790c8e KY |
10868 | static void alc662_usi_automute_hook(struct hda_codec *codec, |
10869 | struct hda_jack_callback *jack) | |
10870 | { | |
10871 | struct alc_spec *spec = codec->spec; | |
10872 | int vref; | |
10873 | msleep(200); | |
10874 | snd_hda_gen_hp_automute(codec, jack); | |
10875 | ||
10876 | vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0; | |
10877 | msleep(100); | |
10878 | snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | |
10879 | vref); | |
10880 | } | |
10881 | ||
10882 | static void alc662_fixup_usi_headset_mic(struct hda_codec *codec, | |
10883 | const struct hda_fixup *fix, int action) | |
10884 | { | |
10885 | struct alc_spec *spec = codec->spec; | |
10886 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
10887 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
10888 | spec->gen.hp_automute_hook = alc662_usi_automute_hook; | |
10889 | } | |
10890 | } | |
10891 | ||
00066e97 SB |
10892 | static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec, |
10893 | struct hda_jack_callback *cb) | |
10894 | { | |
10895 | /* surround speakers at 0x1b already get muted automatically when | |
10896 | * headphones are plugged in, but we have to mute/unmute the remaining | |
10897 | * channels manually: | |
10898 | * 0x15 - front left/front right | |
10899 | * 0x18 - front center/ LFE | |
10900 | */ | |
10901 | if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) { | |
10902 | snd_hda_set_pin_ctl_cache(codec, 0x15, 0); | |
10903 | snd_hda_set_pin_ctl_cache(codec, 0x18, 0); | |
10904 | } else { | |
10905 | snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT); | |
10906 | snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT); | |
10907 | } | |
10908 | } | |
10909 | ||
10910 | static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec, | |
10911 | const struct hda_fixup *fix, int action) | |
10912 | { | |
10913 | /* Pin 0x1b: shared headphones jack and surround speakers */ | |
10914 | if (!is_jack_detectable(codec, 0x1b)) | |
10915 | return; | |
10916 | ||
10917 | switch (action) { | |
10918 | case HDA_FIXUP_ACT_PRE_PROBE: | |
10919 | snd_hda_jack_detect_enable_callback(codec, 0x1b, | |
10920 | alc662_aspire_ethos_mute_speakers); | |
336820c4 TI |
10921 | /* subwoofer needs an extra GPIO setting to become audible */ |
10922 | alc_setup_gpio(codec, 0x02); | |
00066e97 SB |
10923 | break; |
10924 | case HDA_FIXUP_ACT_INIT: | |
10925 | /* Make sure to start in a correct state, i.e. if | |
10926 | * headphones have been plugged in before powering up the system | |
10927 | */ | |
10928 | alc662_aspire_ethos_mute_speakers(codec, NULL); | |
10929 | break; | |
10930 | } | |
10931 | } | |
10932 | ||
5af29028 KY |
10933 | static void alc671_fixup_hp_headset_mic2(struct hda_codec *codec, |
10934 | const struct hda_fixup *fix, int action) | |
10935 | { | |
10936 | struct alc_spec *spec = codec->spec; | |
10937 | ||
10938 | static const struct hda_pintbl pincfgs[] = { | |
10939 | { 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */ | |
10940 | { 0x1b, 0x0181304f }, | |
10941 | { } | |
10942 | }; | |
10943 | ||
10944 | switch (action) { | |
10945 | case HDA_FIXUP_ACT_PRE_PROBE: | |
10946 | spec->gen.mixer_nid = 0; | |
10947 | spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; | |
10948 | snd_hda_apply_pincfgs(codec, pincfgs); | |
10949 | break; | |
10950 | case HDA_FIXUP_ACT_INIT: | |
10951 | alc_write_coef_idx(codec, 0x19, 0xa054); | |
10952 | break; | |
10953 | } | |
10954 | } | |
10955 | ||
d7f32791 KY |
10956 | static void alc897_hp_automute_hook(struct hda_codec *codec, |
10957 | struct hda_jack_callback *jack) | |
10958 | { | |
10959 | struct alc_spec *spec = codec->spec; | |
10960 | int vref; | |
10961 | ||
10962 | snd_hda_gen_hp_automute(codec, jack); | |
10963 | vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP; | |
10964 | snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | |
10965 | vref); | |
10966 | } | |
10967 | ||
10968 | static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec, | |
10969 | const struct hda_fixup *fix, int action) | |
10970 | { | |
10971 | struct alc_spec *spec = codec->spec; | |
10972 | if (action == HDA_FIXUP_ACT_PRE_PROBE) { | |
10973 | spec->gen.hp_automute_hook = alc897_hp_automute_hook; | |
10974 | } | |
10975 | } | |
10976 | ||
6b0f95c4 | 10977 | static const struct coef_fw alc668_coefs[] = { |
f3f9185f KY |
10978 | WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0), |
10979 | WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80), | |
10980 | WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0), | |
10981 | WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f), | |
10982 | WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001), | |
10983 | WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940), | |
10984 | WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0), | |
10985 | WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418), | |
10986 | WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468), | |
10987 | WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418), | |
10988 | WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00), | |
10989 | WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000), | |
10990 | WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0), | |
10991 | WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480), | |
10992 | WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0), | |
10993 | WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040), | |
10994 | WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697), | |
10995 | WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab), | |
10996 | WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02), | |
10997 | WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6), | |
10998 | {} | |
10999 | }; | |
11000 | ||
11001 | static void alc668_restore_default_value(struct hda_codec *codec) | |
11002 | { | |
11003 | alc_process_coef_fw(codec, alc668_coefs); | |
11004 | } | |
11005 | ||
6cb3b707 | 11006 | enum { |
2df03514 | 11007 | ALC662_FIXUP_ASPIRE, |
3e887f37 | 11008 | ALC662_FIXUP_LED_GPIO1, |
6cb3b707 | 11009 | ALC662_FIXUP_IDEAPAD, |
6be7948f | 11010 | ALC272_FIXUP_MARIO, |
f1ec5be1 | 11011 | ALC662_FIXUP_CZC_ET26, |
d2ebd479 | 11012 | ALC662_FIXUP_CZC_P10T, |
94024cd1 | 11013 | ALC662_FIXUP_SKU_IGNORE, |
e59ea3ed | 11014 | ALC662_FIXUP_HP_RP5800, |
53c334ad TI |
11015 | ALC662_FIXUP_ASUS_MODE1, |
11016 | ALC662_FIXUP_ASUS_MODE2, | |
11017 | ALC662_FIXUP_ASUS_MODE3, | |
11018 | ALC662_FIXUP_ASUS_MODE4, | |
11019 | ALC662_FIXUP_ASUS_MODE5, | |
11020 | ALC662_FIXUP_ASUS_MODE6, | |
11021 | ALC662_FIXUP_ASUS_MODE7, | |
11022 | ALC662_FIXUP_ASUS_MODE8, | |
1565cc35 | 11023 | ALC662_FIXUP_NO_JACK_DETECT, |
edfe3bfc | 11024 | ALC662_FIXUP_ZOTAC_Z68, |
125821ae | 11025 | ALC662_FIXUP_INV_DMIC, |
1f8b46cd | 11026 | ALC662_FIXUP_DELL_MIC_NO_PRESENCE, |
73bdd597 | 11027 | ALC668_FIXUP_DELL_MIC_NO_PRESENCE, |
1f8b46cd | 11028 | ALC662_FIXUP_HEADSET_MODE, |
73bdd597 | 11029 | ALC668_FIXUP_HEADSET_MODE, |
8e54b4ac | 11030 | ALC662_FIXUP_BASS_MODE4_CHMAP, |
61a75f13 | 11031 | ALC662_FIXUP_BASS_16, |
a30c9aaa | 11032 | ALC662_FIXUP_BASS_1A, |
8e54b4ac | 11033 | ALC662_FIXUP_BASS_CHMAP, |
493a52a9 | 11034 | ALC668_FIXUP_AUTO_MUTE, |
5e6db669 | 11035 | ALC668_FIXUP_DELL_DISABLE_AAMIX, |
033b0a7c | 11036 | ALC668_FIXUP_DELL_XPS13, |
9d4dc584 | 11037 | ALC662_FIXUP_ASUS_Nx50, |
fc7438b1 | 11038 | ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE, |
3231e205 | 11039 | ALC668_FIXUP_ASUS_Nx51, |
5b7c5e1f | 11040 | ALC668_FIXUP_MIC_COEF, |
11ba6111 | 11041 | ALC668_FIXUP_ASUS_G751, |
78f4f7c2 KY |
11042 | ALC891_FIXUP_HEADSET_MODE, |
11043 | ALC891_FIXUP_DELL_MIC_NO_PRESENCE, | |
9b51fe3e | 11044 | ALC662_FIXUP_ACER_VERITON, |
1a3f0991 | 11045 | ALC892_FIXUP_ASROCK_MOBO, |
c6790c8e KY |
11046 | ALC662_FIXUP_USI_FUNC, |
11047 | ALC662_FIXUP_USI_HEADSET_MODE, | |
ca169cc2 | 11048 | ALC662_FIXUP_LENOVO_MULTI_CODECS, |
00066e97 | 11049 | ALC669_FIXUP_ACER_ASPIRE_ETHOS, |
00066e97 | 11050 | ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET, |
5af29028 | 11051 | ALC671_FIXUP_HP_HEADSET_MIC2, |
d858c706 | 11052 | ALC662_FIXUP_ACER_X2660G_HEADSET_MODE, |
a124458a | 11053 | ALC662_FIXUP_ACER_NITRO_HEADSET_MODE, |
a3fd1a98 HW |
11054 | ALC668_FIXUP_ASUS_NO_HEADSET_MIC, |
11055 | ALC668_FIXUP_HEADSET_MIC, | |
11056 | ALC668_FIXUP_MIC_DET_COEF, | |
d7f32791 KY |
11057 | ALC897_FIXUP_LENOVO_HEADSET_MIC, |
11058 | ALC897_FIXUP_HEADSET_MIC_PIN, | |
fe6900bd | 11059 | ALC897_FIXUP_HP_HSMIC_VERB, |
6cb3b707 DH |
11060 | }; |
11061 | ||
1727a771 | 11062 | static const struct hda_fixup alc662_fixups[] = { |
2df03514 | 11063 | [ALC662_FIXUP_ASPIRE] = { |
1727a771 TI |
11064 | .type = HDA_FIXUP_PINS, |
11065 | .v.pins = (const struct hda_pintbl[]) { | |
2df03514 DC |
11066 | { 0x15, 0x99130112 }, /* subwoofer */ |
11067 | { } | |
11068 | } | |
11069 | }, | |
3e887f37 TI |
11070 | [ALC662_FIXUP_LED_GPIO1] = { |
11071 | .type = HDA_FIXUP_FUNC, | |
11072 | .v.func = alc662_fixup_led_gpio1, | |
11073 | }, | |
6cb3b707 | 11074 | [ALC662_FIXUP_IDEAPAD] = { |
1727a771 TI |
11075 | .type = HDA_FIXUP_PINS, |
11076 | .v.pins = (const struct hda_pintbl[]) { | |
6cb3b707 DH |
11077 | { 0x17, 0x99130112 }, /* subwoofer */ |
11078 | { } | |
3e887f37 TI |
11079 | }, |
11080 | .chained = true, | |
11081 | .chain_id = ALC662_FIXUP_LED_GPIO1, | |
6cb3b707 | 11082 | }, |
6be7948f | 11083 | [ALC272_FIXUP_MARIO] = { |
1727a771 | 11084 | .type = HDA_FIXUP_FUNC, |
b5bfbc67 | 11085 | .v.func = alc272_fixup_mario, |
d2ebd479 | 11086 | }, |
f1ec5be1 HC |
11087 | [ALC662_FIXUP_CZC_ET26] = { |
11088 | .type = HDA_FIXUP_PINS, | |
11089 | .v.pins = (const struct hda_pintbl[]) { | |
11090 | {0x12, 0x403cc000}, | |
11091 | {0x14, 0x90170110}, /* speaker */ | |
11092 | {0x15, 0x411111f0}, | |
11093 | {0x16, 0x411111f0}, | |
11094 | {0x18, 0x01a19030}, /* mic */ | |
11095 | {0x19, 0x90a7013f}, /* int-mic */ | |
11096 | {0x1a, 0x01014020}, | |
11097 | {0x1b, 0x0121401f}, | |
11098 | {0x1c, 0x411111f0}, | |
11099 | {0x1d, 0x411111f0}, | |
11100 | {0x1e, 0x40478e35}, | |
11101 | {} | |
11102 | }, | |
11103 | .chained = true, | |
11104 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
11105 | }, | |
d2ebd479 | 11106 | [ALC662_FIXUP_CZC_P10T] = { |
1727a771 | 11107 | .type = HDA_FIXUP_VERBS, |
d2ebd479 AA |
11108 | .v.verbs = (const struct hda_verb[]) { |
11109 | {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0}, | |
11110 | {} | |
11111 | } | |
11112 | }, | |
94024cd1 | 11113 | [ALC662_FIXUP_SKU_IGNORE] = { |
1727a771 | 11114 | .type = HDA_FIXUP_FUNC, |
23d30f28 | 11115 | .v.func = alc_fixup_sku_ignore, |
c6b35874 | 11116 | }, |
e59ea3ed | 11117 | [ALC662_FIXUP_HP_RP5800] = { |
1727a771 TI |
11118 | .type = HDA_FIXUP_PINS, |
11119 | .v.pins = (const struct hda_pintbl[]) { | |
e59ea3ed TI |
11120 | { 0x14, 0x0221201f }, /* HP out */ |
11121 | { } | |
11122 | }, | |
11123 | .chained = true, | |
11124 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
11125 | }, | |
53c334ad | 11126 | [ALC662_FIXUP_ASUS_MODE1] = { |
1727a771 TI |
11127 | .type = HDA_FIXUP_PINS, |
11128 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
11129 | { 0x14, 0x99130110 }, /* speaker */ |
11130 | { 0x18, 0x01a19c20 }, /* mic */ | |
11131 | { 0x19, 0x99a3092f }, /* int-mic */ | |
11132 | { 0x21, 0x0121401f }, /* HP out */ | |
11133 | { } | |
11134 | }, | |
11135 | .chained = true, | |
11136 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
11137 | }, | |
11138 | [ALC662_FIXUP_ASUS_MODE2] = { | |
1727a771 TI |
11139 | .type = HDA_FIXUP_PINS, |
11140 | .v.pins = (const struct hda_pintbl[]) { | |
2996bdba TI |
11141 | { 0x14, 0x99130110 }, /* speaker */ |
11142 | { 0x18, 0x01a19820 }, /* mic */ | |
11143 | { 0x19, 0x99a3092f }, /* int-mic */ | |
11144 | { 0x1b, 0x0121401f }, /* HP out */ | |
11145 | { } | |
11146 | }, | |
53c334ad TI |
11147 | .chained = true, |
11148 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
11149 | }, | |
11150 | [ALC662_FIXUP_ASUS_MODE3] = { | |
1727a771 TI |
11151 | .type = HDA_FIXUP_PINS, |
11152 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
11153 | { 0x14, 0x99130110 }, /* speaker */ |
11154 | { 0x15, 0x0121441f }, /* HP */ | |
11155 | { 0x18, 0x01a19840 }, /* mic */ | |
11156 | { 0x19, 0x99a3094f }, /* int-mic */ | |
11157 | { 0x21, 0x01211420 }, /* HP2 */ | |
11158 | { } | |
11159 | }, | |
11160 | .chained = true, | |
11161 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
11162 | }, | |
11163 | [ALC662_FIXUP_ASUS_MODE4] = { | |
1727a771 TI |
11164 | .type = HDA_FIXUP_PINS, |
11165 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
11166 | { 0x14, 0x99130110 }, /* speaker */ |
11167 | { 0x16, 0x99130111 }, /* speaker */ | |
11168 | { 0x18, 0x01a19840 }, /* mic */ | |
11169 | { 0x19, 0x99a3094f }, /* int-mic */ | |
11170 | { 0x21, 0x0121441f }, /* HP */ | |
11171 | { } | |
11172 | }, | |
11173 | .chained = true, | |
11174 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
11175 | }, | |
11176 | [ALC662_FIXUP_ASUS_MODE5] = { | |
1727a771 TI |
11177 | .type = HDA_FIXUP_PINS, |
11178 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
11179 | { 0x14, 0x99130110 }, /* speaker */ |
11180 | { 0x15, 0x0121441f }, /* HP */ | |
11181 | { 0x16, 0x99130111 }, /* speaker */ | |
11182 | { 0x18, 0x01a19840 }, /* mic */ | |
11183 | { 0x19, 0x99a3094f }, /* int-mic */ | |
11184 | { } | |
11185 | }, | |
11186 | .chained = true, | |
11187 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
11188 | }, | |
11189 | [ALC662_FIXUP_ASUS_MODE6] = { | |
1727a771 TI |
11190 | .type = HDA_FIXUP_PINS, |
11191 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
11192 | { 0x14, 0x99130110 }, /* speaker */ |
11193 | { 0x15, 0x01211420 }, /* HP2 */ | |
11194 | { 0x18, 0x01a19840 }, /* mic */ | |
11195 | { 0x19, 0x99a3094f }, /* int-mic */ | |
11196 | { 0x1b, 0x0121441f }, /* HP */ | |
11197 | { } | |
11198 | }, | |
11199 | .chained = true, | |
11200 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
11201 | }, | |
11202 | [ALC662_FIXUP_ASUS_MODE7] = { | |
1727a771 TI |
11203 | .type = HDA_FIXUP_PINS, |
11204 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
11205 | { 0x14, 0x99130110 }, /* speaker */ |
11206 | { 0x17, 0x99130111 }, /* speaker */ | |
11207 | { 0x18, 0x01a19840 }, /* mic */ | |
11208 | { 0x19, 0x99a3094f }, /* int-mic */ | |
11209 | { 0x1b, 0x01214020 }, /* HP */ | |
11210 | { 0x21, 0x0121401f }, /* HP */ | |
11211 | { } | |
11212 | }, | |
11213 | .chained = true, | |
11214 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
11215 | }, | |
11216 | [ALC662_FIXUP_ASUS_MODE8] = { | |
1727a771 TI |
11217 | .type = HDA_FIXUP_PINS, |
11218 | .v.pins = (const struct hda_pintbl[]) { | |
53c334ad TI |
11219 | { 0x14, 0x99130110 }, /* speaker */ |
11220 | { 0x12, 0x99a30970 }, /* int-mic */ | |
11221 | { 0x15, 0x01214020 }, /* HP */ | |
11222 | { 0x17, 0x99130111 }, /* speaker */ | |
11223 | { 0x18, 0x01a19840 }, /* mic */ | |
11224 | { 0x21, 0x0121401f }, /* HP */ | |
11225 | { } | |
11226 | }, | |
11227 | .chained = true, | |
11228 | .chain_id = ALC662_FIXUP_SKU_IGNORE | |
2996bdba | 11229 | }, |
1565cc35 | 11230 | [ALC662_FIXUP_NO_JACK_DETECT] = { |
1727a771 | 11231 | .type = HDA_FIXUP_FUNC, |
1565cc35 TI |
11232 | .v.func = alc_fixup_no_jack_detect, |
11233 | }, | |
edfe3bfc | 11234 | [ALC662_FIXUP_ZOTAC_Z68] = { |
1727a771 TI |
11235 | .type = HDA_FIXUP_PINS, |
11236 | .v.pins = (const struct hda_pintbl[]) { | |
edfe3bfc DH |
11237 | { 0x1b, 0x02214020 }, /* Front HP */ |
11238 | { } | |
11239 | } | |
11240 | }, | |
125821ae | 11241 | [ALC662_FIXUP_INV_DMIC] = { |
1727a771 | 11242 | .type = HDA_FIXUP_FUNC, |
9d36a7dc | 11243 | .v.func = alc_fixup_inv_dmic, |
125821ae | 11244 | }, |
033b0a7c GM |
11245 | [ALC668_FIXUP_DELL_XPS13] = { |
11246 | .type = HDA_FIXUP_FUNC, | |
11247 | .v.func = alc_fixup_dell_xps13, | |
11248 | .chained = true, | |
11249 | .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX | |
11250 | }, | |
5e6db669 GM |
11251 | [ALC668_FIXUP_DELL_DISABLE_AAMIX] = { |
11252 | .type = HDA_FIXUP_FUNC, | |
11253 | .v.func = alc_fixup_disable_aamix, | |
11254 | .chained = true, | |
11255 | .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE | |
11256 | }, | |
493a52a9 HW |
11257 | [ALC668_FIXUP_AUTO_MUTE] = { |
11258 | .type = HDA_FIXUP_FUNC, | |
11259 | .v.func = alc_fixup_auto_mute_via_amp, | |
11260 | .chained = true, | |
11261 | .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE | |
11262 | }, | |
1f8b46cd DH |
11263 | [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = { |
11264 | .type = HDA_FIXUP_PINS, | |
11265 | .v.pins = (const struct hda_pintbl[]) { | |
11266 | { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */ | |
11267 | /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */ | |
11268 | { } | |
11269 | }, | |
11270 | .chained = true, | |
11271 | .chain_id = ALC662_FIXUP_HEADSET_MODE | |
11272 | }, | |
11273 | [ALC662_FIXUP_HEADSET_MODE] = { | |
11274 | .type = HDA_FIXUP_FUNC, | |
11275 | .v.func = alc_fixup_headset_mode_alc662, | |
11276 | }, | |
73bdd597 DH |
11277 | [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = { |
11278 | .type = HDA_FIXUP_PINS, | |
11279 | .v.pins = (const struct hda_pintbl[]) { | |
11280 | { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */ | |
11281 | { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */ | |
11282 | { } | |
11283 | }, | |
11284 | .chained = true, | |
11285 | .chain_id = ALC668_FIXUP_HEADSET_MODE | |
11286 | }, | |
11287 | [ALC668_FIXUP_HEADSET_MODE] = { | |
11288 | .type = HDA_FIXUP_FUNC, | |
11289 | .v.func = alc_fixup_headset_mode_alc668, | |
11290 | }, | |
8e54b4ac | 11291 | [ALC662_FIXUP_BASS_MODE4_CHMAP] = { |
8e383953 | 11292 | .type = HDA_FIXUP_FUNC, |
eb9ca3ab | 11293 | .v.func = alc_fixup_bass_chmap, |
8e383953 TI |
11294 | .chained = true, |
11295 | .chain_id = ALC662_FIXUP_ASUS_MODE4 | |
11296 | }, | |
61a75f13 DH |
11297 | [ALC662_FIXUP_BASS_16] = { |
11298 | .type = HDA_FIXUP_PINS, | |
11299 | .v.pins = (const struct hda_pintbl[]) { | |
11300 | {0x16, 0x80106111}, /* bass speaker */ | |
11301 | {} | |
11302 | }, | |
11303 | .chained = true, | |
11304 | .chain_id = ALC662_FIXUP_BASS_CHMAP, | |
11305 | }, | |
a30c9aaa TI |
11306 | [ALC662_FIXUP_BASS_1A] = { |
11307 | .type = HDA_FIXUP_PINS, | |
11308 | .v.pins = (const struct hda_pintbl[]) { | |
11309 | {0x1a, 0x80106111}, /* bass speaker */ | |
11310 | {} | |
11311 | }, | |
8e54b4ac DH |
11312 | .chained = true, |
11313 | .chain_id = ALC662_FIXUP_BASS_CHMAP, | |
a30c9aaa | 11314 | }, |
8e54b4ac | 11315 | [ALC662_FIXUP_BASS_CHMAP] = { |
a30c9aaa | 11316 | .type = HDA_FIXUP_FUNC, |
eb9ca3ab | 11317 | .v.func = alc_fixup_bass_chmap, |
a30c9aaa | 11318 | }, |
9d4dc584 BM |
11319 | [ALC662_FIXUP_ASUS_Nx50] = { |
11320 | .type = HDA_FIXUP_FUNC, | |
11321 | .v.func = alc_fixup_auto_mute_via_amp, | |
11322 | .chained = true, | |
11323 | .chain_id = ALC662_FIXUP_BASS_1A | |
11324 | }, | |
fc7438b1 MP |
11325 | [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = { |
11326 | .type = HDA_FIXUP_FUNC, | |
11327 | .v.func = alc_fixup_headset_mode_alc668, | |
11328 | .chain_id = ALC662_FIXUP_BASS_CHMAP | |
11329 | }, | |
3231e205 YP |
11330 | [ALC668_FIXUP_ASUS_Nx51] = { |
11331 | .type = HDA_FIXUP_PINS, | |
11332 | .v.pins = (const struct hda_pintbl[]) { | |
fc7438b1 MP |
11333 | { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */ |
11334 | { 0x1a, 0x90170151 }, /* bass speaker */ | |
11335 | { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */ | |
3231e205 YP |
11336 | {} |
11337 | }, | |
11338 | .chained = true, | |
fc7438b1 | 11339 | .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE, |
3231e205 | 11340 | }, |
5b7c5e1f | 11341 | [ALC668_FIXUP_MIC_COEF] = { |
11ba6111 TI |
11342 | .type = HDA_FIXUP_VERBS, |
11343 | .v.verbs = (const struct hda_verb[]) { | |
11344 | { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 }, | |
11345 | { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 }, | |
11346 | {} | |
11347 | }, | |
11348 | }, | |
5b7c5e1f TI |
11349 | [ALC668_FIXUP_ASUS_G751] = { |
11350 | .type = HDA_FIXUP_PINS, | |
11351 | .v.pins = (const struct hda_pintbl[]) { | |
11352 | { 0x16, 0x0421101f }, /* HP */ | |
11353 | {} | |
11354 | }, | |
11355 | .chained = true, | |
11356 | .chain_id = ALC668_FIXUP_MIC_COEF | |
11357 | }, | |
78f4f7c2 KY |
11358 | [ALC891_FIXUP_HEADSET_MODE] = { |
11359 | .type = HDA_FIXUP_FUNC, | |
11360 | .v.func = alc_fixup_headset_mode, | |
11361 | }, | |
11362 | [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = { | |
11363 | .type = HDA_FIXUP_PINS, | |
11364 | .v.pins = (const struct hda_pintbl[]) { | |
11365 | { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */ | |
11366 | { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */ | |
11367 | { } | |
11368 | }, | |
11369 | .chained = true, | |
11370 | .chain_id = ALC891_FIXUP_HEADSET_MODE | |
11371 | }, | |
9b51fe3e SB |
11372 | [ALC662_FIXUP_ACER_VERITON] = { |
11373 | .type = HDA_FIXUP_PINS, | |
11374 | .v.pins = (const struct hda_pintbl[]) { | |
11375 | { 0x15, 0x50170120 }, /* no internal speaker */ | |
11376 | { } | |
11377 | } | |
11378 | }, | |
1a3f0991 TI |
11379 | [ALC892_FIXUP_ASROCK_MOBO] = { |
11380 | .type = HDA_FIXUP_PINS, | |
11381 | .v.pins = (const struct hda_pintbl[]) { | |
11382 | { 0x15, 0x40f000f0 }, /* disabled */ | |
11383 | { 0x16, 0x40f000f0 }, /* disabled */ | |
1a3f0991 TI |
11384 | { } |
11385 | } | |
11386 | }, | |
c6790c8e KY |
11387 | [ALC662_FIXUP_USI_FUNC] = { |
11388 | .type = HDA_FIXUP_FUNC, | |
11389 | .v.func = alc662_fixup_usi_headset_mic, | |
11390 | }, | |
11391 | [ALC662_FIXUP_USI_HEADSET_MODE] = { | |
11392 | .type = HDA_FIXUP_PINS, | |
11393 | .v.pins = (const struct hda_pintbl[]) { | |
11394 | { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */ | |
11395 | { 0x18, 0x01a1903d }, | |
11396 | { } | |
11397 | }, | |
11398 | .chained = true, | |
11399 | .chain_id = ALC662_FIXUP_USI_FUNC | |
11400 | }, | |
ca169cc2 KY |
11401 | [ALC662_FIXUP_LENOVO_MULTI_CODECS] = { |
11402 | .type = HDA_FIXUP_FUNC, | |
11403 | .v.func = alc233_alc662_fixup_lenovo_dual_codecs, | |
11404 | }, | |
00066e97 SB |
11405 | [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = { |
11406 | .type = HDA_FIXUP_FUNC, | |
11407 | .v.func = alc662_fixup_aspire_ethos_hp, | |
11408 | }, | |
00066e97 SB |
11409 | [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = { |
11410 | .type = HDA_FIXUP_PINS, | |
11411 | .v.pins = (const struct hda_pintbl[]) { | |
11412 | { 0x15, 0x92130110 }, /* front speakers */ | |
11413 | { 0x18, 0x99130111 }, /* center/subwoofer */ | |
11414 | { 0x1b, 0x11130012 }, /* surround plus jack for HP */ | |
11415 | { } | |
11416 | }, | |
11417 | .chained = true, | |
336820c4 | 11418 | .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET |
00066e97 | 11419 | }, |
5af29028 KY |
11420 | [ALC671_FIXUP_HP_HEADSET_MIC2] = { |
11421 | .type = HDA_FIXUP_FUNC, | |
11422 | .v.func = alc671_fixup_hp_headset_mic2, | |
11423 | }, | |
d858c706 JHP |
11424 | [ALC662_FIXUP_ACER_X2660G_HEADSET_MODE] = { |
11425 | .type = HDA_FIXUP_PINS, | |
11426 | .v.pins = (const struct hda_pintbl[]) { | |
11427 | { 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */ | |
11428 | { } | |
11429 | }, | |
11430 | .chained = true, | |
11431 | .chain_id = ALC662_FIXUP_USI_FUNC | |
11432 | }, | |
a124458a JHP |
11433 | [ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = { |
11434 | .type = HDA_FIXUP_PINS, | |
11435 | .v.pins = (const struct hda_pintbl[]) { | |
11436 | { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */ | |
11437 | { 0x1b, 0x0221144f }, | |
11438 | { } | |
11439 | }, | |
11440 | .chained = true, | |
11441 | .chain_id = ALC662_FIXUP_USI_FUNC | |
11442 | }, | |
a3fd1a98 HW |
11443 | [ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = { |
11444 | .type = HDA_FIXUP_PINS, | |
11445 | .v.pins = (const struct hda_pintbl[]) { | |
11446 | { 0x1b, 0x04a1112c }, | |
11447 | { } | |
11448 | }, | |
11449 | .chained = true, | |
11450 | .chain_id = ALC668_FIXUP_HEADSET_MIC | |
11451 | }, | |
11452 | [ALC668_FIXUP_HEADSET_MIC] = { | |
11453 | .type = HDA_FIXUP_FUNC, | |
11454 | .v.func = alc269_fixup_headset_mic, | |
11455 | .chained = true, | |
11456 | .chain_id = ALC668_FIXUP_MIC_DET_COEF | |
11457 | }, | |
11458 | [ALC668_FIXUP_MIC_DET_COEF] = { | |
11459 | .type = HDA_FIXUP_VERBS, | |
11460 | .v.verbs = (const struct hda_verb[]) { | |
11461 | { 0x20, AC_VERB_SET_COEF_INDEX, 0x15 }, | |
11462 | { 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 }, | |
11463 | {} | |
11464 | }, | |
11465 | }, | |
d7f32791 KY |
11466 | [ALC897_FIXUP_LENOVO_HEADSET_MIC] = { |
11467 | .type = HDA_FIXUP_FUNC, | |
11468 | .v.func = alc897_fixup_lenovo_headset_mic, | |
11469 | }, | |
11470 | [ALC897_FIXUP_HEADSET_MIC_PIN] = { | |
11471 | .type = HDA_FIXUP_PINS, | |
11472 | .v.pins = (const struct hda_pintbl[]) { | |
11473 | { 0x1a, 0x03a11050 }, | |
11474 | { } | |
11475 | }, | |
11476 | .chained = true, | |
11477 | .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC | |
11478 | }, | |
fe6900bd KY |
11479 | [ALC897_FIXUP_HP_HSMIC_VERB] = { |
11480 | .type = HDA_FIXUP_PINS, | |
11481 | .v.pins = (const struct hda_pintbl[]) { | |
11482 | { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ | |
11483 | { } | |
11484 | }, | |
11485 | }, | |
6cb3b707 DH |
11486 | }; |
11487 | ||
a9111321 | 11488 | static const struct snd_pci_quirk alc662_fixup_tbl[] = { |
53c334ad | 11489 | SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2), |
d3d3835c | 11490 | SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC), |
02f6ff90 | 11491 | SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC), |
a6c47a85 | 11492 | SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE), |
94024cd1 | 11493 | SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE), |
125821ae | 11494 | SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC), |
1801928e | 11495 | SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC), |
2df03514 | 11496 | SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE), |
9edeb110 | 11497 | SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS), |
a124458a | 11498 | SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE), |
d858c706 | 11499 | SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE), |
73bdd597 DH |
11500 | SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), |
11501 | SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), | |
c5d019c3 | 11502 | SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13), |
033b0a7c | 11503 | SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13), |
467e1436 | 11504 | SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13), |
09d2014f | 11505 | SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), |
ad8ff99e | 11506 | SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), |
8dc9abb9 KY |
11507 | SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), |
11508 | SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), | |
6a98e34b | 11509 | SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), |
e59ea3ed | 11510 | SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800), |
fe6900bd | 11511 | SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB), |
148ebf54 | 11512 | SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2), |
dbe75d31 | 11513 | SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2), |
882bd07f | 11514 | SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2), |
2da2dc9e | 11515 | SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE), |
83a9efb5 | 11516 | SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50), |
9d4dc584 | 11517 | SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50), |
11ba6111 | 11518 | SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751), |
9edeb110 | 11519 | SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A), |
8e54b4ac | 11520 | SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP), |
61a75f13 | 11521 | SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16), |
3231e205 YP |
11522 | SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51), |
11523 | SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51), | |
a3fd1a98 | 11524 | SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC), |
c7efff92 | 11525 | SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8), |
61a75f13 | 11526 | SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16), |
8e54b4ac | 11527 | SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP), |
1565cc35 | 11528 | SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT), |
53c334ad | 11529 | SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2), |
a0e90acc | 11530 | SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD), |
c6790c8e | 11531 | SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE), |
ca169cc2 | 11532 | SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS), |
5a873857 | 11533 | SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN), |
d7f32791 KY |
11534 | SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN), |
11535 | SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN), | |
11536 | SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN), | |
11537 | SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN), | |
d4118588 | 11538 | SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD), |
6cb3b707 | 11539 | SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD), |
1a3f0991 | 11540 | SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO), |
edfe3bfc | 11541 | SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68), |
9b51fe3e | 11542 | SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON), |
f1ec5be1 | 11543 | SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26), |
d2ebd479 | 11544 | SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T), |
53c334ad TI |
11545 | |
11546 | #if 0 | |
11547 | /* Below is a quirk table taken from the old code. | |
11548 | * Basically the device should work as is without the fixup table. | |
11549 | * If BIOS doesn't give a proper info, enable the corresponding | |
11550 | * fixup entry. | |
7d7eb9ea | 11551 | */ |
53c334ad TI |
11552 | SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1), |
11553 | SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3), | |
11554 | SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1), | |
11555 | SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3), | |
11556 | SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | |
11557 | SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
11558 | SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | |
11559 | SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1), | |
11560 | SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1), | |
11561 | SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
11562 | SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7), | |
11563 | SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7), | |
11564 | SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8), | |
11565 | SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3), | |
11566 | SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1), | |
11567 | SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
11568 | SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2), | |
11569 | SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1), | |
11570 | SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
11571 | SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), | |
11572 | SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), | |
11573 | SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
11574 | SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1), | |
11575 | SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3), | |
11576 | SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2), | |
11577 | SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
11578 | SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5), | |
11579 | SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), | |
11580 | SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
11581 | SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1), | |
11582 | SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
11583 | SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
11584 | SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3), | |
11585 | SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3), | |
11586 | SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1), | |
11587 | SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1), | |
11588 | SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1), | |
11589 | SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1), | |
11590 | SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1), | |
11591 | SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), | |
11592 | SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2), | |
11593 | SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1), | |
11594 | SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | |
11595 | SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3), | |
11596 | SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1), | |
11597 | SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1), | |
11598 | SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1), | |
11599 | SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2), | |
11600 | SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), | |
11601 | SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4), | |
11602 | #endif | |
6cb3b707 DH |
11603 | {} |
11604 | }; | |
11605 | ||
1727a771 | 11606 | static const struct hda_model_fixup alc662_fixup_models[] = { |
aa3841b5 TI |
11607 | {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"}, |
11608 | {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"}, | |
6be7948f | 11609 | {.id = ALC272_FIXUP_MARIO, .name = "mario"}, |
aa3841b5 | 11610 | {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"}, |
53c334ad TI |
11611 | {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"}, |
11612 | {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"}, | |
11613 | {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"}, | |
11614 | {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"}, | |
11615 | {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"}, | |
11616 | {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"}, | |
11617 | {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"}, | |
11618 | {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"}, | |
aa3841b5 | 11619 | {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"}, |
6e72aa5f | 11620 | {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"}, |
aa3841b5 | 11621 | {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"}, |
e32aa85a | 11622 | {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"}, |
aa3841b5 TI |
11623 | {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"}, |
11624 | {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"}, | |
11625 | {.id = ALC662_FIXUP_BASS_16, .name = "bass16"}, | |
11626 | {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"}, | |
11627 | {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"}, | |
11628 | {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"}, | |
11629 | {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"}, | |
11630 | {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"}, | |
40c51675 | 11631 | {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"}, |
aa3841b5 TI |
11632 | {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"}, |
11633 | {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"}, | |
11634 | {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"}, | |
11635 | {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"}, | |
11636 | {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"}, | |
ba90d6a6 | 11637 | {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"}, |
00066e97 | 11638 | {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"}, |
6be7948f TB |
11639 | {} |
11640 | }; | |
6cb3b707 | 11641 | |
532895c5 | 11642 | static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = { |
78f4f7c2 KY |
11643 | SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE, |
11644 | {0x17, 0x02211010}, | |
11645 | {0x18, 0x01a19030}, | |
11646 | {0x1a, 0x01813040}, | |
11647 | {0x21, 0x01014020}), | |
4b4e0e32 HW |
11648 | SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE, |
11649 | {0x16, 0x01813030}, | |
11650 | {0x17, 0x02211010}, | |
11651 | {0x18, 0x01a19040}, | |
11652 | {0x21, 0x01014020}), | |
1f8b46cd | 11653 | SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE, |
1f8b46cd | 11654 | {0x14, 0x01014010}, |
1f8b46cd | 11655 | {0x18, 0x01a19020}, |
1f8b46cd | 11656 | {0x1a, 0x0181302f}, |
11580297 | 11657 | {0x1b, 0x0221401f}), |
76c2132e DH |
11658 | SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, |
11659 | {0x12, 0x99a30130}, | |
11660 | {0x14, 0x90170110}, | |
11661 | {0x15, 0x0321101f}, | |
11580297 | 11662 | {0x16, 0x03011020}), |
76c2132e DH |
11663 | SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, |
11664 | {0x12, 0x99a30140}, | |
11665 | {0x14, 0x90170110}, | |
11666 | {0x15, 0x0321101f}, | |
11580297 | 11667 | {0x16, 0x03011020}), |
76c2132e DH |
11668 | SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, |
11669 | {0x12, 0x99a30150}, | |
11670 | {0x14, 0x90170110}, | |
11671 | {0x15, 0x0321101f}, | |
11580297 | 11672 | {0x16, 0x03011020}), |
76c2132e | 11673 | SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, |
76c2132e DH |
11674 | {0x14, 0x90170110}, |
11675 | {0x15, 0x0321101f}, | |
11580297 | 11676 | {0x16, 0x03011020}), |
76c2132e DH |
11677 | SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE, |
11678 | {0x12, 0x90a60130}, | |
11679 | {0x14, 0x90170110}, | |
11580297 | 11680 | {0x15, 0x0321101f}), |
5af29028 KY |
11681 | SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2, |
11682 | {0x14, 0x01014010}, | |
11683 | {0x17, 0x90170150}, | |
f2adbae0 | 11684 | {0x19, 0x02a11060}, |
5af29028 KY |
11685 | {0x1b, 0x01813030}, |
11686 | {0x21, 0x02211020}), | |
11687 | SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2, | |
11688 | {0x14, 0x01014010}, | |
11689 | {0x18, 0x01a19040}, | |
11690 | {0x1b, 0x01813030}, | |
11691 | {0x21, 0x02211020}), | |
11692 | SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2, | |
11693 | {0x14, 0x01014020}, | |
11694 | {0x17, 0x90170110}, | |
11695 | {0x18, 0x01a19050}, | |
11696 | {0x1b, 0x01813040}, | |
11697 | {0x21, 0x02211030}), | |
532895c5 HW |
11698 | {} |
11699 | }; | |
11700 | ||
1d045db9 TI |
11701 | /* |
11702 | */ | |
bc9f98a9 KY |
11703 | static int patch_alc662(struct hda_codec *codec) |
11704 | { | |
11705 | struct alc_spec *spec; | |
3de95173 | 11706 | int err; |
bc9f98a9 | 11707 | |
3de95173 TI |
11708 | err = alc_alloc_spec(codec, 0x0b); |
11709 | if (err < 0) | |
11710 | return err; | |
bc9f98a9 | 11711 | |
3de95173 | 11712 | spec = codec->spec; |
1f0f4b80 | 11713 | |
225068ab TI |
11714 | spec->shutup = alc_eapd_shutup; |
11715 | ||
53c334ad TI |
11716 | /* handle multiple HPs as is */ |
11717 | spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; | |
11718 | ||
2c3bf9ab TI |
11719 | alc_fix_pll_init(codec, 0x20, 0x04, 15); |
11720 | ||
7639a06c | 11721 | switch (codec->core.vendor_id) { |
f3f9185f KY |
11722 | case 0x10ec0668: |
11723 | spec->init_hook = alc668_restore_default_value; | |
11724 | break; | |
f3f9185f | 11725 | } |
8663ff75 | 11726 | |
c9af753f TI |
11727 | alc_pre_init(codec); |
11728 | ||
1727a771 | 11729 | snd_hda_pick_fixup(codec, alc662_fixup_models, |
8e5a0509 | 11730 | alc662_fixup_tbl, alc662_fixups); |
0fc1e447 | 11731 | snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true); |
1727a771 | 11732 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); |
8e5a0509 TI |
11733 | |
11734 | alc_auto_parse_customize_define(codec); | |
11735 | ||
7504b6cd TI |
11736 | if (has_cdefine_beep(codec)) |
11737 | spec->gen.beep_nid = 0x01; | |
11738 | ||
1bb7e43e | 11739 | if ((alc_get_coef0(codec) & (1 << 14)) && |
5100cd07 | 11740 | codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 && |
e16fb6d1 | 11741 | spec->cdefine.platform_type == 1) { |
6134b1a2 WY |
11742 | err = alc_codec_rename(codec, "ALC272X"); |
11743 | if (err < 0) | |
e16fb6d1 | 11744 | goto error; |
20ca0c35 | 11745 | } |
274693f3 | 11746 | |
b9c5106c TI |
11747 | /* automatic parse from the BIOS config */ |
11748 | err = alc662_parse_auto_config(codec); | |
e16fb6d1 TI |
11749 | if (err < 0) |
11750 | goto error; | |
bc9f98a9 | 11751 | |
7504b6cd | 11752 | if (!spec->gen.no_analog && spec->gen.beep_nid) { |
7639a06c | 11753 | switch (codec->core.vendor_id) { |
da00c244 | 11754 | case 0x10ec0662: |
fea80fae | 11755 | err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); |
da00c244 KY |
11756 | break; |
11757 | case 0x10ec0272: | |
11758 | case 0x10ec0663: | |
11759 | case 0x10ec0665: | |
9ad54547 | 11760 | case 0x10ec0668: |
fea80fae | 11761 | err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT); |
da00c244 KY |
11762 | break; |
11763 | case 0x10ec0273: | |
fea80fae | 11764 | err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT); |
da00c244 KY |
11765 | break; |
11766 | } | |
fea80fae TI |
11767 | if (err < 0) |
11768 | goto error; | |
cec27c89 | 11769 | } |
2134ea4f | 11770 | |
1727a771 | 11771 | snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); |
589876e2 | 11772 | |
bc9f98a9 | 11773 | return 0; |
801f49d3 | 11774 | |
e16fb6d1 TI |
11775 | error: |
11776 | alc_free(codec); | |
11777 | return err; | |
b478b998 KY |
11778 | } |
11779 | ||
d1eb57f4 KY |
11780 | /* |
11781 | * ALC680 support | |
11782 | */ | |
d1eb57f4 | 11783 | |
d1eb57f4 KY |
11784 | static int alc680_parse_auto_config(struct hda_codec *codec) |
11785 | { | |
3e6179b8 | 11786 | return alc_parse_auto_config(codec, NULL, NULL); |
d1eb57f4 KY |
11787 | } |
11788 | ||
d1eb57f4 | 11789 | /* |
d1eb57f4 | 11790 | */ |
d1eb57f4 KY |
11791 | static int patch_alc680(struct hda_codec *codec) |
11792 | { | |
d1eb57f4 KY |
11793 | int err; |
11794 | ||
1f0f4b80 | 11795 | /* ALC680 has no aa-loopback mixer */ |
3de95173 TI |
11796 | err = alc_alloc_spec(codec, 0); |
11797 | if (err < 0) | |
11798 | return err; | |
1f0f4b80 | 11799 | |
1ebec5f2 TI |
11800 | /* automatic parse from the BIOS config */ |
11801 | err = alc680_parse_auto_config(codec); | |
11802 | if (err < 0) { | |
11803 | alc_free(codec); | |
11804 | return err; | |
d1eb57f4 KY |
11805 | } |
11806 | ||
d1eb57f4 KY |
11807 | return 0; |
11808 | } | |
11809 | ||
1da177e4 LT |
11810 | /* |
11811 | * patch entries | |
11812 | */ | |
b9a94a9c | 11813 | static const struct hda_device_id snd_hda_id_realtek[] = { |
0a6f0600 | 11814 | HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269), |
b9a94a9c | 11815 | HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269), |
2a36c16e | 11816 | HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269), |
4231430d | 11817 | HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269), |
1948fc06 | 11818 | HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269), |
b9a94a9c TI |
11819 | HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269), |
11820 | HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269), | |
dcd4f0db | 11821 | HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269), |
b9a94a9c | 11822 | HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269), |
736f20a7 | 11823 | HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269), |
7fbdcd83 | 11824 | HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269), |
b9a94a9c TI |
11825 | HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269), |
11826 | HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269), | |
f429e7e4 | 11827 | HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269), |
b9a94a9c TI |
11828 | HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260), |
11829 | HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262), | |
11830 | HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268), | |
11831 | HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268), | |
11832 | HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269), | |
11833 | HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269), | |
11834 | HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662), | |
dcd4f0db | 11835 | HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269), |
b9a94a9c TI |
11836 | HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269), |
11837 | HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269), | |
11838 | HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269), | |
11839 | HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269), | |
11840 | HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269), | |
11841 | HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269), | |
0a6f0600 | 11842 | HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269), |
b9a94a9c | 11843 | HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269), |
630e3612 | 11844 | HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269), |
b9a94a9c | 11845 | HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269), |
0a6f0600 | 11846 | HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269), |
b9a94a9c TI |
11847 | HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269), |
11848 | HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269), | |
11849 | HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269), | |
dcd4f0db | 11850 | HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269), |
7d727869 | 11851 | HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269), |
b9a94a9c | 11852 | HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269), |
28f1f9b2 | 11853 | HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269), |
1078bef0 | 11854 | HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269), |
f0778871 | 11855 | HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269), |
b9a94a9c TI |
11856 | HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861), |
11857 | HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd), | |
11858 | HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861), | |
11859 | HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd), | |
11860 | HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882), | |
11861 | HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662), | |
11862 | HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662), | |
11863 | HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662), | |
11864 | HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662), | |
11865 | HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662), | |
11866 | HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662), | |
11867 | HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662), | |
11868 | HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662), | |
11869 | HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680), | |
6fbae35a KY |
11870 | HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269), |
11871 | HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269), | |
11872 | HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269), | |
83629532 | 11873 | HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269), |
78f4f7c2 | 11874 | HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662), |
b9a94a9c TI |
11875 | HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880), |
11876 | HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882), | |
11877 | HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882), | |
11878 | HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882), | |
11879 | HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882), | |
11880 | HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882), | |
11881 | HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882), | |
11882 | HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882), | |
11883 | HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882), | |
11884 | HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882), | |
11885 | HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662), | |
e5782a5d | 11886 | HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662), |
b9a94a9c TI |
11887 | HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882), |
11888 | HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882), | |
6d9ffcff | 11889 | HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882), |
65553b12 | 11890 | HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882), |
a535ad57 | 11891 | HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882), |
527f4643 | 11892 | HDA_CODEC_ENTRY(0x19e58326, "HW8326", patch_alc269), |
1da177e4 LT |
11893 | {} /* terminator */ |
11894 | }; | |
b9a94a9c | 11895 | MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek); |
1289e9e8 TI |
11896 | |
11897 | MODULE_LICENSE("GPL"); | |
11898 | MODULE_DESCRIPTION("Realtek HD-audio codec"); | |
11899 | ||
d8a766a1 | 11900 | static struct hda_codec_driver realtek_driver = { |
b9a94a9c | 11901 | .id = snd_hda_id_realtek, |
1289e9e8 TI |
11902 | }; |
11903 | ||
d8a766a1 | 11904 | module_hda_codec_driver(realtek_driver); |