1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Universal Interface for Intel High Definition Audio Codec
5 * HD audio interface patch for Realtek ALC codecs
7 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
8 * PeiSen Hou <pshou@realtek.com.tw>
9 * Takashi Iwai <tiwai@suse.de>
10 * Jonathan Woithe <jwoithe@just42.net>
13 #include <linux/acpi.h>
14 #include <linux/cleanup.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/slab.h>
18 #include <linux/pci.h>
19 #include <linux/dmi.h>
20 #include <linux/module.h>
21 #include <linux/i2c.h>
22 #include <linux/input.h>
23 #include <linux/leds.h>
24 #include <linux/ctype.h>
25 #include <linux/spi/spi.h>
26 #include <sound/core.h>
27 #include <sound/jack.h>
28 #include <sound/hda_codec.h>
29 #include "hda_local.h"
30 #include "hda_auto_parser.h"
33 #include "hda_generic.h"
34 #include "hda_component.h"
36 /* keep halting ALC5505 DSP, for power saving */
37 #define HALT_REALTEK_ALC5505
39 /* extra amp-initialization sequence types */
47 ALC_HEADSET_MODE_UNKNOWN
,
48 ALC_HEADSET_MODE_UNPLUGGED
,
49 ALC_HEADSET_MODE_HEADSET
,
51 ALC_HEADSET_MODE_HEADPHONE
,
55 ALC_HEADSET_TYPE_UNKNOWN
,
56 ALC_HEADSET_TYPE_CTIA
,
57 ALC_HEADSET_TYPE_OMTP
,
61 ALC_KEY_MICMUTE_INDEX
,
64 struct alc_customize_define
{
66 unsigned char port_connectivity
;
67 unsigned char check_sum
;
68 unsigned char customization
;
69 unsigned char external_amp
;
70 unsigned int enable_pcbeep
:1;
71 unsigned int platform_type
:1;
73 unsigned int override
:1;
74 unsigned int fixup
:1; /* Means that this sku is set by driver, not read from hw */
85 struct hda_gen_spec gen
; /* must be at head */
87 /* codec parameterization */
88 struct alc_customize_define cdefine
;
89 unsigned int parse_flags
; /* flag for snd_hda_parse_pin_defcfg() */
92 unsigned int gpio_mask
;
93 unsigned int gpio_dir
;
94 unsigned int gpio_data
;
95 bool gpio_write_delay
; /* add a delay before writing gpio_data */
97 /* mute LED for HP laptops, see vref_mute_led_set() */
98 int mute_led_polarity
;
99 int micmute_led_polarity
;
100 hda_nid_t mute_led_nid
;
101 hda_nid_t cap_mute_led_nid
;
103 unsigned int gpio_mute_led_mask
;
104 unsigned int gpio_mic_led_mask
;
105 struct alc_coef_led mute_led_coef
;
106 struct alc_coef_led mic_led_coef
;
107 struct mutex coef_mutex
;
109 hda_nid_t headset_mic_pin
;
110 hda_nid_t headphone_mic_pin
;
111 int current_headset_mode
;
112 int current_headset_type
;
115 void (*init_hook
)(struct hda_codec
*codec
);
116 void (*power_hook
)(struct hda_codec
*codec
);
117 void (*shutup
)(struct hda_codec
*codec
);
120 int codec_variant
; /* flag for other variants */
121 unsigned int has_alc5505_dsp
:1;
122 unsigned int no_depop_delay
:1;
123 unsigned int done_hp_init
:1;
124 unsigned int no_shutup_pins
:1;
125 unsigned int ultra_low_power
:1;
126 unsigned int has_hs_key
:1;
127 unsigned int no_internal_mic_pin
:1;
128 unsigned int en_3kpull_low
:1;
129 int num_speaker_amps
;
133 unsigned int pll_coef_idx
, pll_coef_bit
;
135 struct input_dev
*kb_dev
;
136 u8 alc_mute_keycode_map
[1];
138 /* component binding */
139 struct hda_component_parent comps
;
143 * COEF access helper functions
146 static void coef_mutex_lock(struct hda_codec
*codec
)
148 struct alc_spec
*spec
= codec
->spec
;
150 snd_hda_power_up_pm(codec
);
151 mutex_lock(&spec
->coef_mutex
);
154 static void coef_mutex_unlock(struct hda_codec
*codec
)
156 struct alc_spec
*spec
= codec
->spec
;
158 mutex_unlock(&spec
->coef_mutex
);
159 snd_hda_power_down_pm(codec
);
162 static int __alc_read_coefex_idx(struct hda_codec
*codec
, hda_nid_t nid
,
163 unsigned int coef_idx
)
167 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_COEF_INDEX
, coef_idx
);
168 val
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_PROC_COEF
, 0);
172 static int alc_read_coefex_idx(struct hda_codec
*codec
, hda_nid_t nid
,
173 unsigned int coef_idx
)
177 coef_mutex_lock(codec
);
178 val
= __alc_read_coefex_idx(codec
, nid
, coef_idx
);
179 coef_mutex_unlock(codec
);
183 #define alc_read_coef_idx(codec, coef_idx) \
184 alc_read_coefex_idx(codec, 0x20, coef_idx)
186 static void __alc_write_coefex_idx(struct hda_codec
*codec
, hda_nid_t nid
,
187 unsigned int coef_idx
, unsigned int coef_val
)
189 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_COEF_INDEX
, coef_idx
);
190 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PROC_COEF
, coef_val
);
193 static void alc_write_coefex_idx(struct hda_codec
*codec
, hda_nid_t nid
,
194 unsigned int coef_idx
, unsigned int coef_val
)
196 coef_mutex_lock(codec
);
197 __alc_write_coefex_idx(codec
, nid
, coef_idx
, coef_val
);
198 coef_mutex_unlock(codec
);
201 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
202 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
204 static void __alc_update_coefex_idx(struct hda_codec
*codec
, hda_nid_t nid
,
205 unsigned int coef_idx
, unsigned int mask
,
206 unsigned int bits_set
)
208 unsigned int val
= __alc_read_coefex_idx(codec
, nid
, coef_idx
);
211 __alc_write_coefex_idx(codec
, nid
, coef_idx
,
212 (val
& ~mask
) | bits_set
);
215 static void alc_update_coefex_idx(struct hda_codec
*codec
, hda_nid_t nid
,
216 unsigned int coef_idx
, unsigned int mask
,
217 unsigned int bits_set
)
219 coef_mutex_lock(codec
);
220 __alc_update_coefex_idx(codec
, nid
, coef_idx
, mask
, bits_set
);
221 coef_mutex_unlock(codec
);
224 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
225 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
227 /* a special bypass for COEF 0; read the cached value at the second time */
228 static unsigned int alc_get_coef0(struct hda_codec
*codec
)
230 struct alc_spec
*spec
= codec
->spec
;
233 spec
->coef0
= alc_read_coef_idx(codec
, 0);
237 /* coef writes/updates batch */
245 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
246 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
247 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
248 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
249 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
251 static void alc_process_coef_fw(struct hda_codec
*codec
,
252 const struct coef_fw
*fw
)
254 coef_mutex_lock(codec
);
255 for (; fw
->nid
; fw
++) {
256 if (fw
->mask
== (unsigned short)-1)
257 __alc_write_coefex_idx(codec
, fw
->nid
, fw
->idx
, fw
->val
);
259 __alc_update_coefex_idx(codec
, fw
->nid
, fw
->idx
,
262 coef_mutex_unlock(codec
);
266 * GPIO setup tables, used in initialization
269 /* Enable GPIO mask and set output */
270 static void alc_setup_gpio(struct hda_codec
*codec
, unsigned int mask
)
272 struct alc_spec
*spec
= codec
->spec
;
274 spec
->gpio_mask
|= mask
;
275 spec
->gpio_dir
|= mask
;
276 spec
->gpio_data
|= mask
;
279 static void alc_write_gpio_data(struct hda_codec
*codec
)
281 struct alc_spec
*spec
= codec
->spec
;
283 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
287 static void alc_update_gpio_data(struct hda_codec
*codec
, unsigned int mask
,
290 struct alc_spec
*spec
= codec
->spec
;
291 unsigned int oldval
= spec
->gpio_data
;
294 spec
->gpio_data
|= mask
;
296 spec
->gpio_data
&= ~mask
;
297 if (oldval
!= spec
->gpio_data
)
298 alc_write_gpio_data(codec
);
301 static void alc_write_gpio(struct hda_codec
*codec
)
303 struct alc_spec
*spec
= codec
->spec
;
305 if (!spec
->gpio_mask
)
308 snd_hda_codec_write(codec
, codec
->core
.afg
, 0,
309 AC_VERB_SET_GPIO_MASK
, spec
->gpio_mask
);
310 snd_hda_codec_write(codec
, codec
->core
.afg
, 0,
311 AC_VERB_SET_GPIO_DIRECTION
, spec
->gpio_dir
);
312 if (spec
->gpio_write_delay
)
314 alc_write_gpio_data(codec
);
317 static void alc_fixup_gpio(struct hda_codec
*codec
, int action
,
320 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
321 alc_setup_gpio(codec
, mask
);
324 static void alc_fixup_gpio1(struct hda_codec
*codec
,
325 const struct hda_fixup
*fix
, int action
)
327 alc_fixup_gpio(codec
, action
, 0x01);
330 static void alc_fixup_gpio2(struct hda_codec
*codec
,
331 const struct hda_fixup
*fix
, int action
)
333 alc_fixup_gpio(codec
, action
, 0x02);
336 static void alc_fixup_gpio3(struct hda_codec
*codec
,
337 const struct hda_fixup
*fix
, int action
)
339 alc_fixup_gpio(codec
, action
, 0x03);
342 static void alc_fixup_gpio4(struct hda_codec
*codec
,
343 const struct hda_fixup
*fix
, int action
)
345 alc_fixup_gpio(codec
, action
, 0x04);
348 static void alc_fixup_micmute_led(struct hda_codec
*codec
,
349 const struct hda_fixup
*fix
, int action
)
351 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
352 snd_hda_gen_add_micmute_led_cdev(codec
, NULL
);
356 * Fix hardware PLL issue
357 * On some codecs, the analog PLL gating control must be off while
358 * the default value is 1.
360 static void alc_fix_pll(struct hda_codec
*codec
)
362 struct alc_spec
*spec
= codec
->spec
;
365 alc_update_coefex_idx(codec
, spec
->pll_nid
, spec
->pll_coef_idx
,
366 1 << spec
->pll_coef_bit
, 0);
369 static void alc_fix_pll_init(struct hda_codec
*codec
, hda_nid_t nid
,
370 unsigned int coef_idx
, unsigned int coef_bit
)
372 struct alc_spec
*spec
= codec
->spec
;
374 spec
->pll_coef_idx
= coef_idx
;
375 spec
->pll_coef_bit
= coef_bit
;
379 /* update the master volume per volume-knob's unsol event */
380 static void alc_update_knob_master(struct hda_codec
*codec
,
381 struct hda_jack_callback
*jack
)
384 struct snd_kcontrol
*kctl
;
385 struct snd_ctl_elem_value
*uctl
;
387 kctl
= snd_hda_find_mixer_ctl(codec
, "Master Playback Volume");
390 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
393 val
= snd_hda_codec_read(codec
, jack
->nid
, 0,
394 AC_VERB_GET_VOLUME_KNOB_CONTROL
, 0);
395 val
&= HDA_AMP_VOLMASK
;
396 uctl
->value
.integer
.value
[0] = val
;
397 uctl
->value
.integer
.value
[1] = val
;
398 kctl
->put(kctl
, uctl
);
402 static void alc880_unsol_event(struct hda_codec
*codec
, unsigned int res
)
404 /* For some reason, the res given from ALC880 is broken.
405 Here we adjust it properly. */
406 snd_hda_jack_unsol_event(codec
, res
>> 2);
409 /* Change EAPD to verb control */
410 static void alc_fill_eapd_coef(struct hda_codec
*codec
)
414 coef
= alc_get_coef0(codec
);
416 switch (codec
->core
.vendor_id
) {
418 alc_update_coef_idx(codec
, 0x7, 0, 1<<5);
422 alc_update_coef_idx(codec
, 0x7, 0, 1<<13);
425 if ((coef
& 0x00f0) == 0x0010)
426 alc_update_coef_idx(codec
, 0xd, 0, 1<<14);
427 if ((coef
& 0x00f0) == 0x0020)
428 alc_update_coef_idx(codec
, 0x4, 1<<15, 0);
429 if ((coef
& 0x00f0) == 0x0030)
430 alc_update_coef_idx(codec
, 0x10, 1<<9, 0);
436 alc_update_coef_idx(codec
, 0x4, 1<<15, 0);
441 alc_update_coef_idx(codec
, 0x67, 0xf000, 0x3000);
450 alc_update_coef_idx(codec
, 0x36, 1<<13, 0);
463 alc_update_coef_idx(codec
, 0x10, 1<<9, 0);
466 alc_update_coef_idx(codec
, 0xe, 0, 1<<0);
469 alc_update_coef_idx(codec
, 0x10, 1<<9, 0);
470 alc_write_coef_idx(codec
, 0x8, 0x4ab7);
473 alc_update_coef_idx(codec
, 0xa, 1<<13, 0);
477 alc_write_coef_idx(codec
, 0x6e, 0x0c25);
484 alc_update_coef_idx(codec
, 0x10, 1<<15, 0);
487 if ((coef
& 0x00f0) == 0x0030)
488 alc_update_coef_idx(codec
, 0x4, 1<<10, 0); /* EAPD Ctrl */
497 alc_update_coef_idx(codec
, 0xd, 0, 1<<14); /* EAPD Ctrl */
501 alc_update_coef_idx(codec
, 0x19, 1<<13, 0);
504 alc_update_coef_idx(codec
, 0x7, 3<<13, 0);
507 alc_update_coef_idx(codec
, 0x4, 1<<10, 0);
510 if ((coef
& 0x00f0) == 0x0020 || (coef
& 0x00f0) == 0x0030)
511 alc_update_coef_idx(codec
, 0x7, 1<<5, 0);
515 alc_update_coef_idx(codec
, 0x7, 1<<5, 0);
522 alc_update_coef_idx(codec
, 0x7, 1<<1, 0);
527 /* additional initialization for ALC888 variants */
528 static void alc888_coef_init(struct hda_codec
*codec
)
530 switch (alc_get_coef0(codec
) & 0x00f0) {
535 alc_update_coef_idx(codec
, 7, 0, 0x2030); /* Turn EAPD to High */
540 /* turn on/off EAPD control (only if available) */
541 static void set_eapd(struct hda_codec
*codec
, hda_nid_t nid
, int on
)
543 if (get_wcaps_type(get_wcaps(codec
, nid
)) != AC_WID_PIN
)
545 if (snd_hda_query_pin_caps(codec
, nid
) & AC_PINCAP_EAPD
)
546 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
550 /* turn on/off EAPD controls of the codec */
551 static void alc_auto_setup_eapd(struct hda_codec
*codec
, bool on
)
553 /* We currently only handle front, HP */
554 static const hda_nid_t pins
[] = {
555 0x0f, 0x10, 0x14, 0x15, 0x17, 0
558 for (p
= pins
; *p
; p
++)
559 set_eapd(codec
, *p
, on
);
562 static int find_ext_mic_pin(struct hda_codec
*codec
);
564 static void alc_headset_mic_no_shutup(struct hda_codec
*codec
)
566 const struct hda_pincfg
*pin
;
567 int mic_pin
= find_ext_mic_pin(codec
);
570 /* don't shut up pins when unloading the driver; otherwise it breaks
571 * the default pin setup at the next load of the driver
573 if (codec
->bus
->shutdown
)
576 snd_array_for_each(&codec
->init_pins
, i
, pin
) {
577 /* use read here for syncing after issuing each verb */
578 if (pin
->nid
!= mic_pin
)
579 snd_hda_codec_read(codec
, pin
->nid
, 0,
580 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
583 codec
->pins_shutup
= 1;
586 static void alc_shutup_pins(struct hda_codec
*codec
)
588 struct alc_spec
*spec
= codec
->spec
;
590 if (spec
->no_shutup_pins
)
593 switch (codec
->core
.vendor_id
) {
605 alc_headset_mic_no_shutup(codec
);
608 snd_hda_shutup_pins(codec
);
613 /* generic shutup callback;
614 * just turning off EAPD and a little pause for avoiding pop-noise
616 static void alc_eapd_shutup(struct hda_codec
*codec
)
618 struct alc_spec
*spec
= codec
->spec
;
620 alc_auto_setup_eapd(codec
, false);
621 if (!spec
->no_depop_delay
)
623 alc_shutup_pins(codec
);
626 /* generic EAPD initialization */
627 static void alc_auto_init_amp(struct hda_codec
*codec
, int type
)
629 alc_auto_setup_eapd(codec
, true);
630 alc_write_gpio(codec
);
632 case ALC_INIT_DEFAULT
:
633 switch (codec
->core
.vendor_id
) {
635 alc_update_coefex_idx(codec
, 0x1a, 7, 0, 0x2010);
641 alc_update_coef_idx(codec
, 7, 0, 0x2030);
644 alc888_coef_init(codec
);
651 /* get a primary headphone pin if available */
652 static hda_nid_t
alc_get_hp_pin(struct alc_spec
*spec
)
654 if (spec
->gen
.autocfg
.hp_pins
[0])
655 return spec
->gen
.autocfg
.hp_pins
[0];
656 if (spec
->gen
.autocfg
.line_out_type
== AC_JACK_HP_OUT
)
657 return spec
->gen
.autocfg
.line_out_pins
[0];
662 * Realtek SSID verification
665 /* Could be any non-zero and even value. When used as fixup, tells
666 * the driver to ignore any present sku defines.
668 #define ALC_FIXUP_SKU_IGNORE (2)
670 static void alc_fixup_sku_ignore(struct hda_codec
*codec
,
671 const struct hda_fixup
*fix
, int action
)
673 struct alc_spec
*spec
= codec
->spec
;
674 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
675 spec
->cdefine
.fixup
= 1;
676 spec
->cdefine
.sku_cfg
= ALC_FIXUP_SKU_IGNORE
;
680 static void alc_fixup_no_depop_delay(struct hda_codec
*codec
,
681 const struct hda_fixup
*fix
, int action
)
683 struct alc_spec
*spec
= codec
->spec
;
685 if (action
== HDA_FIXUP_ACT_PROBE
) {
686 spec
->no_depop_delay
= 1;
687 codec
->depop_delay
= 0;
691 static int alc_auto_parse_customize_define(struct hda_codec
*codec
)
693 unsigned int ass
, tmp
, i
;
695 struct alc_spec
*spec
= codec
->spec
;
697 spec
->cdefine
.enable_pcbeep
= 1; /* assume always enabled */
699 if (spec
->cdefine
.fixup
) {
700 ass
= spec
->cdefine
.sku_cfg
;
701 if (ass
== ALC_FIXUP_SKU_IGNORE
)
706 if (!codec
->bus
->pci
)
708 ass
= codec
->core
.subsystem_id
& 0xffff;
709 if (ass
!= codec
->bus
->pci
->subsystem_device
&& (ass
& 1))
713 if (codec
->core
.vendor_id
== 0x10ec0260)
715 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
718 codec_info(codec
, "%s: SKU not ready 0x%08x\n",
719 codec
->core
.chip_name
, ass
);
725 for (i
= 1; i
< 16; i
++) {
729 if (((ass
>> 16) & 0xf) != tmp
)
732 spec
->cdefine
.port_connectivity
= ass
>> 30;
733 spec
->cdefine
.enable_pcbeep
= (ass
& 0x100000) >> 20;
734 spec
->cdefine
.check_sum
= (ass
>> 16) & 0xf;
735 spec
->cdefine
.customization
= ass
>> 8;
737 spec
->cdefine
.sku_cfg
= ass
;
738 spec
->cdefine
.external_amp
= (ass
& 0x38) >> 3;
739 spec
->cdefine
.platform_type
= (ass
& 0x4) >> 2;
740 spec
->cdefine
.swap
= (ass
& 0x2) >> 1;
741 spec
->cdefine
.override
= ass
& 0x1;
743 codec_dbg(codec
, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
744 nid
, spec
->cdefine
.sku_cfg
);
745 codec_dbg(codec
, "SKU: port_connectivity=0x%x\n",
746 spec
->cdefine
.port_connectivity
);
747 codec_dbg(codec
, "SKU: enable_pcbeep=0x%x\n", spec
->cdefine
.enable_pcbeep
);
748 codec_dbg(codec
, "SKU: check_sum=0x%08x\n", spec
->cdefine
.check_sum
);
749 codec_dbg(codec
, "SKU: customization=0x%08x\n", spec
->cdefine
.customization
);
750 codec_dbg(codec
, "SKU: external_amp=0x%x\n", spec
->cdefine
.external_amp
);
751 codec_dbg(codec
, "SKU: platform_type=0x%x\n", spec
->cdefine
.platform_type
);
752 codec_dbg(codec
, "SKU: swap=0x%x\n", spec
->cdefine
.swap
);
753 codec_dbg(codec
, "SKU: override=0x%x\n", spec
->cdefine
.override
);
758 /* return the position of NID in the list, or -1 if not found */
759 static int find_idx_in_nid_list(hda_nid_t nid
, const hda_nid_t
*list
, int nums
)
762 for (i
= 0; i
< nums
; i
++)
767 /* return true if the given NID is found in the list */
768 static bool found_in_nid_list(hda_nid_t nid
, const hda_nid_t
*list
, int nums
)
770 return find_idx_in_nid_list(nid
, list
, nums
) >= 0;
773 /* check subsystem ID and set up device-specific initialization;
774 * return 1 if initialized, 0 if invalid SSID
776 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
777 * 31 ~ 16 : Manufacture ID
779 * 7 ~ 0 : Assembly ID
780 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
782 static int alc_subsystem_id(struct hda_codec
*codec
, const hda_nid_t
*ports
)
784 unsigned int ass
, tmp
, i
;
786 struct alc_spec
*spec
= codec
->spec
;
788 if (spec
->cdefine
.fixup
) {
789 ass
= spec
->cdefine
.sku_cfg
;
790 if (ass
== ALC_FIXUP_SKU_IGNORE
)
795 ass
= codec
->core
.subsystem_id
& 0xffff;
796 if (codec
->bus
->pci
&&
797 ass
!= codec
->bus
->pci
->subsystem_device
&& (ass
& 1))
800 /* invalid SSID, check the special NID pin defcfg instead */
802 * 31~30 : port connectivity
805 * 19~16 : Check sum (15:1)
810 if (codec
->core
.vendor_id
== 0x10ec0260)
812 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
814 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
818 if ((ass
>> 30) != 1) /* no physical connection */
823 for (i
= 1; i
< 16; i
++) {
827 if (((ass
>> 16) & 0xf) != tmp
)
830 codec_dbg(codec
, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
831 ass
& 0xffff, codec
->core
.vendor_id
);
835 * 2 : 0 --> Desktop, 1 --> Laptop
836 * 3~5 : External Amplifier control
839 tmp
= (ass
& 0x38) >> 3; /* external Amp control */
840 if (spec
->init_amp
== ALC_INIT_UNDEFINED
) {
843 alc_setup_gpio(codec
, 0x01);
846 alc_setup_gpio(codec
, 0x02);
849 alc_setup_gpio(codec
, 0x04);
853 spec
->init_amp
= ALC_INIT_DEFAULT
;
858 /* is laptop or Desktop and enable the function "Mute internal speaker
859 * when the external headphone out jack is plugged"
864 * 10~8 : Jack location
865 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
867 * 15 : 1 --> enable the function "Mute internal speaker
868 * when the external headphone out jack is plugged"
870 if (!alc_get_hp_pin(spec
)) {
872 tmp
= (ass
>> 11) & 0x3; /* HP to chassis */
874 if (found_in_nid_list(nid
, spec
->gen
.autocfg
.line_out_pins
,
875 spec
->gen
.autocfg
.line_outs
))
877 spec
->gen
.autocfg
.hp_pins
[0] = nid
;
882 /* Check the validity of ALC subsystem-id
883 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
884 static void alc_ssid_check(struct hda_codec
*codec
, const hda_nid_t
*ports
)
886 if (!alc_subsystem_id(codec
, ports
)) {
887 struct alc_spec
*spec
= codec
->spec
;
888 if (spec
->init_amp
== ALC_INIT_UNDEFINED
) {
890 "realtek: Enable default setup for auto mode as fallback\n");
891 spec
->init_amp
= ALC_INIT_DEFAULT
;
896 /* inverted digital-mic */
897 static void alc_fixup_inv_dmic(struct hda_codec
*codec
,
898 const struct hda_fixup
*fix
, int action
)
900 struct alc_spec
*spec
= codec
->spec
;
902 spec
->gen
.inv_dmic_split
= 1;
906 static int alc_build_controls(struct hda_codec
*codec
)
910 err
= snd_hda_gen_build_controls(codec
);
914 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_BUILD
);
923 static void alc_pre_init(struct hda_codec
*codec
)
925 alc_fill_eapd_coef(codec
);
928 #define is_s3_resume(codec) \
929 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
930 #define is_s4_resume(codec) \
931 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
932 #define is_s4_suspend(codec) \
933 ((codec)->core.dev.power.power_state.event == PM_EVENT_FREEZE)
935 static int alc_init(struct hda_codec
*codec
)
937 struct alc_spec
*spec
= codec
->spec
;
939 /* hibernation resume needs the full chip initialization */
940 if (is_s4_resume(codec
))
944 spec
->init_hook(codec
);
946 spec
->gen
.skip_verbs
= 1; /* applied in below */
947 snd_hda_gen_init(codec
);
949 alc_auto_init_amp(codec
, spec
->init_amp
);
950 snd_hda_apply_verbs(codec
); /* apply verbs here after own init */
952 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_INIT
);
957 /* forward declaration */
958 static const struct component_master_ops comp_master_ops
;
960 static void alc_free(struct hda_codec
*codec
)
962 struct alc_spec
*spec
= codec
->spec
;
965 hda_component_manager_free(&spec
->comps
, &comp_master_ops
);
967 snd_hda_gen_free(codec
);
970 static inline void alc_shutup(struct hda_codec
*codec
)
972 struct alc_spec
*spec
= codec
->spec
;
974 if (!snd_hda_get_bool_hint(codec
, "shutup"))
975 return; /* disabled explicitly by hints */
977 if (spec
&& spec
->shutup
)
980 alc_shutup_pins(codec
);
983 static void alc_power_eapd(struct hda_codec
*codec
)
985 alc_auto_setup_eapd(codec
, false);
988 static int alc_suspend(struct hda_codec
*codec
)
990 struct alc_spec
*spec
= codec
->spec
;
992 if (spec
&& spec
->power_hook
)
993 spec
->power_hook(codec
);
997 static int alc_resume(struct hda_codec
*codec
)
999 struct alc_spec
*spec
= codec
->spec
;
1001 if (!spec
->no_depop_delay
)
1002 msleep(150); /* to avoid pop noise */
1003 codec
->patch_ops
.init(codec
);
1004 snd_hda_regmap_sync(codec
);
1005 hda_call_check_power_status(codec
, 0x01);
1011 static const struct hda_codec_ops alc_patch_ops
= {
1012 .build_controls
= alc_build_controls
,
1013 .build_pcms
= snd_hda_gen_build_pcms
,
1016 .unsol_event
= snd_hda_jack_unsol_event
,
1017 .resume
= alc_resume
,
1018 .suspend
= alc_suspend
,
1019 .check_power_status
= snd_hda_gen_check_power_status
,
1023 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
1026 * Rename codecs appropriately from COEF value or subvendor id
1028 struct alc_codec_rename_table
{
1029 unsigned int vendor_id
;
1030 unsigned short coef_mask
;
1031 unsigned short coef_bits
;
1035 struct alc_codec_rename_pci_table
{
1036 unsigned int codec_vendor_id
;
1037 unsigned short pci_subvendor
;
1038 unsigned short pci_subdevice
;
1042 static const struct alc_codec_rename_table rename_tbl
[] = {
1043 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
1044 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
1045 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
1046 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
1047 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
1048 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
1049 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
1050 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
1051 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
1052 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
1053 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
1054 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
1055 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
1056 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
1057 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
1058 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
1059 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
1060 { } /* terminator */
1063 static const struct alc_codec_rename_pci_table rename_pci_tbl
[] = {
1064 { 0x10ec0280, 0x1028, 0, "ALC3220" },
1065 { 0x10ec0282, 0x1028, 0, "ALC3221" },
1066 { 0x10ec0283, 0x1028, 0, "ALC3223" },
1067 { 0x10ec0288, 0x1028, 0, "ALC3263" },
1068 { 0x10ec0292, 0x1028, 0, "ALC3226" },
1069 { 0x10ec0293, 0x1028, 0, "ALC3235" },
1070 { 0x10ec0255, 0x1028, 0, "ALC3234" },
1071 { 0x10ec0668, 0x1028, 0, "ALC3661" },
1072 { 0x10ec0275, 0x1028, 0, "ALC3260" },
1073 { 0x10ec0899, 0x1028, 0, "ALC3861" },
1074 { 0x10ec0298, 0x1028, 0, "ALC3266" },
1075 { 0x10ec0236, 0x1028, 0, "ALC3204" },
1076 { 0x10ec0256, 0x1028, 0, "ALC3246" },
1077 { 0x10ec0225, 0x1028, 0, "ALC3253" },
1078 { 0x10ec0295, 0x1028, 0, "ALC3254" },
1079 { 0x10ec0299, 0x1028, 0, "ALC3271" },
1080 { 0x10ec0670, 0x1025, 0, "ALC669X" },
1081 { 0x10ec0676, 0x1025, 0, "ALC679X" },
1082 { 0x10ec0282, 0x1043, 0, "ALC3229" },
1083 { 0x10ec0233, 0x1043, 0, "ALC3236" },
1084 { 0x10ec0280, 0x103c, 0, "ALC3228" },
1085 { 0x10ec0282, 0x103c, 0, "ALC3227" },
1086 { 0x10ec0286, 0x103c, 0, "ALC3242" },
1087 { 0x10ec0290, 0x103c, 0, "ALC3241" },
1088 { 0x10ec0668, 0x103c, 0, "ALC3662" },
1089 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
1090 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
1091 { } /* terminator */
1094 static int alc_codec_rename_from_preset(struct hda_codec
*codec
)
1096 const struct alc_codec_rename_table
*p
;
1097 const struct alc_codec_rename_pci_table
*q
;
1099 for (p
= rename_tbl
; p
->vendor_id
; p
++) {
1100 if (p
->vendor_id
!= codec
->core
.vendor_id
)
1102 if ((alc_get_coef0(codec
) & p
->coef_mask
) == p
->coef_bits
)
1103 return alc_codec_rename(codec
, p
->name
);
1106 if (!codec
->bus
->pci
)
1108 for (q
= rename_pci_tbl
; q
->codec_vendor_id
; q
++) {
1109 if (q
->codec_vendor_id
!= codec
->core
.vendor_id
)
1111 if (q
->pci_subvendor
!= codec
->bus
->pci
->subsystem_vendor
)
1113 if (!q
->pci_subdevice
||
1114 q
->pci_subdevice
== codec
->bus
->pci
->subsystem_device
)
1115 return alc_codec_rename(codec
, q
->name
);
1123 * Digital-beep handlers
1125 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1127 /* additional beep mixers; private_value will be overwritten */
1128 static const struct snd_kcontrol_new alc_beep_mixer
[] = {
1129 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT
),
1130 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT
),
1133 /* set up and create beep controls */
1134 static int set_beep_amp(struct alc_spec
*spec
, hda_nid_t nid
,
1137 struct snd_kcontrol_new
*knew
;
1138 unsigned int beep_amp
= HDA_COMPOSE_AMP_VAL(nid
, 3, idx
, dir
);
1141 for (i
= 0; i
< ARRAY_SIZE(alc_beep_mixer
); i
++) {
1142 knew
= snd_hda_gen_add_kctl(&spec
->gen
, NULL
,
1143 &alc_beep_mixer
[i
]);
1146 knew
->private_value
= beep_amp
;
1151 static const struct snd_pci_quirk beep_allow_list
[] = {
1152 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1153 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1154 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
1155 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1156 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1157 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1158 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
1159 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1160 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1161 /* denylist -- no beep available */
1162 SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1163 SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1167 static inline int has_cdefine_beep(struct hda_codec
*codec
)
1169 struct alc_spec
*spec
= codec
->spec
;
1170 const struct snd_pci_quirk
*q
;
1171 q
= snd_pci_quirk_lookup(codec
->bus
->pci
, beep_allow_list
);
1174 return spec
->cdefine
.enable_pcbeep
;
1177 #define set_beep_amp(spec, nid, idx, dir) 0
1178 #define has_cdefine_beep(codec) 0
1181 /* parse the BIOS configuration and set up the alc_spec */
1182 /* return 1 if successful, 0 if the proper config is not found,
1183 * or a negative error code
1185 static int alc_parse_auto_config(struct hda_codec
*codec
,
1186 const hda_nid_t
*ignore_nids
,
1187 const hda_nid_t
*ssid_nids
)
1189 struct alc_spec
*spec
= codec
->spec
;
1190 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
1193 err
= snd_hda_parse_pin_defcfg(codec
, cfg
, ignore_nids
,
1199 alc_ssid_check(codec
, ssid_nids
);
1201 err
= snd_hda_gen_parse_auto_config(codec
, cfg
);
1208 /* common preparation job for alc_spec */
1209 static int alc_alloc_spec(struct hda_codec
*codec
, hda_nid_t mixer_nid
)
1211 struct alc_spec
*spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
1217 snd_hda_gen_spec_init(&spec
->gen
);
1218 spec
->gen
.mixer_nid
= mixer_nid
;
1219 spec
->gen
.own_eapd_ctl
= 1;
1220 codec
->single_adc_amp
= 1;
1221 /* FIXME: do we need this for all Realtek codec models? */
1222 codec
->spdif_status_reset
= 1;
1223 codec
->forced_resume
= 1;
1224 codec
->patch_ops
= alc_patch_ops
;
1225 mutex_init(&spec
->coef_mutex
);
1227 err
= alc_codec_rename_from_preset(codec
);
1235 static int alc880_parse_auto_config(struct hda_codec
*codec
)
1237 static const hda_nid_t alc880_ignore
[] = { 0x1d, 0 };
1238 static const hda_nid_t alc880_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
1239 return alc_parse_auto_config(codec
, alc880_ignore
, alc880_ssids
);
1248 ALC880_FIXUP_MEDION_RIM
,
1250 ALC880_FIXUP_LG_LW25
,
1252 ALC880_FIXUP_EAPD_COEF
,
1253 ALC880_FIXUP_TCL_S700
,
1254 ALC880_FIXUP_VOL_KNOB
,
1255 ALC880_FIXUP_FUJITSU
,
1257 ALC880_FIXUP_UNIWILL
,
1258 ALC880_FIXUP_UNIWILL_DIG
,
1260 ALC880_FIXUP_ASUS_W5A
,
1261 ALC880_FIXUP_3ST_BASE
,
1263 ALC880_FIXUP_3ST_DIG
,
1264 ALC880_FIXUP_5ST_BASE
,
1266 ALC880_FIXUP_5ST_DIG
,
1267 ALC880_FIXUP_6ST_BASE
,
1269 ALC880_FIXUP_6ST_DIG
,
1270 ALC880_FIXUP_6ST_AUTOMUTE
,
1273 /* enable the volume-knob widget support on NID 0x21 */
1274 static void alc880_fixup_vol_knob(struct hda_codec
*codec
,
1275 const struct hda_fixup
*fix
, int action
)
1277 if (action
== HDA_FIXUP_ACT_PROBE
)
1278 snd_hda_jack_detect_enable_callback(codec
, 0x21,
1279 alc_update_knob_master
);
1282 static const struct hda_fixup alc880_fixups
[] = {
1283 [ALC880_FIXUP_GPIO1
] = {
1284 .type
= HDA_FIXUP_FUNC
,
1285 .v
.func
= alc_fixup_gpio1
,
1287 [ALC880_FIXUP_GPIO2
] = {
1288 .type
= HDA_FIXUP_FUNC
,
1289 .v
.func
= alc_fixup_gpio2
,
1291 [ALC880_FIXUP_MEDION_RIM
] = {
1292 .type
= HDA_FIXUP_VERBS
,
1293 .v
.verbs
= (const struct hda_verb
[]) {
1294 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1295 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
1299 .chain_id
= ALC880_FIXUP_GPIO2
,
1301 [ALC880_FIXUP_LG
] = {
1302 .type
= HDA_FIXUP_PINS
,
1303 .v
.pins
= (const struct hda_pintbl
[]) {
1304 /* disable bogus unused pins */
1305 { 0x16, 0x411111f0 },
1306 { 0x18, 0x411111f0 },
1307 { 0x1a, 0x411111f0 },
1311 [ALC880_FIXUP_LG_LW25
] = {
1312 .type
= HDA_FIXUP_PINS
,
1313 .v
.pins
= (const struct hda_pintbl
[]) {
1314 { 0x1a, 0x0181344f }, /* line-in */
1315 { 0x1b, 0x0321403f }, /* headphone */
1319 [ALC880_FIXUP_W810
] = {
1320 .type
= HDA_FIXUP_PINS
,
1321 .v
.pins
= (const struct hda_pintbl
[]) {
1322 /* disable bogus unused pins */
1323 { 0x17, 0x411111f0 },
1327 .chain_id
= ALC880_FIXUP_GPIO2
,
1329 [ALC880_FIXUP_EAPD_COEF
] = {
1330 .type
= HDA_FIXUP_VERBS
,
1331 .v
.verbs
= (const struct hda_verb
[]) {
1332 /* change to EAPD mode */
1333 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1334 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
1338 [ALC880_FIXUP_TCL_S700
] = {
1339 .type
= HDA_FIXUP_VERBS
,
1340 .v
.verbs
= (const struct hda_verb
[]) {
1341 /* change to EAPD mode */
1342 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1343 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
1347 .chain_id
= ALC880_FIXUP_GPIO2
,
1349 [ALC880_FIXUP_VOL_KNOB
] = {
1350 .type
= HDA_FIXUP_FUNC
,
1351 .v
.func
= alc880_fixup_vol_knob
,
1353 [ALC880_FIXUP_FUJITSU
] = {
1354 /* override all pins as BIOS on old Amilo is broken */
1355 .type
= HDA_FIXUP_PINS
,
1356 .v
.pins
= (const struct hda_pintbl
[]) {
1357 { 0x14, 0x0121401f }, /* HP */
1358 { 0x15, 0x99030120 }, /* speaker */
1359 { 0x16, 0x99030130 }, /* bass speaker */
1360 { 0x17, 0x411111f0 }, /* N/A */
1361 { 0x18, 0x411111f0 }, /* N/A */
1362 { 0x19, 0x01a19950 }, /* mic-in */
1363 { 0x1a, 0x411111f0 }, /* N/A */
1364 { 0x1b, 0x411111f0 }, /* N/A */
1365 { 0x1c, 0x411111f0 }, /* N/A */
1366 { 0x1d, 0x411111f0 }, /* N/A */
1367 { 0x1e, 0x01454140 }, /* SPDIF out */
1371 .chain_id
= ALC880_FIXUP_VOL_KNOB
,
1373 [ALC880_FIXUP_F1734
] = {
1374 /* almost compatible with FUJITSU, but no bass and SPDIF */
1375 .type
= HDA_FIXUP_PINS
,
1376 .v
.pins
= (const struct hda_pintbl
[]) {
1377 { 0x14, 0x0121401f }, /* HP */
1378 { 0x15, 0x99030120 }, /* speaker */
1379 { 0x16, 0x411111f0 }, /* N/A */
1380 { 0x17, 0x411111f0 }, /* N/A */
1381 { 0x18, 0x411111f0 }, /* N/A */
1382 { 0x19, 0x01a19950 }, /* mic-in */
1383 { 0x1a, 0x411111f0 }, /* N/A */
1384 { 0x1b, 0x411111f0 }, /* N/A */
1385 { 0x1c, 0x411111f0 }, /* N/A */
1386 { 0x1d, 0x411111f0 }, /* N/A */
1387 { 0x1e, 0x411111f0 }, /* N/A */
1391 .chain_id
= ALC880_FIXUP_VOL_KNOB
,
1393 [ALC880_FIXUP_UNIWILL
] = {
1394 /* need to fix HP and speaker pins to be parsed correctly */
1395 .type
= HDA_FIXUP_PINS
,
1396 .v
.pins
= (const struct hda_pintbl
[]) {
1397 { 0x14, 0x0121411f }, /* HP */
1398 { 0x15, 0x99030120 }, /* speaker */
1399 { 0x16, 0x99030130 }, /* bass speaker */
1403 [ALC880_FIXUP_UNIWILL_DIG
] = {
1404 .type
= HDA_FIXUP_PINS
,
1405 .v
.pins
= (const struct hda_pintbl
[]) {
1406 /* disable bogus unused pins */
1407 { 0x17, 0x411111f0 },
1408 { 0x19, 0x411111f0 },
1409 { 0x1b, 0x411111f0 },
1410 { 0x1f, 0x411111f0 },
1414 [ALC880_FIXUP_Z71V
] = {
1415 .type
= HDA_FIXUP_PINS
,
1416 .v
.pins
= (const struct hda_pintbl
[]) {
1417 /* set up the whole pins as BIOS is utterly broken */
1418 { 0x14, 0x99030120 }, /* speaker */
1419 { 0x15, 0x0121411f }, /* HP */
1420 { 0x16, 0x411111f0 }, /* N/A */
1421 { 0x17, 0x411111f0 }, /* N/A */
1422 { 0x18, 0x01a19950 }, /* mic-in */
1423 { 0x19, 0x411111f0 }, /* N/A */
1424 { 0x1a, 0x01813031 }, /* line-in */
1425 { 0x1b, 0x411111f0 }, /* N/A */
1426 { 0x1c, 0x411111f0 }, /* N/A */
1427 { 0x1d, 0x411111f0 }, /* N/A */
1428 { 0x1e, 0x0144111e }, /* SPDIF */
1432 [ALC880_FIXUP_ASUS_W5A
] = {
1433 .type
= HDA_FIXUP_PINS
,
1434 .v
.pins
= (const struct hda_pintbl
[]) {
1435 /* set up the whole pins as BIOS is utterly broken */
1436 { 0x14, 0x0121411f }, /* HP */
1437 { 0x15, 0x411111f0 }, /* N/A */
1438 { 0x16, 0x411111f0 }, /* N/A */
1439 { 0x17, 0x411111f0 }, /* N/A */
1440 { 0x18, 0x90a60160 }, /* mic */
1441 { 0x19, 0x411111f0 }, /* N/A */
1442 { 0x1a, 0x411111f0 }, /* N/A */
1443 { 0x1b, 0x411111f0 }, /* N/A */
1444 { 0x1c, 0x411111f0 }, /* N/A */
1445 { 0x1d, 0x411111f0 }, /* N/A */
1446 { 0x1e, 0xb743111e }, /* SPDIF out */
1450 .chain_id
= ALC880_FIXUP_GPIO1
,
1452 [ALC880_FIXUP_3ST_BASE
] = {
1453 .type
= HDA_FIXUP_PINS
,
1454 .v
.pins
= (const struct hda_pintbl
[]) {
1455 { 0x14, 0x01014010 }, /* line-out */
1456 { 0x15, 0x411111f0 }, /* N/A */
1457 { 0x16, 0x411111f0 }, /* N/A */
1458 { 0x17, 0x411111f0 }, /* N/A */
1459 { 0x18, 0x01a19c30 }, /* mic-in */
1460 { 0x19, 0x0121411f }, /* HP */
1461 { 0x1a, 0x01813031 }, /* line-in */
1462 { 0x1b, 0x02a19c40 }, /* front-mic */
1463 { 0x1c, 0x411111f0 }, /* N/A */
1464 { 0x1d, 0x411111f0 }, /* N/A */
1465 /* 0x1e is filled in below */
1466 { 0x1f, 0x411111f0 }, /* N/A */
1470 [ALC880_FIXUP_3ST
] = {
1471 .type
= HDA_FIXUP_PINS
,
1472 .v
.pins
= (const struct hda_pintbl
[]) {
1473 { 0x1e, 0x411111f0 }, /* N/A */
1477 .chain_id
= ALC880_FIXUP_3ST_BASE
,
1479 [ALC880_FIXUP_3ST_DIG
] = {
1480 .type
= HDA_FIXUP_PINS
,
1481 .v
.pins
= (const struct hda_pintbl
[]) {
1482 { 0x1e, 0x0144111e }, /* SPDIF */
1486 .chain_id
= ALC880_FIXUP_3ST_BASE
,
1488 [ALC880_FIXUP_5ST_BASE
] = {
1489 .type
= HDA_FIXUP_PINS
,
1490 .v
.pins
= (const struct hda_pintbl
[]) {
1491 { 0x14, 0x01014010 }, /* front */
1492 { 0x15, 0x411111f0 }, /* N/A */
1493 { 0x16, 0x01011411 }, /* CLFE */
1494 { 0x17, 0x01016412 }, /* surr */
1495 { 0x18, 0x01a19c30 }, /* mic-in */
1496 { 0x19, 0x0121411f }, /* HP */
1497 { 0x1a, 0x01813031 }, /* line-in */
1498 { 0x1b, 0x02a19c40 }, /* front-mic */
1499 { 0x1c, 0x411111f0 }, /* N/A */
1500 { 0x1d, 0x411111f0 }, /* N/A */
1501 /* 0x1e is filled in below */
1502 { 0x1f, 0x411111f0 }, /* N/A */
1506 [ALC880_FIXUP_5ST
] = {
1507 .type
= HDA_FIXUP_PINS
,
1508 .v
.pins
= (const struct hda_pintbl
[]) {
1509 { 0x1e, 0x411111f0 }, /* N/A */
1513 .chain_id
= ALC880_FIXUP_5ST_BASE
,
1515 [ALC880_FIXUP_5ST_DIG
] = {
1516 .type
= HDA_FIXUP_PINS
,
1517 .v
.pins
= (const struct hda_pintbl
[]) {
1518 { 0x1e, 0x0144111e }, /* SPDIF */
1522 .chain_id
= ALC880_FIXUP_5ST_BASE
,
1524 [ALC880_FIXUP_6ST_BASE
] = {
1525 .type
= HDA_FIXUP_PINS
,
1526 .v
.pins
= (const struct hda_pintbl
[]) {
1527 { 0x14, 0x01014010 }, /* front */
1528 { 0x15, 0x01016412 }, /* surr */
1529 { 0x16, 0x01011411 }, /* CLFE */
1530 { 0x17, 0x01012414 }, /* side */
1531 { 0x18, 0x01a19c30 }, /* mic-in */
1532 { 0x19, 0x02a19c40 }, /* front-mic */
1533 { 0x1a, 0x01813031 }, /* line-in */
1534 { 0x1b, 0x0121411f }, /* HP */
1535 { 0x1c, 0x411111f0 }, /* N/A */
1536 { 0x1d, 0x411111f0 }, /* N/A */
1537 /* 0x1e is filled in below */
1538 { 0x1f, 0x411111f0 }, /* N/A */
1542 [ALC880_FIXUP_6ST
] = {
1543 .type
= HDA_FIXUP_PINS
,
1544 .v
.pins
= (const struct hda_pintbl
[]) {
1545 { 0x1e, 0x411111f0 }, /* N/A */
1549 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1551 [ALC880_FIXUP_6ST_DIG
] = {
1552 .type
= HDA_FIXUP_PINS
,
1553 .v
.pins
= (const struct hda_pintbl
[]) {
1554 { 0x1e, 0x0144111e }, /* SPDIF */
1558 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1560 [ALC880_FIXUP_6ST_AUTOMUTE
] = {
1561 .type
= HDA_FIXUP_PINS
,
1562 .v
.pins
= (const struct hda_pintbl
[]) {
1563 { 0x1b, 0x0121401f }, /* HP with jack detect */
1566 .chained_before
= true,
1567 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1571 static const struct hda_quirk alc880_fixup_tbl
[] = {
1572 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810
),
1573 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A
),
1574 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V
),
1575 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1
),
1576 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE
),
1577 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2
),
1578 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF
),
1579 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG
),
1580 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734
),
1581 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL
),
1582 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB
),
1583 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810
),
1584 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM
),
1585 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE
),
1586 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU
),
1587 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU
),
1588 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734
),
1589 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU
),
1590 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG
),
1591 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG
),
1592 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG
),
1593 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25
),
1594 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700
),
1596 /* Below is the copied entries from alc880_quirks.c.
1597 * It's not quite sure whether BIOS sets the correct pin-config table
1598 * on these machines, thus they are kept to be compatible with
1599 * the old static quirks. Once when it's confirmed to work without
1600 * these overrides, it'd be better to remove.
1602 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG
),
1603 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST
),
1604 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG
),
1605 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG
),
1606 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG
),
1607 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG
),
1608 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG
),
1609 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST
),
1610 SND_PCI_QUIRK(0x1039, 0x1234, NULL
, ALC880_FIXUP_6ST_DIG
),
1611 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST
),
1612 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST
),
1613 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST
),
1614 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST
),
1615 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST
),
1616 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG
),
1617 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG
),
1618 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG
),
1619 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG
),
1620 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG
),
1621 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG
),
1622 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG
),
1623 SND_PCI_QUIRK(0x2668, 0x8086, NULL
, ALC880_FIXUP_6ST_DIG
), /* broken BIOS */
1624 SND_PCI_QUIRK(0x8086, 0x2668, NULL
, ALC880_FIXUP_6ST_DIG
),
1625 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1626 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1627 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1628 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1629 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1630 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1631 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1632 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1633 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1634 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1636 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST
),
1637 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG
),
1638 SND_PCI_QUIRK(0xe803, 0x1019, NULL
, ALC880_FIXUP_6ST_DIG
),
1642 static const struct hda_model_fixup alc880_fixup_models
[] = {
1643 {.id
= ALC880_FIXUP_3ST
, .name
= "3stack"},
1644 {.id
= ALC880_FIXUP_3ST_DIG
, .name
= "3stack-digout"},
1645 {.id
= ALC880_FIXUP_5ST
, .name
= "5stack"},
1646 {.id
= ALC880_FIXUP_5ST_DIG
, .name
= "5stack-digout"},
1647 {.id
= ALC880_FIXUP_6ST
, .name
= "6stack"},
1648 {.id
= ALC880_FIXUP_6ST_DIG
, .name
= "6stack-digout"},
1649 {.id
= ALC880_FIXUP_6ST_AUTOMUTE
, .name
= "6stack-automute"},
1655 * OK, here we have finally the patch for ALC880
1657 static int patch_alc880(struct hda_codec
*codec
)
1659 struct alc_spec
*spec
;
1662 err
= alc_alloc_spec(codec
, 0x0b);
1667 spec
->gen
.need_dac_fix
= 1;
1668 spec
->gen
.beep_nid
= 0x01;
1670 codec
->patch_ops
.unsol_event
= alc880_unsol_event
;
1672 alc_pre_init(codec
);
1674 snd_hda_pick_fixup(codec
, alc880_fixup_models
, alc880_fixup_tbl
,
1676 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
1678 /* automatic parse from the BIOS config */
1679 err
= alc880_parse_auto_config(codec
);
1683 if (!spec
->gen
.no_analog
) {
1684 err
= set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
1689 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
1702 static int alc260_parse_auto_config(struct hda_codec
*codec
)
1704 static const hda_nid_t alc260_ignore
[] = { 0x17, 0 };
1705 static const hda_nid_t alc260_ssids
[] = { 0x10, 0x15, 0x0f, 0 };
1706 return alc_parse_auto_config(codec
, alc260_ignore
, alc260_ssids
);
1713 ALC260_FIXUP_HP_DC5750
,
1714 ALC260_FIXUP_HP_PIN_0F
,
1717 ALC260_FIXUP_GPIO1_TOGGLE
,
1718 ALC260_FIXUP_REPLACER
,
1719 ALC260_FIXUP_HP_B1900
,
1721 ALC260_FIXUP_FSC_S7020
,
1722 ALC260_FIXUP_FSC_S7020_JWSE
,
1723 ALC260_FIXUP_VAIO_PINS
,
1726 static void alc260_gpio1_automute(struct hda_codec
*codec
)
1728 struct alc_spec
*spec
= codec
->spec
;
1730 alc_update_gpio_data(codec
, 0x01, spec
->gen
.hp_jack_present
);
1733 static void alc260_fixup_gpio1_toggle(struct hda_codec
*codec
,
1734 const struct hda_fixup
*fix
, int action
)
1736 struct alc_spec
*spec
= codec
->spec
;
1737 if (action
== HDA_FIXUP_ACT_PROBE
) {
1738 /* although the machine has only one output pin, we need to
1739 * toggle GPIO1 according to the jack state
1741 spec
->gen
.automute_hook
= alc260_gpio1_automute
;
1742 spec
->gen
.detect_hp
= 1;
1743 spec
->gen
.automute_speaker
= 1;
1744 spec
->gen
.autocfg
.hp_pins
[0] = 0x0f; /* copy it for automute */
1745 snd_hda_jack_detect_enable_callback(codec
, 0x0f,
1746 snd_hda_gen_hp_automute
);
1747 alc_setup_gpio(codec
, 0x01);
1751 static void alc260_fixup_kn1(struct hda_codec
*codec
,
1752 const struct hda_fixup
*fix
, int action
)
1754 struct alc_spec
*spec
= codec
->spec
;
1755 static const struct hda_pintbl pincfgs
[] = {
1756 { 0x0f, 0x02214000 }, /* HP/speaker */
1757 { 0x12, 0x90a60160 }, /* int mic */
1758 { 0x13, 0x02a19000 }, /* ext mic */
1759 { 0x18, 0x01446000 }, /* SPDIF out */
1760 /* disable bogus I/O pins */
1761 { 0x10, 0x411111f0 },
1762 { 0x11, 0x411111f0 },
1763 { 0x14, 0x411111f0 },
1764 { 0x15, 0x411111f0 },
1765 { 0x16, 0x411111f0 },
1766 { 0x17, 0x411111f0 },
1767 { 0x19, 0x411111f0 },
1772 case HDA_FIXUP_ACT_PRE_PROBE
:
1773 snd_hda_apply_pincfgs(codec
, pincfgs
);
1774 spec
->init_amp
= ALC_INIT_NONE
;
1779 static void alc260_fixup_fsc_s7020(struct hda_codec
*codec
,
1780 const struct hda_fixup
*fix
, int action
)
1782 struct alc_spec
*spec
= codec
->spec
;
1783 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
1784 spec
->init_amp
= ALC_INIT_NONE
;
1787 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec
*codec
,
1788 const struct hda_fixup
*fix
, int action
)
1790 struct alc_spec
*spec
= codec
->spec
;
1791 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
1792 spec
->gen
.add_jack_modes
= 1;
1793 spec
->gen
.hp_mic
= 1;
1797 static const struct hda_fixup alc260_fixups
[] = {
1798 [ALC260_FIXUP_HP_DC5750
] = {
1799 .type
= HDA_FIXUP_PINS
,
1800 .v
.pins
= (const struct hda_pintbl
[]) {
1801 { 0x11, 0x90130110 }, /* speaker */
1805 [ALC260_FIXUP_HP_PIN_0F
] = {
1806 .type
= HDA_FIXUP_PINS
,
1807 .v
.pins
= (const struct hda_pintbl
[]) {
1808 { 0x0f, 0x01214000 }, /* HP */
1812 [ALC260_FIXUP_COEF
] = {
1813 .type
= HDA_FIXUP_VERBS
,
1814 .v
.verbs
= (const struct hda_verb
[]) {
1815 { 0x1a, AC_VERB_SET_COEF_INDEX
, 0x07 },
1816 { 0x1a, AC_VERB_SET_PROC_COEF
, 0x3040 },
1820 [ALC260_FIXUP_GPIO1
] = {
1821 .type
= HDA_FIXUP_FUNC
,
1822 .v
.func
= alc_fixup_gpio1
,
1824 [ALC260_FIXUP_GPIO1_TOGGLE
] = {
1825 .type
= HDA_FIXUP_FUNC
,
1826 .v
.func
= alc260_fixup_gpio1_toggle
,
1828 .chain_id
= ALC260_FIXUP_HP_PIN_0F
,
1830 [ALC260_FIXUP_REPLACER
] = {
1831 .type
= HDA_FIXUP_VERBS
,
1832 .v
.verbs
= (const struct hda_verb
[]) {
1833 { 0x1a, AC_VERB_SET_COEF_INDEX
, 0x07 },
1834 { 0x1a, AC_VERB_SET_PROC_COEF
, 0x3050 },
1838 .chain_id
= ALC260_FIXUP_GPIO1_TOGGLE
,
1840 [ALC260_FIXUP_HP_B1900
] = {
1841 .type
= HDA_FIXUP_FUNC
,
1842 .v
.func
= alc260_fixup_gpio1_toggle
,
1844 .chain_id
= ALC260_FIXUP_COEF
,
1846 [ALC260_FIXUP_KN1
] = {
1847 .type
= HDA_FIXUP_FUNC
,
1848 .v
.func
= alc260_fixup_kn1
,
1850 [ALC260_FIXUP_FSC_S7020
] = {
1851 .type
= HDA_FIXUP_FUNC
,
1852 .v
.func
= alc260_fixup_fsc_s7020
,
1854 [ALC260_FIXUP_FSC_S7020_JWSE
] = {
1855 .type
= HDA_FIXUP_FUNC
,
1856 .v
.func
= alc260_fixup_fsc_s7020_jwse
,
1858 .chain_id
= ALC260_FIXUP_FSC_S7020
,
1860 [ALC260_FIXUP_VAIO_PINS
] = {
1861 .type
= HDA_FIXUP_PINS
,
1862 .v
.pins
= (const struct hda_pintbl
[]) {
1863 /* Pin configs are missing completely on some VAIOs */
1864 { 0x0f, 0x01211020 },
1865 { 0x10, 0x0001003f },
1866 { 0x11, 0x411111f0 },
1867 { 0x12, 0x01a15930 },
1868 { 0x13, 0x411111f0 },
1869 { 0x14, 0x411111f0 },
1870 { 0x15, 0x411111f0 },
1871 { 0x16, 0x411111f0 },
1872 { 0x17, 0x411111f0 },
1873 { 0x18, 0x411111f0 },
1874 { 0x19, 0x411111f0 },
1880 static const struct hda_quirk alc260_fixup_tbl
[] = {
1881 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1
),
1882 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF
),
1883 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1
),
1884 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750
),
1885 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900
),
1886 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS
),
1887 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F
),
1888 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020
),
1889 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1
),
1890 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1
),
1891 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER
),
1892 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF
),
1896 static const struct hda_model_fixup alc260_fixup_models
[] = {
1897 {.id
= ALC260_FIXUP_GPIO1
, .name
= "gpio1"},
1898 {.id
= ALC260_FIXUP_COEF
, .name
= "coef"},
1899 {.id
= ALC260_FIXUP_FSC_S7020
, .name
= "fujitsu"},
1900 {.id
= ALC260_FIXUP_FSC_S7020_JWSE
, .name
= "fujitsu-jwse"},
1906 static int patch_alc260(struct hda_codec
*codec
)
1908 struct alc_spec
*spec
;
1911 err
= alc_alloc_spec(codec
, 0x07);
1916 /* as quite a few machines require HP amp for speaker outputs,
1917 * it's easier to enable it unconditionally; even if it's unneeded,
1918 * it's almost harmless.
1920 spec
->gen
.prefer_hp_amp
= 1;
1921 spec
->gen
.beep_nid
= 0x01;
1923 spec
->shutup
= alc_eapd_shutup
;
1925 alc_pre_init(codec
);
1927 snd_hda_pick_fixup(codec
, alc260_fixup_models
, alc260_fixup_tbl
,
1929 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
1931 /* automatic parse from the BIOS config */
1932 err
= alc260_parse_auto_config(codec
);
1936 if (!spec
->gen
.no_analog
) {
1937 err
= set_beep_amp(spec
, 0x07, 0x05, HDA_INPUT
);
1942 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
1953 * ALC882/883/885/888/889 support
1955 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1956 * configuration. Each pin widget can choose any input DACs and a mixer.
1957 * Each ADC is connected from a mixer of all inputs. This makes possible
1958 * 6-channel independent captures.
1960 * In addition, an independent DAC for the multi-playback (not used in this
1968 ALC882_FIXUP_ABIT_AW9D_MAX
,
1969 ALC882_FIXUP_LENOVO_Y530
,
1970 ALC882_FIXUP_PB_M5210
,
1971 ALC882_FIXUP_ACER_ASPIRE_7736
,
1972 ALC882_FIXUP_ASUS_W90V
,
1974 ALC889_FIXUP_FRONT_HP_NO_PRESENCE
,
1975 ALC889_FIXUP_VAIO_TT
,
1976 ALC888_FIXUP_EEE1601
,
1980 ALC883_FIXUP_ACER_EAPD
,
1985 ALC882_FIXUP_ASUS_W2JC
,
1986 ALC882_FIXUP_ACER_ASPIRE_4930G
,
1987 ALC882_FIXUP_ACER_ASPIRE_8930G
,
1988 ALC882_FIXUP_ASPIRE_8930G_VERBS
,
1989 ALC885_FIXUP_MACPRO_GPIO
,
1990 ALC889_FIXUP_DAC_ROUTE
,
1991 ALC889_FIXUP_MBP_VREF
,
1992 ALC889_FIXUP_IMAC91_VREF
,
1993 ALC889_FIXUP_MBA11_VREF
,
1994 ALC889_FIXUP_MBA21_VREF
,
1995 ALC889_FIXUP_MP11_VREF
,
1996 ALC889_FIXUP_MP41_VREF
,
1997 ALC882_FIXUP_INV_DMIC
,
1998 ALC882_FIXUP_NO_PRIMARY_HP
,
1999 ALC887_FIXUP_ASUS_BASS
,
2000 ALC887_FIXUP_BASS_CHMAP
,
2001 ALC1220_FIXUP_GB_DUAL_CODECS
,
2002 ALC1220_FIXUP_GB_X570
,
2003 ALC1220_FIXUP_CLEVO_P950
,
2004 ALC1220_FIXUP_CLEVO_PB51ED
,
2005 ALC1220_FIXUP_CLEVO_PB51ED_PINS
,
2006 ALC887_FIXUP_ASUS_AUDIO
,
2007 ALC887_FIXUP_ASUS_HMIC
,
2008 ALCS1200A_FIXUP_MIC_VREF
,
2009 ALC888VD_FIXUP_MIC_100VREF
,
2012 static void alc889_fixup_coef(struct hda_codec
*codec
,
2013 const struct hda_fixup
*fix
, int action
)
2015 if (action
!= HDA_FIXUP_ACT_INIT
)
2017 alc_update_coef_idx(codec
, 7, 0, 0x2030);
2020 /* set up GPIO at initialization */
2021 static void alc885_fixup_macpro_gpio(struct hda_codec
*codec
,
2022 const struct hda_fixup
*fix
, int action
)
2024 struct alc_spec
*spec
= codec
->spec
;
2026 spec
->gpio_write_delay
= true;
2027 alc_fixup_gpio3(codec
, fix
, action
);
2030 /* Fix the connection of some pins for ALC889:
2031 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
2032 * work correctly (bko#42740)
2034 static void alc889_fixup_dac_route(struct hda_codec
*codec
,
2035 const struct hda_fixup
*fix
, int action
)
2037 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
2038 /* fake the connections during parsing the tree */
2039 static const hda_nid_t conn1
[] = { 0x0c, 0x0d };
2040 static const hda_nid_t conn2
[] = { 0x0e, 0x0f };
2041 snd_hda_override_conn_list(codec
, 0x14, ARRAY_SIZE(conn1
), conn1
);
2042 snd_hda_override_conn_list(codec
, 0x15, ARRAY_SIZE(conn1
), conn1
);
2043 snd_hda_override_conn_list(codec
, 0x18, ARRAY_SIZE(conn2
), conn2
);
2044 snd_hda_override_conn_list(codec
, 0x1a, ARRAY_SIZE(conn2
), conn2
);
2045 } else if (action
== HDA_FIXUP_ACT_PROBE
) {
2046 /* restore the connections */
2047 static const hda_nid_t conn
[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
2048 snd_hda_override_conn_list(codec
, 0x14, ARRAY_SIZE(conn
), conn
);
2049 snd_hda_override_conn_list(codec
, 0x15, ARRAY_SIZE(conn
), conn
);
2050 snd_hda_override_conn_list(codec
, 0x18, ARRAY_SIZE(conn
), conn
);
2051 snd_hda_override_conn_list(codec
, 0x1a, ARRAY_SIZE(conn
), conn
);
2055 /* Set VREF on HP pin */
2056 static void alc889_fixup_mbp_vref(struct hda_codec
*codec
,
2057 const struct hda_fixup
*fix
, int action
)
2059 static const hda_nid_t nids
[] = { 0x14, 0x15, 0x19 };
2060 struct alc_spec
*spec
= codec
->spec
;
2063 if (action
!= HDA_FIXUP_ACT_INIT
)
2065 for (i
= 0; i
< ARRAY_SIZE(nids
); i
++) {
2066 unsigned int val
= snd_hda_codec_get_pincfg(codec
, nids
[i
]);
2067 if (get_defcfg_device(val
) != AC_JACK_HP_OUT
)
2069 val
= snd_hda_codec_get_pin_target(codec
, nids
[i
]);
2070 val
|= AC_PINCTL_VREF_80
;
2071 snd_hda_set_pin_ctl(codec
, nids
[i
], val
);
2072 spec
->gen
.keep_vref_in_automute
= 1;
2077 static void alc889_fixup_mac_pins(struct hda_codec
*codec
,
2078 const hda_nid_t
*nids
, int num_nids
)
2080 struct alc_spec
*spec
= codec
->spec
;
2083 for (i
= 0; i
< num_nids
; i
++) {
2085 val
= snd_hda_codec_get_pin_target(codec
, nids
[i
]);
2086 val
|= AC_PINCTL_VREF_50
;
2087 snd_hda_set_pin_ctl(codec
, nids
[i
], val
);
2089 spec
->gen
.keep_vref_in_automute
= 1;
2092 /* Set VREF on speaker pins on imac91 */
2093 static void alc889_fixup_imac91_vref(struct hda_codec
*codec
,
2094 const struct hda_fixup
*fix
, int action
)
2096 static const hda_nid_t nids
[] = { 0x18, 0x1a };
2098 if (action
== HDA_FIXUP_ACT_INIT
)
2099 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
2102 /* Set VREF on speaker pins on mba11 */
2103 static void alc889_fixup_mba11_vref(struct hda_codec
*codec
,
2104 const struct hda_fixup
*fix
, int action
)
2106 static const hda_nid_t nids
[] = { 0x18 };
2108 if (action
== HDA_FIXUP_ACT_INIT
)
2109 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
2112 /* Set VREF on speaker pins on mba21 */
2113 static void alc889_fixup_mba21_vref(struct hda_codec
*codec
,
2114 const struct hda_fixup
*fix
, int action
)
2116 static const hda_nid_t nids
[] = { 0x18, 0x19 };
2118 if (action
== HDA_FIXUP_ACT_INIT
)
2119 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
2122 /* Don't take HP output as primary
2123 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2124 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
2126 static void alc882_fixup_no_primary_hp(struct hda_codec
*codec
,
2127 const struct hda_fixup
*fix
, int action
)
2129 struct alc_spec
*spec
= codec
->spec
;
2130 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
2131 spec
->gen
.no_primary_hp
= 1;
2132 spec
->gen
.no_multi_io
= 1;
2136 static void alc_fixup_bass_chmap(struct hda_codec
*codec
,
2137 const struct hda_fixup
*fix
, int action
);
2139 /* For dual-codec configuration, we need to disable some features to avoid
2140 * conflicts of kctls and PCM streams
2142 static void alc_fixup_dual_codecs(struct hda_codec
*codec
,
2143 const struct hda_fixup
*fix
, int action
)
2145 struct alc_spec
*spec
= codec
->spec
;
2147 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
2149 /* disable vmaster */
2150 spec
->gen
.suppress_vmaster
= 1;
2151 /* auto-mute and auto-mic switch don't work with multiple codecs */
2152 spec
->gen
.suppress_auto_mute
= 1;
2153 spec
->gen
.suppress_auto_mic
= 1;
2154 /* disable aamix as well */
2155 spec
->gen
.mixer_nid
= 0;
2156 /* add location prefix to avoid conflicts */
2157 codec
->force_pin_prefix
= 1;
2160 static void rename_ctl(struct hda_codec
*codec
, const char *oldname
,
2161 const char *newname
)
2163 struct snd_kcontrol
*kctl
;
2165 kctl
= snd_hda_find_mixer_ctl(codec
, oldname
);
2167 snd_ctl_rename(codec
->card
, kctl
, newname
);
2170 static void alc1220_fixup_gb_dual_codecs(struct hda_codec
*codec
,
2171 const struct hda_fixup
*fix
,
2174 alc_fixup_dual_codecs(codec
, fix
, action
);
2176 case HDA_FIXUP_ACT_PRE_PROBE
:
2177 /* override card longname to provide a unique UCM profile */
2178 strcpy(codec
->card
->longname
, "HDAudio-Gigabyte-ALC1220DualCodecs");
2180 case HDA_FIXUP_ACT_BUILD
:
2181 /* rename Capture controls depending on the codec */
2182 rename_ctl(codec
, "Capture Volume",
2184 "Rear-Panel Capture Volume" :
2185 "Front-Panel Capture Volume");
2186 rename_ctl(codec
, "Capture Switch",
2188 "Rear-Panel Capture Switch" :
2189 "Front-Panel Capture Switch");
2194 static void alc1220_fixup_gb_x570(struct hda_codec
*codec
,
2195 const struct hda_fixup
*fix
,
2198 static const hda_nid_t conn1
[] = { 0x0c };
2199 static const struct coef_fw gb_x570_coefs
[] = {
2200 WRITE_COEF(0x07, 0x03c0),
2201 WRITE_COEF(0x1a, 0x01c1),
2202 WRITE_COEF(0x1b, 0x0202),
2203 WRITE_COEF(0x43, 0x3005),
2208 case HDA_FIXUP_ACT_PRE_PROBE
:
2209 snd_hda_override_conn_list(codec
, 0x14, ARRAY_SIZE(conn1
), conn1
);
2210 snd_hda_override_conn_list(codec
, 0x1b, ARRAY_SIZE(conn1
), conn1
);
2212 case HDA_FIXUP_ACT_INIT
:
2213 alc_process_coef_fw(codec
, gb_x570_coefs
);
2218 static void alc1220_fixup_clevo_p950(struct hda_codec
*codec
,
2219 const struct hda_fixup
*fix
,
2222 static const hda_nid_t conn1
[] = { 0x0c };
2224 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
2227 alc_update_coef_idx(codec
, 0x7, 0, 0x3c3);
2228 /* We therefore want to make sure 0x14 (front headphone) and
2229 * 0x1b (speakers) use the stereo DAC 0x02
2231 snd_hda_override_conn_list(codec
, 0x14, ARRAY_SIZE(conn1
), conn1
);
2232 snd_hda_override_conn_list(codec
, 0x1b, ARRAY_SIZE(conn1
), conn1
);
2235 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec
*codec
,
2236 const struct hda_fixup
*fix
, int action
);
2238 static void alc1220_fixup_clevo_pb51ed(struct hda_codec
*codec
,
2239 const struct hda_fixup
*fix
,
2242 alc1220_fixup_clevo_p950(codec
, fix
, action
);
2243 alc_fixup_headset_mode_no_hp_mic(codec
, fix
, action
);
2246 static void alc887_asus_hp_automute_hook(struct hda_codec
*codec
,
2247 struct hda_jack_callback
*jack
)
2249 struct alc_spec
*spec
= codec
->spec
;
2252 snd_hda_gen_hp_automute(codec
, jack
);
2254 if (spec
->gen
.hp_jack_present
)
2255 vref
= AC_PINCTL_VREF_80
;
2257 vref
= AC_PINCTL_VREF_HIZ
;
2258 snd_hda_set_pin_ctl(codec
, 0x19, PIN_HP
| vref
);
2261 static void alc887_fixup_asus_jack(struct hda_codec
*codec
,
2262 const struct hda_fixup
*fix
, int action
)
2264 struct alc_spec
*spec
= codec
->spec
;
2265 if (action
!= HDA_FIXUP_ACT_PROBE
)
2267 snd_hda_set_pin_ctl_cache(codec
, 0x1b, PIN_HP
);
2268 spec
->gen
.hp_automute_hook
= alc887_asus_hp_automute_hook
;
2271 static const struct hda_fixup alc882_fixups
[] = {
2272 [ALC882_FIXUP_ABIT_AW9D_MAX
] = {
2273 .type
= HDA_FIXUP_PINS
,
2274 .v
.pins
= (const struct hda_pintbl
[]) {
2275 { 0x15, 0x01080104 }, /* side */
2276 { 0x16, 0x01011012 }, /* rear */
2277 { 0x17, 0x01016011 }, /* clfe */
2281 [ALC882_FIXUP_LENOVO_Y530
] = {
2282 .type
= HDA_FIXUP_PINS
,
2283 .v
.pins
= (const struct hda_pintbl
[]) {
2284 { 0x15, 0x99130112 }, /* rear int speakers */
2285 { 0x16, 0x99130111 }, /* subwoofer */
2289 [ALC882_FIXUP_PB_M5210
] = {
2290 .type
= HDA_FIXUP_PINCTLS
,
2291 .v
.pins
= (const struct hda_pintbl
[]) {
2292 { 0x19, PIN_VREF50
},
2296 [ALC882_FIXUP_ACER_ASPIRE_7736
] = {
2297 .type
= HDA_FIXUP_FUNC
,
2298 .v
.func
= alc_fixup_sku_ignore
,
2300 [ALC882_FIXUP_ASUS_W90V
] = {
2301 .type
= HDA_FIXUP_PINS
,
2302 .v
.pins
= (const struct hda_pintbl
[]) {
2303 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2307 [ALC889_FIXUP_CD
] = {
2308 .type
= HDA_FIXUP_PINS
,
2309 .v
.pins
= (const struct hda_pintbl
[]) {
2310 { 0x1c, 0x993301f0 }, /* CD */
2314 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE
] = {
2315 .type
= HDA_FIXUP_PINS
,
2316 .v
.pins
= (const struct hda_pintbl
[]) {
2317 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2321 .chain_id
= ALC889_FIXUP_CD
,
2323 [ALC889_FIXUP_VAIO_TT
] = {
2324 .type
= HDA_FIXUP_PINS
,
2325 .v
.pins
= (const struct hda_pintbl
[]) {
2326 { 0x17, 0x90170111 }, /* hidden surround speaker */
2330 [ALC888_FIXUP_EEE1601
] = {
2331 .type
= HDA_FIXUP_VERBS
,
2332 .v
.verbs
= (const struct hda_verb
[]) {
2333 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0b },
2334 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0838 },
2338 [ALC886_FIXUP_EAPD
] = {
2339 .type
= HDA_FIXUP_VERBS
,
2340 .v
.verbs
= (const struct hda_verb
[]) {
2341 /* change to EAPD mode */
2342 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2343 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0068 },
2347 [ALC882_FIXUP_EAPD
] = {
2348 .type
= HDA_FIXUP_VERBS
,
2349 .v
.verbs
= (const struct hda_verb
[]) {
2350 /* change to EAPD mode */
2351 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2352 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
2356 [ALC883_FIXUP_EAPD
] = {
2357 .type
= HDA_FIXUP_VERBS
,
2358 .v
.verbs
= (const struct hda_verb
[]) {
2359 /* change to EAPD mode */
2360 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2361 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
2365 [ALC883_FIXUP_ACER_EAPD
] = {
2366 .type
= HDA_FIXUP_VERBS
,
2367 .v
.verbs
= (const struct hda_verb
[]) {
2368 /* eanable EAPD on Acer laptops */
2369 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2370 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2374 [ALC882_FIXUP_GPIO1
] = {
2375 .type
= HDA_FIXUP_FUNC
,
2376 .v
.func
= alc_fixup_gpio1
,
2378 [ALC882_FIXUP_GPIO2
] = {
2379 .type
= HDA_FIXUP_FUNC
,
2380 .v
.func
= alc_fixup_gpio2
,
2382 [ALC882_FIXUP_GPIO3
] = {
2383 .type
= HDA_FIXUP_FUNC
,
2384 .v
.func
= alc_fixup_gpio3
,
2386 [ALC882_FIXUP_ASUS_W2JC
] = {
2387 .type
= HDA_FIXUP_FUNC
,
2388 .v
.func
= alc_fixup_gpio1
,
2390 .chain_id
= ALC882_FIXUP_EAPD
,
2392 [ALC889_FIXUP_COEF
] = {
2393 .type
= HDA_FIXUP_FUNC
,
2394 .v
.func
= alc889_fixup_coef
,
2396 [ALC882_FIXUP_ACER_ASPIRE_4930G
] = {
2397 .type
= HDA_FIXUP_PINS
,
2398 .v
.pins
= (const struct hda_pintbl
[]) {
2399 { 0x16, 0x99130111 }, /* CLFE speaker */
2400 { 0x17, 0x99130112 }, /* surround speaker */
2404 .chain_id
= ALC882_FIXUP_GPIO1
,
2406 [ALC882_FIXUP_ACER_ASPIRE_8930G
] = {
2407 .type
= HDA_FIXUP_PINS
,
2408 .v
.pins
= (const struct hda_pintbl
[]) {
2409 { 0x16, 0x99130111 }, /* CLFE speaker */
2410 { 0x1b, 0x99130112 }, /* surround speaker */
2414 .chain_id
= ALC882_FIXUP_ASPIRE_8930G_VERBS
,
2416 [ALC882_FIXUP_ASPIRE_8930G_VERBS
] = {
2417 /* additional init verbs for Acer Aspire 8930G */
2418 .type
= HDA_FIXUP_VERBS
,
2419 .v
.verbs
= (const struct hda_verb
[]) {
2420 /* Enable all DACs */
2421 /* DAC DISABLE/MUTE 1? */
2422 /* setting bits 1-5 disables DAC nids 0x02-0x06
2423 * apparently. Init=0x38 */
2424 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x03 },
2425 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0000 },
2426 /* DAC DISABLE/MUTE 2? */
2427 /* some bit here disables the other DACs.
2429 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x08 },
2430 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0000 },
2432 * This laptop has a stereo digital microphone.
2433 * The mics are only 1cm apart which makes the stereo
2434 * useless. However, either the mic or the ALC889
2435 * makes the signal become a difference/sum signal
2436 * instead of standard stereo, which is annoying.
2437 * So instead we flip this bit which makes the
2438 * codec replicate the sum signal to both channels,
2439 * turning it into a normal mono mic.
2441 /* DMIC_CONTROL? Init value = 0x0001 */
2442 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0b },
2443 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0003 },
2444 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2445 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2449 .chain_id
= ALC882_FIXUP_GPIO1
,
2451 [ALC885_FIXUP_MACPRO_GPIO
] = {
2452 .type
= HDA_FIXUP_FUNC
,
2453 .v
.func
= alc885_fixup_macpro_gpio
,
2455 [ALC889_FIXUP_DAC_ROUTE
] = {
2456 .type
= HDA_FIXUP_FUNC
,
2457 .v
.func
= alc889_fixup_dac_route
,
2459 [ALC889_FIXUP_MBP_VREF
] = {
2460 .type
= HDA_FIXUP_FUNC
,
2461 .v
.func
= alc889_fixup_mbp_vref
,
2463 .chain_id
= ALC882_FIXUP_GPIO1
,
2465 [ALC889_FIXUP_IMAC91_VREF
] = {
2466 .type
= HDA_FIXUP_FUNC
,
2467 .v
.func
= alc889_fixup_imac91_vref
,
2469 .chain_id
= ALC882_FIXUP_GPIO1
,
2471 [ALC889_FIXUP_MBA11_VREF
] = {
2472 .type
= HDA_FIXUP_FUNC
,
2473 .v
.func
= alc889_fixup_mba11_vref
,
2475 .chain_id
= ALC889_FIXUP_MBP_VREF
,
2477 [ALC889_FIXUP_MBA21_VREF
] = {
2478 .type
= HDA_FIXUP_FUNC
,
2479 .v
.func
= alc889_fixup_mba21_vref
,
2481 .chain_id
= ALC889_FIXUP_MBP_VREF
,
2483 [ALC889_FIXUP_MP11_VREF
] = {
2484 .type
= HDA_FIXUP_FUNC
,
2485 .v
.func
= alc889_fixup_mba11_vref
,
2487 .chain_id
= ALC885_FIXUP_MACPRO_GPIO
,
2489 [ALC889_FIXUP_MP41_VREF
] = {
2490 .type
= HDA_FIXUP_FUNC
,
2491 .v
.func
= alc889_fixup_mbp_vref
,
2493 .chain_id
= ALC885_FIXUP_MACPRO_GPIO
,
2495 [ALC882_FIXUP_INV_DMIC
] = {
2496 .type
= HDA_FIXUP_FUNC
,
2497 .v
.func
= alc_fixup_inv_dmic
,
2499 [ALC882_FIXUP_NO_PRIMARY_HP
] = {
2500 .type
= HDA_FIXUP_FUNC
,
2501 .v
.func
= alc882_fixup_no_primary_hp
,
2503 [ALC887_FIXUP_ASUS_BASS
] = {
2504 .type
= HDA_FIXUP_PINS
,
2505 .v
.pins
= (const struct hda_pintbl
[]) {
2506 {0x16, 0x99130130}, /* bass speaker */
2510 .chain_id
= ALC887_FIXUP_BASS_CHMAP
,
2512 [ALC887_FIXUP_BASS_CHMAP
] = {
2513 .type
= HDA_FIXUP_FUNC
,
2514 .v
.func
= alc_fixup_bass_chmap
,
2516 [ALC1220_FIXUP_GB_DUAL_CODECS
] = {
2517 .type
= HDA_FIXUP_FUNC
,
2518 .v
.func
= alc1220_fixup_gb_dual_codecs
,
2520 [ALC1220_FIXUP_GB_X570
] = {
2521 .type
= HDA_FIXUP_FUNC
,
2522 .v
.func
= alc1220_fixup_gb_x570
,
2524 [ALC1220_FIXUP_CLEVO_P950
] = {
2525 .type
= HDA_FIXUP_FUNC
,
2526 .v
.func
= alc1220_fixup_clevo_p950
,
2528 [ALC1220_FIXUP_CLEVO_PB51ED
] = {
2529 .type
= HDA_FIXUP_FUNC
,
2530 .v
.func
= alc1220_fixup_clevo_pb51ed
,
2532 [ALC1220_FIXUP_CLEVO_PB51ED_PINS
] = {
2533 .type
= HDA_FIXUP_PINS
,
2534 .v
.pins
= (const struct hda_pintbl
[]) {
2535 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2539 .chain_id
= ALC1220_FIXUP_CLEVO_PB51ED
,
2541 [ALC887_FIXUP_ASUS_AUDIO
] = {
2542 .type
= HDA_FIXUP_PINS
,
2543 .v
.pins
= (const struct hda_pintbl
[]) {
2544 { 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */
2545 { 0x19, 0x22219420 },
2549 [ALC887_FIXUP_ASUS_HMIC
] = {
2550 .type
= HDA_FIXUP_FUNC
,
2551 .v
.func
= alc887_fixup_asus_jack
,
2553 .chain_id
= ALC887_FIXUP_ASUS_AUDIO
,
2555 [ALCS1200A_FIXUP_MIC_VREF
] = {
2556 .type
= HDA_FIXUP_PINCTLS
,
2557 .v
.pins
= (const struct hda_pintbl
[]) {
2558 { 0x18, PIN_VREF50
}, /* rear mic */
2559 { 0x19, PIN_VREF50
}, /* front mic */
2563 [ALC888VD_FIXUP_MIC_100VREF
] = {
2564 .type
= HDA_FIXUP_PINCTLS
,
2565 .v
.pins
= (const struct hda_pintbl
[]) {
2566 { 0x18, PIN_VREF100
}, /* headset mic */
2572 static const struct hda_quirk alc882_fixup_tbl
[] = {
2573 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD
),
2574 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2575 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2576 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD
),
2577 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2578 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD
),
2579 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD
),
2580 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2581 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2582 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2583 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2584 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2585 ALC882_FIXUP_ACER_ASPIRE_8930G
),
2586 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2587 ALC882_FIXUP_ACER_ASPIRE_8930G
),
2588 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2589 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2590 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210
),
2591 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2592 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2593 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2594 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2595 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2596 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2597 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE
),
2598 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G
),
2599 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736
),
2600 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD
),
2601 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V
),
2602 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC
),
2603 SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC
),
2604 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601
),
2605 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS
),
2606 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3
),
2607 SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF
),
2608 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP
),
2609 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP
),
2610 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT
),
2611 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP
),
2612 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP
),
2614 /* All Apple entries are in codec SSIDs */
2615 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF
),
2616 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF
),
2617 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF
),
2618 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF
),
2619 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO
),
2620 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO
),
2621 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF
),
2622 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF
),
2623 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD
),
2624 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF
),
2625 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF
),
2626 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF
),
2627 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF
),
2628 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO
),
2629 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF
),
2630 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF
),
2631 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF
),
2632 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF
),
2633 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF
),
2634 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF
),
2635 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF
),
2636 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF
),
2638 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD
),
2639 SND_PCI_QUIRK(0x10ec, 0x12d8, "iBase Elo Touch", ALC888VD_FIXUP_MIC_100VREF
),
2640 SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD
),
2641 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE
),
2642 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS
),
2643 SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570
),
2644 SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570
),
2645 SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570
),
2646 SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950
),
2647 SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950
),
2648 SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950
),
2649 SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950
),
2650 SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950
),
2651 SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950
),
2652 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD
),
2653 SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS
),
2654 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS
),
2655 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3
),
2656 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX
),
2657 SND_PCI_QUIRK(0x1558, 0x3702, "Clevo X370SN[VW]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2658 SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2659 SND_PCI_QUIRK(0x1558, 0x5802, "Clevo X58[05]WN[RST]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2660 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2661 SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2662 SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2663 SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2664 SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2665 SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2666 SND_PCI_QUIRK(0x1558, 0x66a2, "Clevo PE60RNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2667 SND_PCI_QUIRK(0x1558, 0x66a6, "Clevo PE60SN[CDE]-[GS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2668 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2669 SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2670 SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2671 SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2672 SND_PCI_QUIRK(0x1558, 0x67f5, "Clevo PD70PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2673 SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2674 SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2675 SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED
),
2676 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950
),
2677 SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950
),
2678 SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950
),
2679 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950
),
2680 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950
),
2681 SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950
),
2682 SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950
),
2683 SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950
),
2684 SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950
),
2685 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950
),
2686 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950
),
2687 SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950
),
2688 SND_PCI_QUIRK(0x1558, 0xd502, "Clevo PD50SNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS
),
2689 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD
),
2690 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD
),
2691 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530
),
2692 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF
),
2696 static const struct hda_model_fixup alc882_fixup_models
[] = {
2697 {.id
= ALC882_FIXUP_ABIT_AW9D_MAX
, .name
= "abit-aw9d"},
2698 {.id
= ALC882_FIXUP_LENOVO_Y530
, .name
= "lenovo-y530"},
2699 {.id
= ALC882_FIXUP_ACER_ASPIRE_7736
, .name
= "acer-aspire-7736"},
2700 {.id
= ALC882_FIXUP_ASUS_W90V
, .name
= "asus-w90v"},
2701 {.id
= ALC889_FIXUP_CD
, .name
= "cd"},
2702 {.id
= ALC889_FIXUP_FRONT_HP_NO_PRESENCE
, .name
= "no-front-hp"},
2703 {.id
= ALC889_FIXUP_VAIO_TT
, .name
= "vaio-tt"},
2704 {.id
= ALC888_FIXUP_EEE1601
, .name
= "eee1601"},
2705 {.id
= ALC882_FIXUP_EAPD
, .name
= "alc882-eapd"},
2706 {.id
= ALC883_FIXUP_EAPD
, .name
= "alc883-eapd"},
2707 {.id
= ALC882_FIXUP_GPIO1
, .name
= "gpio1"},
2708 {.id
= ALC882_FIXUP_GPIO2
, .name
= "gpio2"},
2709 {.id
= ALC882_FIXUP_GPIO3
, .name
= "gpio3"},
2710 {.id
= ALC889_FIXUP_COEF
, .name
= "alc889-coef"},
2711 {.id
= ALC882_FIXUP_ASUS_W2JC
, .name
= "asus-w2jc"},
2712 {.id
= ALC882_FIXUP_ACER_ASPIRE_4930G
, .name
= "acer-aspire-4930g"},
2713 {.id
= ALC882_FIXUP_ACER_ASPIRE_8930G
, .name
= "acer-aspire-8930g"},
2714 {.id
= ALC883_FIXUP_ACER_EAPD
, .name
= "acer-aspire"},
2715 {.id
= ALC885_FIXUP_MACPRO_GPIO
, .name
= "macpro-gpio"},
2716 {.id
= ALC889_FIXUP_DAC_ROUTE
, .name
= "dac-route"},
2717 {.id
= ALC889_FIXUP_MBP_VREF
, .name
= "mbp-vref"},
2718 {.id
= ALC889_FIXUP_IMAC91_VREF
, .name
= "imac91-vref"},
2719 {.id
= ALC889_FIXUP_MBA11_VREF
, .name
= "mba11-vref"},
2720 {.id
= ALC889_FIXUP_MBA21_VREF
, .name
= "mba21-vref"},
2721 {.id
= ALC889_FIXUP_MP11_VREF
, .name
= "mp11-vref"},
2722 {.id
= ALC889_FIXUP_MP41_VREF
, .name
= "mp41-vref"},
2723 {.id
= ALC882_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2724 {.id
= ALC882_FIXUP_NO_PRIMARY_HP
, .name
= "no-primary-hp"},
2725 {.id
= ALC887_FIXUP_ASUS_BASS
, .name
= "asus-bass"},
2726 {.id
= ALC1220_FIXUP_GB_DUAL_CODECS
, .name
= "dual-codecs"},
2727 {.id
= ALC1220_FIXUP_GB_X570
, .name
= "gb-x570"},
2728 {.id
= ALC1220_FIXUP_CLEVO_P950
, .name
= "clevo-p950"},
2732 static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl
[] = {
2733 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950
,
2741 {0x1e, 0x01456130}),
2742 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950
,
2750 {0x1e, 0x01451130}),
2755 * BIOS auto configuration
2757 /* almost identical with ALC880 parser... */
2758 static int alc882_parse_auto_config(struct hda_codec
*codec
)
2760 static const hda_nid_t alc882_ignore
[] = { 0x1d, 0 };
2761 static const hda_nid_t alc882_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2762 return alc_parse_auto_config(codec
, alc882_ignore
, alc882_ssids
);
2767 static int patch_alc882(struct hda_codec
*codec
)
2769 struct alc_spec
*spec
;
2772 err
= alc_alloc_spec(codec
, 0x0b);
2778 switch (codec
->core
.vendor_id
) {
2786 /* ALC883 and variants */
2787 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
2791 alc_pre_init(codec
);
2793 snd_hda_pick_fixup(codec
, alc882_fixup_models
, alc882_fixup_tbl
,
2795 snd_hda_pick_pin_fixup(codec
, alc882_pin_fixup_tbl
, alc882_fixups
, true);
2796 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2798 alc_auto_parse_customize_define(codec
);
2800 if (has_cdefine_beep(codec
))
2801 spec
->gen
.beep_nid
= 0x01;
2803 /* automatic parse from the BIOS config */
2804 err
= alc882_parse_auto_config(codec
);
2808 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
) {
2809 err
= set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
2814 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
2827 static int alc262_parse_auto_config(struct hda_codec
*codec
)
2829 static const hda_nid_t alc262_ignore
[] = { 0x1d, 0 };
2830 static const hda_nid_t alc262_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2831 return alc_parse_auto_config(codec
, alc262_ignore
, alc262_ssids
);
2838 ALC262_FIXUP_FSC_H270
,
2839 ALC262_FIXUP_FSC_S7110
,
2840 ALC262_FIXUP_HP_Z200
,
2842 ALC262_FIXUP_LENOVO_3000
,
2844 ALC262_FIXUP_BENQ_T31
,
2845 ALC262_FIXUP_INV_DMIC
,
2846 ALC262_FIXUP_INTEL_BAYLEYBAY
,
2849 static const struct hda_fixup alc262_fixups
[] = {
2850 [ALC262_FIXUP_FSC_H270
] = {
2851 .type
= HDA_FIXUP_PINS
,
2852 .v
.pins
= (const struct hda_pintbl
[]) {
2853 { 0x14, 0x99130110 }, /* speaker */
2854 { 0x15, 0x0221142f }, /* front HP */
2855 { 0x1b, 0x0121141f }, /* rear HP */
2859 [ALC262_FIXUP_FSC_S7110
] = {
2860 .type
= HDA_FIXUP_PINS
,
2861 .v
.pins
= (const struct hda_pintbl
[]) {
2862 { 0x15, 0x90170110 }, /* speaker */
2866 .chain_id
= ALC262_FIXUP_BENQ
,
2868 [ALC262_FIXUP_HP_Z200
] = {
2869 .type
= HDA_FIXUP_PINS
,
2870 .v
.pins
= (const struct hda_pintbl
[]) {
2871 { 0x16, 0x99130120 }, /* internal speaker */
2875 [ALC262_FIXUP_TYAN
] = {
2876 .type
= HDA_FIXUP_PINS
,
2877 .v
.pins
= (const struct hda_pintbl
[]) {
2878 { 0x14, 0x1993e1f0 }, /* int AUX */
2882 [ALC262_FIXUP_LENOVO_3000
] = {
2883 .type
= HDA_FIXUP_PINCTLS
,
2884 .v
.pins
= (const struct hda_pintbl
[]) {
2885 { 0x19, PIN_VREF50
},
2889 .chain_id
= ALC262_FIXUP_BENQ
,
2891 [ALC262_FIXUP_BENQ
] = {
2892 .type
= HDA_FIXUP_VERBS
,
2893 .v
.verbs
= (const struct hda_verb
[]) {
2894 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2895 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
2899 [ALC262_FIXUP_BENQ_T31
] = {
2900 .type
= HDA_FIXUP_VERBS
,
2901 .v
.verbs
= (const struct hda_verb
[]) {
2902 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2903 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2907 [ALC262_FIXUP_INV_DMIC
] = {
2908 .type
= HDA_FIXUP_FUNC
,
2909 .v
.func
= alc_fixup_inv_dmic
,
2911 [ALC262_FIXUP_INTEL_BAYLEYBAY
] = {
2912 .type
= HDA_FIXUP_FUNC
,
2913 .v
.func
= alc_fixup_no_depop_delay
,
2917 static const struct hda_quirk alc262_fixup_tbl
[] = {
2918 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200
),
2919 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110
),
2920 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ
),
2921 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN
),
2922 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270
),
2923 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270
),
2924 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000
),
2925 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ
),
2926 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31
),
2927 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY
),
2931 static const struct hda_model_fixup alc262_fixup_models
[] = {
2932 {.id
= ALC262_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2933 {.id
= ALC262_FIXUP_FSC_H270
, .name
= "fsc-h270"},
2934 {.id
= ALC262_FIXUP_FSC_S7110
, .name
= "fsc-s7110"},
2935 {.id
= ALC262_FIXUP_HP_Z200
, .name
= "hp-z200"},
2936 {.id
= ALC262_FIXUP_TYAN
, .name
= "tyan"},
2937 {.id
= ALC262_FIXUP_LENOVO_3000
, .name
= "lenovo-3000"},
2938 {.id
= ALC262_FIXUP_BENQ
, .name
= "benq"},
2939 {.id
= ALC262_FIXUP_BENQ_T31
, .name
= "benq-t31"},
2940 {.id
= ALC262_FIXUP_INTEL_BAYLEYBAY
, .name
= "bayleybay"},
2946 static int patch_alc262(struct hda_codec
*codec
)
2948 struct alc_spec
*spec
;
2951 err
= alc_alloc_spec(codec
, 0x0b);
2956 spec
->gen
.shared_mic_vref_pin
= 0x18;
2958 spec
->shutup
= alc_eapd_shutup
;
2961 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2964 alc_update_coefex_idx(codec
, 0x1a, 7, 0, 0x80);
2966 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
2968 alc_pre_init(codec
);
2970 snd_hda_pick_fixup(codec
, alc262_fixup_models
, alc262_fixup_tbl
,
2972 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2974 alc_auto_parse_customize_define(codec
);
2976 if (has_cdefine_beep(codec
))
2977 spec
->gen
.beep_nid
= 0x01;
2979 /* automatic parse from the BIOS config */
2980 err
= alc262_parse_auto_config(codec
);
2984 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
) {
2985 err
= set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
2990 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
3002 /* bind Beep switches of both NID 0x0f and 0x10 */
3003 static int alc268_beep_switch_put(struct snd_kcontrol
*kcontrol
,
3004 struct snd_ctl_elem_value
*ucontrol
)
3006 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3010 mutex_lock(&codec
->control_mutex
);
3011 pval
= kcontrol
->private_value
;
3012 kcontrol
->private_value
= (pval
& ~0xff) | 0x0f;
3013 err
= snd_hda_mixer_amp_switch_put(kcontrol
, ucontrol
);
3015 kcontrol
->private_value
= (pval
& ~0xff) | 0x10;
3016 err
= snd_hda_mixer_amp_switch_put(kcontrol
, ucontrol
);
3018 kcontrol
->private_value
= pval
;
3019 mutex_unlock(&codec
->control_mutex
);
3023 static const struct snd_kcontrol_new alc268_beep_mixer
[] = {
3024 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT
),
3026 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3027 .name
= "Beep Playback Switch",
3028 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
3029 .info
= snd_hda_mixer_amp_switch_info
,
3030 .get
= snd_hda_mixer_amp_switch_get
,
3031 .put
= alc268_beep_switch_put
,
3032 .private_value
= HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT
)
3036 /* set PCBEEP vol = 0, mute connections */
3037 static const struct hda_verb alc268_beep_init_verbs
[] = {
3038 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3039 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
3040 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
3045 ALC268_FIXUP_INV_DMIC
,
3046 ALC268_FIXUP_HP_EAPD
,
3050 static const struct hda_fixup alc268_fixups
[] = {
3051 [ALC268_FIXUP_INV_DMIC
] = {
3052 .type
= HDA_FIXUP_FUNC
,
3053 .v
.func
= alc_fixup_inv_dmic
,
3055 [ALC268_FIXUP_HP_EAPD
] = {
3056 .type
= HDA_FIXUP_VERBS
,
3057 .v
.verbs
= (const struct hda_verb
[]) {
3058 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 0},
3062 [ALC268_FIXUP_SPDIF
] = {
3063 .type
= HDA_FIXUP_PINS
,
3064 .v
.pins
= (const struct hda_pintbl
[]) {
3065 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
3071 static const struct hda_model_fixup alc268_fixup_models
[] = {
3072 {.id
= ALC268_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
3073 {.id
= ALC268_FIXUP_HP_EAPD
, .name
= "hp-eapd"},
3074 {.id
= ALC268_FIXUP_SPDIF
, .name
= "spdif"},
3078 static const struct hda_quirk alc268_fixup_tbl
[] = {
3079 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF
),
3080 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC
),
3081 /* below is codec SSID since multiple Toshiba laptops have the
3082 * same PCI SSID 1179:ff00
3084 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD
),
3089 * BIOS auto configuration
3091 static int alc268_parse_auto_config(struct hda_codec
*codec
)
3093 static const hda_nid_t alc268_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
3094 return alc_parse_auto_config(codec
, NULL
, alc268_ssids
);
3099 static int patch_alc268(struct hda_codec
*codec
)
3101 struct alc_spec
*spec
;
3104 /* ALC268 has no aa-loopback mixer */
3105 err
= alc_alloc_spec(codec
, 0);
3110 if (has_cdefine_beep(codec
))
3111 spec
->gen
.beep_nid
= 0x01;
3113 spec
->shutup
= alc_eapd_shutup
;
3115 alc_pre_init(codec
);
3117 snd_hda_pick_fixup(codec
, alc268_fixup_models
, alc268_fixup_tbl
, alc268_fixups
);
3118 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
3120 /* automatic parse from the BIOS config */
3121 err
= alc268_parse_auto_config(codec
);
3125 if (err
> 0 && !spec
->gen
.no_analog
&&
3126 spec
->gen
.autocfg
.speaker_pins
[0] != 0x1d) {
3127 for (i
= 0; i
< ARRAY_SIZE(alc268_beep_mixer
); i
++) {
3128 if (!snd_hda_gen_add_kctl(&spec
->gen
, NULL
,
3129 &alc268_beep_mixer
[i
])) {
3134 snd_hda_add_verbs(codec
, alc268_beep_init_verbs
);
3135 if (!query_amp_caps(codec
, 0x1d, HDA_INPUT
))
3136 /* override the amp caps for beep generator */
3137 snd_hda_override_amp_caps(codec
, 0x1d, HDA_INPUT
,
3138 (0x0c << AC_AMPCAP_OFFSET_SHIFT
) |
3139 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT
) |
3140 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
3141 (0 << AC_AMPCAP_MUTE_SHIFT
));
3144 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
3157 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback
= {
3158 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
3161 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture
= {
3162 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
3165 /* different alc269-variants */
3167 ALC269_TYPE_ALC269VA
,
3168 ALC269_TYPE_ALC269VB
,
3169 ALC269_TYPE_ALC269VC
,
3170 ALC269_TYPE_ALC269VD
,
3192 * BIOS auto configuration
3194 static int alc269_parse_auto_config(struct hda_codec
*codec
)
3196 static const hda_nid_t alc269_ignore
[] = { 0x1d, 0 };
3197 static const hda_nid_t alc269_ssids
[] = { 0, 0x1b, 0x14, 0x21 };
3198 static const hda_nid_t alc269va_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
3199 struct alc_spec
*spec
= codec
->spec
;
3200 const hda_nid_t
*ssids
;
3202 switch (spec
->codec_variant
) {
3203 case ALC269_TYPE_ALC269VA
:
3204 case ALC269_TYPE_ALC269VC
:
3205 case ALC269_TYPE_ALC280
:
3206 case ALC269_TYPE_ALC284
:
3207 case ALC269_TYPE_ALC293
:
3208 ssids
= alc269va_ssids
;
3210 case ALC269_TYPE_ALC269VB
:
3211 case ALC269_TYPE_ALC269VD
:
3212 case ALC269_TYPE_ALC282
:
3213 case ALC269_TYPE_ALC283
:
3214 case ALC269_TYPE_ALC286
:
3215 case ALC269_TYPE_ALC298
:
3216 case ALC269_TYPE_ALC255
:
3217 case ALC269_TYPE_ALC256
:
3218 case ALC269_TYPE_ALC257
:
3219 case ALC269_TYPE_ALC215
:
3220 case ALC269_TYPE_ALC225
:
3221 case ALC269_TYPE_ALC245
:
3222 case ALC269_TYPE_ALC287
:
3223 case ALC269_TYPE_ALC294
:
3224 case ALC269_TYPE_ALC300
:
3225 case ALC269_TYPE_ALC623
:
3226 case ALC269_TYPE_ALC700
:
3227 ssids
= alc269_ssids
;
3230 ssids
= alc269_ssids
;
3234 return alc_parse_auto_config(codec
, alc269_ignore
, ssids
);
3237 static const struct hda_jack_keymap alc_headset_btn_keymap
[] = {
3238 { SND_JACK_BTN_0
, KEY_PLAYPAUSE
},
3239 { SND_JACK_BTN_1
, KEY_VOICECOMMAND
},
3240 { SND_JACK_BTN_2
, KEY_VOLUMEUP
},
3241 { SND_JACK_BTN_3
, KEY_VOLUMEDOWN
},
3245 static void alc_headset_btn_callback(struct hda_codec
*codec
,
3246 struct hda_jack_callback
*jack
)
3250 if (jack
->unsol_res
& (7 << 13))
3251 report
|= SND_JACK_BTN_0
;
3253 if (jack
->unsol_res
& (1 << 16 | 3 << 8))
3254 report
|= SND_JACK_BTN_1
;
3257 if (jack
->unsol_res
& (7 << 23))
3258 report
|= SND_JACK_BTN_2
;
3260 /* Volume down key */
3261 if (jack
->unsol_res
& (7 << 10))
3262 report
|= SND_JACK_BTN_3
;
3264 snd_hda_jack_set_button_state(codec
, jack
->nid
, report
);
3267 static void alc_disable_headset_jack_key(struct hda_codec
*codec
)
3269 struct alc_spec
*spec
= codec
->spec
;
3271 if (!spec
->has_hs_key
)
3274 switch (codec
->core
.vendor_id
) {
3282 alc_write_coef_idx(codec
, 0x48, 0x0);
3283 alc_update_coef_idx(codec
, 0x49, 0x0045, 0x0);
3284 alc_update_coef_idx(codec
, 0x44, 0x0045 << 8, 0x0);
3291 alc_write_coef_idx(codec
, 0x48, 0x0);
3292 alc_update_coef_idx(codec
, 0x49, 0x0045, 0x0);
3297 static void alc_enable_headset_jack_key(struct hda_codec
*codec
)
3299 struct alc_spec
*spec
= codec
->spec
;
3301 if (!spec
->has_hs_key
)
3304 switch (codec
->core
.vendor_id
) {
3312 alc_write_coef_idx(codec
, 0x48, 0xd011);
3313 alc_update_coef_idx(codec
, 0x49, 0x007f, 0x0045);
3314 alc_update_coef_idx(codec
, 0x44, 0x007f << 8, 0x0045 << 8);
3321 alc_write_coef_idx(codec
, 0x48, 0xd011);
3322 alc_update_coef_idx(codec
, 0x49, 0x007f, 0x0045);
3327 static void alc_fixup_headset_jack(struct hda_codec
*codec
,
3328 const struct hda_fixup
*fix
, int action
)
3330 struct alc_spec
*spec
= codec
->spec
;
3334 case HDA_FIXUP_ACT_PRE_PROBE
:
3335 spec
->has_hs_key
= 1;
3336 snd_hda_jack_detect_enable_callback(codec
, 0x55,
3337 alc_headset_btn_callback
);
3339 case HDA_FIXUP_ACT_BUILD
:
3340 hp_pin
= alc_get_hp_pin(spec
);
3341 if (!hp_pin
|| snd_hda_jack_bind_keymap(codec
, 0x55,
3342 alc_headset_btn_keymap
,
3344 snd_hda_jack_add_kctl(codec
, 0x55, "Headset Jack",
3345 false, SND_JACK_HEADSET
,
3346 alc_headset_btn_keymap
);
3348 alc_enable_headset_jack_key(codec
);
3353 static void alc269vb_toggle_power_output(struct hda_codec
*codec
, int power_up
)
3355 alc_update_coef_idx(codec
, 0x04, 1 << 11, power_up
? (1 << 11) : 0);
3358 static void alc269_shutup(struct hda_codec
*codec
)
3360 struct alc_spec
*spec
= codec
->spec
;
3362 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
3363 alc269vb_toggle_power_output(codec
, 0);
3364 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
3365 (alc_get_coef0(codec
) & 0x00ff) == 0x018) {
3368 alc_shutup_pins(codec
);
3371 static const struct coef_fw alc282_coefs
[] = {
3372 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3373 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3374 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3375 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3376 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3377 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3378 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3379 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3380 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3381 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3382 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3383 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3384 WRITE_COEF(0x34, 0xa0c0), /* ANC */
3385 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3386 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3387 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3388 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3389 WRITE_COEF(0x63, 0x2902), /* PLL */
3390 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3391 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3392 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3393 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3394 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3395 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3396 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3397 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3398 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3399 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3400 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3404 static void alc282_restore_default_value(struct hda_codec
*codec
)
3406 alc_process_coef_fw(codec
, alc282_coefs
);
3409 static void alc282_init(struct hda_codec
*codec
)
3411 struct alc_spec
*spec
= codec
->spec
;
3412 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3416 alc282_restore_default_value(codec
);
3420 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3421 coef78
= alc_read_coef_idx(codec
, 0x78);
3423 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3424 /* Headphone capless set to high power mode */
3425 alc_write_coef_idx(codec
, 0x78, 0x9004);
3430 snd_hda_codec_write(codec
, hp_pin
, 0,
3431 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3436 snd_hda_codec_write(codec
, hp_pin
, 0,
3437 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
3442 /* Headphone capless set to normal mode */
3443 alc_write_coef_idx(codec
, 0x78, coef78
);
3446 static void alc282_shutup(struct hda_codec
*codec
)
3448 struct alc_spec
*spec
= codec
->spec
;
3449 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3454 alc269_shutup(codec
);
3458 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3459 coef78
= alc_read_coef_idx(codec
, 0x78);
3460 alc_write_coef_idx(codec
, 0x78, 0x9004);
3465 snd_hda_codec_write(codec
, hp_pin
, 0,
3466 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3471 if (!spec
->no_shutup_pins
)
3472 snd_hda_codec_write(codec
, hp_pin
, 0,
3473 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3478 alc_auto_setup_eapd(codec
, false);
3479 alc_shutup_pins(codec
);
3480 alc_write_coef_idx(codec
, 0x78, coef78
);
3483 static const struct coef_fw alc283_coefs
[] = {
3484 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3485 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3486 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3487 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3488 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3489 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3490 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3491 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3492 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3493 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3494 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3495 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3496 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3497 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3498 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3499 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3500 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3501 WRITE_COEF(0x2e, 0x2902), /* PLL */
3502 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3503 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3504 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3505 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3506 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3507 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3508 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3509 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3510 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3511 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3512 WRITE_COEF(0x49, 0x0), /* test mode */
3513 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3514 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3515 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
3516 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
3520 static void alc283_restore_default_value(struct hda_codec
*codec
)
3522 alc_process_coef_fw(codec
, alc283_coefs
);
3525 static void alc283_init(struct hda_codec
*codec
)
3527 struct alc_spec
*spec
= codec
->spec
;
3528 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3531 alc283_restore_default_value(codec
);
3537 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3539 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3540 /* Headphone capless set to high power mode */
3541 alc_write_coef_idx(codec
, 0x43, 0x9004);
3543 snd_hda_codec_write(codec
, hp_pin
, 0,
3544 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3549 snd_hda_codec_write(codec
, hp_pin
, 0,
3550 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
3554 /* Index 0x46 Combo jack auto switch control 2 */
3555 /* 3k pull low control for Headset jack. */
3556 alc_update_coef_idx(codec
, 0x46, 3 << 12, 0);
3557 /* Headphone capless set to normal mode */
3558 alc_write_coef_idx(codec
, 0x43, 0x9614);
3561 static void alc283_shutup(struct hda_codec
*codec
)
3563 struct alc_spec
*spec
= codec
->spec
;
3564 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3568 alc269_shutup(codec
);
3572 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3574 alc_write_coef_idx(codec
, 0x43, 0x9004);
3576 /*depop hp during suspend*/
3577 alc_write_coef_idx(codec
, 0x06, 0x2100);
3579 snd_hda_codec_write(codec
, hp_pin
, 0,
3580 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3585 if (!spec
->no_shutup_pins
)
3586 snd_hda_codec_write(codec
, hp_pin
, 0,
3587 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3589 alc_update_coef_idx(codec
, 0x46, 0, 3 << 12);
3593 alc_auto_setup_eapd(codec
, false);
3594 alc_shutup_pins(codec
);
3595 alc_write_coef_idx(codec
, 0x43, 0x9614);
3598 static void alc256_init(struct hda_codec
*codec
)
3600 struct alc_spec
*spec
= codec
->spec
;
3601 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3604 if (spec
->ultra_low_power
) {
3605 alc_update_coef_idx(codec
, 0x03, 1<<1, 1<<1);
3606 alc_update_coef_idx(codec
, 0x08, 3<<2, 3<<2);
3607 alc_update_coef_idx(codec
, 0x08, 7<<4, 0);
3608 alc_update_coef_idx(codec
, 0x3b, 1<<15, 0);
3609 alc_update_coef_idx(codec
, 0x0e, 7<<6, 7<<6);
3618 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3622 alc_update_coefex_idx(codec
, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3624 snd_hda_codec_write(codec
, hp_pin
, 0,
3625 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
3629 snd_hda_codec_write(codec
, hp_pin
, 0,
3630 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
);
3633 alc_update_coefex_idx(codec
, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3635 alc_update_coef_idx(codec
, 0x46, 3 << 12, 0);
3636 alc_update_coefex_idx(codec
, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3637 alc_update_coefex_idx(codec
, 0x53, 0x02, 0x8000, 0 << 15);
3639 * Expose headphone mic (or possibly Line In on some machines) instead
3640 * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See
3641 * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of
3644 alc_write_coef_idx(codec
, 0x36, 0x5757);
3647 static void alc256_shutup(struct hda_codec
*codec
)
3649 struct alc_spec
*spec
= codec
->spec
;
3650 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3656 alc_update_coefex_idx(codec
, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3657 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3662 snd_hda_codec_write(codec
, hp_pin
, 0,
3663 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3667 /* 3k pull low control for Headset jack. */
3668 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3669 /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly
3670 * when booting with headset plugged. So skip setting it for the codec alc257
3672 if (spec
->en_3kpull_low
)
3673 alc_update_coef_idx(codec
, 0x46, 0, 3 << 12);
3675 if (!spec
->no_shutup_pins
)
3676 snd_hda_codec_write(codec
, hp_pin
, 0,
3677 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3682 alc_auto_setup_eapd(codec
, false);
3683 alc_shutup_pins(codec
);
3684 if (spec
->ultra_low_power
) {
3686 alc_update_coef_idx(codec
, 0x03, 1<<1, 0);
3687 alc_update_coef_idx(codec
, 0x08, 7<<4, 7<<4);
3688 alc_update_coef_idx(codec
, 0x08, 3<<2, 0);
3689 alc_update_coef_idx(codec
, 0x3b, 1<<15, 1<<15);
3690 alc_update_coef_idx(codec
, 0x0e, 7<<6, 0);
3695 static void alc285_hp_init(struct hda_codec
*codec
)
3697 struct alc_spec
*spec
= codec
->spec
;
3698 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3700 int coef38
, coef0d
, coef36
;
3702 alc_write_coefex_idx(codec
, 0x58, 0x00, 0x1888); /* write default value */
3703 alc_update_coef_idx(codec
, 0x4a, 1<<15, 1<<15); /* Reset HP JD */
3704 coef38
= alc_read_coef_idx(codec
, 0x38); /* Amp control */
3705 coef0d
= alc_read_coef_idx(codec
, 0x0d); /* Digital Misc control */
3706 coef36
= alc_read_coef_idx(codec
, 0x36); /* Passthrough Control */
3707 alc_update_coef_idx(codec
, 0x38, 1<<4, 0x0);
3708 alc_update_coef_idx(codec
, 0x0d, 0x110, 0x0);
3710 alc_update_coef_idx(codec
, 0x67, 0xf000, 0x3000);
3713 snd_hda_codec_write(codec
, hp_pin
, 0,
3714 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3717 alc_update_coef_idx(codec
, 0x36, 1<<14, 1<<14);
3718 alc_update_coef_idx(codec
, 0x36, 1<<13, 0x0);
3721 snd_hda_codec_write(codec
, hp_pin
, 0,
3722 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3724 alc_write_coef_idx(codec
, 0x67, 0x0); /* Set HP depop to manual mode */
3725 alc_write_coefex_idx(codec
, 0x58, 0x00, 0x7880);
3726 alc_write_coefex_idx(codec
, 0x58, 0x0f, 0xf049);
3727 alc_update_coefex_idx(codec
, 0x58, 0x03, 0x00f0, 0x00c0);
3729 alc_write_coefex_idx(codec
, 0x58, 0x00, 0xf888); /* HP depop procedure start */
3730 val
= alc_read_coefex_idx(codec
, 0x58, 0x00);
3731 for (i
= 0; i
< 20 && val
& 0x8000; i
++) {
3733 val
= alc_read_coefex_idx(codec
, 0x58, 0x00);
3734 } /* Wait for depop procedure finish */
3736 alc_write_coefex_idx(codec
, 0x58, 0x00, val
); /* write back the result */
3737 alc_update_coef_idx(codec
, 0x38, 1<<4, coef38
);
3738 alc_update_coef_idx(codec
, 0x0d, 0x110, coef0d
);
3739 alc_update_coef_idx(codec
, 0x36, 3<<13, coef36
);
3742 alc_update_coef_idx(codec
, 0x4a, 1<<15, 0);
3745 static void alc225_init(struct hda_codec
*codec
)
3747 struct alc_spec
*spec
= codec
->spec
;
3748 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3749 bool hp1_pin_sense
, hp2_pin_sense
;
3751 if (spec
->ultra_low_power
) {
3752 alc_update_coef_idx(codec
, 0x08, 0x0f << 2, 3<<2);
3753 alc_update_coef_idx(codec
, 0x0e, 7<<6, 7<<6);
3754 alc_update_coef_idx(codec
, 0x33, 1<<11, 0);
3758 if (spec
->codec_variant
!= ALC269_TYPE_ALC287
&&
3759 spec
->codec_variant
!= ALC269_TYPE_ALC245
)
3760 /* required only at boot or S3 and S4 resume time */
3761 if (!spec
->done_hp_init
||
3762 is_s3_resume(codec
) ||
3763 is_s4_resume(codec
)) {
3764 alc285_hp_init(codec
);
3765 spec
->done_hp_init
= true;
3772 hp1_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3773 hp2_pin_sense
= snd_hda_jack_detect(codec
, 0x16);
3775 if (hp1_pin_sense
|| hp2_pin_sense
) {
3777 alc_update_coefex_idx(codec
, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3780 snd_hda_codec_write(codec
, hp_pin
, 0,
3781 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
3783 snd_hda_codec_write(codec
, 0x16, 0,
3784 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
3788 snd_hda_codec_write(codec
, hp_pin
, 0,
3789 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
);
3791 snd_hda_codec_write(codec
, 0x16, 0,
3792 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
);
3795 alc_update_coef_idx(codec
, 0x4a, 3 << 10, 0);
3796 alc_update_coefex_idx(codec
, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3800 static void alc225_shutup(struct hda_codec
*codec
)
3802 struct alc_spec
*spec
= codec
->spec
;
3803 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3804 bool hp1_pin_sense
, hp2_pin_sense
;
3809 hp1_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3810 hp2_pin_sense
= snd_hda_jack_detect(codec
, 0x16);
3812 if (hp1_pin_sense
|| hp2_pin_sense
) {
3813 alc_disable_headset_jack_key(codec
);
3814 /* 3k pull low control for Headset jack. */
3815 alc_update_coef_idx(codec
, 0x4a, 0, 3 << 10);
3819 snd_hda_codec_write(codec
, hp_pin
, 0,
3820 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3822 snd_hda_codec_write(codec
, 0x16, 0,
3823 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3828 snd_hda_codec_write(codec
, hp_pin
, 0,
3829 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3831 snd_hda_codec_write(codec
, 0x16, 0,
3832 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3835 alc_update_coef_idx(codec
, 0x4a, 3 << 10, 0);
3836 alc_enable_headset_jack_key(codec
);
3838 alc_auto_setup_eapd(codec
, false);
3839 alc_shutup_pins(codec
);
3840 if (spec
->ultra_low_power
) {
3842 alc_update_coef_idx(codec
, 0x08, 0x0f << 2, 0x0c << 2);
3843 alc_update_coef_idx(codec
, 0x0e, 7<<6, 0);
3844 alc_update_coef_idx(codec
, 0x33, 1<<11, 1<<11);
3845 alc_update_coef_idx(codec
, 0x4a, 3<<4, 2<<4);
3850 static void alc222_init(struct hda_codec
*codec
)
3852 struct alc_spec
*spec
= codec
->spec
;
3853 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3854 bool hp1_pin_sense
, hp2_pin_sense
;
3861 hp1_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3862 hp2_pin_sense
= snd_hda_jack_detect(codec
, 0x14);
3864 if (hp1_pin_sense
|| hp2_pin_sense
) {
3868 snd_hda_codec_write(codec
, hp_pin
, 0,
3869 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
3871 snd_hda_codec_write(codec
, 0x14, 0,
3872 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
3876 snd_hda_codec_write(codec
, hp_pin
, 0,
3877 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
);
3879 snd_hda_codec_write(codec
, 0x14, 0,
3880 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
);
3886 static void alc222_shutup(struct hda_codec
*codec
)
3888 struct alc_spec
*spec
= codec
->spec
;
3889 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3890 bool hp1_pin_sense
, hp2_pin_sense
;
3895 hp1_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3896 hp2_pin_sense
= snd_hda_jack_detect(codec
, 0x14);
3898 if (hp1_pin_sense
|| hp2_pin_sense
) {
3902 snd_hda_codec_write(codec
, hp_pin
, 0,
3903 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3905 snd_hda_codec_write(codec
, 0x14, 0,
3906 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3911 snd_hda_codec_write(codec
, hp_pin
, 0,
3912 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3914 snd_hda_codec_write(codec
, 0x14, 0,
3915 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3919 alc_auto_setup_eapd(codec
, false);
3920 alc_shutup_pins(codec
);
3923 static void alc_default_init(struct hda_codec
*codec
)
3925 struct alc_spec
*spec
= codec
->spec
;
3926 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3934 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3939 snd_hda_codec_write(codec
, hp_pin
, 0,
3940 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
3944 snd_hda_codec_write(codec
, hp_pin
, 0,
3945 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
);
3950 static void alc_default_shutup(struct hda_codec
*codec
)
3952 struct alc_spec
*spec
= codec
->spec
;
3953 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3957 alc269_shutup(codec
);
3961 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3966 snd_hda_codec_write(codec
, hp_pin
, 0,
3967 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3971 if (!spec
->no_shutup_pins
)
3972 snd_hda_codec_write(codec
, hp_pin
, 0,
3973 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3977 alc_auto_setup_eapd(codec
, false);
3978 alc_shutup_pins(codec
);
3981 static void alc294_hp_init(struct hda_codec
*codec
)
3983 struct alc_spec
*spec
= codec
->spec
;
3984 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
3990 snd_hda_codec_write(codec
, hp_pin
, 0,
3991 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3995 if (!spec
->no_shutup_pins
)
3996 snd_hda_codec_write(codec
, hp_pin
, 0,
3997 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3999 alc_update_coef_idx(codec
, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
4000 alc_update_coefex_idx(codec
, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
4002 /* Wait for depop procedure finish */
4003 val
= alc_read_coefex_idx(codec
, 0x58, 0x01);
4004 for (i
= 0; i
< 20 && val
& 0x0080; i
++) {
4006 val
= alc_read_coefex_idx(codec
, 0x58, 0x01);
4008 /* Set HP depop to auto mode */
4009 alc_update_coef_idx(codec
, 0x6f, 0x000f, 0x000b);
4013 static void alc294_init(struct hda_codec
*codec
)
4015 struct alc_spec
*spec
= codec
->spec
;
4017 /* required only at boot or S4 resume time */
4018 if (!spec
->done_hp_init
||
4019 codec
->core
.dev
.power
.power_state
.event
== PM_EVENT_RESTORE
) {
4020 alc294_hp_init(codec
);
4021 spec
->done_hp_init
= true;
4023 alc_default_init(codec
);
4026 static void alc5505_coef_set(struct hda_codec
*codec
, unsigned int index_reg
,
4029 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_COEF_INDEX
, index_reg
>> 1);
4030 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_PROC_COEF
, val
& 0xffff); /* LSB */
4031 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_PROC_COEF
, val
>> 16); /* MSB */
4034 static int alc5505_coef_get(struct hda_codec
*codec
, unsigned int index_reg
)
4038 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_COEF_INDEX
, index_reg
>> 1);
4039 val
= snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_GET_PROC_COEF
, 0)
4041 val
|= snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_GET_PROC_COEF
, 0)
4046 static void alc5505_dsp_halt(struct hda_codec
*codec
)
4050 alc5505_coef_set(codec
, 0x3000, 0x000c); /* DSP CPU stop */
4051 alc5505_coef_set(codec
, 0x880c, 0x0008); /* DDR enter self refresh */
4052 alc5505_coef_set(codec
, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
4053 alc5505_coef_set(codec
, 0x6230, 0xfc0d4011); /* Disable Input OP */
4054 alc5505_coef_set(codec
, 0x61b4, 0x040a2b03); /* Stop PLL2 */
4055 alc5505_coef_set(codec
, 0x61b0, 0x00005b17); /* Stop PLL1 */
4056 alc5505_coef_set(codec
, 0x61b8, 0x04133303); /* Stop PLL3 */
4057 val
= alc5505_coef_get(codec
, 0x6220);
4058 alc5505_coef_set(codec
, 0x6220, (val
| 0x3000)); /* switch Ringbuffer clock to DBUS clock */
4061 static void alc5505_dsp_back_from_halt(struct hda_codec
*codec
)
4063 alc5505_coef_set(codec
, 0x61b8, 0x04133302);
4064 alc5505_coef_set(codec
, 0x61b0, 0x00005b16);
4065 alc5505_coef_set(codec
, 0x61b4, 0x040a2b02);
4066 alc5505_coef_set(codec
, 0x6230, 0xf80d4011);
4067 alc5505_coef_set(codec
, 0x6220, 0x2002010f);
4068 alc5505_coef_set(codec
, 0x880c, 0x00000004);
4071 static void alc5505_dsp_init(struct hda_codec
*codec
)
4075 alc5505_dsp_halt(codec
);
4076 alc5505_dsp_back_from_halt(codec
);
4077 alc5505_coef_set(codec
, 0x61b0, 0x5b14); /* PLL1 control */
4078 alc5505_coef_set(codec
, 0x61b0, 0x5b16);
4079 alc5505_coef_set(codec
, 0x61b4, 0x04132b00); /* PLL2 control */
4080 alc5505_coef_set(codec
, 0x61b4, 0x04132b02);
4081 alc5505_coef_set(codec
, 0x61b8, 0x041f3300); /* PLL3 control*/
4082 alc5505_coef_set(codec
, 0x61b8, 0x041f3302);
4083 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_CODEC_RESET
, 0); /* Function reset */
4084 alc5505_coef_set(codec
, 0x61b8, 0x041b3302);
4085 alc5505_coef_set(codec
, 0x61b8, 0x04173302);
4086 alc5505_coef_set(codec
, 0x61b8, 0x04163302);
4087 alc5505_coef_set(codec
, 0x8800, 0x348b328b); /* DRAM control */
4088 alc5505_coef_set(codec
, 0x8808, 0x00020022); /* DRAM control */
4089 alc5505_coef_set(codec
, 0x8818, 0x00000400); /* DRAM control */
4091 val
= alc5505_coef_get(codec
, 0x6200) >> 16; /* Read revision ID */
4093 alc5505_coef_set(codec
, 0x6220, 0x2002010f); /* I/O PAD Configuration */
4095 alc5505_coef_set(codec
, 0x6220, 0x6002018f);
4097 alc5505_coef_set(codec
, 0x61ac, 0x055525f0); /**/
4098 alc5505_coef_set(codec
, 0x61c0, 0x12230080); /* Clock control */
4099 alc5505_coef_set(codec
, 0x61b4, 0x040e2b02); /* PLL2 control */
4100 alc5505_coef_set(codec
, 0x61bc, 0x010234f8); /* OSC Control */
4101 alc5505_coef_set(codec
, 0x880c, 0x00000004); /* DRAM Function control */
4102 alc5505_coef_set(codec
, 0x880c, 0x00000003);
4103 alc5505_coef_set(codec
, 0x880c, 0x00000010);
4105 #ifdef HALT_REALTEK_ALC5505
4106 alc5505_dsp_halt(codec
);
4110 #ifdef HALT_REALTEK_ALC5505
4111 #define alc5505_dsp_suspend(codec) do { } while (0) /* NOP */
4112 #define alc5505_dsp_resume(codec) do { } while (0) /* NOP */
4114 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
4115 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
4118 static int alc269_suspend(struct hda_codec
*codec
)
4120 struct alc_spec
*spec
= codec
->spec
;
4122 if (spec
->has_alc5505_dsp
)
4123 alc5505_dsp_suspend(codec
);
4125 return alc_suspend(codec
);
4128 static int alc269_resume(struct hda_codec
*codec
)
4130 struct alc_spec
*spec
= codec
->spec
;
4132 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
4133 alc269vb_toggle_power_output(codec
, 0);
4134 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
4135 (alc_get_coef0(codec
) & 0x00ff) == 0x018) {
4139 codec
->patch_ops
.init(codec
);
4141 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
4142 alc269vb_toggle_power_output(codec
, 1);
4143 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
4144 (alc_get_coef0(codec
) & 0x00ff) == 0x017) {
4148 snd_hda_regmap_sync(codec
);
4149 hda_call_check_power_status(codec
, 0x01);
4151 /* on some machine, the BIOS will clear the codec gpio data when enter
4152 * suspend, and won't restore the data after resume, so we restore it
4155 if (spec
->gpio_data
)
4156 alc_write_gpio_data(codec
);
4158 if (spec
->has_alc5505_dsp
)
4159 alc5505_dsp_resume(codec
);
4164 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec
*codec
,
4165 const struct hda_fixup
*fix
, int action
)
4167 struct alc_spec
*spec
= codec
->spec
;
4169 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
4170 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
4173 static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec
*codec
,
4174 const struct hda_fixup
*fix
,
4177 unsigned int cfg_headphone
= snd_hda_codec_get_pincfg(codec
, 0x21);
4178 unsigned int cfg_headset_mic
= snd_hda_codec_get_pincfg(codec
, 0x19);
4180 if (cfg_headphone
&& cfg_headset_mic
== 0x411111f0)
4181 snd_hda_codec_set_pincfg(codec
, 0x19,
4182 (cfg_headphone
& ~AC_DEFCFG_DEVICE
) |
4183 (AC_JACK_MIC_IN
<< AC_DEFCFG_DEVICE_SHIFT
));
4186 static void alc269_fixup_hweq(struct hda_codec
*codec
,
4187 const struct hda_fixup
*fix
, int action
)
4189 if (action
== HDA_FIXUP_ACT_INIT
)
4190 alc_update_coef_idx(codec
, 0x1e, 0, 0x80);
4193 static void alc269_fixup_headset_mic(struct hda_codec
*codec
,
4194 const struct hda_fixup
*fix
, int action
)
4196 struct alc_spec
*spec
= codec
->spec
;
4198 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
4199 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
4202 static void alc271_fixup_dmic(struct hda_codec
*codec
,
4203 const struct hda_fixup
*fix
, int action
)
4205 static const struct hda_verb verbs
[] = {
4206 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0d},
4207 {0x20, AC_VERB_SET_PROC_COEF
, 0x4000},
4212 if (strcmp(codec
->core
.chip_name
, "ALC271X") &&
4213 strcmp(codec
->core
.chip_name
, "ALC269VB"))
4215 cfg
= snd_hda_codec_get_pincfg(codec
, 0x12);
4216 if (get_defcfg_connect(cfg
) == AC_JACK_PORT_FIXED
)
4217 snd_hda_sequence_write(codec
, verbs
);
4220 /* Fix the speaker amp after resume, etc */
4221 static void alc269vb_fixup_aspire_e1_coef(struct hda_codec
*codec
,
4222 const struct hda_fixup
*fix
,
4225 if (action
== HDA_FIXUP_ACT_INIT
)
4226 alc_update_coef_idx(codec
, 0x0d, 0x6000, 0x6000);
4229 static void alc269_fixup_pcm_44k(struct hda_codec
*codec
,
4230 const struct hda_fixup
*fix
, int action
)
4232 struct alc_spec
*spec
= codec
->spec
;
4234 if (action
!= HDA_FIXUP_ACT_PROBE
)
4237 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4238 * fix the sample rate of analog I/O to 44.1kHz
4240 spec
->gen
.stream_analog_playback
= &alc269_44k_pcm_analog_playback
;
4241 spec
->gen
.stream_analog_capture
= &alc269_44k_pcm_analog_capture
;
4244 static void alc269_fixup_stereo_dmic(struct hda_codec
*codec
,
4245 const struct hda_fixup
*fix
, int action
)
4247 /* The digital-mic unit sends PDM (differential signal) instead of
4248 * the standard PCM, thus you can't record a valid mono stream as is.
4249 * Below is a workaround specific to ALC269 to control the dmic
4250 * signal source as mono.
4252 if (action
== HDA_FIXUP_ACT_INIT
)
4253 alc_update_coef_idx(codec
, 0x07, 0, 0x80);
4256 static void alc269_quanta_automute(struct hda_codec
*codec
)
4258 snd_hda_gen_update_outputs(codec
);
4260 alc_write_coef_idx(codec
, 0x0c, 0x680);
4261 alc_write_coef_idx(codec
, 0x0c, 0x480);
4264 static void alc269_fixup_quanta_mute(struct hda_codec
*codec
,
4265 const struct hda_fixup
*fix
, int action
)
4267 struct alc_spec
*spec
= codec
->spec
;
4268 if (action
!= HDA_FIXUP_ACT_PROBE
)
4270 spec
->gen
.automute_hook
= alc269_quanta_automute
;
4273 static void alc269_x101_hp_automute_hook(struct hda_codec
*codec
,
4274 struct hda_jack_callback
*jack
)
4276 struct alc_spec
*spec
= codec
->spec
;
4279 snd_hda_gen_hp_automute(codec
, jack
);
4281 vref
= spec
->gen
.hp_jack_present
? PIN_VREF80
: 0;
4283 snd_hda_codec_write(codec
, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4286 snd_hda_codec_write(codec
, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4291 * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
4293 struct hda_alc298_mbxinit
{
4294 unsigned char value_0x23
;
4295 unsigned char value_0x25
;
4298 static void alc298_huawei_mbx_stereo_seq(struct hda_codec
*codec
,
4299 const struct hda_alc298_mbxinit
*initval
,
4302 snd_hda_codec_write(codec
, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3
, 0x0);
4303 alc_write_coef_idx(codec
, 0x26, 0xb000);
4306 snd_hda_codec_write(codec
, 0x21, 0, AC_VERB_GET_PIN_SENSE
, 0x0);
4308 snd_hda_codec_write(codec
, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3
, 0x80);
4309 alc_write_coef_idx(codec
, 0x26, 0xf000);
4310 alc_write_coef_idx(codec
, 0x23, initval
->value_0x23
);
4312 if (initval
->value_0x23
!= 0x1e)
4313 alc_write_coef_idx(codec
, 0x25, initval
->value_0x25
);
4315 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 0x26);
4316 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_PROC_COEF
, 0xb010);
4319 static void alc298_fixup_huawei_mbx_stereo(struct hda_codec
*codec
,
4320 const struct hda_fixup
*fix
,
4323 /* Initialization magic */
4324 static const struct hda_alc298_mbxinit dac_init
[] = {
4325 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
4326 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
4327 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
4328 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
4329 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
4330 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
4332 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
4333 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
4334 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
4337 const struct hda_alc298_mbxinit
*seq
;
4339 if (action
!= HDA_FIXUP_ACT_INIT
)
4343 snd_hda_codec_write(codec
, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3
, 0x00);
4344 snd_hda_codec_write(codec
, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3
, 0x80);
4345 alc_write_coef_idx(codec
, 0x26, 0xf000);
4346 alc_write_coef_idx(codec
, 0x22, 0x31);
4347 alc_write_coef_idx(codec
, 0x23, 0x0b);
4348 alc_write_coef_idx(codec
, 0x25, 0x00);
4349 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 0x26);
4350 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_PROC_COEF
, 0xb010);
4352 for (seq
= dac_init
; seq
->value_0x23
; seq
++)
4353 alc298_huawei_mbx_stereo_seq(codec
, seq
, seq
== dac_init
);
4356 static void alc269_fixup_x101_headset_mic(struct hda_codec
*codec
,
4357 const struct hda_fixup
*fix
, int action
)
4359 struct alc_spec
*spec
= codec
->spec
;
4360 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4361 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
4362 spec
->gen
.hp_automute_hook
= alc269_x101_hp_automute_hook
;
4366 static void alc_update_vref_led(struct hda_codec
*codec
, hda_nid_t pin
,
4367 bool polarity
, bool on
)
4369 unsigned int pinval
;
4375 pinval
= snd_hda_codec_get_pin_target(codec
, pin
);
4376 pinval
&= ~AC_PINCTL_VREFEN
;
4377 pinval
|= on
? AC_PINCTL_VREF_80
: AC_PINCTL_VREF_HIZ
;
4378 /* temporarily power up/down for setting VREF */
4379 snd_hda_power_up_pm(codec
);
4380 snd_hda_set_pin_ctl_cache(codec
, pin
, pinval
);
4381 snd_hda_power_down_pm(codec
);
4384 /* update mute-LED according to the speaker mute state via mic VREF pin */
4385 static int vref_mute_led_set(struct led_classdev
*led_cdev
,
4386 enum led_brightness brightness
)
4388 struct hda_codec
*codec
= dev_to_hda_codec(led_cdev
->dev
->parent
);
4389 struct alc_spec
*spec
= codec
->spec
;
4391 alc_update_vref_led(codec
, spec
->mute_led_nid
,
4392 spec
->mute_led_polarity
, brightness
);
4396 /* Make sure the led works even in runtime suspend */
4397 static unsigned int led_power_filter(struct hda_codec
*codec
,
4399 unsigned int power_state
)
4401 struct alc_spec
*spec
= codec
->spec
;
4403 if (power_state
!= AC_PWRST_D3
|| nid
== 0 ||
4404 (nid
!= spec
->mute_led_nid
&& nid
!= spec
->cap_mute_led_nid
))
4407 /* Set pin ctl again, it might have just been set to 0 */
4408 snd_hda_set_pin_ctl(codec
, nid
,
4409 snd_hda_codec_get_pin_target(codec
, nid
));
4411 return snd_hda_gen_path_power_filter(codec
, nid
, power_state
);
4414 static void alc269_fixup_hp_mute_led(struct hda_codec
*codec
,
4415 const struct hda_fixup
*fix
, int action
)
4417 struct alc_spec
*spec
= codec
->spec
;
4418 const struct dmi_device
*dev
= NULL
;
4420 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
4423 while ((dev
= dmi_find_device(DMI_DEV_TYPE_OEM_STRING
, NULL
, dev
))) {
4425 if (sscanf(dev
->name
, "HP_Mute_LED_%d_%x", &pol
, &pin
) != 2)
4427 if (pin
< 0x0a || pin
>= 0x10)
4429 spec
->mute_led_polarity
= pol
;
4430 spec
->mute_led_nid
= pin
- 0x0a + 0x18;
4431 snd_hda_gen_add_mute_led_cdev(codec
, vref_mute_led_set
);
4432 codec
->power_filter
= led_power_filter
;
4434 "Detected mute LED for %x:%d\n", spec
->mute_led_nid
,
4435 spec
->mute_led_polarity
);
4440 static void alc269_fixup_hp_mute_led_micx(struct hda_codec
*codec
,
4441 const struct hda_fixup
*fix
,
4442 int action
, hda_nid_t pin
)
4444 struct alc_spec
*spec
= codec
->spec
;
4446 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4447 spec
->mute_led_polarity
= 0;
4448 spec
->mute_led_nid
= pin
;
4449 snd_hda_gen_add_mute_led_cdev(codec
, vref_mute_led_set
);
4450 codec
->power_filter
= led_power_filter
;
4454 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec
*codec
,
4455 const struct hda_fixup
*fix
, int action
)
4457 alc269_fixup_hp_mute_led_micx(codec
, fix
, action
, 0x18);
4460 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec
*codec
,
4461 const struct hda_fixup
*fix
, int action
)
4463 alc269_fixup_hp_mute_led_micx(codec
, fix
, action
, 0x19);
4466 static void alc269_fixup_hp_mute_led_mic3(struct hda_codec
*codec
,
4467 const struct hda_fixup
*fix
, int action
)
4469 alc269_fixup_hp_mute_led_micx(codec
, fix
, action
, 0x1b);
4472 /* update LED status via GPIO */
4473 static void alc_update_gpio_led(struct hda_codec
*codec
, unsigned int mask
,
4474 int polarity
, bool enabled
)
4478 alc_update_gpio_data(codec
, mask
, !enabled
); /* muted -> LED on */
4481 /* turn on/off mute LED via GPIO per vmaster hook */
4482 static int gpio_mute_led_set(struct led_classdev
*led_cdev
,
4483 enum led_brightness brightness
)
4485 struct hda_codec
*codec
= dev_to_hda_codec(led_cdev
->dev
->parent
);
4486 struct alc_spec
*spec
= codec
->spec
;
4488 alc_update_gpio_led(codec
, spec
->gpio_mute_led_mask
,
4489 spec
->mute_led_polarity
, !brightness
);
4493 /* turn on/off mic-mute LED via GPIO per capture hook */
4494 static int micmute_led_set(struct led_classdev
*led_cdev
,
4495 enum led_brightness brightness
)
4497 struct hda_codec
*codec
= dev_to_hda_codec(led_cdev
->dev
->parent
);
4498 struct alc_spec
*spec
= codec
->spec
;
4500 alc_update_gpio_led(codec
, spec
->gpio_mic_led_mask
,
4501 spec
->micmute_led_polarity
, !brightness
);
4505 /* setup mute and mic-mute GPIO bits, add hooks appropriately */
4506 static void alc_fixup_hp_gpio_led(struct hda_codec
*codec
,
4508 unsigned int mute_mask
,
4509 unsigned int micmute_mask
)
4511 struct alc_spec
*spec
= codec
->spec
;
4513 alc_fixup_gpio(codec
, action
, mute_mask
| micmute_mask
);
4515 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
4518 spec
->gpio_mute_led_mask
= mute_mask
;
4519 snd_hda_gen_add_mute_led_cdev(codec
, gpio_mute_led_set
);
4522 spec
->gpio_mic_led_mask
= micmute_mask
;
4523 snd_hda_gen_add_micmute_led_cdev(codec
, micmute_led_set
);
4527 static void alc236_fixup_hp_gpio_led(struct hda_codec
*codec
,
4528 const struct hda_fixup
*fix
, int action
)
4530 alc_fixup_hp_gpio_led(codec
, action
, 0x02, 0x01);
4533 static void alc269_fixup_hp_gpio_led(struct hda_codec
*codec
,
4534 const struct hda_fixup
*fix
, int action
)
4536 alc_fixup_hp_gpio_led(codec
, action
, 0x08, 0x10);
4539 static void alc285_fixup_hp_gpio_led(struct hda_codec
*codec
,
4540 const struct hda_fixup
*fix
, int action
)
4542 alc_fixup_hp_gpio_led(codec
, action
, 0x04, 0x01);
4545 static void alc286_fixup_hp_gpio_led(struct hda_codec
*codec
,
4546 const struct hda_fixup
*fix
, int action
)
4548 alc_fixup_hp_gpio_led(codec
, action
, 0x02, 0x20);
4551 static void alc287_fixup_hp_gpio_led(struct hda_codec
*codec
,
4552 const struct hda_fixup
*fix
, int action
)
4554 alc_fixup_hp_gpio_led(codec
, action
, 0x10, 0);
4557 static void alc245_fixup_hp_gpio_led(struct hda_codec
*codec
,
4558 const struct hda_fixup
*fix
, int action
)
4560 struct alc_spec
*spec
= codec
->spec
;
4562 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
4563 spec
->micmute_led_polarity
= 1;
4564 alc_fixup_hp_gpio_led(codec
, action
, 0, 0x04);
4567 /* turn on/off mic-mute LED per capture hook via VREF change */
4568 static int vref_micmute_led_set(struct led_classdev
*led_cdev
,
4569 enum led_brightness brightness
)
4571 struct hda_codec
*codec
= dev_to_hda_codec(led_cdev
->dev
->parent
);
4572 struct alc_spec
*spec
= codec
->spec
;
4574 alc_update_vref_led(codec
, spec
->cap_mute_led_nid
,
4575 spec
->micmute_led_polarity
, brightness
);
4579 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec
*codec
,
4580 const struct hda_fixup
*fix
, int action
)
4582 struct alc_spec
*spec
= codec
->spec
;
4584 alc_fixup_hp_gpio_led(codec
, action
, 0x08, 0);
4585 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4586 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4587 * enable headphone amp
4589 spec
->gpio_mask
|= 0x10;
4590 spec
->gpio_dir
|= 0x10;
4591 spec
->cap_mute_led_nid
= 0x18;
4592 snd_hda_gen_add_micmute_led_cdev(codec
, vref_micmute_led_set
);
4593 codec
->power_filter
= led_power_filter
;
4597 static void alc280_fixup_hp_gpio4(struct hda_codec
*codec
,
4598 const struct hda_fixup
*fix
, int action
)
4600 struct alc_spec
*spec
= codec
->spec
;
4602 alc_fixup_hp_gpio_led(codec
, action
, 0x08, 0);
4603 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4604 spec
->cap_mute_led_nid
= 0x18;
4605 snd_hda_gen_add_micmute_led_cdev(codec
, vref_micmute_led_set
);
4606 codec
->power_filter
= led_power_filter
;
4610 /* HP Spectre x360 14 model needs a unique workaround for enabling the amp;
4611 * it needs to toggle the GPIO0 once on and off at each time (bko#210633)
4613 static void alc245_fixup_hp_x360_amp(struct hda_codec
*codec
,
4614 const struct hda_fixup
*fix
, int action
)
4616 struct alc_spec
*spec
= codec
->spec
;
4619 case HDA_FIXUP_ACT_PRE_PROBE
:
4620 spec
->gpio_mask
|= 0x01;
4621 spec
->gpio_dir
|= 0x01;
4623 case HDA_FIXUP_ACT_INIT
:
4624 /* need to toggle GPIO to enable the amp */
4625 alc_update_gpio_data(codec
, 0x01, true);
4627 alc_update_gpio_data(codec
, 0x01, false);
4632 /* toggle GPIO2 at each time stream is started; we use PREPARE state instead */
4633 static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream
*hinfo
,
4634 struct hda_codec
*codec
,
4635 struct snd_pcm_substream
*substream
,
4639 case HDA_GEN_PCM_ACT_PREPARE
:
4640 alc_update_gpio_data(codec
, 0x04, true);
4642 case HDA_GEN_PCM_ACT_CLEANUP
:
4643 alc_update_gpio_data(codec
, 0x04, false);
4648 static void alc274_fixup_hp_envy_gpio(struct hda_codec
*codec
,
4649 const struct hda_fixup
*fix
,
4652 struct alc_spec
*spec
= codec
->spec
;
4654 if (action
== HDA_FIXUP_ACT_PROBE
) {
4655 spec
->gpio_mask
|= 0x04;
4656 spec
->gpio_dir
|= 0x04;
4657 spec
->gen
.pcm_playback_hook
= alc274_hp_envy_pcm_hook
;
4661 static void alc_update_coef_led(struct hda_codec
*codec
,
4662 struct alc_coef_led
*led
,
4663 bool polarity
, bool on
)
4667 /* temporarily power up/down for setting COEF bit */
4668 alc_update_coef_idx(codec
, led
->idx
, led
->mask
,
4669 on
? led
->on
: led
->off
);
4672 /* update mute-LED according to the speaker mute state via COEF bit */
4673 static int coef_mute_led_set(struct led_classdev
*led_cdev
,
4674 enum led_brightness brightness
)
4676 struct hda_codec
*codec
= dev_to_hda_codec(led_cdev
->dev
->parent
);
4677 struct alc_spec
*spec
= codec
->spec
;
4679 alc_update_coef_led(codec
, &spec
->mute_led_coef
,
4680 spec
->mute_led_polarity
, brightness
);
4684 static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec
*codec
,
4685 const struct hda_fixup
*fix
,
4688 struct alc_spec
*spec
= codec
->spec
;
4690 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4691 spec
->mute_led_polarity
= 0;
4692 spec
->mute_led_coef
.idx
= 0x0b;
4693 spec
->mute_led_coef
.mask
= 1 << 3;
4694 spec
->mute_led_coef
.on
= 1 << 3;
4695 spec
->mute_led_coef
.off
= 0;
4696 snd_hda_gen_add_mute_led_cdev(codec
, coef_mute_led_set
);
4700 static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec
*codec
,
4701 const struct hda_fixup
*fix
,
4704 struct alc_spec
*spec
= codec
->spec
;
4706 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4707 spec
->mute_led_polarity
= 0;
4708 spec
->mute_led_coef
.idx
= 0x34;
4709 spec
->mute_led_coef
.mask
= 1 << 5;
4710 spec
->mute_led_coef
.on
= 0;
4711 spec
->mute_led_coef
.off
= 1 << 5;
4712 snd_hda_gen_add_mute_led_cdev(codec
, coef_mute_led_set
);
4716 static void alc236_fixup_hp_mute_led_coefbit2(struct hda_codec
*codec
,
4717 const struct hda_fixup
*fix
, int action
)
4719 struct alc_spec
*spec
= codec
->spec
;
4721 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4722 spec
->mute_led_polarity
= 0;
4723 spec
->mute_led_coef
.idx
= 0x07;
4724 spec
->mute_led_coef
.mask
= 1;
4725 spec
->mute_led_coef
.on
= 1;
4726 spec
->mute_led_coef
.off
= 0;
4727 snd_hda_gen_add_mute_led_cdev(codec
, coef_mute_led_set
);
4731 static void alc245_fixup_hp_mute_led_coefbit(struct hda_codec
*codec
,
4732 const struct hda_fixup
*fix
,
4735 struct alc_spec
*spec
= codec
->spec
;
4737 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4738 spec
->mute_led_polarity
= 0;
4739 spec
->mute_led_coef
.idx
= 0x0b;
4740 spec
->mute_led_coef
.mask
= 3 << 2;
4741 spec
->mute_led_coef
.on
= 2 << 2;
4742 spec
->mute_led_coef
.off
= 1 << 2;
4743 snd_hda_gen_add_mute_led_cdev(codec
, coef_mute_led_set
);
4747 static void alc245_fixup_hp_mute_led_v1_coefbit(struct hda_codec
*codec
,
4748 const struct hda_fixup
*fix
,
4751 struct alc_spec
*spec
= codec
->spec
;
4753 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4754 spec
->mute_led_polarity
= 0;
4755 spec
->mute_led_coef
.idx
= 0x0b;
4756 spec
->mute_led_coef
.mask
= 1 << 3;
4757 spec
->mute_led_coef
.on
= 1 << 3;
4758 spec
->mute_led_coef
.off
= 0;
4759 snd_hda_gen_add_mute_led_cdev(codec
, coef_mute_led_set
);
4763 /* turn on/off mic-mute LED per capture hook by coef bit */
4764 static int coef_micmute_led_set(struct led_classdev
*led_cdev
,
4765 enum led_brightness brightness
)
4767 struct hda_codec
*codec
= dev_to_hda_codec(led_cdev
->dev
->parent
);
4768 struct alc_spec
*spec
= codec
->spec
;
4770 alc_update_coef_led(codec
, &spec
->mic_led_coef
,
4771 spec
->micmute_led_polarity
, brightness
);
4775 static void alc285_fixup_hp_coef_micmute_led(struct hda_codec
*codec
,
4776 const struct hda_fixup
*fix
, int action
)
4778 struct alc_spec
*spec
= codec
->spec
;
4780 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4781 spec
->mic_led_coef
.idx
= 0x19;
4782 spec
->mic_led_coef
.mask
= 1 << 13;
4783 spec
->mic_led_coef
.on
= 1 << 13;
4784 spec
->mic_led_coef
.off
= 0;
4785 snd_hda_gen_add_micmute_led_cdev(codec
, coef_micmute_led_set
);
4789 static void alc285_fixup_hp_gpio_micmute_led(struct hda_codec
*codec
,
4790 const struct hda_fixup
*fix
, int action
)
4792 struct alc_spec
*spec
= codec
->spec
;
4794 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
4795 spec
->micmute_led_polarity
= 1;
4796 alc_fixup_hp_gpio_led(codec
, action
, 0, 0x04);
4799 static void alc236_fixup_hp_coef_micmute_led(struct hda_codec
*codec
,
4800 const struct hda_fixup
*fix
, int action
)
4802 struct alc_spec
*spec
= codec
->spec
;
4804 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4805 spec
->mic_led_coef
.idx
= 0x35;
4806 spec
->mic_led_coef
.mask
= 3 << 2;
4807 spec
->mic_led_coef
.on
= 2 << 2;
4808 spec
->mic_led_coef
.off
= 1 << 2;
4809 snd_hda_gen_add_micmute_led_cdev(codec
, coef_micmute_led_set
);
4813 static void alc295_fixup_hp_mute_led_coefbit11(struct hda_codec
*codec
,
4814 const struct hda_fixup
*fix
, int action
)
4816 struct alc_spec
*spec
= codec
->spec
;
4818 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4819 spec
->mute_led_polarity
= 0;
4820 spec
->mute_led_coef
.idx
= 0xb;
4821 spec
->mute_led_coef
.mask
= 3 << 3;
4822 spec
->mute_led_coef
.on
= 1 << 3;
4823 spec
->mute_led_coef
.off
= 1 << 4;
4824 snd_hda_gen_add_mute_led_cdev(codec
, coef_mute_led_set
);
4828 static void alc285_fixup_hp_mute_led(struct hda_codec
*codec
,
4829 const struct hda_fixup
*fix
, int action
)
4831 alc285_fixup_hp_mute_led_coefbit(codec
, fix
, action
);
4832 alc285_fixup_hp_coef_micmute_led(codec
, fix
, action
);
4835 static void alc285_fixup_hp_spectre_x360_mute_led(struct hda_codec
*codec
,
4836 const struct hda_fixup
*fix
, int action
)
4838 alc285_fixup_hp_mute_led_coefbit(codec
, fix
, action
);
4839 alc285_fixup_hp_gpio_micmute_led(codec
, fix
, action
);
4842 static void alc236_fixup_hp_mute_led(struct hda_codec
*codec
,
4843 const struct hda_fixup
*fix
, int action
)
4845 alc236_fixup_hp_mute_led_coefbit(codec
, fix
, action
);
4846 alc236_fixup_hp_coef_micmute_led(codec
, fix
, action
);
4849 static void alc236_fixup_hp_micmute_led_vref(struct hda_codec
*codec
,
4850 const struct hda_fixup
*fix
, int action
)
4852 struct alc_spec
*spec
= codec
->spec
;
4854 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4855 spec
->cap_mute_led_nid
= 0x1a;
4856 snd_hda_gen_add_micmute_led_cdev(codec
, vref_micmute_led_set
);
4857 codec
->power_filter
= led_power_filter
;
4861 static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec
*codec
,
4862 const struct hda_fixup
*fix
, int action
)
4864 alc236_fixup_hp_mute_led_coefbit(codec
, fix
, action
);
4865 alc236_fixup_hp_micmute_led_vref(codec
, fix
, action
);
4868 static inline void alc298_samsung_write_coef_pack(struct hda_codec
*codec
,
4869 const unsigned short coefs
[2])
4871 alc_write_coef_idx(codec
, 0x23, coefs
[0]);
4872 alc_write_coef_idx(codec
, 0x25, coefs
[1]);
4873 alc_write_coef_idx(codec
, 0x26, 0xb011);
4876 struct alc298_samsung_amp_desc
{
4878 unsigned short init_seq
[2][2];
4881 static void alc298_fixup_samsung_amp(struct hda_codec
*codec
,
4882 const struct hda_fixup
*fix
, int action
)
4885 static const unsigned short init_seq
[][2] = {
4886 { 0x19, 0x00 }, { 0x20, 0xc0 }, { 0x22, 0x44 }, { 0x23, 0x08 },
4887 { 0x24, 0x85 }, { 0x25, 0x41 }, { 0x35, 0x40 }, { 0x36, 0x01 },
4888 { 0x38, 0x81 }, { 0x3a, 0x03 }, { 0x3b, 0x81 }, { 0x40, 0x3e },
4889 { 0x41, 0x07 }, { 0x400, 0x1 }
4891 static const struct alc298_samsung_amp_desc amps
[] = {
4892 { 0x3a, { { 0x18, 0x1 }, { 0x26, 0x0 } } },
4893 { 0x39, { { 0x18, 0x2 }, { 0x26, 0x1 } } }
4896 if (action
!= HDA_FIXUP_ACT_INIT
)
4899 for (i
= 0; i
< ARRAY_SIZE(amps
); i
++) {
4900 alc_write_coef_idx(codec
, 0x22, amps
[i
].nid
);
4902 for (j
= 0; j
< ARRAY_SIZE(amps
[i
].init_seq
); j
++)
4903 alc298_samsung_write_coef_pack(codec
, amps
[i
].init_seq
[j
]);
4905 for (j
= 0; j
< ARRAY_SIZE(init_seq
); j
++)
4906 alc298_samsung_write_coef_pack(codec
, init_seq
[j
]);
4910 struct alc298_samsung_v2_amp_desc
{
4913 unsigned short init_seq
[18][2];
4916 static const struct alc298_samsung_v2_amp_desc
4917 alc298_samsung_v2_amp_desc_tbl
[] = {
4919 { 0x23e1, 0x0000 }, { 0x2012, 0x006f }, { 0x2014, 0x0000 },
4920 { 0x201b, 0x0001 }, { 0x201d, 0x0001 }, { 0x201f, 0x00fe },
4921 { 0x2021, 0x0000 }, { 0x2022, 0x0010 }, { 0x203d, 0x0005 },
4922 { 0x203f, 0x0003 }, { 0x2050, 0x002c }, { 0x2076, 0x000e },
4923 { 0x207c, 0x004a }, { 0x2081, 0x0003 }, { 0x2399, 0x0003 },
4924 { 0x23a4, 0x00b5 }, { 0x23a5, 0x0001 }, { 0x23ba, 0x0094 }
4927 { 0x23e1, 0x0000 }, { 0x2012, 0x006f }, { 0x2014, 0x0000 },
4928 { 0x201b, 0x0002 }, { 0x201d, 0x0002 }, { 0x201f, 0x00fd },
4929 { 0x2021, 0x0001 }, { 0x2022, 0x0010 }, { 0x203d, 0x0005 },
4930 { 0x203f, 0x0003 }, { 0x2050, 0x002c }, { 0x2076, 0x000e },
4931 { 0x207c, 0x004a }, { 0x2081, 0x0003 }, { 0x2399, 0x0003 },
4932 { 0x23a4, 0x00b5 }, { 0x23a5, 0x0001 }, { 0x23ba, 0x0094 }
4935 { 0x23e1, 0x0000 }, { 0x2012, 0x006f }, { 0x2014, 0x0000 },
4936 { 0x201b, 0x0001 }, { 0x201d, 0x0001 }, { 0x201f, 0x00fe },
4937 { 0x2021, 0x0000 }, { 0x2022, 0x0010 }, { 0x203d, 0x0005 },
4938 { 0x203f, 0x0003 }, { 0x2050, 0x002c }, { 0x2076, 0x000e },
4939 { 0x207c, 0x004a }, { 0x2081, 0x0003 }, { 0x23ba, 0x008d }
4942 { 0x23e1, 0x0000 }, { 0x2012, 0x006f }, { 0x2014, 0x0000 },
4943 { 0x201b, 0x0002 }, { 0x201d, 0x0002 }, { 0x201f, 0x00fd },
4944 { 0x2021, 0x0001 }, { 0x2022, 0x0010 }, { 0x203d, 0x0005 },
4945 { 0x203f, 0x0003 }, { 0x2050, 0x002c }, { 0x2076, 0x000e },
4946 { 0x207c, 0x004a }, { 0x2081, 0x0003 }, { 0x23ba, 0x008d }
4950 static void alc298_samsung_v2_enable_amps(struct hda_codec
*codec
)
4952 struct alc_spec
*spec
= codec
->spec
;
4953 static const unsigned short enable_seq
[][2] = {
4954 { 0x203a, 0x0081 }, { 0x23ff, 0x0001 },
4958 for (i
= 0; i
< spec
->num_speaker_amps
; i
++) {
4959 alc_write_coef_idx(codec
, 0x22, alc298_samsung_v2_amp_desc_tbl
[i
].nid
);
4960 for (j
= 0; j
< ARRAY_SIZE(enable_seq
); j
++)
4961 alc298_samsung_write_coef_pack(codec
, enable_seq
[j
]);
4962 codec_dbg(codec
, "alc298_samsung_v2: Enabled speaker amp 0x%02x\n",
4963 alc298_samsung_v2_amp_desc_tbl
[i
].nid
);
4967 static void alc298_samsung_v2_disable_amps(struct hda_codec
*codec
)
4969 struct alc_spec
*spec
= codec
->spec
;
4970 static const unsigned short disable_seq
[][2] = {
4971 { 0x23ff, 0x0000 }, { 0x203a, 0x0080 },
4975 for (i
= 0; i
< spec
->num_speaker_amps
; i
++) {
4976 alc_write_coef_idx(codec
, 0x22, alc298_samsung_v2_amp_desc_tbl
[i
].nid
);
4977 for (j
= 0; j
< ARRAY_SIZE(disable_seq
); j
++)
4978 alc298_samsung_write_coef_pack(codec
, disable_seq
[j
]);
4979 codec_dbg(codec
, "alc298_samsung_v2: Disabled speaker amp 0x%02x\n",
4980 alc298_samsung_v2_amp_desc_tbl
[i
].nid
);
4984 static void alc298_samsung_v2_playback_hook(struct hda_pcm_stream
*hinfo
,
4985 struct hda_codec
*codec
,
4986 struct snd_pcm_substream
*substream
,
4989 /* Dynamically enable/disable speaker amps before and after playback */
4990 if (action
== HDA_GEN_PCM_ACT_OPEN
)
4991 alc298_samsung_v2_enable_amps(codec
);
4992 if (action
== HDA_GEN_PCM_ACT_CLOSE
)
4993 alc298_samsung_v2_disable_amps(codec
);
4996 static void alc298_samsung_v2_init_amps(struct hda_codec
*codec
,
4997 int num_speaker_amps
)
4999 struct alc_spec
*spec
= codec
->spec
;
5002 /* Set spec's num_speaker_amps before doing anything else */
5003 spec
->num_speaker_amps
= num_speaker_amps
;
5005 /* Disable speaker amps before init to prevent any physical damage */
5006 alc298_samsung_v2_disable_amps(codec
);
5008 /* Initialize the speaker amps */
5009 for (i
= 0; i
< spec
->num_speaker_amps
; i
++) {
5010 alc_write_coef_idx(codec
, 0x22, alc298_samsung_v2_amp_desc_tbl
[i
].nid
);
5011 for (j
= 0; j
< alc298_samsung_v2_amp_desc_tbl
[i
].init_seq_size
; j
++) {
5012 alc298_samsung_write_coef_pack(codec
,
5013 alc298_samsung_v2_amp_desc_tbl
[i
].init_seq
[j
]);
5015 alc_write_coef_idx(codec
, 0x89, 0x0);
5016 codec_dbg(codec
, "alc298_samsung_v2: Initialized speaker amp 0x%02x\n",
5017 alc298_samsung_v2_amp_desc_tbl
[i
].nid
);
5020 /* register hook to enable speaker amps only when they are needed */
5021 spec
->gen
.pcm_playback_hook
= alc298_samsung_v2_playback_hook
;
5024 static void alc298_fixup_samsung_amp_v2_2_amps(struct hda_codec
*codec
,
5025 const struct hda_fixup
*fix
, int action
)
5027 if (action
== HDA_FIXUP_ACT_PROBE
)
5028 alc298_samsung_v2_init_amps(codec
, 2);
5031 static void alc298_fixup_samsung_amp_v2_4_amps(struct hda_codec
*codec
,
5032 const struct hda_fixup
*fix
, int action
)
5034 if (action
== HDA_FIXUP_ACT_PROBE
)
5035 alc298_samsung_v2_init_amps(codec
, 4);
5038 static void gpio2_mic_hotkey_event(struct hda_codec
*codec
,
5039 struct hda_jack_callback
*event
)
5041 struct alc_spec
*spec
= codec
->spec
;
5043 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
5044 send both key on and key off event for every interrupt. */
5045 input_report_key(spec
->kb_dev
, spec
->alc_mute_keycode_map
[ALC_KEY_MICMUTE_INDEX
], 1);
5046 input_sync(spec
->kb_dev
);
5047 input_report_key(spec
->kb_dev
, spec
->alc_mute_keycode_map
[ALC_KEY_MICMUTE_INDEX
], 0);
5048 input_sync(spec
->kb_dev
);
5051 static int alc_register_micmute_input_device(struct hda_codec
*codec
)
5053 struct alc_spec
*spec
= codec
->spec
;
5056 spec
->kb_dev
= input_allocate_device();
5057 if (!spec
->kb_dev
) {
5058 codec_err(codec
, "Out of memory (input_allocate_device)\n");
5062 spec
->alc_mute_keycode_map
[ALC_KEY_MICMUTE_INDEX
] = KEY_MICMUTE
;
5064 spec
->kb_dev
->name
= "Microphone Mute Button";
5065 spec
->kb_dev
->evbit
[0] = BIT_MASK(EV_KEY
);
5066 spec
->kb_dev
->keycodesize
= sizeof(spec
->alc_mute_keycode_map
[0]);
5067 spec
->kb_dev
->keycodemax
= ARRAY_SIZE(spec
->alc_mute_keycode_map
);
5068 spec
->kb_dev
->keycode
= spec
->alc_mute_keycode_map
;
5069 for (i
= 0; i
< ARRAY_SIZE(spec
->alc_mute_keycode_map
); i
++)
5070 set_bit(spec
->alc_mute_keycode_map
[i
], spec
->kb_dev
->keybit
);
5072 if (input_register_device(spec
->kb_dev
)) {
5073 codec_err(codec
, "input_register_device failed\n");
5074 input_free_device(spec
->kb_dev
);
5075 spec
->kb_dev
= NULL
;
5082 /* GPIO1 = set according to SKU external amp
5083 * GPIO2 = mic mute hotkey
5085 * GPIO4 = mic mute LED
5087 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec
*codec
,
5088 const struct hda_fixup
*fix
, int action
)
5090 struct alc_spec
*spec
= codec
->spec
;
5092 alc_fixup_hp_gpio_led(codec
, action
, 0x08, 0x10);
5093 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
5094 spec
->init_amp
= ALC_INIT_DEFAULT
;
5095 if (alc_register_micmute_input_device(codec
) != 0)
5098 spec
->gpio_mask
|= 0x06;
5099 spec
->gpio_dir
|= 0x02;
5100 spec
->gpio_data
|= 0x02;
5101 snd_hda_codec_write_cache(codec
, codec
->core
.afg
, 0,
5102 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK
, 0x04);
5103 snd_hda_jack_detect_enable_callback(codec
, codec
->core
.afg
,
5104 gpio2_mic_hotkey_event
);
5112 case HDA_FIXUP_ACT_FREE
:
5113 input_unregister_device(spec
->kb_dev
);
5114 spec
->kb_dev
= NULL
;
5118 /* Line2 = mic mute hotkey
5119 * GPIO2 = mic mute LED
5121 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec
*codec
,
5122 const struct hda_fixup
*fix
, int action
)
5124 struct alc_spec
*spec
= codec
->spec
;
5126 alc_fixup_hp_gpio_led(codec
, action
, 0, 0x04);
5127 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
5128 spec
->init_amp
= ALC_INIT_DEFAULT
;
5129 if (alc_register_micmute_input_device(codec
) != 0)
5132 snd_hda_jack_detect_enable_callback(codec
, 0x1b,
5133 gpio2_mic_hotkey_event
);
5141 case HDA_FIXUP_ACT_FREE
:
5142 input_unregister_device(spec
->kb_dev
);
5143 spec
->kb_dev
= NULL
;
5147 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec
*codec
,
5148 const struct hda_fixup
*fix
, int action
)
5150 struct alc_spec
*spec
= codec
->spec
;
5152 alc269_fixup_hp_mute_led_micx(codec
, fix
, action
, 0x1a);
5153 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
5154 spec
->cap_mute_led_nid
= 0x18;
5155 snd_hda_gen_add_micmute_led_cdev(codec
, vref_micmute_led_set
);
5159 static void alc233_fixup_lenovo_low_en_micmute_led(struct hda_codec
*codec
,
5160 const struct hda_fixup
*fix
, int action
)
5162 struct alc_spec
*spec
= codec
->spec
;
5164 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
5165 spec
->micmute_led_polarity
= 1;
5166 alc233_fixup_lenovo_line2_mic_hotkey(codec
, fix
, action
);
5169 static void alc_hp_mute_disable(struct hda_codec
*codec
, unsigned int delay
)
5173 snd_hda_codec_write(codec
, 0x21, 0,
5174 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
5176 snd_hda_codec_write(codec
, 0x21, 0,
5177 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
5181 static void alc_hp_enable_unmute(struct hda_codec
*codec
, unsigned int delay
)
5185 snd_hda_codec_write(codec
, 0x21, 0,
5186 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
5188 snd_hda_codec_write(codec
, 0x21, 0,
5189 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
);
5193 static const struct coef_fw alc225_pre_hsmode
[] = {
5194 UPDATE_COEF(0x4a, 1<<8, 0),
5195 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
5196 UPDATE_COEF(0x63, 3<<14, 3<<14),
5197 UPDATE_COEF(0x4a, 3<<4, 2<<4),
5198 UPDATE_COEF(0x4a, 3<<10, 3<<10),
5199 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
5200 UPDATE_COEF(0x4a, 3<<10, 0),
5204 static void alc_headset_mode_unplugged(struct hda_codec
*codec
)
5206 struct alc_spec
*spec
= codec
->spec
;
5207 static const struct coef_fw coef0255
[] = {
5208 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
5209 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
5210 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5211 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
5212 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
5215 static const struct coef_fw coef0256
[] = {
5216 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
5217 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
5218 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
5219 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
5220 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5223 static const struct coef_fw coef0233
[] = {
5224 WRITE_COEF(0x1b, 0x0c0b),
5225 WRITE_COEF(0x45, 0xc429),
5226 UPDATE_COEF(0x35, 0x4000, 0),
5227 WRITE_COEF(0x06, 0x2104),
5228 WRITE_COEF(0x1a, 0x0001),
5229 WRITE_COEF(0x26, 0x0004),
5230 WRITE_COEF(0x32, 0x42a3),
5233 static const struct coef_fw coef0288
[] = {
5234 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
5235 UPDATE_COEF(0x50, 0x2000, 0x2000),
5236 UPDATE_COEF(0x56, 0x0006, 0x0006),
5237 UPDATE_COEF(0x66, 0x0008, 0),
5238 UPDATE_COEF(0x67, 0x2000, 0),
5241 static const struct coef_fw coef0298
[] = {
5242 UPDATE_COEF(0x19, 0x1300, 0x0300),
5245 static const struct coef_fw coef0292
[] = {
5246 WRITE_COEF(0x76, 0x000e),
5247 WRITE_COEF(0x6c, 0x2400),
5248 WRITE_COEF(0x18, 0x7308),
5249 WRITE_COEF(0x6b, 0xc429),
5252 static const struct coef_fw coef0293
[] = {
5253 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
5254 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
5255 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
5256 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
5257 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
5258 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
5261 static const struct coef_fw coef0668
[] = {
5262 WRITE_COEF(0x15, 0x0d40),
5263 WRITE_COEF(0xb7, 0x802b),
5266 static const struct coef_fw coef0225
[] = {
5267 UPDATE_COEF(0x63, 3<<14, 0),
5270 static const struct coef_fw coef0274
[] = {
5271 UPDATE_COEF(0x4a, 0x0100, 0),
5272 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
5273 UPDATE_COEF(0x6b, 0xf000, 0x5000),
5274 UPDATE_COEF(0x4a, 0x0010, 0),
5275 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
5276 WRITE_COEF(0x45, 0x5289),
5277 UPDATE_COEF(0x4a, 0x0c00, 0),
5281 if (spec
->no_internal_mic_pin
) {
5282 alc_update_coef_idx(codec
, 0x45, 0xf<<12 | 1<<10, 5<<12);
5286 switch (codec
->core
.vendor_id
) {
5288 alc_process_coef_fw(codec
, coef0255
);
5294 alc_hp_mute_disable(codec
, 75);
5295 alc_process_coef_fw(codec
, coef0256
);
5300 alc_process_coef_fw(codec
, coef0274
);
5304 alc_process_coef_fw(codec
, coef0233
);
5308 alc_process_coef_fw(codec
, coef0288
);
5311 alc_process_coef_fw(codec
, coef0298
);
5312 alc_process_coef_fw(codec
, coef0288
);
5315 alc_process_coef_fw(codec
, coef0292
);
5318 alc_process_coef_fw(codec
, coef0293
);
5321 alc_process_coef_fw(codec
, coef0668
);
5329 alc_hp_mute_disable(codec
, 75);
5330 alc_process_coef_fw(codec
, alc225_pre_hsmode
);
5331 alc_process_coef_fw(codec
, coef0225
);
5334 alc_update_coefex_idx(codec
, 0x57, 0x5, 1<<14, 0);
5337 codec_dbg(codec
, "Headset jack set to unplugged mode.\n");
5341 static void alc_headset_mode_mic_in(struct hda_codec
*codec
, hda_nid_t hp_pin
,
5344 static const struct coef_fw coef0255
[] = {
5345 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
5346 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5349 static const struct coef_fw coef0256
[] = {
5350 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
5351 WRITE_COEFEX(0x57, 0x03, 0x09a3),
5352 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5355 static const struct coef_fw coef0233
[] = {
5356 UPDATE_COEF(0x35, 0, 1<<14),
5357 WRITE_COEF(0x06, 0x2100),
5358 WRITE_COEF(0x1a, 0x0021),
5359 WRITE_COEF(0x26, 0x008c),
5362 static const struct coef_fw coef0288
[] = {
5363 UPDATE_COEF(0x4f, 0x00c0, 0),
5364 UPDATE_COEF(0x50, 0x2000, 0),
5365 UPDATE_COEF(0x56, 0x0006, 0),
5366 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
5367 UPDATE_COEF(0x66, 0x0008, 0x0008),
5368 UPDATE_COEF(0x67, 0x2000, 0x2000),
5371 static const struct coef_fw coef0292
[] = {
5372 WRITE_COEF(0x19, 0xa208),
5373 WRITE_COEF(0x2e, 0xacf0),
5376 static const struct coef_fw coef0293
[] = {
5377 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
5378 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
5379 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5382 static const struct coef_fw coef0688
[] = {
5383 WRITE_COEF(0xb7, 0x802b),
5384 WRITE_COEF(0xb5, 0x1040),
5385 UPDATE_COEF(0xc3, 0, 1<<12),
5388 static const struct coef_fw coef0225
[] = {
5389 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
5390 UPDATE_COEF(0x4a, 3<<4, 2<<4),
5391 UPDATE_COEF(0x63, 3<<14, 0),
5394 static const struct coef_fw coef0274
[] = {
5395 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
5396 UPDATE_COEF(0x4a, 0x0010, 0),
5397 UPDATE_COEF(0x6b, 0xf000, 0),
5401 switch (codec
->core
.vendor_id
) {
5403 alc_write_coef_idx(codec
, 0x45, 0xc489);
5404 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
5405 alc_process_coef_fw(codec
, coef0255
);
5406 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
5412 alc_write_coef_idx(codec
, 0x45, 0xc489);
5413 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
5414 alc_process_coef_fw(codec
, coef0256
);
5415 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
5420 alc_write_coef_idx(codec
, 0x45, 0x4689);
5421 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
5422 alc_process_coef_fw(codec
, coef0274
);
5423 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
5427 alc_write_coef_idx(codec
, 0x45, 0xc429);
5428 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
5429 alc_process_coef_fw(codec
, coef0233
);
5430 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
5435 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
5436 alc_process_coef_fw(codec
, coef0288
);
5437 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
5440 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
5441 alc_process_coef_fw(codec
, coef0292
);
5444 /* Set to TRS mode */
5445 alc_write_coef_idx(codec
, 0x45, 0xc429);
5446 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
5447 alc_process_coef_fw(codec
, coef0293
);
5448 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
5451 alc_update_coefex_idx(codec
, 0x57, 0x5, 0, 1<<14);
5455 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
5456 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
5459 alc_write_coef_idx(codec
, 0x11, 0x0001);
5460 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
5461 alc_process_coef_fw(codec
, coef0688
);
5462 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
5470 alc_process_coef_fw(codec
, alc225_pre_hsmode
);
5471 alc_update_coef_idx(codec
, 0x45, 0x3f<<10, 0x31<<10);
5472 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
5473 alc_process_coef_fw(codec
, coef0225
);
5474 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
5477 codec_dbg(codec
, "Headset jack set to mic-in mode.\n");
5480 static void alc_headset_mode_default(struct hda_codec
*codec
)
5482 static const struct coef_fw coef0225
[] = {
5483 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
5484 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
5485 UPDATE_COEF(0x49, 3<<8, 0<<8),
5486 UPDATE_COEF(0x4a, 3<<4, 3<<4),
5487 UPDATE_COEF(0x63, 3<<14, 0),
5488 UPDATE_COEF(0x67, 0xf000, 0x3000),
5491 static const struct coef_fw coef0255
[] = {
5492 WRITE_COEF(0x45, 0xc089),
5493 WRITE_COEF(0x45, 0xc489),
5494 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5495 WRITE_COEF(0x49, 0x0049),
5498 static const struct coef_fw coef0256
[] = {
5499 WRITE_COEF(0x45, 0xc489),
5500 WRITE_COEFEX(0x57, 0x03, 0x0da3),
5501 WRITE_COEF(0x49, 0x0049),
5502 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5503 WRITE_COEF(0x06, 0x6100),
5506 static const struct coef_fw coef0233
[] = {
5507 WRITE_COEF(0x06, 0x2100),
5508 WRITE_COEF(0x32, 0x4ea3),
5511 static const struct coef_fw coef0288
[] = {
5512 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
5513 UPDATE_COEF(0x50, 0x2000, 0x2000),
5514 UPDATE_COEF(0x56, 0x0006, 0x0006),
5515 UPDATE_COEF(0x66, 0x0008, 0),
5516 UPDATE_COEF(0x67, 0x2000, 0),
5519 static const struct coef_fw coef0292
[] = {
5520 WRITE_COEF(0x76, 0x000e),
5521 WRITE_COEF(0x6c, 0x2400),
5522 WRITE_COEF(0x6b, 0xc429),
5523 WRITE_COEF(0x18, 0x7308),
5526 static const struct coef_fw coef0293
[] = {
5527 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
5528 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
5529 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5532 static const struct coef_fw coef0688
[] = {
5533 WRITE_COEF(0x11, 0x0041),
5534 WRITE_COEF(0x15, 0x0d40),
5535 WRITE_COEF(0xb7, 0x802b),
5538 static const struct coef_fw coef0274
[] = {
5539 WRITE_COEF(0x45, 0x4289),
5540 UPDATE_COEF(0x4a, 0x0010, 0x0010),
5541 UPDATE_COEF(0x6b, 0x0f00, 0),
5542 UPDATE_COEF(0x49, 0x0300, 0x0300),
5546 switch (codec
->core
.vendor_id
) {
5553 alc_process_coef_fw(codec
, alc225_pre_hsmode
);
5554 alc_process_coef_fw(codec
, coef0225
);
5555 alc_hp_enable_unmute(codec
, 75);
5558 alc_process_coef_fw(codec
, coef0255
);
5564 alc_write_coef_idx(codec
, 0x1b, 0x0e4b);
5565 alc_write_coef_idx(codec
, 0x45, 0xc089);
5567 alc_process_coef_fw(codec
, coef0256
);
5568 alc_hp_enable_unmute(codec
, 75);
5573 alc_process_coef_fw(codec
, coef0274
);
5577 alc_process_coef_fw(codec
, coef0233
);
5582 alc_process_coef_fw(codec
, coef0288
);
5585 alc_process_coef_fw(codec
, coef0292
);
5588 alc_process_coef_fw(codec
, coef0293
);
5591 alc_process_coef_fw(codec
, coef0688
);
5594 alc_update_coefex_idx(codec
, 0x57, 0x5, 1<<14, 0);
5597 codec_dbg(codec
, "Headset jack set to headphone (default) mode.\n");
5601 static void alc_headset_mode_ctia(struct hda_codec
*codec
)
5605 static const struct coef_fw coef0255
[] = {
5606 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5607 WRITE_COEF(0x1b, 0x0c2b),
5608 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5611 static const struct coef_fw coef0256
[] = {
5612 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5613 WRITE_COEF(0x1b, 0x0e6b),
5616 static const struct coef_fw coef0233
[] = {
5617 WRITE_COEF(0x45, 0xd429),
5618 WRITE_COEF(0x1b, 0x0c2b),
5619 WRITE_COEF(0x32, 0x4ea3),
5622 static const struct coef_fw coef0288
[] = {
5623 UPDATE_COEF(0x50, 0x2000, 0x2000),
5624 UPDATE_COEF(0x56, 0x0006, 0x0006),
5625 UPDATE_COEF(0x66, 0x0008, 0),
5626 UPDATE_COEF(0x67, 0x2000, 0),
5629 static const struct coef_fw coef0292
[] = {
5630 WRITE_COEF(0x6b, 0xd429),
5631 WRITE_COEF(0x76, 0x0008),
5632 WRITE_COEF(0x18, 0x7388),
5635 static const struct coef_fw coef0293
[] = {
5636 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
5637 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5640 static const struct coef_fw coef0688
[] = {
5641 WRITE_COEF(0x11, 0x0001),
5642 WRITE_COEF(0x15, 0x0d60),
5643 WRITE_COEF(0xc3, 0x0000),
5646 static const struct coef_fw coef0225_1
[] = {
5647 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5648 UPDATE_COEF(0x63, 3<<14, 2<<14),
5651 static const struct coef_fw coef0225_2
[] = {
5652 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5653 UPDATE_COEF(0x63, 3<<14, 1<<14),
5657 switch (codec
->core
.vendor_id
) {
5659 alc_process_coef_fw(codec
, coef0255
);
5665 alc_process_coef_fw(codec
, coef0256
);
5666 alc_hp_enable_unmute(codec
, 75);
5671 alc_write_coef_idx(codec
, 0x45, 0xd689);
5675 alc_process_coef_fw(codec
, coef0233
);
5678 val
= alc_read_coef_idx(codec
, 0x50);
5679 if (val
& (1 << 12)) {
5680 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0020);
5681 alc_update_coef_idx(codec
, 0x4f, 0xfcc0, 0xd400);
5684 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0010);
5685 alc_update_coef_idx(codec
, 0x4f, 0xfcc0, 0xd400);
5691 alc_update_coef_idx(codec
, 0x4f, 0xfcc0, 0xd400);
5693 alc_process_coef_fw(codec
, coef0288
);
5696 alc_process_coef_fw(codec
, coef0292
);
5699 alc_process_coef_fw(codec
, coef0293
);
5702 alc_process_coef_fw(codec
, coef0688
);
5710 val
= alc_read_coef_idx(codec
, 0x45);
5712 alc_process_coef_fw(codec
, coef0225_2
);
5714 alc_process_coef_fw(codec
, coef0225_1
);
5715 alc_hp_enable_unmute(codec
, 75);
5718 alc_update_coefex_idx(codec
, 0x57, 0x5, 1<<14, 0);
5721 codec_dbg(codec
, "Headset jack set to iPhone-style headset mode.\n");
5725 static void alc_headset_mode_omtp(struct hda_codec
*codec
)
5727 static const struct coef_fw coef0255
[] = {
5728 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5729 WRITE_COEF(0x1b, 0x0c2b),
5730 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5733 static const struct coef_fw coef0256
[] = {
5734 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5735 WRITE_COEF(0x1b, 0x0e6b),
5738 static const struct coef_fw coef0233
[] = {
5739 WRITE_COEF(0x45, 0xe429),
5740 WRITE_COEF(0x1b, 0x0c2b),
5741 WRITE_COEF(0x32, 0x4ea3),
5744 static const struct coef_fw coef0288
[] = {
5745 UPDATE_COEF(0x50, 0x2000, 0x2000),
5746 UPDATE_COEF(0x56, 0x0006, 0x0006),
5747 UPDATE_COEF(0x66, 0x0008, 0),
5748 UPDATE_COEF(0x67, 0x2000, 0),
5751 static const struct coef_fw coef0292
[] = {
5752 WRITE_COEF(0x6b, 0xe429),
5753 WRITE_COEF(0x76, 0x0008),
5754 WRITE_COEF(0x18, 0x7388),
5757 static const struct coef_fw coef0293
[] = {
5758 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
5759 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5762 static const struct coef_fw coef0688
[] = {
5763 WRITE_COEF(0x11, 0x0001),
5764 WRITE_COEF(0x15, 0x0d50),
5765 WRITE_COEF(0xc3, 0x0000),
5768 static const struct coef_fw coef0225
[] = {
5769 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5770 UPDATE_COEF(0x63, 3<<14, 2<<14),
5774 switch (codec
->core
.vendor_id
) {
5776 alc_process_coef_fw(codec
, coef0255
);
5782 alc_process_coef_fw(codec
, coef0256
);
5783 alc_hp_enable_unmute(codec
, 75);
5788 alc_write_coef_idx(codec
, 0x45, 0xe689);
5792 alc_process_coef_fw(codec
, coef0233
);
5795 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0010);/* Headset output enable */
5796 alc_update_coef_idx(codec
, 0x4f, 0xfcc0, 0xe400);
5801 alc_update_coef_idx(codec
, 0x4f, 0xfcc0, 0xe400);
5803 alc_process_coef_fw(codec
, coef0288
);
5806 alc_process_coef_fw(codec
, coef0292
);
5809 alc_process_coef_fw(codec
, coef0293
);
5812 alc_process_coef_fw(codec
, coef0688
);
5820 alc_process_coef_fw(codec
, coef0225
);
5821 alc_hp_enable_unmute(codec
, 75);
5824 codec_dbg(codec
, "Headset jack set to Nokia-style headset mode.\n");
5827 static void alc_determine_headset_type(struct hda_codec
*codec
)
5830 bool is_ctia
= false;
5831 struct alc_spec
*spec
= codec
->spec
;
5832 static const struct coef_fw coef0255
[] = {
5833 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
5834 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
5838 static const struct coef_fw coef0288
[] = {
5839 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
5842 static const struct coef_fw coef0298
[] = {
5843 UPDATE_COEF(0x50, 0x2000, 0x2000),
5844 UPDATE_COEF(0x56, 0x0006, 0x0006),
5845 UPDATE_COEF(0x66, 0x0008, 0),
5846 UPDATE_COEF(0x67, 0x2000, 0),
5847 UPDATE_COEF(0x19, 0x1300, 0x1300),
5850 static const struct coef_fw coef0293
[] = {
5851 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
5852 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
5855 static const struct coef_fw coef0688
[] = {
5856 WRITE_COEF(0x11, 0x0001),
5857 WRITE_COEF(0xb7, 0x802b),
5858 WRITE_COEF(0x15, 0x0d60),
5859 WRITE_COEF(0xc3, 0x0c00),
5862 static const struct coef_fw coef0274
[] = {
5863 UPDATE_COEF(0x4a, 0x0010, 0),
5864 UPDATE_COEF(0x4a, 0x8000, 0),
5865 WRITE_COEF(0x45, 0xd289),
5866 UPDATE_COEF(0x49, 0x0300, 0x0300),
5870 if (spec
->no_internal_mic_pin
) {
5871 alc_update_coef_idx(codec
, 0x45, 0xf<<12 | 1<<10, 5<<12);
5875 switch (codec
->core
.vendor_id
) {
5877 alc_process_coef_fw(codec
, coef0255
);
5879 val
= alc_read_coef_idx(codec
, 0x46);
5880 is_ctia
= (val
& 0x0070) == 0x0070;
5886 alc_write_coef_idx(codec
, 0x1b, 0x0e4b);
5887 alc_write_coef_idx(codec
, 0x06, 0x6104);
5888 alc_write_coefex_idx(codec
, 0x57, 0x3, 0x09a3);
5890 alc_process_coef_fw(codec
, coef0255
);
5892 val
= alc_read_coef_idx(codec
, 0x46);
5893 is_ctia
= (val
& 0x0070) == 0x0070;
5895 alc_write_coef_idx(codec
, 0x45, 0xe089);
5897 val
= alc_read_coef_idx(codec
, 0x46);
5898 if ((val
& 0x0070) == 0x0070)
5903 alc_write_coefex_idx(codec
, 0x57, 0x3, 0x0da3);
5904 alc_update_coefex_idx(codec
, 0x57, 0x5, 1<<14, 0);
5909 alc_process_coef_fw(codec
, coef0274
);
5911 val
= alc_read_coef_idx(codec
, 0x46);
5912 is_ctia
= (val
& 0x00f0) == 0x00f0;
5916 alc_write_coef_idx(codec
, 0x45, 0xd029);
5918 val
= alc_read_coef_idx(codec
, 0x46);
5919 is_ctia
= (val
& 0x0070) == 0x0070;
5922 snd_hda_codec_write(codec
, 0x21, 0,
5923 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
5925 snd_hda_codec_write(codec
, 0x21, 0,
5926 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
5929 val
= alc_read_coef_idx(codec
, 0x50);
5930 if (val
& (1 << 12)) {
5931 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0020);
5932 alc_process_coef_fw(codec
, coef0288
);
5934 val
= alc_read_coef_idx(codec
, 0x50);
5935 is_ctia
= (val
& 0x0070) == 0x0070;
5937 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0010);
5938 alc_process_coef_fw(codec
, coef0288
);
5940 val
= alc_read_coef_idx(codec
, 0x50);
5941 is_ctia
= (val
& 0x0070) == 0x0070;
5943 alc_process_coef_fw(codec
, coef0298
);
5944 snd_hda_codec_write(codec
, 0x21, 0,
5945 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
);
5947 snd_hda_codec_write(codec
, 0x21, 0,
5948 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
);
5952 alc_process_coef_fw(codec
, coef0288
);
5954 val
= alc_read_coef_idx(codec
, 0x50);
5955 is_ctia
= (val
& 0x0070) == 0x0070;
5958 alc_write_coef_idx(codec
, 0x6b, 0xd429);
5960 val
= alc_read_coef_idx(codec
, 0x6c);
5961 is_ctia
= (val
& 0x001c) == 0x001c;
5964 alc_process_coef_fw(codec
, coef0293
);
5966 val
= alc_read_coef_idx(codec
, 0x46);
5967 is_ctia
= (val
& 0x0070) == 0x0070;
5970 alc_process_coef_fw(codec
, coef0688
);
5972 val
= alc_read_coef_idx(codec
, 0xbe);
5973 is_ctia
= (val
& 0x1c02) == 0x1c02;
5981 alc_process_coef_fw(codec
, alc225_pre_hsmode
);
5982 alc_update_coef_idx(codec
, 0x67, 0xf000, 0x1000);
5983 val
= alc_read_coef_idx(codec
, 0x45);
5984 if (val
& (1 << 9)) {
5985 alc_update_coef_idx(codec
, 0x45, 0x3f<<10, 0x34<<10);
5986 alc_update_coef_idx(codec
, 0x49, 3<<8, 2<<8);
5988 val
= alc_read_coef_idx(codec
, 0x46);
5989 is_ctia
= (val
& 0x00f0) == 0x00f0;
5991 alc_update_coef_idx(codec
, 0x45, 0x3f<<10, 0x34<<10);
5992 alc_update_coef_idx(codec
, 0x49, 3<<8, 1<<8);
5994 val
= alc_read_coef_idx(codec
, 0x46);
5995 is_ctia
= (val
& 0x00f0) == 0x00f0;
5998 alc_update_coef_idx(codec
, 0x45, 0x3f<<10, 0x38<<10);
5999 alc_update_coef_idx(codec
, 0x49, 3<<8, 1<<8);
6001 val
= alc_read_coef_idx(codec
, 0x46);
6002 if ((val
& 0x00f0) == 0x00f0)
6007 alc_update_coef_idx(codec
, 0x4a, 7<<6, 7<<6);
6008 alc_update_coef_idx(codec
, 0x4a, 3<<4, 3<<4);
6009 alc_update_coef_idx(codec
, 0x67, 0xf000, 0x3000);
6016 codec_dbg(codec
, "Headset jack detected iPhone-style headset: %s\n",
6017 str_yes_no(is_ctia
));
6018 spec
->current_headset_type
= is_ctia
? ALC_HEADSET_TYPE_CTIA
: ALC_HEADSET_TYPE_OMTP
;
6021 static void alc_update_headset_mode(struct hda_codec
*codec
)
6023 struct alc_spec
*spec
= codec
->spec
;
6025 hda_nid_t mux_pin
= spec
->gen
.imux_pins
[spec
->gen
.cur_mux
[0]];
6026 hda_nid_t hp_pin
= alc_get_hp_pin(spec
);
6028 int new_headset_mode
;
6030 if (!snd_hda_jack_detect(codec
, hp_pin
))
6031 new_headset_mode
= ALC_HEADSET_MODE_UNPLUGGED
;
6032 else if (mux_pin
== spec
->headset_mic_pin
)
6033 new_headset_mode
= ALC_HEADSET_MODE_HEADSET
;
6034 else if (mux_pin
== spec
->headphone_mic_pin
)
6035 new_headset_mode
= ALC_HEADSET_MODE_MIC
;
6037 new_headset_mode
= ALC_HEADSET_MODE_HEADPHONE
;
6039 if (new_headset_mode
== spec
->current_headset_mode
) {
6040 snd_hda_gen_update_outputs(codec
);
6044 switch (new_headset_mode
) {
6045 case ALC_HEADSET_MODE_UNPLUGGED
:
6046 alc_headset_mode_unplugged(codec
);
6047 spec
->current_headset_mode
= ALC_HEADSET_MODE_UNKNOWN
;
6048 spec
->current_headset_type
= ALC_HEADSET_TYPE_UNKNOWN
;
6049 spec
->gen
.hp_jack_present
= false;
6051 case ALC_HEADSET_MODE_HEADSET
:
6052 if (spec
->current_headset_type
== ALC_HEADSET_TYPE_UNKNOWN
)
6053 alc_determine_headset_type(codec
);
6054 if (spec
->current_headset_type
== ALC_HEADSET_TYPE_CTIA
)
6055 alc_headset_mode_ctia(codec
);
6056 else if (spec
->current_headset_type
== ALC_HEADSET_TYPE_OMTP
)
6057 alc_headset_mode_omtp(codec
);
6058 spec
->gen
.hp_jack_present
= true;
6060 case ALC_HEADSET_MODE_MIC
:
6061 alc_headset_mode_mic_in(codec
, hp_pin
, spec
->headphone_mic_pin
);
6062 spec
->gen
.hp_jack_present
= false;
6064 case ALC_HEADSET_MODE_HEADPHONE
:
6065 alc_headset_mode_default(codec
);
6066 spec
->gen
.hp_jack_present
= true;
6069 if (new_headset_mode
!= ALC_HEADSET_MODE_MIC
) {
6070 snd_hda_set_pin_ctl_cache(codec
, hp_pin
,
6071 AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
);
6072 if (spec
->headphone_mic_pin
&& spec
->headphone_mic_pin
!= hp_pin
)
6073 snd_hda_set_pin_ctl_cache(codec
, spec
->headphone_mic_pin
,
6076 spec
->current_headset_mode
= new_headset_mode
;
6078 snd_hda_gen_update_outputs(codec
);
6081 static void alc_update_headset_mode_hook(struct hda_codec
*codec
,
6082 struct snd_kcontrol
*kcontrol
,
6083 struct snd_ctl_elem_value
*ucontrol
)
6085 alc_update_headset_mode(codec
);
6088 static void alc_update_headset_jack_cb(struct hda_codec
*codec
,
6089 struct hda_jack_callback
*jack
)
6091 snd_hda_gen_hp_automute(codec
, jack
);
6092 alc_update_headset_mode(codec
);
6095 static void alc_probe_headset_mode(struct hda_codec
*codec
)
6098 struct alc_spec
*spec
= codec
->spec
;
6099 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
6102 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
6103 if (cfg
->inputs
[i
].is_headset_mic
&& !spec
->headset_mic_pin
)
6104 spec
->headset_mic_pin
= cfg
->inputs
[i
].pin
;
6105 if (cfg
->inputs
[i
].is_headphone_mic
&& !spec
->headphone_mic_pin
)
6106 spec
->headphone_mic_pin
= cfg
->inputs
[i
].pin
;
6109 WARN_ON(spec
->gen
.cap_sync_hook
);
6110 spec
->gen
.cap_sync_hook
= alc_update_headset_mode_hook
;
6111 spec
->gen
.automute_hook
= alc_update_headset_mode
;
6112 spec
->gen
.hp_automute_hook
= alc_update_headset_jack_cb
;
6115 static void alc_fixup_headset_mode(struct hda_codec
*codec
,
6116 const struct hda_fixup
*fix
, int action
)
6118 struct alc_spec
*spec
= codec
->spec
;
6121 case HDA_FIXUP_ACT_PRE_PROBE
:
6122 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
| HDA_PINCFG_HEADPHONE_MIC
;
6124 case HDA_FIXUP_ACT_PROBE
:
6125 alc_probe_headset_mode(codec
);
6127 case HDA_FIXUP_ACT_INIT
:
6128 if (is_s3_resume(codec
) || is_s4_resume(codec
)) {
6129 spec
->current_headset_mode
= ALC_HEADSET_MODE_UNKNOWN
;
6130 spec
->current_headset_type
= ALC_HEADSET_TYPE_UNKNOWN
;
6132 alc_update_headset_mode(codec
);
6137 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec
*codec
,
6138 const struct hda_fixup
*fix
, int action
)
6140 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6141 struct alc_spec
*spec
= codec
->spec
;
6142 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
6145 alc_fixup_headset_mode(codec
, fix
, action
);
6148 static void alc255_set_default_jack_type(struct hda_codec
*codec
)
6150 /* Set to iphone type */
6151 static const struct coef_fw alc255fw
[] = {
6152 WRITE_COEF(0x1b, 0x880b),
6153 WRITE_COEF(0x45, 0xd089),
6154 WRITE_COEF(0x1b, 0x080b),
6155 WRITE_COEF(0x46, 0x0004),
6156 WRITE_COEF(0x1b, 0x0c0b),
6159 static const struct coef_fw alc256fw
[] = {
6160 WRITE_COEF(0x1b, 0x884b),
6161 WRITE_COEF(0x45, 0xd089),
6162 WRITE_COEF(0x1b, 0x084b),
6163 WRITE_COEF(0x46, 0x0004),
6164 WRITE_COEF(0x1b, 0x0c4b),
6167 switch (codec
->core
.vendor_id
) {
6169 alc_process_coef_fw(codec
, alc255fw
);
6175 alc_process_coef_fw(codec
, alc256fw
);
6181 static void alc_fixup_headset_mode_alc255(struct hda_codec
*codec
,
6182 const struct hda_fixup
*fix
, int action
)
6184 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6185 alc255_set_default_jack_type(codec
);
6187 alc_fixup_headset_mode(codec
, fix
, action
);
6190 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec
*codec
,
6191 const struct hda_fixup
*fix
, int action
)
6193 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6194 struct alc_spec
*spec
= codec
->spec
;
6195 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
6196 alc255_set_default_jack_type(codec
);
6199 alc_fixup_headset_mode(codec
, fix
, action
);
6202 static void alc288_update_headset_jack_cb(struct hda_codec
*codec
,
6203 struct hda_jack_callback
*jack
)
6205 struct alc_spec
*spec
= codec
->spec
;
6207 alc_update_headset_jack_cb(codec
, jack
);
6208 /* Headset Mic enable or disable, only for Dell Dino */
6209 alc_update_gpio_data(codec
, 0x40, spec
->gen
.hp_jack_present
);
6212 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec
*codec
,
6213 const struct hda_fixup
*fix
, int action
)
6215 alc_fixup_headset_mode(codec
, fix
, action
);
6216 if (action
== HDA_FIXUP_ACT_PROBE
) {
6217 struct alc_spec
*spec
= codec
->spec
;
6218 /* toggled via hp_automute_hook */
6219 spec
->gpio_mask
|= 0x40;
6220 spec
->gpio_dir
|= 0x40;
6221 spec
->gen
.hp_automute_hook
= alc288_update_headset_jack_cb
;
6225 static void alc_fixup_auto_mute_via_amp(struct hda_codec
*codec
,
6226 const struct hda_fixup
*fix
, int action
)
6228 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6229 struct alc_spec
*spec
= codec
->spec
;
6230 spec
->gen
.auto_mute_via_amp
= 1;
6234 static void alc_fixup_no_shutup(struct hda_codec
*codec
,
6235 const struct hda_fixup
*fix
, int action
)
6237 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6238 struct alc_spec
*spec
= codec
->spec
;
6239 spec
->no_shutup_pins
= 1;
6243 static void alc_fixup_disable_aamix(struct hda_codec
*codec
,
6244 const struct hda_fixup
*fix
, int action
)
6246 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6247 struct alc_spec
*spec
= codec
->spec
;
6248 /* Disable AA-loopback as it causes white noise */
6249 spec
->gen
.mixer_nid
= 0;
6253 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
6254 static void alc_fixup_tpt440_dock(struct hda_codec
*codec
,
6255 const struct hda_fixup
*fix
, int action
)
6257 static const struct hda_pintbl pincfgs
[] = {
6258 { 0x16, 0x21211010 }, /* dock headphone */
6259 { 0x19, 0x21a11010 }, /* dock mic */
6262 struct alc_spec
*spec
= codec
->spec
;
6264 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6265 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
6266 codec
->power_save_node
= 0; /* avoid click noises */
6267 snd_hda_apply_pincfgs(codec
, pincfgs
);
6271 static void alc_fixup_tpt470_dock(struct hda_codec
*codec
,
6272 const struct hda_fixup
*fix
, int action
)
6274 static const struct hda_pintbl pincfgs
[] = {
6275 { 0x17, 0x21211010 }, /* dock headphone */
6276 { 0x19, 0x21a11010 }, /* dock mic */
6279 struct alc_spec
*spec
= codec
->spec
;
6281 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6282 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
6283 snd_hda_apply_pincfgs(codec
, pincfgs
);
6284 } else if (action
== HDA_FIXUP_ACT_INIT
) {
6285 /* Enable DOCK device */
6286 snd_hda_codec_write(codec
, 0x17, 0,
6287 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3
, 0);
6288 /* Enable DOCK device */
6289 snd_hda_codec_write(codec
, 0x19, 0,
6290 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3
, 0);
6294 static void alc_fixup_tpt470_dacs(struct hda_codec
*codec
,
6295 const struct hda_fixup
*fix
, int action
)
6297 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
6298 * the speaker output becomes too low by some reason on Thinkpads with
6301 static const hda_nid_t preferred_pairs
[] = {
6302 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
6305 struct alc_spec
*spec
= codec
->spec
;
6307 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
6308 spec
->gen
.preferred_dacs
= preferred_pairs
;
6311 static void alc295_fixup_asus_dacs(struct hda_codec
*codec
,
6312 const struct hda_fixup
*fix
, int action
)
6314 static const hda_nid_t preferred_pairs
[] = {
6315 0x17, 0x02, 0x21, 0x03, 0
6317 struct alc_spec
*spec
= codec
->spec
;
6319 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
6320 spec
->gen
.preferred_dacs
= preferred_pairs
;
6323 static void alc_shutup_dell_xps13(struct hda_codec
*codec
)
6325 struct alc_spec
*spec
= codec
->spec
;
6326 int hp_pin
= alc_get_hp_pin(spec
);
6328 /* Prevent pop noises when headphones are plugged in */
6329 snd_hda_codec_write(codec
, hp_pin
, 0,
6330 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
6334 static void alc_fixup_dell_xps13(struct hda_codec
*codec
,
6335 const struct hda_fixup
*fix
, int action
)
6337 struct alc_spec
*spec
= codec
->spec
;
6338 struct hda_input_mux
*imux
= &spec
->gen
.input_mux
;
6342 case HDA_FIXUP_ACT_PRE_PROBE
:
6343 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
6344 * it causes a click noise at start up
6346 snd_hda_codec_set_pin_target(codec
, 0x19, PIN_VREFHIZ
);
6347 spec
->shutup
= alc_shutup_dell_xps13
;
6349 case HDA_FIXUP_ACT_PROBE
:
6350 /* Make the internal mic the default input source. */
6351 for (i
= 0; i
< imux
->num_items
; i
++) {
6352 if (spec
->gen
.imux_pins
[i
] == 0x12) {
6353 spec
->gen
.cur_mux
[0] = i
;
6361 static void alc_fixup_headset_mode_alc662(struct hda_codec
*codec
,
6362 const struct hda_fixup
*fix
, int action
)
6364 struct alc_spec
*spec
= codec
->spec
;
6366 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6367 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
6368 spec
->gen
.hp_mic
= 1; /* Mic-in is same pin as headphone */
6370 /* Disable boost for mic-in permanently. (This code is only called
6371 from quirks that guarantee that the headphone is at NID 0x1b.) */
6372 snd_hda_codec_write(codec
, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000);
6373 snd_hda_override_wcaps(codec
, 0x1b, get_wcaps(codec
, 0x1b) & ~AC_WCAP_IN_AMP
);
6375 alc_fixup_headset_mode(codec
, fix
, action
);
6378 static void alc_fixup_headset_mode_alc668(struct hda_codec
*codec
,
6379 const struct hda_fixup
*fix
, int action
)
6381 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6382 alc_write_coef_idx(codec
, 0xc4, 0x8000);
6383 alc_update_coef_idx(codec
, 0xc2, ~0xfe, 0);
6384 snd_hda_set_pin_ctl_cache(codec
, 0x18, 0);
6386 alc_fixup_headset_mode(codec
, fix
, action
);
6389 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
6390 static int find_ext_mic_pin(struct hda_codec
*codec
)
6392 struct alc_spec
*spec
= codec
->spec
;
6393 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
6395 unsigned int defcfg
;
6398 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
6399 if (cfg
->inputs
[i
].type
!= AUTO_PIN_MIC
)
6401 nid
= cfg
->inputs
[i
].pin
;
6402 defcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
6403 if (snd_hda_get_input_pin_attr(defcfg
) == INPUT_PIN_ATTR_INT
)
6411 static void alc271_hp_gate_mic_jack(struct hda_codec
*codec
,
6412 const struct hda_fixup
*fix
,
6415 struct alc_spec
*spec
= codec
->spec
;
6417 if (action
== HDA_FIXUP_ACT_PROBE
) {
6418 int mic_pin
= find_ext_mic_pin(codec
);
6419 int hp_pin
= alc_get_hp_pin(spec
);
6421 if (snd_BUG_ON(!mic_pin
|| !hp_pin
))
6423 snd_hda_jack_set_gating_jack(codec
, mic_pin
, hp_pin
);
6427 static void alc269_fixup_limit_int_mic_boost(struct hda_codec
*codec
,
6428 const struct hda_fixup
*fix
,
6431 struct alc_spec
*spec
= codec
->spec
;
6432 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
6435 /* The mic boosts on level 2 and 3 are too noisy
6436 on the internal mic input.
6437 Therefore limit the boost to 0 or 1. */
6439 if (action
!= HDA_FIXUP_ACT_PROBE
)
6442 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
6443 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
6444 unsigned int defcfg
;
6445 if (cfg
->inputs
[i
].type
!= AUTO_PIN_MIC
)
6447 defcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
6448 if (snd_hda_get_input_pin_attr(defcfg
) != INPUT_PIN_ATTR_INT
)
6451 snd_hda_override_amp_caps(codec
, nid
, HDA_INPUT
,
6452 (0x00 << AC_AMPCAP_OFFSET_SHIFT
) |
6453 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
6454 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT
) |
6455 (0 << AC_AMPCAP_MUTE_SHIFT
));
6459 static void alc283_hp_automute_hook(struct hda_codec
*codec
,
6460 struct hda_jack_callback
*jack
)
6462 struct alc_spec
*spec
= codec
->spec
;
6466 snd_hda_gen_hp_automute(codec
, jack
);
6468 vref
= spec
->gen
.hp_jack_present
? PIN_VREF80
: 0;
6471 snd_hda_codec_write(codec
, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
6475 static void alc283_fixup_chromebook(struct hda_codec
*codec
,
6476 const struct hda_fixup
*fix
, int action
)
6478 struct alc_spec
*spec
= codec
->spec
;
6481 case HDA_FIXUP_ACT_PRE_PROBE
:
6482 snd_hda_override_wcaps(codec
, 0x03, 0);
6483 /* Disable AA-loopback as it causes white noise */
6484 spec
->gen
.mixer_nid
= 0;
6486 case HDA_FIXUP_ACT_INIT
:
6487 /* MIC2-VREF control */
6488 /* Set to manual mode */
6489 alc_update_coef_idx(codec
, 0x06, 0x000c, 0);
6490 /* Enable Line1 input control by verb */
6491 alc_update_coef_idx(codec
, 0x1a, 0, 1 << 4);
6496 static void alc283_fixup_sense_combo_jack(struct hda_codec
*codec
,
6497 const struct hda_fixup
*fix
, int action
)
6499 struct alc_spec
*spec
= codec
->spec
;
6502 case HDA_FIXUP_ACT_PRE_PROBE
:
6503 spec
->gen
.hp_automute_hook
= alc283_hp_automute_hook
;
6505 case HDA_FIXUP_ACT_INIT
:
6506 /* MIC2-VREF control */
6507 /* Set to manual mode */
6508 alc_update_coef_idx(codec
, 0x06, 0x000c, 0);
6513 /* mute tablet speaker pin (0x14) via dock plugging in addition */
6514 static void asus_tx300_automute(struct hda_codec
*codec
)
6516 struct alc_spec
*spec
= codec
->spec
;
6517 snd_hda_gen_update_outputs(codec
);
6518 if (snd_hda_jack_detect(codec
, 0x1b))
6519 spec
->gen
.mute_bits
|= (1ULL << 0x14);
6522 static void alc282_fixup_asus_tx300(struct hda_codec
*codec
,
6523 const struct hda_fixup
*fix
, int action
)
6525 struct alc_spec
*spec
= codec
->spec
;
6526 static const struct hda_pintbl dock_pins
[] = {
6527 { 0x1b, 0x21114000 }, /* dock speaker pin */
6532 case HDA_FIXUP_ACT_PRE_PROBE
:
6533 spec
->init_amp
= ALC_INIT_DEFAULT
;
6534 /* TX300 needs to set up GPIO2 for the speaker amp */
6535 alc_setup_gpio(codec
, 0x04);
6536 snd_hda_apply_pincfgs(codec
, dock_pins
);
6537 spec
->gen
.auto_mute_via_amp
= 1;
6538 spec
->gen
.automute_hook
= asus_tx300_automute
;
6539 snd_hda_jack_detect_enable_callback(codec
, 0x1b,
6540 snd_hda_gen_hp_automute
);
6542 case HDA_FIXUP_ACT_PROBE
:
6543 spec
->init_amp
= ALC_INIT_DEFAULT
;
6545 case HDA_FIXUP_ACT_BUILD
:
6546 /* this is a bit tricky; give more sane names for the main
6547 * (tablet) speaker and the dock speaker, respectively
6549 rename_ctl(codec
, "Speaker Playback Switch",
6550 "Dock Speaker Playback Switch");
6551 rename_ctl(codec
, "Bass Speaker Playback Switch",
6552 "Speaker Playback Switch");
6557 static void alc290_fixup_mono_speakers(struct hda_codec
*codec
,
6558 const struct hda_fixup
*fix
, int action
)
6560 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6561 /* DAC node 0x03 is giving mono output. We therefore want to
6562 make sure 0x14 (front speaker) and 0x15 (headphones) use the
6563 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
6564 static const hda_nid_t conn1
[] = { 0x0c };
6565 snd_hda_override_conn_list(codec
, 0x14, ARRAY_SIZE(conn1
), conn1
);
6566 snd_hda_override_conn_list(codec
, 0x15, ARRAY_SIZE(conn1
), conn1
);
6570 static void alc298_fixup_speaker_volume(struct hda_codec
*codec
,
6571 const struct hda_fixup
*fix
, int action
)
6573 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6574 /* The speaker is routed to the Node 0x06 by a mistake, as a result
6575 we can't adjust the speaker's volume since this node does not has
6576 Amp-out capability. we change the speaker's route to:
6577 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
6578 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
6579 speaker's volume now. */
6581 static const hda_nid_t conn1
[] = { 0x0c };
6582 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn1
), conn1
);
6586 /* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
6587 static void alc295_fixup_disable_dac3(struct hda_codec
*codec
,
6588 const struct hda_fixup
*fix
, int action
)
6590 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6591 static const hda_nid_t conn
[] = { 0x02, 0x03 };
6592 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
6596 /* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */
6597 static void alc285_fixup_speaker2_to_dac1(struct hda_codec
*codec
,
6598 const struct hda_fixup
*fix
, int action
)
6600 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6601 static const hda_nid_t conn
[] = { 0x02 };
6602 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
6606 /* disable DAC3 (0x06) selection on NID 0x15 - share Speaker/Bass Speaker DAC 0x03 */
6607 static void alc294_fixup_bass_speaker_15(struct hda_codec
*codec
,
6608 const struct hda_fixup
*fix
, int action
)
6610 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6611 static const hda_nid_t conn
[] = { 0x02, 0x03 };
6612 snd_hda_override_conn_list(codec
, 0x15, ARRAY_SIZE(conn
), conn
);
6613 snd_hda_gen_add_micmute_led_cdev(codec
, NULL
);
6617 /* Hook to update amp GPIO4 for automute */
6618 static void alc280_hp_gpio4_automute_hook(struct hda_codec
*codec
,
6619 struct hda_jack_callback
*jack
)
6621 struct alc_spec
*spec
= codec
->spec
;
6623 snd_hda_gen_hp_automute(codec
, jack
);
6624 /* mute_led_polarity is set to 0, so we pass inverted value here */
6625 alc_update_gpio_led(codec
, 0x10, spec
->mute_led_polarity
,
6626 !spec
->gen
.hp_jack_present
);
6629 /* Manage GPIOs for HP EliteBook Folio 9480m.
6631 * GPIO4 is the headphone amplifier power control
6632 * GPIO3 is the audio output mute indicator LED
6635 static void alc280_fixup_hp_9480m(struct hda_codec
*codec
,
6636 const struct hda_fixup
*fix
,
6639 struct alc_spec
*spec
= codec
->spec
;
6641 alc_fixup_hp_gpio_led(codec
, action
, 0x08, 0);
6642 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6643 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
6644 spec
->gpio_mask
|= 0x10;
6645 spec
->gpio_dir
|= 0x10;
6646 spec
->gen
.hp_automute_hook
= alc280_hp_gpio4_automute_hook
;
6650 static void alc275_fixup_gpio4_off(struct hda_codec
*codec
,
6651 const struct hda_fixup
*fix
,
6654 struct alc_spec
*spec
= codec
->spec
;
6656 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6657 spec
->gpio_mask
|= 0x04;
6658 spec
->gpio_dir
|= 0x04;
6659 /* set data bit low */
6663 /* Quirk for Thinkpad X1 7th and 8th Gen
6664 * The following fixed routing needed
6665 * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly
6666 * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC
6667 * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp
6669 static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec
*codec
,
6670 const struct hda_fixup
*fix
, int action
)
6672 static const hda_nid_t conn
[] = { 0x02, 0x03 }; /* exclude 0x06 */
6673 static const hda_nid_t preferred_pairs
[] = {
6674 0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0
6676 struct alc_spec
*spec
= codec
->spec
;
6679 case HDA_FIXUP_ACT_PRE_PROBE
:
6680 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
6681 spec
->gen
.preferred_dacs
= preferred_pairs
;
6683 case HDA_FIXUP_ACT_BUILD
:
6684 /* The generic parser creates somewhat unintuitive volume ctls
6685 * with the fixed routing above, and the shared DAC2 may be
6687 * Rename those to unique names so that PA doesn't touch them
6688 * and use only Master volume.
6690 rename_ctl(codec
, "Front Playback Volume", "DAC1 Playback Volume");
6691 rename_ctl(codec
, "Bass Speaker Playback Volume", "DAC2 Playback Volume");
6696 static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec
*codec
,
6697 const struct hda_fixup
*fix
,
6700 alc_fixup_dual_codecs(codec
, fix
, action
);
6702 case HDA_FIXUP_ACT_PRE_PROBE
:
6703 /* override card longname to provide a unique UCM profile */
6704 strcpy(codec
->card
->longname
, "HDAudio-Lenovo-DualCodecs");
6706 case HDA_FIXUP_ACT_BUILD
:
6707 /* rename Capture controls depending on the codec */
6708 rename_ctl(codec
, "Capture Volume",
6710 "Rear-Panel Capture Volume" :
6711 "Front-Panel Capture Volume");
6712 rename_ctl(codec
, "Capture Switch",
6714 "Rear-Panel Capture Switch" :
6715 "Front-Panel Capture Switch");
6720 static void alc225_fixup_s3_pop_noise(struct hda_codec
*codec
,
6721 const struct hda_fixup
*fix
, int action
)
6723 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
6726 codec
->power_save_node
= 1;
6729 /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
6730 static void alc274_fixup_bind_dacs(struct hda_codec
*codec
,
6731 const struct hda_fixup
*fix
, int action
)
6733 struct alc_spec
*spec
= codec
->spec
;
6734 static const hda_nid_t preferred_pairs
[] = {
6735 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
6739 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
6742 spec
->gen
.preferred_dacs
= preferred_pairs
;
6743 spec
->gen
.auto_mute_via_amp
= 1;
6744 codec
->power_save_node
= 0;
6747 /* avoid DAC 0x06 for speaker switch 0x17; it has no volume control */
6748 static void alc274_fixup_hp_aio_bind_dacs(struct hda_codec
*codec
,
6749 const struct hda_fixup
*fix
, int action
)
6751 static const hda_nid_t conn
[] = { 0x02, 0x03 }; /* exclude 0x06 */
6752 /* The speaker is routed to the Node 0x06 by a mistake, thus the
6753 * speaker's volume can't be adjusted since the node doesn't have
6754 * Amp-out capability. Assure the speaker and lineout pin to be
6755 * coupled with DAC NID 0x02.
6757 static const hda_nid_t preferred_pairs
[] = {
6758 0x16, 0x02, 0x17, 0x02, 0x21, 0x03, 0
6760 struct alc_spec
*spec
= codec
->spec
;
6762 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
6763 spec
->gen
.preferred_dacs
= preferred_pairs
;
6766 /* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */
6767 static void alc289_fixup_asus_ga401(struct hda_codec
*codec
,
6768 const struct hda_fixup
*fix
, int action
)
6770 static const hda_nid_t preferred_pairs
[] = {
6771 0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0
6773 struct alc_spec
*spec
= codec
->spec
;
6775 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
6776 spec
->gen
.preferred_dacs
= preferred_pairs
;
6779 /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
6780 static void alc285_fixup_invalidate_dacs(struct hda_codec
*codec
,
6781 const struct hda_fixup
*fix
, int action
)
6783 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
6786 snd_hda_override_wcaps(codec
, 0x03, 0);
6789 static void alc_combo_jack_hp_jd_restart(struct hda_codec
*codec
)
6791 switch (codec
->core
.vendor_id
) {
6797 alc_update_coef_idx(codec
, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
6798 alc_update_coef_idx(codec
, 0x4a, 0x8000, 0 << 15);
6807 alc_update_coef_idx(codec
, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
6808 alc_update_coef_idx(codec
, 0x1b, 0x8000, 0 << 15);
6813 static void alc295_fixup_chromebook(struct hda_codec
*codec
,
6814 const struct hda_fixup
*fix
, int action
)
6816 struct alc_spec
*spec
= codec
->spec
;
6819 case HDA_FIXUP_ACT_PRE_PROBE
:
6820 spec
->ultra_low_power
= true;
6822 case HDA_FIXUP_ACT_INIT
:
6823 alc_combo_jack_hp_jd_restart(codec
);
6828 static void alc256_fixup_chromebook(struct hda_codec
*codec
,
6829 const struct hda_fixup
*fix
, int action
)
6831 struct alc_spec
*spec
= codec
->spec
;
6834 case HDA_FIXUP_ACT_PRE_PROBE
:
6835 if (codec
->core
.subsystem_id
== 0x10280d76)
6836 spec
->gen
.suppress_auto_mute
= 0;
6838 spec
->gen
.suppress_auto_mute
= 1;
6839 spec
->gen
.suppress_auto_mic
= 1;
6840 spec
->en_3kpull_low
= false;
6845 static void alc_fixup_disable_mic_vref(struct hda_codec
*codec
,
6846 const struct hda_fixup
*fix
, int action
)
6848 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
6849 snd_hda_codec_set_pin_target(codec
, 0x19, PIN_VREFHIZ
);
6853 static void alc294_gx502_toggle_output(struct hda_codec
*codec
,
6854 struct hda_jack_callback
*cb
)
6856 /* The Windows driver sets the codec up in a very different way where
6857 * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it
6859 if (snd_hda_jack_detect_state(codec
, 0x21) == HDA_JACK_PRESENT
)
6860 alc_write_coef_idx(codec
, 0x10, 0x8a20);
6862 alc_write_coef_idx(codec
, 0x10, 0x0a20);
6865 static void alc294_fixup_gx502_hp(struct hda_codec
*codec
,
6866 const struct hda_fixup
*fix
, int action
)
6868 /* Pin 0x21: headphones/headset mic */
6869 if (!is_jack_detectable(codec
, 0x21))
6873 case HDA_FIXUP_ACT_PRE_PROBE
:
6874 snd_hda_jack_detect_enable_callback(codec
, 0x21,
6875 alc294_gx502_toggle_output
);
6877 case HDA_FIXUP_ACT_INIT
:
6878 /* Make sure to start in a correct state, i.e. if
6879 * headphones have been plugged in before powering up the system
6881 alc294_gx502_toggle_output(codec
, NULL
);
6886 static void alc294_gu502_toggle_output(struct hda_codec
*codec
,
6887 struct hda_jack_callback
*cb
)
6889 /* Windows sets 0x10 to 0x8420 for Node 0x20 which is
6890 * responsible from changes between speakers and headphones
6892 if (snd_hda_jack_detect_state(codec
, 0x21) == HDA_JACK_PRESENT
)
6893 alc_write_coef_idx(codec
, 0x10, 0x8420);
6895 alc_write_coef_idx(codec
, 0x10, 0x0a20);
6898 static void alc294_fixup_gu502_hp(struct hda_codec
*codec
,
6899 const struct hda_fixup
*fix
, int action
)
6901 if (!is_jack_detectable(codec
, 0x21))
6905 case HDA_FIXUP_ACT_PRE_PROBE
:
6906 snd_hda_jack_detect_enable_callback(codec
, 0x21,
6907 alc294_gu502_toggle_output
);
6909 case HDA_FIXUP_ACT_INIT
:
6910 alc294_gu502_toggle_output(codec
, NULL
);
6915 static void alc285_fixup_hp_gpio_amp_init(struct hda_codec
*codec
,
6916 const struct hda_fixup
*fix
, int action
)
6918 if (action
!= HDA_FIXUP_ACT_INIT
)
6922 alc_write_coef_idx(codec
, 0x65, 0x0);
6925 static void alc274_fixup_hp_headset_mic(struct hda_codec
*codec
,
6926 const struct hda_fixup
*fix
, int action
)
6929 case HDA_FIXUP_ACT_INIT
:
6930 alc_combo_jack_hp_jd_restart(codec
);
6935 static void alc_fixup_no_int_mic(struct hda_codec
*codec
,
6936 const struct hda_fixup
*fix
, int action
)
6938 struct alc_spec
*spec
= codec
->spec
;
6941 case HDA_FIXUP_ACT_PRE_PROBE
:
6942 /* Mic RING SLEEVE swap for combo jack */
6943 alc_update_coef_idx(codec
, 0x45, 0xf<<12 | 1<<10, 5<<12);
6944 spec
->no_internal_mic_pin
= true;
6946 case HDA_FIXUP_ACT_INIT
:
6947 alc_combo_jack_hp_jd_restart(codec
);
6952 /* GPIO1 = amplifier on/off
6953 * GPIO3 = mic mute LED
6955 static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec
*codec
,
6956 const struct hda_fixup
*fix
, int action
)
6958 static const hda_nid_t conn
[] = { 0x02 };
6960 struct alc_spec
*spec
= codec
->spec
;
6961 static const struct hda_pintbl pincfgs
[] = {
6962 { 0x14, 0x90170110 }, /* front/high speakers */
6963 { 0x17, 0x90170130 }, /* back/bass speakers */
6967 //enable micmute led
6968 alc_fixup_hp_gpio_led(codec
, action
, 0x00, 0x04);
6971 case HDA_FIXUP_ACT_PRE_PROBE
:
6972 spec
->micmute_led_polarity
= 1;
6973 /* needed for amp of back speakers */
6974 spec
->gpio_mask
|= 0x01;
6975 spec
->gpio_dir
|= 0x01;
6976 snd_hda_apply_pincfgs(codec
, pincfgs
);
6977 /* share DAC to have unified volume control */
6978 snd_hda_override_conn_list(codec
, 0x14, ARRAY_SIZE(conn
), conn
);
6979 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
6981 case HDA_FIXUP_ACT_INIT
:
6982 /* need to toggle GPIO to enable the amp of back speakers */
6983 alc_update_gpio_data(codec
, 0x01, true);
6985 alc_update_gpio_data(codec
, 0x01, false);
6990 /* GPIO1 = amplifier on/off */
6991 static void alc285_fixup_hp_spectre_x360_df1(struct hda_codec
*codec
,
6992 const struct hda_fixup
*fix
,
6995 struct alc_spec
*spec
= codec
->spec
;
6996 static const hda_nid_t conn
[] = { 0x02 };
6997 static const struct hda_pintbl pincfgs
[] = {
6998 { 0x14, 0x90170110 }, /* front/high speakers */
6999 { 0x17, 0x90170130 }, /* back/bass speakers */
7004 alc285_fixup_hp_mute_led_coefbit(codec
, fix
, action
);
7007 case HDA_FIXUP_ACT_PRE_PROBE
:
7008 /* needed for amp of back speakers */
7009 spec
->gpio_mask
|= 0x01;
7010 spec
->gpio_dir
|= 0x01;
7011 snd_hda_apply_pincfgs(codec
, pincfgs
);
7012 /* share DAC to have unified volume control */
7013 snd_hda_override_conn_list(codec
, 0x14, ARRAY_SIZE(conn
), conn
);
7014 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
7016 case HDA_FIXUP_ACT_INIT
:
7017 /* need to toggle GPIO to enable the amp of back speakers */
7018 alc_update_gpio_data(codec
, 0x01, true);
7020 alc_update_gpio_data(codec
, 0x01, false);
7025 static void alc285_fixup_hp_spectre_x360(struct hda_codec
*codec
,
7026 const struct hda_fixup
*fix
, int action
)
7028 static const hda_nid_t conn
[] = { 0x02 };
7029 static const struct hda_pintbl pincfgs
[] = {
7030 { 0x14, 0x90170110 }, /* rear speaker */
7035 case HDA_FIXUP_ACT_PRE_PROBE
:
7036 snd_hda_apply_pincfgs(codec
, pincfgs
);
7037 /* force front speaker to DAC1 */
7038 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
7043 static void alc285_fixup_hp_envy_x360(struct hda_codec
*codec
,
7044 const struct hda_fixup
*fix
,
7047 static const struct coef_fw coefs
[] = {
7048 WRITE_COEF(0x08, 0x6a0c), WRITE_COEF(0x0d, 0xa023),
7049 WRITE_COEF(0x10, 0x0320), WRITE_COEF(0x1a, 0x8c03),
7050 WRITE_COEF(0x25, 0x1800), WRITE_COEF(0x26, 0x003a),
7051 WRITE_COEF(0x28, 0x1dfe), WRITE_COEF(0x29, 0xb014),
7052 WRITE_COEF(0x2b, 0x1dfe), WRITE_COEF(0x37, 0xfe15),
7053 WRITE_COEF(0x38, 0x7909), WRITE_COEF(0x45, 0xd489),
7054 WRITE_COEF(0x46, 0x00f4), WRITE_COEF(0x4a, 0x21e0),
7055 WRITE_COEF(0x66, 0x03f0), WRITE_COEF(0x67, 0x1000),
7056 WRITE_COEF(0x6e, 0x1005), { }
7059 static const struct hda_pintbl pincfgs
[] = {
7060 { 0x12, 0xb7a60130 }, /* Internal microphone*/
7061 { 0x14, 0x90170150 }, /* B&O soundbar speakers */
7062 { 0x17, 0x90170153 }, /* Side speakers */
7063 { 0x19, 0x03a11040 }, /* Headset microphone */
7068 case HDA_FIXUP_ACT_PRE_PROBE
:
7069 snd_hda_apply_pincfgs(codec
, pincfgs
);
7071 /* Fixes volume control problem for side speakers */
7072 alc295_fixup_disable_dac3(codec
, fix
, action
);
7074 /* Fixes no sound from headset speaker */
7075 snd_hda_codec_amp_stereo(codec
, 0x21, HDA_OUTPUT
, 0, -1, 0);
7077 /* Auto-enable headset mic when plugged */
7078 snd_hda_jack_set_gating_jack(codec
, 0x19, 0x21);
7080 /* Headset mic volume enhancement */
7081 snd_hda_codec_set_pin_target(codec
, 0x19, PIN_VREF50
);
7083 case HDA_FIXUP_ACT_INIT
:
7084 alc_process_coef_fw(codec
, coefs
);
7086 case HDA_FIXUP_ACT_BUILD
:
7087 rename_ctl(codec
, "Bass Speaker Playback Volume",
7088 "B&O-Tuned Playback Volume");
7089 rename_ctl(codec
, "Front Playback Switch",
7090 "B&O Soundbar Playback Switch");
7091 rename_ctl(codec
, "Bass Speaker Playback Switch",
7092 "Side Speaker Playback Switch");
7097 static void alc285_fixup_hp_beep(struct hda_codec
*codec
,
7098 const struct hda_fixup
*fix
, int action
)
7100 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
7101 codec
->beep_just_power_on
= true;
7102 } else if (action
== HDA_FIXUP_ACT_INIT
) {
7103 #ifdef CONFIG_SND_HDA_INPUT_BEEP
7105 * Just enable loopback to internal speaker and headphone jack.
7106 * Disable amplification to get about the same beep volume as
7107 * was on pure BIOS setup before loading the driver.
7109 alc_update_coef_idx(codec
, 0x36, 0x7070, BIT(13));
7111 snd_hda_enable_beep_device(codec
, 1);
7113 #if !IS_ENABLED(CONFIG_INPUT_PCSPKR)
7114 dev_warn_once(hda_codec_dev(codec
),
7115 "enable CONFIG_INPUT_PCSPKR to get PC beeps\n");
7121 /* for hda_fixup_thinkpad_acpi() */
7122 #include "thinkpad_helper.c"
7124 static void alc_fixup_thinkpad_acpi(struct hda_codec
*codec
,
7125 const struct hda_fixup
*fix
, int action
)
7127 alc_fixup_no_shutup(codec
, fix
, action
); /* reduce click noise */
7128 hda_fixup_thinkpad_acpi(codec
, fix
, action
);
7131 /* for hda_fixup_ideapad_acpi() */
7132 #include "ideapad_hotkey_led_helper.c"
7134 static void alc_fixup_ideapad_acpi(struct hda_codec
*codec
,
7135 const struct hda_fixup
*fix
, int action
)
7137 hda_fixup_ideapad_acpi(codec
, fix
, action
);
7140 /* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */
7141 static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec
*codec
,
7142 const struct hda_fixup
*fix
,
7145 struct alc_spec
*spec
= codec
->spec
;
7148 case HDA_FIXUP_ACT_PRE_PROBE
:
7149 spec
->gen
.suppress_auto_mute
= 1;
7154 static void comp_acpi_device_notify(acpi_handle handle
, u32 event
, void *data
)
7156 struct hda_codec
*cdc
= data
;
7157 struct alc_spec
*spec
= cdc
->spec
;
7159 codec_info(cdc
, "ACPI Notification %d\n", event
);
7161 hda_component_acpi_device_notify(&spec
->comps
, handle
, event
, data
);
7164 static int comp_bind(struct device
*dev
)
7166 struct hda_codec
*cdc
= dev_to_hda_codec(dev
);
7167 struct alc_spec
*spec
= cdc
->spec
;
7170 ret
= hda_component_manager_bind(cdc
, &spec
->comps
);
7174 return hda_component_manager_bind_acpi_notifications(cdc
,
7176 comp_acpi_device_notify
, cdc
);
7179 static void comp_unbind(struct device
*dev
)
7181 struct hda_codec
*cdc
= dev_to_hda_codec(dev
);
7182 struct alc_spec
*spec
= cdc
->spec
;
7184 hda_component_manager_unbind_acpi_notifications(cdc
, &spec
->comps
, comp_acpi_device_notify
);
7185 hda_component_manager_unbind(cdc
, &spec
->comps
);
7188 static const struct component_master_ops comp_master_ops
= {
7190 .unbind
= comp_unbind
,
7193 static void comp_generic_playback_hook(struct hda_pcm_stream
*hinfo
, struct hda_codec
*cdc
,
7194 struct snd_pcm_substream
*sub
, int action
)
7196 struct alc_spec
*spec
= cdc
->spec
;
7198 hda_component_manager_playback_hook(&spec
->comps
, action
);
7201 static void comp_generic_fixup(struct hda_codec
*cdc
, int action
, const char *bus
,
7202 const char *hid
, const char *match_str
, int count
)
7204 struct alc_spec
*spec
= cdc
->spec
;
7208 case HDA_FIXUP_ACT_PRE_PROBE
:
7209 ret
= hda_component_manager_init(cdc
, &spec
->comps
, count
, bus
, hid
,
7210 match_str
, &comp_master_ops
);
7214 spec
->gen
.pcm_playback_hook
= comp_generic_playback_hook
;
7216 case HDA_FIXUP_ACT_FREE
:
7217 hda_component_manager_free(&spec
->comps
, &comp_master_ops
);
7222 static void find_cirrus_companion_amps(struct hda_codec
*cdc
)
7224 struct device
*dev
= hda_codec_dev(cdc
);
7225 struct acpi_device
*adev
;
7226 struct fwnode_handle
*fwnode
__free(fwnode_handle
) = NULL
;
7227 const char *bus
= NULL
;
7228 static const struct {
7231 } acpi_ids
[] = {{ "CSC3554", "cs35l54-hda" },
7232 { "CSC3556", "cs35l56-hda" },
7233 { "CSC3557", "cs35l57-hda" }};
7235 int i
, count
= 0, count_devindex
= 0;
7237 for (i
= 0; i
< ARRAY_SIZE(acpi_ids
); ++i
) {
7238 adev
= acpi_dev_get_first_match_dev(acpi_ids
[i
].hid
, NULL
, -1);
7243 codec_dbg(cdc
, "Did not find ACPI entry for a Cirrus Amp\n");
7247 count
= i2c_acpi_client_count(adev
);
7251 count
= acpi_spi_count_resources(adev
);
7256 fwnode
= fwnode_handle_get(acpi_fwnode_handle(adev
));
7260 codec_err(cdc
, "Did not find any buses for %s\n", acpi_ids
[i
].hid
);
7265 codec_err(cdc
, "Could not get fwnode for %s\n", acpi_ids
[i
].hid
);
7270 * When available the cirrus,dev-index property is an accurate
7271 * count of the amps in a system and is used in preference to
7272 * the count of bus devices that can contain additional address
7275 count_devindex
= fwnode_property_count_u32(fwnode
, "cirrus,dev-index");
7276 if (count_devindex
> 0)
7277 count
= count_devindex
;
7279 match
= devm_kasprintf(dev
, GFP_KERNEL
, "-%%s:00-%s.%%d", acpi_ids
[i
].name
);
7282 codec_info(cdc
, "Found %d %s on %s (%s)\n", count
, acpi_ids
[i
].hid
, bus
, match
);
7283 comp_generic_fixup(cdc
, HDA_FIXUP_ACT_PRE_PROBE
, bus
, acpi_ids
[i
].hid
, match
, count
);
7286 static void cs35l41_fixup_i2c_two(struct hda_codec
*cdc
, const struct hda_fixup
*fix
, int action
)
7288 comp_generic_fixup(cdc
, action
, "i2c", "CSC3551", "-%s:00-cs35l41-hda.%d", 2);
7291 static void cs35l41_fixup_i2c_four(struct hda_codec
*cdc
, const struct hda_fixup
*fix
, int action
)
7293 comp_generic_fixup(cdc
, action
, "i2c", "CSC3551", "-%s:00-cs35l41-hda.%d", 4);
7296 static void cs35l41_fixup_spi_two(struct hda_codec
*codec
, const struct hda_fixup
*fix
, int action
)
7298 comp_generic_fixup(codec
, action
, "spi", "CSC3551", "-%s:00-cs35l41-hda.%d", 2);
7301 static void cs35l41_fixup_spi_four(struct hda_codec
*codec
, const struct hda_fixup
*fix
, int action
)
7303 comp_generic_fixup(codec
, action
, "spi", "CSC3551", "-%s:00-cs35l41-hda.%d", 4);
7306 static void alc287_fixup_legion_16achg6_speakers(struct hda_codec
*cdc
, const struct hda_fixup
*fix
,
7309 comp_generic_fixup(cdc
, action
, "i2c", "CLSA0100", "-%s:00-cs35l41-hda.%d", 2);
7312 static void alc287_fixup_legion_16ithg6_speakers(struct hda_codec
*cdc
, const struct hda_fixup
*fix
,
7315 comp_generic_fixup(cdc
, action
, "i2c", "CLSA0101", "-%s:00-cs35l41-hda.%d", 2);
7318 static void alc285_fixup_asus_ga403u(struct hda_codec
*cdc
, const struct hda_fixup
*fix
, int action
)
7321 * The same SSID has been re-used in different hardware, they have
7322 * different codecs and the newer GA403U has a ALC285.
7324 if (cdc
->core
.vendor_id
!= 0x10ec0285)
7325 alc_fixup_inv_dmic(cdc
, fix
, action
);
7328 static void tas2781_fixup_i2c(struct hda_codec
*cdc
,
7329 const struct hda_fixup
*fix
, int action
)
7331 comp_generic_fixup(cdc
, action
, "i2c", "TIAS2781", "-%s:00", 1);
7334 static void tas2781_fixup_spi(struct hda_codec
*cdc
, const struct hda_fixup
*fix
, int action
)
7336 comp_generic_fixup(cdc
, action
, "spi", "TXNW2781", "-%s:00-tas2781-hda.%d", 2);
7339 static void yoga7_14arb7_fixup_i2c(struct hda_codec
*cdc
,
7340 const struct hda_fixup
*fix
, int action
)
7342 comp_generic_fixup(cdc
, action
, "i2c", "INT8866", "-%s:00", 1);
7345 static void alc256_fixup_acer_sfg16_micmute_led(struct hda_codec
*codec
,
7346 const struct hda_fixup
*fix
, int action
)
7348 alc_fixup_hp_gpio_led(codec
, action
, 0, 0x04);
7352 /* for alc295_fixup_hp_top_speakers */
7353 #include "hp_x360_helper.c"
7355 /* for alc285_fixup_ideapad_s740_coef() */
7356 #include "ideapad_s740_helper.c"
7358 static const struct coef_fw alc256_fixup_set_coef_defaults_coefs
[] = {
7359 WRITE_COEF(0x10, 0x0020), WRITE_COEF(0x24, 0x0000),
7360 WRITE_COEF(0x26, 0x0000), WRITE_COEF(0x29, 0x3000),
7361 WRITE_COEF(0x37, 0xfe05), WRITE_COEF(0x45, 0x5089),
7365 static void alc256_fixup_set_coef_defaults(struct hda_codec
*codec
,
7366 const struct hda_fixup
*fix
,
7370 * A certain other OS sets these coeffs to different values. On at least
7371 * one TongFang barebone these settings might survive even a cold
7372 * reboot. So to restore a clean slate the values are explicitly reset
7373 * to default here. Without this, the external microphone is always in a
7374 * plugged-in state, while the internal microphone is always in an
7375 * unplugged state, breaking the ability to use the internal microphone.
7377 alc_process_coef_fw(codec
, alc256_fixup_set_coef_defaults_coefs
);
7380 static const struct coef_fw alc233_fixup_no_audio_jack_coefs
[] = {
7381 WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06),
7382 WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074),
7383 WRITE_COEF(0x49, 0x0149),
7387 static void alc233_fixup_no_audio_jack(struct hda_codec
*codec
,
7388 const struct hda_fixup
*fix
,
7392 * The audio jack input and output is not detected on the ASRock NUC Box
7393 * 1100 series when cold booting without this fix. Warm rebooting from a
7394 * certain other OS makes the audio functional, as COEF settings are
7395 * preserved in this case. This fix sets these altered COEF values as
7398 alc_process_coef_fw(codec
, alc233_fixup_no_audio_jack_coefs
);
7401 static void alc256_fixup_mic_no_presence_and_resume(struct hda_codec
*codec
,
7402 const struct hda_fixup
*fix
,
7406 * The Clevo NJ51CU comes either with the ALC293 or the ALC256 codec,
7407 * but uses the 0x8686 subproduct id in both cases. The ALC256 codec
7408 * needs an additional quirk for sound working after suspend and resume.
7410 if (codec
->core
.vendor_id
== 0x10ec0256) {
7411 alc_update_coef_idx(codec
, 0x10, 1<<9, 0);
7412 snd_hda_codec_set_pincfg(codec
, 0x19, 0x04a11120);
7414 snd_hda_codec_set_pincfg(codec
, 0x1a, 0x04a1113c);
7418 static void alc256_decrease_headphone_amp_val(struct hda_codec
*codec
,
7419 const struct hda_fixup
*fix
, int action
)
7424 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
7427 caps
= query_amp_caps(codec
, 0x3, HDA_OUTPUT
);
7428 nsteps
= ((caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
) - 10;
7429 offs
= ((caps
& AC_AMPCAP_OFFSET
) >> AC_AMPCAP_OFFSET_SHIFT
) - 10;
7430 caps
&= ~AC_AMPCAP_NUM_STEPS
& ~AC_AMPCAP_OFFSET
;
7431 caps
|= (nsteps
<< AC_AMPCAP_NUM_STEPS_SHIFT
) | (offs
<< AC_AMPCAP_OFFSET_SHIFT
);
7433 if (snd_hda_override_amp_caps(codec
, 0x3, HDA_OUTPUT
, caps
))
7434 codec_warn(codec
, "failed to override amp caps for NID 0x3\n");
7437 static void alc_fixup_dell4_mic_no_presence_quiet(struct hda_codec
*codec
,
7438 const struct hda_fixup
*fix
,
7441 struct alc_spec
*spec
= codec
->spec
;
7442 struct hda_input_mux
*imux
= &spec
->gen
.input_mux
;
7445 alc269_fixup_limit_int_mic_boost(codec
, fix
, action
);
7448 case HDA_FIXUP_ACT_PRE_PROBE
:
7450 * Set the vref of pin 0x19 (Headset Mic) and pin 0x1b (Headphone Mic)
7451 * to Hi-Z to avoid pop noises at startup and when plugging and
7452 * unplugging headphones.
7454 snd_hda_codec_set_pin_target(codec
, 0x19, PIN_VREFHIZ
);
7455 snd_hda_codec_set_pin_target(codec
, 0x1b, PIN_VREFHIZ
);
7457 case HDA_FIXUP_ACT_PROBE
:
7459 * Make the internal mic (0x12) the default input source to
7460 * prevent pop noises on cold boot.
7462 for (i
= 0; i
< imux
->num_items
; i
++) {
7463 if (spec
->gen
.imux_pins
[i
] == 0x12) {
7464 spec
->gen
.cur_mux
[0] = i
;
7472 static void alc287_fixup_yoga9_14iap7_bass_spk_pin(struct hda_codec
*codec
,
7473 const struct hda_fixup
*fix
, int action
)
7476 * The Pin Complex 0x17 for the bass speakers is wrongly reported as
7479 static const struct hda_pintbl pincfgs
[] = {
7480 { 0x17, 0x90170121 },
7484 * Avoid DAC 0x06 and 0x08, as they have no volume controls.
7485 * DAC 0x02 and 0x03 would be fine.
7487 static const hda_nid_t conn
[] = { 0x02, 0x03 };
7489 * Prefer both speakerbar (0x14) and bass speakers (0x17) connected to DAC 0x02.
7490 * Headphones (0x21) are connected to DAC 0x03.
7492 static const hda_nid_t preferred_pairs
[] = {
7498 struct alc_spec
*spec
= codec
->spec
;
7501 case HDA_FIXUP_ACT_PRE_PROBE
:
7502 snd_hda_apply_pincfgs(codec
, pincfgs
);
7503 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
7504 spec
->gen
.preferred_dacs
= preferred_pairs
;
7509 static void alc295_fixup_dell_inspiron_top_speakers(struct hda_codec
*codec
,
7510 const struct hda_fixup
*fix
, int action
)
7512 static const struct hda_pintbl pincfgs
[] = {
7513 { 0x14, 0x90170151 },
7514 { 0x17, 0x90170150 },
7517 static const hda_nid_t conn
[] = { 0x02, 0x03 };
7518 static const hda_nid_t preferred_pairs
[] = {
7524 struct alc_spec
*spec
= codec
->spec
;
7526 alc_fixup_no_shutup(codec
, fix
, action
);
7529 case HDA_FIXUP_ACT_PRE_PROBE
:
7530 snd_hda_apply_pincfgs(codec
, pincfgs
);
7531 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
7532 spec
->gen
.preferred_dacs
= preferred_pairs
;
7537 /* Forcibly assign NID 0x03 to HP while NID 0x02 to SPK */
7538 static void alc287_fixup_bind_dacs(struct hda_codec
*codec
,
7539 const struct hda_fixup
*fix
, int action
)
7541 struct alc_spec
*spec
= codec
->spec
;
7542 static const hda_nid_t conn
[] = { 0x02, 0x03 }; /* exclude 0x06 */
7543 static const hda_nid_t preferred_pairs
[] = {
7544 0x17, 0x02, 0x21, 0x03, 0
7547 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
7550 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
7551 spec
->gen
.preferred_dacs
= preferred_pairs
;
7552 spec
->gen
.auto_mute_via_amp
= 1;
7553 if (spec
->gen
.autocfg
.speaker_pins
[0] != 0x14) {
7554 snd_hda_codec_write_cache(codec
, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
7555 0x0); /* Make sure 0x14 was disable */
7558 /* Fix none verb table of Headset Mic pin */
7559 static void alc_fixup_headset_mic(struct hda_codec
*codec
,
7560 const struct hda_fixup
*fix
, int action
)
7562 struct alc_spec
*spec
= codec
->spec
;
7563 static const struct hda_pintbl pincfgs
[] = {
7564 { 0x19, 0x03a1103c },
7569 case HDA_FIXUP_ACT_PRE_PROBE
:
7570 snd_hda_apply_pincfgs(codec
, pincfgs
);
7571 alc_update_coef_idx(codec
, 0x45, 0xf<<12 | 1<<10, 5<<12);
7572 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
7577 static void alc245_fixup_hp_spectre_x360_eu0xxx(struct hda_codec
*codec
,
7578 const struct hda_fixup
*fix
, int action
)
7581 * The Pin Complex 0x14 for the treble speakers is wrongly reported as
7583 * The Pin Complex 0x17 for the bass speakers has the lowest association
7584 * and sequence values so shift it up a bit to squeeze 0x14 in.
7586 static const struct hda_pintbl pincfgs
[] = {
7587 { 0x14, 0x90170110 }, // top/treble
7588 { 0x17, 0x90170111 }, // bottom/bass
7593 * Force DAC 0x02 for the bass speakers 0x17.
7595 static const hda_nid_t conn
[] = { 0x02 };
7598 case HDA_FIXUP_ACT_PRE_PROBE
:
7599 snd_hda_apply_pincfgs(codec
, pincfgs
);
7600 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
7604 cs35l41_fixup_i2c_two(codec
, fix
, action
);
7605 alc245_fixup_hp_mute_led_coefbit(codec
, fix
, action
);
7606 alc245_fixup_hp_gpio_led(codec
, fix
, action
);
7609 /* some changes for Spectre x360 16, 2024 model */
7610 static void alc245_fixup_hp_spectre_x360_16_aa0xxx(struct hda_codec
*codec
,
7611 const struct hda_fixup
*fix
, int action
)
7614 * The Pin Complex 0x14 for the treble speakers is wrongly reported as
7616 * The Pin Complex 0x17 for the bass speakers has the lowest association
7617 * and sequence values so shift it up a bit to squeeze 0x14 in.
7619 struct alc_spec
*spec
= codec
->spec
;
7620 static const struct hda_pintbl pincfgs
[] = {
7621 { 0x14, 0x90170110 }, // top/treble
7622 { 0x17, 0x90170111 }, // bottom/bass
7627 * Force DAC 0x02 for the bass speakers 0x17.
7629 static const hda_nid_t conn
[] = { 0x02 };
7632 case HDA_FIXUP_ACT_PRE_PROBE
:
7633 /* needed for amp of back speakers */
7634 spec
->gpio_mask
|= 0x01;
7635 spec
->gpio_dir
|= 0x01;
7636 snd_hda_apply_pincfgs(codec
, pincfgs
);
7637 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
7639 case HDA_FIXUP_ACT_INIT
:
7640 /* need to toggle GPIO to enable the amp of back speakers */
7641 alc_update_gpio_data(codec
, 0x01, true);
7643 alc_update_gpio_data(codec
, 0x01, false);
7647 cs35l41_fixup_i2c_two(codec
, fix
, action
);
7648 alc245_fixup_hp_mute_led_coefbit(codec
, fix
, action
);
7649 alc245_fixup_hp_gpio_led(codec
, fix
, action
);
7652 static void alc245_fixup_hp_zbook_firefly_g12a(struct hda_codec
*codec
,
7653 const struct hda_fixup
*fix
, int action
)
7655 struct alc_spec
*spec
= codec
->spec
;
7656 static const hda_nid_t conn
[] = { 0x02 };
7659 case HDA_FIXUP_ACT_PRE_PROBE
:
7660 spec
->gen
.auto_mute_via_amp
= 1;
7661 snd_hda_override_conn_list(codec
, 0x17, ARRAY_SIZE(conn
), conn
);
7665 cs35l41_fixup_i2c_two(codec
, fix
, action
);
7666 alc245_fixup_hp_mute_led_coefbit(codec
, fix
, action
);
7667 alc285_fixup_hp_coef_micmute_led(codec
, fix
, action
);
7673 static void alc287_alc1318_playback_pcm_hook(struct hda_pcm_stream
*hinfo
,
7674 struct hda_codec
*codec
,
7675 struct snd_pcm_substream
*substream
,
7679 case HDA_GEN_PCM_ACT_OPEN
:
7680 alc_write_coefex_idx(codec
, 0x5a, 0x00, 0x954f); /* write gpio3 to high */
7682 case HDA_GEN_PCM_ACT_CLOSE
:
7683 alc_write_coefex_idx(codec
, 0x5a, 0x00, 0x554f); /* write gpio3 as default value */
7688 static void alc287_s4_power_gpio3_default(struct hda_codec
*codec
)
7690 if (is_s4_suspend(codec
)) {
7691 alc_write_coefex_idx(codec
, 0x5a, 0x00, 0x554f); /* write gpio3 as default value */
7695 static void alc287_fixup_lenovo_thinkpad_with_alc1318(struct hda_codec
*codec
,
7696 const struct hda_fixup
*fix
, int action
)
7698 struct alc_spec
*spec
= codec
->spec
;
7699 static const struct coef_fw coefs
[] = {
7700 WRITE_COEF(0x24, 0x0013), WRITE_COEF(0x25, 0x0000), WRITE_COEF(0x26, 0xC300),
7701 WRITE_COEF(0x28, 0x0001), WRITE_COEF(0x29, 0xb023),
7702 WRITE_COEF(0x24, 0x0013), WRITE_COEF(0x25, 0x0000), WRITE_COEF(0x26, 0xC301),
7703 WRITE_COEF(0x28, 0x0001), WRITE_COEF(0x29, 0xb023),
7706 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
7708 alc_update_coef_idx(codec
, 0x10, 1<<11, 1<<11);
7709 alc_process_coef_fw(codec
, coefs
);
7710 spec
->power_hook
= alc287_s4_power_gpio3_default
;
7711 spec
->gen
.pcm_playback_hook
= alc287_alc1318_playback_pcm_hook
;
7715 * Clear COEF 0x0d (PCBEEP passthrough) bit 0x40 where BIOS sets it wrongly
7718 static void alc283_fixup_dell_hp_resume(struct hda_codec
*codec
,
7719 const struct hda_fixup
*fix
, int action
)
7721 if (action
== HDA_FIXUP_ACT_INIT
)
7722 alc_write_coef_idx(codec
, 0xd, 0x2800);
7727 ALC269_FIXUP_SONY_VAIO
,
7728 ALC275_FIXUP_SONY_VAIO_GPIO2
,
7729 ALC269_FIXUP_DELL_M101Z
,
7730 ALC269_FIXUP_SKU_IGNORE
,
7731 ALC269_FIXUP_ASUS_G73JW
,
7732 ALC269_FIXUP_ASUS_N7601ZM_PINS
,
7733 ALC269_FIXUP_ASUS_N7601ZM
,
7734 ALC269_FIXUP_LENOVO_EAPD
,
7735 ALC275_FIXUP_SONY_HWEQ
,
7736 ALC275_FIXUP_SONY_DISABLE_AAMIX
,
7738 ALC269_FIXUP_PCM_44K
,
7739 ALC269_FIXUP_STEREO_DMIC
,
7740 ALC269_FIXUP_HEADSET_MIC
,
7741 ALC269_FIXUP_QUANTA_MUTE
,
7742 ALC269_FIXUP_LIFEBOOK
,
7743 ALC269_FIXUP_LIFEBOOK_EXTMIC
,
7744 ALC269_FIXUP_LIFEBOOK_HP_PIN
,
7745 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT
,
7746 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC
,
7749 ALC269VB_FIXUP_AMIC
,
7750 ALC269VB_FIXUP_DMIC
,
7751 ALC269_FIXUP_HP_MUTE_LED
,
7752 ALC269_FIXUP_HP_MUTE_LED_MIC1
,
7753 ALC269_FIXUP_HP_MUTE_LED_MIC2
,
7754 ALC269_FIXUP_HP_MUTE_LED_MIC3
,
7755 ALC269_FIXUP_HP_GPIO_LED
,
7756 ALC269_FIXUP_HP_GPIO_MIC1_LED
,
7757 ALC269_FIXUP_HP_LINE1_MIC1_LED
,
7758 ALC269_FIXUP_INV_DMIC
,
7759 ALC269_FIXUP_LENOVO_DOCK
,
7760 ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST
,
7761 ALC269_FIXUP_NO_SHUTUP
,
7762 ALC286_FIXUP_SONY_MIC_NO_PRESENCE
,
7763 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
,
7764 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
7765 ALC269_FIXUP_DELL1_LIMIT_INT_MIC_BOOST
,
7766 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
,
7767 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
7768 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
,
7769 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET
,
7770 ALC269_FIXUP_HEADSET_MODE
,
7771 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
,
7772 ALC269_FIXUP_ASPIRE_HEADSET_MIC
,
7773 ALC269_FIXUP_ASUS_X101_FUNC
,
7774 ALC269_FIXUP_ASUS_X101_VERB
,
7775 ALC269_FIXUP_ASUS_X101
,
7776 ALC271_FIXUP_AMIC_MIC2
,
7777 ALC271_FIXUP_HP_GATE_MIC_JACK
,
7778 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
,
7779 ALC269_FIXUP_ACER_AC700
,
7780 ALC269_FIXUP_LIMIT_INT_MIC_BOOST
,
7781 ALC269VB_FIXUP_ASUS_ZENBOOK
,
7782 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
,
7783 ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE
,
7784 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
,
7785 ALC269VB_FIXUP_ORDISSIMO_EVE2
,
7786 ALC283_FIXUP_CHROME_BOOK
,
7787 ALC283_FIXUP_SENSE_COMBO_JACK
,
7788 ALC282_FIXUP_ASUS_TX300
,
7789 ALC283_FIXUP_INT_MIC
,
7790 ALC290_FIXUP_MONO_SPEAKERS
,
7791 ALC290_FIXUP_MONO_SPEAKERS_HSJACK
,
7792 ALC290_FIXUP_SUBWOOFER
,
7793 ALC290_FIXUP_SUBWOOFER_HSJACK
,
7794 ALC295_FIXUP_HP_MUTE_LED_COEFBIT11
,
7795 ALC269_FIXUP_THINKPAD_ACPI
,
7796 ALC269_FIXUP_LENOVO_XPAD_ACPI
,
7797 ALC269_FIXUP_DMIC_THINKPAD_ACPI
,
7798 ALC269VB_FIXUP_INFINIX_ZERO_BOOK_13
,
7799 ALC269VC_FIXUP_INFINIX_Y4_MAX
,
7800 ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO
,
7801 ALC255_FIXUP_ACER_MIC_NO_PRESENCE
,
7802 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE
,
7803 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
7804 ALC255_FIXUP_DELL1_LIMIT_INT_MIC_BOOST
,
7805 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
,
7806 ALC255_FIXUP_HEADSET_MODE
,
7807 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
,
7808 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
,
7809 ALC292_FIXUP_TPT440_DOCK
,
7810 ALC292_FIXUP_TPT440
,
7811 ALC283_FIXUP_HEADSET_MIC
,
7812 ALC255_FIXUP_MIC_MUTE_LED
,
7813 ALC282_FIXUP_ASPIRE_V5_PINS
,
7814 ALC269VB_FIXUP_ASPIRE_E1_COEF
,
7815 ALC280_FIXUP_HP_GPIO4
,
7816 ALC286_FIXUP_HP_GPIO_LED
,
7817 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY
,
7818 ALC280_FIXUP_HP_DOCK_PINS
,
7819 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED
,
7820 ALC280_FIXUP_HP_9480M
,
7821 ALC245_FIXUP_HP_X360_AMP
,
7822 ALC285_FIXUP_HP_SPECTRE_X360_EB1
,
7823 ALC285_FIXUP_HP_SPECTRE_X360_DF1
,
7824 ALC285_FIXUP_HP_ENVY_X360
,
7825 ALC288_FIXUP_DELL_HEADSET_MODE
,
7826 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
,
7827 ALC288_FIXUP_DELL_XPS_13
,
7828 ALC288_FIXUP_DISABLE_AAMIX
,
7829 ALC292_FIXUP_DELL_E7X_AAMIX
,
7830 ALC292_FIXUP_DELL_E7X
,
7831 ALC292_FIXUP_DISABLE_AAMIX
,
7832 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
,
7833 ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE
,
7834 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
7835 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE
,
7836 ALC275_FIXUP_DELL_XPS
,
7837 ALC293_FIXUP_LENOVO_SPK_NOISE
,
7838 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
,
7839 ALC233_FIXUP_LENOVO_L2MH_LOW_ENLED
,
7840 ALC255_FIXUP_DELL_SPK_NOISE
,
7841 ALC225_FIXUP_DISABLE_MIC_VREF
,
7842 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
7843 ALC295_FIXUP_DISABLE_DAC3
,
7844 ALC285_FIXUP_SPEAKER2_TO_DAC1
,
7845 ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1
,
7846 ALC285_FIXUP_ASUS_HEADSET_MIC
,
7847 ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS
,
7848 ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1
,
7849 ALC285_FIXUP_ASUS_I2C_HEADSET_MIC
,
7850 ALC280_FIXUP_HP_HEADSET_MIC
,
7851 ALC221_FIXUP_HP_FRONT_MIC
,
7852 ALC292_FIXUP_TPT460
,
7853 ALC298_FIXUP_SPK_VOLUME
,
7854 ALC298_FIXUP_LENOVO_SPK_VOLUME
,
7855 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER
,
7856 ALC269_FIXUP_ATIV_BOOK_8
,
7857 ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE
,
7858 ALC221_FIXUP_HP_MIC_NO_PRESENCE
,
7859 ALC256_FIXUP_ASUS_HEADSET_MODE
,
7860 ALC256_FIXUP_ASUS_MIC
,
7861 ALC256_FIXUP_ASUS_AIO_GPIO2
,
7862 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
,
7863 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE
,
7864 ALC233_FIXUP_LENOVO_MULTI_CODECS
,
7865 ALC233_FIXUP_ACER_HEADSET_MIC
,
7866 ALC294_FIXUP_LENOVO_MIC_LOCATION
,
7867 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE
,
7868 ALC225_FIXUP_S3_POP_NOISE
,
7869 ALC700_FIXUP_INTEL_REFERENCE
,
7870 ALC274_FIXUP_DELL_BIND_DACS
,
7871 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB
,
7872 ALC298_FIXUP_TPT470_DOCK_FIX
,
7873 ALC298_FIXUP_TPT470_DOCK
,
7874 ALC255_FIXUP_DUMMY_LINEOUT_VERB
,
7875 ALC255_FIXUP_DELL_HEADSET_MIC
,
7876 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS
,
7877 ALC298_FIXUP_HUAWEI_MBX_STEREO
,
7878 ALC295_FIXUP_HP_X360
,
7879 ALC221_FIXUP_HP_HEADSET_MIC
,
7880 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
,
7881 ALC295_FIXUP_HP_AUTO_MUTE
,
7882 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
,
7883 ALC294_FIXUP_ASUS_MIC
,
7884 ALC294_FIXUP_ASUS_HEADSET_MIC
,
7885 ALC294_FIXUP_ASUS_SPK
,
7886 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
,
7887 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE
,
7888 ALC255_FIXUP_ACER_HEADSET_MIC
,
7889 ALC295_FIXUP_CHROME_BOOK
,
7890 ALC225_FIXUP_HEADSET_JACK
,
7891 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE
,
7892 ALC225_FIXUP_WYSE_AUTO_MUTE
,
7893 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
,
7894 ALC286_FIXUP_ACER_AIO_HEADSET_MIC
,
7895 ALC256_FIXUP_ASUS_HEADSET_MIC
,
7896 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
,
7897 ALC255_FIXUP_PREDATOR_SUBWOOFER
,
7898 ALC299_FIXUP_PREDATOR_SPK
,
7899 ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE
,
7900 ALC289_FIXUP_DELL_SPK1
,
7901 ALC289_FIXUP_DELL_SPK2
,
7902 ALC289_FIXUP_DUAL_SPK
,
7903 ALC289_FIXUP_RTK_AMP_DUAL_SPK
,
7904 ALC294_FIXUP_SPK2_TO_DAC1
,
7905 ALC294_FIXUP_ASUS_DUAL_SPK
,
7906 ALC285_FIXUP_THINKPAD_X1_GEN7
,
7907 ALC285_FIXUP_THINKPAD_HEADSET_JACK
,
7908 ALC294_FIXUP_ASUS_ALLY
,
7909 ALC294_FIXUP_ASUS_ALLY_PINS
,
7910 ALC294_FIXUP_ASUS_ALLY_VERBS
,
7911 ALC294_FIXUP_ASUS_ALLY_SPEAKER
,
7912 ALC294_FIXUP_ASUS_HPE
,
7913 ALC294_FIXUP_ASUS_COEF_1B
,
7914 ALC294_FIXUP_ASUS_GX502_HP
,
7915 ALC294_FIXUP_ASUS_GX502_PINS
,
7916 ALC294_FIXUP_ASUS_GX502_VERBS
,
7917 ALC294_FIXUP_ASUS_GU502_HP
,
7918 ALC294_FIXUP_ASUS_GU502_PINS
,
7919 ALC294_FIXUP_ASUS_GU502_VERBS
,
7920 ALC294_FIXUP_ASUS_G513_PINS
,
7921 ALC285_FIXUP_ASUS_G533Z_PINS
,
7922 ALC285_FIXUP_HP_GPIO_LED
,
7923 ALC285_FIXUP_HP_MUTE_LED
,
7924 ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED
,
7925 ALC285_FIXUP_HP_BEEP_MICMUTE_LED
,
7926 ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
,
7927 ALC236_FIXUP_HP_GPIO_LED
,
7928 ALC236_FIXUP_HP_MUTE_LED
,
7929 ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
,
7930 ALC236_FIXUP_LENOVO_INV_DMIC
,
7931 ALC298_FIXUP_SAMSUNG_AMP
,
7932 ALC298_FIXUP_SAMSUNG_AMP_V2_2_AMPS
,
7933 ALC298_FIXUP_SAMSUNG_AMP_V2_4_AMPS
,
7934 ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
,
7935 ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
,
7936 ALC295_FIXUP_ASUS_MIC_NO_PRESENCE
,
7937 ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS
,
7938 ALC269VC_FIXUP_ACER_HEADSET_MIC
,
7939 ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE
,
7940 ALC289_FIXUP_ASUS_GA401
,
7941 ALC289_FIXUP_ASUS_GA502
,
7942 ALC256_FIXUP_ACER_MIC_NO_PRESENCE
,
7943 ALC285_FIXUP_HP_GPIO_AMP_INIT
,
7944 ALC269_FIXUP_CZC_B20
,
7945 ALC269_FIXUP_CZC_TMI
,
7946 ALC269_FIXUP_CZC_L101
,
7947 ALC269_FIXUP_LEMOTE_A1802
,
7948 ALC269_FIXUP_LEMOTE_A190X
,
7949 ALC256_FIXUP_INTEL_NUC8_RUGGED
,
7950 ALC233_FIXUP_INTEL_NUC8_DMIC
,
7951 ALC233_FIXUP_INTEL_NUC8_BOOST
,
7952 ALC256_FIXUP_INTEL_NUC10
,
7953 ALC255_FIXUP_XIAOMI_HEADSET_MIC
,
7954 ALC274_FIXUP_HP_MIC
,
7955 ALC274_FIXUP_HP_HEADSET_MIC
,
7956 ALC274_FIXUP_HP_ENVY_GPIO
,
7957 ALC274_FIXUP_ASUS_ZEN_AIO_27
,
7958 ALC256_FIXUP_ASUS_HPE
,
7959 ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK
,
7960 ALC287_FIXUP_HP_GPIO_LED
,
7961 ALC256_FIXUP_HP_HEADSET_MIC
,
7962 ALC245_FIXUP_HP_GPIO_LED
,
7963 ALC236_FIXUP_DELL_AIO_HEADSET_MIC
,
7964 ALC282_FIXUP_ACER_DISABLE_LINEOUT
,
7965 ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST
,
7966 ALC256_FIXUP_ACER_HEADSET_MIC
,
7967 ALC285_FIXUP_IDEAPAD_S740_COEF
,
7968 ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST
,
7969 ALC295_FIXUP_ASUS_DACS
,
7970 ALC295_FIXUP_HP_OMEN
,
7971 ALC285_FIXUP_HP_SPECTRE_X360
,
7972 ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP
,
7973 ALC623_FIXUP_LENOVO_THINKSTATION_P340
,
7974 ALC255_FIXUP_ACER_HEADPHONE_AND_MIC
,
7975 ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST
,
7976 ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS
,
7977 ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE
,
7978 ALC287_FIXUP_YOGA7_14ITL_SPEAKERS
,
7979 ALC298_FIXUP_LENOVO_C940_DUET7
,
7980 ALC287_FIXUP_13S_GEN2_SPEAKERS
,
7981 ALC256_FIXUP_SET_COEF_DEFAULTS
,
7982 ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
,
7983 ALC233_FIXUP_NO_AUDIO_JACK
,
7984 ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME
,
7985 ALC285_FIXUP_LEGION_Y9000X_SPEAKERS
,
7986 ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE
,
7987 ALC287_FIXUP_LEGION_16ACHG6
,
7988 ALC287_FIXUP_CS35L41_I2C_2
,
7989 ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
,
7990 ALC287_FIXUP_CS35L41_I2C_4
,
7991 ALC245_FIXUP_CS35L41_SPI_2
,
7992 ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
,
7993 ALC245_FIXUP_CS35L41_SPI_4
,
7994 ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED
,
7995 ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED
,
7996 ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE
,
7997 ALC287_FIXUP_LEGION_16ITHG6
,
7998 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK
,
7999 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN
,
8000 ALC287_FIXUP_YOGA9_14IMH9_BASS_SPK_PIN
,
8001 ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS
,
8002 ALC236_FIXUP_DELL_DUAL_CODECS
,
8003 ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI
,
8004 ALC287_FIXUP_TAS2781_I2C
,
8005 ALC245_FIXUP_TAS2781_SPI_2
,
8006 ALC287_FIXUP_YOGA7_14ARB7_I2C
,
8007 ALC245_FIXUP_HP_MUTE_LED_COEFBIT
,
8008 ALC245_FIXUP_HP_MUTE_LED_V1_COEFBIT
,
8009 ALC245_FIXUP_HP_X360_MUTE_LEDS
,
8010 ALC287_FIXUP_THINKPAD_I2S_SPK
,
8011 ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
,
8012 ALC2XX_FIXUP_HEADSET_MIC
,
8013 ALC289_FIXUP_DELL_CS35L41_SPI_2
,
8014 ALC294_FIXUP_CS35L41_I2C_2
,
8015 ALC256_FIXUP_ACER_SFG16_MICMUTE_LED
,
8016 ALC256_FIXUP_HEADPHONE_AMP_VOL
,
8017 ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX
,
8018 ALC245_FIXUP_HP_SPECTRE_X360_16_AA0XXX
,
8019 ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
,
8020 ALC285_FIXUP_ASUS_GA403U
,
8021 ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
,
8022 ALC285_FIXUP_ASUS_GA403U_I2C_SPEAKER2_TO_DAC1
,
8023 ALC285_FIXUP_ASUS_GU605_SPI_2_HEADSET_MIC
,
8024 ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1
,
8025 ALC287_FIXUP_LENOVO_THKPAD_WH_ALC1318
,
8026 ALC256_FIXUP_CHROME_BOOK
,
8027 ALC245_FIXUP_CLEVO_NOISY_MIC
,
8028 ALC269_FIXUP_VAIO_VJFH52_MIC_NO_PRESENCE
,
8029 ALC233_FIXUP_MEDION_MTL_SPK
,
8030 ALC294_FIXUP_BASS_SPEAKER_15
,
8031 ALC283_FIXUP_DELL_HP_RESUME
,
8032 ALC294_FIXUP_ASUS_CS35L41_SPI_2
,
8033 ALC274_FIXUP_HP_AIO_BIND_DACS
,
8034 ALC287_FIXUP_PREDATOR_SPK_CS35L41_I2C_2
,
8035 ALC285_FIXUP_ASUS_GA605K_HEADSET_MIC
,
8036 ALC285_FIXUP_ASUS_GA605K_I2C_SPEAKER2_TO_DAC1
,
8037 ALC269_FIXUP_POSITIVO_P15X_HEADSET_MIC
,
8040 /* A special fixup for Lenovo C940 and Yoga Duet 7;
8041 * both have the very same PCI SSID, and we need to apply different fixups
8042 * depending on the codec ID
8044 static void alc298_fixup_lenovo_c940_duet7(struct hda_codec
*codec
,
8045 const struct hda_fixup
*fix
,
8050 if (codec
->core
.vendor_id
== 0x10ec0298)
8051 id
= ALC298_FIXUP_LENOVO_SPK_VOLUME
; /* C940 */
8053 id
= ALC287_FIXUP_YOGA7_14ITL_SPEAKERS
; /* Duet 7 */
8054 __snd_hda_apply_fixup(codec
, id
, action
, 0);
8057 static const struct hda_fixup alc269_fixups
[] = {
8058 [ALC269_FIXUP_GPIO2
] = {
8059 .type
= HDA_FIXUP_FUNC
,
8060 .v
.func
= alc_fixup_gpio2
,
8062 [ALC269_FIXUP_SONY_VAIO
] = {
8063 .type
= HDA_FIXUP_PINCTLS
,
8064 .v
.pins
= (const struct hda_pintbl
[]) {
8065 {0x19, PIN_VREFGRD
},
8069 [ALC275_FIXUP_SONY_VAIO_GPIO2
] = {
8070 .type
= HDA_FIXUP_FUNC
,
8071 .v
.func
= alc275_fixup_gpio4_off
,
8073 .chain_id
= ALC269_FIXUP_SONY_VAIO
8075 [ALC269_FIXUP_DELL_M101Z
] = {
8076 .type
= HDA_FIXUP_VERBS
,
8077 .v
.verbs
= (const struct hda_verb
[]) {
8078 /* Enables internal speaker */
8079 {0x20, AC_VERB_SET_COEF_INDEX
, 13},
8080 {0x20, AC_VERB_SET_PROC_COEF
, 0x4040},
8084 [ALC269_FIXUP_SKU_IGNORE
] = {
8085 .type
= HDA_FIXUP_FUNC
,
8086 .v
.func
= alc_fixup_sku_ignore
,
8088 [ALC269_FIXUP_ASUS_G73JW
] = {
8089 .type
= HDA_FIXUP_PINS
,
8090 .v
.pins
= (const struct hda_pintbl
[]) {
8091 { 0x17, 0x99130111 }, /* subwoofer */
8095 [ALC269_FIXUP_ASUS_N7601ZM_PINS
] = {
8096 .type
= HDA_FIXUP_PINS
,
8097 .v
.pins
= (const struct hda_pintbl
[]) {
8098 { 0x19, 0x03A11050 },
8099 { 0x1a, 0x03A11C30 },
8100 { 0x21, 0x03211420 },
8104 [ALC269_FIXUP_ASUS_N7601ZM
] = {
8105 .type
= HDA_FIXUP_VERBS
,
8106 .v
.verbs
= (const struct hda_verb
[]) {
8107 {0x20, AC_VERB_SET_COEF_INDEX
, 0x62},
8108 {0x20, AC_VERB_SET_PROC_COEF
, 0xa007},
8109 {0x20, AC_VERB_SET_COEF_INDEX
, 0x10},
8110 {0x20, AC_VERB_SET_PROC_COEF
, 0x8420},
8111 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0f},
8112 {0x20, AC_VERB_SET_PROC_COEF
, 0x7774},
8116 .chain_id
= ALC269_FIXUP_ASUS_N7601ZM_PINS
,
8118 [ALC269_FIXUP_LENOVO_EAPD
] = {
8119 .type
= HDA_FIXUP_VERBS
,
8120 .v
.verbs
= (const struct hda_verb
[]) {
8121 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
8125 [ALC275_FIXUP_SONY_HWEQ
] = {
8126 .type
= HDA_FIXUP_FUNC
,
8127 .v
.func
= alc269_fixup_hweq
,
8129 .chain_id
= ALC275_FIXUP_SONY_VAIO_GPIO2
8131 [ALC275_FIXUP_SONY_DISABLE_AAMIX
] = {
8132 .type
= HDA_FIXUP_FUNC
,
8133 .v
.func
= alc_fixup_disable_aamix
,
8135 .chain_id
= ALC269_FIXUP_SONY_VAIO
8137 [ALC271_FIXUP_DMIC
] = {
8138 .type
= HDA_FIXUP_FUNC
,
8139 .v
.func
= alc271_fixup_dmic
,
8141 [ALC269_FIXUP_PCM_44K
] = {
8142 .type
= HDA_FIXUP_FUNC
,
8143 .v
.func
= alc269_fixup_pcm_44k
,
8145 .chain_id
= ALC269_FIXUP_QUANTA_MUTE
8147 [ALC269_FIXUP_STEREO_DMIC
] = {
8148 .type
= HDA_FIXUP_FUNC
,
8149 .v
.func
= alc269_fixup_stereo_dmic
,
8151 [ALC269_FIXUP_HEADSET_MIC
] = {
8152 .type
= HDA_FIXUP_FUNC
,
8153 .v
.func
= alc269_fixup_headset_mic
,
8155 [ALC269_FIXUP_QUANTA_MUTE
] = {
8156 .type
= HDA_FIXUP_FUNC
,
8157 .v
.func
= alc269_fixup_quanta_mute
,
8159 [ALC269_FIXUP_LIFEBOOK
] = {
8160 .type
= HDA_FIXUP_PINS
,
8161 .v
.pins
= (const struct hda_pintbl
[]) {
8162 { 0x1a, 0x2101103f }, /* dock line-out */
8163 { 0x1b, 0x23a11040 }, /* dock mic-in */
8167 .chain_id
= ALC269_FIXUP_QUANTA_MUTE
8169 [ALC269_FIXUP_LIFEBOOK_EXTMIC
] = {
8170 .type
= HDA_FIXUP_PINS
,
8171 .v
.pins
= (const struct hda_pintbl
[]) {
8172 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
8176 [ALC269_FIXUP_LIFEBOOK_HP_PIN
] = {
8177 .type
= HDA_FIXUP_PINS
,
8178 .v
.pins
= (const struct hda_pintbl
[]) {
8179 { 0x21, 0x0221102f }, /* HP out */
8183 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT
] = {
8184 .type
= HDA_FIXUP_FUNC
,
8185 .v
.func
= alc269_fixup_pincfg_no_hp_to_lineout
,
8187 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC
] = {
8188 .type
= HDA_FIXUP_FUNC
,
8189 .v
.func
= alc269_fixup_pincfg_U7x7_headset_mic
,
8191 [ALC269VB_FIXUP_INFINIX_ZERO_BOOK_13
] = {
8192 .type
= HDA_FIXUP_PINS
,
8193 .v
.pins
= (const struct hda_pintbl
[]) {
8194 { 0x14, 0x90170151 }, /* use as internal speaker (LFE) */
8195 { 0x1b, 0x90170152 }, /* use as internal speaker (back) */
8199 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
8201 [ALC269VC_FIXUP_INFINIX_Y4_MAX
] = {
8202 .type
= HDA_FIXUP_PINS
,
8203 .v
.pins
= (const struct hda_pintbl
[]) {
8204 { 0x1b, 0x90170150 }, /* use as internal speaker */
8208 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
8210 [ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO
] = {
8211 .type
= HDA_FIXUP_PINS
,
8212 .v
.pins
= (const struct hda_pintbl
[]) {
8213 { 0x18, 0x03a19020 }, /* headset mic */
8214 { 0x1b, 0x90170150 }, /* speaker */
8218 [ALC269_FIXUP_AMIC
] = {
8219 .type
= HDA_FIXUP_PINS
,
8220 .v
.pins
= (const struct hda_pintbl
[]) {
8221 { 0x14, 0x99130110 }, /* speaker */
8222 { 0x15, 0x0121401f }, /* HP out */
8223 { 0x18, 0x01a19c20 }, /* mic */
8224 { 0x19, 0x99a3092f }, /* int-mic */
8228 [ALC269_FIXUP_DMIC
] = {
8229 .type
= HDA_FIXUP_PINS
,
8230 .v
.pins
= (const struct hda_pintbl
[]) {
8231 { 0x12, 0x99a3092f }, /* int-mic */
8232 { 0x14, 0x99130110 }, /* speaker */
8233 { 0x15, 0x0121401f }, /* HP out */
8234 { 0x18, 0x01a19c20 }, /* mic */
8238 [ALC269VB_FIXUP_AMIC
] = {
8239 .type
= HDA_FIXUP_PINS
,
8240 .v
.pins
= (const struct hda_pintbl
[]) {
8241 { 0x14, 0x99130110 }, /* speaker */
8242 { 0x18, 0x01a19c20 }, /* mic */
8243 { 0x19, 0x99a3092f }, /* int-mic */
8244 { 0x21, 0x0121401f }, /* HP out */
8248 [ALC269VB_FIXUP_DMIC
] = {
8249 .type
= HDA_FIXUP_PINS
,
8250 .v
.pins
= (const struct hda_pintbl
[]) {
8251 { 0x12, 0x99a3092f }, /* int-mic */
8252 { 0x14, 0x99130110 }, /* speaker */
8253 { 0x18, 0x01a19c20 }, /* mic */
8254 { 0x21, 0x0121401f }, /* HP out */
8258 [ALC269_FIXUP_HP_MUTE_LED
] = {
8259 .type
= HDA_FIXUP_FUNC
,
8260 .v
.func
= alc269_fixup_hp_mute_led
,
8262 [ALC269_FIXUP_HP_MUTE_LED_MIC1
] = {
8263 .type
= HDA_FIXUP_FUNC
,
8264 .v
.func
= alc269_fixup_hp_mute_led_mic1
,
8266 [ALC269_FIXUP_HP_MUTE_LED_MIC2
] = {
8267 .type
= HDA_FIXUP_FUNC
,
8268 .v
.func
= alc269_fixup_hp_mute_led_mic2
,
8270 [ALC269_FIXUP_HP_MUTE_LED_MIC3
] = {
8271 .type
= HDA_FIXUP_FUNC
,
8272 .v
.func
= alc269_fixup_hp_mute_led_mic3
,
8274 .chain_id
= ALC295_FIXUP_HP_AUTO_MUTE
8276 [ALC269_FIXUP_HP_GPIO_LED
] = {
8277 .type
= HDA_FIXUP_FUNC
,
8278 .v
.func
= alc269_fixup_hp_gpio_led
,
8280 [ALC269_FIXUP_HP_GPIO_MIC1_LED
] = {
8281 .type
= HDA_FIXUP_FUNC
,
8282 .v
.func
= alc269_fixup_hp_gpio_mic1_led
,
8284 [ALC269_FIXUP_HP_LINE1_MIC1_LED
] = {
8285 .type
= HDA_FIXUP_FUNC
,
8286 .v
.func
= alc269_fixup_hp_line1_mic1_led
,
8288 [ALC269_FIXUP_INV_DMIC
] = {
8289 .type
= HDA_FIXUP_FUNC
,
8290 .v
.func
= alc_fixup_inv_dmic
,
8292 [ALC269_FIXUP_NO_SHUTUP
] = {
8293 .type
= HDA_FIXUP_FUNC
,
8294 .v
.func
= alc_fixup_no_shutup
,
8296 [ALC269_FIXUP_LENOVO_DOCK
] = {
8297 .type
= HDA_FIXUP_PINS
,
8298 .v
.pins
= (const struct hda_pintbl
[]) {
8299 { 0x19, 0x23a11040 }, /* dock mic */
8300 { 0x1b, 0x2121103f }, /* dock headphone */
8304 .chain_id
= ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
8306 [ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST
] = {
8307 .type
= HDA_FIXUP_FUNC
,
8308 .v
.func
= alc269_fixup_limit_int_mic_boost
,
8310 .chain_id
= ALC269_FIXUP_LENOVO_DOCK
,
8312 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
] = {
8313 .type
= HDA_FIXUP_FUNC
,
8314 .v
.func
= alc269_fixup_pincfg_no_hp_to_lineout
,
8316 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
8318 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
8319 .type
= HDA_FIXUP_PINS
,
8320 .v
.pins
= (const struct hda_pintbl
[]) {
8321 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8322 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8326 .chain_id
= ALC269_FIXUP_HEADSET_MODE
8328 [ALC269_FIXUP_DELL1_LIMIT_INT_MIC_BOOST
] = {
8329 .type
= HDA_FIXUP_FUNC
,
8330 .v
.func
= alc269_fixup_limit_int_mic_boost
,
8332 .chain_id
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8334 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
] = {
8335 .type
= HDA_FIXUP_PINS
,
8336 .v
.pins
= (const struct hda_pintbl
[]) {
8337 { 0x16, 0x21014020 }, /* dock line out */
8338 { 0x19, 0x21a19030 }, /* dock mic */
8339 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8343 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8345 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
] = {
8346 .type
= HDA_FIXUP_PINS
,
8347 .v
.pins
= (const struct hda_pintbl
[]) {
8348 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8352 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8354 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
] = {
8355 .type
= HDA_FIXUP_PINS
,
8356 .v
.pins
= (const struct hda_pintbl
[]) {
8357 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8358 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8362 .chain_id
= ALC269_FIXUP_HEADSET_MODE
8364 [ALC269_FIXUP_HEADSET_MODE
] = {
8365 .type
= HDA_FIXUP_FUNC
,
8366 .v
.func
= alc_fixup_headset_mode
,
8368 .chain_id
= ALC255_FIXUP_MIC_MUTE_LED
8370 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
] = {
8371 .type
= HDA_FIXUP_FUNC
,
8372 .v
.func
= alc_fixup_headset_mode_no_hp_mic
,
8374 [ALC269_FIXUP_ASPIRE_HEADSET_MIC
] = {
8375 .type
= HDA_FIXUP_PINS
,
8376 .v
.pins
= (const struct hda_pintbl
[]) {
8377 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
8381 .chain_id
= ALC269_FIXUP_HEADSET_MODE
,
8383 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE
] = {
8384 .type
= HDA_FIXUP_PINS
,
8385 .v
.pins
= (const struct hda_pintbl
[]) {
8386 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8390 .chain_id
= ALC269_FIXUP_HEADSET_MIC
8392 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS
] = {
8393 .type
= HDA_FIXUP_PINS
,
8394 .v
.pins
= (const struct hda_pintbl
[]) {
8408 .chain_id
= ALC255_FIXUP_MIC_MUTE_LED
8410 [ALC298_FIXUP_HUAWEI_MBX_STEREO
] = {
8411 .type
= HDA_FIXUP_FUNC
,
8412 .v
.func
= alc298_fixup_huawei_mbx_stereo
,
8414 .chain_id
= ALC255_FIXUP_MIC_MUTE_LED
8416 [ALC269_FIXUP_ASUS_X101_FUNC
] = {
8417 .type
= HDA_FIXUP_FUNC
,
8418 .v
.func
= alc269_fixup_x101_headset_mic
,
8420 [ALC269_FIXUP_ASUS_X101_VERB
] = {
8421 .type
= HDA_FIXUP_VERBS
,
8422 .v
.verbs
= (const struct hda_verb
[]) {
8423 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
8424 {0x20, AC_VERB_SET_COEF_INDEX
, 0x08},
8425 {0x20, AC_VERB_SET_PROC_COEF
, 0x0310},
8429 .chain_id
= ALC269_FIXUP_ASUS_X101_FUNC
8431 [ALC269_FIXUP_ASUS_X101
] = {
8432 .type
= HDA_FIXUP_PINS
,
8433 .v
.pins
= (const struct hda_pintbl
[]) {
8434 { 0x18, 0x04a1182c }, /* Headset mic */
8438 .chain_id
= ALC269_FIXUP_ASUS_X101_VERB
8440 [ALC271_FIXUP_AMIC_MIC2
] = {
8441 .type
= HDA_FIXUP_PINS
,
8442 .v
.pins
= (const struct hda_pintbl
[]) {
8443 { 0x14, 0x99130110 }, /* speaker */
8444 { 0x19, 0x01a19c20 }, /* mic */
8445 { 0x1b, 0x99a7012f }, /* int-mic */
8446 { 0x21, 0x0121401f }, /* HP out */
8450 [ALC271_FIXUP_HP_GATE_MIC_JACK
] = {
8451 .type
= HDA_FIXUP_FUNC
,
8452 .v
.func
= alc271_hp_gate_mic_jack
,
8454 .chain_id
= ALC271_FIXUP_AMIC_MIC2
,
8456 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
] = {
8457 .type
= HDA_FIXUP_FUNC
,
8458 .v
.func
= alc269_fixup_limit_int_mic_boost
,
8460 .chain_id
= ALC271_FIXUP_HP_GATE_MIC_JACK
,
8462 [ALC269_FIXUP_ACER_AC700
] = {
8463 .type
= HDA_FIXUP_PINS
,
8464 .v
.pins
= (const struct hda_pintbl
[]) {
8465 { 0x12, 0x99a3092f }, /* int-mic */
8466 { 0x14, 0x99130110 }, /* speaker */
8467 { 0x18, 0x03a11c20 }, /* mic */
8468 { 0x1e, 0x0346101e }, /* SPDIF1 */
8469 { 0x21, 0x0321101f }, /* HP out */
8473 .chain_id
= ALC271_FIXUP_DMIC
,
8475 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST
] = {
8476 .type
= HDA_FIXUP_FUNC
,
8477 .v
.func
= alc269_fixup_limit_int_mic_boost
,
8479 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
8481 [ALC269VB_FIXUP_ASUS_ZENBOOK
] = {
8482 .type
= HDA_FIXUP_FUNC
,
8483 .v
.func
= alc269_fixup_limit_int_mic_boost
,
8485 .chain_id
= ALC269VB_FIXUP_DMIC
,
8487 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
] = {
8488 .type
= HDA_FIXUP_VERBS
,
8489 .v
.verbs
= (const struct hda_verb
[]) {
8490 /* class-D output amp +5dB */
8491 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x12 },
8492 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2800 },
8496 .chain_id
= ALC269VB_FIXUP_ASUS_ZENBOOK
,
8498 [ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE
] = {
8499 .type
= HDA_FIXUP_PINS
,
8500 .v
.pins
= (const struct hda_pintbl
[]) {
8501 { 0x18, 0x01a110f0 }, /* use as headset mic */
8505 .chain_id
= ALC269_FIXUP_HEADSET_MIC
8507 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
] = {
8508 .type
= HDA_FIXUP_FUNC
,
8509 .v
.func
= alc269_fixup_limit_int_mic_boost
,
8511 .chain_id
= ALC269_FIXUP_HP_MUTE_LED_MIC1
,
8513 [ALC269VB_FIXUP_ORDISSIMO_EVE2
] = {
8514 .type
= HDA_FIXUP_PINS
,
8515 .v
.pins
= (const struct hda_pintbl
[]) {
8516 { 0x12, 0x99a3092f }, /* int-mic */
8517 { 0x18, 0x03a11d20 }, /* mic */
8518 { 0x19, 0x411111f0 }, /* Unused bogus pin */
8522 [ALC283_FIXUP_CHROME_BOOK
] = {
8523 .type
= HDA_FIXUP_FUNC
,
8524 .v
.func
= alc283_fixup_chromebook
,
8526 [ALC283_FIXUP_SENSE_COMBO_JACK
] = {
8527 .type
= HDA_FIXUP_FUNC
,
8528 .v
.func
= alc283_fixup_sense_combo_jack
,
8530 .chain_id
= ALC283_FIXUP_CHROME_BOOK
,
8532 [ALC282_FIXUP_ASUS_TX300
] = {
8533 .type
= HDA_FIXUP_FUNC
,
8534 .v
.func
= alc282_fixup_asus_tx300
,
8536 [ALC283_FIXUP_INT_MIC
] = {
8537 .type
= HDA_FIXUP_VERBS
,
8538 .v
.verbs
= (const struct hda_verb
[]) {
8539 {0x20, AC_VERB_SET_COEF_INDEX
, 0x1a},
8540 {0x20, AC_VERB_SET_PROC_COEF
, 0x0011},
8544 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
8546 [ALC290_FIXUP_SUBWOOFER_HSJACK
] = {
8547 .type
= HDA_FIXUP_PINS
,
8548 .v
.pins
= (const struct hda_pintbl
[]) {
8549 { 0x17, 0x90170112 }, /* subwoofer */
8553 .chain_id
= ALC290_FIXUP_MONO_SPEAKERS_HSJACK
,
8555 [ALC290_FIXUP_SUBWOOFER
] = {
8556 .type
= HDA_FIXUP_PINS
,
8557 .v
.pins
= (const struct hda_pintbl
[]) {
8558 { 0x17, 0x90170112 }, /* subwoofer */
8562 .chain_id
= ALC290_FIXUP_MONO_SPEAKERS
,
8564 [ALC290_FIXUP_MONO_SPEAKERS
] = {
8565 .type
= HDA_FIXUP_FUNC
,
8566 .v
.func
= alc290_fixup_mono_speakers
,
8568 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK
] = {
8569 .type
= HDA_FIXUP_FUNC
,
8570 .v
.func
= alc290_fixup_mono_speakers
,
8572 .chain_id
= ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
8574 [ALC269_FIXUP_THINKPAD_ACPI
] = {
8575 .type
= HDA_FIXUP_FUNC
,
8576 .v
.func
= alc_fixup_thinkpad_acpi
,
8578 .chain_id
= ALC269_FIXUP_SKU_IGNORE
,
8580 [ALC269_FIXUP_LENOVO_XPAD_ACPI
] = {
8581 .type
= HDA_FIXUP_FUNC
,
8582 .v
.func
= alc_fixup_ideapad_acpi
,
8584 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
8586 [ALC269_FIXUP_DMIC_THINKPAD_ACPI
] = {
8587 .type
= HDA_FIXUP_FUNC
,
8588 .v
.func
= alc_fixup_inv_dmic
,
8590 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
8592 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE
] = {
8593 .type
= HDA_FIXUP_PINS
,
8594 .v
.pins
= (const struct hda_pintbl
[]) {
8595 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8599 .chain_id
= ALC255_FIXUP_HEADSET_MODE
8601 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE
] = {
8602 .type
= HDA_FIXUP_PINS
,
8603 .v
.pins
= (const struct hda_pintbl
[]) {
8604 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8608 .chain_id
= ALC255_FIXUP_HEADSET_MODE
8610 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
8611 .type
= HDA_FIXUP_PINS
,
8612 .v
.pins
= (const struct hda_pintbl
[]) {
8613 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8614 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8618 .chain_id
= ALC255_FIXUP_HEADSET_MODE
8620 [ALC255_FIXUP_DELL1_LIMIT_INT_MIC_BOOST
] = {
8621 .type
= HDA_FIXUP_FUNC
,
8622 .v
.func
= alc269_fixup_limit_int_mic_boost
,
8624 .chain_id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8626 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
] = {
8627 .type
= HDA_FIXUP_PINS
,
8628 .v
.pins
= (const struct hda_pintbl
[]) {
8629 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8633 .chain_id
= ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8635 [ALC255_FIXUP_HEADSET_MODE
] = {
8636 .type
= HDA_FIXUP_FUNC
,
8637 .v
.func
= alc_fixup_headset_mode_alc255
,
8639 .chain_id
= ALC255_FIXUP_MIC_MUTE_LED
8641 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
] = {
8642 .type
= HDA_FIXUP_FUNC
,
8643 .v
.func
= alc_fixup_headset_mode_alc255_no_hp_mic
,
8645 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
8646 .type
= HDA_FIXUP_PINS
,
8647 .v
.pins
= (const struct hda_pintbl
[]) {
8648 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8649 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8653 .chain_id
= ALC269_FIXUP_HEADSET_MODE
8655 [ALC292_FIXUP_TPT440_DOCK
] = {
8656 .type
= HDA_FIXUP_FUNC
,
8657 .v
.func
= alc_fixup_tpt440_dock
,
8659 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
8661 [ALC292_FIXUP_TPT440
] = {
8662 .type
= HDA_FIXUP_FUNC
,
8663 .v
.func
= alc_fixup_disable_aamix
,
8665 .chain_id
= ALC292_FIXUP_TPT440_DOCK
,
8667 [ALC283_FIXUP_HEADSET_MIC
] = {
8668 .type
= HDA_FIXUP_PINS
,
8669 .v
.pins
= (const struct hda_pintbl
[]) {
8670 { 0x19, 0x04a110f0 },
8674 [ALC255_FIXUP_MIC_MUTE_LED
] = {
8675 .type
= HDA_FIXUP_FUNC
,
8676 .v
.func
= alc_fixup_micmute_led
,
8678 [ALC282_FIXUP_ASPIRE_V5_PINS
] = {
8679 .type
= HDA_FIXUP_PINS
,
8680 .v
.pins
= (const struct hda_pintbl
[]) {
8681 { 0x12, 0x90a60130 },
8682 { 0x14, 0x90170110 },
8683 { 0x17, 0x40000008 },
8684 { 0x18, 0x411111f0 },
8685 { 0x19, 0x01a1913c },
8686 { 0x1a, 0x411111f0 },
8687 { 0x1b, 0x411111f0 },
8688 { 0x1d, 0x40f89b2d },
8689 { 0x1e, 0x411111f0 },
8690 { 0x21, 0x0321101f },
8694 [ALC269VB_FIXUP_ASPIRE_E1_COEF
] = {
8695 .type
= HDA_FIXUP_FUNC
,
8696 .v
.func
= alc269vb_fixup_aspire_e1_coef
,
8698 [ALC280_FIXUP_HP_GPIO4
] = {
8699 .type
= HDA_FIXUP_FUNC
,
8700 .v
.func
= alc280_fixup_hp_gpio4
,
8702 [ALC286_FIXUP_HP_GPIO_LED
] = {
8703 .type
= HDA_FIXUP_FUNC
,
8704 .v
.func
= alc286_fixup_hp_gpio_led
,
8706 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY
] = {
8707 .type
= HDA_FIXUP_FUNC
,
8708 .v
.func
= alc280_fixup_hp_gpio2_mic_hotkey
,
8710 [ALC280_FIXUP_HP_DOCK_PINS
] = {
8711 .type
= HDA_FIXUP_PINS
,
8712 .v
.pins
= (const struct hda_pintbl
[]) {
8713 { 0x1b, 0x21011020 }, /* line-out */
8714 { 0x1a, 0x01a1903c }, /* headset mic */
8715 { 0x18, 0x2181103f }, /* line-in */
8719 .chain_id
= ALC280_FIXUP_HP_GPIO4
8721 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED
] = {
8722 .type
= HDA_FIXUP_PINS
,
8723 .v
.pins
= (const struct hda_pintbl
[]) {
8724 { 0x1b, 0x21011020 }, /* line-out */
8725 { 0x18, 0x2181103f }, /* line-in */
8729 .chain_id
= ALC269_FIXUP_HP_GPIO_MIC1_LED
8731 [ALC280_FIXUP_HP_9480M
] = {
8732 .type
= HDA_FIXUP_FUNC
,
8733 .v
.func
= alc280_fixup_hp_9480m
,
8735 [ALC245_FIXUP_HP_X360_AMP
] = {
8736 .type
= HDA_FIXUP_FUNC
,
8737 .v
.func
= alc245_fixup_hp_x360_amp
,
8739 .chain_id
= ALC245_FIXUP_HP_GPIO_LED
8741 [ALC288_FIXUP_DELL_HEADSET_MODE
] = {
8742 .type
= HDA_FIXUP_FUNC
,
8743 .v
.func
= alc_fixup_headset_mode_dell_alc288
,
8745 .chain_id
= ALC255_FIXUP_MIC_MUTE_LED
8747 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
8748 .type
= HDA_FIXUP_PINS
,
8749 .v
.pins
= (const struct hda_pintbl
[]) {
8750 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8751 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8755 .chain_id
= ALC288_FIXUP_DELL_HEADSET_MODE
8757 [ALC288_FIXUP_DISABLE_AAMIX
] = {
8758 .type
= HDA_FIXUP_FUNC
,
8759 .v
.func
= alc_fixup_disable_aamix
,
8761 .chain_id
= ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
8763 [ALC288_FIXUP_DELL_XPS_13
] = {
8764 .type
= HDA_FIXUP_FUNC
,
8765 .v
.func
= alc_fixup_dell_xps13
,
8767 .chain_id
= ALC288_FIXUP_DISABLE_AAMIX
8769 [ALC292_FIXUP_DISABLE_AAMIX
] = {
8770 .type
= HDA_FIXUP_FUNC
,
8771 .v
.func
= alc_fixup_disable_aamix
,
8773 .chain_id
= ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8775 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
] = {
8776 .type
= HDA_FIXUP_FUNC
,
8777 .v
.func
= alc_fixup_disable_aamix
,
8779 .chain_id
= ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
8781 [ALC292_FIXUP_DELL_E7X_AAMIX
] = {
8782 .type
= HDA_FIXUP_FUNC
,
8783 .v
.func
= alc_fixup_dell_xps13
,
8785 .chain_id
= ALC292_FIXUP_DISABLE_AAMIX
8787 [ALC292_FIXUP_DELL_E7X
] = {
8788 .type
= HDA_FIXUP_FUNC
,
8789 .v
.func
= alc_fixup_micmute_led
,
8790 /* micmute fixup must be applied at last */
8791 .chained_before
= true,
8792 .chain_id
= ALC292_FIXUP_DELL_E7X_AAMIX
,
8794 [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE
] = {
8795 .type
= HDA_FIXUP_PINS
,
8796 .v
.pins
= (const struct hda_pintbl
[]) {
8797 { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
8800 .chained_before
= true,
8801 .chain_id
= ALC269_FIXUP_HEADSET_MODE
,
8803 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
8804 .type
= HDA_FIXUP_PINS
,
8805 .v
.pins
= (const struct hda_pintbl
[]) {
8806 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8807 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8811 .chain_id
= ALC269_FIXUP_HEADSET_MODE
8813 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE
] = {
8814 .type
= HDA_FIXUP_PINS
,
8815 .v
.pins
= (const struct hda_pintbl
[]) {
8816 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8820 .chain_id
= ALC269_FIXUP_HEADSET_MODE
8822 [ALC275_FIXUP_DELL_XPS
] = {
8823 .type
= HDA_FIXUP_VERBS
,
8824 .v
.verbs
= (const struct hda_verb
[]) {
8825 /* Enables internal speaker */
8826 {0x20, AC_VERB_SET_COEF_INDEX
, 0x1f},
8827 {0x20, AC_VERB_SET_PROC_COEF
, 0x00c0},
8828 {0x20, AC_VERB_SET_COEF_INDEX
, 0x30},
8829 {0x20, AC_VERB_SET_PROC_COEF
, 0x00b1},
8833 [ALC293_FIXUP_LENOVO_SPK_NOISE
] = {
8834 .type
= HDA_FIXUP_FUNC
,
8835 .v
.func
= alc_fixup_disable_aamix
,
8837 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
8839 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
] = {
8840 .type
= HDA_FIXUP_FUNC
,
8841 .v
.func
= alc233_fixup_lenovo_line2_mic_hotkey
,
8843 [ALC233_FIXUP_LENOVO_L2MH_LOW_ENLED
] = {
8844 .type
= HDA_FIXUP_FUNC
,
8845 .v
.func
= alc233_fixup_lenovo_low_en_micmute_led
,
8847 [ALC233_FIXUP_INTEL_NUC8_DMIC
] = {
8848 .type
= HDA_FIXUP_FUNC
,
8849 .v
.func
= alc_fixup_inv_dmic
,
8851 .chain_id
= ALC233_FIXUP_INTEL_NUC8_BOOST
,
8853 [ALC233_FIXUP_INTEL_NUC8_BOOST
] = {
8854 .type
= HDA_FIXUP_FUNC
,
8855 .v
.func
= alc269_fixup_limit_int_mic_boost
8857 [ALC255_FIXUP_DELL_SPK_NOISE
] = {
8858 .type
= HDA_FIXUP_FUNC
,
8859 .v
.func
= alc_fixup_disable_aamix
,
8861 .chain_id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8863 [ALC225_FIXUP_DISABLE_MIC_VREF
] = {
8864 .type
= HDA_FIXUP_FUNC
,
8865 .v
.func
= alc_fixup_disable_mic_vref
,
8867 .chain_id
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8869 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
8870 .type
= HDA_FIXUP_VERBS
,
8871 .v
.verbs
= (const struct hda_verb
[]) {
8872 /* Disable pass-through path for FRONT 14h */
8873 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x36 },
8874 { 0x20, AC_VERB_SET_PROC_COEF
, 0x57d7 },
8878 .chain_id
= ALC225_FIXUP_DISABLE_MIC_VREF
8880 [ALC280_FIXUP_HP_HEADSET_MIC
] = {
8881 .type
= HDA_FIXUP_FUNC
,
8882 .v
.func
= alc_fixup_disable_aamix
,
8884 .chain_id
= ALC269_FIXUP_HEADSET_MIC
,
8886 [ALC221_FIXUP_HP_FRONT_MIC
] = {
8887 .type
= HDA_FIXUP_PINS
,
8888 .v
.pins
= (const struct hda_pintbl
[]) {
8889 { 0x19, 0x02a19020 }, /* Front Mic */
8893 [ALC292_FIXUP_TPT460
] = {
8894 .type
= HDA_FIXUP_FUNC
,
8895 .v
.func
= alc_fixup_tpt440_dock
,
8897 .chain_id
= ALC293_FIXUP_LENOVO_SPK_NOISE
,
8899 [ALC298_FIXUP_SPK_VOLUME
] = {
8900 .type
= HDA_FIXUP_FUNC
,
8901 .v
.func
= alc298_fixup_speaker_volume
,
8903 .chain_id
= ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE
,
8905 [ALC298_FIXUP_LENOVO_SPK_VOLUME
] = {
8906 .type
= HDA_FIXUP_FUNC
,
8907 .v
.func
= alc298_fixup_speaker_volume
,
8909 [ALC295_FIXUP_DISABLE_DAC3
] = {
8910 .type
= HDA_FIXUP_FUNC
,
8911 .v
.func
= alc295_fixup_disable_dac3
,
8913 [ALC285_FIXUP_SPEAKER2_TO_DAC1
] = {
8914 .type
= HDA_FIXUP_FUNC
,
8915 .v
.func
= alc285_fixup_speaker2_to_dac1
,
8917 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
8919 [ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1
] = {
8920 .type
= HDA_FIXUP_FUNC
,
8921 .v
.func
= alc285_fixup_speaker2_to_dac1
,
8923 .chain_id
= ALC245_FIXUP_CS35L41_SPI_2
8925 [ALC285_FIXUP_ASUS_HEADSET_MIC
] = {
8926 .type
= HDA_FIXUP_PINS
,
8927 .v
.pins
= (const struct hda_pintbl
[]) {
8928 { 0x19, 0x03a11050 },
8929 { 0x1b, 0x03a11c30 },
8933 .chain_id
= ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1
8935 [ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS
] = {
8936 .type
= HDA_FIXUP_PINS
,
8937 .v
.pins
= (const struct hda_pintbl
[]) {
8938 { 0x14, 0x90170120 },
8942 .chain_id
= ALC285_FIXUP_ASUS_HEADSET_MIC
8944 [ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1
] = {
8945 .type
= HDA_FIXUP_FUNC
,
8946 .v
.func
= alc285_fixup_speaker2_to_dac1
,
8948 .chain_id
= ALC287_FIXUP_CS35L41_I2C_2
8950 [ALC285_FIXUP_ASUS_I2C_HEADSET_MIC
] = {
8951 .type
= HDA_FIXUP_PINS
,
8952 .v
.pins
= (const struct hda_pintbl
[]) {
8953 { 0x19, 0x03a11050 },
8954 { 0x1b, 0x03a11c30 },
8958 .chain_id
= ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1
8960 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER
] = {
8961 .type
= HDA_FIXUP_PINS
,
8962 .v
.pins
= (const struct hda_pintbl
[]) {
8963 { 0x1b, 0x90170151 },
8967 .chain_id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8969 [ALC269_FIXUP_ATIV_BOOK_8
] = {
8970 .type
= HDA_FIXUP_FUNC
,
8971 .v
.func
= alc_fixup_auto_mute_via_amp
,
8973 .chain_id
= ALC269_FIXUP_NO_SHUTUP
8975 [ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE
] = {
8976 .type
= HDA_FIXUP_PINS
,
8977 .v
.pins
= (const struct hda_pintbl
[]) {
8978 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8979 { 0x1a, 0x01813030 }, /* use as headphone mic, without its own jack detect */
8983 .chain_id
= ALC269_FIXUP_HEADSET_MODE
8985 [ALC221_FIXUP_HP_MIC_NO_PRESENCE
] = {
8986 .type
= HDA_FIXUP_PINS
,
8987 .v
.pins
= (const struct hda_pintbl
[]) {
8988 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8989 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8993 .chain_id
= ALC269_FIXUP_HEADSET_MODE
8995 [ALC256_FIXUP_ASUS_HEADSET_MODE
] = {
8996 .type
= HDA_FIXUP_FUNC
,
8997 .v
.func
= alc_fixup_headset_mode
,
8999 [ALC256_FIXUP_ASUS_MIC
] = {
9000 .type
= HDA_FIXUP_PINS
,
9001 .v
.pins
= (const struct hda_pintbl
[]) {
9002 { 0x13, 0x90a60160 }, /* use as internal mic */
9003 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
9007 .chain_id
= ALC256_FIXUP_ASUS_HEADSET_MODE
9009 [ALC256_FIXUP_ASUS_AIO_GPIO2
] = {
9010 .type
= HDA_FIXUP_FUNC
,
9011 /* Set up GPIO2 for the speaker amp */
9012 .v
.func
= alc_fixup_gpio4
,
9014 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
] = {
9015 .type
= HDA_FIXUP_PINS
,
9016 .v
.pins
= (const struct hda_pintbl
[]) {
9017 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9021 .chain_id
= ALC269_FIXUP_HEADSET_MIC
9023 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE
] = {
9024 .type
= HDA_FIXUP_VERBS
,
9025 .v
.verbs
= (const struct hda_verb
[]) {
9026 /* Enables internal speaker */
9027 {0x20, AC_VERB_SET_COEF_INDEX
, 0x40},
9028 {0x20, AC_VERB_SET_PROC_COEF
, 0x8800},
9032 .chain_id
= ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
9034 [ALC233_FIXUP_LENOVO_MULTI_CODECS
] = {
9035 .type
= HDA_FIXUP_FUNC
,
9036 .v
.func
= alc233_alc662_fixup_lenovo_dual_codecs
,
9038 .chain_id
= ALC269_FIXUP_GPIO2
9040 [ALC233_FIXUP_ACER_HEADSET_MIC
] = {
9041 .type
= HDA_FIXUP_VERBS
,
9042 .v
.verbs
= (const struct hda_verb
[]) {
9043 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x45 },
9044 { 0x20, AC_VERB_SET_PROC_COEF
, 0x5089 },
9048 .chain_id
= ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
9050 [ALC294_FIXUP_LENOVO_MIC_LOCATION
] = {
9051 .type
= HDA_FIXUP_PINS
,
9052 .v
.pins
= (const struct hda_pintbl
[]) {
9053 /* Change the mic location from front to right, otherwise there are
9054 two front mics with the same name, pulseaudio can't handle them.
9055 This is just a temporary workaround, after applying this fixup,
9056 there will be one "Front Mic" and one "Mic" in this machine.
9058 { 0x1a, 0x04a19040 },
9062 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE
] = {
9063 .type
= HDA_FIXUP_PINS
,
9064 .v
.pins
= (const struct hda_pintbl
[]) {
9065 { 0x16, 0x0101102f }, /* Rear Headset HP */
9066 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
9067 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
9068 { 0x1b, 0x02011020 },
9072 .chain_id
= ALC225_FIXUP_S3_POP_NOISE
9074 [ALC225_FIXUP_S3_POP_NOISE
] = {
9075 .type
= HDA_FIXUP_FUNC
,
9076 .v
.func
= alc225_fixup_s3_pop_noise
,
9078 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9080 [ALC700_FIXUP_INTEL_REFERENCE
] = {
9081 .type
= HDA_FIXUP_VERBS
,
9082 .v
.verbs
= (const struct hda_verb
[]) {
9083 /* Enables internal speaker */
9084 {0x20, AC_VERB_SET_COEF_INDEX
, 0x45},
9085 {0x20, AC_VERB_SET_PROC_COEF
, 0x5289},
9086 {0x20, AC_VERB_SET_COEF_INDEX
, 0x4A},
9087 {0x20, AC_VERB_SET_PROC_COEF
, 0x001b},
9088 {0x58, AC_VERB_SET_COEF_INDEX
, 0x00},
9089 {0x58, AC_VERB_SET_PROC_COEF
, 0x3888},
9090 {0x20, AC_VERB_SET_COEF_INDEX
, 0x6f},
9091 {0x20, AC_VERB_SET_PROC_COEF
, 0x2c0b},
9095 [ALC274_FIXUP_DELL_BIND_DACS
] = {
9096 .type
= HDA_FIXUP_FUNC
,
9097 .v
.func
= alc274_fixup_bind_dacs
,
9099 .chain_id
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
9101 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB
] = {
9102 .type
= HDA_FIXUP_PINS
,
9103 .v
.pins
= (const struct hda_pintbl
[]) {
9104 { 0x1b, 0x0401102f },
9108 .chain_id
= ALC274_FIXUP_DELL_BIND_DACS
9110 [ALC298_FIXUP_TPT470_DOCK_FIX
] = {
9111 .type
= HDA_FIXUP_FUNC
,
9112 .v
.func
= alc_fixup_tpt470_dock
,
9114 .chain_id
= ALC293_FIXUP_LENOVO_SPK_NOISE
9116 [ALC298_FIXUP_TPT470_DOCK
] = {
9117 .type
= HDA_FIXUP_FUNC
,
9118 .v
.func
= alc_fixup_tpt470_dacs
,
9120 .chain_id
= ALC298_FIXUP_TPT470_DOCK_FIX
9122 [ALC255_FIXUP_DUMMY_LINEOUT_VERB
] = {
9123 .type
= HDA_FIXUP_PINS
,
9124 .v
.pins
= (const struct hda_pintbl
[]) {
9125 { 0x14, 0x0201101f },
9129 .chain_id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
9131 [ALC255_FIXUP_DELL_HEADSET_MIC
] = {
9132 .type
= HDA_FIXUP_PINS
,
9133 .v
.pins
= (const struct hda_pintbl
[]) {
9134 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9138 .chain_id
= ALC269_FIXUP_HEADSET_MIC
9140 [ALC295_FIXUP_HP_X360
] = {
9141 .type
= HDA_FIXUP_FUNC
,
9142 .v
.func
= alc295_fixup_hp_top_speakers
,
9144 .chain_id
= ALC269_FIXUP_HP_MUTE_LED_MIC3
9146 [ALC221_FIXUP_HP_HEADSET_MIC
] = {
9147 .type
= HDA_FIXUP_PINS
,
9148 .v
.pins
= (const struct hda_pintbl
[]) {
9149 { 0x19, 0x0181313f},
9153 .chain_id
= ALC269_FIXUP_HEADSET_MIC
9155 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
] = {
9156 .type
= HDA_FIXUP_FUNC
,
9157 .v
.func
= alc285_fixup_invalidate_dacs
,
9159 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
9161 [ALC295_FIXUP_HP_AUTO_MUTE
] = {
9162 .type
= HDA_FIXUP_FUNC
,
9163 .v
.func
= alc_fixup_auto_mute_via_amp
,
9165 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
] = {
9166 .type
= HDA_FIXUP_PINS
,
9167 .v
.pins
= (const struct hda_pintbl
[]) {
9168 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9172 .chain_id
= ALC269_FIXUP_HEADSET_MIC
9174 [ALC294_FIXUP_ASUS_MIC
] = {
9175 .type
= HDA_FIXUP_PINS
,
9176 .v
.pins
= (const struct hda_pintbl
[]) {
9177 { 0x13, 0x90a60160 }, /* use as internal mic */
9178 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
9182 .chain_id
= ALC269_FIXUP_HEADSET_MIC
9184 [ALC294_FIXUP_ASUS_HEADSET_MIC
] = {
9185 .type
= HDA_FIXUP_PINS
,
9186 .v
.pins
= (const struct hda_pintbl
[]) {
9187 { 0x19, 0x01a1103c }, /* use as headset mic */
9191 .chain_id
= ALC269_FIXUP_HEADSET_MIC
9193 [ALC294_FIXUP_ASUS_SPK
] = {
9194 .type
= HDA_FIXUP_VERBS
,
9195 .v
.verbs
= (const struct hda_verb
[]) {
9197 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x40 },
9198 { 0x20, AC_VERB_SET_PROC_COEF
, 0x8800 },
9199 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0f },
9200 { 0x20, AC_VERB_SET_PROC_COEF
, 0x7774 },
9204 .chain_id
= ALC294_FIXUP_ASUS_HEADSET_MIC
9206 [ALC295_FIXUP_CHROME_BOOK
] = {
9207 .type
= HDA_FIXUP_FUNC
,
9208 .v
.func
= alc295_fixup_chromebook
,
9210 .chain_id
= ALC225_FIXUP_HEADSET_JACK
9212 [ALC225_FIXUP_HEADSET_JACK
] = {
9213 .type
= HDA_FIXUP_FUNC
,
9214 .v
.func
= alc_fixup_headset_jack
,
9216 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
] = {
9217 .type
= HDA_FIXUP_PINS
,
9218 .v
.pins
= (const struct hda_pintbl
[]) {
9219 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9223 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9225 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE
] = {
9226 .type
= HDA_FIXUP_VERBS
,
9227 .v
.verbs
= (const struct hda_verb
[]) {
9228 /* Disable PCBEEP-IN passthrough */
9229 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x36 },
9230 { 0x20, AC_VERB_SET_PROC_COEF
, 0x57d7 },
9234 .chain_id
= ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
9236 [ALC255_FIXUP_ACER_HEADSET_MIC
] = {
9237 .type
= HDA_FIXUP_PINS
,
9238 .v
.pins
= (const struct hda_pintbl
[]) {
9239 { 0x19, 0x03a11130 },
9240 { 0x1a, 0x90a60140 }, /* use as internal mic */
9244 .chain_id
= ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
9246 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE
] = {
9247 .type
= HDA_FIXUP_PINS
,
9248 .v
.pins
= (const struct hda_pintbl
[]) {
9249 { 0x16, 0x01011020 }, /* Rear Line out */
9250 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
9254 .chain_id
= ALC225_FIXUP_WYSE_AUTO_MUTE
9256 [ALC225_FIXUP_WYSE_AUTO_MUTE
] = {
9257 .type
= HDA_FIXUP_FUNC
,
9258 .v
.func
= alc_fixup_auto_mute_via_amp
,
9260 .chain_id
= ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
9262 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
] = {
9263 .type
= HDA_FIXUP_FUNC
,
9264 .v
.func
= alc_fixup_disable_mic_vref
,
9266 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9268 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC
] = {
9269 .type
= HDA_FIXUP_VERBS
,
9270 .v
.verbs
= (const struct hda_verb
[]) {
9271 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x4f },
9272 { 0x20, AC_VERB_SET_PROC_COEF
, 0x5029 },
9276 .chain_id
= ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
9278 [ALC256_FIXUP_ASUS_HEADSET_MIC
] = {
9279 .type
= HDA_FIXUP_PINS
,
9280 .v
.pins
= (const struct hda_pintbl
[]) {
9281 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
9285 .chain_id
= ALC256_FIXUP_ASUS_HEADSET_MODE
9287 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
] = {
9288 .type
= HDA_FIXUP_PINS
,
9289 .v
.pins
= (const struct hda_pintbl
[]) {
9290 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
9294 .chain_id
= ALC256_FIXUP_ASUS_HEADSET_MODE
9296 [ALC255_FIXUP_PREDATOR_SUBWOOFER
] = {
9297 .type
= HDA_FIXUP_PINS
,
9298 .v
.pins
= (const struct hda_pintbl
[]) {
9299 { 0x17, 0x90170151 }, /* use as internal speaker (LFE) */
9300 { 0x1b, 0x90170152 } /* use as internal speaker (back) */
9303 [ALC299_FIXUP_PREDATOR_SPK
] = {
9304 .type
= HDA_FIXUP_PINS
,
9305 .v
.pins
= (const struct hda_pintbl
[]) {
9306 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
9310 [ALC287_FIXUP_PREDATOR_SPK_CS35L41_I2C_2
] = {
9311 .type
= HDA_FIXUP_FUNC
,
9312 .v
.func
= cs35l41_fixup_i2c_two
,
9314 .chain_id
= ALC255_FIXUP_PREDATOR_SUBWOOFER
9316 [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE
] = {
9317 .type
= HDA_FIXUP_PINS
,
9318 .v
.pins
= (const struct hda_pintbl
[]) {
9319 { 0x19, 0x04a11040 },
9320 { 0x21, 0x04211020 },
9324 .chain_id
= ALC256_FIXUP_ASUS_HEADSET_MODE
9326 [ALC289_FIXUP_DELL_SPK1
] = {
9327 .type
= HDA_FIXUP_PINS
,
9328 .v
.pins
= (const struct hda_pintbl
[]) {
9329 { 0x14, 0x90170140 },
9333 .chain_id
= ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
9335 [ALC289_FIXUP_DELL_SPK2
] = {
9336 .type
= HDA_FIXUP_PINS
,
9337 .v
.pins
= (const struct hda_pintbl
[]) {
9338 { 0x17, 0x90170130 }, /* bass spk */
9342 .chain_id
= ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
9344 [ALC289_FIXUP_DUAL_SPK
] = {
9345 .type
= HDA_FIXUP_FUNC
,
9346 .v
.func
= alc285_fixup_speaker2_to_dac1
,
9348 .chain_id
= ALC289_FIXUP_DELL_SPK2
9350 [ALC289_FIXUP_RTK_AMP_DUAL_SPK
] = {
9351 .type
= HDA_FIXUP_FUNC
,
9352 .v
.func
= alc285_fixup_speaker2_to_dac1
,
9354 .chain_id
= ALC289_FIXUP_DELL_SPK1
9356 [ALC294_FIXUP_SPK2_TO_DAC1
] = {
9357 .type
= HDA_FIXUP_FUNC
,
9358 .v
.func
= alc285_fixup_speaker2_to_dac1
,
9360 .chain_id
= ALC294_FIXUP_ASUS_HEADSET_MIC
9362 [ALC294_FIXUP_ASUS_DUAL_SPK
] = {
9363 .type
= HDA_FIXUP_FUNC
,
9364 /* The GPIO must be pulled to initialize the AMP */
9365 .v
.func
= alc_fixup_gpio4
,
9367 .chain_id
= ALC294_FIXUP_SPK2_TO_DAC1
9369 [ALC294_FIXUP_ASUS_ALLY
] = {
9370 .type
= HDA_FIXUP_FUNC
,
9371 .v
.func
= cs35l41_fixup_i2c_two
,
9373 .chain_id
= ALC294_FIXUP_ASUS_ALLY_PINS
9375 [ALC294_FIXUP_ASUS_ALLY_PINS
] = {
9376 .type
= HDA_FIXUP_PINS
,
9377 .v
.pins
= (const struct hda_pintbl
[]) {
9378 { 0x19, 0x03a11050 },
9379 { 0x1a, 0x03a11c30 },
9380 { 0x21, 0x03211420 },
9384 .chain_id
= ALC294_FIXUP_ASUS_ALLY_VERBS
9386 [ALC294_FIXUP_ASUS_ALLY_VERBS
] = {
9387 .type
= HDA_FIXUP_VERBS
,
9388 .v
.verbs
= (const struct hda_verb
[]) {
9389 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x45 },
9390 { 0x20, AC_VERB_SET_PROC_COEF
, 0x5089 },
9391 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x46 },
9392 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0004 },
9393 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x47 },
9394 { 0x20, AC_VERB_SET_PROC_COEF
, 0xa47a },
9395 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x49 },
9396 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0049},
9397 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x4a },
9398 { 0x20, AC_VERB_SET_PROC_COEF
, 0x201b },
9399 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x6b },
9400 { 0x20, AC_VERB_SET_PROC_COEF
, 0x4278},
9404 .chain_id
= ALC294_FIXUP_ASUS_ALLY_SPEAKER
9406 [ALC294_FIXUP_ASUS_ALLY_SPEAKER
] = {
9407 .type
= HDA_FIXUP_FUNC
,
9408 .v
.func
= alc285_fixup_speaker2_to_dac1
,
9410 [ALC285_FIXUP_THINKPAD_X1_GEN7
] = {
9411 .type
= HDA_FIXUP_FUNC
,
9412 .v
.func
= alc285_fixup_thinkpad_x1_gen7
,
9414 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
9416 [ALC285_FIXUP_THINKPAD_HEADSET_JACK
] = {
9417 .type
= HDA_FIXUP_FUNC
,
9418 .v
.func
= alc_fixup_headset_jack
,
9420 .chain_id
= ALC285_FIXUP_THINKPAD_X1_GEN7
9422 [ALC294_FIXUP_ASUS_HPE
] = {
9423 .type
= HDA_FIXUP_VERBS
,
9424 .v
.verbs
= (const struct hda_verb
[]) {
9426 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0f },
9427 { 0x20, AC_VERB_SET_PROC_COEF
, 0x7774 },
9431 .chain_id
= ALC294_FIXUP_ASUS_HEADSET_MIC
9433 [ALC294_FIXUP_ASUS_GX502_PINS
] = {
9434 .type
= HDA_FIXUP_PINS
,
9435 .v
.pins
= (const struct hda_pintbl
[]) {
9436 { 0x19, 0x03a11050 }, /* front HP mic */
9437 { 0x1a, 0x01a11830 }, /* rear external mic */
9438 { 0x21, 0x03211020 }, /* front HP out */
9442 .chain_id
= ALC294_FIXUP_ASUS_GX502_VERBS
9444 [ALC294_FIXUP_ASUS_GX502_VERBS
] = {
9445 .type
= HDA_FIXUP_VERBS
,
9446 .v
.verbs
= (const struct hda_verb
[]) {
9447 /* set 0x15 to HP-OUT ctrl */
9448 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
9449 /* unmute the 0x15 amp */
9450 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000 },
9454 .chain_id
= ALC294_FIXUP_ASUS_GX502_HP
9456 [ALC294_FIXUP_ASUS_GX502_HP
] = {
9457 .type
= HDA_FIXUP_FUNC
,
9458 .v
.func
= alc294_fixup_gx502_hp
,
9460 [ALC294_FIXUP_ASUS_GU502_PINS
] = {
9461 .type
= HDA_FIXUP_PINS
,
9462 .v
.pins
= (const struct hda_pintbl
[]) {
9463 { 0x19, 0x01a11050 }, /* rear HP mic */
9464 { 0x1a, 0x01a11830 }, /* rear external mic */
9465 { 0x21, 0x012110f0 }, /* rear HP out */
9469 .chain_id
= ALC294_FIXUP_ASUS_GU502_VERBS
9471 [ALC294_FIXUP_ASUS_GU502_VERBS
] = {
9472 .type
= HDA_FIXUP_VERBS
,
9473 .v
.verbs
= (const struct hda_verb
[]) {
9474 /* set 0x15 to HP-OUT ctrl */
9475 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
9476 /* unmute the 0x15 amp */
9477 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000 },
9478 /* set 0x1b to HP-OUT */
9479 { 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
9483 .chain_id
= ALC294_FIXUP_ASUS_GU502_HP
9485 [ALC294_FIXUP_ASUS_GU502_HP
] = {
9486 .type
= HDA_FIXUP_FUNC
,
9487 .v
.func
= alc294_fixup_gu502_hp
,
9489 [ALC294_FIXUP_ASUS_G513_PINS
] = {
9490 .type
= HDA_FIXUP_PINS
,
9491 .v
.pins
= (const struct hda_pintbl
[]) {
9492 { 0x19, 0x03a11050 }, /* front HP mic */
9493 { 0x1a, 0x03a11c30 }, /* rear external mic */
9494 { 0x21, 0x03211420 }, /* front HP out */
9498 [ALC285_FIXUP_ASUS_G533Z_PINS
] = {
9499 .type
= HDA_FIXUP_PINS
,
9500 .v
.pins
= (const struct hda_pintbl
[]) {
9501 { 0x14, 0x90170152 }, /* Speaker Surround Playback Switch */
9502 { 0x19, 0x03a19020 }, /* Mic Boost Volume */
9503 { 0x1a, 0x03a11c30 }, /* Mic Boost Volume */
9504 { 0x1e, 0x90170151 }, /* Rear jack, IN OUT EAPD Detect */
9505 { 0x21, 0x03211420 },
9509 [ALC294_FIXUP_ASUS_COEF_1B
] = {
9510 .type
= HDA_FIXUP_VERBS
,
9511 .v
.verbs
= (const struct hda_verb
[]) {
9512 /* Set bit 10 to correct noisy output after reboot from
9513 * Windows 10 (due to pop noise reduction?)
9515 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x1b },
9516 { 0x20, AC_VERB_SET_PROC_COEF
, 0x4e4b },
9520 .chain_id
= ALC289_FIXUP_ASUS_GA401
,
9522 [ALC285_FIXUP_HP_GPIO_LED
] = {
9523 .type
= HDA_FIXUP_FUNC
,
9524 .v
.func
= alc285_fixup_hp_gpio_led
,
9526 [ALC285_FIXUP_HP_MUTE_LED
] = {
9527 .type
= HDA_FIXUP_FUNC
,
9528 .v
.func
= alc285_fixup_hp_mute_led
,
9530 [ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED
] = {
9531 .type
= HDA_FIXUP_FUNC
,
9532 .v
.func
= alc285_fixup_hp_spectre_x360_mute_led
,
9534 [ALC285_FIXUP_HP_BEEP_MICMUTE_LED
] = {
9535 .type
= HDA_FIXUP_FUNC
,
9536 .v
.func
= alc285_fixup_hp_beep
,
9538 .chain_id
= ALC285_FIXUP_HP_MUTE_LED
,
9540 [ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
] = {
9541 .type
= HDA_FIXUP_FUNC
,
9542 .v
.func
= alc236_fixup_hp_mute_led_coefbit2
,
9544 [ALC236_FIXUP_HP_GPIO_LED
] = {
9545 .type
= HDA_FIXUP_FUNC
,
9546 .v
.func
= alc236_fixup_hp_gpio_led
,
9548 [ALC236_FIXUP_HP_MUTE_LED
] = {
9549 .type
= HDA_FIXUP_FUNC
,
9550 .v
.func
= alc236_fixup_hp_mute_led
,
9552 [ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
] = {
9553 .type
= HDA_FIXUP_FUNC
,
9554 .v
.func
= alc236_fixup_hp_mute_led_micmute_vref
,
9556 [ALC236_FIXUP_LENOVO_INV_DMIC
] = {
9557 .type
= HDA_FIXUP_FUNC
,
9558 .v
.func
= alc_fixup_inv_dmic
,
9560 .chain_id
= ALC283_FIXUP_INT_MIC
,
9562 [ALC295_FIXUP_HP_MUTE_LED_COEFBIT11
] = {
9563 .type
= HDA_FIXUP_FUNC
,
9564 .v
.func
= alc295_fixup_hp_mute_led_coefbit11
,
9566 [ALC298_FIXUP_SAMSUNG_AMP
] = {
9567 .type
= HDA_FIXUP_FUNC
,
9568 .v
.func
= alc298_fixup_samsung_amp
,
9570 .chain_id
= ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
9572 [ALC298_FIXUP_SAMSUNG_AMP_V2_2_AMPS
] = {
9573 .type
= HDA_FIXUP_FUNC
,
9574 .v
.func
= alc298_fixup_samsung_amp_v2_2_amps
9576 [ALC298_FIXUP_SAMSUNG_AMP_V2_4_AMPS
] = {
9577 .type
= HDA_FIXUP_FUNC
,
9578 .v
.func
= alc298_fixup_samsung_amp_v2_4_amps
9580 [ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
] = {
9581 .type
= HDA_FIXUP_VERBS
,
9582 .v
.verbs
= (const struct hda_verb
[]) {
9583 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc5 },
9587 [ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
] = {
9588 .type
= HDA_FIXUP_VERBS
,
9589 .v
.verbs
= (const struct hda_verb
[]) {
9590 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x08},
9591 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2fcf},
9595 [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE
] = {
9596 .type
= HDA_FIXUP_PINS
,
9597 .v
.pins
= (const struct hda_pintbl
[]) {
9598 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9602 .chain_id
= ALC269_FIXUP_HEADSET_MODE
9604 [ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS
] = {
9605 .type
= HDA_FIXUP_PINS
,
9606 .v
.pins
= (const struct hda_pintbl
[]) {
9607 { 0x14, 0x90100120 }, /* use as internal speaker */
9608 { 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */
9609 { 0x1a, 0x01011020 }, /* use as line out */
9613 .chain_id
= ALC269_FIXUP_HEADSET_MIC
9615 [ALC269VC_FIXUP_ACER_HEADSET_MIC
] = {
9616 .type
= HDA_FIXUP_PINS
,
9617 .v
.pins
= (const struct hda_pintbl
[]) {
9618 { 0x18, 0x02a11030 }, /* use as headset mic */
9622 .chain_id
= ALC269_FIXUP_HEADSET_MIC
9624 [ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE
] = {
9625 .type
= HDA_FIXUP_PINS
,
9626 .v
.pins
= (const struct hda_pintbl
[]) {
9627 { 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */
9631 .chain_id
= ALC269_FIXUP_HEADSET_MIC
9633 [ALC289_FIXUP_ASUS_GA401
] = {
9634 .type
= HDA_FIXUP_FUNC
,
9635 .v
.func
= alc289_fixup_asus_ga401
,
9637 .chain_id
= ALC289_FIXUP_ASUS_GA502
,
9639 [ALC289_FIXUP_ASUS_GA502
] = {
9640 .type
= HDA_FIXUP_PINS
,
9641 .v
.pins
= (const struct hda_pintbl
[]) {
9642 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
9646 [ALC256_FIXUP_ACER_MIC_NO_PRESENCE
] = {
9647 .type
= HDA_FIXUP_PINS
,
9648 .v
.pins
= (const struct hda_pintbl
[]) {
9649 { 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */
9653 .chain_id
= ALC256_FIXUP_ASUS_HEADSET_MODE
9655 [ALC285_FIXUP_HP_GPIO_AMP_INIT
] = {
9656 .type
= HDA_FIXUP_FUNC
,
9657 .v
.func
= alc285_fixup_hp_gpio_amp_init
,
9659 .chain_id
= ALC285_FIXUP_HP_GPIO_LED
9661 [ALC269_FIXUP_CZC_B20
] = {
9662 .type
= HDA_FIXUP_PINS
,
9663 .v
.pins
= (const struct hda_pintbl
[]) {
9664 { 0x12, 0x411111f0 },
9665 { 0x14, 0x90170110 }, /* speaker */
9666 { 0x15, 0x032f1020 }, /* HP out */
9667 { 0x17, 0x411111f0 },
9668 { 0x18, 0x03ab1040 }, /* mic */
9669 { 0x19, 0xb7a7013f },
9670 { 0x1a, 0x0181305f },
9671 { 0x1b, 0x411111f0 },
9672 { 0x1d, 0x411111f0 },
9673 { 0x1e, 0x411111f0 },
9676 .chain_id
= ALC269_FIXUP_DMIC
,
9678 [ALC269_FIXUP_CZC_TMI
] = {
9679 .type
= HDA_FIXUP_PINS
,
9680 .v
.pins
= (const struct hda_pintbl
[]) {
9681 { 0x12, 0x4000c000 },
9682 { 0x14, 0x90170110 }, /* speaker */
9683 { 0x15, 0x0421401f }, /* HP out */
9684 { 0x17, 0x411111f0 },
9685 { 0x18, 0x04a19020 }, /* mic */
9686 { 0x19, 0x411111f0 },
9687 { 0x1a, 0x411111f0 },
9688 { 0x1b, 0x411111f0 },
9689 { 0x1d, 0x40448505 },
9690 { 0x1e, 0x411111f0 },
9691 { 0x20, 0x8000ffff },
9694 .chain_id
= ALC269_FIXUP_DMIC
,
9696 [ALC269_FIXUP_CZC_L101
] = {
9697 .type
= HDA_FIXUP_PINS
,
9698 .v
.pins
= (const struct hda_pintbl
[]) {
9699 { 0x12, 0x40000000 },
9700 { 0x14, 0x01014010 }, /* speaker */
9701 { 0x15, 0x411111f0 }, /* HP out */
9702 { 0x16, 0x411111f0 },
9703 { 0x18, 0x01a19020 }, /* mic */
9704 { 0x19, 0x02a19021 },
9705 { 0x1a, 0x0181302f },
9706 { 0x1b, 0x0221401f },
9707 { 0x1c, 0x411111f0 },
9708 { 0x1d, 0x4044c601 },
9709 { 0x1e, 0x411111f0 },
9712 .chain_id
= ALC269_FIXUP_DMIC
,
9714 [ALC269_FIXUP_LEMOTE_A1802
] = {
9715 .type
= HDA_FIXUP_PINS
,
9716 .v
.pins
= (const struct hda_pintbl
[]) {
9717 { 0x12, 0x40000000 },
9718 { 0x14, 0x90170110 }, /* speaker */
9719 { 0x17, 0x411111f0 },
9720 { 0x18, 0x03a19040 }, /* mic1 */
9721 { 0x19, 0x90a70130 }, /* mic2 */
9722 { 0x1a, 0x411111f0 },
9723 { 0x1b, 0x411111f0 },
9724 { 0x1d, 0x40489d2d },
9725 { 0x1e, 0x411111f0 },
9726 { 0x20, 0x0003ffff },
9727 { 0x21, 0x03214020 },
9730 .chain_id
= ALC269_FIXUP_DMIC
,
9732 [ALC269_FIXUP_LEMOTE_A190X
] = {
9733 .type
= HDA_FIXUP_PINS
,
9734 .v
.pins
= (const struct hda_pintbl
[]) {
9735 { 0x14, 0x99130110 }, /* speaker */
9736 { 0x15, 0x0121401f }, /* HP out */
9737 { 0x18, 0x01a19c20 }, /* rear mic */
9738 { 0x19, 0x99a3092f }, /* front mic */
9739 { 0x1b, 0x0201401f }, /* front lineout */
9742 .chain_id
= ALC269_FIXUP_DMIC
,
9744 [ALC256_FIXUP_INTEL_NUC8_RUGGED
] = {
9745 .type
= HDA_FIXUP_PINS
,
9746 .v
.pins
= (const struct hda_pintbl
[]) {
9747 { 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9751 .chain_id
= ALC269_FIXUP_HEADSET_MODE
9753 [ALC256_FIXUP_INTEL_NUC10
] = {
9754 .type
= HDA_FIXUP_PINS
,
9755 .v
.pins
= (const struct hda_pintbl
[]) {
9756 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9760 .chain_id
= ALC269_FIXUP_HEADSET_MODE
9762 [ALC255_FIXUP_XIAOMI_HEADSET_MIC
] = {
9763 .type
= HDA_FIXUP_VERBS
,
9764 .v
.verbs
= (const struct hda_verb
[]) {
9765 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x45 },
9766 { 0x20, AC_VERB_SET_PROC_COEF
, 0x5089 },
9770 .chain_id
= ALC289_FIXUP_ASUS_GA502
9772 [ALC274_FIXUP_HP_MIC
] = {
9773 .type
= HDA_FIXUP_VERBS
,
9774 .v
.verbs
= (const struct hda_verb
[]) {
9775 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x45 },
9776 { 0x20, AC_VERB_SET_PROC_COEF
, 0x5089 },
9780 [ALC274_FIXUP_HP_HEADSET_MIC
] = {
9781 .type
= HDA_FIXUP_FUNC
,
9782 .v
.func
= alc274_fixup_hp_headset_mic
,
9784 .chain_id
= ALC274_FIXUP_HP_MIC
9786 [ALC274_FIXUP_HP_ENVY_GPIO
] = {
9787 .type
= HDA_FIXUP_FUNC
,
9788 .v
.func
= alc274_fixup_hp_envy_gpio
,
9790 [ALC274_FIXUP_ASUS_ZEN_AIO_27
] = {
9791 .type
= HDA_FIXUP_VERBS
,
9792 .v
.verbs
= (const struct hda_verb
[]) {
9793 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x10 },
9794 { 0x20, AC_VERB_SET_PROC_COEF
, 0xc420 },
9795 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x40 },
9796 { 0x20, AC_VERB_SET_PROC_COEF
, 0x8800 },
9797 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x49 },
9798 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0249 },
9799 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x4a },
9800 { 0x20, AC_VERB_SET_PROC_COEF
, 0x202b },
9801 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x62 },
9802 { 0x20, AC_VERB_SET_PROC_COEF
, 0xa007 },
9803 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x6b },
9804 { 0x20, AC_VERB_SET_PROC_COEF
, 0x5060 },
9808 .chain_id
= ALC2XX_FIXUP_HEADSET_MIC
,
9810 [ALC256_FIXUP_ASUS_HPE
] = {
9811 .type
= HDA_FIXUP_VERBS
,
9812 .v
.verbs
= (const struct hda_verb
[]) {
9814 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0f },
9815 { 0x20, AC_VERB_SET_PROC_COEF
, 0x7778 },
9819 .chain_id
= ALC294_FIXUP_ASUS_HEADSET_MIC
9821 [ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK
] = {
9822 .type
= HDA_FIXUP_FUNC
,
9823 .v
.func
= alc_fixup_headset_jack
,
9825 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
9827 [ALC287_FIXUP_HP_GPIO_LED
] = {
9828 .type
= HDA_FIXUP_FUNC
,
9829 .v
.func
= alc287_fixup_hp_gpio_led
,
9831 [ALC256_FIXUP_HP_HEADSET_MIC
] = {
9832 .type
= HDA_FIXUP_FUNC
,
9833 .v
.func
= alc274_fixup_hp_headset_mic
,
9835 [ALC236_FIXUP_DELL_AIO_HEADSET_MIC
] = {
9836 .type
= HDA_FIXUP_FUNC
,
9837 .v
.func
= alc_fixup_no_int_mic
,
9839 .chain_id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
9841 [ALC282_FIXUP_ACER_DISABLE_LINEOUT
] = {
9842 .type
= HDA_FIXUP_PINS
,
9843 .v
.pins
= (const struct hda_pintbl
[]) {
9844 { 0x1b, 0x411111f0 },
9845 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9849 .chain_id
= ALC269_FIXUP_HEADSET_MODE
9851 [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST
] = {
9852 .type
= HDA_FIXUP_FUNC
,
9853 .v
.func
= alc269_fixup_limit_int_mic_boost
,
9855 .chain_id
= ALC255_FIXUP_ACER_MIC_NO_PRESENCE
,
9857 [ALC256_FIXUP_ACER_HEADSET_MIC
] = {
9858 .type
= HDA_FIXUP_PINS
,
9859 .v
.pins
= (const struct hda_pintbl
[]) {
9860 { 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */
9861 { 0x1a, 0x90a1092f }, /* use as internal mic */
9865 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9867 [ALC285_FIXUP_IDEAPAD_S740_COEF
] = {
9868 .type
= HDA_FIXUP_FUNC
,
9869 .v
.func
= alc285_fixup_ideapad_s740_coef
,
9871 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
9873 [ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST
] = {
9874 .type
= HDA_FIXUP_FUNC
,
9875 .v
.func
= alc269_fixup_limit_int_mic_boost
,
9877 .chain_id
= ALC285_FIXUP_HP_MUTE_LED
,
9879 [ALC295_FIXUP_ASUS_DACS
] = {
9880 .type
= HDA_FIXUP_FUNC
,
9881 .v
.func
= alc295_fixup_asus_dacs
,
9883 [ALC295_FIXUP_HP_OMEN
] = {
9884 .type
= HDA_FIXUP_PINS
,
9885 .v
.pins
= (const struct hda_pintbl
[]) {
9886 { 0x12, 0xb7a60130 },
9887 { 0x13, 0x40000000 },
9888 { 0x14, 0x411111f0 },
9889 { 0x16, 0x411111f0 },
9890 { 0x17, 0x90170110 },
9891 { 0x18, 0x411111f0 },
9892 { 0x19, 0x02a11030 },
9893 { 0x1a, 0x411111f0 },
9894 { 0x1b, 0x04a19030 },
9895 { 0x1d, 0x40600001 },
9896 { 0x1e, 0x411111f0 },
9897 { 0x21, 0x03211020 },
9901 .chain_id
= ALC269_FIXUP_HP_LINE1_MIC1_LED
,
9903 [ALC285_FIXUP_HP_SPECTRE_X360
] = {
9904 .type
= HDA_FIXUP_FUNC
,
9905 .v
.func
= alc285_fixup_hp_spectre_x360
,
9907 [ALC285_FIXUP_HP_SPECTRE_X360_EB1
] = {
9908 .type
= HDA_FIXUP_FUNC
,
9909 .v
.func
= alc285_fixup_hp_spectre_x360_eb1
9911 [ALC285_FIXUP_HP_SPECTRE_X360_DF1
] = {
9912 .type
= HDA_FIXUP_FUNC
,
9913 .v
.func
= alc285_fixup_hp_spectre_x360_df1
9915 [ALC285_FIXUP_HP_ENVY_X360
] = {
9916 .type
= HDA_FIXUP_FUNC
,
9917 .v
.func
= alc285_fixup_hp_envy_x360
,
9919 .chain_id
= ALC285_FIXUP_HP_GPIO_AMP_INIT
,
9921 [ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP
] = {
9922 .type
= HDA_FIXUP_FUNC
,
9923 .v
.func
= alc285_fixup_ideapad_s740_coef
,
9925 .chain_id
= ALC285_FIXUP_THINKPAD_HEADSET_JACK
,
9927 [ALC623_FIXUP_LENOVO_THINKSTATION_P340
] = {
9928 .type
= HDA_FIXUP_FUNC
,
9929 .v
.func
= alc_fixup_no_shutup
,
9931 .chain_id
= ALC283_FIXUP_HEADSET_MIC
,
9933 [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC
] = {
9934 .type
= HDA_FIXUP_PINS
,
9935 .v
.pins
= (const struct hda_pintbl
[]) {
9936 { 0x21, 0x03211030 }, /* Change the Headphone location to Left */
9940 .chain_id
= ALC255_FIXUP_XIAOMI_HEADSET_MIC
9942 [ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST
] = {
9943 .type
= HDA_FIXUP_FUNC
,
9944 .v
.func
= alc269_fixup_limit_int_mic_boost
,
9946 .chain_id
= ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
,
9948 [ALC285_FIXUP_LEGION_Y9000X_SPEAKERS
] = {
9949 .type
= HDA_FIXUP_FUNC
,
9950 .v
.func
= alc285_fixup_ideapad_s740_coef
,
9952 .chain_id
= ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE
,
9954 [ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE
] = {
9955 .type
= HDA_FIXUP_FUNC
,
9956 .v
.func
= alc287_fixup_legion_15imhg05_speakers
,
9958 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
9960 [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS
] = {
9961 .type
= HDA_FIXUP_VERBS
,
9962 //.v.verbs = legion_15imhg05_coefs,
9963 .v
.verbs
= (const struct hda_verb
[]) {
9964 // set left speaker Legion 7i.
9965 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x24 },
9966 { 0x20, AC_VERB_SET_PROC_COEF
, 0x41 },
9968 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
9969 { 0x20, AC_VERB_SET_PROC_COEF
, 0xc },
9970 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
9971 { 0x20, AC_VERB_SET_PROC_COEF
, 0x1a },
9972 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
9974 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
9975 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2 },
9976 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
9977 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
9978 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
9980 // set right speaker Legion 7i.
9981 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x24 },
9982 { 0x20, AC_VERB_SET_PROC_COEF
, 0x42 },
9984 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
9985 { 0x20, AC_VERB_SET_PROC_COEF
, 0xc },
9986 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
9987 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2a },
9988 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
9990 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
9991 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2 },
9992 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
9993 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
9994 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
9998 .chain_id
= ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE
,
10000 [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE
] = {
10001 .type
= HDA_FIXUP_FUNC
,
10002 .v
.func
= alc287_fixup_legion_15imhg05_speakers
,
10004 .chain_id
= ALC269_FIXUP_HEADSET_MODE
,
10006 [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS
] = {
10007 .type
= HDA_FIXUP_VERBS
,
10008 .v
.verbs
= (const struct hda_verb
[]) {
10009 // set left speaker Yoga 7i.
10010 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x24 },
10011 { 0x20, AC_VERB_SET_PROC_COEF
, 0x41 },
10013 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10014 { 0x20, AC_VERB_SET_PROC_COEF
, 0xc },
10015 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10016 { 0x20, AC_VERB_SET_PROC_COEF
, 0x1a },
10017 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10019 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10020 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2 },
10021 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10022 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10023 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10025 // set right speaker Yoga 7i.
10026 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x24 },
10027 { 0x20, AC_VERB_SET_PROC_COEF
, 0x46 },
10029 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10030 { 0x20, AC_VERB_SET_PROC_COEF
, 0xc },
10031 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10032 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2a },
10033 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10035 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10036 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2 },
10037 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10038 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10039 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10043 .chain_id
= ALC269_FIXUP_HEADSET_MODE
,
10045 [ALC298_FIXUP_LENOVO_C940_DUET7
] = {
10046 .type
= HDA_FIXUP_FUNC
,
10047 .v
.func
= alc298_fixup_lenovo_c940_duet7
,
10049 [ALC287_FIXUP_13S_GEN2_SPEAKERS
] = {
10050 .type
= HDA_FIXUP_VERBS
,
10051 .v
.verbs
= (const struct hda_verb
[]) {
10052 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x24 },
10053 { 0x20, AC_VERB_SET_PROC_COEF
, 0x41 },
10054 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10055 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2 },
10056 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10057 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10058 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10059 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x24 },
10060 { 0x20, AC_VERB_SET_PROC_COEF
, 0x42 },
10061 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10062 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2 },
10063 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10064 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10065 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10069 .chain_id
= ALC269_FIXUP_HEADSET_MODE
,
10071 [ALC256_FIXUP_SET_COEF_DEFAULTS
] = {
10072 .type
= HDA_FIXUP_FUNC
,
10073 .v
.func
= alc256_fixup_set_coef_defaults
,
10075 [ALC245_FIXUP_HP_GPIO_LED
] = {
10076 .type
= HDA_FIXUP_FUNC
,
10077 .v
.func
= alc245_fixup_hp_gpio_led
,
10079 [ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
] = {
10080 .type
= HDA_FIXUP_PINS
,
10081 .v
.pins
= (const struct hda_pintbl
[]) {
10082 { 0x19, 0x03a11120 }, /* use as headset mic, without its own jack detect */
10086 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
,
10088 [ALC233_FIXUP_NO_AUDIO_JACK
] = {
10089 .type
= HDA_FIXUP_FUNC
,
10090 .v
.func
= alc233_fixup_no_audio_jack
,
10092 [ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME
] = {
10093 .type
= HDA_FIXUP_FUNC
,
10094 .v
.func
= alc256_fixup_mic_no_presence_and_resume
,
10096 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
10098 [ALC287_FIXUP_LEGION_16ACHG6
] = {
10099 .type
= HDA_FIXUP_FUNC
,
10100 .v
.func
= alc287_fixup_legion_16achg6_speakers
,
10102 [ALC287_FIXUP_CS35L41_I2C_2
] = {
10103 .type
= HDA_FIXUP_FUNC
,
10104 .v
.func
= cs35l41_fixup_i2c_two
,
10106 [ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
] = {
10107 .type
= HDA_FIXUP_FUNC
,
10108 .v
.func
= cs35l41_fixup_i2c_two
,
10110 .chain_id
= ALC285_FIXUP_HP_MUTE_LED
,
10112 [ALC287_FIXUP_CS35L41_I2C_4
] = {
10113 .type
= HDA_FIXUP_FUNC
,
10114 .v
.func
= cs35l41_fixup_i2c_four
,
10116 [ALC245_FIXUP_CS35L41_SPI_2
] = {
10117 .type
= HDA_FIXUP_FUNC
,
10118 .v
.func
= cs35l41_fixup_spi_two
,
10120 [ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
] = {
10121 .type
= HDA_FIXUP_FUNC
,
10122 .v
.func
= cs35l41_fixup_spi_two
,
10124 .chain_id
= ALC285_FIXUP_HP_GPIO_LED
,
10126 [ALC245_FIXUP_CS35L41_SPI_4
] = {
10127 .type
= HDA_FIXUP_FUNC
,
10128 .v
.func
= cs35l41_fixup_spi_four
,
10130 [ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED
] = {
10131 .type
= HDA_FIXUP_FUNC
,
10132 .v
.func
= cs35l41_fixup_spi_four
,
10134 .chain_id
= ALC285_FIXUP_HP_GPIO_LED
,
10136 [ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED
] = {
10137 .type
= HDA_FIXUP_VERBS
,
10138 .v
.verbs
= (const struct hda_verb
[]) {
10139 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x19 },
10140 { 0x20, AC_VERB_SET_PROC_COEF
, 0x8e11 },
10144 .chain_id
= ALC285_FIXUP_HP_MUTE_LED
,
10146 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET
] = {
10147 .type
= HDA_FIXUP_FUNC
,
10148 .v
.func
= alc_fixup_dell4_mic_no_presence_quiet
,
10150 .chain_id
= ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
,
10152 [ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE
] = {
10153 .type
= HDA_FIXUP_PINS
,
10154 .v
.pins
= (const struct hda_pintbl
[]) {
10155 { 0x19, 0x02a1112c }, /* use as headset mic, without its own jack detect */
10159 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
10161 [ALC287_FIXUP_LEGION_16ITHG6
] = {
10162 .type
= HDA_FIXUP_FUNC
,
10163 .v
.func
= alc287_fixup_legion_16ithg6_speakers
,
10165 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK
] = {
10166 .type
= HDA_FIXUP_VERBS
,
10167 .v
.verbs
= (const struct hda_verb
[]) {
10168 // enable left speaker
10169 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x24 },
10170 { 0x20, AC_VERB_SET_PROC_COEF
, 0x41 },
10172 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10173 { 0x20, AC_VERB_SET_PROC_COEF
, 0xc },
10174 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10175 { 0x20, AC_VERB_SET_PROC_COEF
, 0x1a },
10176 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10178 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10179 { 0x20, AC_VERB_SET_PROC_COEF
, 0xf },
10180 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10181 { 0x20, AC_VERB_SET_PROC_COEF
, 0x42 },
10182 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10184 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10185 { 0x20, AC_VERB_SET_PROC_COEF
, 0x10 },
10186 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10187 { 0x20, AC_VERB_SET_PROC_COEF
, 0x40 },
10188 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10190 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10191 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2 },
10192 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10193 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10194 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10196 // enable right speaker
10197 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x24 },
10198 { 0x20, AC_VERB_SET_PROC_COEF
, 0x46 },
10200 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10201 { 0x20, AC_VERB_SET_PROC_COEF
, 0xc },
10202 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10203 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2a },
10204 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10206 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10207 { 0x20, AC_VERB_SET_PROC_COEF
, 0xf },
10208 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10209 { 0x20, AC_VERB_SET_PROC_COEF
, 0x46 },
10210 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10212 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10213 { 0x20, AC_VERB_SET_PROC_COEF
, 0x10 },
10214 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10215 { 0x20, AC_VERB_SET_PROC_COEF
, 0x44 },
10216 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10218 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x26 },
10219 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2 },
10220 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10221 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0 },
10222 { 0x20, AC_VERB_SET_PROC_COEF
, 0xb020 },
10227 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN
] = {
10228 .type
= HDA_FIXUP_FUNC
,
10229 .v
.func
= alc287_fixup_yoga9_14iap7_bass_spk_pin
,
10231 .chain_id
= ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK
,
10233 [ALC287_FIXUP_YOGA9_14IMH9_BASS_SPK_PIN
] = {
10234 .type
= HDA_FIXUP_FUNC
,
10235 .v
.func
= alc287_fixup_yoga9_14iap7_bass_spk_pin
,
10237 .chain_id
= ALC287_FIXUP_CS35L41_I2C_2
,
10239 [ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS
] = {
10240 .type
= HDA_FIXUP_FUNC
,
10241 .v
.func
= alc295_fixup_dell_inspiron_top_speakers
,
10243 .chain_id
= ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
,
10245 [ALC236_FIXUP_DELL_DUAL_CODECS
] = {
10246 .type
= HDA_FIXUP_PINS
,
10247 .v
.func
= alc1220_fixup_gb_dual_codecs
,
10249 .chain_id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
10251 [ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI
] = {
10252 .type
= HDA_FIXUP_FUNC
,
10253 .v
.func
= cs35l41_fixup_i2c_two
,
10255 .chain_id
= ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK
,
10257 [ALC287_FIXUP_TAS2781_I2C
] = {
10258 .type
= HDA_FIXUP_FUNC
,
10259 .v
.func
= tas2781_fixup_i2c
,
10261 .chain_id
= ALC285_FIXUP_THINKPAD_HEADSET_JACK
,
10263 [ALC245_FIXUP_TAS2781_SPI_2
] = {
10264 .type
= HDA_FIXUP_FUNC
,
10265 .v
.func
= tas2781_fixup_spi
,
10267 .chain_id
= ALC285_FIXUP_HP_GPIO_LED
,
10269 [ALC287_FIXUP_YOGA7_14ARB7_I2C
] = {
10270 .type
= HDA_FIXUP_FUNC
,
10271 .v
.func
= yoga7_14arb7_fixup_i2c
,
10273 .chain_id
= ALC285_FIXUP_THINKPAD_HEADSET_JACK
,
10275 [ALC245_FIXUP_HP_MUTE_LED_COEFBIT
] = {
10276 .type
= HDA_FIXUP_FUNC
,
10277 .v
.func
= alc245_fixup_hp_mute_led_coefbit
,
10279 [ALC245_FIXUP_HP_MUTE_LED_V1_COEFBIT
] = {
10280 .type
= HDA_FIXUP_FUNC
,
10281 .v
.func
= alc245_fixup_hp_mute_led_v1_coefbit
,
10283 [ALC245_FIXUP_HP_X360_MUTE_LEDS
] = {
10284 .type
= HDA_FIXUP_FUNC
,
10285 .v
.func
= alc245_fixup_hp_mute_led_coefbit
,
10287 .chain_id
= ALC245_FIXUP_HP_GPIO_LED
10289 [ALC287_FIXUP_THINKPAD_I2S_SPK
] = {
10290 .type
= HDA_FIXUP_FUNC
,
10291 .v
.func
= alc287_fixup_bind_dacs
,
10293 .chain_id
= ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK
,
10295 [ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
] = {
10296 .type
= HDA_FIXUP_FUNC
,
10297 .v
.func
= alc287_fixup_bind_dacs
,
10299 .chain_id
= ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI
,
10301 [ALC2XX_FIXUP_HEADSET_MIC
] = {
10302 .type
= HDA_FIXUP_FUNC
,
10303 .v
.func
= alc_fixup_headset_mic
,
10305 [ALC289_FIXUP_DELL_CS35L41_SPI_2
] = {
10306 .type
= HDA_FIXUP_FUNC
,
10307 .v
.func
= cs35l41_fixup_spi_two
,
10309 .chain_id
= ALC289_FIXUP_DUAL_SPK
10311 [ALC294_FIXUP_CS35L41_I2C_2
] = {
10312 .type
= HDA_FIXUP_FUNC
,
10313 .v
.func
= cs35l41_fixup_i2c_two
,
10315 [ALC256_FIXUP_ACER_SFG16_MICMUTE_LED
] = {
10316 .type
= HDA_FIXUP_FUNC
,
10317 .v
.func
= alc256_fixup_acer_sfg16_micmute_led
,
10319 [ALC256_FIXUP_HEADPHONE_AMP_VOL
] = {
10320 .type
= HDA_FIXUP_FUNC
,
10321 .v
.func
= alc256_decrease_headphone_amp_val
,
10323 [ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX
] = {
10324 .type
= HDA_FIXUP_FUNC
,
10325 .v
.func
= alc245_fixup_hp_spectre_x360_eu0xxx
,
10327 [ALC245_FIXUP_HP_SPECTRE_X360_16_AA0XXX
] = {
10328 .type
= HDA_FIXUP_FUNC
,
10329 .v
.func
= alc245_fixup_hp_spectre_x360_16_aa0xxx
,
10331 [ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
] = {
10332 .type
= HDA_FIXUP_FUNC
,
10333 .v
.func
= alc245_fixup_hp_zbook_firefly_g12a
,
10335 [ALC285_FIXUP_ASUS_GA403U
] = {
10336 .type
= HDA_FIXUP_FUNC
,
10337 .v
.func
= alc285_fixup_asus_ga403u
,
10339 [ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
] = {
10340 .type
= HDA_FIXUP_PINS
,
10341 .v
.pins
= (const struct hda_pintbl
[]) {
10342 { 0x19, 0x03a11050 },
10343 { 0x1b, 0x03a11c30 },
10347 .chain_id
= ALC285_FIXUP_ASUS_GA403U_I2C_SPEAKER2_TO_DAC1
10349 [ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1
] = {
10350 .type
= HDA_FIXUP_FUNC
,
10351 .v
.func
= alc285_fixup_speaker2_to_dac1
,
10353 .chain_id
= ALC285_FIXUP_ASUS_GU605_SPI_2_HEADSET_MIC
,
10355 [ALC285_FIXUP_ASUS_GU605_SPI_2_HEADSET_MIC
] = {
10356 .type
= HDA_FIXUP_PINS
,
10357 .v
.pins
= (const struct hda_pintbl
[]) {
10358 { 0x19, 0x03a11050 },
10359 { 0x1b, 0x03a11c30 },
10363 [ALC285_FIXUP_ASUS_GA403U_I2C_SPEAKER2_TO_DAC1
] = {
10364 .type
= HDA_FIXUP_FUNC
,
10365 .v
.func
= alc285_fixup_speaker2_to_dac1
,
10367 .chain_id
= ALC285_FIXUP_ASUS_GA403U
,
10369 [ALC287_FIXUP_LENOVO_THKPAD_WH_ALC1318
] = {
10370 .type
= HDA_FIXUP_FUNC
,
10371 .v
.func
= alc287_fixup_lenovo_thinkpad_with_alc1318
,
10373 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
10375 [ALC256_FIXUP_CHROME_BOOK
] = {
10376 .type
= HDA_FIXUP_FUNC
,
10377 .v
.func
= alc256_fixup_chromebook
,
10379 .chain_id
= ALC225_FIXUP_HEADSET_JACK
10381 [ALC245_FIXUP_CLEVO_NOISY_MIC
] = {
10382 .type
= HDA_FIXUP_FUNC
,
10383 .v
.func
= alc269_fixup_limit_int_mic_boost
,
10385 .chain_id
= ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
,
10387 [ALC269_FIXUP_VAIO_VJFH52_MIC_NO_PRESENCE
] = {
10388 .type
= HDA_FIXUP_PINS
,
10389 .v
.pins
= (const struct hda_pintbl
[]) {
10390 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
10391 { 0x1b, 0x20a11040 }, /* dock mic */
10395 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
10397 [ALC233_FIXUP_MEDION_MTL_SPK
] = {
10398 .type
= HDA_FIXUP_PINS
,
10399 .v
.pins
= (const struct hda_pintbl
[]) {
10400 { 0x1b, 0x90170110 },
10404 [ALC294_FIXUP_BASS_SPEAKER_15
] = {
10405 .type
= HDA_FIXUP_FUNC
,
10406 .v
.func
= alc294_fixup_bass_speaker_15
,
10408 [ALC283_FIXUP_DELL_HP_RESUME
] = {
10409 .type
= HDA_FIXUP_FUNC
,
10410 .v
.func
= alc283_fixup_dell_hp_resume
,
10412 [ALC294_FIXUP_ASUS_CS35L41_SPI_2
] = {
10413 .type
= HDA_FIXUP_FUNC
,
10414 .v
.func
= cs35l41_fixup_spi_two
,
10416 .chain_id
= ALC294_FIXUP_ASUS_HEADSET_MIC
,
10418 [ALC274_FIXUP_HP_AIO_BIND_DACS
] = {
10419 .type
= HDA_FIXUP_FUNC
,
10420 .v
.func
= alc274_fixup_hp_aio_bind_dacs
,
10422 [ALC285_FIXUP_ASUS_GA605K_HEADSET_MIC
] = {
10423 .type
= HDA_FIXUP_PINS
,
10424 .v
.pins
= (const struct hda_pintbl
[]) {
10425 { 0x19, 0x03a11050 },
10426 { 0x1b, 0x03a11c30 },
10430 .chain_id
= ALC285_FIXUP_ASUS_GA605K_I2C_SPEAKER2_TO_DAC1
10432 [ALC285_FIXUP_ASUS_GA605K_I2C_SPEAKER2_TO_DAC1
] = {
10433 .type
= HDA_FIXUP_FUNC
,
10434 .v
.func
= alc285_fixup_speaker2_to_dac1
,
10436 [ALC269_FIXUP_POSITIVO_P15X_HEADSET_MIC
] = {
10437 .type
= HDA_FIXUP_FUNC
,
10438 .v
.func
= alc269_fixup_limit_int_mic_boost
,
10440 .chain_id
= ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE
,
10444 static const struct hda_quirk alc269_fixup_tbl
[] = {
10445 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC
),
10446 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC
),
10447 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC
),
10448 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700
),
10449 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC
),
10450 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK
),
10451 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK
),
10452 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
),
10453 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
),
10454 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS
),
10455 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC
),
10456 SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF
),
10457 SND_PCI_QUIRK(0x1025, 0x100c, "Acer Aspire E5-574G", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST
),
10458 SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK
),
10459 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
),
10460 SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC
),
10461 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK
),
10462 SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST
),
10463 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE
),
10464 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE
),
10465 SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK
),
10466 SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK
),
10467 SND_PCI_QUIRK(0x1025, 0x1177, "Acer Predator G9-593", ALC255_FIXUP_PREDATOR_SUBWOOFER
),
10468 SND_PCI_QUIRK(0x1025, 0x1178, "Acer Predator G9-593", ALC255_FIXUP_PREDATOR_SUBWOOFER
),
10469 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK
),
10470 SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS
),
10471 SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE
),
10472 SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC
),
10473 SND_PCI_QUIRK(0x1025, 0x126a, "Acer Swift SF114-32", ALC256_FIXUP_ACER_MIC_NO_PRESENCE
),
10474 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC
),
10475 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC
),
10476 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC
),
10477 SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC
),
10478 SND_PCI_QUIRK(0x1025, 0x129d, "Acer SWIFT SF313-51", ALC256_FIXUP_ACER_MIC_NO_PRESENCE
),
10479 SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE
),
10480 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC
),
10481 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC
),
10482 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC
),
10483 SND_PCI_QUIRK(0x1025, 0x1360, "Acer Aspire A115", ALC255_FIXUP_ACER_MIC_NO_PRESENCE
),
10484 SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE
),
10485 SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE
),
10486 SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE
),
10487 SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC
),
10488 SND_PCI_QUIRK(0x1025, 0x1534, "Acer Predator PH315-54", ALC255_FIXUP_ACER_MIC_NO_PRESENCE
),
10489 SND_PCI_QUIRK(0x1025, 0x159c, "Acer Nitro 5 AN515-58", ALC2XX_FIXUP_HEADSET_MIC
),
10490 SND_PCI_QUIRK(0x1025, 0x169a, "Acer Swift SFG16", ALC256_FIXUP_ACER_SFG16_MICMUTE_LED
),
10491 SND_PCI_QUIRK(0x1025, 0x1826, "Acer Helios ZPC", ALC287_FIXUP_PREDATOR_SPK_CS35L41_I2C_2
),
10492 SND_PCI_QUIRK(0x1025, 0x182c, "Acer Helios ZPD", ALC287_FIXUP_PREDATOR_SPK_CS35L41_I2C_2
),
10493 SND_PCI_QUIRK(0x1025, 0x1844, "Acer Helios ZPS", ALC287_FIXUP_PREDATOR_SPK_CS35L41_I2C_2
),
10494 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z
),
10495 SND_PCI_QUIRK(0x1028, 0x053c, "Dell Latitude E5430", ALC292_FIXUP_DELL_E7X
),
10496 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS
),
10497 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X
),
10498 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X
),
10499 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X
),
10500 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X
),
10501 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER
),
10502 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
10503 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
10504 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
10505 SND_PCI_QUIRK(0x1028, 0x0604, "Dell Venue 11 Pro 7130", ALC283_FIXUP_DELL_HP_RESUME
),
10506 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK
),
10507 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK
),
10508 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X
),
10509 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X
),
10510 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK
),
10511 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
10512 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
10513 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13
),
10514 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
),
10515 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK
),
10516 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
),
10517 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
10518 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
10519 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
10520 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
10521 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
10522 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
10523 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
10524 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER
),
10525 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE
),
10526 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP
),
10527 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME
),
10528 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME
),
10529 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER
),
10530 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3
),
10531 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE
),
10532 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB
),
10533 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB
),
10534 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC
),
10535 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC
),
10536 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB
),
10537 SND_PCI_QUIRK(0x1028, 0x0879, "Dell Latitude 5420 Rugged", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
),
10538 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE
),
10539 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
),
10540 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB
),
10541 SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK
),
10542 SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK
),
10543 SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
),
10544 SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
),
10545 SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC
),
10546 SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC
),
10547 SND_PCI_QUIRK(0x1028, 0x0a38, "Dell Latitude 7520", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET
),
10548 SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC
),
10549 SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK
),
10550 SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK
),
10551 SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
),
10552 SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
),
10553 SND_PCI_QUIRK(0x1028, 0x0b19, "Dell XPS 15 9520", ALC289_FIXUP_DUAL_SPK
),
10554 SND_PCI_QUIRK(0x1028, 0x0b1a, "Dell Precision 5570", ALC289_FIXUP_DUAL_SPK
),
10555 SND_PCI_QUIRK(0x1028, 0x0b27, "Dell", ALC245_FIXUP_CS35L41_SPI_2
),
10556 SND_PCI_QUIRK(0x1028, 0x0b28, "Dell", ALC245_FIXUP_CS35L41_SPI_2
),
10557 SND_PCI_QUIRK(0x1028, 0x0b37, "Dell Inspiron 16 Plus 7620 2-in-1", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS
),
10558 SND_PCI_QUIRK(0x1028, 0x0b71, "Dell Inspiron 16 Plus 7620", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS
),
10559 SND_PCI_QUIRK(0x1028, 0x0beb, "Dell XPS 15 9530 (2023)", ALC289_FIXUP_DELL_CS35L41_SPI_2
),
10560 SND_PCI_QUIRK(0x1028, 0x0c03, "Dell Precision 5340", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
),
10561 SND_PCI_QUIRK(0x1028, 0x0c0b, "Dell Oasis 14 RPL-P", ALC289_FIXUP_RTK_AMP_DUAL_SPK
),
10562 SND_PCI_QUIRK(0x1028, 0x0c0d, "Dell Oasis", ALC289_FIXUP_RTK_AMP_DUAL_SPK
),
10563 SND_PCI_QUIRK(0x1028, 0x0c0e, "Dell Oasis 16", ALC289_FIXUP_RTK_AMP_DUAL_SPK
),
10564 SND_PCI_QUIRK(0x1028, 0x0c19, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS
),
10565 SND_PCI_QUIRK(0x1028, 0x0c1a, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS
),
10566 SND_PCI_QUIRK(0x1028, 0x0c1b, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS
),
10567 SND_PCI_QUIRK(0x1028, 0x0c1c, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS
),
10568 SND_PCI_QUIRK(0x1028, 0x0c1d, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS
),
10569 SND_PCI_QUIRK(0x1028, 0x0c1e, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS
),
10570 SND_PCI_QUIRK(0x1028, 0x0c28, "Dell Inspiron 16 Plus 7630", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS
),
10571 SND_PCI_QUIRK(0x1028, 0x0c4d, "Dell", ALC287_FIXUP_CS35L41_I2C_4
),
10572 SND_PCI_QUIRK(0x1028, 0x0c94, "Dell Polaris 3 metal", ALC287_FIXUP_TAS2781_I2C
),
10573 SND_PCI_QUIRK(0x1028, 0x0c96, "Dell Polaris 2in1", ALC287_FIXUP_TAS2781_I2C
),
10574 SND_PCI_QUIRK(0x1028, 0x0cbd, "Dell Oasis 13 CS MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2
),
10575 SND_PCI_QUIRK(0x1028, 0x0cbe, "Dell Oasis 13 2-IN-1 MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2
),
10576 SND_PCI_QUIRK(0x1028, 0x0cbf, "Dell Oasis 13 Low Weight MTU-L", ALC289_FIXUP_DELL_CS35L41_SPI_2
),
10577 SND_PCI_QUIRK(0x1028, 0x0cc0, "Dell Oasis 13", ALC289_FIXUP_RTK_AMP_DUAL_SPK
),
10578 SND_PCI_QUIRK(0x1028, 0x0cc1, "Dell Oasis 14 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2
),
10579 SND_PCI_QUIRK(0x1028, 0x0cc2, "Dell Oasis 14 2-in-1 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2
),
10580 SND_PCI_QUIRK(0x1028, 0x0cc3, "Dell Oasis 14 Low Weight MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2
),
10581 SND_PCI_QUIRK(0x1028, 0x0cc4, "Dell Oasis 16 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2
),
10582 SND_PCI_QUIRK(0x1028, 0x0cc5, "Dell Oasis 14", ALC289_FIXUP_RTK_AMP_DUAL_SPK
),
10583 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
10584 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
10585 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2
),
10586 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED
),
10587 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
),
10588 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10589 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10590 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10591 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10592 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC
),
10593 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10594 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10595 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
10596 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
10597 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
10598 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
10599 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
10600 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10601 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10602 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10603 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10604 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10605 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10606 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED
),
10607 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY
),
10608 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10609 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10610 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10611 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10612 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10613 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10614 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10615 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10616 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED
),
10617 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10618 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS
),
10619 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10620 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS
),
10621 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10622 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10623 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10624 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10625 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10626 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10627 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10628 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10629 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10630 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10631 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10632 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10633 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10634 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10635 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M
),
10636 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10637 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
10638 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10639 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10640 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10641 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
10642 SND_PCI_QUIRK(0x103c, 0x2b5e, "HP 288 Pro G2 MT", ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE
),
10643 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE
),
10644 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE
),
10645 SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC
),
10646 SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC
),
10647 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC295_FIXUP_HP_X360
),
10648 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC
),
10649 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360
),
10650 SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3
),
10651 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE
),
10652 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE
),
10653 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3
),
10654 SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3
),
10655 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3
),
10656 SND_PCI_QUIRK(0x103c, 0x84a6, "HP 250 G7 Notebook PC", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
10657 SND_PCI_QUIRK(0x103c, 0x84ae, "HP 15-db0403ng", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10658 SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN
),
10659 SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3
),
10660 SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360
),
10661 SND_PCI_QUIRK(0x103c, 0x8537, "HP ProBook 440 G6", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10662 SND_PCI_QUIRK(0x103c, 0x85c6, "HP Pavilion x360 Convertible 14-dy1xxx", ALC295_FIXUP_HP_MUTE_LED_COEFBIT11
),
10663 SND_PCI_QUIRK(0x103c, 0x85de, "HP Envy x360 13-ar0xxx", ALC285_FIXUP_HP_ENVY_X360
),
10664 SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT
),
10665 SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT
),
10666 SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED
),
10667 SND_PCI_QUIRK(0x103c, 0x86c1, "HP Laptop 15-da3001TU", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10668 SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO
),
10669 SND_PCI_QUIRK(0x103c, 0x86e7, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1
),
10670 SND_PCI_QUIRK(0x103c, 0x863e, "HP Spectre x360 15-df1xxx", ALC285_FIXUP_HP_SPECTRE_X360_DF1
),
10671 SND_PCI_QUIRK(0x103c, 0x86e8, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1
),
10672 SND_PCI_QUIRK(0x103c, 0x86f9, "HP Spectre x360 13-aw0xxx", ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED
),
10673 SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT
),
10674 SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT
),
10675 SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED
),
10676 SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED
),
10677 SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED
),
10678 SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10679 SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10680 SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT
),
10681 SND_PCI_QUIRK(0x103c, 0x8760, "HP EliteBook 8{4,5}5 G7", ALC285_FIXUP_HP_BEEP_MICMUTE_LED
),
10682 SND_PCI_QUIRK(0x103c, 0x876e, "HP ENVY x360 Convertible 13-ay0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS
),
10683 SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED
),
10684 SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED
),
10685 SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation",
10686 ALC285_FIXUP_HP_GPIO_AMP_INIT
),
10687 SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation",
10688 ALC285_FIXUP_HP_GPIO_AMP_INIT
),
10689 SND_PCI_QUIRK(0x103c, 0x8786, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED
),
10690 SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED
),
10691 SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED
),
10692 SND_PCI_QUIRK(0x103c, 0x87b7, "HP Laptop 14-fq0xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10693 SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED
),
10694 SND_PCI_QUIRK(0x103c, 0x87d3, "HP Laptop 15-gw0xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10695 SND_PCI_QUIRK(0x103c, 0x87df, "HP ProBook 430 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED
),
10696 SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED
),
10697 SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED
),
10698 SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED
),
10699 SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED
),
10700 SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED
),
10701 SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED
),
10702 SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP
),
10703 SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP
),
10704 SND_PCI_QUIRK(0x103c, 0x87fd, "HP Laptop 14-dq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10705 SND_PCI_QUIRK(0x103c, 0x87fe, "HP Laptop 15s-fq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10706 SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED
),
10707 SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED
),
10708 SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1
),
10709 SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1
),
10710 SND_PCI_QUIRK(0x103c, 0x881d, "HP 250 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10711 SND_PCI_QUIRK(0x103c, 0x881e, "HP Laptop 15s-du3xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10712 SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED
),
10713 SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED
),
10714 SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED
),
10715 SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED
),
10716 SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST
),
10717 SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST
),
10718 SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT
),
10719 SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT
),
10720 SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT
),
10721 SND_PCI_QUIRK(0x103c, 0x887a, "HP Laptop 15s-eq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10722 SND_PCI_QUIRK(0x103c, 0x887c, "HP Laptop 14s-fq1xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10723 SND_PCI_QUIRK(0x103c, 0x888a, "HP ENVY x360 Convertible 15-eu0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS
),
10724 SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED
),
10725 SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED
),
10726 SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED
),
10727 SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST
),
10728 SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED
),
10729 SND_PCI_QUIRK(0x103c, 0x88dd, "HP Pavilion 15z-ec200", ALC285_FIXUP_HP_MUTE_LED
),
10730 SND_PCI_QUIRK(0x103c, 0x8902, "HP OMEN 16", ALC285_FIXUP_HP_MUTE_LED
),
10731 SND_PCI_QUIRK(0x103c, 0x890e, "HP 255 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10732 SND_PCI_QUIRK(0x103c, 0x8919, "HP Pavilion Aero Laptop 13-be0xxx", ALC287_FIXUP_HP_GPIO_LED
),
10733 SND_PCI_QUIRK(0x103c, 0x896d, "HP ZBook Firefly 16 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10734 SND_PCI_QUIRK(0x103c, 0x896e, "HP EliteBook x360 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10735 SND_PCI_QUIRK(0x103c, 0x8971, "HP EliteBook 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10736 SND_PCI_QUIRK(0x103c, 0x8972, "HP EliteBook 840 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10737 SND_PCI_QUIRK(0x103c, 0x8973, "HP EliteBook 860 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10738 SND_PCI_QUIRK(0x103c, 0x8974, "HP EliteBook 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10739 SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10740 SND_PCI_QUIRK(0x103c, 0x897d, "HP mt440 Mobile Thin Client U74", ALC236_FIXUP_HP_GPIO_LED
),
10741 SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4
),
10742 SND_PCI_QUIRK(0x103c, 0x898a, "HP Pavilion 15-eg100", ALC287_FIXUP_HP_GPIO_LED
),
10743 SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2
),
10744 SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2
),
10745 SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
),
10746 SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2
),
10747 SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
),
10748 SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2
),
10749 SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED
),
10750 SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED
),
10751 SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED
),
10752 SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED
),
10753 SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED
),
10754 SND_PCI_QUIRK(0x103c, 0x89c0, "HP ZBook Power 15.6 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10755 SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED
),
10756 SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10757 SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10758 SND_PCI_QUIRK(0x103c, 0x89d3, "HP EliteBook 645 G9 (MB 89D2)", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10759 SND_PCI_QUIRK(0x103c, 0x89e7, "HP Elite x2 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10760 SND_PCI_QUIRK(0x103c, 0x8a0f, "HP Pavilion 14-ec1xxx", ALC287_FIXUP_HP_GPIO_LED
),
10761 SND_PCI_QUIRK(0x103c, 0x8a20, "HP Laptop 15s-fq5xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10762 SND_PCI_QUIRK(0x103c, 0x8a25, "HP Victus 16-d1xxx (MB 8A25)", ALC245_FIXUP_HP_MUTE_LED_COEFBIT
),
10763 SND_PCI_QUIRK(0x103c, 0x8a28, "HP Envy 13", ALC287_FIXUP_CS35L41_I2C_2
),
10764 SND_PCI_QUIRK(0x103c, 0x8a29, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10765 SND_PCI_QUIRK(0x103c, 0x8a2a, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10766 SND_PCI_QUIRK(0x103c, 0x8a2b, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10767 SND_PCI_QUIRK(0x103c, 0x8a2c, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2
),
10768 SND_PCI_QUIRK(0x103c, 0x8a2d, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2
),
10769 SND_PCI_QUIRK(0x103c, 0x8a2e, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2
),
10770 SND_PCI_QUIRK(0x103c, 0x8a30, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2
),
10771 SND_PCI_QUIRK(0x103c, 0x8a31, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10772 SND_PCI_QUIRK(0x103c, 0x8a6e, "HP EDNA 360", ALC287_FIXUP_CS35L41_I2C_4
),
10773 SND_PCI_QUIRK(0x103c, 0x8a74, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED
),
10774 SND_PCI_QUIRK(0x103c, 0x8a78, "HP Dev One", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST
),
10775 SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED
),
10776 SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED
),
10777 SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED
),
10778 SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED
),
10779 SND_PCI_QUIRK(0x103c, 0x8ab9, "HP EliteBook 840 G8 (MB 8AB8)", ALC285_FIXUP_HP_GPIO_LED
),
10780 SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10781 SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10782 SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10783 SND_PCI_QUIRK(0x103c, 0x8ad8, "HP 800 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10784 SND_PCI_QUIRK(0x103c, 0x8b0f, "HP Elite mt645 G7 Mobile Thin Client U81", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10785 SND_PCI_QUIRK(0x103c, 0x8b2f, "HP 255 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2
),
10786 SND_PCI_QUIRK(0x103c, 0x8b3a, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10787 SND_PCI_QUIRK(0x103c, 0x8b3f, "HP mt440 Mobile Thin Client U91", ALC236_FIXUP_HP_GPIO_LED
),
10788 SND_PCI_QUIRK(0x103c, 0x8b42, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10789 SND_PCI_QUIRK(0x103c, 0x8b43, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10790 SND_PCI_QUIRK(0x103c, 0x8b44, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10791 SND_PCI_QUIRK(0x103c, 0x8b45, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10792 SND_PCI_QUIRK(0x103c, 0x8b46, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10793 SND_PCI_QUIRK(0x103c, 0x8b47, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10794 SND_PCI_QUIRK(0x103c, 0x8b59, "HP Elite mt645 G7 Mobile Thin Client U89", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10795 SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10796 SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10797 SND_PCI_QUIRK(0x103c, 0x8b5f, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10798 SND_PCI_QUIRK(0x103c, 0x8b63, "HP Elite Dragonfly 13.5 inch G4", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED
),
10799 SND_PCI_QUIRK(0x103c, 0x8b65, "HP ProBook 455 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10800 SND_PCI_QUIRK(0x103c, 0x8b66, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10801 SND_PCI_QUIRK(0x103c, 0x8b70, "HP EliteBook 835 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
),
10802 SND_PCI_QUIRK(0x103c, 0x8b72, "HP EliteBook 845 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
),
10803 SND_PCI_QUIRK(0x103c, 0x8b74, "HP EliteBook 845W G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
),
10804 SND_PCI_QUIRK(0x103c, 0x8b77, "HP ElieBook 865 G10", ALC287_FIXUP_CS35L41_I2C_2
),
10805 SND_PCI_QUIRK(0x103c, 0x8b7a, "HP", ALC236_FIXUP_HP_GPIO_LED
),
10806 SND_PCI_QUIRK(0x103c, 0x8b7d, "HP", ALC236_FIXUP_HP_GPIO_LED
),
10807 SND_PCI_QUIRK(0x103c, 0x8b87, "HP", ALC236_FIXUP_HP_GPIO_LED
),
10808 SND_PCI_QUIRK(0x103c, 0x8b8a, "HP", ALC236_FIXUP_HP_GPIO_LED
),
10809 SND_PCI_QUIRK(0x103c, 0x8b8b, "HP", ALC236_FIXUP_HP_GPIO_LED
),
10810 SND_PCI_QUIRK(0x103c, 0x8b8d, "HP", ALC236_FIXUP_HP_GPIO_LED
),
10811 SND_PCI_QUIRK(0x103c, 0x8b8f, "HP", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED
),
10812 SND_PCI_QUIRK(0x103c, 0x8b92, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10813 SND_PCI_QUIRK(0x103c, 0x8b96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10814 SND_PCI_QUIRK(0x103c, 0x8b97, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10815 SND_PCI_QUIRK(0x103c, 0x8bb3, "HP Slim OMEN", ALC287_FIXUP_CS35L41_I2C_2
),
10816 SND_PCI_QUIRK(0x103c, 0x8bb4, "HP Slim OMEN", ALC287_FIXUP_CS35L41_I2C_2
),
10817 SND_PCI_QUIRK(0x103c, 0x8bc8, "HP Victus 15-fa1xxx", ALC245_FIXUP_HP_MUTE_LED_COEFBIT
),
10818 SND_PCI_QUIRK(0x103c, 0x8bcd, "HP Omen 16-xd0xxx", ALC245_FIXUP_HP_MUTE_LED_V1_COEFBIT
),
10819 SND_PCI_QUIRK(0x103c, 0x8bdd, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2
),
10820 SND_PCI_QUIRK(0x103c, 0x8bde, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2
),
10821 SND_PCI_QUIRK(0x103c, 0x8bdf, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10822 SND_PCI_QUIRK(0x103c, 0x8be0, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10823 SND_PCI_QUIRK(0x103c, 0x8be1, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10824 SND_PCI_QUIRK(0x103c, 0x8be2, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10825 SND_PCI_QUIRK(0x103c, 0x8be3, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10826 SND_PCI_QUIRK(0x103c, 0x8be5, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2
),
10827 SND_PCI_QUIRK(0x103c, 0x8be6, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2
),
10828 SND_PCI_QUIRK(0x103c, 0x8be7, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2
),
10829 SND_PCI_QUIRK(0x103c, 0x8be8, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2
),
10830 SND_PCI_QUIRK(0x103c, 0x8be9, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10831 SND_PCI_QUIRK(0x103c, 0x8bf0, "HP", ALC236_FIXUP_HP_GPIO_LED
),
10832 SND_PCI_QUIRK(0x103c, 0x8c15, "HP Spectre x360 2-in-1 Laptop 14-eu0xxx", ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX
),
10833 SND_PCI_QUIRK(0x103c, 0x8c16, "HP Spectre x360 2-in-1 Laptop 16-aa0xxx", ALC245_FIXUP_HP_SPECTRE_X360_16_AA0XXX
),
10834 SND_PCI_QUIRK(0x103c, 0x8c17, "HP Spectre 16", ALC287_FIXUP_CS35L41_I2C_2
),
10835 SND_PCI_QUIRK(0x103c, 0x8c21, "HP Pavilion Plus Laptop 14-ey0XXX", ALC245_FIXUP_HP_X360_MUTE_LEDS
),
10836 SND_PCI_QUIRK(0x103c, 0x8c30, "HP Victus 15-fb1xxx", ALC245_FIXUP_HP_MUTE_LED_COEFBIT
),
10837 SND_PCI_QUIRK(0x103c, 0x8c46, "HP EliteBook 830 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10838 SND_PCI_QUIRK(0x103c, 0x8c47, "HP EliteBook 840 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10839 SND_PCI_QUIRK(0x103c, 0x8c48, "HP EliteBook 860 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10840 SND_PCI_QUIRK(0x103c, 0x8c49, "HP Elite x360 830 2-in-1 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10841 SND_PCI_QUIRK(0x103c, 0x8c4d, "HP Omen", ALC287_FIXUP_CS35L41_I2C_2
),
10842 SND_PCI_QUIRK(0x103c, 0x8c4e, "HP Omen", ALC287_FIXUP_CS35L41_I2C_2
),
10843 SND_PCI_QUIRK(0x103c, 0x8c4f, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2
),
10844 SND_PCI_QUIRK(0x103c, 0x8c50, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2
),
10845 SND_PCI_QUIRK(0x103c, 0x8c51, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2
),
10846 SND_PCI_QUIRK(0x103c, 0x8c52, "HP EliteBook 1040 G11", ALC285_FIXUP_HP_GPIO_LED
),
10847 SND_PCI_QUIRK(0x103c, 0x8c53, "HP Elite x360 1040 2-in-1 G11", ALC285_FIXUP_HP_GPIO_LED
),
10848 SND_PCI_QUIRK(0x103c, 0x8c66, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2
),
10849 SND_PCI_QUIRK(0x103c, 0x8c67, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2
),
10850 SND_PCI_QUIRK(0x103c, 0x8c68, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2
),
10851 SND_PCI_QUIRK(0x103c, 0x8c6a, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2
),
10852 SND_PCI_QUIRK(0x103c, 0x8c70, "HP EliteBook 835 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
),
10853 SND_PCI_QUIRK(0x103c, 0x8c71, "HP EliteBook 845 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
),
10854 SND_PCI_QUIRK(0x103c, 0x8c72, "HP EliteBook 865 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
),
10855 SND_PCI_QUIRK(0x103c, 0x8c7b, "HP ProBook 445 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10856 SND_PCI_QUIRK(0x103c, 0x8c7c, "HP ProBook 445 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10857 SND_PCI_QUIRK(0x103c, 0x8c7d, "HP ProBook 465 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10858 SND_PCI_QUIRK(0x103c, 0x8c7e, "HP ProBook 465 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10859 SND_PCI_QUIRK(0x103c, 0x8c7f, "HP EliteBook 645 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10860 SND_PCI_QUIRK(0x103c, 0x8c80, "HP EliteBook 645 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10861 SND_PCI_QUIRK(0x103c, 0x8c81, "HP EliteBook 665 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10862 SND_PCI_QUIRK(0x103c, 0x8c89, "HP ProBook 460 G11", ALC236_FIXUP_HP_GPIO_LED
),
10863 SND_PCI_QUIRK(0x103c, 0x8c8a, "HP EliteBook 630", ALC236_FIXUP_HP_GPIO_LED
),
10864 SND_PCI_QUIRK(0x103c, 0x8c8c, "HP EliteBook 660", ALC236_FIXUP_HP_GPIO_LED
),
10865 SND_PCI_QUIRK(0x103c, 0x8c8d, "HP ProBook 440 G11", ALC236_FIXUP_HP_GPIO_LED
),
10866 SND_PCI_QUIRK(0x103c, 0x8c8e, "HP ProBook 460 G11", ALC236_FIXUP_HP_GPIO_LED
),
10867 SND_PCI_QUIRK(0x103c, 0x8c90, "HP EliteBook 640", ALC236_FIXUP_HP_GPIO_LED
),
10868 SND_PCI_QUIRK(0x103c, 0x8c91, "HP EliteBook 660", ALC236_FIXUP_HP_GPIO_LED
),
10869 SND_PCI_QUIRK(0x103c, 0x8c96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10870 SND_PCI_QUIRK(0x103c, 0x8c97, "HP ZBook", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10871 SND_PCI_QUIRK(0x103c, 0x8c9c, "HP Victus 16-s1xxx (MB 8C9C)", ALC245_FIXUP_HP_MUTE_LED_COEFBIT
),
10872 SND_PCI_QUIRK(0x103c, 0x8ca1, "HP ZBook Power", ALC236_FIXUP_HP_GPIO_LED
),
10873 SND_PCI_QUIRK(0x103c, 0x8ca2, "HP ZBook Power", ALC236_FIXUP_HP_GPIO_LED
),
10874 SND_PCI_QUIRK(0x103c, 0x8ca4, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10875 SND_PCI_QUIRK(0x103c, 0x8ca7, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED
),
10876 SND_PCI_QUIRK(0x103c, 0x8caf, "HP Elite mt645 G8 Mobile Thin Client", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10877 SND_PCI_QUIRK(0x103c, 0x8cbd, "HP Pavilion Aero Laptop 13-bg0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS
),
10878 SND_PCI_QUIRK(0x103c, 0x8cdd, "HP Spectre", ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX
),
10879 SND_PCI_QUIRK(0x103c, 0x8cde, "HP OmniBook Ultra Flip Laptop 14t", ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX
),
10880 SND_PCI_QUIRK(0x103c, 0x8cdf, "HP SnowWhite", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
),
10881 SND_PCI_QUIRK(0x103c, 0x8ce0, "HP SnowWhite", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED
),
10882 SND_PCI_QUIRK(0x103c, 0x8cf5, "HP ZBook Studio 16", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED
),
10883 SND_PCI_QUIRK(0x103c, 0x8d01, "HP ZBook Power 14 G12", ALC285_FIXUP_HP_GPIO_LED
),
10884 SND_PCI_QUIRK(0x103c, 0x8d18, "HP EliteStudio 8 AIO", ALC274_FIXUP_HP_AIO_BIND_DACS
),
10885 SND_PCI_QUIRK(0x103c, 0x8d84, "HP EliteBook X G1i", ALC285_FIXUP_HP_GPIO_LED
),
10886 SND_PCI_QUIRK(0x103c, 0x8d85, "HP EliteBook 14 G12", ALC285_FIXUP_HP_GPIO_LED
),
10887 SND_PCI_QUIRK(0x103c, 0x8d86, "HP Elite X360 14 G12", ALC285_FIXUP_HP_GPIO_LED
),
10888 SND_PCI_QUIRK(0x103c, 0x8d8c, "HP EliteBook 13 G12", ALC285_FIXUP_HP_GPIO_LED
),
10889 SND_PCI_QUIRK(0x103c, 0x8d8d, "HP Elite X360 13 G12", ALC285_FIXUP_HP_GPIO_LED
),
10890 SND_PCI_QUIRK(0x103c, 0x8d8e, "HP EliteBook 14 G12", ALC285_FIXUP_HP_GPIO_LED
),
10891 SND_PCI_QUIRK(0x103c, 0x8d8f, "HP EliteBook 14 G12", ALC285_FIXUP_HP_GPIO_LED
),
10892 SND_PCI_QUIRK(0x103c, 0x8d90, "HP EliteBook 16 G12", ALC285_FIXUP_HP_GPIO_LED
),
10893 SND_PCI_QUIRK(0x103c, 0x8d91, "HP ZBook Firefly 14 G12", ALC285_FIXUP_HP_GPIO_LED
),
10894 SND_PCI_QUIRK(0x103c, 0x8d92, "HP ZBook Firefly 16 G12", ALC285_FIXUP_HP_GPIO_LED
),
10895 SND_PCI_QUIRK(0x103c, 0x8d9b, "HP 17 Turbine OmniBook 7 UMA", ALC287_FIXUP_CS35L41_I2C_2
),
10896 SND_PCI_QUIRK(0x103c, 0x8d9c, "HP 17 Turbine OmniBook 7 DIS", ALC287_FIXUP_CS35L41_I2C_2
),
10897 SND_PCI_QUIRK(0x103c, 0x8d9d, "HP 17 Turbine OmniBook X UMA", ALC287_FIXUP_CS35L41_I2C_2
),
10898 SND_PCI_QUIRK(0x103c, 0x8d9e, "HP 17 Turbine OmniBook X DIS", ALC287_FIXUP_CS35L41_I2C_2
),
10899 SND_PCI_QUIRK(0x103c, 0x8d9f, "HP 14 Cadet (x360)", ALC287_FIXUP_CS35L41_I2C_2
),
10900 SND_PCI_QUIRK(0x103c, 0x8da0, "HP 16 Clipper OmniBook 7(X360)", ALC287_FIXUP_CS35L41_I2C_2
),
10901 SND_PCI_QUIRK(0x103c, 0x8da1, "HP 16 Clipper OmniBook X", ALC287_FIXUP_CS35L41_I2C_2
),
10902 SND_PCI_QUIRK(0x103c, 0x8da7, "HP 14 Enstrom OmniBook X", ALC287_FIXUP_CS35L41_I2C_2
),
10903 SND_PCI_QUIRK(0x103c, 0x8da8, "HP 16 Piston OmniBook X", ALC287_FIXUP_CS35L41_I2C_2
),
10904 SND_PCI_QUIRK(0x103c, 0x8dd4, "HP EliteStudio 8 AIO", ALC274_FIXUP_HP_AIO_BIND_DACS
),
10905 SND_PCI_QUIRK(0x103c, 0x8de8, "HP Gemtree", ALC245_FIXUP_TAS2781_SPI_2
),
10906 SND_PCI_QUIRK(0x103c, 0x8de9, "HP Gemtree", ALC245_FIXUP_TAS2781_SPI_2
),
10907 SND_PCI_QUIRK(0x103c, 0x8dec, "HP EliteBook 640 G12", ALC236_FIXUP_HP_GPIO_LED
),
10908 SND_PCI_QUIRK(0x103c, 0x8ded, "HP EliteBook 640 G12", ALC236_FIXUP_HP_GPIO_LED
),
10909 SND_PCI_QUIRK(0x103c, 0x8dee, "HP EliteBook 660 G12", ALC236_FIXUP_HP_GPIO_LED
),
10910 SND_PCI_QUIRK(0x103c, 0x8def, "HP EliteBook 660 G12", ALC236_FIXUP_HP_GPIO_LED
),
10911 SND_PCI_QUIRK(0x103c, 0x8df0, "HP EliteBook 630 G12", ALC236_FIXUP_HP_GPIO_LED
),
10912 SND_PCI_QUIRK(0x103c, 0x8df1, "HP EliteBook 630 G12", ALC236_FIXUP_HP_GPIO_LED
),
10913 SND_PCI_QUIRK(0x103c, 0x8dfb, "HP EliteBook 6 G1a 14", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10914 SND_PCI_QUIRK(0x103c, 0x8dfc, "HP EliteBook 645 G12", ALC236_FIXUP_HP_GPIO_LED
),
10915 SND_PCI_QUIRK(0x103c, 0x8dfd, "HP EliteBook 6 G1a 16", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF
),
10916 SND_PCI_QUIRK(0x103c, 0x8dfe, "HP EliteBook 665 G12", ALC236_FIXUP_HP_GPIO_LED
),
10917 SND_PCI_QUIRK(0x103c, 0x8e11, "HP Trekker", ALC287_FIXUP_CS35L41_I2C_2
),
10918 SND_PCI_QUIRK(0x103c, 0x8e12, "HP Trekker", ALC287_FIXUP_CS35L41_I2C_2
),
10919 SND_PCI_QUIRK(0x103c, 0x8e13, "HP Trekker", ALC287_FIXUP_CS35L41_I2C_2
),
10920 SND_PCI_QUIRK(0x103c, 0x8e14, "HP ZBook Firefly 14 G12", ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
),
10921 SND_PCI_QUIRK(0x103c, 0x8e15, "HP ZBook Firefly 14 G12", ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
),
10922 SND_PCI_QUIRK(0x103c, 0x8e16, "HP ZBook Firefly 14 G12", ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
),
10923 SND_PCI_QUIRK(0x103c, 0x8e17, "HP ZBook Firefly 14 G12", ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
),
10924 SND_PCI_QUIRK(0x103c, 0x8e18, "HP ZBook Firefly 14 G12A", ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
),
10925 SND_PCI_QUIRK(0x103c, 0x8e19, "HP ZBook Firefly 14 G12A", ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
),
10926 SND_PCI_QUIRK(0x103c, 0x8e1a, "HP ZBook Firefly 14 G12A", ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
),
10927 SND_PCI_QUIRK(0x103c, 0x8e1b, "HP EliteBook G12", ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
),
10928 SND_PCI_QUIRK(0x103c, 0x8e1c, "HP EliteBook G12", ALC245_FIXUP_HP_ZBOOK_FIREFLY_G12A
),
10929 SND_PCI_QUIRK(0x103c, 0x8e1d, "HP ZBook X Gli 16 G12", ALC236_FIXUP_HP_GPIO_LED
),
10930 SND_PCI_QUIRK(0x103c, 0x8e2c, "HP EliteBook 16 G12", ALC285_FIXUP_HP_GPIO_LED
),
10931 SND_PCI_QUIRK(0x103c, 0x8e36, "HP 14 Enstrom OmniBook X", ALC287_FIXUP_CS35L41_I2C_2
),
10932 SND_PCI_QUIRK(0x103c, 0x8e37, "HP 16 Piston OmniBook X", ALC287_FIXUP_CS35L41_I2C_2
),
10933 SND_PCI_QUIRK(0x103c, 0x8e3a, "HP Agusta", ALC287_FIXUP_CS35L41_I2C_2
),
10934 SND_PCI_QUIRK(0x103c, 0x8e3b, "HP Agusta", ALC287_FIXUP_CS35L41_I2C_2
),
10935 SND_PCI_QUIRK(0x103c, 0x8e60, "HP Trekker ", ALC287_FIXUP_CS35L41_I2C_2
),
10936 SND_PCI_QUIRK(0x103c, 0x8e61, "HP Trekker ", ALC287_FIXUP_CS35L41_I2C_2
),
10937 SND_PCI_QUIRK(0x103c, 0x8e62, "HP Trekker ", ALC287_FIXUP_CS35L41_I2C_2
),
10938 SND_PCI_QUIRK(0x1043, 0x1032, "ASUS VivoBook X513EA", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
10939 SND_PCI_QUIRK(0x1043, 0x1034, "ASUS GU605C", ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1
),
10940 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC
),
10941 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300
),
10942 SND_PCI_QUIRK(0x1043, 0x1054, "ASUS G614FH/FM/FP", ALC287_FIXUP_CS35L41_I2C_2
),
10943 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
10944 SND_PCI_QUIRK(0x1043, 0x106f, "ASUS VivoBook X515UA", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
10945 SND_PCI_QUIRK(0x1043, 0x1074, "ASUS G614PH/PM/PP", ALC287_FIXUP_CS35L41_I2C_2
),
10946 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK
),
10947 SND_PCI_QUIRK(0x1043, 0x10a4, "ASUS TP3407SA", ALC287_FIXUP_TAS2781_I2C
),
10948 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC
),
10949 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE
),
10950 SND_PCI_QUIRK(0x1043, 0x10d3, "ASUS K6500ZC", ALC294_FIXUP_ASUS_SPK
),
10951 SND_PCI_QUIRK(0x1043, 0x1154, "ASUS TP3607SH", ALC287_FIXUP_TAS2781_I2C
),
10952 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
10953 SND_PCI_QUIRK(0x1043, 0x1194, "ASUS UM3406KA", ALC287_FIXUP_CS35L41_I2C_2
),
10954 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE
),
10955 SND_PCI_QUIRK(0x1043, 0x1204, "ASUS Strix G615JHR_JMR_JPR", ALC287_FIXUP_TAS2781_I2C
),
10956 SND_PCI_QUIRK(0x1043, 0x1214, "ASUS Strix G615LH_LM_LP", ALC287_FIXUP_TAS2781_I2C
),
10957 SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE
),
10958 SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
10959 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE
),
10960 SND_PCI_QUIRK(0x1043, 0x1294, "ASUS B3405CVA", ALC245_FIXUP_CS35L41_SPI_2
),
10961 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE
),
10962 SND_PCI_QUIRK(0x1043, 0x12a3, "Asus N7691ZM", ALC269_FIXUP_ASUS_N7601ZM
),
10963 SND_PCI_QUIRK(0x1043, 0x12af, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2
),
10964 SND_PCI_QUIRK(0x1043, 0x12b4, "ASUS B3405CCA / P3405CCA", ALC294_FIXUP_ASUS_CS35L41_SPI_2
),
10965 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
10966 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
10967 SND_PCI_QUIRK(0x1043, 0x1313, "Asus K42JZ", ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE
),
10968 SND_PCI_QUIRK(0x1043, 0x1314, "ASUS GA605K", ALC285_FIXUP_ASUS_GA605K_HEADSET_MIC
),
10969 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
10970 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK
),
10971 SND_PCI_QUIRK(0x1043, 0x1433, "ASUS GX650PY/PZ/PV/PU/PYV/PZV/PIV/PVV", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC
),
10972 SND_PCI_QUIRK(0x1043, 0x1460, "Asus VivoBook 15", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
10973 SND_PCI_QUIRK(0x1043, 0x1463, "Asus GA402X/GA402N", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC
),
10974 SND_PCI_QUIRK(0x1043, 0x1473, "ASUS GU604VI/VC/VE/VG/VJ/VQ/VU/VV/VY/VZ", ALC285_FIXUP_ASUS_HEADSET_MIC
),
10975 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS GU603VQ/VU/VV/VJ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC
),
10976 SND_PCI_QUIRK(0x1043, 0x1493, "ASUS GV601VV/VU/VJ/VQ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC
),
10977 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G614JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2
),
10978 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS G513PI/PU/PV", ALC287_FIXUP_CS35L41_I2C_2
),
10979 SND_PCI_QUIRK(0x1043, 0x14f2, "ASUS VivoBook X515JA", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
10980 SND_PCI_QUIRK(0x1043, 0x1503, "ASUS G733PY/PZ/PZV/PYV", ALC287_FIXUP_CS35L41_I2C_2
),
10981 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
),
10982 SND_PCI_QUIRK(0x1043, 0x1533, "ASUS GV302XA/XJ/XQ/XU/XV/XI", ALC287_FIXUP_CS35L41_I2C_2
),
10983 SND_PCI_QUIRK(0x1043, 0x1573, "ASUS GZ301VV/VQ/VU/VJ/VA/VC/VE/VVC/VQC/VUC/VJC/VEC/VCC", ALC285_FIXUP_ASUS_HEADSET_MIC
),
10984 SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK
),
10985 SND_PCI_QUIRK(0x1043, 0x1663, "ASUS GU603ZI/ZJ/ZQ/ZU/ZV", ALC285_FIXUP_ASUS_HEADSET_MIC
),
10986 SND_PCI_QUIRK(0x1043, 0x1683, "ASUS UM3402YAR", ALC287_FIXUP_CS35L41_I2C_2
),
10987 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS UX3402VA", ALC245_FIXUP_CS35L41_SPI_2
),
10988 SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401
),
10989 SND_PCI_QUIRK(0x1043, 0x16d3, "ASUS UX5304VA", ALC245_FIXUP_CS35L41_SPI_2
),
10990 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC
),
10991 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS UX7602VI/BZ", ALC245_FIXUP_CS35L41_SPI_2
),
10992 SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS
),
10993 SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK
),
10994 SND_PCI_QUIRK(0x1043, 0x17f3, "ROG Ally NR2301L/X", ALC294_FIXUP_ASUS_ALLY
),
10995 SND_PCI_QUIRK(0x1043, 0x1863, "ASUS UX6404VI/VV", ALC245_FIXUP_CS35L41_SPI_2
),
10996 SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS
),
10997 SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC
),
10998 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS UM3504DA", ALC294_FIXUP_CS35L41_I2C_2
),
10999 SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC
),
11000 SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE
),
11001 SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401
),
11002 SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE
),
11003 SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE
),
11004 SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE
),
11005 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW
),
11006 SND_PCI_QUIRK(0x1043, 0x1a63, "ASUS UX3405MA", ALC245_FIXUP_CS35L41_SPI_2
),
11007 SND_PCI_QUIRK(0x1043, 0x1a83, "ASUS UM5302LA", ALC294_FIXUP_CS35L41_I2C_2
),
11008 SND_PCI_QUIRK(0x1043, 0x1a8f, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2
),
11009 SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B
),
11010 SND_PCI_QUIRK(0x1043, 0x1b13, "ASUS U41SV/GA403U", ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
),
11011 SND_PCI_QUIRK(0x1043, 0x1b93, "ASUS G614JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2
),
11012 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE
),
11013 SND_PCI_QUIRK(0x1043, 0x1c03, "ASUS UM3406HA", ALC287_FIXUP_CS35L41_I2C_2
),
11014 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
11015 SND_PCI_QUIRK(0x1043, 0x1c33, "ASUS UX5304MA", ALC245_FIXUP_CS35L41_SPI_2
),
11016 SND_PCI_QUIRK(0x1043, 0x1c43, "ASUS UX8406MA", ALC245_FIXUP_CS35L41_SPI_2
),
11017 SND_PCI_QUIRK(0x1043, 0x1c62, "ASUS GU603", ALC289_FIXUP_ASUS_GA401
),
11018 SND_PCI_QUIRK(0x1043, 0x1c63, "ASUS GU605M", ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1
),
11019 SND_PCI_QUIRK(0x1043, 0x1c80, "ASUS VivoBook TP401", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
11020 SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS
),
11021 SND_PCI_QUIRK(0x1043, 0x1c9f, "ASUS G614JU/JV/JI", ALC285_FIXUP_ASUS_HEADSET_MIC
),
11022 SND_PCI_QUIRK(0x1043, 0x1caf, "ASUS G634JY/JZ/JI/JG", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS
),
11023 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
11024 SND_PCI_QUIRK(0x1043, 0x1ccf, "ASUS G814JU/JV/JI", ALC245_FIXUP_CS35L41_SPI_2
),
11025 SND_PCI_QUIRK(0x1043, 0x1cdf, "ASUS G814JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2
),
11026 SND_PCI_QUIRK(0x1043, 0x1cef, "ASUS G834JY/JZ/JI/JG", ALC285_FIXUP_ASUS_HEADSET_MIC
),
11027 SND_PCI_QUIRK(0x1043, 0x1d1f, "ASUS G713PI/PU/PV/PVN", ALC287_FIXUP_CS35L41_I2C_2
),
11028 SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401
),
11029 SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE
),
11030 SND_PCI_QUIRK(0x1043, 0x1da2, "ASUS UP6502ZA/ZD", ALC245_FIXUP_CS35L41_SPI_2
),
11031 SND_PCI_QUIRK(0x1043, 0x1df3, "ASUS UM5606WA", ALC294_FIXUP_BASS_SPEAKER_15
),
11032 SND_PCI_QUIRK(0x1043, 0x1264, "ASUS UM5606KA", ALC294_FIXUP_BASS_SPEAKER_15
),
11033 SND_PCI_QUIRK(0x1043, 0x1e02, "ASUS UX3402ZA", ALC245_FIXUP_CS35L41_SPI_2
),
11034 SND_PCI_QUIRK(0x1043, 0x1e10, "ASUS VivoBook X507UAR", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
11035 SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502
),
11036 SND_PCI_QUIRK(0x1043, 0x1e12, "ASUS UM3402", ALC287_FIXUP_CS35L41_I2C_2
),
11037 SND_PCI_QUIRK(0x1043, 0x1e1f, "ASUS Vivobook 15 X1504VAP", ALC2XX_FIXUP_HEADSET_MIC
),
11038 SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS
),
11039 SND_PCI_QUIRK(0x1043, 0x1e5e, "ASUS ROG Strix G513", ALC294_FIXUP_ASUS_G513_PINS
),
11040 SND_PCI_QUIRK(0x1043, 0x1e63, "ASUS H7606W", ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1
),
11041 SND_PCI_QUIRK(0x1043, 0x1e83, "ASUS GA605W", ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1
),
11042 SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401
),
11043 SND_PCI_QUIRK(0x1043, 0x1eb3, "ASUS Ally RCLA72", ALC287_FIXUP_TAS2781_I2C
),
11044 SND_PCI_QUIRK(0x1043, 0x1ed3, "ASUS HN7306W", ALC287_FIXUP_CS35L41_I2C_2
),
11045 SND_PCI_QUIRK(0x1043, 0x1ee2, "ASUS UM6702RA/RC", ALC287_FIXUP_CS35L41_I2C_2
),
11046 SND_PCI_QUIRK(0x1043, 0x1c52, "ASUS Zephyrus G15 2022", ALC289_FIXUP_ASUS_GA401
),
11047 SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401
),
11048 SND_PCI_QUIRK(0x1043, 0x1f12, "ASUS UM5302", ALC287_FIXUP_CS35L41_I2C_2
),
11049 SND_PCI_QUIRK(0x1043, 0x1f1f, "ASUS H7604JI/JV/J3D", ALC245_FIXUP_CS35L41_SPI_2
),
11050 SND_PCI_QUIRK(0x1043, 0x1f62, "ASUS UX7602ZM", ALC245_FIXUP_CS35L41_SPI_2
),
11051 SND_PCI_QUIRK(0x1043, 0x1f63, "ASUS P5405CSA", ALC245_FIXUP_CS35L41_SPI_2
),
11052 SND_PCI_QUIRK(0x1043, 0x1f92, "ASUS ROG Flow X16", ALC289_FIXUP_ASUS_GA401
),
11053 SND_PCI_QUIRK(0x1043, 0x1fb3, "ASUS ROG Flow Z13 GZ302EA", ALC287_FIXUP_CS35L41_I2C_2
),
11054 SND_PCI_QUIRK(0x1043, 0x3011, "ASUS B5605CVA", ALC245_FIXUP_CS35L41_SPI_2
),
11055 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2
),
11056 SND_PCI_QUIRK(0x1043, 0x3061, "ASUS B3405CCA", ALC294_FIXUP_ASUS_CS35L41_SPI_2
),
11057 SND_PCI_QUIRK(0x1043, 0x3071, "ASUS B5405CCA", ALC294_FIXUP_ASUS_CS35L41_SPI_2
),
11058 SND_PCI_QUIRK(0x1043, 0x30c1, "ASUS B3605CCA / P3605CCA", ALC294_FIXUP_ASUS_CS35L41_SPI_2
),
11059 SND_PCI_QUIRK(0x1043, 0x30d1, "ASUS B5405CCA", ALC294_FIXUP_ASUS_CS35L41_SPI_2
),
11060 SND_PCI_QUIRK(0x1043, 0x30e1, "ASUS B5605CCA", ALC294_FIXUP_ASUS_CS35L41_SPI_2
),
11061 SND_PCI_QUIRK(0x1043, 0x31d0, "ASUS Zen AIO 27 Z272SD_A272SD", ALC274_FIXUP_ASUS_ZEN_AIO_27
),
11062 SND_PCI_QUIRK(0x1043, 0x31e1, "ASUS B5605CCA", ALC294_FIXUP_ASUS_CS35L41_SPI_2
),
11063 SND_PCI_QUIRK(0x1043, 0x31f1, "ASUS B3605CCA", ALC294_FIXUP_ASUS_CS35L41_SPI_2
),
11064 SND_PCI_QUIRK(0x1043, 0x3a20, "ASUS G614JZR", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS
),
11065 SND_PCI_QUIRK(0x1043, 0x3a30, "ASUS G814JVR/JIR", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS
),
11066 SND_PCI_QUIRK(0x1043, 0x3a40, "ASUS G814JZR", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS
),
11067 SND_PCI_QUIRK(0x1043, 0x3a50, "ASUS G834JYR/JZR", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS
),
11068 SND_PCI_QUIRK(0x1043, 0x3a60, "ASUS G634JYR/JZR", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS
),
11069 SND_PCI_QUIRK(0x1043, 0x3d78, "ASUS GA603KH", ALC287_FIXUP_CS35L41_I2C_2
),
11070 SND_PCI_QUIRK(0x1043, 0x3d88, "ASUS GA603KM", ALC287_FIXUP_CS35L41_I2C_2
),
11071 SND_PCI_QUIRK(0x1043, 0x3e00, "ASUS G814FH/FM/FP", ALC287_FIXUP_CS35L41_I2C_2
),
11072 SND_PCI_QUIRK(0x1043, 0x3e20, "ASUS G814PH/PM/PP", ALC287_FIXUP_CS35L41_I2C_2
),
11073 SND_PCI_QUIRK(0x1043, 0x3e30, "ASUS TP3607SA", ALC287_FIXUP_TAS2781_I2C
),
11074 SND_PCI_QUIRK(0x1043, 0x3ee0, "ASUS Strix G815_JHR_JMR_JPR", ALC287_FIXUP_TAS2781_I2C
),
11075 SND_PCI_QUIRK(0x1043, 0x3ef0, "ASUS Strix G635LR_LW_LX", ALC287_FIXUP_TAS2781_I2C
),
11076 SND_PCI_QUIRK(0x1043, 0x3f00, "ASUS Strix G815LH_LM_LP", ALC287_FIXUP_TAS2781_I2C
),
11077 SND_PCI_QUIRK(0x1043, 0x3f10, "ASUS Strix G835LR_LW_LX", ALC287_FIXUP_TAS2781_I2C
),
11078 SND_PCI_QUIRK(0x1043, 0x3f20, "ASUS Strix G615LR_LW", ALC287_FIXUP_TAS2781_I2C
),
11079 SND_PCI_QUIRK(0x1043, 0x3f30, "ASUS Strix G815LR_LW", ALC287_FIXUP_TAS2781_I2C
),
11080 SND_PCI_QUIRK(0x1043, 0x3fd0, "ASUS B3605CVA", ALC245_FIXUP_CS35L41_SPI_2
),
11081 SND_PCI_QUIRK(0x1043, 0x3ff0, "ASUS B5405CVA", ALC245_FIXUP_CS35L41_SPI_2
),
11082 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC
),
11083 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC
),
11084 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC
),
11085 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC
),
11086 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101
),
11087 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2
),
11088 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
11089 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
11090 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX
),
11091 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE
),
11092 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE
),
11093 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK
),
11094 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT
),
11095 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN
),
11096 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC
),
11097 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN
),
11098 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC
),
11099 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE
),
11100 SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE
),
11101 SND_PCI_QUIRK(0x10ec, 0x119e, "Positivo SU C1400", ALC269_FIXUP_ASPIRE_HEADSET_MIC
),
11102 SND_PCI_QUIRK(0x10ec, 0x11bc, "VAIO VJFE-IL", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
11103 SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK
),
11104 SND_PCI_QUIRK(0x10ec, 0x124c, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK
),
11105 SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK
),
11106 SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK
),
11107 SND_PCI_QUIRK(0x10ec, 0x12cc, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK
),
11108 SND_PCI_QUIRK(0x10ec, 0x12f6, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK
),
11109 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_ASPIRE_HEADSET_MIC
),
11110 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC
),
11111 SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_AMP
),
11112 SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_AMP
),
11113 SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_AMP
),
11114 SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_AMP
),
11115 SND_PCI_QUIRK(0x144d, 0xc1a3, "Samsung Galaxy Book Pro (NP935XDB-KC1SE)", ALC298_FIXUP_SAMSUNG_AMP
),
11116 SND_PCI_QUIRK(0x144d, 0xc1a4, "Samsung Galaxy Book Pro 360 (NT935QBD)", ALC298_FIXUP_SAMSUNG_AMP
),
11117 SND_PCI_QUIRK(0x144d, 0xc1a6, "Samsung Galaxy Book Pro 360 (NP930QBD)", ALC298_FIXUP_SAMSUNG_AMP
),
11118 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8
),
11119 SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_AMP
),
11120 SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_AMP
),
11121 SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
),
11122 SND_PCI_QUIRK(0x144d, 0xca03, "Samsung Galaxy Book2 Pro 360 (NP930QED)", ALC298_FIXUP_SAMSUNG_AMP
),
11123 SND_PCI_QUIRK(0x144d, 0xca06, "Samsung Galaxy Book3 360 (NP730QFG)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
),
11124 SND_PCI_QUIRK(0x144d, 0xc868, "Samsung Galaxy Book2 Pro (NP930XED)", ALC298_FIXUP_SAMSUNG_AMP
),
11125 SND_PCI_QUIRK(0x144d, 0xc870, "Samsung Galaxy Book2 Pro (NP950XED)", ALC298_FIXUP_SAMSUNG_AMP_V2_2_AMPS
),
11126 SND_PCI_QUIRK(0x144d, 0xc872, "Samsung Galaxy Book2 Pro (NP950XEE)", ALC298_FIXUP_SAMSUNG_AMP_V2_2_AMPS
),
11127 SND_PCI_QUIRK(0x144d, 0xc886, "Samsung Galaxy Book3 Pro (NP964XFG)", ALC298_FIXUP_SAMSUNG_AMP_V2_4_AMPS
),
11128 SND_PCI_QUIRK(0x144d, 0xc1ca, "Samsung Galaxy Book3 Pro 360 (NP960QFG)", ALC298_FIXUP_SAMSUNG_AMP_V2_4_AMPS
),
11129 SND_PCI_QUIRK(0x144d, 0xc1cc, "Samsung Galaxy Book3 Ultra (NT960XFH)", ALC298_FIXUP_SAMSUNG_AMP_V2_4_AMPS
),
11130 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC
),
11131 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC
),
11132 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC
),
11133 SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK
),
11134 SND_PCI_QUIRK(0x152d, 0x1262, "Huawei NBLB-WAX9N", ALC2XX_FIXUP_HEADSET_MIC
),
11135 SND_PCI_QUIRK(0x1558, 0x0353, "Clevo V35[05]SN[CDE]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11136 SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11137 SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11138 SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11139 SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11140 SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11141 SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11142 SND_PCI_QUIRK(0x1558, 0x2624, "Clevo L240TU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11143 SND_PCI_QUIRK(0x1558, 0x28c1, "Clevo V370VND", ALC2XX_FIXUP_HEADSET_MIC
),
11144 SND_PCI_QUIRK(0x1558, 0x35a1, "Clevo V3[56]0EN[CDE]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11145 SND_PCI_QUIRK(0x1558, 0x35b1, "Clevo V3[57]0WN[MNP]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11146 SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11147 SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11148 SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11149 SND_PCI_QUIRK(0x1558, 0x4041, "Clevo NV4[15]PZ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11150 SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11151 SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11152 SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11153 SND_PCI_QUIRK(0x1558, 0x5015, "Clevo NH5[58]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11154 SND_PCI_QUIRK(0x1558, 0x5017, "Clevo NH7[79]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11155 SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11156 SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11157 SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11158 SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11159 SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11160 SND_PCI_QUIRK(0x1558, 0x50e1, "Clevo NH5[58]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11161 SND_PCI_QUIRK(0x1558, 0x50e2, "Clevo NH7[79]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11162 SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11163 SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11164 SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11165 SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11166 SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11167 SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11168 SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11169 SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11170 SND_PCI_QUIRK(0x1558, 0x51b1, "Clevo NS50AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11171 SND_PCI_QUIRK(0x1558, 0x51b3, "Clevo NS70AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11172 SND_PCI_QUIRK(0x1558, 0x5630, "Clevo NP50RNJS", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11173 SND_PCI_QUIRK(0x1558, 0x5700, "Clevo X560WN[RST]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11174 SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11175 SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11176 SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11177 SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11178 SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11179 SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11180 SND_PCI_QUIRK(0x1558, 0x7716, "Clevo NS50PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11181 SND_PCI_QUIRK(0x1558, 0x7717, "Clevo NS70PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11182 SND_PCI_QUIRK(0x1558, 0x7718, "Clevo L140PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11183 SND_PCI_QUIRK(0x1558, 0x7724, "Clevo L140AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11184 SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11185 SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11186 SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11187 SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11188 SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11189 SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11190 SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11191 SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC
),
11192 SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC
),
11193 SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC
),
11194 SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11195 SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11196 SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11197 SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11198 SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11199 SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME
),
11200 SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11201 SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11202 SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11203 SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11204 SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11205 SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11206 SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11207 SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11208 SND_PCI_QUIRK(0x1558, 0xa554, "VAIO VJFH52", ALC269_FIXUP_VAIO_VJFH52_MIC_NO_PRESENCE
),
11209 SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11210 SND_PCI_QUIRK(0x1558, 0xa650, "Clevo NP[567]0SN[CD]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11211 SND_PCI_QUIRK(0x1558, 0xa671, "Clevo NP70SN[CDE]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11212 SND_PCI_QUIRK(0x1558, 0xa741, "Clevo V54x_6x_TNE", ALC245_FIXUP_CLEVO_NOISY_MIC
),
11213 SND_PCI_QUIRK(0x1558, 0xa743, "Clevo V54x_6x_TU", ALC245_FIXUP_CLEVO_NOISY_MIC
),
11214 SND_PCI_QUIRK(0x1558, 0xa763, "Clevo V54x_6x_TU", ALC245_FIXUP_CLEVO_NOISY_MIC
),
11215 SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11216 SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11217 SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11218 SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11219 SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11220 SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE
),
11221 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS
),
11222 SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340
),
11223 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE
),
11224 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE
),
11225 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE
),
11226 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE
),
11227 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE
),
11228 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK
),
11229 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST
),
11230 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK
),
11231 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK
),
11232 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK
),
11233 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK
),
11234 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440
),
11235 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK
),
11236 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK
),
11237 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK
),
11238 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK
),
11239 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK
),
11240 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
11241 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK
),
11242 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK
),
11243 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK
),
11244 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11245 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11246 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460
),
11247 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460
),
11248 SND_PCI_QUIRK(0x17aa, 0x2234, "Thinkpad ICE-1", ALC287_FIXUP_TAS2781_I2C
),
11249 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK
),
11250 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11251 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11252 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460
),
11253 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11254 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11255 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11256 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
11257 SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK
),
11258 SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK
),
11259 SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK
),
11260 SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK
),
11261 SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11262 SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11263 SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11264 SND_PCI_QUIRK(0x17aa, 0x2316, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11265 SND_PCI_QUIRK(0x17aa, 0x2317, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11266 SND_PCI_QUIRK(0x17aa, 0x2318, "Thinkpad Z13 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11267 SND_PCI_QUIRK(0x17aa, 0x2319, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11268 SND_PCI_QUIRK(0x17aa, 0x231a, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11269 SND_PCI_QUIRK(0x17aa, 0x231e, "Thinkpad", ALC287_FIXUP_LENOVO_THKPAD_WH_ALC1318
),
11270 SND_PCI_QUIRK(0x17aa, 0x231f, "Thinkpad", ALC287_FIXUP_LENOVO_THKPAD_WH_ALC1318
),
11271 SND_PCI_QUIRK(0x17aa, 0x2326, "Hera2", ALC287_FIXUP_TAS2781_I2C
),
11272 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
),
11273 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
),
11274 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION
),
11275 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION
),
11276 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION
),
11277 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION
),
11278 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION
),
11279 SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC
),
11280 SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC
),
11281 SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC
),
11282 SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340
),
11283 SND_PCI_QUIRK(0x17aa, 0x334b, "Lenovo ThinkCentre M70 Gen5", ALC283_FIXUP_HEADSET_MIC
),
11284 SND_PCI_QUIRK(0x17aa, 0x3384, "ThinkCentre M90a PRO", ALC233_FIXUP_LENOVO_L2MH_LOW_ENLED
),
11285 SND_PCI_QUIRK(0x17aa, 0x3386, "ThinkCentre M90a Gen6", ALC233_FIXUP_LENOVO_L2MH_LOW_ENLED
),
11286 SND_PCI_QUIRK(0x17aa, 0x3387, "ThinkCentre M70a Gen6", ALC233_FIXUP_LENOVO_L2MH_LOW_ENLED
),
11287 SND_PCI_QUIRK(0x17aa, 0x3801, "Lenovo Yoga9 14IAP7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN
),
11288 HDA_CODEC_QUIRK(0x17aa, 0x3802, "DuetITL 2021", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS
),
11289 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo Yoga Pro 9 14IRP8", ALC287_FIXUP_TAS2781_I2C
),
11290 SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS
),
11291 SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940 / Yoga Duet 7", ALC298_FIXUP_LENOVO_C940_DUET7
),
11292 SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS
),
11293 HDA_CODEC_QUIRK(0x17aa, 0x3820, "IdeaPad 330-17IKB 81DM", ALC269_FIXUP_ASPIRE_HEADSET_MIC
),
11294 SND_PCI_QUIRK(0x17aa, 0x3820, "Yoga Duet 7 13ITL6", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS
),
11295 SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS
),
11296 SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF
),
11297 SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS
),
11298 SND_PCI_QUIRK(0x17aa, 0x383d, "Legion Y9000X 2019", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS
),
11299 SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP
),
11300 SND_PCI_QUIRK(0x17aa, 0x3847, "Legion 7 16ACHG6", ALC287_FIXUP_LEGION_16ACHG6
),
11301 SND_PCI_QUIRK(0x17aa, 0x384a, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS
),
11302 SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS
),
11303 SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS
),
11304 SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6
),
11305 SND_PCI_QUIRK(0x17aa, 0x3865, "Lenovo 13X", ALC287_FIXUP_CS35L41_I2C_2
),
11306 SND_PCI_QUIRK(0x17aa, 0x3866, "Lenovo 13X", ALC287_FIXUP_CS35L41_I2C_2
),
11307 SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN
),
11308 HDA_CODEC_QUIRK(0x17aa, 0x386e, "Legion Y9000X 2022 IAH7", ALC287_FIXUP_CS35L41_I2C_2
),
11309 SND_PCI_QUIRK(0x17aa, 0x386e, "Yoga Pro 7 14ARP8", ALC285_FIXUP_SPEAKER2_TO_DAC1
),
11310 HDA_CODEC_QUIRK(0x17aa, 0x38a8, "Legion Pro 7 16ARX8H", ALC287_FIXUP_TAS2781_I2C
), /* this must match before PCI SSID 17aa:386f below */
11311 SND_PCI_QUIRK(0x17aa, 0x386f, "Legion Pro 7i 16IAX7", ALC287_FIXUP_CS35L41_I2C_2
),
11312 SND_PCI_QUIRK(0x17aa, 0x3870, "Lenovo Yoga 7 14ARB7", ALC287_FIXUP_YOGA7_14ARB7_I2C
),
11313 SND_PCI_QUIRK(0x17aa, 0x3877, "Lenovo Legion 7 Slim 16ARHA7", ALC287_FIXUP_CS35L41_I2C_2
),
11314 SND_PCI_QUIRK(0x17aa, 0x3878, "Lenovo Legion 7 Slim 16ARHA7", ALC287_FIXUP_CS35L41_I2C_2
),
11315 SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", ALC287_FIXUP_TAS2781_I2C
),
11316 SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", ALC287_FIXUP_TAS2781_I2C
),
11317 SND_PCI_QUIRK(0x17aa, 0x387f, "Yoga S780-16 pro dual LX", ALC287_FIXUP_TAS2781_I2C
),
11318 SND_PCI_QUIRK(0x17aa, 0x3880, "Yoga S780-16 pro dual YC", ALC287_FIXUP_TAS2781_I2C
),
11319 SND_PCI_QUIRK(0x17aa, 0x3881, "YB9 dual power mode2 YC", ALC287_FIXUP_TAS2781_I2C
),
11320 SND_PCI_QUIRK(0x17aa, 0x3882, "Lenovo Yoga Pro 7 14APH8", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN
),
11321 SND_PCI_QUIRK(0x17aa, 0x3884, "Y780 YG DUAL", ALC287_FIXUP_TAS2781_I2C
),
11322 SND_PCI_QUIRK(0x17aa, 0x3886, "Y780 VECO DUAL", ALC287_FIXUP_TAS2781_I2C
),
11323 SND_PCI_QUIRK(0x17aa, 0x3891, "Lenovo Yoga Pro 7 14AHP9", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN
),
11324 SND_PCI_QUIRK(0x17aa, 0x38a5, "Y580P AMD dual", ALC287_FIXUP_TAS2781_I2C
),
11325 SND_PCI_QUIRK(0x17aa, 0x38a7, "Y780P AMD YG dual", ALC287_FIXUP_TAS2781_I2C
),
11326 SND_PCI_QUIRK(0x17aa, 0x38a8, "Y780P AMD VECO dual", ALC287_FIXUP_TAS2781_I2C
),
11327 SND_PCI_QUIRK(0x17aa, 0x38a9, "Thinkbook 16P", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11328 SND_PCI_QUIRK(0x17aa, 0x38ab, "Thinkbook 16P", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11329 SND_PCI_QUIRK(0x17aa, 0x38b4, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2
),
11330 SND_PCI_QUIRK(0x17aa, 0x38b5, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2
),
11331 SND_PCI_QUIRK(0x17aa, 0x38b6, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2
),
11332 SND_PCI_QUIRK(0x17aa, 0x38b7, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2
),
11333 SND_PCI_QUIRK(0x17aa, 0x38b8, "Yoga S780-14.5 proX AMD YC Dual", ALC287_FIXUP_TAS2781_I2C
),
11334 SND_PCI_QUIRK(0x17aa, 0x38b9, "Yoga S780-14.5 proX AMD LX Dual", ALC287_FIXUP_TAS2781_I2C
),
11335 SND_PCI_QUIRK(0x17aa, 0x38ba, "Yoga S780-14.5 Air AMD quad YC", ALC287_FIXUP_TAS2781_I2C
),
11336 SND_PCI_QUIRK(0x17aa, 0x38bb, "Yoga S780-14.5 Air AMD quad AAC", ALC287_FIXUP_TAS2781_I2C
),
11337 SND_PCI_QUIRK(0x17aa, 0x38be, "Yoga S980-14.5 proX YC Dual", ALC287_FIXUP_TAS2781_I2C
),
11338 SND_PCI_QUIRK(0x17aa, 0x38bf, "Yoga S980-14.5 proX LX Dual", ALC287_FIXUP_TAS2781_I2C
),
11339 SND_PCI_QUIRK(0x17aa, 0x38c3, "Y980 DUAL", ALC287_FIXUP_TAS2781_I2C
),
11340 SND_PCI_QUIRK(0x17aa, 0x38c7, "Thinkbook 13x Gen 4", ALC287_FIXUP_CS35L41_I2C_4
),
11341 SND_PCI_QUIRK(0x17aa, 0x38c8, "Thinkbook 13x Gen 4", ALC287_FIXUP_CS35L41_I2C_4
),
11342 SND_PCI_QUIRK(0x17aa, 0x38cb, "Y790 YG DUAL", ALC287_FIXUP_TAS2781_I2C
),
11343 SND_PCI_QUIRK(0x17aa, 0x38cd, "Y790 VECO DUAL", ALC287_FIXUP_TAS2781_I2C
),
11344 SND_PCI_QUIRK(0x17aa, 0x38d2, "Lenovo Yoga 9 14IMH9", ALC287_FIXUP_YOGA9_14IMH9_BASS_SPK_PIN
),
11345 SND_PCI_QUIRK(0x17aa, 0x38d3, "Yoga S990-16 Pro IMH YC Dual", ALC287_FIXUP_TAS2781_I2C
),
11346 SND_PCI_QUIRK(0x17aa, 0x38d4, "Yoga S990-16 Pro IMH VECO Dual", ALC287_FIXUP_TAS2781_I2C
),
11347 SND_PCI_QUIRK(0x17aa, 0x38d5, "Yoga S990-16 Pro IMH YC Quad", ALC287_FIXUP_TAS2781_I2C
),
11348 SND_PCI_QUIRK(0x17aa, 0x38d6, "Yoga S990-16 Pro IMH VECO Quad", ALC287_FIXUP_TAS2781_I2C
),
11349 SND_PCI_QUIRK(0x17aa, 0x38d7, "Lenovo Yoga 9 14IMH9", ALC287_FIXUP_YOGA9_14IMH9_BASS_SPK_PIN
),
11350 SND_PCI_QUIRK(0x17aa, 0x38df, "Yoga Y990 Intel YC Dual", ALC287_FIXUP_TAS2781_I2C
),
11351 SND_PCI_QUIRK(0x17aa, 0x38e0, "Yoga Y990 Intel VECO Dual", ALC287_FIXUP_TAS2781_I2C
),
11352 SND_PCI_QUIRK(0x17aa, 0x38f8, "Yoga Book 9i", ALC287_FIXUP_TAS2781_I2C
),
11353 SND_PCI_QUIRK(0x17aa, 0x38df, "Y990 YG DUAL", ALC287_FIXUP_TAS2781_I2C
),
11354 SND_PCI_QUIRK(0x17aa, 0x38f9, "Thinkbook 16P Gen5", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11355 SND_PCI_QUIRK(0x17aa, 0x38fa, "Thinkbook 16P Gen5", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD
),
11356 SND_PCI_QUIRK(0x17aa, 0x38fd, "ThinkBook plus Gen5 Hybrid", ALC287_FIXUP_TAS2781_I2C
),
11357 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI
),
11358 SND_PCI_QUIRK(0x17aa, 0x390d, "Lenovo Yoga Pro 7 14ASP10", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN
),
11359 SND_PCI_QUIRK(0x17aa, 0x3913, "Lenovo 145", ALC236_FIXUP_LENOVO_INV_DMIC
),
11360 SND_PCI_QUIRK(0x17aa, 0x391f, "Yoga S990-16 pro Quad YC Quad", ALC287_FIXUP_TAS2781_I2C
),
11361 SND_PCI_QUIRK(0x17aa, 0x3920, "Yoga S990-16 pro Quad VECO Quad", ALC287_FIXUP_TAS2781_I2C
),
11362 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC
),
11363 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI
),
11364 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K
),
11365 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
11366 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC
),
11367 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK
),
11368 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
11369 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK
),
11370 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK
),
11371 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK
),
11372 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK
),
11373 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE
),
11374 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460
),
11375 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460
),
11376 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460
),
11377 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11378 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11379 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11380 SND_PCI_QUIRK(0x17aa, 0x508b, "Thinkpad X12 Gen 1", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS
),
11381 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
11382 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11383 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK
),
11384 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD
),
11385 SND_PCI_QUIRK(0x17aa, 0x9e56, "Lenovo ZhaoYang CF4620Z", ALC286_FIXUP_SONY_MIC_NO_PRESENCE
),
11386 SND_PCI_QUIRK(0x1849, 0x0269, "Positivo Master C6400", ALC269VB_FIXUP_ASUS_ZENBOOK
),
11387 SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK
),
11388 SND_PCI_QUIRK(0x1849, 0xa233, "Positivo Master C6300", ALC269_FIXUP_HEADSET_MIC
),
11389 SND_PCI_QUIRK(0x1854, 0x0440, "LG CQ6", ALC256_FIXUP_HEADPHONE_AMP_VOL
),
11390 SND_PCI_QUIRK(0x1854, 0x0441, "LG CQ6 AIO", ALC256_FIXUP_HEADPHONE_AMP_VOL
),
11391 SND_PCI_QUIRK(0x1854, 0x0488, "LG gram 16 (16Z90R)", ALC298_FIXUP_SAMSUNG_AMP_V2_4_AMPS
),
11392 SND_PCI_QUIRK(0x1854, 0x048a, "LG gram 17 (17ZD90R)", ALC298_FIXUP_SAMSUNG_AMP_V2_4_AMPS
),
11393 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS
),
11394 SND_PCI_QUIRK(0x19e5, 0x320f, "Huawei WRT-WX9 ", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
),
11395 SND_PCI_QUIRK(0x19e5, 0x3212, "Huawei KLV-WX9 ", ALC256_FIXUP_ACER_HEADSET_MIC
),
11396 SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20
),
11397 SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI
),
11398 SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101
),
11399 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2
), /* Also known as Malata PC-B1303 */
11400 SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802
),
11401 SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X
),
11402 SND_PCI_QUIRK(0x1c6c, 0x122a, "Positivo N14AP7", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
11403 SND_PCI_QUIRK(0x1c6c, 0x1251, "Positivo N14KP6-TG", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
),
11404 SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS
),
11405 SND_PCI_QUIRK(0x1d05, 0x1096, "TongFang GMxMRxx", ALC269_FIXUP_NO_SHUTUP
),
11406 SND_PCI_QUIRK(0x1d05, 0x1100, "TongFang GKxNRxx", ALC269_FIXUP_NO_SHUTUP
),
11407 SND_PCI_QUIRK(0x1d05, 0x1111, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP
),
11408 SND_PCI_QUIRK(0x1d05, 0x1119, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP
),
11409 SND_PCI_QUIRK(0x1d05, 0x1129, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP
),
11410 SND_PCI_QUIRK(0x1d05, 0x1147, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP
),
11411 SND_PCI_QUIRK(0x1d05, 0x115c, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP
),
11412 SND_PCI_QUIRK(0x1d05, 0x121b, "TongFang GMxAGxx", ALC269_FIXUP_NO_SHUTUP
),
11413 SND_PCI_QUIRK(0x1d05, 0x1387, "TongFang GMxIXxx", ALC2XX_FIXUP_HEADSET_MIC
),
11414 SND_PCI_QUIRK(0x1d05, 0x1409, "TongFang GMxIXxx", ALC2XX_FIXUP_HEADSET_MIC
),
11415 SND_PCI_QUIRK(0x1d17, 0x3288, "Haier Boyue G42", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS
),
11416 SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC
),
11417 SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
),
11418 SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC
),
11419 SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC
),
11420 SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC
),
11421 SND_PCI_QUIRK(0x1f66, 0x0105, "Ayaneo Portable Game Player", ALC287_FIXUP_CS35L41_I2C_2
),
11422 SND_PCI_QUIRK(0x2014, 0x800a, "Positivo ARN50", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
11423 SND_PCI_QUIRK(0x2782, 0x0214, "VAIO VJFE-CL", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
11424 SND_PCI_QUIRK(0x2782, 0x0228, "Infinix ZERO BOOK 13", ALC269VB_FIXUP_INFINIX_ZERO_BOOK_13
),
11425 SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO
),
11426 SND_PCI_QUIRK(0x2782, 0x1407, "Positivo P15X", ALC269_FIXUP_POSITIVO_P15X_HEADSET_MIC
),
11427 SND_PCI_QUIRK(0x2782, 0x1701, "Infinix Y4 Max", ALC269VC_FIXUP_INFINIX_Y4_MAX
),
11428 SND_PCI_QUIRK(0x2782, 0x1705, "MEDION E15433", ALC269VC_FIXUP_INFINIX_Y4_MAX
),
11429 SND_PCI_QUIRK(0x2782, 0x1707, "Vaio VJFE-ADL", ALC298_FIXUP_SPK_VOLUME
),
11430 SND_PCI_QUIRK(0x2782, 0x4900, "MEDION E15443", ALC233_FIXUP_MEDION_MTL_SPK
),
11431 SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC
),
11432 SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED
),
11433 SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10
),
11434 SND_PCI_QUIRK(0x8086, 0x3038, "Intel NUC 13", ALC295_FIXUP_CHROME_BOOK
),
11435 SND_PCI_QUIRK(0xf111, 0x0001, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE
),
11436 SND_PCI_QUIRK(0xf111, 0x0006, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE
),
11437 SND_PCI_QUIRK(0xf111, 0x0009, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE
),
11438 SND_PCI_QUIRK(0xf111, 0x000c, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE
),
11441 /* Below is a quirk table taken from the old code.
11442 * Basically the device should work as is without the fixup table.
11443 * If BIOS doesn't give a proper info, enable the corresponding
11446 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
11447 ALC269_FIXUP_AMIC
),
11448 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC
),
11449 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC
),
11450 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC
),
11451 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC
),
11452 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC
),
11453 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC
),
11454 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC
),
11455 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC
),
11456 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC
),
11457 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC
),
11458 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC
),
11459 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC
),
11460 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC
),
11461 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC
),
11462 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC
),
11463 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC
),
11464 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC
),
11465 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC
),
11466 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC
),
11467 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC
),
11468 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC
),
11469 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC
),
11470 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC
),
11471 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC
),
11472 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC
),
11473 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC
),
11474 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC
),
11475 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC
),
11476 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC
),
11477 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC
),
11478 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC
),
11479 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC
),
11480 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC
),
11481 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC
),
11482 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC
),
11483 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC
),
11484 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC
),
11485 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC
),
11486 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC
),
11491 static const struct hda_quirk alc269_fixup_vendor_tbl
[] = {
11492 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC
),
11493 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED
),
11494 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO
),
11495 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo XPAD", ALC269_FIXUP_LENOVO_XPAD_ACPI
),
11496 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED
),
11500 static const struct hda_model_fixup alc269_fixup_models
[] = {
11501 {.id
= ALC269_FIXUP_AMIC
, .name
= "laptop-amic"},
11502 {.id
= ALC269_FIXUP_DMIC
, .name
= "laptop-dmic"},
11503 {.id
= ALC269_FIXUP_STEREO_DMIC
, .name
= "alc269-dmic"},
11504 {.id
= ALC271_FIXUP_DMIC
, .name
= "alc271-dmic"},
11505 {.id
= ALC269_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
11506 {.id
= ALC269_FIXUP_HEADSET_MIC
, .name
= "headset-mic"},
11507 {.id
= ALC269_FIXUP_HEADSET_MODE
, .name
= "headset-mode"},
11508 {.id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
, .name
= "headset-mode-no-hp-mic"},
11509 {.id
= ALC269_FIXUP_LENOVO_DOCK
, .name
= "lenovo-dock"},
11510 {.id
= ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST
, .name
= "lenovo-dock-limit-boost"},
11511 {.id
= ALC269_FIXUP_HP_GPIO_LED
, .name
= "hp-gpio-led"},
11512 {.id
= ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED
, .name
= "hp-dock-gpio-mic1-led"},
11513 {.id
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
, .name
= "dell-headset-multi"},
11514 {.id
= ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
, .name
= "dell-headset-dock"},
11515 {.id
= ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
, .name
= "dell-headset3"},
11516 {.id
= ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
, .name
= "dell-headset4"},
11517 {.id
= ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET
, .name
= "dell-headset4-quiet"},
11518 {.id
= ALC283_FIXUP_CHROME_BOOK
, .name
= "alc283-dac-wcaps"},
11519 {.id
= ALC283_FIXUP_SENSE_COMBO_JACK
, .name
= "alc283-sense-combo"},
11520 {.id
= ALC292_FIXUP_TPT440_DOCK
, .name
= "tpt440-dock"},
11521 {.id
= ALC292_FIXUP_TPT440
, .name
= "tpt440"},
11522 {.id
= ALC292_FIXUP_TPT460
, .name
= "tpt460"},
11523 {.id
= ALC298_FIXUP_TPT470_DOCK_FIX
, .name
= "tpt470-dock-fix"},
11524 {.id
= ALC298_FIXUP_TPT470_DOCK
, .name
= "tpt470-dock"},
11525 {.id
= ALC233_FIXUP_LENOVO_MULTI_CODECS
, .name
= "dual-codecs"},
11526 {.id
= ALC700_FIXUP_INTEL_REFERENCE
, .name
= "alc700-ref"},
11527 {.id
= ALC269_FIXUP_SONY_VAIO
, .name
= "vaio"},
11528 {.id
= ALC269_FIXUP_DELL_M101Z
, .name
= "dell-m101z"},
11529 {.id
= ALC269_FIXUP_ASUS_G73JW
, .name
= "asus-g73jw"},
11530 {.id
= ALC269_FIXUP_LENOVO_EAPD
, .name
= "lenovo-eapd"},
11531 {.id
= ALC275_FIXUP_SONY_HWEQ
, .name
= "sony-hweq"},
11532 {.id
= ALC269_FIXUP_PCM_44K
, .name
= "pcm44k"},
11533 {.id
= ALC269_FIXUP_LIFEBOOK
, .name
= "lifebook"},
11534 {.id
= ALC269_FIXUP_LIFEBOOK_EXTMIC
, .name
= "lifebook-extmic"},
11535 {.id
= ALC269_FIXUP_LIFEBOOK_HP_PIN
, .name
= "lifebook-hp-pin"},
11536 {.id
= ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC
, .name
= "lifebook-u7x7"},
11537 {.id
= ALC269VB_FIXUP_AMIC
, .name
= "alc269vb-amic"},
11538 {.id
= ALC269VB_FIXUP_DMIC
, .name
= "alc269vb-dmic"},
11539 {.id
= ALC269_FIXUP_HP_MUTE_LED_MIC1
, .name
= "hp-mute-led-mic1"},
11540 {.id
= ALC269_FIXUP_HP_MUTE_LED_MIC2
, .name
= "hp-mute-led-mic2"},
11541 {.id
= ALC269_FIXUP_HP_MUTE_LED_MIC3
, .name
= "hp-mute-led-mic3"},
11542 {.id
= ALC269_FIXUP_HP_GPIO_MIC1_LED
, .name
= "hp-gpio-mic1"},
11543 {.id
= ALC269_FIXUP_HP_LINE1_MIC1_LED
, .name
= "hp-line1-mic1"},
11544 {.id
= ALC269_FIXUP_NO_SHUTUP
, .name
= "noshutup"},
11545 {.id
= ALC286_FIXUP_SONY_MIC_NO_PRESENCE
, .name
= "sony-nomic"},
11546 {.id
= ALC269_FIXUP_ASPIRE_HEADSET_MIC
, .name
= "aspire-headset-mic"},
11547 {.id
= ALC269_FIXUP_ASUS_X101
, .name
= "asus-x101"},
11548 {.id
= ALC271_FIXUP_HP_GATE_MIC_JACK
, .name
= "acer-ao7xx"},
11549 {.id
= ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
, .name
= "acer-aspire-e1"},
11550 {.id
= ALC269_FIXUP_ACER_AC700
, .name
= "acer-ac700"},
11551 {.id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
, .name
= "limit-mic-boost"},
11552 {.id
= ALC269VB_FIXUP_ASUS_ZENBOOK
, .name
= "asus-zenbook"},
11553 {.id
= ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
, .name
= "asus-zenbook-ux31a"},
11554 {.id
= ALC269VB_FIXUP_ORDISSIMO_EVE2
, .name
= "ordissimo"},
11555 {.id
= ALC282_FIXUP_ASUS_TX300
, .name
= "asus-tx300"},
11556 {.id
= ALC283_FIXUP_INT_MIC
, .name
= "alc283-int-mic"},
11557 {.id
= ALC290_FIXUP_MONO_SPEAKERS_HSJACK
, .name
= "mono-speakers"},
11558 {.id
= ALC290_FIXUP_SUBWOOFER_HSJACK
, .name
= "alc290-subwoofer"},
11559 {.id
= ALC269_FIXUP_THINKPAD_ACPI
, .name
= "thinkpad"},
11560 {.id
= ALC269_FIXUP_LENOVO_XPAD_ACPI
, .name
= "lenovo-xpad-led"},
11561 {.id
= ALC269_FIXUP_DMIC_THINKPAD_ACPI
, .name
= "dmic-thinkpad"},
11562 {.id
= ALC255_FIXUP_ACER_MIC_NO_PRESENCE
, .name
= "alc255-acer"},
11563 {.id
= ALC255_FIXUP_ASUS_MIC_NO_PRESENCE
, .name
= "alc255-asus"},
11564 {.id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
, .name
= "alc255-dell1"},
11565 {.id
= ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
, .name
= "alc255-dell2"},
11566 {.id
= ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
, .name
= "alc293-dell1"},
11567 {.id
= ALC283_FIXUP_HEADSET_MIC
, .name
= "alc283-headset"},
11568 {.id
= ALC255_FIXUP_MIC_MUTE_LED
, .name
= "alc255-dell-mute"},
11569 {.id
= ALC282_FIXUP_ASPIRE_V5_PINS
, .name
= "aspire-v5"},
11570 {.id
= ALC269VB_FIXUP_ASPIRE_E1_COEF
, .name
= "aspire-e1-coef"},
11571 {.id
= ALC280_FIXUP_HP_GPIO4
, .name
= "hp-gpio4"},
11572 {.id
= ALC286_FIXUP_HP_GPIO_LED
, .name
= "hp-gpio-led"},
11573 {.id
= ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY
, .name
= "hp-gpio2-hotkey"},
11574 {.id
= ALC280_FIXUP_HP_DOCK_PINS
, .name
= "hp-dock-pins"},
11575 {.id
= ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED
, .name
= "hp-dock-gpio-mic"},
11576 {.id
= ALC280_FIXUP_HP_9480M
, .name
= "hp-9480m"},
11577 {.id
= ALC288_FIXUP_DELL_HEADSET_MODE
, .name
= "alc288-dell-headset"},
11578 {.id
= ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
, .name
= "alc288-dell1"},
11579 {.id
= ALC288_FIXUP_DELL_XPS_13
, .name
= "alc288-dell-xps13"},
11580 {.id
= ALC292_FIXUP_DELL_E7X
, .name
= "dell-e7x"},
11581 {.id
= ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
, .name
= "alc293-dell"},
11582 {.id
= ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
, .name
= "alc298-dell1"},
11583 {.id
= ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE
, .name
= "alc298-dell-aio"},
11584 {.id
= ALC275_FIXUP_DELL_XPS
, .name
= "alc275-dell-xps"},
11585 {.id
= ALC293_FIXUP_LENOVO_SPK_NOISE
, .name
= "lenovo-spk-noise"},
11586 {.id
= ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
, .name
= "lenovo-hotkey"},
11587 {.id
= ALC255_FIXUP_DELL_SPK_NOISE
, .name
= "dell-spk-noise"},
11588 {.id
= ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
, .name
= "alc225-dell1"},
11589 {.id
= ALC295_FIXUP_DISABLE_DAC3
, .name
= "alc295-disable-dac3"},
11590 {.id
= ALC285_FIXUP_SPEAKER2_TO_DAC1
, .name
= "alc285-speaker2-to-dac1"},
11591 {.id
= ALC280_FIXUP_HP_HEADSET_MIC
, .name
= "alc280-hp-headset"},
11592 {.id
= ALC221_FIXUP_HP_FRONT_MIC
, .name
= "alc221-hp-mic"},
11593 {.id
= ALC298_FIXUP_SPK_VOLUME
, .name
= "alc298-spk-volume"},
11594 {.id
= ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER
, .name
= "dell-inspiron-7559"},
11595 {.id
= ALC269_FIXUP_ATIV_BOOK_8
, .name
= "ativ-book"},
11596 {.id
= ALC221_FIXUP_HP_MIC_NO_PRESENCE
, .name
= "alc221-hp-mic"},
11597 {.id
= ALC256_FIXUP_ASUS_HEADSET_MODE
, .name
= "alc256-asus-headset"},
11598 {.id
= ALC256_FIXUP_ASUS_MIC
, .name
= "alc256-asus-mic"},
11599 {.id
= ALC256_FIXUP_ASUS_AIO_GPIO2
, .name
= "alc256-asus-aio"},
11600 {.id
= ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
, .name
= "alc233-asus"},
11601 {.id
= ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE
, .name
= "alc233-eapd"},
11602 {.id
= ALC294_FIXUP_LENOVO_MIC_LOCATION
, .name
= "alc294-lenovo-mic"},
11603 {.id
= ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE
, .name
= "alc225-wyse"},
11604 {.id
= ALC274_FIXUP_DELL_AIO_LINEOUT_VERB
, .name
= "alc274-dell-aio"},
11605 {.id
= ALC255_FIXUP_DUMMY_LINEOUT_VERB
, .name
= "alc255-dummy-lineout"},
11606 {.id
= ALC255_FIXUP_DELL_HEADSET_MIC
, .name
= "alc255-dell-headset"},
11607 {.id
= ALC295_FIXUP_HP_X360
, .name
= "alc295-hp-x360"},
11608 {.id
= ALC225_FIXUP_HEADSET_JACK
, .name
= "alc-headset-jack"},
11609 {.id
= ALC295_FIXUP_CHROME_BOOK
, .name
= "alc-chrome-book"},
11610 {.id
= ALC256_FIXUP_CHROME_BOOK
, .name
= "alc-2024y-chromebook"},
11611 {.id
= ALC299_FIXUP_PREDATOR_SPK
, .name
= "predator-spk"},
11612 {.id
= ALC298_FIXUP_HUAWEI_MBX_STEREO
, .name
= "huawei-mbx-stereo"},
11613 {.id
= ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE
, .name
= "alc256-medion-headset"},
11614 {.id
= ALC298_FIXUP_SAMSUNG_AMP
, .name
= "alc298-samsung-amp"},
11615 {.id
= ALC298_FIXUP_SAMSUNG_AMP_V2_2_AMPS
, .name
= "alc298-samsung-amp-v2-2-amps"},
11616 {.id
= ALC298_FIXUP_SAMSUNG_AMP_V2_4_AMPS
, .name
= "alc298-samsung-amp-v2-4-amps"},
11617 {.id
= ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
, .name
= "alc256-samsung-headphone"},
11618 {.id
= ALC255_FIXUP_XIAOMI_HEADSET_MIC
, .name
= "alc255-xiaomi-headset"},
11619 {.id
= ALC274_FIXUP_HP_MIC
, .name
= "alc274-hp-mic-detect"},
11620 {.id
= ALC245_FIXUP_HP_X360_AMP
, .name
= "alc245-hp-x360-amp"},
11621 {.id
= ALC295_FIXUP_HP_OMEN
, .name
= "alc295-hp-omen"},
11622 {.id
= ALC285_FIXUP_HP_SPECTRE_X360
, .name
= "alc285-hp-spectre-x360"},
11623 {.id
= ALC285_FIXUP_HP_SPECTRE_X360_EB1
, .name
= "alc285-hp-spectre-x360-eb1"},
11624 {.id
= ALC285_FIXUP_HP_SPECTRE_X360_DF1
, .name
= "alc285-hp-spectre-x360-df1"},
11625 {.id
= ALC285_FIXUP_HP_ENVY_X360
, .name
= "alc285-hp-envy-x360"},
11626 {.id
= ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP
, .name
= "alc287-ideapad-bass-spk-amp"},
11627 {.id
= ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN
, .name
= "alc287-yoga9-bass-spk-pin"},
11628 {.id
= ALC623_FIXUP_LENOVO_THINKSTATION_P340
, .name
= "alc623-lenovo-thinkstation-p340"},
11629 {.id
= ALC255_FIXUP_ACER_HEADPHONE_AND_MIC
, .name
= "alc255-acer-headphone-and-mic"},
11630 {.id
= ALC285_FIXUP_HP_GPIO_AMP_INIT
, .name
= "alc285-hp-amp-init"},
11631 {.id
= ALC236_FIXUP_LENOVO_INV_DMIC
, .name
= "alc236-fixup-lenovo-inv-mic"},
11632 {.id
= ALC2XX_FIXUP_HEADSET_MIC
, .name
= "alc2xx-fixup-headset-mic"},
11635 #define ALC225_STANDARD_PINS \
11638 #define ALC256_STANDARD_PINS \
11639 {0x12, 0x90a60140}, \
11640 {0x14, 0x90170110}, \
11643 #define ALC282_STANDARD_PINS \
11646 #define ALC290_STANDARD_PINS \
11649 #define ALC292_STANDARD_PINS \
11650 {0x14, 0x90170110}, \
11653 #define ALC295_STANDARD_PINS \
11654 {0x12, 0xb7a60130}, \
11655 {0x14, 0x90170110}, \
11658 #define ALC298_STANDARD_PINS \
11659 {0x12, 0x90a60130}, \
11662 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl
[] = {
11663 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC
,
11664 {0x14, 0x01014020},
11665 {0x17, 0x90170110},
11666 {0x18, 0x02a11030},
11667 {0x19, 0x0181303F},
11668 {0x21, 0x0221102f}),
11669 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE
,
11670 {0x12, 0x90a601c0},
11671 {0x14, 0x90171120},
11672 {0x21, 0x02211030}),
11673 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE
,
11674 {0x14, 0x90170110},
11675 {0x1b, 0x90a70130},
11676 {0x21, 0x03211020}),
11677 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE
,
11678 {0x1a, 0x90a70130},
11679 {0x1b, 0x90170110},
11680 {0x21, 0x03211020}),
11681 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
11682 ALC225_STANDARD_PINS
,
11683 {0x12, 0xb7a60130},
11684 {0x14, 0x901701a0}),
11685 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
11686 ALC225_STANDARD_PINS
,
11687 {0x12, 0xb7a60130},
11688 {0x14, 0x901701b0}),
11689 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
11690 ALC225_STANDARD_PINS
,
11691 {0x12, 0xb7a60150},
11692 {0x14, 0x901701a0}),
11693 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
11694 ALC225_STANDARD_PINS
,
11695 {0x12, 0xb7a60150},
11696 {0x14, 0x901701b0}),
11697 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
11698 ALC225_STANDARD_PINS
,
11699 {0x12, 0xb7a60130},
11700 {0x1b, 0x90170110}),
11701 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
11702 {0x1b, 0x01111010},
11703 {0x1e, 0x01451130},
11704 {0x21, 0x02211020}),
11705 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
,
11706 {0x12, 0x90a60140},
11707 {0x14, 0x90170110},
11708 {0x19, 0x02a11030},
11709 {0x21, 0x02211020}),
11710 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION
,
11711 {0x14, 0x90170110},
11712 {0x19, 0x02a11030},
11713 {0x1a, 0x02a11040},
11714 {0x1b, 0x01014020},
11715 {0x21, 0x0221101f}),
11716 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION
,
11717 {0x14, 0x90170110},
11718 {0x19, 0x02a11030},
11719 {0x1a, 0x02a11040},
11720 {0x1b, 0x01011020},
11721 {0x21, 0x0221101f}),
11722 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION
,
11723 {0x14, 0x90170110},
11724 {0x19, 0x02a11020},
11725 {0x1a, 0x02a11030},
11726 {0x21, 0x0221101f}),
11727 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC
,
11728 {0x21, 0x02211010}),
11729 SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC
,
11730 {0x14, 0x90170110},
11731 {0x19, 0x02a11020},
11732 {0x21, 0x02211030}),
11733 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
,
11734 {0x14, 0x90170110},
11735 {0x21, 0x02211020}),
11736 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11737 {0x14, 0x90170130},
11738 {0x21, 0x02211040}),
11739 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11740 {0x12, 0x90a60140},
11741 {0x14, 0x90170110},
11742 {0x21, 0x02211020}),
11743 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11744 {0x12, 0x90a60160},
11745 {0x14, 0x90170120},
11746 {0x21, 0x02211030}),
11747 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11748 {0x14, 0x90170110},
11749 {0x1b, 0x02011020},
11750 {0x21, 0x0221101f}),
11751 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11752 {0x14, 0x90170110},
11753 {0x1b, 0x01011020},
11754 {0x21, 0x0221101f}),
11755 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11756 {0x14, 0x90170130},
11757 {0x1b, 0x01014020},
11758 {0x21, 0x0221103f}),
11759 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11760 {0x14, 0x90170130},
11761 {0x1b, 0x01011020},
11762 {0x21, 0x0221103f}),
11763 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11764 {0x14, 0x90170130},
11765 {0x1b, 0x02011020},
11766 {0x21, 0x0221103f}),
11767 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11768 {0x14, 0x90170150},
11769 {0x1b, 0x02011020},
11770 {0x21, 0x0221105f}),
11771 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11772 {0x14, 0x90170110},
11773 {0x1b, 0x01014020},
11774 {0x21, 0x0221101f}),
11775 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11776 {0x12, 0x90a60160},
11777 {0x14, 0x90170120},
11778 {0x17, 0x90170140},
11779 {0x21, 0x0321102f}),
11780 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11781 {0x12, 0x90a60160},
11782 {0x14, 0x90170130},
11783 {0x21, 0x02211040}),
11784 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11785 {0x12, 0x90a60160},
11786 {0x14, 0x90170140},
11787 {0x21, 0x02211050}),
11788 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11789 {0x12, 0x90a60170},
11790 {0x14, 0x90170120},
11791 {0x21, 0x02211030}),
11792 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11793 {0x12, 0x90a60170},
11794 {0x14, 0x90170130},
11795 {0x21, 0x02211040}),
11796 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11797 {0x12, 0x90a60170},
11798 {0x14, 0x90171130},
11799 {0x21, 0x02211040}),
11800 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11801 {0x12, 0x90a60170},
11802 {0x14, 0x90170140},
11803 {0x21, 0x02211050}),
11804 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11805 {0x12, 0x90a60180},
11806 {0x14, 0x90170130},
11807 {0x21, 0x02211040}),
11808 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11809 {0x12, 0x90a60180},
11810 {0x14, 0x90170120},
11811 {0x21, 0x02211030}),
11812 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
11813 {0x1b, 0x01011020},
11814 {0x21, 0x02211010}),
11815 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC
,
11816 {0x14, 0x90170110},
11817 {0x1b, 0x90a70130},
11818 {0x21, 0x04211020}),
11819 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC
,
11820 {0x14, 0x90170110},
11821 {0x1b, 0x90a70130},
11822 {0x21, 0x03211020}),
11823 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
,
11824 {0x12, 0x90a60130},
11825 {0x14, 0x90170110},
11826 {0x21, 0x03211020}),
11827 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
,
11828 {0x12, 0x90a60130},
11829 {0x14, 0x90170110},
11830 {0x21, 0x04211020}),
11831 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE
,
11832 {0x1a, 0x90a70130},
11833 {0x1b, 0x90170110},
11834 {0x21, 0x03211020}),
11835 SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC
,
11836 {0x14, 0x90170110},
11837 {0x19, 0x02a11020},
11838 {0x21, 0x0221101f}),
11839 SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC
,
11840 {0x17, 0x90170110},
11841 {0x19, 0x03a11030},
11842 {0x21, 0x03211020}),
11843 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4
,
11844 {0x12, 0x90a60130},
11845 {0x14, 0x90170110},
11846 {0x15, 0x0421101f},
11847 {0x1a, 0x04a11020}),
11848 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
,
11849 {0x12, 0x90a60140},
11850 {0x14, 0x90170110},
11851 {0x15, 0x0421101f},
11852 {0x18, 0x02811030},
11853 {0x1a, 0x04a1103f},
11854 {0x1b, 0x02011020}),
11855 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11856 ALC282_STANDARD_PINS
,
11857 {0x12, 0x99a30130},
11858 {0x19, 0x03a11020},
11859 {0x21, 0x0321101f}),
11860 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11861 ALC282_STANDARD_PINS
,
11862 {0x12, 0x99a30130},
11863 {0x19, 0x03a11020},
11864 {0x21, 0x03211040}),
11865 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11866 ALC282_STANDARD_PINS
,
11867 {0x12, 0x99a30130},
11868 {0x19, 0x03a11030},
11869 {0x21, 0x03211020}),
11870 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11871 ALC282_STANDARD_PINS
,
11872 {0x12, 0x99a30130},
11873 {0x19, 0x04a11020},
11874 {0x21, 0x0421101f}),
11875 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
,
11876 ALC282_STANDARD_PINS
,
11877 {0x12, 0x90a60140},
11878 {0x19, 0x04a11030},
11879 {0x21, 0x04211020}),
11880 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT
,
11881 ALC282_STANDARD_PINS
,
11882 {0x12, 0x90a609c0},
11883 {0x18, 0x03a11830},
11884 {0x19, 0x04a19831},
11885 {0x1a, 0x0481303f},
11886 {0x1b, 0x04211020},
11887 {0x21, 0x0321101f}),
11888 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT
,
11889 ALC282_STANDARD_PINS
,
11890 {0x12, 0x90a60940},
11891 {0x18, 0x03a11830},
11892 {0x19, 0x04a19831},
11893 {0x1a, 0x0481303f},
11894 {0x1b, 0x04211020},
11895 {0x21, 0x0321101f}),
11896 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
11897 ALC282_STANDARD_PINS
,
11898 {0x12, 0x90a60130},
11899 {0x21, 0x0321101f}),
11900 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
11901 {0x12, 0x90a60160},
11902 {0x14, 0x90170120},
11903 {0x21, 0x02211030}),
11904 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
11905 ALC282_STANDARD_PINS
,
11906 {0x12, 0x90a60130},
11907 {0x19, 0x03a11020},
11908 {0x21, 0x0321101f}),
11909 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE
,
11910 {0x12, 0x90a60130},
11911 {0x14, 0x90170110},
11912 {0x19, 0x04a11040},
11913 {0x21, 0x04211020}),
11914 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE
,
11915 {0x14, 0x90170110},
11916 {0x19, 0x04a11040},
11917 {0x1d, 0x40600001},
11918 {0x21, 0x04211020}),
11919 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK
,
11920 {0x14, 0x90170110},
11921 {0x19, 0x04a11040},
11922 {0x21, 0x04211020}),
11923 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK
,
11924 {0x14, 0x90170110},
11925 {0x17, 0x90170111},
11926 {0x19, 0x03a11030},
11927 {0x21, 0x03211020}),
11928 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK
,
11929 {0x17, 0x90170110},
11930 {0x19, 0x03a11030},
11931 {0x21, 0x03211020}),
11932 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK
,
11933 {0x17, 0x90170110}, /* 0x231f with RTK I2S AMP */
11934 {0x19, 0x04a11040},
11935 {0x21, 0x04211020}),
11936 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
,
11937 {0x12, 0x90a60130},
11938 {0x17, 0x90170110},
11939 {0x21, 0x02211020}),
11940 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
,
11941 {0x12, 0x90a60120},
11942 {0x14, 0x90170110},
11943 {0x21, 0x0321101f}),
11944 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11945 ALC290_STANDARD_PINS
,
11946 {0x15, 0x04211040},
11947 {0x18, 0x90170112},
11948 {0x1a, 0x04a11020}),
11949 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11950 ALC290_STANDARD_PINS
,
11951 {0x15, 0x04211040},
11952 {0x18, 0x90170110},
11953 {0x1a, 0x04a11020}),
11954 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11955 ALC290_STANDARD_PINS
,
11956 {0x15, 0x0421101f},
11957 {0x1a, 0x04a11020}),
11958 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11959 ALC290_STANDARD_PINS
,
11960 {0x15, 0x04211020},
11961 {0x1a, 0x04a11040}),
11962 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11963 ALC290_STANDARD_PINS
,
11964 {0x14, 0x90170110},
11965 {0x15, 0x04211020},
11966 {0x1a, 0x04a11040}),
11967 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11968 ALC290_STANDARD_PINS
,
11969 {0x14, 0x90170110},
11970 {0x15, 0x04211020},
11971 {0x1a, 0x04a11020}),
11972 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
11973 ALC290_STANDARD_PINS
,
11974 {0x14, 0x90170110},
11975 {0x15, 0x0421101f},
11976 {0x1a, 0x04a11020}),
11977 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
,
11978 ALC292_STANDARD_PINS
,
11979 {0x12, 0x90a60140},
11980 {0x16, 0x01014020},
11981 {0x19, 0x01a19030}),
11982 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
,
11983 ALC292_STANDARD_PINS
,
11984 {0x12, 0x90a60140},
11985 {0x16, 0x01014020},
11986 {0x18, 0x02a19031},
11987 {0x19, 0x01a1903e}),
11988 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
11989 ALC292_STANDARD_PINS
,
11990 {0x12, 0x90a60140}),
11991 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
,
11992 ALC292_STANDARD_PINS
,
11993 {0x13, 0x90a60140},
11994 {0x16, 0x21014020},
11995 {0x19, 0x21a19030}),
11996 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
,
11997 ALC292_STANDARD_PINS
,
11998 {0x13, 0x90a60140}),
11999 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE
,
12000 {0x17, 0x90170110},
12001 {0x21, 0x04211020}),
12002 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC
,
12003 {0x14, 0x90170110},
12004 {0x1b, 0x90a70130},
12005 {0x21, 0x04211020}),
12006 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK
,
12007 {0x12, 0x90a60130},
12008 {0x17, 0x90170110},
12009 {0x21, 0x03211020}),
12010 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK
,
12011 {0x12, 0x90a60130},
12012 {0x17, 0x90170110},
12013 {0x21, 0x04211020}),
12014 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK
,
12015 {0x12, 0x90a60130},
12016 {0x17, 0x90170110},
12017 {0x21, 0x03211020}),
12018 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE
,
12019 {0x12, 0x90a60120},
12020 {0x17, 0x90170110},
12021 {0x21, 0x04211030}),
12022 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE
,
12023 {0x12, 0x90a60130},
12024 {0x17, 0x90170110},
12025 {0x21, 0x03211020}),
12026 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE
,
12027 {0x12, 0x90a60130},
12028 {0x17, 0x90170110},
12029 {0x21, 0x03211020}),
12030 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
12031 ALC298_STANDARD_PINS
,
12032 {0x17, 0x90170110}),
12033 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
12034 ALC298_STANDARD_PINS
,
12035 {0x17, 0x90170140}),
12036 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
12037 ALC298_STANDARD_PINS
,
12038 {0x17, 0x90170150}),
12039 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME
,
12040 {0x12, 0xb7a60140},
12041 {0x13, 0xb7a60150},
12042 {0x17, 0x90170110},
12043 {0x1a, 0x03011020},
12044 {0x21, 0x03211030}),
12045 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE
,
12046 {0x12, 0xb7a60140},
12047 {0x17, 0x90170110},
12048 {0x1a, 0x03a11030},
12049 {0x21, 0x03211020}),
12050 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
,
12051 ALC225_STANDARD_PINS
,
12052 {0x12, 0xb7a60130},
12053 {0x17, 0x90170110}),
12054 SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC
,
12055 {0x14, 0x01014010},
12056 {0x17, 0x90170120},
12057 {0x18, 0x02a11030},
12058 {0x19, 0x02a1103f},
12059 {0x21, 0x0221101f}),
12063 /* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
12064 * more machines, don't need to match all valid pins, just need to match
12065 * all the pins defined in the tbl. Just because of this reason, it is possible
12066 * that a single machine matches multiple tbls, so there is one limitation:
12067 * at most one tbl is allowed to define for the same vendor and same codec
12069 static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl
[] = {
12070 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1025, "Acer", ALC2XX_FIXUP_HEADSET_MIC
,
12071 {0x19, 0x40000000}),
12072 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
,
12073 {0x19, 0x40000000},
12074 {0x1b, 0x40000000}),
12075 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET
,
12076 {0x19, 0x40000000},
12077 {0x1b, 0x40000000}),
12078 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
12079 {0x19, 0x40000000},
12080 {0x1a, 0x40000000}),
12081 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_LIMIT_INT_MIC_BOOST
,
12082 {0x19, 0x40000000},
12083 {0x1a, 0x40000000}),
12084 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC269_FIXUP_DELL1_LIMIT_INT_MIC_BOOST
,
12085 {0x19, 0x40000000},
12086 {0x1a, 0x40000000}),
12087 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC2XX_FIXUP_HEADSET_MIC
,
12088 {0x19, 0x40000000}),
12089 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1558, "Clevo", ALC2XX_FIXUP_HEADSET_MIC
,
12090 {0x19, 0x40000000}),
12094 static void alc269_fill_coef(struct hda_codec
*codec
)
12096 struct alc_spec
*spec
= codec
->spec
;
12099 if (spec
->codec_variant
!= ALC269_TYPE_ALC269VB
)
12102 if ((alc_get_coef0(codec
) & 0x00ff) < 0x015) {
12103 alc_write_coef_idx(codec
, 0xf, 0x960b);
12104 alc_write_coef_idx(codec
, 0xe, 0x8817);
12107 if ((alc_get_coef0(codec
) & 0x00ff) == 0x016) {
12108 alc_write_coef_idx(codec
, 0xf, 0x960b);
12109 alc_write_coef_idx(codec
, 0xe, 0x8814);
12112 if ((alc_get_coef0(codec
) & 0x00ff) == 0x017) {
12113 /* Power up output pin */
12114 alc_update_coef_idx(codec
, 0x04, 0, 1<<11);
12117 if ((alc_get_coef0(codec
) & 0x00ff) == 0x018) {
12118 val
= alc_read_coef_idx(codec
, 0xd);
12119 if (val
!= -1 && (val
& 0x0c00) >> 10 != 0x1) {
12120 /* Capless ramp up clock control */
12121 alc_write_coef_idx(codec
, 0xd, val
| (1<<10));
12123 val
= alc_read_coef_idx(codec
, 0x17);
12124 if (val
!= -1 && (val
& 0x01c0) >> 6 != 0x4) {
12125 /* Class D power on reset */
12126 alc_write_coef_idx(codec
, 0x17, val
| (1<<7));
12131 alc_update_coef_idx(codec
, 0x4, 0, 1<<11);
12136 static int patch_alc269(struct hda_codec
*codec
)
12138 struct alc_spec
*spec
;
12141 err
= alc_alloc_spec(codec
, 0x0b);
12145 spec
= codec
->spec
;
12146 spec
->gen
.shared_mic_vref_pin
= 0x18;
12147 codec
->power_save_node
= 0;
12148 spec
->en_3kpull_low
= true;
12150 codec
->patch_ops
.suspend
= alc269_suspend
;
12151 codec
->patch_ops
.resume
= alc269_resume
;
12152 spec
->shutup
= alc_default_shutup
;
12153 spec
->init_hook
= alc_default_init
;
12155 switch (codec
->core
.vendor_id
) {
12157 spec
->codec_variant
= ALC269_TYPE_ALC269VA
;
12158 switch (alc_get_coef0(codec
) & 0x00f0) {
12160 if (codec
->bus
->pci
&&
12161 codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
12162 spec
->cdefine
.platform_type
== 1)
12163 err
= alc_codec_rename(codec
, "ALC271X");
12164 spec
->codec_variant
= ALC269_TYPE_ALC269VB
;
12167 if (codec
->bus
->pci
&&
12168 codec
->bus
->pci
->subsystem_vendor
== 0x17aa &&
12169 codec
->bus
->pci
->subsystem_device
== 0x21f3)
12170 err
= alc_codec_rename(codec
, "ALC3202");
12171 spec
->codec_variant
= ALC269_TYPE_ALC269VC
;
12174 spec
->codec_variant
= ALC269_TYPE_ALC269VD
;
12177 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
12181 spec
->shutup
= alc269_shutup
;
12182 spec
->init_hook
= alc269_fill_coef
;
12183 alc269_fill_coef(codec
);
12188 spec
->codec_variant
= ALC269_TYPE_ALC280
;
12191 spec
->codec_variant
= ALC269_TYPE_ALC282
;
12192 spec
->shutup
= alc282_shutup
;
12193 spec
->init_hook
= alc282_init
;
12197 spec
->codec_variant
= ALC269_TYPE_ALC283
;
12198 spec
->shutup
= alc283_shutup
;
12199 spec
->init_hook
= alc283_init
;
12203 spec
->codec_variant
= ALC269_TYPE_ALC284
;
12206 spec
->codec_variant
= ALC269_TYPE_ALC293
;
12210 spec
->codec_variant
= ALC269_TYPE_ALC286
;
12213 spec
->codec_variant
= ALC269_TYPE_ALC298
;
12217 spec
->codec_variant
= ALC269_TYPE_ALC255
;
12218 spec
->shutup
= alc256_shutup
;
12219 spec
->init_hook
= alc256_init
;
12225 spec
->codec_variant
= ALC269_TYPE_ALC256
;
12226 spec
->shutup
= alc256_shutup
;
12227 spec
->init_hook
= alc256_init
;
12228 spec
->gen
.mixer_nid
= 0; /* ALC256 does not have any loopback mixer path */
12229 if (codec
->core
.vendor_id
== 0x10ec0236 &&
12230 codec
->bus
->pci
->vendor
!= PCI_VENDOR_ID_AMD
)
12231 spec
->en_3kpull_low
= false;
12234 spec
->codec_variant
= ALC269_TYPE_ALC257
;
12235 spec
->shutup
= alc256_shutup
;
12236 spec
->init_hook
= alc256_init
;
12237 spec
->gen
.mixer_nid
= 0;
12238 spec
->en_3kpull_low
= false;
12244 if (alc_get_coef0(codec
) & 0x0010)
12245 spec
->codec_variant
= ALC269_TYPE_ALC245
;
12247 spec
->codec_variant
= ALC269_TYPE_ALC215
;
12248 spec
->shutup
= alc225_shutup
;
12249 spec
->init_hook
= alc225_init
;
12250 spec
->gen
.mixer_nid
= 0;
12255 spec
->codec_variant
= ALC269_TYPE_ALC225
;
12256 spec
->shutup
= alc225_shutup
;
12257 spec
->init_hook
= alc225_init
;
12258 spec
->gen
.mixer_nid
= 0; /* no loopback on ALC225, ALC295 and ALC299 */
12261 spec
->codec_variant
= ALC269_TYPE_ALC287
;
12262 spec
->shutup
= alc225_shutup
;
12263 spec
->init_hook
= alc225_init
;
12264 spec
->gen
.mixer_nid
= 0; /* no loopback on ALC287 */
12269 spec
->codec_variant
= ALC269_TYPE_ALC294
;
12270 spec
->gen
.mixer_nid
= 0; /* ALC2x4 does not have any loopback mixer path */
12271 alc_update_coef_idx(codec
, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
12272 spec
->init_hook
= alc294_init
;
12275 spec
->codec_variant
= ALC269_TYPE_ALC300
;
12276 spec
->gen
.mixer_nid
= 0; /* no loopback on ALC300 */
12280 spec
->codec_variant
= ALC269_TYPE_ALC623
;
12281 spec
->shutup
= alc222_shutup
;
12282 spec
->init_hook
= alc222_init
;
12288 spec
->codec_variant
= ALC269_TYPE_ALC700
;
12289 spec
->gen
.mixer_nid
= 0; /* ALC700 does not have any loopback mixer path */
12290 alc_update_coef_idx(codec
, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
12291 spec
->init_hook
= alc294_init
;
12296 if (snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_PARAMETERS
, 0) == 0x10ec5505) {
12297 spec
->has_alc5505_dsp
= 1;
12298 spec
->init_hook
= alc5505_dsp_init
;
12301 alc_pre_init(codec
);
12303 snd_hda_pick_fixup(codec
, alc269_fixup_models
,
12304 alc269_fixup_tbl
, alc269_fixups
);
12305 /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and
12306 * the quirk breaks the latter (bko#214101).
12307 * Clear the wrong entry.
12309 if (codec
->fixup_id
== ALC282_FIXUP_ASUS_TX300
&&
12310 codec
->core
.vendor_id
== 0x10ec0294) {
12311 codec_dbg(codec
, "Clear wrong fixup for ASUS ROG Strix G17\n");
12312 codec
->fixup_id
= HDA_FIXUP_ID_NOT_SET
;
12315 snd_hda_pick_pin_fixup(codec
, alc269_pin_fixup_tbl
, alc269_fixups
, true);
12316 snd_hda_pick_pin_fixup(codec
, alc269_fallback_pin_fixup_tbl
, alc269_fixups
, false);
12317 snd_hda_pick_fixup(codec
, NULL
, alc269_fixup_vendor_tbl
,
12321 * Check whether ACPI describes companion amplifiers that require
12322 * component binding
12324 find_cirrus_companion_amps(codec
);
12326 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
12328 alc_auto_parse_customize_define(codec
);
12330 if (has_cdefine_beep(codec
))
12331 spec
->gen
.beep_nid
= 0x01;
12333 /* automatic parse from the BIOS config */
12334 err
= alc269_parse_auto_config(codec
);
12338 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
&& spec
->gen
.mixer_nid
) {
12339 err
= set_beep_amp(spec
, spec
->gen
.mixer_nid
, 0x04, HDA_INPUT
);
12344 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
12357 static int alc861_parse_auto_config(struct hda_codec
*codec
)
12359 static const hda_nid_t alc861_ignore
[] = { 0x1d, 0 };
12360 static const hda_nid_t alc861_ssids
[] = { 0x0e, 0x0f, 0x0b, 0 };
12361 return alc_parse_auto_config(codec
, alc861_ignore
, alc861_ssids
);
12364 /* Pin config fixes */
12366 ALC861_FIXUP_FSC_AMILO_PI1505
,
12367 ALC861_FIXUP_AMP_VREF_0F
,
12368 ALC861_FIXUP_NO_JACK_DETECT
,
12369 ALC861_FIXUP_ASUS_A6RP
,
12370 ALC660_FIXUP_ASUS_W7J
,
12373 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
12374 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec
*codec
,
12375 const struct hda_fixup
*fix
, int action
)
12377 struct alc_spec
*spec
= codec
->spec
;
12380 if (action
!= HDA_FIXUP_ACT_INIT
)
12382 val
= snd_hda_codec_get_pin_target(codec
, 0x0f);
12383 if (!(val
& (AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
)))
12384 val
|= AC_PINCTL_IN_EN
;
12385 val
|= AC_PINCTL_VREF_50
;
12386 snd_hda_set_pin_ctl(codec
, 0x0f, val
);
12387 spec
->gen
.keep_vref_in_automute
= 1;
12390 /* suppress the jack-detection */
12391 static void alc_fixup_no_jack_detect(struct hda_codec
*codec
,
12392 const struct hda_fixup
*fix
, int action
)
12394 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
12395 codec
->no_jack_detect
= 1;
12398 static const struct hda_fixup alc861_fixups
[] = {
12399 [ALC861_FIXUP_FSC_AMILO_PI1505
] = {
12400 .type
= HDA_FIXUP_PINS
,
12401 .v
.pins
= (const struct hda_pintbl
[]) {
12402 { 0x0b, 0x0221101f }, /* HP */
12403 { 0x0f, 0x90170310 }, /* speaker */
12407 [ALC861_FIXUP_AMP_VREF_0F
] = {
12408 .type
= HDA_FIXUP_FUNC
,
12409 .v
.func
= alc861_fixup_asus_amp_vref_0f
,
12411 [ALC861_FIXUP_NO_JACK_DETECT
] = {
12412 .type
= HDA_FIXUP_FUNC
,
12413 .v
.func
= alc_fixup_no_jack_detect
,
12415 [ALC861_FIXUP_ASUS_A6RP
] = {
12416 .type
= HDA_FIXUP_FUNC
,
12417 .v
.func
= alc861_fixup_asus_amp_vref_0f
,
12419 .chain_id
= ALC861_FIXUP_NO_JACK_DETECT
,
12421 [ALC660_FIXUP_ASUS_W7J
] = {
12422 .type
= HDA_FIXUP_VERBS
,
12423 .v
.verbs
= (const struct hda_verb
[]) {
12424 /* ASUS W7J needs a magic pin setup on unused NID 0x10
12425 * for enabling outputs
12427 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12433 static const struct hda_quirk alc861_fixup_tbl
[] = {
12434 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J
),
12435 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J
),
12436 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP
),
12437 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F
),
12438 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT
),
12439 SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F
),
12440 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505
),
12446 static int patch_alc861(struct hda_codec
*codec
)
12448 struct alc_spec
*spec
;
12451 err
= alc_alloc_spec(codec
, 0x15);
12455 spec
= codec
->spec
;
12456 if (has_cdefine_beep(codec
))
12457 spec
->gen
.beep_nid
= 0x23;
12459 spec
->power_hook
= alc_power_eapd
;
12461 alc_pre_init(codec
);
12463 snd_hda_pick_fixup(codec
, NULL
, alc861_fixup_tbl
, alc861_fixups
);
12464 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
12466 /* automatic parse from the BIOS config */
12467 err
= alc861_parse_auto_config(codec
);
12471 if (!spec
->gen
.no_analog
) {
12472 err
= set_beep_amp(spec
, 0x23, 0, HDA_OUTPUT
);
12477 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
12487 * ALC861-VD support
12491 * In addition, an independent DAC
12493 static int alc861vd_parse_auto_config(struct hda_codec
*codec
)
12495 static const hda_nid_t alc861vd_ignore
[] = { 0x1d, 0 };
12496 static const hda_nid_t alc861vd_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
12497 return alc_parse_auto_config(codec
, alc861vd_ignore
, alc861vd_ssids
);
12501 ALC660VD_FIX_ASUS_GPIO1
,
12502 ALC861VD_FIX_DALLAS
,
12505 /* exclude VREF80 */
12506 static void alc861vd_fixup_dallas(struct hda_codec
*codec
,
12507 const struct hda_fixup
*fix
, int action
)
12509 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
12510 snd_hda_override_pin_caps(codec
, 0x18, 0x00000734);
12511 snd_hda_override_pin_caps(codec
, 0x19, 0x0000073c);
12516 static void alc660vd_fixup_asus_gpio1(struct hda_codec
*codec
,
12517 const struct hda_fixup
*fix
, int action
)
12519 struct alc_spec
*spec
= codec
->spec
;
12521 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
12522 spec
->gpio_mask
|= 0x02;
12523 alc_fixup_gpio(codec
, action
, 0x01);
12526 static const struct hda_fixup alc861vd_fixups
[] = {
12527 [ALC660VD_FIX_ASUS_GPIO1
] = {
12528 .type
= HDA_FIXUP_FUNC
,
12529 .v
.func
= alc660vd_fixup_asus_gpio1
,
12531 [ALC861VD_FIX_DALLAS
] = {
12532 .type
= HDA_FIXUP_FUNC
,
12533 .v
.func
= alc861vd_fixup_dallas
,
12537 static const struct hda_quirk alc861vd_fixup_tbl
[] = {
12538 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS
),
12539 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1
),
12540 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS
),
12546 static int patch_alc861vd(struct hda_codec
*codec
)
12548 struct alc_spec
*spec
;
12551 err
= alc_alloc_spec(codec
, 0x0b);
12555 spec
= codec
->spec
;
12556 if (has_cdefine_beep(codec
))
12557 spec
->gen
.beep_nid
= 0x23;
12559 spec
->shutup
= alc_eapd_shutup
;
12561 alc_pre_init(codec
);
12563 snd_hda_pick_fixup(codec
, NULL
, alc861vd_fixup_tbl
, alc861vd_fixups
);
12564 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
12566 /* automatic parse from the BIOS config */
12567 err
= alc861vd_parse_auto_config(codec
);
12571 if (!spec
->gen
.no_analog
) {
12572 err
= set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
12577 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
12589 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
12590 * configuration. Each pin widget can choose any input DACs and a mixer.
12591 * Each ADC is connected from a mixer of all inputs. This makes possible
12592 * 6-channel independent captures.
12594 * In addition, an independent DAC for the multi-playback (not used in this
12599 * BIOS auto configuration
12602 static int alc662_parse_auto_config(struct hda_codec
*codec
)
12604 static const hda_nid_t alc662_ignore
[] = { 0x1d, 0 };
12605 static const hda_nid_t alc663_ssids
[] = { 0x15, 0x1b, 0x14, 0x21 };
12606 static const hda_nid_t alc662_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
12607 const hda_nid_t
*ssids
;
12609 if (codec
->core
.vendor_id
== 0x10ec0272 || codec
->core
.vendor_id
== 0x10ec0663 ||
12610 codec
->core
.vendor_id
== 0x10ec0665 || codec
->core
.vendor_id
== 0x10ec0670 ||
12611 codec
->core
.vendor_id
== 0x10ec0671)
12612 ssids
= alc663_ssids
;
12614 ssids
= alc662_ssids
;
12615 return alc_parse_auto_config(codec
, alc662_ignore
, ssids
);
12618 static void alc272_fixup_mario(struct hda_codec
*codec
,
12619 const struct hda_fixup
*fix
, int action
)
12621 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
12623 if (snd_hda_override_amp_caps(codec
, 0x2, HDA_OUTPUT
,
12624 (0x3b << AC_AMPCAP_OFFSET_SHIFT
) |
12625 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT
) |
12626 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
12627 (0 << AC_AMPCAP_MUTE_SHIFT
)))
12628 codec_warn(codec
, "failed to override amp caps for NID 0x2\n");
12631 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps
[] = {
12633 .map
= { SNDRV_CHMAP_FL
, SNDRV_CHMAP_FR
} },
12635 .map
= { SNDRV_CHMAP_FL
, SNDRV_CHMAP_FR
,
12636 SNDRV_CHMAP_NA
, SNDRV_CHMAP_LFE
} }, /* LFE only on right */
12640 /* override the 2.1 chmap */
12641 static void alc_fixup_bass_chmap(struct hda_codec
*codec
,
12642 const struct hda_fixup
*fix
, int action
)
12644 if (action
== HDA_FIXUP_ACT_BUILD
) {
12645 struct alc_spec
*spec
= codec
->spec
;
12646 spec
->gen
.pcm_rec
[0]->stream
[0].chmap
= asus_pcm_2_1_chmaps
;
12650 /* avoid D3 for keeping GPIO up */
12651 static unsigned int gpio_led_power_filter(struct hda_codec
*codec
,
12653 unsigned int power_state
)
12655 struct alc_spec
*spec
= codec
->spec
;
12656 if (nid
== codec
->core
.afg
&& power_state
== AC_PWRST_D3
&& spec
->gpio_data
)
12657 return AC_PWRST_D0
;
12658 return power_state
;
12661 static void alc662_fixup_led_gpio1(struct hda_codec
*codec
,
12662 const struct hda_fixup
*fix
, int action
)
12664 struct alc_spec
*spec
= codec
->spec
;
12666 alc_fixup_hp_gpio_led(codec
, action
, 0x01, 0);
12667 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
12668 spec
->mute_led_polarity
= 1;
12669 codec
->power_filter
= gpio_led_power_filter
;
12673 static void alc662_usi_automute_hook(struct hda_codec
*codec
,
12674 struct hda_jack_callback
*jack
)
12676 struct alc_spec
*spec
= codec
->spec
;
12679 snd_hda_gen_hp_automute(codec
, jack
);
12681 vref
= spec
->gen
.hp_jack_present
? PIN_VREF80
: 0;
12683 snd_hda_codec_write(codec
, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
12687 static void alc662_fixup_usi_headset_mic(struct hda_codec
*codec
,
12688 const struct hda_fixup
*fix
, int action
)
12690 struct alc_spec
*spec
= codec
->spec
;
12691 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
12692 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
12693 spec
->gen
.hp_automute_hook
= alc662_usi_automute_hook
;
12697 static void alc662_aspire_ethos_mute_speakers(struct hda_codec
*codec
,
12698 struct hda_jack_callback
*cb
)
12700 /* surround speakers at 0x1b already get muted automatically when
12701 * headphones are plugged in, but we have to mute/unmute the remaining
12702 * channels manually:
12703 * 0x15 - front left/front right
12704 * 0x18 - front center/ LFE
12706 if (snd_hda_jack_detect_state(codec
, 0x1b) == HDA_JACK_PRESENT
) {
12707 snd_hda_set_pin_ctl_cache(codec
, 0x15, 0);
12708 snd_hda_set_pin_ctl_cache(codec
, 0x18, 0);
12710 snd_hda_set_pin_ctl_cache(codec
, 0x15, PIN_OUT
);
12711 snd_hda_set_pin_ctl_cache(codec
, 0x18, PIN_OUT
);
12715 static void alc662_fixup_aspire_ethos_hp(struct hda_codec
*codec
,
12716 const struct hda_fixup
*fix
, int action
)
12718 /* Pin 0x1b: shared headphones jack and surround speakers */
12719 if (!is_jack_detectable(codec
, 0x1b))
12723 case HDA_FIXUP_ACT_PRE_PROBE
:
12724 snd_hda_jack_detect_enable_callback(codec
, 0x1b,
12725 alc662_aspire_ethos_mute_speakers
);
12726 /* subwoofer needs an extra GPIO setting to become audible */
12727 alc_setup_gpio(codec
, 0x02);
12729 case HDA_FIXUP_ACT_INIT
:
12730 /* Make sure to start in a correct state, i.e. if
12731 * headphones have been plugged in before powering up the system
12733 alc662_aspire_ethos_mute_speakers(codec
, NULL
);
12738 static void alc671_fixup_hp_headset_mic2(struct hda_codec
*codec
,
12739 const struct hda_fixup
*fix
, int action
)
12741 struct alc_spec
*spec
= codec
->spec
;
12743 static const struct hda_pintbl pincfgs
[] = {
12744 { 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */
12745 { 0x1b, 0x0181304f },
12750 case HDA_FIXUP_ACT_PRE_PROBE
:
12751 spec
->gen
.mixer_nid
= 0;
12752 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
12753 snd_hda_apply_pincfgs(codec
, pincfgs
);
12755 case HDA_FIXUP_ACT_INIT
:
12756 alc_write_coef_idx(codec
, 0x19, 0xa054);
12761 static void alc897_hp_automute_hook(struct hda_codec
*codec
,
12762 struct hda_jack_callback
*jack
)
12764 struct alc_spec
*spec
= codec
->spec
;
12767 snd_hda_gen_hp_automute(codec
, jack
);
12768 vref
= spec
->gen
.hp_jack_present
? (PIN_HP
| AC_PINCTL_VREF_100
) : PIN_HP
;
12769 snd_hda_set_pin_ctl(codec
, 0x1b, vref
);
12772 static void alc897_fixup_lenovo_headset_mic(struct hda_codec
*codec
,
12773 const struct hda_fixup
*fix
, int action
)
12775 struct alc_spec
*spec
= codec
->spec
;
12776 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
12777 spec
->gen
.hp_automute_hook
= alc897_hp_automute_hook
;
12778 spec
->no_shutup_pins
= 1;
12780 if (action
== HDA_FIXUP_ACT_PROBE
) {
12781 snd_hda_set_pin_ctl_cache(codec
, 0x1a, PIN_IN
| AC_PINCTL_VREF_100
);
12785 static void alc897_fixup_lenovo_headset_mode(struct hda_codec
*codec
,
12786 const struct hda_fixup
*fix
, int action
)
12788 struct alc_spec
*spec
= codec
->spec
;
12790 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
12791 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
12792 spec
->gen
.hp_automute_hook
= alc897_hp_automute_hook
;
12796 static const struct coef_fw alc668_coefs
[] = {
12797 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
12798 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
12799 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
12800 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
12801 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
12802 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
12803 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
12804 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
12805 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
12806 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
12807 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
12808 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
12809 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
12810 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
12811 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
12812 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
12813 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
12814 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
12815 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
12816 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
12820 static void alc668_restore_default_value(struct hda_codec
*codec
)
12822 alc_process_coef_fw(codec
, alc668_coefs
);
12826 ALC662_FIXUP_ASPIRE
,
12827 ALC662_FIXUP_LED_GPIO1
,
12828 ALC662_FIXUP_IDEAPAD
,
12829 ALC272_FIXUP_MARIO
,
12830 ALC662_FIXUP_CZC_ET26
,
12831 ALC662_FIXUP_CZC_P10T
,
12832 ALC662_FIXUP_SKU_IGNORE
,
12833 ALC662_FIXUP_HP_RP5800
,
12834 ALC662_FIXUP_ASUS_MODE1
,
12835 ALC662_FIXUP_ASUS_MODE2
,
12836 ALC662_FIXUP_ASUS_MODE3
,
12837 ALC662_FIXUP_ASUS_MODE4
,
12838 ALC662_FIXUP_ASUS_MODE5
,
12839 ALC662_FIXUP_ASUS_MODE6
,
12840 ALC662_FIXUP_ASUS_MODE7
,
12841 ALC662_FIXUP_ASUS_MODE8
,
12842 ALC662_FIXUP_NO_JACK_DETECT
,
12843 ALC662_FIXUP_ZOTAC_Z68
,
12844 ALC662_FIXUP_INV_DMIC
,
12845 ALC662_FIXUP_DELL_MIC_NO_PRESENCE
,
12846 ALC668_FIXUP_DELL_MIC_NO_PRESENCE
,
12847 ALC662_FIXUP_HEADSET_MODE
,
12848 ALC668_FIXUP_HEADSET_MODE
,
12849 ALC662_FIXUP_BASS_MODE4_CHMAP
,
12850 ALC662_FIXUP_BASS_16
,
12851 ALC662_FIXUP_BASS_1A
,
12852 ALC662_FIXUP_BASS_CHMAP
,
12853 ALC668_FIXUP_AUTO_MUTE
,
12854 ALC668_FIXUP_DELL_DISABLE_AAMIX
,
12855 ALC668_FIXUP_DELL_XPS13
,
12856 ALC662_FIXUP_ASUS_Nx50
,
12857 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE
,
12858 ALC668_FIXUP_ASUS_Nx51
,
12859 ALC668_FIXUP_MIC_COEF
,
12860 ALC668_FIXUP_ASUS_G751
,
12861 ALC891_FIXUP_HEADSET_MODE
,
12862 ALC891_FIXUP_DELL_MIC_NO_PRESENCE
,
12863 ALC662_FIXUP_ACER_VERITON
,
12864 ALC892_FIXUP_ASROCK_MOBO
,
12865 ALC662_FIXUP_USI_FUNC
,
12866 ALC662_FIXUP_USI_HEADSET_MODE
,
12867 ALC662_FIXUP_LENOVO_MULTI_CODECS
,
12868 ALC669_FIXUP_ACER_ASPIRE_ETHOS
,
12869 ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
,
12870 ALC671_FIXUP_HP_HEADSET_MIC2
,
12871 ALC662_FIXUP_ACER_X2660G_HEADSET_MODE
,
12872 ALC662_FIXUP_ACER_NITRO_HEADSET_MODE
,
12873 ALC668_FIXUP_ASUS_NO_HEADSET_MIC
,
12874 ALC668_FIXUP_HEADSET_MIC
,
12875 ALC668_FIXUP_MIC_DET_COEF
,
12876 ALC897_FIXUP_LENOVO_HEADSET_MIC
,
12877 ALC897_FIXUP_HEADSET_MIC_PIN
,
12878 ALC897_FIXUP_HP_HSMIC_VERB
,
12879 ALC897_FIXUP_LENOVO_HEADSET_MODE
,
12880 ALC897_FIXUP_HEADSET_MIC_PIN2
,
12881 ALC897_FIXUP_UNIS_H3C_X500S
,
12882 ALC897_FIXUP_HEADSET_MIC_PIN3
,
12885 static const struct hda_fixup alc662_fixups
[] = {
12886 [ALC662_FIXUP_ASPIRE
] = {
12887 .type
= HDA_FIXUP_PINS
,
12888 .v
.pins
= (const struct hda_pintbl
[]) {
12889 { 0x15, 0x99130112 }, /* subwoofer */
12893 [ALC662_FIXUP_LED_GPIO1
] = {
12894 .type
= HDA_FIXUP_FUNC
,
12895 .v
.func
= alc662_fixup_led_gpio1
,
12897 [ALC662_FIXUP_IDEAPAD
] = {
12898 .type
= HDA_FIXUP_PINS
,
12899 .v
.pins
= (const struct hda_pintbl
[]) {
12900 { 0x17, 0x99130112 }, /* subwoofer */
12904 .chain_id
= ALC662_FIXUP_LED_GPIO1
,
12906 [ALC272_FIXUP_MARIO
] = {
12907 .type
= HDA_FIXUP_FUNC
,
12908 .v
.func
= alc272_fixup_mario
,
12910 [ALC662_FIXUP_CZC_ET26
] = {
12911 .type
= HDA_FIXUP_PINS
,
12912 .v
.pins
= (const struct hda_pintbl
[]) {
12913 {0x12, 0x403cc000},
12914 {0x14, 0x90170110}, /* speaker */
12915 {0x15, 0x411111f0},
12916 {0x16, 0x411111f0},
12917 {0x18, 0x01a19030}, /* mic */
12918 {0x19, 0x90a7013f}, /* int-mic */
12919 {0x1a, 0x01014020},
12920 {0x1b, 0x0121401f},
12921 {0x1c, 0x411111f0},
12922 {0x1d, 0x411111f0},
12923 {0x1e, 0x40478e35},
12927 .chain_id
= ALC662_FIXUP_SKU_IGNORE
12929 [ALC662_FIXUP_CZC_P10T
] = {
12930 .type
= HDA_FIXUP_VERBS
,
12931 .v
.verbs
= (const struct hda_verb
[]) {
12932 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
12936 [ALC662_FIXUP_SKU_IGNORE
] = {
12937 .type
= HDA_FIXUP_FUNC
,
12938 .v
.func
= alc_fixup_sku_ignore
,
12940 [ALC662_FIXUP_HP_RP5800
] = {
12941 .type
= HDA_FIXUP_PINS
,
12942 .v
.pins
= (const struct hda_pintbl
[]) {
12943 { 0x14, 0x0221201f }, /* HP out */
12947 .chain_id
= ALC662_FIXUP_SKU_IGNORE
12949 [ALC662_FIXUP_ASUS_MODE1
] = {
12950 .type
= HDA_FIXUP_PINS
,
12951 .v
.pins
= (const struct hda_pintbl
[]) {
12952 { 0x14, 0x99130110 }, /* speaker */
12953 { 0x18, 0x01a19c20 }, /* mic */
12954 { 0x19, 0x99a3092f }, /* int-mic */
12955 { 0x21, 0x0121401f }, /* HP out */
12959 .chain_id
= ALC662_FIXUP_SKU_IGNORE
12961 [ALC662_FIXUP_ASUS_MODE2
] = {
12962 .type
= HDA_FIXUP_PINS
,
12963 .v
.pins
= (const struct hda_pintbl
[]) {
12964 { 0x14, 0x99130110 }, /* speaker */
12965 { 0x18, 0x01a19820 }, /* mic */
12966 { 0x19, 0x99a3092f }, /* int-mic */
12967 { 0x1b, 0x0121401f }, /* HP out */
12971 .chain_id
= ALC662_FIXUP_SKU_IGNORE
12973 [ALC662_FIXUP_ASUS_MODE3
] = {
12974 .type
= HDA_FIXUP_PINS
,
12975 .v
.pins
= (const struct hda_pintbl
[]) {
12976 { 0x14, 0x99130110 }, /* speaker */
12977 { 0x15, 0x0121441f }, /* HP */
12978 { 0x18, 0x01a19840 }, /* mic */
12979 { 0x19, 0x99a3094f }, /* int-mic */
12980 { 0x21, 0x01211420 }, /* HP2 */
12984 .chain_id
= ALC662_FIXUP_SKU_IGNORE
12986 [ALC662_FIXUP_ASUS_MODE4
] = {
12987 .type
= HDA_FIXUP_PINS
,
12988 .v
.pins
= (const struct hda_pintbl
[]) {
12989 { 0x14, 0x99130110 }, /* speaker */
12990 { 0x16, 0x99130111 }, /* speaker */
12991 { 0x18, 0x01a19840 }, /* mic */
12992 { 0x19, 0x99a3094f }, /* int-mic */
12993 { 0x21, 0x0121441f }, /* HP */
12997 .chain_id
= ALC662_FIXUP_SKU_IGNORE
12999 [ALC662_FIXUP_ASUS_MODE5
] = {
13000 .type
= HDA_FIXUP_PINS
,
13001 .v
.pins
= (const struct hda_pintbl
[]) {
13002 { 0x14, 0x99130110 }, /* speaker */
13003 { 0x15, 0x0121441f }, /* HP */
13004 { 0x16, 0x99130111 }, /* speaker */
13005 { 0x18, 0x01a19840 }, /* mic */
13006 { 0x19, 0x99a3094f }, /* int-mic */
13010 .chain_id
= ALC662_FIXUP_SKU_IGNORE
13012 [ALC662_FIXUP_ASUS_MODE6
] = {
13013 .type
= HDA_FIXUP_PINS
,
13014 .v
.pins
= (const struct hda_pintbl
[]) {
13015 { 0x14, 0x99130110 }, /* speaker */
13016 { 0x15, 0x01211420 }, /* HP2 */
13017 { 0x18, 0x01a19840 }, /* mic */
13018 { 0x19, 0x99a3094f }, /* int-mic */
13019 { 0x1b, 0x0121441f }, /* HP */
13023 .chain_id
= ALC662_FIXUP_SKU_IGNORE
13025 [ALC662_FIXUP_ASUS_MODE7
] = {
13026 .type
= HDA_FIXUP_PINS
,
13027 .v
.pins
= (const struct hda_pintbl
[]) {
13028 { 0x14, 0x99130110 }, /* speaker */
13029 { 0x17, 0x99130111 }, /* speaker */
13030 { 0x18, 0x01a19840 }, /* mic */
13031 { 0x19, 0x99a3094f }, /* int-mic */
13032 { 0x1b, 0x01214020 }, /* HP */
13033 { 0x21, 0x0121401f }, /* HP */
13037 .chain_id
= ALC662_FIXUP_SKU_IGNORE
13039 [ALC662_FIXUP_ASUS_MODE8
] = {
13040 .type
= HDA_FIXUP_PINS
,
13041 .v
.pins
= (const struct hda_pintbl
[]) {
13042 { 0x14, 0x99130110 }, /* speaker */
13043 { 0x12, 0x99a30970 }, /* int-mic */
13044 { 0x15, 0x01214020 }, /* HP */
13045 { 0x17, 0x99130111 }, /* speaker */
13046 { 0x18, 0x01a19840 }, /* mic */
13047 { 0x21, 0x0121401f }, /* HP */
13051 .chain_id
= ALC662_FIXUP_SKU_IGNORE
13053 [ALC662_FIXUP_NO_JACK_DETECT
] = {
13054 .type
= HDA_FIXUP_FUNC
,
13055 .v
.func
= alc_fixup_no_jack_detect
,
13057 [ALC662_FIXUP_ZOTAC_Z68
] = {
13058 .type
= HDA_FIXUP_PINS
,
13059 .v
.pins
= (const struct hda_pintbl
[]) {
13060 { 0x1b, 0x02214020 }, /* Front HP */
13064 [ALC662_FIXUP_INV_DMIC
] = {
13065 .type
= HDA_FIXUP_FUNC
,
13066 .v
.func
= alc_fixup_inv_dmic
,
13068 [ALC668_FIXUP_DELL_XPS13
] = {
13069 .type
= HDA_FIXUP_FUNC
,
13070 .v
.func
= alc_fixup_dell_xps13
,
13072 .chain_id
= ALC668_FIXUP_DELL_DISABLE_AAMIX
13074 [ALC668_FIXUP_DELL_DISABLE_AAMIX
] = {
13075 .type
= HDA_FIXUP_FUNC
,
13076 .v
.func
= alc_fixup_disable_aamix
,
13078 .chain_id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
13080 [ALC668_FIXUP_AUTO_MUTE
] = {
13081 .type
= HDA_FIXUP_FUNC
,
13082 .v
.func
= alc_fixup_auto_mute_via_amp
,
13084 .chain_id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
13086 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE
] = {
13087 .type
= HDA_FIXUP_PINS
,
13088 .v
.pins
= (const struct hda_pintbl
[]) {
13089 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
13090 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
13094 .chain_id
= ALC662_FIXUP_HEADSET_MODE
13096 [ALC662_FIXUP_HEADSET_MODE
] = {
13097 .type
= HDA_FIXUP_FUNC
,
13098 .v
.func
= alc_fixup_headset_mode_alc662
,
13100 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE
] = {
13101 .type
= HDA_FIXUP_PINS
,
13102 .v
.pins
= (const struct hda_pintbl
[]) {
13103 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
13104 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
13108 .chain_id
= ALC668_FIXUP_HEADSET_MODE
13110 [ALC668_FIXUP_HEADSET_MODE
] = {
13111 .type
= HDA_FIXUP_FUNC
,
13112 .v
.func
= alc_fixup_headset_mode_alc668
,
13114 [ALC662_FIXUP_BASS_MODE4_CHMAP
] = {
13115 .type
= HDA_FIXUP_FUNC
,
13116 .v
.func
= alc_fixup_bass_chmap
,
13118 .chain_id
= ALC662_FIXUP_ASUS_MODE4
13120 [ALC662_FIXUP_BASS_16
] = {
13121 .type
= HDA_FIXUP_PINS
,
13122 .v
.pins
= (const struct hda_pintbl
[]) {
13123 {0x16, 0x80106111}, /* bass speaker */
13127 .chain_id
= ALC662_FIXUP_BASS_CHMAP
,
13129 [ALC662_FIXUP_BASS_1A
] = {
13130 .type
= HDA_FIXUP_PINS
,
13131 .v
.pins
= (const struct hda_pintbl
[]) {
13132 {0x1a, 0x80106111}, /* bass speaker */
13136 .chain_id
= ALC662_FIXUP_BASS_CHMAP
,
13138 [ALC662_FIXUP_BASS_CHMAP
] = {
13139 .type
= HDA_FIXUP_FUNC
,
13140 .v
.func
= alc_fixup_bass_chmap
,
13142 [ALC662_FIXUP_ASUS_Nx50
] = {
13143 .type
= HDA_FIXUP_FUNC
,
13144 .v
.func
= alc_fixup_auto_mute_via_amp
,
13146 .chain_id
= ALC662_FIXUP_BASS_1A
13148 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE
] = {
13149 .type
= HDA_FIXUP_FUNC
,
13150 .v
.func
= alc_fixup_headset_mode_alc668
,
13151 .chain_id
= ALC662_FIXUP_BASS_CHMAP
13153 [ALC668_FIXUP_ASUS_Nx51
] = {
13154 .type
= HDA_FIXUP_PINS
,
13155 .v
.pins
= (const struct hda_pintbl
[]) {
13156 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
13157 { 0x1a, 0x90170151 }, /* bass speaker */
13158 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
13162 .chain_id
= ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE
,
13164 [ALC668_FIXUP_MIC_COEF
] = {
13165 .type
= HDA_FIXUP_VERBS
,
13166 .v
.verbs
= (const struct hda_verb
[]) {
13167 { 0x20, AC_VERB_SET_COEF_INDEX
, 0xc3 },
13168 { 0x20, AC_VERB_SET_PROC_COEF
, 0x4000 },
13172 [ALC668_FIXUP_ASUS_G751
] = {
13173 .type
= HDA_FIXUP_PINS
,
13174 .v
.pins
= (const struct hda_pintbl
[]) {
13175 { 0x16, 0x0421101f }, /* HP */
13179 .chain_id
= ALC668_FIXUP_MIC_COEF
13181 [ALC891_FIXUP_HEADSET_MODE
] = {
13182 .type
= HDA_FIXUP_FUNC
,
13183 .v
.func
= alc_fixup_headset_mode
,
13185 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE
] = {
13186 .type
= HDA_FIXUP_PINS
,
13187 .v
.pins
= (const struct hda_pintbl
[]) {
13188 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
13189 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
13193 .chain_id
= ALC891_FIXUP_HEADSET_MODE
13195 [ALC662_FIXUP_ACER_VERITON
] = {
13196 .type
= HDA_FIXUP_PINS
,
13197 .v
.pins
= (const struct hda_pintbl
[]) {
13198 { 0x15, 0x50170120 }, /* no internal speaker */
13202 [ALC892_FIXUP_ASROCK_MOBO
] = {
13203 .type
= HDA_FIXUP_PINS
,
13204 .v
.pins
= (const struct hda_pintbl
[]) {
13205 { 0x15, 0x40f000f0 }, /* disabled */
13206 { 0x16, 0x40f000f0 }, /* disabled */
13210 [ALC662_FIXUP_USI_FUNC
] = {
13211 .type
= HDA_FIXUP_FUNC
,
13212 .v
.func
= alc662_fixup_usi_headset_mic
,
13214 [ALC662_FIXUP_USI_HEADSET_MODE
] = {
13215 .type
= HDA_FIXUP_PINS
,
13216 .v
.pins
= (const struct hda_pintbl
[]) {
13217 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
13218 { 0x18, 0x01a1903d },
13222 .chain_id
= ALC662_FIXUP_USI_FUNC
13224 [ALC662_FIXUP_LENOVO_MULTI_CODECS
] = {
13225 .type
= HDA_FIXUP_FUNC
,
13226 .v
.func
= alc233_alc662_fixup_lenovo_dual_codecs
,
13228 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
] = {
13229 .type
= HDA_FIXUP_FUNC
,
13230 .v
.func
= alc662_fixup_aspire_ethos_hp
,
13232 [ALC669_FIXUP_ACER_ASPIRE_ETHOS
] = {
13233 .type
= HDA_FIXUP_PINS
,
13234 .v
.pins
= (const struct hda_pintbl
[]) {
13235 { 0x15, 0x92130110 }, /* front speakers */
13236 { 0x18, 0x99130111 }, /* center/subwoofer */
13237 { 0x1b, 0x11130012 }, /* surround plus jack for HP */
13241 .chain_id
= ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
13243 [ALC671_FIXUP_HP_HEADSET_MIC2
] = {
13244 .type
= HDA_FIXUP_FUNC
,
13245 .v
.func
= alc671_fixup_hp_headset_mic2
,
13247 [ALC662_FIXUP_ACER_X2660G_HEADSET_MODE
] = {
13248 .type
= HDA_FIXUP_PINS
,
13249 .v
.pins
= (const struct hda_pintbl
[]) {
13250 { 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */
13254 .chain_id
= ALC662_FIXUP_USI_FUNC
13256 [ALC662_FIXUP_ACER_NITRO_HEADSET_MODE
] = {
13257 .type
= HDA_FIXUP_PINS
,
13258 .v
.pins
= (const struct hda_pintbl
[]) {
13259 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
13260 { 0x1b, 0x0221144f },
13264 .chain_id
= ALC662_FIXUP_USI_FUNC
13266 [ALC668_FIXUP_ASUS_NO_HEADSET_MIC
] = {
13267 .type
= HDA_FIXUP_PINS
,
13268 .v
.pins
= (const struct hda_pintbl
[]) {
13269 { 0x1b, 0x04a1112c },
13273 .chain_id
= ALC668_FIXUP_HEADSET_MIC
13275 [ALC668_FIXUP_HEADSET_MIC
] = {
13276 .type
= HDA_FIXUP_FUNC
,
13277 .v
.func
= alc269_fixup_headset_mic
,
13279 .chain_id
= ALC668_FIXUP_MIC_DET_COEF
13281 [ALC668_FIXUP_MIC_DET_COEF
] = {
13282 .type
= HDA_FIXUP_VERBS
,
13283 .v
.verbs
= (const struct hda_verb
[]) {
13284 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x15 },
13285 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0d60 },
13289 [ALC897_FIXUP_LENOVO_HEADSET_MIC
] = {
13290 .type
= HDA_FIXUP_FUNC
,
13291 .v
.func
= alc897_fixup_lenovo_headset_mic
,
13293 [ALC897_FIXUP_HEADSET_MIC_PIN
] = {
13294 .type
= HDA_FIXUP_PINS
,
13295 .v
.pins
= (const struct hda_pintbl
[]) {
13296 { 0x1a, 0x03a11050 },
13300 .chain_id
= ALC897_FIXUP_LENOVO_HEADSET_MIC
13302 [ALC897_FIXUP_HP_HSMIC_VERB
] = {
13303 .type
= HDA_FIXUP_PINS
,
13304 .v
.pins
= (const struct hda_pintbl
[]) {
13305 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
13309 [ALC897_FIXUP_LENOVO_HEADSET_MODE
] = {
13310 .type
= HDA_FIXUP_FUNC
,
13311 .v
.func
= alc897_fixup_lenovo_headset_mode
,
13313 [ALC897_FIXUP_HEADSET_MIC_PIN2
] = {
13314 .type
= HDA_FIXUP_PINS
,
13315 .v
.pins
= (const struct hda_pintbl
[]) {
13316 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
13320 .chain_id
= ALC897_FIXUP_LENOVO_HEADSET_MODE
13322 [ALC897_FIXUP_UNIS_H3C_X500S
] = {
13323 .type
= HDA_FIXUP_VERBS
,
13324 .v
.verbs
= (const struct hda_verb
[]) {
13325 { 0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0 },
13329 [ALC897_FIXUP_HEADSET_MIC_PIN3
] = {
13330 .type
= HDA_FIXUP_PINS
,
13331 .v
.pins
= (const struct hda_pintbl
[]) {
13332 { 0x19, 0x03a11050 }, /* use as headset mic */
13338 static const struct hda_quirk alc662_fixup_tbl
[] = {
13339 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2
),
13340 SND_PCI_QUIRK(0x1019, 0x9859, "JP-IK LEAP W502", ALC897_FIXUP_HEADSET_MIC_PIN3
),
13341 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC
),
13342 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC
),
13343 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE
),
13344 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE
),
13345 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC
),
13346 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC
),
13347 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE
),
13348 SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS
),
13349 SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE
),
13350 SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE
),
13351 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
13352 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
13353 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13
),
13354 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13
),
13355 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13
),
13356 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
13357 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
13358 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
13359 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
13360 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
13361 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800
),
13362 SND_PCI_QUIRK(0x103c, 0x870c, "HP", ALC897_FIXUP_HP_HSMIC_VERB
),
13363 SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB
),
13364 SND_PCI_QUIRK(0x103c, 0x872b, "HP", ALC897_FIXUP_HP_HSMIC_VERB
),
13365 SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2
),
13366 SND_PCI_QUIRK(0x103c, 0x8768, "HP Slim Desktop S01", ALC671_FIXUP_HP_HEADSET_MIC2
),
13367 SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2
),
13368 SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2
),
13369 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE
),
13370 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50
),
13371 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50
),
13372 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751
),
13373 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A
),
13374 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP
),
13375 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16
),
13376 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51
),
13377 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51
),
13378 SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC
),
13379 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8
),
13380 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16
),
13381 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP
),
13382 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT
),
13383 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2
),
13384 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD
),
13385 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE
),
13386 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS
),
13387 SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN
),
13388 SND_PCI_QUIRK(0x17aa, 0x1064, "Lenovo P3 Tower", ALC897_FIXUP_HEADSET_MIC_PIN
),
13389 SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN
),
13390 SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN
),
13391 SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN
),
13392 SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN
),
13393 SND_PCI_QUIRK(0x17aa, 0x3321, "Lenovo ThinkCentre M70 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN
),
13394 SND_PCI_QUIRK(0x17aa, 0x331b, "Lenovo ThinkCentre M90 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN
),
13395 SND_PCI_QUIRK(0x17aa, 0x3364, "Lenovo ThinkCentre M90 Gen5", ALC897_FIXUP_HEADSET_MIC_PIN
),
13396 SND_PCI_QUIRK(0x17aa, 0x3742, "Lenovo TianYi510Pro-14IOB", ALC897_FIXUP_HEADSET_MIC_PIN2
),
13397 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD
),
13398 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD
),
13399 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO
),
13400 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68
),
13401 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON
),
13402 SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26
),
13403 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T
),
13404 SND_PCI_QUIRK(0x1c6c, 0x1239, "Compaq N14JP6-V2", ALC897_FIXUP_HP_HSMIC_VERB
),
13407 /* Below is a quirk table taken from the old code.
13408 * Basically the device should work as is without the fixup table.
13409 * If BIOS doesn't give a proper info, enable the corresponding
13412 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1
),
13413 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3
),
13414 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1
),
13415 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3
),
13416 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
13417 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
13418 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
13419 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1
),
13420 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1
),
13421 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
13422 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7
),
13423 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7
),
13424 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8
),
13425 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3
),
13426 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1
),
13427 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
13428 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2
),
13429 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1
),
13430 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
13431 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
13432 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
13433 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
13434 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1
),
13435 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3
),
13436 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2
),
13437 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
13438 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5
),
13439 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
13440 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
13441 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1
),
13442 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
13443 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
13444 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3
),
13445 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3
),
13446 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1
),
13447 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1
),
13448 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1
),
13449 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1
),
13450 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1
),
13451 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
13452 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2
),
13453 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1
),
13454 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
13455 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3
),
13456 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1
),
13457 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1
),
13458 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1
),
13459 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2
),
13460 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
13461 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4
),
13466 static const struct hda_model_fixup alc662_fixup_models
[] = {
13467 {.id
= ALC662_FIXUP_ASPIRE
, .name
= "aspire"},
13468 {.id
= ALC662_FIXUP_IDEAPAD
, .name
= "ideapad"},
13469 {.id
= ALC272_FIXUP_MARIO
, .name
= "mario"},
13470 {.id
= ALC662_FIXUP_HP_RP5800
, .name
= "hp-rp5800"},
13471 {.id
= ALC662_FIXUP_ASUS_MODE1
, .name
= "asus-mode1"},
13472 {.id
= ALC662_FIXUP_ASUS_MODE2
, .name
= "asus-mode2"},
13473 {.id
= ALC662_FIXUP_ASUS_MODE3
, .name
= "asus-mode3"},
13474 {.id
= ALC662_FIXUP_ASUS_MODE4
, .name
= "asus-mode4"},
13475 {.id
= ALC662_FIXUP_ASUS_MODE5
, .name
= "asus-mode5"},
13476 {.id
= ALC662_FIXUP_ASUS_MODE6
, .name
= "asus-mode6"},
13477 {.id
= ALC662_FIXUP_ASUS_MODE7
, .name
= "asus-mode7"},
13478 {.id
= ALC662_FIXUP_ASUS_MODE8
, .name
= "asus-mode8"},
13479 {.id
= ALC662_FIXUP_ZOTAC_Z68
, .name
= "zotac-z68"},
13480 {.id
= ALC662_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
13481 {.id
= ALC662_FIXUP_DELL_MIC_NO_PRESENCE
, .name
= "alc662-headset-multi"},
13482 {.id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
, .name
= "dell-headset-multi"},
13483 {.id
= ALC662_FIXUP_HEADSET_MODE
, .name
= "alc662-headset"},
13484 {.id
= ALC668_FIXUP_HEADSET_MODE
, .name
= "alc668-headset"},
13485 {.id
= ALC662_FIXUP_BASS_16
, .name
= "bass16"},
13486 {.id
= ALC662_FIXUP_BASS_1A
, .name
= "bass1a"},
13487 {.id
= ALC668_FIXUP_AUTO_MUTE
, .name
= "automute"},
13488 {.id
= ALC668_FIXUP_DELL_XPS13
, .name
= "dell-xps13"},
13489 {.id
= ALC662_FIXUP_ASUS_Nx50
, .name
= "asus-nx50"},
13490 {.id
= ALC668_FIXUP_ASUS_Nx51
, .name
= "asus-nx51"},
13491 {.id
= ALC668_FIXUP_ASUS_G751
, .name
= "asus-g751"},
13492 {.id
= ALC891_FIXUP_HEADSET_MODE
, .name
= "alc891-headset"},
13493 {.id
= ALC891_FIXUP_DELL_MIC_NO_PRESENCE
, .name
= "alc891-headset-multi"},
13494 {.id
= ALC662_FIXUP_ACER_VERITON
, .name
= "acer-veriton"},
13495 {.id
= ALC892_FIXUP_ASROCK_MOBO
, .name
= "asrock-mobo"},
13496 {.id
= ALC662_FIXUP_USI_HEADSET_MODE
, .name
= "usi-headset"},
13497 {.id
= ALC662_FIXUP_LENOVO_MULTI_CODECS
, .name
= "dual-codecs"},
13498 {.id
= ALC669_FIXUP_ACER_ASPIRE_ETHOS
, .name
= "aspire-ethos"},
13499 {.id
= ALC897_FIXUP_UNIS_H3C_X500S
, .name
= "unis-h3c-x500s"},
13503 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl
[] = {
13504 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE
,
13505 {0x17, 0x02211010},
13506 {0x18, 0x01a19030},
13507 {0x1a, 0x01813040},
13508 {0x21, 0x01014020}),
13509 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE
,
13510 {0x16, 0x01813030},
13511 {0x17, 0x02211010},
13512 {0x18, 0x01a19040},
13513 {0x21, 0x01014020}),
13514 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE
,
13515 {0x14, 0x01014010},
13516 {0x18, 0x01a19020},
13517 {0x1a, 0x0181302f},
13518 {0x1b, 0x0221401f}),
13519 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
13520 {0x12, 0x99a30130},
13521 {0x14, 0x90170110},
13522 {0x15, 0x0321101f},
13523 {0x16, 0x03011020}),
13524 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
13525 {0x12, 0x99a30140},
13526 {0x14, 0x90170110},
13527 {0x15, 0x0321101f},
13528 {0x16, 0x03011020}),
13529 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
13530 {0x12, 0x99a30150},
13531 {0x14, 0x90170110},
13532 {0x15, 0x0321101f},
13533 {0x16, 0x03011020}),
13534 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
13535 {0x14, 0x90170110},
13536 {0x15, 0x0321101f},
13537 {0x16, 0x03011020}),
13538 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE
,
13539 {0x12, 0x90a60130},
13540 {0x14, 0x90170110},
13541 {0x15, 0x0321101f}),
13542 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2
,
13543 {0x14, 0x01014010},
13544 {0x17, 0x90170150},
13545 {0x19, 0x02a11060},
13546 {0x1b, 0x01813030},
13547 {0x21, 0x02211020}),
13548 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2
,
13549 {0x14, 0x01014010},
13550 {0x18, 0x01a19040},
13551 {0x1b, 0x01813030},
13552 {0x21, 0x02211020}),
13553 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2
,
13554 {0x14, 0x01014020},
13555 {0x17, 0x90170110},
13556 {0x18, 0x01a19050},
13557 {0x1b, 0x01813040},
13558 {0x21, 0x02211030}),
13564 static int patch_alc662(struct hda_codec
*codec
)
13566 struct alc_spec
*spec
;
13569 err
= alc_alloc_spec(codec
, 0x0b);
13573 spec
= codec
->spec
;
13575 spec
->shutup
= alc_eapd_shutup
;
13577 /* handle multiple HPs as is */
13578 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
13580 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
13582 switch (codec
->core
.vendor_id
) {
13584 spec
->init_hook
= alc668_restore_default_value
;
13588 alc_pre_init(codec
);
13590 snd_hda_pick_fixup(codec
, alc662_fixup_models
,
13591 alc662_fixup_tbl
, alc662_fixups
);
13592 snd_hda_pick_pin_fixup(codec
, alc662_pin_fixup_tbl
, alc662_fixups
, true);
13593 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
13595 alc_auto_parse_customize_define(codec
);
13597 if (has_cdefine_beep(codec
))
13598 spec
->gen
.beep_nid
= 0x01;
13600 if ((alc_get_coef0(codec
) & (1 << 14)) &&
13601 codec
->bus
->pci
&& codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
13602 spec
->cdefine
.platform_type
== 1) {
13603 err
= alc_codec_rename(codec
, "ALC272X");
13608 /* automatic parse from the BIOS config */
13609 err
= alc662_parse_auto_config(codec
);
13613 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
) {
13614 switch (codec
->core
.vendor_id
) {
13616 err
= set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
13622 err
= set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
13625 err
= set_beep_amp(spec
, 0x0b, 0x03, HDA_INPUT
);
13632 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
13645 static int alc680_parse_auto_config(struct hda_codec
*codec
)
13647 return alc_parse_auto_config(codec
, NULL
, NULL
);
13652 static int patch_alc680(struct hda_codec
*codec
)
13656 /* ALC680 has no aa-loopback mixer */
13657 err
= alc_alloc_spec(codec
, 0);
13661 /* automatic parse from the BIOS config */
13662 err
= alc680_parse_auto_config(codec
);
13674 static const struct hda_device_id snd_hda_id_realtek
[] = {
13675 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269
),
13676 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269
),
13677 HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269
),
13678 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269
),
13679 HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269
),
13680 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269
),
13681 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269
),
13682 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269
),
13683 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269
),
13684 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269
),
13685 HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269
),
13686 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269
),
13687 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269
),
13688 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269
),
13689 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260
),
13690 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262
),
13691 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268
),
13692 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268
),
13693 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269
),
13694 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269
),
13695 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662
),
13696 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269
),
13697 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269
),
13698 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269
),
13699 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269
),
13700 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269
),
13701 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269
),
13702 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269
),
13703 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269
),
13704 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269
),
13705 HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269
),
13706 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269
),
13707 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269
),
13708 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269
),
13709 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269
),
13710 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269
),
13711 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269
),
13712 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269
),
13713 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269
),
13714 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269
),
13715 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269
),
13716 HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269
),
13717 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861
),
13718 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd
),
13719 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861
),
13720 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd
),
13721 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882
),
13722 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662
),
13723 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662
),
13724 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662
),
13725 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662
),
13726 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662
),
13727 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662
),
13728 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662
),
13729 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662
),
13730 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680
),
13731 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269
),
13732 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269
),
13733 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269
),
13734 HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269
),
13735 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662
),
13736 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880
),
13737 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882
),
13738 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882
),
13739 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882
),
13740 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882
),
13741 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882
),
13742 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882
),
13743 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882
),
13744 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882
),
13745 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882
),
13746 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662
),
13747 HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662
),
13748 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882
),
13749 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882
),
13750 HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882
),
13751 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882
),
13752 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882
),
13753 HDA_CODEC_ENTRY(0x19e58326, "HW8326", patch_alc269
),
13754 {} /* terminator */
13756 MODULE_DEVICE_TABLE(hdaudio
, snd_hda_id_realtek
);
13758 MODULE_LICENSE("GPL");
13759 MODULE_DESCRIPTION("Realtek HD-audio codec");
13760 MODULE_IMPORT_NS("SND_HDA_SCODEC_COMPONENT");
13762 static struct hda_codec_driver realtek_driver
= {
13763 .id
= snd_hda_id_realtek
,
13766 module_hda_codec_driver(realtek_driver
);