2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for Realtek ALC codecs
6 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
8 * Takashi Iwai <tiwai@suse.de>
9 * Jonathan Woithe <jwoithe@just42.net>
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <linux/init.h>
27 #include <linux/delay.h>
28 #include <linux/slab.h>
29 #include <linux/pci.h>
30 #include <linux/dmi.h>
31 #include <linux/module.h>
32 #include <linux/input.h>
33 #include <sound/core.h>
34 #include <sound/jack.h>
35 #include "hda_codec.h"
36 #include "hda_local.h"
37 #include "hda_auto_parser.h"
39 #include "hda_generic.h"
41 /* keep halting ALC5505 DSP, for power saving */
42 #define HALT_REALTEK_ALC5505
45 #define GPIO_MASK 0x03
47 /* extra amp-initialization sequence types */
57 ALC_HEADSET_MODE_UNKNOWN
,
58 ALC_HEADSET_MODE_UNPLUGGED
,
59 ALC_HEADSET_MODE_HEADSET
,
61 ALC_HEADSET_MODE_HEADPHONE
,
65 ALC_HEADSET_TYPE_UNKNOWN
,
66 ALC_HEADSET_TYPE_CTIA
,
67 ALC_HEADSET_TYPE_OMTP
,
71 ALC_KEY_MICMUTE_INDEX
,
74 struct alc_customize_define
{
76 unsigned char port_connectivity
;
77 unsigned char check_sum
;
78 unsigned char customization
;
79 unsigned char external_amp
;
80 unsigned int enable_pcbeep
:1;
81 unsigned int platform_type
:1;
83 unsigned int override
:1;
84 unsigned int fixup
:1; /* Means that this sku is set by driver, not read from hw */
88 struct hda_gen_spec gen
; /* must be at head */
90 /* codec parameterization */
91 const struct snd_kcontrol_new
*mixers
[5]; /* mixer arrays */
92 unsigned int num_mixers
;
93 unsigned int beep_amp
; /* beep amp value, set via set_beep_amp() */
95 struct alc_customize_define cdefine
;
96 unsigned int parse_flags
; /* flag for snd_hda_parse_pin_defcfg() */
98 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
99 int mute_led_polarity
;
100 hda_nid_t mute_led_nid
;
101 hda_nid_t cap_mute_led_nid
;
103 unsigned int gpio_led
; /* used for alc269_fixup_hp_gpio_led() */
104 unsigned int gpio_mute_led_mask
;
105 unsigned int gpio_mic_led_mask
;
107 hda_nid_t headset_mic_pin
;
108 hda_nid_t headphone_mic_pin
;
109 int current_headset_mode
;
110 int current_headset_type
;
113 void (*init_hook
)(struct hda_codec
*codec
);
115 void (*power_hook
)(struct hda_codec
*codec
);
117 void (*shutup
)(struct hda_codec
*codec
);
118 void (*reboot_notify
)(struct hda_codec
*codec
);
121 int codec_variant
; /* flag for other variants */
122 unsigned int has_alc5505_dsp
:1;
123 unsigned int no_depop_delay
:1;
127 unsigned int pll_coef_idx
, pll_coef_bit
;
129 struct input_dev
*kb_dev
;
130 u8 alc_mute_keycode_map
[1];
134 * COEF access helper functions
137 static int alc_read_coefex_idx(struct hda_codec
*codec
, hda_nid_t nid
,
138 unsigned int coef_idx
)
142 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_COEF_INDEX
, coef_idx
);
143 val
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_PROC_COEF
, 0);
147 #define alc_read_coef_idx(codec, coef_idx) \
148 alc_read_coefex_idx(codec, 0x20, coef_idx)
150 static void alc_write_coefex_idx(struct hda_codec
*codec
, hda_nid_t nid
,
151 unsigned int coef_idx
, unsigned int coef_val
)
153 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_COEF_INDEX
, coef_idx
);
154 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PROC_COEF
, coef_val
);
157 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
158 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
160 static void alc_update_coefex_idx(struct hda_codec
*codec
, hda_nid_t nid
,
161 unsigned int coef_idx
, unsigned int mask
,
162 unsigned int bits_set
)
164 unsigned int val
= alc_read_coefex_idx(codec
, nid
, coef_idx
);
167 alc_write_coefex_idx(codec
, nid
, coef_idx
,
168 (val
& ~mask
) | bits_set
);
171 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
172 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
174 /* a special bypass for COEF 0; read the cached value at the second time */
175 static unsigned int alc_get_coef0(struct hda_codec
*codec
)
177 struct alc_spec
*spec
= codec
->spec
;
180 spec
->coef0
= alc_read_coef_idx(codec
, 0);
184 /* coef writes/updates batch */
192 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
193 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
194 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
195 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
196 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
198 static void alc_process_coef_fw(struct hda_codec
*codec
,
199 const struct coef_fw
*fw
)
201 for (; fw
->nid
; fw
++) {
202 if (fw
->mask
== (unsigned short)-1)
203 alc_write_coefex_idx(codec
, fw
->nid
, fw
->idx
, fw
->val
);
205 alc_update_coefex_idx(codec
, fw
->nid
, fw
->idx
,
211 * Append the given mixer and verb elements for the later use
212 * The mixer array is referred in build_controls(), and init_verbs are
215 static void add_mixer(struct alc_spec
*spec
, const struct snd_kcontrol_new
*mix
)
217 if (snd_BUG_ON(spec
->num_mixers
>= ARRAY_SIZE(spec
->mixers
)))
219 spec
->mixers
[spec
->num_mixers
++] = mix
;
223 * GPIO setup tables, used in initialization
225 /* Enable GPIO mask and set output */
226 static const struct hda_verb alc_gpio1_init_verbs
[] = {
227 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
228 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
229 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
233 static const struct hda_verb alc_gpio2_init_verbs
[] = {
234 {0x01, AC_VERB_SET_GPIO_MASK
, 0x02},
235 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x02},
236 {0x01, AC_VERB_SET_GPIO_DATA
, 0x02},
240 static const struct hda_verb alc_gpio3_init_verbs
[] = {
241 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
242 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x03},
243 {0x01, AC_VERB_SET_GPIO_DATA
, 0x03},
248 * Fix hardware PLL issue
249 * On some codecs, the analog PLL gating control must be off while
250 * the default value is 1.
252 static void alc_fix_pll(struct hda_codec
*codec
)
254 struct alc_spec
*spec
= codec
->spec
;
257 alc_update_coefex_idx(codec
, spec
->pll_nid
, spec
->pll_coef_idx
,
258 1 << spec
->pll_coef_bit
, 0);
261 static void alc_fix_pll_init(struct hda_codec
*codec
, hda_nid_t nid
,
262 unsigned int coef_idx
, unsigned int coef_bit
)
264 struct alc_spec
*spec
= codec
->spec
;
266 spec
->pll_coef_idx
= coef_idx
;
267 spec
->pll_coef_bit
= coef_bit
;
271 /* update the master volume per volume-knob's unsol event */
272 static void alc_update_knob_master(struct hda_codec
*codec
,
273 struct hda_jack_callback
*jack
)
276 struct snd_kcontrol
*kctl
;
277 struct snd_ctl_elem_value
*uctl
;
279 kctl
= snd_hda_find_mixer_ctl(codec
, "Master Playback Volume");
282 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
285 val
= snd_hda_codec_read(codec
, jack
->nid
, 0,
286 AC_VERB_GET_VOLUME_KNOB_CONTROL
, 0);
287 val
&= HDA_AMP_VOLMASK
;
288 uctl
->value
.integer
.value
[0] = val
;
289 uctl
->value
.integer
.value
[1] = val
;
290 kctl
->put(kctl
, uctl
);
294 static void alc880_unsol_event(struct hda_codec
*codec
, unsigned int res
)
296 /* For some reason, the res given from ALC880 is broken.
297 Here we adjust it properly. */
298 snd_hda_jack_unsol_event(codec
, res
>> 2);
301 /* Change EAPD to verb control */
302 static void alc_fill_eapd_coef(struct hda_codec
*codec
)
306 coef
= alc_get_coef0(codec
);
308 switch (codec
->core
.vendor_id
) {
310 alc_update_coef_idx(codec
, 0x7, 0, 1<<5);
314 alc_update_coef_idx(codec
, 0x7, 0, 1<<13);
317 if ((coef
& 0x00f0) == 0x0010)
318 alc_update_coef_idx(codec
, 0xd, 0, 1<<14);
319 if ((coef
& 0x00f0) == 0x0020)
320 alc_update_coef_idx(codec
, 0x4, 1<<15, 0);
321 if ((coef
& 0x00f0) == 0x0030)
322 alc_update_coef_idx(codec
, 0x10, 1<<9, 0);
328 alc_update_coef_idx(codec
, 0x4, 1<<15, 0);
340 alc_update_coef_idx(codec
, 0x10, 1<<9, 0);
344 alc_update_coef_idx(codec
, 0xa, 1<<13, 0);
352 alc_update_coef_idx(codec
, 0x10, 1<<15, 0);
355 if ((coef
& 0x00f0) == 0x0030)
356 alc_update_coef_idx(codec
, 0x4, 1<<10, 0); /* EAPD Ctrl */
365 alc_update_coef_idx(codec
, 0xd, 0, 1<<14); /* EAPD Ctrl */
368 alc_update_coef_idx(codec
, 0x7, 3<<13, 0);
371 alc_update_coef_idx(codec
, 0x4, 1<<10, 0);
374 if ((coef
& 0x00f0) == 0x0020 || (coef
& 0x00f0) == 0x0030)
375 alc_update_coef_idx(codec
, 0x7, 1<<5, 0);
378 alc_update_coef_idx(codec
, 0x7, 1<<5, 0);
382 alc_update_coef_idx(codec
, 0x7, 1<<1, 0);
387 /* additional initialization for ALC888 variants */
388 static void alc888_coef_init(struct hda_codec
*codec
)
390 switch (alc_get_coef0(codec
) & 0x00f0) {
395 alc_update_coef_idx(codec
, 7, 0, 0x2030); /* Turn EAPD to High */
400 /* turn on/off EAPD control (only if available) */
401 static void set_eapd(struct hda_codec
*codec
, hda_nid_t nid
, int on
)
403 if (get_wcaps_type(get_wcaps(codec
, nid
)) != AC_WID_PIN
)
405 if (snd_hda_query_pin_caps(codec
, nid
) & AC_PINCAP_EAPD
)
406 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
410 /* turn on/off EAPD controls of the codec */
411 static void alc_auto_setup_eapd(struct hda_codec
*codec
, bool on
)
413 /* We currently only handle front, HP */
414 static hda_nid_t pins
[] = {
415 0x0f, 0x10, 0x14, 0x15, 0x17, 0
418 for (p
= pins
; *p
; p
++)
419 set_eapd(codec
, *p
, on
);
422 /* generic shutup callback;
423 * just turning off EPAD and a little pause for avoiding pop-noise
425 static void alc_eapd_shutup(struct hda_codec
*codec
)
427 struct alc_spec
*spec
= codec
->spec
;
429 alc_auto_setup_eapd(codec
, false);
430 if (!spec
->no_depop_delay
)
432 snd_hda_shutup_pins(codec
);
435 /* generic EAPD initialization */
436 static void alc_auto_init_amp(struct hda_codec
*codec
, int type
)
438 alc_fill_eapd_coef(codec
);
439 alc_auto_setup_eapd(codec
, true);
442 snd_hda_sequence_write(codec
, alc_gpio1_init_verbs
);
445 snd_hda_sequence_write(codec
, alc_gpio2_init_verbs
);
448 snd_hda_sequence_write(codec
, alc_gpio3_init_verbs
);
450 case ALC_INIT_DEFAULT
:
451 switch (codec
->core
.vendor_id
) {
453 alc_update_coefex_idx(codec
, 0x1a, 7, 0, 0x2010);
459 alc_update_coef_idx(codec
, 7, 0, 0x2030);
462 alc888_coef_init(codec
);
471 * Realtek SSID verification
474 /* Could be any non-zero and even value. When used as fixup, tells
475 * the driver to ignore any present sku defines.
477 #define ALC_FIXUP_SKU_IGNORE (2)
479 static void alc_fixup_sku_ignore(struct hda_codec
*codec
,
480 const struct hda_fixup
*fix
, int action
)
482 struct alc_spec
*spec
= codec
->spec
;
483 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
484 spec
->cdefine
.fixup
= 1;
485 spec
->cdefine
.sku_cfg
= ALC_FIXUP_SKU_IGNORE
;
489 static void alc_fixup_no_depop_delay(struct hda_codec
*codec
,
490 const struct hda_fixup
*fix
, int action
)
492 struct alc_spec
*spec
= codec
->spec
;
494 if (action
== HDA_FIXUP_ACT_PROBE
) {
495 spec
->no_depop_delay
= 1;
496 codec
->depop_delay
= 0;
500 static int alc_auto_parse_customize_define(struct hda_codec
*codec
)
502 unsigned int ass
, tmp
, i
;
504 struct alc_spec
*spec
= codec
->spec
;
506 spec
->cdefine
.enable_pcbeep
= 1; /* assume always enabled */
508 if (spec
->cdefine
.fixup
) {
509 ass
= spec
->cdefine
.sku_cfg
;
510 if (ass
== ALC_FIXUP_SKU_IGNORE
)
515 if (!codec
->bus
->pci
)
517 ass
= codec
->core
.subsystem_id
& 0xffff;
518 if (ass
!= codec
->bus
->pci
->subsystem_device
&& (ass
& 1))
522 if (codec
->core
.vendor_id
== 0x10ec0260)
524 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
527 codec_info(codec
, "%s: SKU not ready 0x%08x\n",
528 codec
->core
.chip_name
, ass
);
534 for (i
= 1; i
< 16; i
++) {
538 if (((ass
>> 16) & 0xf) != tmp
)
541 spec
->cdefine
.port_connectivity
= ass
>> 30;
542 spec
->cdefine
.enable_pcbeep
= (ass
& 0x100000) >> 20;
543 spec
->cdefine
.check_sum
= (ass
>> 16) & 0xf;
544 spec
->cdefine
.customization
= ass
>> 8;
546 spec
->cdefine
.sku_cfg
= ass
;
547 spec
->cdefine
.external_amp
= (ass
& 0x38) >> 3;
548 spec
->cdefine
.platform_type
= (ass
& 0x4) >> 2;
549 spec
->cdefine
.swap
= (ass
& 0x2) >> 1;
550 spec
->cdefine
.override
= ass
& 0x1;
552 codec_dbg(codec
, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
553 nid
, spec
->cdefine
.sku_cfg
);
554 codec_dbg(codec
, "SKU: port_connectivity=0x%x\n",
555 spec
->cdefine
.port_connectivity
);
556 codec_dbg(codec
, "SKU: enable_pcbeep=0x%x\n", spec
->cdefine
.enable_pcbeep
);
557 codec_dbg(codec
, "SKU: check_sum=0x%08x\n", spec
->cdefine
.check_sum
);
558 codec_dbg(codec
, "SKU: customization=0x%08x\n", spec
->cdefine
.customization
);
559 codec_dbg(codec
, "SKU: external_amp=0x%x\n", spec
->cdefine
.external_amp
);
560 codec_dbg(codec
, "SKU: platform_type=0x%x\n", spec
->cdefine
.platform_type
);
561 codec_dbg(codec
, "SKU: swap=0x%x\n", spec
->cdefine
.swap
);
562 codec_dbg(codec
, "SKU: override=0x%x\n", spec
->cdefine
.override
);
567 /* return the position of NID in the list, or -1 if not found */
568 static int find_idx_in_nid_list(hda_nid_t nid
, const hda_nid_t
*list
, int nums
)
571 for (i
= 0; i
< nums
; i
++)
576 /* return true if the given NID is found in the list */
577 static bool found_in_nid_list(hda_nid_t nid
, const hda_nid_t
*list
, int nums
)
579 return find_idx_in_nid_list(nid
, list
, nums
) >= 0;
582 /* check subsystem ID and set up device-specific initialization;
583 * return 1 if initialized, 0 if invalid SSID
585 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
586 * 31 ~ 16 : Manufacture ID
588 * 7 ~ 0 : Assembly ID
589 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
591 static int alc_subsystem_id(struct hda_codec
*codec
, const hda_nid_t
*ports
)
593 unsigned int ass
, tmp
, i
;
595 struct alc_spec
*spec
= codec
->spec
;
597 if (spec
->cdefine
.fixup
) {
598 ass
= spec
->cdefine
.sku_cfg
;
599 if (ass
== ALC_FIXUP_SKU_IGNORE
)
604 ass
= codec
->core
.subsystem_id
& 0xffff;
605 if (codec
->bus
->pci
&&
606 ass
!= codec
->bus
->pci
->subsystem_device
&& (ass
& 1))
609 /* invalid SSID, check the special NID pin defcfg instead */
611 * 31~30 : port connectivity
614 * 19~16 : Check sum (15:1)
619 if (codec
->core
.vendor_id
== 0x10ec0260)
621 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
623 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
627 if ((ass
>> 30) != 1) /* no physical connection */
632 for (i
= 1; i
< 16; i
++) {
636 if (((ass
>> 16) & 0xf) != tmp
)
639 codec_dbg(codec
, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
640 ass
& 0xffff, codec
->core
.vendor_id
);
644 * 2 : 0 --> Desktop, 1 --> Laptop
645 * 3~5 : External Amplifier control
648 tmp
= (ass
& 0x38) >> 3; /* external Amp control */
651 spec
->init_amp
= ALC_INIT_GPIO1
;
654 spec
->init_amp
= ALC_INIT_GPIO2
;
657 spec
->init_amp
= ALC_INIT_GPIO3
;
661 spec
->init_amp
= ALC_INIT_DEFAULT
;
665 /* is laptop or Desktop and enable the function "Mute internal speaker
666 * when the external headphone out jack is plugged"
671 * 10~8 : Jack location
672 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
674 * 15 : 1 --> enable the function "Mute internal speaker
675 * when the external headphone out jack is plugged"
677 if (!spec
->gen
.autocfg
.hp_pins
[0] &&
678 !(spec
->gen
.autocfg
.line_out_pins
[0] &&
679 spec
->gen
.autocfg
.line_out_type
== AUTO_PIN_HP_OUT
)) {
681 tmp
= (ass
>> 11) & 0x3; /* HP to chassis */
683 if (found_in_nid_list(nid
, spec
->gen
.autocfg
.line_out_pins
,
684 spec
->gen
.autocfg
.line_outs
))
686 spec
->gen
.autocfg
.hp_pins
[0] = nid
;
691 /* Check the validity of ALC subsystem-id
692 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
693 static void alc_ssid_check(struct hda_codec
*codec
, const hda_nid_t
*ports
)
695 if (!alc_subsystem_id(codec
, ports
)) {
696 struct alc_spec
*spec
= codec
->spec
;
698 "realtek: Enable default setup for auto mode as fallback\n");
699 spec
->init_amp
= ALC_INIT_DEFAULT
;
706 static void alc_fixup_inv_dmic(struct hda_codec
*codec
,
707 const struct hda_fixup
*fix
, int action
)
709 struct alc_spec
*spec
= codec
->spec
;
711 spec
->gen
.inv_dmic_split
= 1;
715 #ifdef CONFIG_SND_HDA_INPUT_BEEP
716 /* additional beep mixers; the actual parameters are overwritten at build */
717 static const struct snd_kcontrol_new alc_beep_mixer
[] = {
718 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT
),
719 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT
),
724 static int alc_build_controls(struct hda_codec
*codec
)
726 struct alc_spec
*spec
= codec
->spec
;
729 err
= snd_hda_gen_build_controls(codec
);
733 for (i
= 0; i
< spec
->num_mixers
; i
++) {
734 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
739 #ifdef CONFIG_SND_HDA_INPUT_BEEP
740 /* create beep controls if needed */
741 if (spec
->beep_amp
) {
742 const struct snd_kcontrol_new
*knew
;
743 for (knew
= alc_beep_mixer
; knew
->name
; knew
++) {
744 struct snd_kcontrol
*kctl
;
745 kctl
= snd_ctl_new1(knew
, codec
);
748 kctl
->private_value
= spec
->beep_amp
;
749 err
= snd_hda_ctl_add(codec
, 0, kctl
);
756 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_BUILD
);
765 static int alc_init(struct hda_codec
*codec
)
767 struct alc_spec
*spec
= codec
->spec
;
770 spec
->init_hook(codec
);
773 alc_auto_init_amp(codec
, spec
->init_amp
);
775 snd_hda_gen_init(codec
);
777 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_INIT
);
782 static inline void alc_shutup(struct hda_codec
*codec
)
784 struct alc_spec
*spec
= codec
->spec
;
786 if (spec
&& spec
->shutup
)
789 snd_hda_shutup_pins(codec
);
792 static void alc_reboot_notify(struct hda_codec
*codec
)
794 struct alc_spec
*spec
= codec
->spec
;
796 if (spec
&& spec
->reboot_notify
)
797 spec
->reboot_notify(codec
);
802 /* power down codec to D3 at reboot/shutdown; set as reboot_notify ops */
803 static void alc_d3_at_reboot(struct hda_codec
*codec
)
805 snd_hda_codec_set_power_to_all(codec
, codec
->core
.afg
, AC_PWRST_D3
);
806 snd_hda_codec_write(codec
, codec
->core
.afg
, 0,
807 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
811 #define alc_free snd_hda_gen_free
814 static void alc_power_eapd(struct hda_codec
*codec
)
816 alc_auto_setup_eapd(codec
, false);
819 static int alc_suspend(struct hda_codec
*codec
)
821 struct alc_spec
*spec
= codec
->spec
;
823 if (spec
&& spec
->power_hook
)
824 spec
->power_hook(codec
);
830 static int alc_resume(struct hda_codec
*codec
)
832 struct alc_spec
*spec
= codec
->spec
;
834 if (!spec
->no_depop_delay
)
835 msleep(150); /* to avoid pop noise */
836 codec
->patch_ops
.init(codec
);
837 regcache_sync(codec
->core
.regmap
);
838 hda_call_check_power_status(codec
, 0x01);
845 static const struct hda_codec_ops alc_patch_ops
= {
846 .build_controls
= alc_build_controls
,
847 .build_pcms
= snd_hda_gen_build_pcms
,
850 .unsol_event
= snd_hda_jack_unsol_event
,
852 .resume
= alc_resume
,
853 .suspend
= alc_suspend
,
854 .check_power_status
= snd_hda_gen_check_power_status
,
856 .reboot_notify
= alc_reboot_notify
,
860 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
863 * Rename codecs appropriately from COEF value or subvendor id
865 struct alc_codec_rename_table
{
866 unsigned int vendor_id
;
867 unsigned short coef_mask
;
868 unsigned short coef_bits
;
872 struct alc_codec_rename_pci_table
{
873 unsigned int codec_vendor_id
;
874 unsigned short pci_subvendor
;
875 unsigned short pci_subdevice
;
879 static struct alc_codec_rename_table rename_tbl
[] = {
880 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
881 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
882 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
883 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
884 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
885 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
886 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
887 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
888 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
889 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
890 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
891 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
892 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
893 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
894 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
895 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
896 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
900 static struct alc_codec_rename_pci_table rename_pci_tbl
[] = {
901 { 0x10ec0280, 0x1028, 0, "ALC3220" },
902 { 0x10ec0282, 0x1028, 0, "ALC3221" },
903 { 0x10ec0283, 0x1028, 0, "ALC3223" },
904 { 0x10ec0288, 0x1028, 0, "ALC3263" },
905 { 0x10ec0292, 0x1028, 0, "ALC3226" },
906 { 0x10ec0293, 0x1028, 0, "ALC3235" },
907 { 0x10ec0255, 0x1028, 0, "ALC3234" },
908 { 0x10ec0668, 0x1028, 0, "ALC3661" },
909 { 0x10ec0275, 0x1028, 0, "ALC3260" },
910 { 0x10ec0899, 0x1028, 0, "ALC3861" },
911 { 0x10ec0298, 0x1028, 0, "ALC3266" },
912 { 0x10ec0256, 0x1028, 0, "ALC3246" },
913 { 0x10ec0225, 0x1028, 0, "ALC3253" },
914 { 0x10ec0295, 0x1028, 0, "ALC3254" },
915 { 0x10ec0670, 0x1025, 0, "ALC669X" },
916 { 0x10ec0676, 0x1025, 0, "ALC679X" },
917 { 0x10ec0282, 0x1043, 0, "ALC3229" },
918 { 0x10ec0233, 0x1043, 0, "ALC3236" },
919 { 0x10ec0280, 0x103c, 0, "ALC3228" },
920 { 0x10ec0282, 0x103c, 0, "ALC3227" },
921 { 0x10ec0286, 0x103c, 0, "ALC3242" },
922 { 0x10ec0290, 0x103c, 0, "ALC3241" },
923 { 0x10ec0668, 0x103c, 0, "ALC3662" },
924 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
925 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
929 static int alc_codec_rename_from_preset(struct hda_codec
*codec
)
931 const struct alc_codec_rename_table
*p
;
932 const struct alc_codec_rename_pci_table
*q
;
934 for (p
= rename_tbl
; p
->vendor_id
; p
++) {
935 if (p
->vendor_id
!= codec
->core
.vendor_id
)
937 if ((alc_get_coef0(codec
) & p
->coef_mask
) == p
->coef_bits
)
938 return alc_codec_rename(codec
, p
->name
);
941 if (!codec
->bus
->pci
)
943 for (q
= rename_pci_tbl
; q
->codec_vendor_id
; q
++) {
944 if (q
->codec_vendor_id
!= codec
->core
.vendor_id
)
946 if (q
->pci_subvendor
!= codec
->bus
->pci
->subsystem_vendor
)
948 if (!q
->pci_subdevice
||
949 q
->pci_subdevice
== codec
->bus
->pci
->subsystem_device
)
950 return alc_codec_rename(codec
, q
->name
);
958 * Digital-beep handlers
960 #ifdef CONFIG_SND_HDA_INPUT_BEEP
961 #define set_beep_amp(spec, nid, idx, dir) \
962 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
964 static const struct snd_pci_quirk beep_white_list
[] = {
965 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
966 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
967 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
968 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
969 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
970 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
971 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
972 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
973 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
977 static inline int has_cdefine_beep(struct hda_codec
*codec
)
979 struct alc_spec
*spec
= codec
->spec
;
980 const struct snd_pci_quirk
*q
;
981 q
= snd_pci_quirk_lookup(codec
->bus
->pci
, beep_white_list
);
984 return spec
->cdefine
.enable_pcbeep
;
987 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
988 #define has_cdefine_beep(codec) 0
991 /* parse the BIOS configuration and set up the alc_spec */
992 /* return 1 if successful, 0 if the proper config is not found,
993 * or a negative error code
995 static int alc_parse_auto_config(struct hda_codec
*codec
,
996 const hda_nid_t
*ignore_nids
,
997 const hda_nid_t
*ssid_nids
)
999 struct alc_spec
*spec
= codec
->spec
;
1000 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
1003 err
= snd_hda_parse_pin_defcfg(codec
, cfg
, ignore_nids
,
1009 alc_ssid_check(codec
, ssid_nids
);
1011 err
= snd_hda_gen_parse_auto_config(codec
, cfg
);
1018 /* common preparation job for alc_spec */
1019 static int alc_alloc_spec(struct hda_codec
*codec
, hda_nid_t mixer_nid
)
1021 struct alc_spec
*spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
1027 snd_hda_gen_spec_init(&spec
->gen
);
1028 spec
->gen
.mixer_nid
= mixer_nid
;
1029 spec
->gen
.own_eapd_ctl
= 1;
1030 codec
->single_adc_amp
= 1;
1031 /* FIXME: do we need this for all Realtek codec models? */
1032 codec
->spdif_status_reset
= 1;
1033 codec
->patch_ops
= alc_patch_ops
;
1035 err
= alc_codec_rename_from_preset(codec
);
1043 static int alc880_parse_auto_config(struct hda_codec
*codec
)
1045 static const hda_nid_t alc880_ignore
[] = { 0x1d, 0 };
1046 static const hda_nid_t alc880_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
1047 return alc_parse_auto_config(codec
, alc880_ignore
, alc880_ssids
);
1056 ALC880_FIXUP_MEDION_RIM
,
1058 ALC880_FIXUP_LG_LW25
,
1060 ALC880_FIXUP_EAPD_COEF
,
1061 ALC880_FIXUP_TCL_S700
,
1062 ALC880_FIXUP_VOL_KNOB
,
1063 ALC880_FIXUP_FUJITSU
,
1065 ALC880_FIXUP_UNIWILL
,
1066 ALC880_FIXUP_UNIWILL_DIG
,
1068 ALC880_FIXUP_ASUS_W5A
,
1069 ALC880_FIXUP_3ST_BASE
,
1071 ALC880_FIXUP_3ST_DIG
,
1072 ALC880_FIXUP_5ST_BASE
,
1074 ALC880_FIXUP_5ST_DIG
,
1075 ALC880_FIXUP_6ST_BASE
,
1077 ALC880_FIXUP_6ST_DIG
,
1078 ALC880_FIXUP_6ST_AUTOMUTE
,
1081 /* enable the volume-knob widget support on NID 0x21 */
1082 static void alc880_fixup_vol_knob(struct hda_codec
*codec
,
1083 const struct hda_fixup
*fix
, int action
)
1085 if (action
== HDA_FIXUP_ACT_PROBE
)
1086 snd_hda_jack_detect_enable_callback(codec
, 0x21,
1087 alc_update_knob_master
);
1090 static const struct hda_fixup alc880_fixups
[] = {
1091 [ALC880_FIXUP_GPIO1
] = {
1092 .type
= HDA_FIXUP_VERBS
,
1093 .v
.verbs
= alc_gpio1_init_verbs
,
1095 [ALC880_FIXUP_GPIO2
] = {
1096 .type
= HDA_FIXUP_VERBS
,
1097 .v
.verbs
= alc_gpio2_init_verbs
,
1099 [ALC880_FIXUP_MEDION_RIM
] = {
1100 .type
= HDA_FIXUP_VERBS
,
1101 .v
.verbs
= (const struct hda_verb
[]) {
1102 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1103 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
1107 .chain_id
= ALC880_FIXUP_GPIO2
,
1109 [ALC880_FIXUP_LG
] = {
1110 .type
= HDA_FIXUP_PINS
,
1111 .v
.pins
= (const struct hda_pintbl
[]) {
1112 /* disable bogus unused pins */
1113 { 0x16, 0x411111f0 },
1114 { 0x18, 0x411111f0 },
1115 { 0x1a, 0x411111f0 },
1119 [ALC880_FIXUP_LG_LW25
] = {
1120 .type
= HDA_FIXUP_PINS
,
1121 .v
.pins
= (const struct hda_pintbl
[]) {
1122 { 0x1a, 0x0181344f }, /* line-in */
1123 { 0x1b, 0x0321403f }, /* headphone */
1127 [ALC880_FIXUP_W810
] = {
1128 .type
= HDA_FIXUP_PINS
,
1129 .v
.pins
= (const struct hda_pintbl
[]) {
1130 /* disable bogus unused pins */
1131 { 0x17, 0x411111f0 },
1135 .chain_id
= ALC880_FIXUP_GPIO2
,
1137 [ALC880_FIXUP_EAPD_COEF
] = {
1138 .type
= HDA_FIXUP_VERBS
,
1139 .v
.verbs
= (const struct hda_verb
[]) {
1140 /* change to EAPD mode */
1141 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1142 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
1146 [ALC880_FIXUP_TCL_S700
] = {
1147 .type
= HDA_FIXUP_VERBS
,
1148 .v
.verbs
= (const struct hda_verb
[]) {
1149 /* change to EAPD mode */
1150 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1151 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
1155 .chain_id
= ALC880_FIXUP_GPIO2
,
1157 [ALC880_FIXUP_VOL_KNOB
] = {
1158 .type
= HDA_FIXUP_FUNC
,
1159 .v
.func
= alc880_fixup_vol_knob
,
1161 [ALC880_FIXUP_FUJITSU
] = {
1162 /* override all pins as BIOS on old Amilo is broken */
1163 .type
= HDA_FIXUP_PINS
,
1164 .v
.pins
= (const struct hda_pintbl
[]) {
1165 { 0x14, 0x0121401f }, /* HP */
1166 { 0x15, 0x99030120 }, /* speaker */
1167 { 0x16, 0x99030130 }, /* bass speaker */
1168 { 0x17, 0x411111f0 }, /* N/A */
1169 { 0x18, 0x411111f0 }, /* N/A */
1170 { 0x19, 0x01a19950 }, /* mic-in */
1171 { 0x1a, 0x411111f0 }, /* N/A */
1172 { 0x1b, 0x411111f0 }, /* N/A */
1173 { 0x1c, 0x411111f0 }, /* N/A */
1174 { 0x1d, 0x411111f0 }, /* N/A */
1175 { 0x1e, 0x01454140 }, /* SPDIF out */
1179 .chain_id
= ALC880_FIXUP_VOL_KNOB
,
1181 [ALC880_FIXUP_F1734
] = {
1182 /* almost compatible with FUJITSU, but no bass and SPDIF */
1183 .type
= HDA_FIXUP_PINS
,
1184 .v
.pins
= (const struct hda_pintbl
[]) {
1185 { 0x14, 0x0121401f }, /* HP */
1186 { 0x15, 0x99030120 }, /* speaker */
1187 { 0x16, 0x411111f0 }, /* N/A */
1188 { 0x17, 0x411111f0 }, /* N/A */
1189 { 0x18, 0x411111f0 }, /* N/A */
1190 { 0x19, 0x01a19950 }, /* mic-in */
1191 { 0x1a, 0x411111f0 }, /* N/A */
1192 { 0x1b, 0x411111f0 }, /* N/A */
1193 { 0x1c, 0x411111f0 }, /* N/A */
1194 { 0x1d, 0x411111f0 }, /* N/A */
1195 { 0x1e, 0x411111f0 }, /* N/A */
1199 .chain_id
= ALC880_FIXUP_VOL_KNOB
,
1201 [ALC880_FIXUP_UNIWILL
] = {
1202 /* need to fix HP and speaker pins to be parsed correctly */
1203 .type
= HDA_FIXUP_PINS
,
1204 .v
.pins
= (const struct hda_pintbl
[]) {
1205 { 0x14, 0x0121411f }, /* HP */
1206 { 0x15, 0x99030120 }, /* speaker */
1207 { 0x16, 0x99030130 }, /* bass speaker */
1211 [ALC880_FIXUP_UNIWILL_DIG
] = {
1212 .type
= HDA_FIXUP_PINS
,
1213 .v
.pins
= (const struct hda_pintbl
[]) {
1214 /* disable bogus unused pins */
1215 { 0x17, 0x411111f0 },
1216 { 0x19, 0x411111f0 },
1217 { 0x1b, 0x411111f0 },
1218 { 0x1f, 0x411111f0 },
1222 [ALC880_FIXUP_Z71V
] = {
1223 .type
= HDA_FIXUP_PINS
,
1224 .v
.pins
= (const struct hda_pintbl
[]) {
1225 /* set up the whole pins as BIOS is utterly broken */
1226 { 0x14, 0x99030120 }, /* speaker */
1227 { 0x15, 0x0121411f }, /* HP */
1228 { 0x16, 0x411111f0 }, /* N/A */
1229 { 0x17, 0x411111f0 }, /* N/A */
1230 { 0x18, 0x01a19950 }, /* mic-in */
1231 { 0x19, 0x411111f0 }, /* N/A */
1232 { 0x1a, 0x01813031 }, /* line-in */
1233 { 0x1b, 0x411111f0 }, /* N/A */
1234 { 0x1c, 0x411111f0 }, /* N/A */
1235 { 0x1d, 0x411111f0 }, /* N/A */
1236 { 0x1e, 0x0144111e }, /* SPDIF */
1240 [ALC880_FIXUP_ASUS_W5A
] = {
1241 .type
= HDA_FIXUP_PINS
,
1242 .v
.pins
= (const struct hda_pintbl
[]) {
1243 /* set up the whole pins as BIOS is utterly broken */
1244 { 0x14, 0x0121411f }, /* HP */
1245 { 0x15, 0x411111f0 }, /* N/A */
1246 { 0x16, 0x411111f0 }, /* N/A */
1247 { 0x17, 0x411111f0 }, /* N/A */
1248 { 0x18, 0x90a60160 }, /* mic */
1249 { 0x19, 0x411111f0 }, /* N/A */
1250 { 0x1a, 0x411111f0 }, /* N/A */
1251 { 0x1b, 0x411111f0 }, /* N/A */
1252 { 0x1c, 0x411111f0 }, /* N/A */
1253 { 0x1d, 0x411111f0 }, /* N/A */
1254 { 0x1e, 0xb743111e }, /* SPDIF out */
1258 .chain_id
= ALC880_FIXUP_GPIO1
,
1260 [ALC880_FIXUP_3ST_BASE
] = {
1261 .type
= HDA_FIXUP_PINS
,
1262 .v
.pins
= (const struct hda_pintbl
[]) {
1263 { 0x14, 0x01014010 }, /* line-out */
1264 { 0x15, 0x411111f0 }, /* N/A */
1265 { 0x16, 0x411111f0 }, /* N/A */
1266 { 0x17, 0x411111f0 }, /* N/A */
1267 { 0x18, 0x01a19c30 }, /* mic-in */
1268 { 0x19, 0x0121411f }, /* HP */
1269 { 0x1a, 0x01813031 }, /* line-in */
1270 { 0x1b, 0x02a19c40 }, /* front-mic */
1271 { 0x1c, 0x411111f0 }, /* N/A */
1272 { 0x1d, 0x411111f0 }, /* N/A */
1273 /* 0x1e is filled in below */
1274 { 0x1f, 0x411111f0 }, /* N/A */
1278 [ALC880_FIXUP_3ST
] = {
1279 .type
= HDA_FIXUP_PINS
,
1280 .v
.pins
= (const struct hda_pintbl
[]) {
1281 { 0x1e, 0x411111f0 }, /* N/A */
1285 .chain_id
= ALC880_FIXUP_3ST_BASE
,
1287 [ALC880_FIXUP_3ST_DIG
] = {
1288 .type
= HDA_FIXUP_PINS
,
1289 .v
.pins
= (const struct hda_pintbl
[]) {
1290 { 0x1e, 0x0144111e }, /* SPDIF */
1294 .chain_id
= ALC880_FIXUP_3ST_BASE
,
1296 [ALC880_FIXUP_5ST_BASE
] = {
1297 .type
= HDA_FIXUP_PINS
,
1298 .v
.pins
= (const struct hda_pintbl
[]) {
1299 { 0x14, 0x01014010 }, /* front */
1300 { 0x15, 0x411111f0 }, /* N/A */
1301 { 0x16, 0x01011411 }, /* CLFE */
1302 { 0x17, 0x01016412 }, /* surr */
1303 { 0x18, 0x01a19c30 }, /* mic-in */
1304 { 0x19, 0x0121411f }, /* HP */
1305 { 0x1a, 0x01813031 }, /* line-in */
1306 { 0x1b, 0x02a19c40 }, /* front-mic */
1307 { 0x1c, 0x411111f0 }, /* N/A */
1308 { 0x1d, 0x411111f0 }, /* N/A */
1309 /* 0x1e is filled in below */
1310 { 0x1f, 0x411111f0 }, /* N/A */
1314 [ALC880_FIXUP_5ST
] = {
1315 .type
= HDA_FIXUP_PINS
,
1316 .v
.pins
= (const struct hda_pintbl
[]) {
1317 { 0x1e, 0x411111f0 }, /* N/A */
1321 .chain_id
= ALC880_FIXUP_5ST_BASE
,
1323 [ALC880_FIXUP_5ST_DIG
] = {
1324 .type
= HDA_FIXUP_PINS
,
1325 .v
.pins
= (const struct hda_pintbl
[]) {
1326 { 0x1e, 0x0144111e }, /* SPDIF */
1330 .chain_id
= ALC880_FIXUP_5ST_BASE
,
1332 [ALC880_FIXUP_6ST_BASE
] = {
1333 .type
= HDA_FIXUP_PINS
,
1334 .v
.pins
= (const struct hda_pintbl
[]) {
1335 { 0x14, 0x01014010 }, /* front */
1336 { 0x15, 0x01016412 }, /* surr */
1337 { 0x16, 0x01011411 }, /* CLFE */
1338 { 0x17, 0x01012414 }, /* side */
1339 { 0x18, 0x01a19c30 }, /* mic-in */
1340 { 0x19, 0x02a19c40 }, /* front-mic */
1341 { 0x1a, 0x01813031 }, /* line-in */
1342 { 0x1b, 0x0121411f }, /* HP */
1343 { 0x1c, 0x411111f0 }, /* N/A */
1344 { 0x1d, 0x411111f0 }, /* N/A */
1345 /* 0x1e is filled in below */
1346 { 0x1f, 0x411111f0 }, /* N/A */
1350 [ALC880_FIXUP_6ST
] = {
1351 .type
= HDA_FIXUP_PINS
,
1352 .v
.pins
= (const struct hda_pintbl
[]) {
1353 { 0x1e, 0x411111f0 }, /* N/A */
1357 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1359 [ALC880_FIXUP_6ST_DIG
] = {
1360 .type
= HDA_FIXUP_PINS
,
1361 .v
.pins
= (const struct hda_pintbl
[]) {
1362 { 0x1e, 0x0144111e }, /* SPDIF */
1366 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1368 [ALC880_FIXUP_6ST_AUTOMUTE
] = {
1369 .type
= HDA_FIXUP_PINS
,
1370 .v
.pins
= (const struct hda_pintbl
[]) {
1371 { 0x1b, 0x0121401f }, /* HP with jack detect */
1374 .chained_before
= true,
1375 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1379 static const struct snd_pci_quirk alc880_fixup_tbl
[] = {
1380 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810
),
1381 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A
),
1382 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V
),
1383 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1
),
1384 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE
),
1385 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2
),
1386 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF
),
1387 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG
),
1388 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734
),
1389 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL
),
1390 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB
),
1391 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810
),
1392 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM
),
1393 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE
),
1394 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU
),
1395 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU
),
1396 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734
),
1397 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU
),
1398 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG
),
1399 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG
),
1400 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG
),
1401 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25
),
1402 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700
),
1404 /* Below is the copied entries from alc880_quirks.c.
1405 * It's not quite sure whether BIOS sets the correct pin-config table
1406 * on these machines, thus they are kept to be compatible with
1407 * the old static quirks. Once when it's confirmed to work without
1408 * these overrides, it'd be better to remove.
1410 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG
),
1411 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST
),
1412 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG
),
1413 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG
),
1414 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG
),
1415 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG
),
1416 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG
),
1417 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST
),
1418 SND_PCI_QUIRK(0x1039, 0x1234, NULL
, ALC880_FIXUP_6ST_DIG
),
1419 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST
),
1420 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST
),
1421 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST
),
1422 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST
),
1423 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST
),
1424 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG
),
1425 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG
),
1426 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG
),
1427 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG
),
1428 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG
),
1429 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG
),
1430 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG
),
1431 SND_PCI_QUIRK(0x2668, 0x8086, NULL
, ALC880_FIXUP_6ST_DIG
), /* broken BIOS */
1432 SND_PCI_QUIRK(0x8086, 0x2668, NULL
, ALC880_FIXUP_6ST_DIG
),
1433 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1434 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1435 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1436 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1437 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1438 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1439 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1440 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1441 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1442 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1444 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST
),
1445 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG
),
1446 SND_PCI_QUIRK(0xe803, 0x1019, NULL
, ALC880_FIXUP_6ST_DIG
),
1450 static const struct hda_model_fixup alc880_fixup_models
[] = {
1451 {.id
= ALC880_FIXUP_3ST
, .name
= "3stack"},
1452 {.id
= ALC880_FIXUP_3ST_DIG
, .name
= "3stack-digout"},
1453 {.id
= ALC880_FIXUP_5ST
, .name
= "5stack"},
1454 {.id
= ALC880_FIXUP_5ST_DIG
, .name
= "5stack-digout"},
1455 {.id
= ALC880_FIXUP_6ST
, .name
= "6stack"},
1456 {.id
= ALC880_FIXUP_6ST_DIG
, .name
= "6stack-digout"},
1457 {.id
= ALC880_FIXUP_6ST_AUTOMUTE
, .name
= "6stack-automute"},
1463 * OK, here we have finally the patch for ALC880
1465 static int patch_alc880(struct hda_codec
*codec
)
1467 struct alc_spec
*spec
;
1470 err
= alc_alloc_spec(codec
, 0x0b);
1475 spec
->gen
.need_dac_fix
= 1;
1476 spec
->gen
.beep_nid
= 0x01;
1478 codec
->patch_ops
.unsol_event
= alc880_unsol_event
;
1480 snd_hda_pick_fixup(codec
, alc880_fixup_models
, alc880_fixup_tbl
,
1482 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
1484 /* automatic parse from the BIOS config */
1485 err
= alc880_parse_auto_config(codec
);
1489 if (!spec
->gen
.no_analog
)
1490 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
1492 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
1505 static int alc260_parse_auto_config(struct hda_codec
*codec
)
1507 static const hda_nid_t alc260_ignore
[] = { 0x17, 0 };
1508 static const hda_nid_t alc260_ssids
[] = { 0x10, 0x15, 0x0f, 0 };
1509 return alc_parse_auto_config(codec
, alc260_ignore
, alc260_ssids
);
1516 ALC260_FIXUP_HP_DC5750
,
1517 ALC260_FIXUP_HP_PIN_0F
,
1520 ALC260_FIXUP_GPIO1_TOGGLE
,
1521 ALC260_FIXUP_REPLACER
,
1522 ALC260_FIXUP_HP_B1900
,
1524 ALC260_FIXUP_FSC_S7020
,
1525 ALC260_FIXUP_FSC_S7020_JWSE
,
1526 ALC260_FIXUP_VAIO_PINS
,
1529 static void alc260_gpio1_automute(struct hda_codec
*codec
)
1531 struct alc_spec
*spec
= codec
->spec
;
1532 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
1533 spec
->gen
.hp_jack_present
);
1536 static void alc260_fixup_gpio1_toggle(struct hda_codec
*codec
,
1537 const struct hda_fixup
*fix
, int action
)
1539 struct alc_spec
*spec
= codec
->spec
;
1540 if (action
== HDA_FIXUP_ACT_PROBE
) {
1541 /* although the machine has only one output pin, we need to
1542 * toggle GPIO1 according to the jack state
1544 spec
->gen
.automute_hook
= alc260_gpio1_automute
;
1545 spec
->gen
.detect_hp
= 1;
1546 spec
->gen
.automute_speaker
= 1;
1547 spec
->gen
.autocfg
.hp_pins
[0] = 0x0f; /* copy it for automute */
1548 snd_hda_jack_detect_enable_callback(codec
, 0x0f,
1549 snd_hda_gen_hp_automute
);
1550 snd_hda_add_verbs(codec
, alc_gpio1_init_verbs
);
1554 static void alc260_fixup_kn1(struct hda_codec
*codec
,
1555 const struct hda_fixup
*fix
, int action
)
1557 struct alc_spec
*spec
= codec
->spec
;
1558 static const struct hda_pintbl pincfgs
[] = {
1559 { 0x0f, 0x02214000 }, /* HP/speaker */
1560 { 0x12, 0x90a60160 }, /* int mic */
1561 { 0x13, 0x02a19000 }, /* ext mic */
1562 { 0x18, 0x01446000 }, /* SPDIF out */
1563 /* disable bogus I/O pins */
1564 { 0x10, 0x411111f0 },
1565 { 0x11, 0x411111f0 },
1566 { 0x14, 0x411111f0 },
1567 { 0x15, 0x411111f0 },
1568 { 0x16, 0x411111f0 },
1569 { 0x17, 0x411111f0 },
1570 { 0x19, 0x411111f0 },
1575 case HDA_FIXUP_ACT_PRE_PROBE
:
1576 snd_hda_apply_pincfgs(codec
, pincfgs
);
1578 case HDA_FIXUP_ACT_PROBE
:
1579 spec
->init_amp
= ALC_INIT_NONE
;
1584 static void alc260_fixup_fsc_s7020(struct hda_codec
*codec
,
1585 const struct hda_fixup
*fix
, int action
)
1587 struct alc_spec
*spec
= codec
->spec
;
1588 if (action
== HDA_FIXUP_ACT_PROBE
)
1589 spec
->init_amp
= ALC_INIT_NONE
;
1592 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec
*codec
,
1593 const struct hda_fixup
*fix
, int action
)
1595 struct alc_spec
*spec
= codec
->spec
;
1596 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
1597 spec
->gen
.add_jack_modes
= 1;
1598 spec
->gen
.hp_mic
= 1;
1602 static const struct hda_fixup alc260_fixups
[] = {
1603 [ALC260_FIXUP_HP_DC5750
] = {
1604 .type
= HDA_FIXUP_PINS
,
1605 .v
.pins
= (const struct hda_pintbl
[]) {
1606 { 0x11, 0x90130110 }, /* speaker */
1610 [ALC260_FIXUP_HP_PIN_0F
] = {
1611 .type
= HDA_FIXUP_PINS
,
1612 .v
.pins
= (const struct hda_pintbl
[]) {
1613 { 0x0f, 0x01214000 }, /* HP */
1617 [ALC260_FIXUP_COEF
] = {
1618 .type
= HDA_FIXUP_VERBS
,
1619 .v
.verbs
= (const struct hda_verb
[]) {
1620 { 0x1a, AC_VERB_SET_COEF_INDEX
, 0x07 },
1621 { 0x1a, AC_VERB_SET_PROC_COEF
, 0x3040 },
1625 [ALC260_FIXUP_GPIO1
] = {
1626 .type
= HDA_FIXUP_VERBS
,
1627 .v
.verbs
= alc_gpio1_init_verbs
,
1629 [ALC260_FIXUP_GPIO1_TOGGLE
] = {
1630 .type
= HDA_FIXUP_FUNC
,
1631 .v
.func
= alc260_fixup_gpio1_toggle
,
1633 .chain_id
= ALC260_FIXUP_HP_PIN_0F
,
1635 [ALC260_FIXUP_REPLACER
] = {
1636 .type
= HDA_FIXUP_VERBS
,
1637 .v
.verbs
= (const struct hda_verb
[]) {
1638 { 0x1a, AC_VERB_SET_COEF_INDEX
, 0x07 },
1639 { 0x1a, AC_VERB_SET_PROC_COEF
, 0x3050 },
1643 .chain_id
= ALC260_FIXUP_GPIO1_TOGGLE
,
1645 [ALC260_FIXUP_HP_B1900
] = {
1646 .type
= HDA_FIXUP_FUNC
,
1647 .v
.func
= alc260_fixup_gpio1_toggle
,
1649 .chain_id
= ALC260_FIXUP_COEF
,
1651 [ALC260_FIXUP_KN1
] = {
1652 .type
= HDA_FIXUP_FUNC
,
1653 .v
.func
= alc260_fixup_kn1
,
1655 [ALC260_FIXUP_FSC_S7020
] = {
1656 .type
= HDA_FIXUP_FUNC
,
1657 .v
.func
= alc260_fixup_fsc_s7020
,
1659 [ALC260_FIXUP_FSC_S7020_JWSE
] = {
1660 .type
= HDA_FIXUP_FUNC
,
1661 .v
.func
= alc260_fixup_fsc_s7020_jwse
,
1663 .chain_id
= ALC260_FIXUP_FSC_S7020
,
1665 [ALC260_FIXUP_VAIO_PINS
] = {
1666 .type
= HDA_FIXUP_PINS
,
1667 .v
.pins
= (const struct hda_pintbl
[]) {
1668 /* Pin configs are missing completely on some VAIOs */
1669 { 0x0f, 0x01211020 },
1670 { 0x10, 0x0001003f },
1671 { 0x11, 0x411111f0 },
1672 { 0x12, 0x01a15930 },
1673 { 0x13, 0x411111f0 },
1674 { 0x14, 0x411111f0 },
1675 { 0x15, 0x411111f0 },
1676 { 0x16, 0x411111f0 },
1677 { 0x17, 0x411111f0 },
1678 { 0x18, 0x411111f0 },
1679 { 0x19, 0x411111f0 },
1685 static const struct snd_pci_quirk alc260_fixup_tbl
[] = {
1686 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1
),
1687 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF
),
1688 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1
),
1689 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750
),
1690 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900
),
1691 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS
),
1692 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F
),
1693 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020
),
1694 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1
),
1695 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1
),
1696 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER
),
1697 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF
),
1701 static const struct hda_model_fixup alc260_fixup_models
[] = {
1702 {.id
= ALC260_FIXUP_GPIO1
, .name
= "gpio1"},
1703 {.id
= ALC260_FIXUP_COEF
, .name
= "coef"},
1704 {.id
= ALC260_FIXUP_FSC_S7020
, .name
= "fujitsu"},
1705 {.id
= ALC260_FIXUP_FSC_S7020_JWSE
, .name
= "fujitsu-jwse"},
1711 static int patch_alc260(struct hda_codec
*codec
)
1713 struct alc_spec
*spec
;
1716 err
= alc_alloc_spec(codec
, 0x07);
1721 /* as quite a few machines require HP amp for speaker outputs,
1722 * it's easier to enable it unconditionally; even if it's unneeded,
1723 * it's almost harmless.
1725 spec
->gen
.prefer_hp_amp
= 1;
1726 spec
->gen
.beep_nid
= 0x01;
1728 spec
->shutup
= alc_eapd_shutup
;
1730 snd_hda_pick_fixup(codec
, alc260_fixup_models
, alc260_fixup_tbl
,
1732 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
1734 /* automatic parse from the BIOS config */
1735 err
= alc260_parse_auto_config(codec
);
1739 if (!spec
->gen
.no_analog
)
1740 set_beep_amp(spec
, 0x07, 0x05, HDA_INPUT
);
1742 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
1753 * ALC882/883/885/888/889 support
1755 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1756 * configuration. Each pin widget can choose any input DACs and a mixer.
1757 * Each ADC is connected from a mixer of all inputs. This makes possible
1758 * 6-channel independent captures.
1760 * In addition, an independent DAC for the multi-playback (not used in this
1768 ALC882_FIXUP_ABIT_AW9D_MAX
,
1769 ALC882_FIXUP_LENOVO_Y530
,
1770 ALC882_FIXUP_PB_M5210
,
1771 ALC882_FIXUP_ACER_ASPIRE_7736
,
1772 ALC882_FIXUP_ASUS_W90V
,
1774 ALC889_FIXUP_FRONT_HP_NO_PRESENCE
,
1775 ALC889_FIXUP_VAIO_TT
,
1776 ALC888_FIXUP_EEE1601
,
1779 ALC883_FIXUP_ACER_EAPD
,
1784 ALC882_FIXUP_ASUS_W2JC
,
1785 ALC882_FIXUP_ACER_ASPIRE_4930G
,
1786 ALC882_FIXUP_ACER_ASPIRE_8930G
,
1787 ALC882_FIXUP_ASPIRE_8930G_VERBS
,
1788 ALC885_FIXUP_MACPRO_GPIO
,
1789 ALC889_FIXUP_DAC_ROUTE
,
1790 ALC889_FIXUP_MBP_VREF
,
1791 ALC889_FIXUP_IMAC91_VREF
,
1792 ALC889_FIXUP_MBA11_VREF
,
1793 ALC889_FIXUP_MBA21_VREF
,
1794 ALC889_FIXUP_MP11_VREF
,
1795 ALC889_FIXUP_MP41_VREF
,
1796 ALC882_FIXUP_INV_DMIC
,
1797 ALC882_FIXUP_NO_PRIMARY_HP
,
1798 ALC887_FIXUP_ASUS_BASS
,
1799 ALC887_FIXUP_BASS_CHMAP
,
1802 static void alc889_fixup_coef(struct hda_codec
*codec
,
1803 const struct hda_fixup
*fix
, int action
)
1805 if (action
!= HDA_FIXUP_ACT_INIT
)
1807 alc_update_coef_idx(codec
, 7, 0, 0x2030);
1810 /* toggle speaker-output according to the hp-jack state */
1811 static void alc882_gpio_mute(struct hda_codec
*codec
, int pin
, int muted
)
1813 unsigned int gpiostate
, gpiomask
, gpiodir
;
1815 gpiostate
= snd_hda_codec_read(codec
, codec
->core
.afg
, 0,
1816 AC_VERB_GET_GPIO_DATA
, 0);
1819 gpiostate
|= (1 << pin
);
1821 gpiostate
&= ~(1 << pin
);
1823 gpiomask
= snd_hda_codec_read(codec
, codec
->core
.afg
, 0,
1824 AC_VERB_GET_GPIO_MASK
, 0);
1825 gpiomask
|= (1 << pin
);
1827 gpiodir
= snd_hda_codec_read(codec
, codec
->core
.afg
, 0,
1828 AC_VERB_GET_GPIO_DIRECTION
, 0);
1829 gpiodir
|= (1 << pin
);
1832 snd_hda_codec_write(codec
, codec
->core
.afg
, 0,
1833 AC_VERB_SET_GPIO_MASK
, gpiomask
);
1834 snd_hda_codec_write(codec
, codec
->core
.afg
, 0,
1835 AC_VERB_SET_GPIO_DIRECTION
, gpiodir
);
1839 snd_hda_codec_write(codec
, codec
->core
.afg
, 0,
1840 AC_VERB_SET_GPIO_DATA
, gpiostate
);
1843 /* set up GPIO at initialization */
1844 static void alc885_fixup_macpro_gpio(struct hda_codec
*codec
,
1845 const struct hda_fixup
*fix
, int action
)
1847 if (action
!= HDA_FIXUP_ACT_INIT
)
1849 alc882_gpio_mute(codec
, 0, 0);
1850 alc882_gpio_mute(codec
, 1, 0);
1853 /* Fix the connection of some pins for ALC889:
1854 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1855 * work correctly (bko#42740)
1857 static void alc889_fixup_dac_route(struct hda_codec
*codec
,
1858 const struct hda_fixup
*fix
, int action
)
1860 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
1861 /* fake the connections during parsing the tree */
1862 hda_nid_t conn1
[2] = { 0x0c, 0x0d };
1863 hda_nid_t conn2
[2] = { 0x0e, 0x0f };
1864 snd_hda_override_conn_list(codec
, 0x14, 2, conn1
);
1865 snd_hda_override_conn_list(codec
, 0x15, 2, conn1
);
1866 snd_hda_override_conn_list(codec
, 0x18, 2, conn2
);
1867 snd_hda_override_conn_list(codec
, 0x1a, 2, conn2
);
1868 } else if (action
== HDA_FIXUP_ACT_PROBE
) {
1869 /* restore the connections */
1870 hda_nid_t conn
[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1871 snd_hda_override_conn_list(codec
, 0x14, 5, conn
);
1872 snd_hda_override_conn_list(codec
, 0x15, 5, conn
);
1873 snd_hda_override_conn_list(codec
, 0x18, 5, conn
);
1874 snd_hda_override_conn_list(codec
, 0x1a, 5, conn
);
1878 /* Set VREF on HP pin */
1879 static void alc889_fixup_mbp_vref(struct hda_codec
*codec
,
1880 const struct hda_fixup
*fix
, int action
)
1882 struct alc_spec
*spec
= codec
->spec
;
1883 static hda_nid_t nids
[3] = { 0x14, 0x15, 0x19 };
1886 if (action
!= HDA_FIXUP_ACT_INIT
)
1888 for (i
= 0; i
< ARRAY_SIZE(nids
); i
++) {
1889 unsigned int val
= snd_hda_codec_get_pincfg(codec
, nids
[i
]);
1890 if (get_defcfg_device(val
) != AC_JACK_HP_OUT
)
1892 val
= snd_hda_codec_get_pin_target(codec
, nids
[i
]);
1893 val
|= AC_PINCTL_VREF_80
;
1894 snd_hda_set_pin_ctl(codec
, nids
[i
], val
);
1895 spec
->gen
.keep_vref_in_automute
= 1;
1900 static void alc889_fixup_mac_pins(struct hda_codec
*codec
,
1901 const hda_nid_t
*nids
, int num_nids
)
1903 struct alc_spec
*spec
= codec
->spec
;
1906 for (i
= 0; i
< num_nids
; i
++) {
1908 val
= snd_hda_codec_get_pin_target(codec
, nids
[i
]);
1909 val
|= AC_PINCTL_VREF_50
;
1910 snd_hda_set_pin_ctl(codec
, nids
[i
], val
);
1912 spec
->gen
.keep_vref_in_automute
= 1;
1915 /* Set VREF on speaker pins on imac91 */
1916 static void alc889_fixup_imac91_vref(struct hda_codec
*codec
,
1917 const struct hda_fixup
*fix
, int action
)
1919 static hda_nid_t nids
[2] = { 0x18, 0x1a };
1921 if (action
== HDA_FIXUP_ACT_INIT
)
1922 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
1925 /* Set VREF on speaker pins on mba11 */
1926 static void alc889_fixup_mba11_vref(struct hda_codec
*codec
,
1927 const struct hda_fixup
*fix
, int action
)
1929 static hda_nid_t nids
[1] = { 0x18 };
1931 if (action
== HDA_FIXUP_ACT_INIT
)
1932 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
1935 /* Set VREF on speaker pins on mba21 */
1936 static void alc889_fixup_mba21_vref(struct hda_codec
*codec
,
1937 const struct hda_fixup
*fix
, int action
)
1939 static hda_nid_t nids
[2] = { 0x18, 0x19 };
1941 if (action
== HDA_FIXUP_ACT_INIT
)
1942 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
1945 /* Don't take HP output as primary
1946 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
1947 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
1949 static void alc882_fixup_no_primary_hp(struct hda_codec
*codec
,
1950 const struct hda_fixup
*fix
, int action
)
1952 struct alc_spec
*spec
= codec
->spec
;
1953 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
1954 spec
->gen
.no_primary_hp
= 1;
1955 spec
->gen
.no_multi_io
= 1;
1959 static void alc_fixup_bass_chmap(struct hda_codec
*codec
,
1960 const struct hda_fixup
*fix
, int action
);
1962 static const struct hda_fixup alc882_fixups
[] = {
1963 [ALC882_FIXUP_ABIT_AW9D_MAX
] = {
1964 .type
= HDA_FIXUP_PINS
,
1965 .v
.pins
= (const struct hda_pintbl
[]) {
1966 { 0x15, 0x01080104 }, /* side */
1967 { 0x16, 0x01011012 }, /* rear */
1968 { 0x17, 0x01016011 }, /* clfe */
1972 [ALC882_FIXUP_LENOVO_Y530
] = {
1973 .type
= HDA_FIXUP_PINS
,
1974 .v
.pins
= (const struct hda_pintbl
[]) {
1975 { 0x15, 0x99130112 }, /* rear int speakers */
1976 { 0x16, 0x99130111 }, /* subwoofer */
1980 [ALC882_FIXUP_PB_M5210
] = {
1981 .type
= HDA_FIXUP_PINCTLS
,
1982 .v
.pins
= (const struct hda_pintbl
[]) {
1983 { 0x19, PIN_VREF50
},
1987 [ALC882_FIXUP_ACER_ASPIRE_7736
] = {
1988 .type
= HDA_FIXUP_FUNC
,
1989 .v
.func
= alc_fixup_sku_ignore
,
1991 [ALC882_FIXUP_ASUS_W90V
] = {
1992 .type
= HDA_FIXUP_PINS
,
1993 .v
.pins
= (const struct hda_pintbl
[]) {
1994 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
1998 [ALC889_FIXUP_CD
] = {
1999 .type
= HDA_FIXUP_PINS
,
2000 .v
.pins
= (const struct hda_pintbl
[]) {
2001 { 0x1c, 0x993301f0 }, /* CD */
2005 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE
] = {
2006 .type
= HDA_FIXUP_PINS
,
2007 .v
.pins
= (const struct hda_pintbl
[]) {
2008 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2012 .chain_id
= ALC889_FIXUP_CD
,
2014 [ALC889_FIXUP_VAIO_TT
] = {
2015 .type
= HDA_FIXUP_PINS
,
2016 .v
.pins
= (const struct hda_pintbl
[]) {
2017 { 0x17, 0x90170111 }, /* hidden surround speaker */
2021 [ALC888_FIXUP_EEE1601
] = {
2022 .type
= HDA_FIXUP_VERBS
,
2023 .v
.verbs
= (const struct hda_verb
[]) {
2024 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0b },
2025 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0838 },
2029 [ALC882_FIXUP_EAPD
] = {
2030 .type
= HDA_FIXUP_VERBS
,
2031 .v
.verbs
= (const struct hda_verb
[]) {
2032 /* change to EAPD mode */
2033 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2034 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
2038 [ALC883_FIXUP_EAPD
] = {
2039 .type
= HDA_FIXUP_VERBS
,
2040 .v
.verbs
= (const struct hda_verb
[]) {
2041 /* change to EAPD mode */
2042 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2043 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
2047 [ALC883_FIXUP_ACER_EAPD
] = {
2048 .type
= HDA_FIXUP_VERBS
,
2049 .v
.verbs
= (const struct hda_verb
[]) {
2050 /* eanable EAPD on Acer laptops */
2051 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2052 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2056 [ALC882_FIXUP_GPIO1
] = {
2057 .type
= HDA_FIXUP_VERBS
,
2058 .v
.verbs
= alc_gpio1_init_verbs
,
2060 [ALC882_FIXUP_GPIO2
] = {
2061 .type
= HDA_FIXUP_VERBS
,
2062 .v
.verbs
= alc_gpio2_init_verbs
,
2064 [ALC882_FIXUP_GPIO3
] = {
2065 .type
= HDA_FIXUP_VERBS
,
2066 .v
.verbs
= alc_gpio3_init_verbs
,
2068 [ALC882_FIXUP_ASUS_W2JC
] = {
2069 .type
= HDA_FIXUP_VERBS
,
2070 .v
.verbs
= alc_gpio1_init_verbs
,
2072 .chain_id
= ALC882_FIXUP_EAPD
,
2074 [ALC889_FIXUP_COEF
] = {
2075 .type
= HDA_FIXUP_FUNC
,
2076 .v
.func
= alc889_fixup_coef
,
2078 [ALC882_FIXUP_ACER_ASPIRE_4930G
] = {
2079 .type
= HDA_FIXUP_PINS
,
2080 .v
.pins
= (const struct hda_pintbl
[]) {
2081 { 0x16, 0x99130111 }, /* CLFE speaker */
2082 { 0x17, 0x99130112 }, /* surround speaker */
2086 .chain_id
= ALC882_FIXUP_GPIO1
,
2088 [ALC882_FIXUP_ACER_ASPIRE_8930G
] = {
2089 .type
= HDA_FIXUP_PINS
,
2090 .v
.pins
= (const struct hda_pintbl
[]) {
2091 { 0x16, 0x99130111 }, /* CLFE speaker */
2092 { 0x1b, 0x99130112 }, /* surround speaker */
2096 .chain_id
= ALC882_FIXUP_ASPIRE_8930G_VERBS
,
2098 [ALC882_FIXUP_ASPIRE_8930G_VERBS
] = {
2099 /* additional init verbs for Acer Aspire 8930G */
2100 .type
= HDA_FIXUP_VERBS
,
2101 .v
.verbs
= (const struct hda_verb
[]) {
2102 /* Enable all DACs */
2103 /* DAC DISABLE/MUTE 1? */
2104 /* setting bits 1-5 disables DAC nids 0x02-0x06
2105 * apparently. Init=0x38 */
2106 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x03 },
2107 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0000 },
2108 /* DAC DISABLE/MUTE 2? */
2109 /* some bit here disables the other DACs.
2111 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x08 },
2112 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0000 },
2114 * This laptop has a stereo digital microphone.
2115 * The mics are only 1cm apart which makes the stereo
2116 * useless. However, either the mic or the ALC889
2117 * makes the signal become a difference/sum signal
2118 * instead of standard stereo, which is annoying.
2119 * So instead we flip this bit which makes the
2120 * codec replicate the sum signal to both channels,
2121 * turning it into a normal mono mic.
2123 /* DMIC_CONTROL? Init value = 0x0001 */
2124 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0b },
2125 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0003 },
2126 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2127 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2131 .chain_id
= ALC882_FIXUP_GPIO1
,
2133 [ALC885_FIXUP_MACPRO_GPIO
] = {
2134 .type
= HDA_FIXUP_FUNC
,
2135 .v
.func
= alc885_fixup_macpro_gpio
,
2137 [ALC889_FIXUP_DAC_ROUTE
] = {
2138 .type
= HDA_FIXUP_FUNC
,
2139 .v
.func
= alc889_fixup_dac_route
,
2141 [ALC889_FIXUP_MBP_VREF
] = {
2142 .type
= HDA_FIXUP_FUNC
,
2143 .v
.func
= alc889_fixup_mbp_vref
,
2145 .chain_id
= ALC882_FIXUP_GPIO1
,
2147 [ALC889_FIXUP_IMAC91_VREF
] = {
2148 .type
= HDA_FIXUP_FUNC
,
2149 .v
.func
= alc889_fixup_imac91_vref
,
2151 .chain_id
= ALC882_FIXUP_GPIO1
,
2153 [ALC889_FIXUP_MBA11_VREF
] = {
2154 .type
= HDA_FIXUP_FUNC
,
2155 .v
.func
= alc889_fixup_mba11_vref
,
2157 .chain_id
= ALC889_FIXUP_MBP_VREF
,
2159 [ALC889_FIXUP_MBA21_VREF
] = {
2160 .type
= HDA_FIXUP_FUNC
,
2161 .v
.func
= alc889_fixup_mba21_vref
,
2163 .chain_id
= ALC889_FIXUP_MBP_VREF
,
2165 [ALC889_FIXUP_MP11_VREF
] = {
2166 .type
= HDA_FIXUP_FUNC
,
2167 .v
.func
= alc889_fixup_mba11_vref
,
2169 .chain_id
= ALC885_FIXUP_MACPRO_GPIO
,
2171 [ALC889_FIXUP_MP41_VREF
] = {
2172 .type
= HDA_FIXUP_FUNC
,
2173 .v
.func
= alc889_fixup_mbp_vref
,
2175 .chain_id
= ALC885_FIXUP_MACPRO_GPIO
,
2177 [ALC882_FIXUP_INV_DMIC
] = {
2178 .type
= HDA_FIXUP_FUNC
,
2179 .v
.func
= alc_fixup_inv_dmic
,
2181 [ALC882_FIXUP_NO_PRIMARY_HP
] = {
2182 .type
= HDA_FIXUP_FUNC
,
2183 .v
.func
= alc882_fixup_no_primary_hp
,
2185 [ALC887_FIXUP_ASUS_BASS
] = {
2186 .type
= HDA_FIXUP_PINS
,
2187 .v
.pins
= (const struct hda_pintbl
[]) {
2188 {0x16, 0x99130130}, /* bass speaker */
2192 .chain_id
= ALC887_FIXUP_BASS_CHMAP
,
2194 [ALC887_FIXUP_BASS_CHMAP
] = {
2195 .type
= HDA_FIXUP_FUNC
,
2196 .v
.func
= alc_fixup_bass_chmap
,
2200 static const struct snd_pci_quirk alc882_fixup_tbl
[] = {
2201 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD
),
2202 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2203 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2204 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD
),
2205 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2206 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD
),
2207 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD
),
2208 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2209 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2210 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2211 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2212 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2213 ALC882_FIXUP_ACER_ASPIRE_8930G
),
2214 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2215 ALC882_FIXUP_ACER_ASPIRE_8930G
),
2216 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2217 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2218 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2219 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2220 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2221 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2222 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210
),
2223 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2224 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2225 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE
),
2226 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G
),
2227 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736
),
2228 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD
),
2229 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V
),
2230 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC
),
2231 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601
),
2232 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS
),
2233 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3
),
2234 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT
),
2235 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP
),
2236 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP
),
2237 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP
),
2239 /* All Apple entries are in codec SSIDs */
2240 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF
),
2241 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF
),
2242 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF
),
2243 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF
),
2244 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO
),
2245 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO
),
2246 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF
),
2247 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF
),
2248 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD
),
2249 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF
),
2250 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF
),
2251 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF
),
2252 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF
),
2253 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO
),
2254 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF
),
2255 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF
),
2256 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF
),
2257 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF
),
2258 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF
),
2259 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF
),
2260 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF
),
2261 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF
),
2263 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD
),
2264 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD
),
2265 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3
),
2266 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE
),
2267 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX
),
2268 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD
),
2269 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD
),
2270 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530
),
2271 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF
),
2275 static const struct hda_model_fixup alc882_fixup_models
[] = {
2276 {.id
= ALC882_FIXUP_ACER_ASPIRE_4930G
, .name
= "acer-aspire-4930g"},
2277 {.id
= ALC882_FIXUP_ACER_ASPIRE_8930G
, .name
= "acer-aspire-8930g"},
2278 {.id
= ALC883_FIXUP_ACER_EAPD
, .name
= "acer-aspire"},
2279 {.id
= ALC882_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2280 {.id
= ALC882_FIXUP_NO_PRIMARY_HP
, .name
= "no-primary-hp"},
2285 * BIOS auto configuration
2287 /* almost identical with ALC880 parser... */
2288 static int alc882_parse_auto_config(struct hda_codec
*codec
)
2290 static const hda_nid_t alc882_ignore
[] = { 0x1d, 0 };
2291 static const hda_nid_t alc882_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2292 return alc_parse_auto_config(codec
, alc882_ignore
, alc882_ssids
);
2297 static int patch_alc882(struct hda_codec
*codec
)
2299 struct alc_spec
*spec
;
2302 err
= alc_alloc_spec(codec
, 0x0b);
2308 switch (codec
->core
.vendor_id
) {
2314 /* ALC883 and variants */
2315 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
2319 snd_hda_pick_fixup(codec
, alc882_fixup_models
, alc882_fixup_tbl
,
2321 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2323 alc_auto_parse_customize_define(codec
);
2325 if (has_cdefine_beep(codec
))
2326 spec
->gen
.beep_nid
= 0x01;
2328 /* automatic parse from the BIOS config */
2329 err
= alc882_parse_auto_config(codec
);
2333 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
)
2334 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
2336 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
2349 static int alc262_parse_auto_config(struct hda_codec
*codec
)
2351 static const hda_nid_t alc262_ignore
[] = { 0x1d, 0 };
2352 static const hda_nid_t alc262_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2353 return alc_parse_auto_config(codec
, alc262_ignore
, alc262_ssids
);
2360 ALC262_FIXUP_FSC_H270
,
2361 ALC262_FIXUP_FSC_S7110
,
2362 ALC262_FIXUP_HP_Z200
,
2364 ALC262_FIXUP_LENOVO_3000
,
2366 ALC262_FIXUP_BENQ_T31
,
2367 ALC262_FIXUP_INV_DMIC
,
2368 ALC262_FIXUP_INTEL_BAYLEYBAY
,
2371 static const struct hda_fixup alc262_fixups
[] = {
2372 [ALC262_FIXUP_FSC_H270
] = {
2373 .type
= HDA_FIXUP_PINS
,
2374 .v
.pins
= (const struct hda_pintbl
[]) {
2375 { 0x14, 0x99130110 }, /* speaker */
2376 { 0x15, 0x0221142f }, /* front HP */
2377 { 0x1b, 0x0121141f }, /* rear HP */
2381 [ALC262_FIXUP_FSC_S7110
] = {
2382 .type
= HDA_FIXUP_PINS
,
2383 .v
.pins
= (const struct hda_pintbl
[]) {
2384 { 0x15, 0x90170110 }, /* speaker */
2388 .chain_id
= ALC262_FIXUP_BENQ
,
2390 [ALC262_FIXUP_HP_Z200
] = {
2391 .type
= HDA_FIXUP_PINS
,
2392 .v
.pins
= (const struct hda_pintbl
[]) {
2393 { 0x16, 0x99130120 }, /* internal speaker */
2397 [ALC262_FIXUP_TYAN
] = {
2398 .type
= HDA_FIXUP_PINS
,
2399 .v
.pins
= (const struct hda_pintbl
[]) {
2400 { 0x14, 0x1993e1f0 }, /* int AUX */
2404 [ALC262_FIXUP_LENOVO_3000
] = {
2405 .type
= HDA_FIXUP_PINCTLS
,
2406 .v
.pins
= (const struct hda_pintbl
[]) {
2407 { 0x19, PIN_VREF50
},
2411 .chain_id
= ALC262_FIXUP_BENQ
,
2413 [ALC262_FIXUP_BENQ
] = {
2414 .type
= HDA_FIXUP_VERBS
,
2415 .v
.verbs
= (const struct hda_verb
[]) {
2416 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2417 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
2421 [ALC262_FIXUP_BENQ_T31
] = {
2422 .type
= HDA_FIXUP_VERBS
,
2423 .v
.verbs
= (const struct hda_verb
[]) {
2424 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2425 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2429 [ALC262_FIXUP_INV_DMIC
] = {
2430 .type
= HDA_FIXUP_FUNC
,
2431 .v
.func
= alc_fixup_inv_dmic
,
2433 [ALC262_FIXUP_INTEL_BAYLEYBAY
] = {
2434 .type
= HDA_FIXUP_FUNC
,
2435 .v
.func
= alc_fixup_no_depop_delay
,
2439 static const struct snd_pci_quirk alc262_fixup_tbl
[] = {
2440 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200
),
2441 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110
),
2442 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ
),
2443 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN
),
2444 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270
),
2445 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000
),
2446 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ
),
2447 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31
),
2448 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY
),
2452 static const struct hda_model_fixup alc262_fixup_models
[] = {
2453 {.id
= ALC262_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2459 static int patch_alc262(struct hda_codec
*codec
)
2461 struct alc_spec
*spec
;
2464 err
= alc_alloc_spec(codec
, 0x0b);
2469 spec
->gen
.shared_mic_vref_pin
= 0x18;
2471 spec
->shutup
= alc_eapd_shutup
;
2474 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2477 alc_update_coefex_idx(codec
, 0x1a, 7, 0, 0x80);
2479 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
2481 snd_hda_pick_fixup(codec
, alc262_fixup_models
, alc262_fixup_tbl
,
2483 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2485 alc_auto_parse_customize_define(codec
);
2487 if (has_cdefine_beep(codec
))
2488 spec
->gen
.beep_nid
= 0x01;
2490 /* automatic parse from the BIOS config */
2491 err
= alc262_parse_auto_config(codec
);
2495 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
)
2496 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
2498 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
2510 /* bind Beep switches of both NID 0x0f and 0x10 */
2511 static const struct hda_bind_ctls alc268_bind_beep_sw
= {
2512 .ops
= &snd_hda_bind_sw
,
2514 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT
),
2515 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT
),
2520 static const struct snd_kcontrol_new alc268_beep_mixer
[] = {
2521 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT
),
2522 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw
),
2526 /* set PCBEEP vol = 0, mute connections */
2527 static const struct hda_verb alc268_beep_init_verbs
[] = {
2528 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2529 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2530 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2535 ALC268_FIXUP_INV_DMIC
,
2536 ALC268_FIXUP_HP_EAPD
,
2540 static const struct hda_fixup alc268_fixups
[] = {
2541 [ALC268_FIXUP_INV_DMIC
] = {
2542 .type
= HDA_FIXUP_FUNC
,
2543 .v
.func
= alc_fixup_inv_dmic
,
2545 [ALC268_FIXUP_HP_EAPD
] = {
2546 .type
= HDA_FIXUP_VERBS
,
2547 .v
.verbs
= (const struct hda_verb
[]) {
2548 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 0},
2552 [ALC268_FIXUP_SPDIF
] = {
2553 .type
= HDA_FIXUP_PINS
,
2554 .v
.pins
= (const struct hda_pintbl
[]) {
2555 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2561 static const struct hda_model_fixup alc268_fixup_models
[] = {
2562 {.id
= ALC268_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2563 {.id
= ALC268_FIXUP_HP_EAPD
, .name
= "hp-eapd"},
2567 static const struct snd_pci_quirk alc268_fixup_tbl
[] = {
2568 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF
),
2569 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC
),
2570 /* below is codec SSID since multiple Toshiba laptops have the
2571 * same PCI SSID 1179:ff00
2573 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD
),
2578 * BIOS auto configuration
2580 static int alc268_parse_auto_config(struct hda_codec
*codec
)
2582 static const hda_nid_t alc268_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2583 return alc_parse_auto_config(codec
, NULL
, alc268_ssids
);
2588 static int patch_alc268(struct hda_codec
*codec
)
2590 struct alc_spec
*spec
;
2593 /* ALC268 has no aa-loopback mixer */
2594 err
= alc_alloc_spec(codec
, 0);
2599 spec
->gen
.beep_nid
= 0x01;
2601 spec
->shutup
= alc_eapd_shutup
;
2603 snd_hda_pick_fixup(codec
, alc268_fixup_models
, alc268_fixup_tbl
, alc268_fixups
);
2604 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2606 /* automatic parse from the BIOS config */
2607 err
= alc268_parse_auto_config(codec
);
2611 if (err
> 0 && !spec
->gen
.no_analog
&&
2612 spec
->gen
.autocfg
.speaker_pins
[0] != 0x1d) {
2613 add_mixer(spec
, alc268_beep_mixer
);
2614 snd_hda_add_verbs(codec
, alc268_beep_init_verbs
);
2615 if (!query_amp_caps(codec
, 0x1d, HDA_INPUT
))
2616 /* override the amp caps for beep generator */
2617 snd_hda_override_amp_caps(codec
, 0x1d, HDA_INPUT
,
2618 (0x0c << AC_AMPCAP_OFFSET_SHIFT
) |
2619 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT
) |
2620 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
2621 (0 << AC_AMPCAP_MUTE_SHIFT
));
2624 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
2637 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback
= {
2638 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
2641 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture
= {
2642 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
2645 /* different alc269-variants */
2647 ALC269_TYPE_ALC269VA
,
2648 ALC269_TYPE_ALC269VB
,
2649 ALC269_TYPE_ALC269VC
,
2650 ALC269_TYPE_ALC269VD
,
2666 * BIOS auto configuration
2668 static int alc269_parse_auto_config(struct hda_codec
*codec
)
2670 static const hda_nid_t alc269_ignore
[] = { 0x1d, 0 };
2671 static const hda_nid_t alc269_ssids
[] = { 0, 0x1b, 0x14, 0x21 };
2672 static const hda_nid_t alc269va_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2673 struct alc_spec
*spec
= codec
->spec
;
2674 const hda_nid_t
*ssids
;
2676 switch (spec
->codec_variant
) {
2677 case ALC269_TYPE_ALC269VA
:
2678 case ALC269_TYPE_ALC269VC
:
2679 case ALC269_TYPE_ALC280
:
2680 case ALC269_TYPE_ALC284
:
2681 case ALC269_TYPE_ALC285
:
2682 ssids
= alc269va_ssids
;
2684 case ALC269_TYPE_ALC269VB
:
2685 case ALC269_TYPE_ALC269VD
:
2686 case ALC269_TYPE_ALC282
:
2687 case ALC269_TYPE_ALC283
:
2688 case ALC269_TYPE_ALC286
:
2689 case ALC269_TYPE_ALC298
:
2690 case ALC269_TYPE_ALC255
:
2691 case ALC269_TYPE_ALC256
:
2692 case ALC269_TYPE_ALC225
:
2693 case ALC269_TYPE_ALC294
:
2694 case ALC269_TYPE_ALC700
:
2695 ssids
= alc269_ssids
;
2698 ssids
= alc269_ssids
;
2702 return alc_parse_auto_config(codec
, alc269_ignore
, ssids
);
2705 static int find_ext_mic_pin(struct hda_codec
*codec
);
2707 static void alc286_shutup(struct hda_codec
*codec
)
2710 int mic_pin
= find_ext_mic_pin(codec
);
2711 /* don't shut up pins when unloading the driver; otherwise it breaks
2712 * the default pin setup at the next load of the driver
2714 if (codec
->bus
->shutdown
)
2716 for (i
= 0; i
< codec
->init_pins
.used
; i
++) {
2717 struct hda_pincfg
*pin
= snd_array_elem(&codec
->init_pins
, i
);
2718 /* use read here for syncing after issuing each verb */
2719 if (pin
->nid
!= mic_pin
)
2720 snd_hda_codec_read(codec
, pin
->nid
, 0,
2721 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
2723 codec
->pins_shutup
= 1;
2726 static void alc269vb_toggle_power_output(struct hda_codec
*codec
, int power_up
)
2728 alc_update_coef_idx(codec
, 0x04, 1 << 11, power_up
? (1 << 11) : 0);
2731 static void alc269_shutup(struct hda_codec
*codec
)
2733 struct alc_spec
*spec
= codec
->spec
;
2735 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
2736 alc269vb_toggle_power_output(codec
, 0);
2737 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
2738 (alc_get_coef0(codec
) & 0x00ff) == 0x018) {
2741 snd_hda_shutup_pins(codec
);
2744 static struct coef_fw alc282_coefs
[] = {
2745 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2746 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
2747 WRITE_COEF(0x07, 0x0200), /* DMIC control */
2748 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
2749 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
2750 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
2751 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
2752 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
2753 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
2754 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
2755 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
2756 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
2757 WRITE_COEF(0x34, 0xa0c0), /* ANC */
2758 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
2759 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
2760 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
2761 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
2762 WRITE_COEF(0x63, 0x2902), /* PLL */
2763 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
2764 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
2765 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
2766 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
2767 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
2768 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
2769 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
2770 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
2771 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
2772 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
2773 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
2777 static void alc282_restore_default_value(struct hda_codec
*codec
)
2779 alc_process_coef_fw(codec
, alc282_coefs
);
2782 static void alc282_init(struct hda_codec
*codec
)
2784 struct alc_spec
*spec
= codec
->spec
;
2785 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
2789 alc282_restore_default_value(codec
);
2793 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
2794 coef78
= alc_read_coef_idx(codec
, 0x78);
2796 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
2797 /* Headphone capless set to high power mode */
2798 alc_write_coef_idx(codec
, 0x78, 0x9004);
2803 snd_hda_codec_write(codec
, hp_pin
, 0,
2804 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
2809 snd_hda_codec_write(codec
, hp_pin
, 0,
2810 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
2815 /* Headphone capless set to normal mode */
2816 alc_write_coef_idx(codec
, 0x78, coef78
);
2819 static void alc282_shutup(struct hda_codec
*codec
)
2821 struct alc_spec
*spec
= codec
->spec
;
2822 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
2827 alc269_shutup(codec
);
2831 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
2832 coef78
= alc_read_coef_idx(codec
, 0x78);
2833 alc_write_coef_idx(codec
, 0x78, 0x9004);
2838 snd_hda_codec_write(codec
, hp_pin
, 0,
2839 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
2844 snd_hda_codec_write(codec
, hp_pin
, 0,
2845 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
2850 alc_auto_setup_eapd(codec
, false);
2851 snd_hda_shutup_pins(codec
);
2852 alc_write_coef_idx(codec
, 0x78, coef78
);
2855 static struct coef_fw alc283_coefs
[] = {
2856 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2857 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
2858 WRITE_COEF(0x07, 0x0200), /* DMIC control */
2859 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
2860 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
2861 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
2862 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
2863 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
2864 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
2865 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
2866 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
2867 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
2868 WRITE_COEF(0x22, 0xa0c0), /* ANC */
2869 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
2870 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
2871 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
2872 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
2873 WRITE_COEF(0x2e, 0x2902), /* PLL */
2874 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
2875 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
2876 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
2877 WRITE_COEF(0x36, 0x0), /* capless control 5 */
2878 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
2879 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
2880 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
2881 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
2882 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
2883 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
2884 WRITE_COEF(0x49, 0x0), /* test mode */
2885 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
2886 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
2887 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
2888 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
2892 static void alc283_restore_default_value(struct hda_codec
*codec
)
2894 alc_process_coef_fw(codec
, alc283_coefs
);
2897 static void alc283_init(struct hda_codec
*codec
)
2899 struct alc_spec
*spec
= codec
->spec
;
2900 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
2903 if (!spec
->gen
.autocfg
.hp_outs
) {
2904 if (spec
->gen
.autocfg
.line_out_type
== AC_JACK_HP_OUT
)
2905 hp_pin
= spec
->gen
.autocfg
.line_out_pins
[0];
2908 alc283_restore_default_value(codec
);
2914 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
2916 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
2917 /* Headphone capless set to high power mode */
2918 alc_write_coef_idx(codec
, 0x43, 0x9004);
2920 snd_hda_codec_write(codec
, hp_pin
, 0,
2921 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
2926 snd_hda_codec_write(codec
, hp_pin
, 0,
2927 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
2931 /* Index 0x46 Combo jack auto switch control 2 */
2932 /* 3k pull low control for Headset jack. */
2933 alc_update_coef_idx(codec
, 0x46, 3 << 12, 0);
2934 /* Headphone capless set to normal mode */
2935 alc_write_coef_idx(codec
, 0x43, 0x9614);
2938 static void alc283_shutup(struct hda_codec
*codec
)
2940 struct alc_spec
*spec
= codec
->spec
;
2941 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
2944 if (!spec
->gen
.autocfg
.hp_outs
) {
2945 if (spec
->gen
.autocfg
.line_out_type
== AC_JACK_HP_OUT
)
2946 hp_pin
= spec
->gen
.autocfg
.line_out_pins
[0];
2950 alc269_shutup(codec
);
2954 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
2956 alc_write_coef_idx(codec
, 0x43, 0x9004);
2958 /*depop hp during suspend*/
2959 alc_write_coef_idx(codec
, 0x06, 0x2100);
2961 snd_hda_codec_write(codec
, hp_pin
, 0,
2962 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
2967 snd_hda_codec_write(codec
, hp_pin
, 0,
2968 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
2970 alc_update_coef_idx(codec
, 0x46, 0, 3 << 12);
2974 alc_auto_setup_eapd(codec
, false);
2975 snd_hda_shutup_pins(codec
);
2976 alc_write_coef_idx(codec
, 0x43, 0x9614);
2979 static void alc5505_coef_set(struct hda_codec
*codec
, unsigned int index_reg
,
2982 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_COEF_INDEX
, index_reg
>> 1);
2983 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_PROC_COEF
, val
& 0xffff); /* LSB */
2984 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_PROC_COEF
, val
>> 16); /* MSB */
2987 static int alc5505_coef_get(struct hda_codec
*codec
, unsigned int index_reg
)
2991 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_COEF_INDEX
, index_reg
>> 1);
2992 val
= snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_GET_PROC_COEF
, 0)
2994 val
|= snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_GET_PROC_COEF
, 0)
2999 static void alc5505_dsp_halt(struct hda_codec
*codec
)
3003 alc5505_coef_set(codec
, 0x3000, 0x000c); /* DSP CPU stop */
3004 alc5505_coef_set(codec
, 0x880c, 0x0008); /* DDR enter self refresh */
3005 alc5505_coef_set(codec
, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3006 alc5505_coef_set(codec
, 0x6230, 0xfc0d4011); /* Disable Input OP */
3007 alc5505_coef_set(codec
, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3008 alc5505_coef_set(codec
, 0x61b0, 0x00005b17); /* Stop PLL1 */
3009 alc5505_coef_set(codec
, 0x61b8, 0x04133303); /* Stop PLL3 */
3010 val
= alc5505_coef_get(codec
, 0x6220);
3011 alc5505_coef_set(codec
, 0x6220, (val
| 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3014 static void alc5505_dsp_back_from_halt(struct hda_codec
*codec
)
3016 alc5505_coef_set(codec
, 0x61b8, 0x04133302);
3017 alc5505_coef_set(codec
, 0x61b0, 0x00005b16);
3018 alc5505_coef_set(codec
, 0x61b4, 0x040a2b02);
3019 alc5505_coef_set(codec
, 0x6230, 0xf80d4011);
3020 alc5505_coef_set(codec
, 0x6220, 0x2002010f);
3021 alc5505_coef_set(codec
, 0x880c, 0x00000004);
3024 static void alc5505_dsp_init(struct hda_codec
*codec
)
3028 alc5505_dsp_halt(codec
);
3029 alc5505_dsp_back_from_halt(codec
);
3030 alc5505_coef_set(codec
, 0x61b0, 0x5b14); /* PLL1 control */
3031 alc5505_coef_set(codec
, 0x61b0, 0x5b16);
3032 alc5505_coef_set(codec
, 0x61b4, 0x04132b00); /* PLL2 control */
3033 alc5505_coef_set(codec
, 0x61b4, 0x04132b02);
3034 alc5505_coef_set(codec
, 0x61b8, 0x041f3300); /* PLL3 control*/
3035 alc5505_coef_set(codec
, 0x61b8, 0x041f3302);
3036 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_CODEC_RESET
, 0); /* Function reset */
3037 alc5505_coef_set(codec
, 0x61b8, 0x041b3302);
3038 alc5505_coef_set(codec
, 0x61b8, 0x04173302);
3039 alc5505_coef_set(codec
, 0x61b8, 0x04163302);
3040 alc5505_coef_set(codec
, 0x8800, 0x348b328b); /* DRAM control */
3041 alc5505_coef_set(codec
, 0x8808, 0x00020022); /* DRAM control */
3042 alc5505_coef_set(codec
, 0x8818, 0x00000400); /* DRAM control */
3044 val
= alc5505_coef_get(codec
, 0x6200) >> 16; /* Read revision ID */
3046 alc5505_coef_set(codec
, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3048 alc5505_coef_set(codec
, 0x6220, 0x6002018f);
3050 alc5505_coef_set(codec
, 0x61ac, 0x055525f0); /**/
3051 alc5505_coef_set(codec
, 0x61c0, 0x12230080); /* Clock control */
3052 alc5505_coef_set(codec
, 0x61b4, 0x040e2b02); /* PLL2 control */
3053 alc5505_coef_set(codec
, 0x61bc, 0x010234f8); /* OSC Control */
3054 alc5505_coef_set(codec
, 0x880c, 0x00000004); /* DRAM Function control */
3055 alc5505_coef_set(codec
, 0x880c, 0x00000003);
3056 alc5505_coef_set(codec
, 0x880c, 0x00000010);
3058 #ifdef HALT_REALTEK_ALC5505
3059 alc5505_dsp_halt(codec
);
3063 #ifdef HALT_REALTEK_ALC5505
3064 #define alc5505_dsp_suspend(codec) /* NOP */
3065 #define alc5505_dsp_resume(codec) /* NOP */
3067 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
3068 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
3072 static int alc269_suspend(struct hda_codec
*codec
)
3074 struct alc_spec
*spec
= codec
->spec
;
3076 if (spec
->has_alc5505_dsp
)
3077 alc5505_dsp_suspend(codec
);
3078 return alc_suspend(codec
);
3081 static int alc269_resume(struct hda_codec
*codec
)
3083 struct alc_spec
*spec
= codec
->spec
;
3085 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
3086 alc269vb_toggle_power_output(codec
, 0);
3087 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
3088 (alc_get_coef0(codec
) & 0x00ff) == 0x018) {
3092 codec
->patch_ops
.init(codec
);
3094 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
3095 alc269vb_toggle_power_output(codec
, 1);
3096 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
3097 (alc_get_coef0(codec
) & 0x00ff) == 0x017) {
3101 regcache_sync(codec
->core
.regmap
);
3102 hda_call_check_power_status(codec
, 0x01);
3104 /* on some machine, the BIOS will clear the codec gpio data when enter
3105 * suspend, and won't restore the data after resume, so we restore it
3109 snd_hda_codec_write(codec
, codec
->core
.afg
, 0, AC_VERB_SET_GPIO_DATA
,
3112 if (spec
->has_alc5505_dsp
)
3113 alc5505_dsp_resume(codec
);
3117 #endif /* CONFIG_PM */
3119 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec
*codec
,
3120 const struct hda_fixup
*fix
, int action
)
3122 struct alc_spec
*spec
= codec
->spec
;
3124 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
3125 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
3128 static void alc269_fixup_hweq(struct hda_codec
*codec
,
3129 const struct hda_fixup
*fix
, int action
)
3131 if (action
== HDA_FIXUP_ACT_INIT
)
3132 alc_update_coef_idx(codec
, 0x1e, 0, 0x80);
3135 static void alc269_fixup_headset_mic(struct hda_codec
*codec
,
3136 const struct hda_fixup
*fix
, int action
)
3138 struct alc_spec
*spec
= codec
->spec
;
3140 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
3141 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
3144 static void alc271_fixup_dmic(struct hda_codec
*codec
,
3145 const struct hda_fixup
*fix
, int action
)
3147 static const struct hda_verb verbs
[] = {
3148 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0d},
3149 {0x20, AC_VERB_SET_PROC_COEF
, 0x4000},
3154 if (strcmp(codec
->core
.chip_name
, "ALC271X") &&
3155 strcmp(codec
->core
.chip_name
, "ALC269VB"))
3157 cfg
= snd_hda_codec_get_pincfg(codec
, 0x12);
3158 if (get_defcfg_connect(cfg
) == AC_JACK_PORT_FIXED
)
3159 snd_hda_sequence_write(codec
, verbs
);
3162 static void alc269_fixup_pcm_44k(struct hda_codec
*codec
,
3163 const struct hda_fixup
*fix
, int action
)
3165 struct alc_spec
*spec
= codec
->spec
;
3167 if (action
!= HDA_FIXUP_ACT_PROBE
)
3170 /* Due to a hardware problem on Lenovo Ideadpad, we need to
3171 * fix the sample rate of analog I/O to 44.1kHz
3173 spec
->gen
.stream_analog_playback
= &alc269_44k_pcm_analog_playback
;
3174 spec
->gen
.stream_analog_capture
= &alc269_44k_pcm_analog_capture
;
3177 static void alc269_fixup_stereo_dmic(struct hda_codec
*codec
,
3178 const struct hda_fixup
*fix
, int action
)
3180 /* The digital-mic unit sends PDM (differential signal) instead of
3181 * the standard PCM, thus you can't record a valid mono stream as is.
3182 * Below is a workaround specific to ALC269 to control the dmic
3183 * signal source as mono.
3185 if (action
== HDA_FIXUP_ACT_INIT
)
3186 alc_update_coef_idx(codec
, 0x07, 0, 0x80);
3189 static void alc269_quanta_automute(struct hda_codec
*codec
)
3191 snd_hda_gen_update_outputs(codec
);
3193 alc_write_coef_idx(codec
, 0x0c, 0x680);
3194 alc_write_coef_idx(codec
, 0x0c, 0x480);
3197 static void alc269_fixup_quanta_mute(struct hda_codec
*codec
,
3198 const struct hda_fixup
*fix
, int action
)
3200 struct alc_spec
*spec
= codec
->spec
;
3201 if (action
!= HDA_FIXUP_ACT_PROBE
)
3203 spec
->gen
.automute_hook
= alc269_quanta_automute
;
3206 static void alc269_x101_hp_automute_hook(struct hda_codec
*codec
,
3207 struct hda_jack_callback
*jack
)
3209 struct alc_spec
*spec
= codec
->spec
;
3212 snd_hda_gen_hp_automute(codec
, jack
);
3214 vref
= spec
->gen
.hp_jack_present
? PIN_VREF80
: 0;
3216 snd_hda_codec_write(codec
, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
3219 snd_hda_codec_write(codec
, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
3223 static void alc269_fixup_x101_headset_mic(struct hda_codec
*codec
,
3224 const struct hda_fixup
*fix
, int action
)
3226 struct alc_spec
*spec
= codec
->spec
;
3227 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3228 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
3229 spec
->gen
.hp_automute_hook
= alc269_x101_hp_automute_hook
;
3234 /* update mute-LED according to the speaker mute state via mic VREF pin */
3235 static void alc269_fixup_mic_mute_hook(void *private_data
, int enabled
)
3237 struct hda_codec
*codec
= private_data
;
3238 struct alc_spec
*spec
= codec
->spec
;
3239 unsigned int pinval
;
3241 if (spec
->mute_led_polarity
)
3243 pinval
= snd_hda_codec_get_pin_target(codec
, spec
->mute_led_nid
);
3244 pinval
&= ~AC_PINCTL_VREFEN
;
3245 pinval
|= enabled
? AC_PINCTL_VREF_HIZ
: AC_PINCTL_VREF_80
;
3246 if (spec
->mute_led_nid
)
3247 snd_hda_set_pin_ctl_cache(codec
, spec
->mute_led_nid
, pinval
);
3250 /* Make sure the led works even in runtime suspend */
3251 static unsigned int led_power_filter(struct hda_codec
*codec
,
3253 unsigned int power_state
)
3255 struct alc_spec
*spec
= codec
->spec
;
3257 if (power_state
!= AC_PWRST_D3
|| nid
== 0 ||
3258 (nid
!= spec
->mute_led_nid
&& nid
!= spec
->cap_mute_led_nid
))
3261 /* Set pin ctl again, it might have just been set to 0 */
3262 snd_hda_set_pin_ctl(codec
, nid
,
3263 snd_hda_codec_get_pin_target(codec
, nid
));
3265 return snd_hda_gen_path_power_filter(codec
, nid
, power_state
);
3268 static void alc269_fixup_hp_mute_led(struct hda_codec
*codec
,
3269 const struct hda_fixup
*fix
, int action
)
3271 struct alc_spec
*spec
= codec
->spec
;
3272 const struct dmi_device
*dev
= NULL
;
3274 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
3277 while ((dev
= dmi_find_device(DMI_DEV_TYPE_OEM_STRING
, NULL
, dev
))) {
3279 if (sscanf(dev
->name
, "HP_Mute_LED_%d_%x", &pol
, &pin
) != 2)
3281 if (pin
< 0x0a || pin
>= 0x10)
3283 spec
->mute_led_polarity
= pol
;
3284 spec
->mute_led_nid
= pin
- 0x0a + 0x18;
3285 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3286 spec
->gen
.vmaster_mute_enum
= 1;
3287 codec
->power_filter
= led_power_filter
;
3289 "Detected mute LED for %x:%d\n", spec
->mute_led_nid
,
3290 spec
->mute_led_polarity
);
3295 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec
*codec
,
3296 const struct hda_fixup
*fix
, int action
)
3298 struct alc_spec
*spec
= codec
->spec
;
3299 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3300 spec
->mute_led_polarity
= 0;
3301 spec
->mute_led_nid
= 0x18;
3302 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3303 spec
->gen
.vmaster_mute_enum
= 1;
3304 codec
->power_filter
= led_power_filter
;
3308 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec
*codec
,
3309 const struct hda_fixup
*fix
, int action
)
3311 struct alc_spec
*spec
= codec
->spec
;
3312 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3313 spec
->mute_led_polarity
= 0;
3314 spec
->mute_led_nid
= 0x19;
3315 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3316 spec
->gen
.vmaster_mute_enum
= 1;
3317 codec
->power_filter
= led_power_filter
;
3321 /* update LED status via GPIO */
3322 static void alc_update_gpio_led(struct hda_codec
*codec
, unsigned int mask
,
3325 struct alc_spec
*spec
= codec
->spec
;
3326 unsigned int oldval
= spec
->gpio_led
;
3328 if (spec
->mute_led_polarity
)
3332 spec
->gpio_led
&= ~mask
;
3334 spec
->gpio_led
|= mask
;
3335 if (spec
->gpio_led
!= oldval
)
3336 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
3340 /* turn on/off mute LED via GPIO per vmaster hook */
3341 static void alc_fixup_gpio_mute_hook(void *private_data
, int enabled
)
3343 struct hda_codec
*codec
= private_data
;
3344 struct alc_spec
*spec
= codec
->spec
;
3346 alc_update_gpio_led(codec
, spec
->gpio_mute_led_mask
, enabled
);
3349 /* turn on/off mic-mute LED via GPIO per capture hook */
3350 static void alc_fixup_gpio_mic_mute_hook(struct hda_codec
*codec
,
3351 struct snd_kcontrol
*kcontrol
,
3352 struct snd_ctl_elem_value
*ucontrol
)
3354 struct alc_spec
*spec
= codec
->spec
;
3357 alc_update_gpio_led(codec
, spec
->gpio_mic_led_mask
,
3358 ucontrol
->value
.integer
.value
[0] ||
3359 ucontrol
->value
.integer
.value
[1]);
3362 static void alc269_fixup_hp_gpio_led(struct hda_codec
*codec
,
3363 const struct hda_fixup
*fix
, int action
)
3365 struct alc_spec
*spec
= codec
->spec
;
3366 static const struct hda_verb gpio_init
[] = {
3367 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x18 },
3368 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x18 },
3372 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3373 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
3374 spec
->gen
.cap_sync_hook
= alc_fixup_gpio_mic_mute_hook
;
3376 spec
->mute_led_polarity
= 0;
3377 spec
->gpio_mute_led_mask
= 0x08;
3378 spec
->gpio_mic_led_mask
= 0x10;
3379 snd_hda_add_verbs(codec
, gpio_init
);
3383 static void alc286_fixup_hp_gpio_led(struct hda_codec
*codec
,
3384 const struct hda_fixup
*fix
, int action
)
3386 struct alc_spec
*spec
= codec
->spec
;
3387 static const struct hda_verb gpio_init
[] = {
3388 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x22 },
3389 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x22 },
3393 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3394 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
3395 spec
->gen
.cap_sync_hook
= alc_fixup_gpio_mic_mute_hook
;
3397 spec
->mute_led_polarity
= 0;
3398 spec
->gpio_mute_led_mask
= 0x02;
3399 spec
->gpio_mic_led_mask
= 0x20;
3400 snd_hda_add_verbs(codec
, gpio_init
);
3404 /* turn on/off mic-mute LED per capture hook */
3405 static void alc269_fixup_hp_cap_mic_mute_hook(struct hda_codec
*codec
,
3406 struct snd_kcontrol
*kcontrol
,
3407 struct snd_ctl_elem_value
*ucontrol
)
3409 struct alc_spec
*spec
= codec
->spec
;
3410 unsigned int pinval
, enable
, disable
;
3412 pinval
= snd_hda_codec_get_pin_target(codec
, spec
->cap_mute_led_nid
);
3413 pinval
&= ~AC_PINCTL_VREFEN
;
3414 enable
= pinval
| AC_PINCTL_VREF_80
;
3415 disable
= pinval
| AC_PINCTL_VREF_HIZ
;
3420 if (ucontrol
->value
.integer
.value
[0] ||
3421 ucontrol
->value
.integer
.value
[1])
3426 if (spec
->cap_mute_led_nid
)
3427 snd_hda_set_pin_ctl_cache(codec
, spec
->cap_mute_led_nid
, pinval
);
3430 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec
*codec
,
3431 const struct hda_fixup
*fix
, int action
)
3433 struct alc_spec
*spec
= codec
->spec
;
3434 static const struct hda_verb gpio_init
[] = {
3435 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x08 },
3436 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x08 },
3440 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3441 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
3442 spec
->gen
.cap_sync_hook
= alc269_fixup_hp_cap_mic_mute_hook
;
3444 spec
->mute_led_polarity
= 0;
3445 spec
->gpio_mute_led_mask
= 0x08;
3446 spec
->cap_mute_led_nid
= 0x18;
3447 snd_hda_add_verbs(codec
, gpio_init
);
3448 codec
->power_filter
= led_power_filter
;
3452 static void alc280_fixup_hp_gpio4(struct hda_codec
*codec
,
3453 const struct hda_fixup
*fix
, int action
)
3455 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to enable headphone amp */
3456 struct alc_spec
*spec
= codec
->spec
;
3457 static const struct hda_verb gpio_init
[] = {
3458 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x18 },
3459 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x18 },
3463 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3464 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
3465 spec
->gen
.cap_sync_hook
= alc269_fixup_hp_cap_mic_mute_hook
;
3467 spec
->mute_led_polarity
= 0;
3468 spec
->gpio_mute_led_mask
= 0x08;
3469 spec
->cap_mute_led_nid
= 0x18;
3470 snd_hda_add_verbs(codec
, gpio_init
);
3471 codec
->power_filter
= led_power_filter
;
3475 static void gpio2_mic_hotkey_event(struct hda_codec
*codec
,
3476 struct hda_jack_callback
*event
)
3478 struct alc_spec
*spec
= codec
->spec
;
3480 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
3481 send both key on and key off event for every interrupt. */
3482 input_report_key(spec
->kb_dev
, spec
->alc_mute_keycode_map
[ALC_KEY_MICMUTE_INDEX
], 1);
3483 input_sync(spec
->kb_dev
);
3484 input_report_key(spec
->kb_dev
, spec
->alc_mute_keycode_map
[ALC_KEY_MICMUTE_INDEX
], 0);
3485 input_sync(spec
->kb_dev
);
3488 static int alc_register_micmute_input_device(struct hda_codec
*codec
)
3490 struct alc_spec
*spec
= codec
->spec
;
3493 spec
->kb_dev
= input_allocate_device();
3494 if (!spec
->kb_dev
) {
3495 codec_err(codec
, "Out of memory (input_allocate_device)\n");
3499 spec
->alc_mute_keycode_map
[ALC_KEY_MICMUTE_INDEX
] = KEY_MICMUTE
;
3501 spec
->kb_dev
->name
= "Microphone Mute Button";
3502 spec
->kb_dev
->evbit
[0] = BIT_MASK(EV_KEY
);
3503 spec
->kb_dev
->keycodesize
= sizeof(spec
->alc_mute_keycode_map
[0]);
3504 spec
->kb_dev
->keycodemax
= ARRAY_SIZE(spec
->alc_mute_keycode_map
);
3505 spec
->kb_dev
->keycode
= spec
->alc_mute_keycode_map
;
3506 for (i
= 0; i
< ARRAY_SIZE(spec
->alc_mute_keycode_map
); i
++)
3507 set_bit(spec
->alc_mute_keycode_map
[i
], spec
->kb_dev
->keybit
);
3509 if (input_register_device(spec
->kb_dev
)) {
3510 codec_err(codec
, "input_register_device failed\n");
3511 input_free_device(spec
->kb_dev
);
3512 spec
->kb_dev
= NULL
;
3519 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec
*codec
,
3520 const struct hda_fixup
*fix
, int action
)
3522 /* GPIO1 = set according to SKU external amp
3523 GPIO2 = mic mute hotkey
3525 GPIO4 = mic mute LED */
3526 static const struct hda_verb gpio_init
[] = {
3527 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x1e },
3528 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x1a },
3529 { 0x01, AC_VERB_SET_GPIO_DATA
, 0x02 },
3533 struct alc_spec
*spec
= codec
->spec
;
3535 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3536 if (alc_register_micmute_input_device(codec
) != 0)
3539 snd_hda_add_verbs(codec
, gpio_init
);
3540 snd_hda_codec_write_cache(codec
, codec
->core
.afg
, 0,
3541 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK
, 0x04);
3542 snd_hda_jack_detect_enable_callback(codec
, codec
->core
.afg
,
3543 gpio2_mic_hotkey_event
);
3545 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
3546 spec
->gen
.cap_sync_hook
= alc_fixup_gpio_mic_mute_hook
;
3548 spec
->mute_led_polarity
= 0;
3549 spec
->gpio_mute_led_mask
= 0x08;
3550 spec
->gpio_mic_led_mask
= 0x10;
3558 case HDA_FIXUP_ACT_PROBE
:
3559 spec
->init_amp
= ALC_INIT_DEFAULT
;
3561 case HDA_FIXUP_ACT_FREE
:
3562 input_unregister_device(spec
->kb_dev
);
3563 spec
->kb_dev
= NULL
;
3567 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec
*codec
,
3568 const struct hda_fixup
*fix
, int action
)
3570 /* Line2 = mic mute hotkey
3571 GPIO2 = mic mute LED */
3572 static const struct hda_verb gpio_init
[] = {
3573 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x04 },
3574 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x04 },
3578 struct alc_spec
*spec
= codec
->spec
;
3580 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3581 if (alc_register_micmute_input_device(codec
) != 0)
3584 snd_hda_add_verbs(codec
, gpio_init
);
3585 snd_hda_jack_detect_enable_callback(codec
, 0x1b,
3586 gpio2_mic_hotkey_event
);
3588 spec
->gen
.cap_sync_hook
= alc_fixup_gpio_mic_mute_hook
;
3590 spec
->mute_led_polarity
= 0;
3591 spec
->gpio_mic_led_mask
= 0x04;
3599 case HDA_FIXUP_ACT_PROBE
:
3600 spec
->init_amp
= ALC_INIT_DEFAULT
;
3602 case HDA_FIXUP_ACT_FREE
:
3603 input_unregister_device(spec
->kb_dev
);
3604 spec
->kb_dev
= NULL
;
3608 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec
*codec
,
3609 const struct hda_fixup
*fix
, int action
)
3611 struct alc_spec
*spec
= codec
->spec
;
3613 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3614 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3615 spec
->gen
.cap_sync_hook
= alc269_fixup_hp_cap_mic_mute_hook
;
3616 spec
->mute_led_polarity
= 0;
3617 spec
->mute_led_nid
= 0x1a;
3618 spec
->cap_mute_led_nid
= 0x18;
3619 spec
->gen
.vmaster_mute_enum
= 1;
3620 codec
->power_filter
= led_power_filter
;
3624 static void alc_headset_mode_unplugged(struct hda_codec
*codec
)
3626 static struct coef_fw coef0255
[] = {
3627 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
3628 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
3629 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
3630 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
3633 static struct coef_fw coef0255_1
[] = {
3634 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
3637 static struct coef_fw coef0256
[] = {
3638 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
3641 static struct coef_fw coef0233
[] = {
3642 WRITE_COEF(0x1b, 0x0c0b),
3643 WRITE_COEF(0x45, 0xc429),
3644 UPDATE_COEF(0x35, 0x4000, 0),
3645 WRITE_COEF(0x06, 0x2104),
3646 WRITE_COEF(0x1a, 0x0001),
3647 WRITE_COEF(0x26, 0x0004),
3648 WRITE_COEF(0x32, 0x42a3),
3651 static struct coef_fw coef0288
[] = {
3652 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
3653 UPDATE_COEF(0x50, 0x2000, 0x2000),
3654 UPDATE_COEF(0x56, 0x0006, 0x0006),
3655 UPDATE_COEF(0x66, 0x0008, 0),
3656 UPDATE_COEF(0x67, 0x2000, 0),
3659 static struct coef_fw coef0292
[] = {
3660 WRITE_COEF(0x76, 0x000e),
3661 WRITE_COEF(0x6c, 0x2400),
3662 WRITE_COEF(0x18, 0x7308),
3663 WRITE_COEF(0x6b, 0xc429),
3666 static struct coef_fw coef0293
[] = {
3667 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
3668 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
3669 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
3670 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
3671 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
3672 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
3675 static struct coef_fw coef0668
[] = {
3676 WRITE_COEF(0x15, 0x0d40),
3677 WRITE_COEF(0xb7, 0x802b),
3680 static struct coef_fw coef0225
[] = {
3681 UPDATE_COEF(0x4a, 1<<8, 0),
3682 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
3683 UPDATE_COEF(0x63, 3<<14, 3<<14),
3684 UPDATE_COEF(0x4a, 3<<4, 2<<4),
3685 UPDATE_COEF(0x4a, 3<<10, 3<<10),
3686 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
3687 UPDATE_COEF(0x4a, 3<<10, 0),
3691 switch (codec
->core
.vendor_id
) {
3693 alc_process_coef_fw(codec
, coef0255_1
);
3694 alc_process_coef_fw(codec
, coef0255
);
3697 alc_process_coef_fw(codec
, coef0256
);
3698 alc_process_coef_fw(codec
, coef0255
);
3702 alc_process_coef_fw(codec
, coef0233
);
3707 alc_process_coef_fw(codec
, coef0288
);
3710 alc_process_coef_fw(codec
, coef0292
);
3713 alc_process_coef_fw(codec
, coef0293
);
3716 alc_process_coef_fw(codec
, coef0668
);
3720 alc_process_coef_fw(codec
, coef0225
);
3723 alc_update_coefex_idx(codec
, 0x57, 0x5, 1<<14, 0);
3726 codec_dbg(codec
, "Headset jack set to unplugged mode.\n");
3730 static void alc_headset_mode_mic_in(struct hda_codec
*codec
, hda_nid_t hp_pin
,
3733 static struct coef_fw coef0255
[] = {
3734 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
3735 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
3738 static struct coef_fw coef0233
[] = {
3739 UPDATE_COEF(0x35, 0, 1<<14),
3740 WRITE_COEF(0x06, 0x2100),
3741 WRITE_COEF(0x1a, 0x0021),
3742 WRITE_COEF(0x26, 0x008c),
3745 static struct coef_fw coef0288
[] = {
3746 UPDATE_COEF(0x50, 0x2000, 0),
3747 UPDATE_COEF(0x56, 0x0006, 0),
3748 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
3749 UPDATE_COEF(0x66, 0x0008, 0x0008),
3750 UPDATE_COEF(0x67, 0x2000, 0x2000),
3753 static struct coef_fw coef0292
[] = {
3754 WRITE_COEF(0x19, 0xa208),
3755 WRITE_COEF(0x2e, 0xacf0),
3758 static struct coef_fw coef0293
[] = {
3759 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
3760 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
3761 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
3764 static struct coef_fw coef0688
[] = {
3765 WRITE_COEF(0xb7, 0x802b),
3766 WRITE_COEF(0xb5, 0x1040),
3767 UPDATE_COEF(0xc3, 0, 1<<12),
3770 static struct coef_fw coef0225
[] = {
3771 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
3772 UPDATE_COEF(0x4a, 3<<4, 2<<4),
3773 UPDATE_COEF(0x63, 3<<14, 0),
3778 switch (codec
->core
.vendor_id
) {
3781 alc_write_coef_idx(codec
, 0x45, 0xc489);
3782 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3783 alc_process_coef_fw(codec
, coef0255
);
3784 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3788 alc_write_coef_idx(codec
, 0x45, 0xc429);
3789 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3790 alc_process_coef_fw(codec
, coef0233
);
3791 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3796 alc_update_coef_idx(codec
, 0x4f, 0x000c, 0);
3797 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3798 alc_process_coef_fw(codec
, coef0288
);
3799 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3802 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3803 alc_process_coef_fw(codec
, coef0292
);
3806 /* Set to TRS mode */
3807 alc_write_coef_idx(codec
, 0x45, 0xc429);
3808 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3809 alc_process_coef_fw(codec
, coef0293
);
3810 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3813 alc_update_coefex_idx(codec
, 0x57, 0x5, 0, 1<<14);
3816 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3817 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3820 alc_write_coef_idx(codec
, 0x11, 0x0001);
3821 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3822 alc_process_coef_fw(codec
, coef0688
);
3823 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3827 alc_update_coef_idx(codec
, 0x45, 0x3f<<10, 0x31<<10);
3828 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3829 alc_process_coef_fw(codec
, coef0225
);
3830 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3833 codec_dbg(codec
, "Headset jack set to mic-in mode.\n");
3836 static void alc_headset_mode_default(struct hda_codec
*codec
)
3838 static struct coef_fw coef0225
[] = {
3839 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
3842 static struct coef_fw coef0255
[] = {
3843 WRITE_COEF(0x45, 0xc089),
3844 WRITE_COEF(0x45, 0xc489),
3845 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
3846 WRITE_COEF(0x49, 0x0049),
3849 static struct coef_fw coef0233
[] = {
3850 WRITE_COEF(0x06, 0x2100),
3851 WRITE_COEF(0x32, 0x4ea3),
3854 static struct coef_fw coef0288
[] = {
3855 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
3856 UPDATE_COEF(0x50, 0x2000, 0x2000),
3857 UPDATE_COEF(0x56, 0x0006, 0x0006),
3858 UPDATE_COEF(0x66, 0x0008, 0),
3859 UPDATE_COEF(0x67, 0x2000, 0),
3862 static struct coef_fw coef0292
[] = {
3863 WRITE_COEF(0x76, 0x000e),
3864 WRITE_COEF(0x6c, 0x2400),
3865 WRITE_COEF(0x6b, 0xc429),
3866 WRITE_COEF(0x18, 0x7308),
3869 static struct coef_fw coef0293
[] = {
3870 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
3871 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
3872 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
3875 static struct coef_fw coef0688
[] = {
3876 WRITE_COEF(0x11, 0x0041),
3877 WRITE_COEF(0x15, 0x0d40),
3878 WRITE_COEF(0xb7, 0x802b),
3882 switch (codec
->core
.vendor_id
) {
3885 alc_process_coef_fw(codec
, coef0225
);
3889 alc_process_coef_fw(codec
, coef0255
);
3893 alc_process_coef_fw(codec
, coef0233
);
3898 alc_process_coef_fw(codec
, coef0288
);
3901 alc_process_coef_fw(codec
, coef0292
);
3904 alc_process_coef_fw(codec
, coef0293
);
3907 alc_process_coef_fw(codec
, coef0688
);
3910 alc_update_coefex_idx(codec
, 0x57, 0x5, 1<<14, 0);
3913 codec_dbg(codec
, "Headset jack set to headphone (default) mode.\n");
3917 static void alc_headset_mode_ctia(struct hda_codec
*codec
)
3919 static struct coef_fw coef0255
[] = {
3920 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
3921 WRITE_COEF(0x1b, 0x0c2b),
3922 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
3925 static struct coef_fw coef0256
[] = {
3926 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
3927 WRITE_COEF(0x1b, 0x0c6b),
3928 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
3931 static struct coef_fw coef0233
[] = {
3932 WRITE_COEF(0x45, 0xd429),
3933 WRITE_COEF(0x1b, 0x0c2b),
3934 WRITE_COEF(0x32, 0x4ea3),
3937 static struct coef_fw coef0288
[] = {
3938 UPDATE_COEF(0x50, 0x2000, 0x2000),
3939 UPDATE_COEF(0x56, 0x0006, 0x0006),
3940 UPDATE_COEF(0x66, 0x0008, 0),
3941 UPDATE_COEF(0x67, 0x2000, 0),
3944 static struct coef_fw coef0292
[] = {
3945 WRITE_COEF(0x6b, 0xd429),
3946 WRITE_COEF(0x76, 0x0008),
3947 WRITE_COEF(0x18, 0x7388),
3950 static struct coef_fw coef0293
[] = {
3951 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
3952 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
3955 static struct coef_fw coef0688
[] = {
3956 WRITE_COEF(0x11, 0x0001),
3957 WRITE_COEF(0x15, 0x0d60),
3958 WRITE_COEF(0xc3, 0x0000),
3961 static struct coef_fw coef0225
[] = {
3962 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
3963 UPDATE_COEF(0x49, 1<<8, 1<<8),
3964 UPDATE_COEF(0x4a, 7<<6, 7<<6),
3965 UPDATE_COEF(0x4a, 3<<4, 3<<4),
3969 switch (codec
->core
.vendor_id
) {
3971 alc_process_coef_fw(codec
, coef0255
);
3974 alc_process_coef_fw(codec
, coef0256
);
3978 alc_process_coef_fw(codec
, coef0233
);
3981 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0020);/* Headset output enable */
3982 /* ALC298 jack type setting is the same with ALC286/ALC288 */
3985 alc_update_coef_idx(codec
, 0x4f, 0xfcc0, 0xd400);
3987 alc_process_coef_fw(codec
, coef0288
);
3990 alc_process_coef_fw(codec
, coef0292
);
3993 alc_process_coef_fw(codec
, coef0293
);
3996 alc_process_coef_fw(codec
, coef0688
);
4000 alc_process_coef_fw(codec
, coef0225
);
4003 alc_update_coefex_idx(codec
, 0x57, 0x5, 1<<14, 0);
4006 codec_dbg(codec
, "Headset jack set to iPhone-style headset mode.\n");
4010 static void alc_headset_mode_omtp(struct hda_codec
*codec
)
4012 static struct coef_fw coef0255
[] = {
4013 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4014 WRITE_COEF(0x1b, 0x0c2b),
4015 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4018 static struct coef_fw coef0256
[] = {
4019 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4020 WRITE_COEF(0x1b, 0x0c6b),
4021 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4024 static struct coef_fw coef0233
[] = {
4025 WRITE_COEF(0x45, 0xe429),
4026 WRITE_COEF(0x1b, 0x0c2b),
4027 WRITE_COEF(0x32, 0x4ea3),
4030 static struct coef_fw coef0288
[] = {
4031 UPDATE_COEF(0x50, 0x2000, 0x2000),
4032 UPDATE_COEF(0x56, 0x0006, 0x0006),
4033 UPDATE_COEF(0x66, 0x0008, 0),
4034 UPDATE_COEF(0x67, 0x2000, 0),
4037 static struct coef_fw coef0292
[] = {
4038 WRITE_COEF(0x6b, 0xe429),
4039 WRITE_COEF(0x76, 0x0008),
4040 WRITE_COEF(0x18, 0x7388),
4043 static struct coef_fw coef0293
[] = {
4044 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
4045 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4048 static struct coef_fw coef0688
[] = {
4049 WRITE_COEF(0x11, 0x0001),
4050 WRITE_COEF(0x15, 0x0d50),
4051 WRITE_COEF(0xc3, 0x0000),
4054 static struct coef_fw coef0225
[] = {
4055 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
4056 UPDATE_COEF(0x49, 1<<8, 1<<8),
4057 UPDATE_COEF(0x4a, 7<<6, 7<<6),
4058 UPDATE_COEF(0x4a, 3<<4, 3<<4),
4062 switch (codec
->core
.vendor_id
) {
4064 alc_process_coef_fw(codec
, coef0255
);
4067 alc_process_coef_fw(codec
, coef0256
);
4071 alc_process_coef_fw(codec
, coef0233
);
4074 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0010);/* Headset output enable */
4075 /* ALC298 jack type setting is the same with ALC286/ALC288 */
4078 alc_update_coef_idx(codec
, 0x4f, 0xfcc0, 0xe400);
4080 alc_process_coef_fw(codec
, coef0288
);
4083 alc_process_coef_fw(codec
, coef0292
);
4086 alc_process_coef_fw(codec
, coef0293
);
4089 alc_process_coef_fw(codec
, coef0688
);
4093 alc_process_coef_fw(codec
, coef0225
);
4096 codec_dbg(codec
, "Headset jack set to Nokia-style headset mode.\n");
4099 static void alc_determine_headset_type(struct hda_codec
*codec
)
4102 bool is_ctia
= false;
4103 struct alc_spec
*spec
= codec
->spec
;
4104 static struct coef_fw coef0255
[] = {
4105 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
4106 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
4110 static struct coef_fw coef0288
[] = {
4111 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
4114 static struct coef_fw coef0293
[] = {
4115 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
4116 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
4119 static struct coef_fw coef0688
[] = {
4120 WRITE_COEF(0x11, 0x0001),
4121 WRITE_COEF(0xb7, 0x802b),
4122 WRITE_COEF(0x15, 0x0d60),
4123 WRITE_COEF(0xc3, 0x0c00),
4126 static struct coef_fw coef0225
[] = {
4127 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4128 UPDATE_COEF(0x49, 1<<8, 1<<8),
4132 switch (codec
->core
.vendor_id
) {
4135 alc_process_coef_fw(codec
, coef0255
);
4137 val
= alc_read_coef_idx(codec
, 0x46);
4138 is_ctia
= (val
& 0x0070) == 0x0070;
4142 alc_write_coef_idx(codec
, 0x45, 0xd029);
4144 val
= alc_read_coef_idx(codec
, 0x46);
4145 is_ctia
= (val
& 0x0070) == 0x0070;
4148 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0020); /* Headset output enable */
4149 /* ALC298 check jack type is the same with ALC286/ALC288 */
4152 alc_process_coef_fw(codec
, coef0288
);
4154 val
= alc_read_coef_idx(codec
, 0x50);
4155 is_ctia
= (val
& 0x0070) == 0x0070;
4158 alc_write_coef_idx(codec
, 0x6b, 0xd429);
4160 val
= alc_read_coef_idx(codec
, 0x6c);
4161 is_ctia
= (val
& 0x001c) == 0x001c;
4164 alc_process_coef_fw(codec
, coef0293
);
4166 val
= alc_read_coef_idx(codec
, 0x46);
4167 is_ctia
= (val
& 0x0070) == 0x0070;
4170 alc_process_coef_fw(codec
, coef0688
);
4172 val
= alc_read_coef_idx(codec
, 0xbe);
4173 is_ctia
= (val
& 0x1c02) == 0x1c02;
4177 alc_process_coef_fw(codec
, coef0225
);
4179 val
= alc_read_coef_idx(codec
, 0x46);
4180 is_ctia
= (val
& 0x00f0) == 0x00f0;
4187 codec_dbg(codec
, "Headset jack detected iPhone-style headset: %s\n",
4188 is_ctia
? "yes" : "no");
4189 spec
->current_headset_type
= is_ctia
? ALC_HEADSET_TYPE_CTIA
: ALC_HEADSET_TYPE_OMTP
;
4192 static void alc_update_headset_mode(struct hda_codec
*codec
)
4194 struct alc_spec
*spec
= codec
->spec
;
4196 hda_nid_t mux_pin
= spec
->gen
.imux_pins
[spec
->gen
.cur_mux
[0]];
4197 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
4199 int new_headset_mode
;
4201 if (!snd_hda_jack_detect(codec
, hp_pin
))
4202 new_headset_mode
= ALC_HEADSET_MODE_UNPLUGGED
;
4203 else if (mux_pin
== spec
->headset_mic_pin
)
4204 new_headset_mode
= ALC_HEADSET_MODE_HEADSET
;
4205 else if (mux_pin
== spec
->headphone_mic_pin
)
4206 new_headset_mode
= ALC_HEADSET_MODE_MIC
;
4208 new_headset_mode
= ALC_HEADSET_MODE_HEADPHONE
;
4210 if (new_headset_mode
== spec
->current_headset_mode
) {
4211 snd_hda_gen_update_outputs(codec
);
4215 switch (new_headset_mode
) {
4216 case ALC_HEADSET_MODE_UNPLUGGED
:
4217 alc_headset_mode_unplugged(codec
);
4218 spec
->gen
.hp_jack_present
= false;
4220 case ALC_HEADSET_MODE_HEADSET
:
4221 if (spec
->current_headset_type
== ALC_HEADSET_TYPE_UNKNOWN
)
4222 alc_determine_headset_type(codec
);
4223 if (spec
->current_headset_type
== ALC_HEADSET_TYPE_CTIA
)
4224 alc_headset_mode_ctia(codec
);
4225 else if (spec
->current_headset_type
== ALC_HEADSET_TYPE_OMTP
)
4226 alc_headset_mode_omtp(codec
);
4227 spec
->gen
.hp_jack_present
= true;
4229 case ALC_HEADSET_MODE_MIC
:
4230 alc_headset_mode_mic_in(codec
, hp_pin
, spec
->headphone_mic_pin
);
4231 spec
->gen
.hp_jack_present
= false;
4233 case ALC_HEADSET_MODE_HEADPHONE
:
4234 alc_headset_mode_default(codec
);
4235 spec
->gen
.hp_jack_present
= true;
4238 if (new_headset_mode
!= ALC_HEADSET_MODE_MIC
) {
4239 snd_hda_set_pin_ctl_cache(codec
, hp_pin
,
4240 AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
);
4241 if (spec
->headphone_mic_pin
&& spec
->headphone_mic_pin
!= hp_pin
)
4242 snd_hda_set_pin_ctl_cache(codec
, spec
->headphone_mic_pin
,
4245 spec
->current_headset_mode
= new_headset_mode
;
4247 snd_hda_gen_update_outputs(codec
);
4250 static void alc_update_headset_mode_hook(struct hda_codec
*codec
,
4251 struct snd_kcontrol
*kcontrol
,
4252 struct snd_ctl_elem_value
*ucontrol
)
4254 alc_update_headset_mode(codec
);
4257 static void alc_update_headset_jack_cb(struct hda_codec
*codec
,
4258 struct hda_jack_callback
*jack
)
4260 struct alc_spec
*spec
= codec
->spec
;
4261 spec
->current_headset_type
= ALC_HEADSET_TYPE_UNKNOWN
;
4262 snd_hda_gen_hp_automute(codec
, jack
);
4265 static void alc_probe_headset_mode(struct hda_codec
*codec
)
4268 struct alc_spec
*spec
= codec
->spec
;
4269 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
4272 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
4273 if (cfg
->inputs
[i
].is_headset_mic
&& !spec
->headset_mic_pin
)
4274 spec
->headset_mic_pin
= cfg
->inputs
[i
].pin
;
4275 if (cfg
->inputs
[i
].is_headphone_mic
&& !spec
->headphone_mic_pin
)
4276 spec
->headphone_mic_pin
= cfg
->inputs
[i
].pin
;
4279 spec
->gen
.cap_sync_hook
= alc_update_headset_mode_hook
;
4280 spec
->gen
.automute_hook
= alc_update_headset_mode
;
4281 spec
->gen
.hp_automute_hook
= alc_update_headset_jack_cb
;
4284 static void alc_fixup_headset_mode(struct hda_codec
*codec
,
4285 const struct hda_fixup
*fix
, int action
)
4287 struct alc_spec
*spec
= codec
->spec
;
4290 case HDA_FIXUP_ACT_PRE_PROBE
:
4291 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
| HDA_PINCFG_HEADPHONE_MIC
;
4293 case HDA_FIXUP_ACT_PROBE
:
4294 alc_probe_headset_mode(codec
);
4296 case HDA_FIXUP_ACT_INIT
:
4297 spec
->current_headset_mode
= 0;
4298 alc_update_headset_mode(codec
);
4303 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec
*codec
,
4304 const struct hda_fixup
*fix
, int action
)
4306 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4307 struct alc_spec
*spec
= codec
->spec
;
4308 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
4311 alc_fixup_headset_mode(codec
, fix
, action
);
4314 static void alc255_set_default_jack_type(struct hda_codec
*codec
)
4316 /* Set to iphone type */
4317 static struct coef_fw alc255fw
[] = {
4318 WRITE_COEF(0x1b, 0x880b),
4319 WRITE_COEF(0x45, 0xd089),
4320 WRITE_COEF(0x1b, 0x080b),
4321 WRITE_COEF(0x46, 0x0004),
4322 WRITE_COEF(0x1b, 0x0c0b),
4325 static struct coef_fw alc256fw
[] = {
4326 WRITE_COEF(0x1b, 0x884b),
4327 WRITE_COEF(0x45, 0xd089),
4328 WRITE_COEF(0x1b, 0x084b),
4329 WRITE_COEF(0x46, 0x0004),
4330 WRITE_COEF(0x1b, 0x0c4b),
4333 switch (codec
->core
.vendor_id
) {
4335 alc_process_coef_fw(codec
, alc255fw
);
4338 alc_process_coef_fw(codec
, alc256fw
);
4344 static void alc_fixup_headset_mode_alc255(struct hda_codec
*codec
,
4345 const struct hda_fixup
*fix
, int action
)
4347 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4348 alc255_set_default_jack_type(codec
);
4350 alc_fixup_headset_mode(codec
, fix
, action
);
4353 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec
*codec
,
4354 const struct hda_fixup
*fix
, int action
)
4356 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4357 struct alc_spec
*spec
= codec
->spec
;
4358 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
4359 alc255_set_default_jack_type(codec
);
4362 alc_fixup_headset_mode(codec
, fix
, action
);
4365 static void alc288_update_headset_jack_cb(struct hda_codec
*codec
,
4366 struct hda_jack_callback
*jack
)
4368 struct alc_spec
*spec
= codec
->spec
;
4371 alc_update_headset_jack_cb(codec
, jack
);
4372 /* Headset Mic enable or disable, only for Dell Dino */
4373 present
= spec
->gen
.hp_jack_present
? 0x40 : 0;
4374 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
4378 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec
*codec
,
4379 const struct hda_fixup
*fix
, int action
)
4381 alc_fixup_headset_mode(codec
, fix
, action
);
4382 if (action
== HDA_FIXUP_ACT_PROBE
) {
4383 struct alc_spec
*spec
= codec
->spec
;
4384 spec
->gen
.hp_automute_hook
= alc288_update_headset_jack_cb
;
4388 static void alc_fixup_auto_mute_via_amp(struct hda_codec
*codec
,
4389 const struct hda_fixup
*fix
, int action
)
4391 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4392 struct alc_spec
*spec
= codec
->spec
;
4393 spec
->gen
.auto_mute_via_amp
= 1;
4397 static void alc_no_shutup(struct hda_codec
*codec
)
4401 static void alc_fixup_no_shutup(struct hda_codec
*codec
,
4402 const struct hda_fixup
*fix
, int action
)
4404 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4405 struct alc_spec
*spec
= codec
->spec
;
4406 spec
->shutup
= alc_no_shutup
;
4410 static void alc_fixup_disable_aamix(struct hda_codec
*codec
,
4411 const struct hda_fixup
*fix
, int action
)
4413 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4414 struct alc_spec
*spec
= codec
->spec
;
4415 /* Disable AA-loopback as it causes white noise */
4416 spec
->gen
.mixer_nid
= 0;
4420 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
4421 static void alc_fixup_tpt440_dock(struct hda_codec
*codec
,
4422 const struct hda_fixup
*fix
, int action
)
4424 static const struct hda_pintbl pincfgs
[] = {
4425 { 0x16, 0x21211010 }, /* dock headphone */
4426 { 0x19, 0x21a11010 }, /* dock mic */
4429 struct alc_spec
*spec
= codec
->spec
;
4431 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4432 spec
->shutup
= alc_no_shutup
; /* reduce click noise */
4433 spec
->reboot_notify
= alc_d3_at_reboot
; /* reduce noise */
4434 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
4435 codec
->power_save_node
= 0; /* avoid click noises */
4436 snd_hda_apply_pincfgs(codec
, pincfgs
);
4440 static void alc_shutup_dell_xps13(struct hda_codec
*codec
)
4442 struct alc_spec
*spec
= codec
->spec
;
4443 int hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
4445 /* Prevent pop noises when headphones are plugged in */
4446 snd_hda_codec_write(codec
, hp_pin
, 0,
4447 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
4451 static void alc_fixup_dell_xps13(struct hda_codec
*codec
,
4452 const struct hda_fixup
*fix
, int action
)
4454 struct alc_spec
*spec
= codec
->spec
;
4455 struct hda_input_mux
*imux
= &spec
->gen
.input_mux
;
4459 case HDA_FIXUP_ACT_PRE_PROBE
:
4460 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
4461 * it causes a click noise at start up
4463 snd_hda_codec_set_pin_target(codec
, 0x19, PIN_VREFHIZ
);
4465 case HDA_FIXUP_ACT_PROBE
:
4466 spec
->shutup
= alc_shutup_dell_xps13
;
4468 /* Make the internal mic the default input source. */
4469 for (i
= 0; i
< imux
->num_items
; i
++) {
4470 if (spec
->gen
.imux_pins
[i
] == 0x12) {
4471 spec
->gen
.cur_mux
[0] = i
;
4479 static void alc_fixup_headset_mode_alc662(struct hda_codec
*codec
,
4480 const struct hda_fixup
*fix
, int action
)
4482 struct alc_spec
*spec
= codec
->spec
;
4484 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4485 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
4486 spec
->gen
.hp_mic
= 1; /* Mic-in is same pin as headphone */
4488 /* Disable boost for mic-in permanently. (This code is only called
4489 from quirks that guarantee that the headphone is at NID 0x1b.) */
4490 snd_hda_codec_write(codec
, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000);
4491 snd_hda_override_wcaps(codec
, 0x1b, get_wcaps(codec
, 0x1b) & ~AC_WCAP_IN_AMP
);
4493 alc_fixup_headset_mode(codec
, fix
, action
);
4496 static void alc_fixup_headset_mode_alc668(struct hda_codec
*codec
,
4497 const struct hda_fixup
*fix
, int action
)
4499 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4500 alc_write_coef_idx(codec
, 0xc4, 0x8000);
4501 alc_update_coef_idx(codec
, 0xc2, ~0xfe, 0);
4502 snd_hda_set_pin_ctl_cache(codec
, 0x18, 0);
4504 alc_fixup_headset_mode(codec
, fix
, action
);
4507 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
4508 static int find_ext_mic_pin(struct hda_codec
*codec
)
4510 struct alc_spec
*spec
= codec
->spec
;
4511 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
4513 unsigned int defcfg
;
4516 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
4517 if (cfg
->inputs
[i
].type
!= AUTO_PIN_MIC
)
4519 nid
= cfg
->inputs
[i
].pin
;
4520 defcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
4521 if (snd_hda_get_input_pin_attr(defcfg
) == INPUT_PIN_ATTR_INT
)
4529 static void alc271_hp_gate_mic_jack(struct hda_codec
*codec
,
4530 const struct hda_fixup
*fix
,
4533 struct alc_spec
*spec
= codec
->spec
;
4535 if (action
== HDA_FIXUP_ACT_PROBE
) {
4536 int mic_pin
= find_ext_mic_pin(codec
);
4537 int hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
4539 if (snd_BUG_ON(!mic_pin
|| !hp_pin
))
4541 snd_hda_jack_set_gating_jack(codec
, mic_pin
, hp_pin
);
4545 static void alc269_fixup_limit_int_mic_boost(struct hda_codec
*codec
,
4546 const struct hda_fixup
*fix
,
4549 struct alc_spec
*spec
= codec
->spec
;
4550 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
4553 /* The mic boosts on level 2 and 3 are too noisy
4554 on the internal mic input.
4555 Therefore limit the boost to 0 or 1. */
4557 if (action
!= HDA_FIXUP_ACT_PROBE
)
4560 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
4561 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
4562 unsigned int defcfg
;
4563 if (cfg
->inputs
[i
].type
!= AUTO_PIN_MIC
)
4565 defcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
4566 if (snd_hda_get_input_pin_attr(defcfg
) != INPUT_PIN_ATTR_INT
)
4569 snd_hda_override_amp_caps(codec
, nid
, HDA_INPUT
,
4570 (0x00 << AC_AMPCAP_OFFSET_SHIFT
) |
4571 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
4572 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT
) |
4573 (0 << AC_AMPCAP_MUTE_SHIFT
));
4577 static void alc283_hp_automute_hook(struct hda_codec
*codec
,
4578 struct hda_jack_callback
*jack
)
4580 struct alc_spec
*spec
= codec
->spec
;
4584 snd_hda_gen_hp_automute(codec
, jack
);
4586 vref
= spec
->gen
.hp_jack_present
? PIN_VREF80
: 0;
4589 snd_hda_codec_write(codec
, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4593 static void alc283_fixup_chromebook(struct hda_codec
*codec
,
4594 const struct hda_fixup
*fix
, int action
)
4596 struct alc_spec
*spec
= codec
->spec
;
4599 case HDA_FIXUP_ACT_PRE_PROBE
:
4600 snd_hda_override_wcaps(codec
, 0x03, 0);
4601 /* Disable AA-loopback as it causes white noise */
4602 spec
->gen
.mixer_nid
= 0;
4604 case HDA_FIXUP_ACT_INIT
:
4605 /* MIC2-VREF control */
4606 /* Set to manual mode */
4607 alc_update_coef_idx(codec
, 0x06, 0x000c, 0);
4608 /* Enable Line1 input control by verb */
4609 alc_update_coef_idx(codec
, 0x1a, 0, 1 << 4);
4614 static void alc283_fixup_sense_combo_jack(struct hda_codec
*codec
,
4615 const struct hda_fixup
*fix
, int action
)
4617 struct alc_spec
*spec
= codec
->spec
;
4620 case HDA_FIXUP_ACT_PRE_PROBE
:
4621 spec
->gen
.hp_automute_hook
= alc283_hp_automute_hook
;
4623 case HDA_FIXUP_ACT_INIT
:
4624 /* MIC2-VREF control */
4625 /* Set to manual mode */
4626 alc_update_coef_idx(codec
, 0x06, 0x000c, 0);
4631 /* mute tablet speaker pin (0x14) via dock plugging in addition */
4632 static void asus_tx300_automute(struct hda_codec
*codec
)
4634 struct alc_spec
*spec
= codec
->spec
;
4635 snd_hda_gen_update_outputs(codec
);
4636 if (snd_hda_jack_detect(codec
, 0x1b))
4637 spec
->gen
.mute_bits
|= (1ULL << 0x14);
4640 static void alc282_fixup_asus_tx300(struct hda_codec
*codec
,
4641 const struct hda_fixup
*fix
, int action
)
4643 struct alc_spec
*spec
= codec
->spec
;
4644 /* TX300 needs to set up GPIO2 for the speaker amp */
4645 static const struct hda_verb gpio2_verbs
[] = {
4646 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x04 },
4647 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x04 },
4648 { 0x01, AC_VERB_SET_GPIO_DATA
, 0x04 },
4651 static const struct hda_pintbl dock_pins
[] = {
4652 { 0x1b, 0x21114000 }, /* dock speaker pin */
4655 struct snd_kcontrol
*kctl
;
4658 case HDA_FIXUP_ACT_PRE_PROBE
:
4659 snd_hda_add_verbs(codec
, gpio2_verbs
);
4660 snd_hda_apply_pincfgs(codec
, dock_pins
);
4661 spec
->gen
.auto_mute_via_amp
= 1;
4662 spec
->gen
.automute_hook
= asus_tx300_automute
;
4663 snd_hda_jack_detect_enable_callback(codec
, 0x1b,
4664 snd_hda_gen_hp_automute
);
4666 case HDA_FIXUP_ACT_BUILD
:
4667 /* this is a bit tricky; give more sane names for the main
4668 * (tablet) speaker and the dock speaker, respectively
4670 kctl
= snd_hda_find_mixer_ctl(codec
, "Speaker Playback Switch");
4672 strcpy(kctl
->id
.name
, "Dock Speaker Playback Switch");
4673 kctl
= snd_hda_find_mixer_ctl(codec
, "Bass Speaker Playback Switch");
4675 strcpy(kctl
->id
.name
, "Speaker Playback Switch");
4680 static void alc290_fixup_mono_speakers(struct hda_codec
*codec
,
4681 const struct hda_fixup
*fix
, int action
)
4683 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4684 /* DAC node 0x03 is giving mono output. We therefore want to
4685 make sure 0x14 (front speaker) and 0x15 (headphones) use the
4686 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
4687 hda_nid_t conn1
[2] = { 0x0c };
4688 snd_hda_override_conn_list(codec
, 0x14, 1, conn1
);
4689 snd_hda_override_conn_list(codec
, 0x15, 1, conn1
);
4693 static void alc298_fixup_speaker_volume(struct hda_codec
*codec
,
4694 const struct hda_fixup
*fix
, int action
)
4696 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4697 /* The speaker is routed to the Node 0x06 by a mistake, as a result
4698 we can't adjust the speaker's volume since this node does not has
4699 Amp-out capability. we change the speaker's route to:
4700 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
4701 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
4702 speaker's volume now. */
4704 hda_nid_t conn1
[1] = { 0x0c };
4705 snd_hda_override_conn_list(codec
, 0x17, 1, conn1
);
4709 /* Hook to update amp GPIO4 for automute */
4710 static void alc280_hp_gpio4_automute_hook(struct hda_codec
*codec
,
4711 struct hda_jack_callback
*jack
)
4713 struct alc_spec
*spec
= codec
->spec
;
4715 snd_hda_gen_hp_automute(codec
, jack
);
4716 /* mute_led_polarity is set to 0, so we pass inverted value here */
4717 alc_update_gpio_led(codec
, 0x10, !spec
->gen
.hp_jack_present
);
4720 /* Manage GPIOs for HP EliteBook Folio 9480m.
4722 * GPIO4 is the headphone amplifier power control
4723 * GPIO3 is the audio output mute indicator LED
4726 static void alc280_fixup_hp_9480m(struct hda_codec
*codec
,
4727 const struct hda_fixup
*fix
,
4730 struct alc_spec
*spec
= codec
->spec
;
4731 static const struct hda_verb gpio_init
[] = {
4732 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x18 },
4733 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x18 },
4737 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4738 /* Set the hooks to turn the headphone amp on/off
4741 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
4742 spec
->gen
.hp_automute_hook
= alc280_hp_gpio4_automute_hook
;
4744 /* The GPIOs are currently off */
4747 /* GPIO3 is connected to the output mute LED,
4748 * high is on, low is off
4750 spec
->mute_led_polarity
= 0;
4751 spec
->gpio_mute_led_mask
= 0x08;
4753 /* Initialize GPIO configuration */
4754 snd_hda_add_verbs(codec
, gpio_init
);
4758 /* for hda_fixup_thinkpad_acpi() */
4759 #include "thinkpad_helper.c"
4761 /* for dell wmi mic mute led */
4762 #include "dell_wmi_helper.c"
4765 ALC269_FIXUP_SONY_VAIO
,
4766 ALC275_FIXUP_SONY_VAIO_GPIO2
,
4767 ALC269_FIXUP_DELL_M101Z
,
4768 ALC269_FIXUP_SKU_IGNORE
,
4769 ALC269_FIXUP_ASUS_G73JW
,
4770 ALC269_FIXUP_LENOVO_EAPD
,
4771 ALC275_FIXUP_SONY_HWEQ
,
4772 ALC275_FIXUP_SONY_DISABLE_AAMIX
,
4774 ALC269_FIXUP_PCM_44K
,
4775 ALC269_FIXUP_STEREO_DMIC
,
4776 ALC269_FIXUP_HEADSET_MIC
,
4777 ALC269_FIXUP_QUANTA_MUTE
,
4778 ALC269_FIXUP_LIFEBOOK
,
4779 ALC269_FIXUP_LIFEBOOK_EXTMIC
,
4780 ALC269_FIXUP_LIFEBOOK_HP_PIN
,
4781 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT
,
4784 ALC269VB_FIXUP_AMIC
,
4785 ALC269VB_FIXUP_DMIC
,
4786 ALC269_FIXUP_HP_MUTE_LED
,
4787 ALC269_FIXUP_HP_MUTE_LED_MIC1
,
4788 ALC269_FIXUP_HP_MUTE_LED_MIC2
,
4789 ALC269_FIXUP_HP_GPIO_LED
,
4790 ALC269_FIXUP_HP_GPIO_MIC1_LED
,
4791 ALC269_FIXUP_HP_LINE1_MIC1_LED
,
4792 ALC269_FIXUP_INV_DMIC
,
4793 ALC269_FIXUP_LENOVO_DOCK
,
4794 ALC269_FIXUP_NO_SHUTUP
,
4795 ALC286_FIXUP_SONY_MIC_NO_PRESENCE
,
4796 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
,
4797 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
4798 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
,
4799 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
4800 ALC269_FIXUP_HEADSET_MODE
,
4801 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
,
4802 ALC269_FIXUP_ASPIRE_HEADSET_MIC
,
4803 ALC269_FIXUP_ASUS_X101_FUNC
,
4804 ALC269_FIXUP_ASUS_X101_VERB
,
4805 ALC269_FIXUP_ASUS_X101
,
4806 ALC271_FIXUP_AMIC_MIC2
,
4807 ALC271_FIXUP_HP_GATE_MIC_JACK
,
4808 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
,
4809 ALC269_FIXUP_ACER_AC700
,
4810 ALC269_FIXUP_LIMIT_INT_MIC_BOOST
,
4811 ALC269VB_FIXUP_ASUS_ZENBOOK
,
4812 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
,
4813 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
,
4814 ALC269VB_FIXUP_ORDISSIMO_EVE2
,
4815 ALC283_FIXUP_CHROME_BOOK
,
4816 ALC283_FIXUP_SENSE_COMBO_JACK
,
4817 ALC282_FIXUP_ASUS_TX300
,
4818 ALC283_FIXUP_INT_MIC
,
4819 ALC290_FIXUP_MONO_SPEAKERS
,
4820 ALC290_FIXUP_MONO_SPEAKERS_HSJACK
,
4821 ALC290_FIXUP_SUBWOOFER
,
4822 ALC290_FIXUP_SUBWOOFER_HSJACK
,
4823 ALC269_FIXUP_THINKPAD_ACPI
,
4824 ALC269_FIXUP_DMIC_THINKPAD_ACPI
,
4825 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
4826 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
,
4827 ALC255_FIXUP_HEADSET_MODE
,
4828 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
,
4829 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
,
4830 ALC292_FIXUP_TPT440_DOCK
,
4831 ALC292_FIXUP_TPT440
,
4832 ALC283_FIXUP_HEADSET_MIC
,
4833 ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
,
4834 ALC282_FIXUP_ASPIRE_V5_PINS
,
4835 ALC280_FIXUP_HP_GPIO4
,
4836 ALC286_FIXUP_HP_GPIO_LED
,
4837 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY
,
4838 ALC280_FIXUP_HP_DOCK_PINS
,
4839 ALC280_FIXUP_HP_9480M
,
4840 ALC288_FIXUP_DELL_HEADSET_MODE
,
4841 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
,
4842 ALC288_FIXUP_DELL_XPS_13_GPIO6
,
4843 ALC288_FIXUP_DELL_XPS_13
,
4844 ALC288_FIXUP_DISABLE_AAMIX
,
4845 ALC292_FIXUP_DELL_E7X
,
4846 ALC292_FIXUP_DISABLE_AAMIX
,
4847 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
,
4848 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
4849 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE
,
4850 ALC275_FIXUP_DELL_XPS
,
4851 ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE
,
4852 ALC293_FIXUP_LENOVO_SPK_NOISE
,
4853 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
,
4854 ALC255_FIXUP_DELL_SPK_NOISE
,
4855 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
4856 ALC280_FIXUP_HP_HEADSET_MIC
,
4857 ALC221_FIXUP_HP_FRONT_MIC
,
4858 ALC292_FIXUP_TPT460
,
4859 ALC298_FIXUP_SPK_VOLUME
,
4860 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER
,
4863 static const struct hda_fixup alc269_fixups
[] = {
4864 [ALC269_FIXUP_SONY_VAIO
] = {
4865 .type
= HDA_FIXUP_PINCTLS
,
4866 .v
.pins
= (const struct hda_pintbl
[]) {
4867 {0x19, PIN_VREFGRD
},
4871 [ALC275_FIXUP_SONY_VAIO_GPIO2
] = {
4872 .type
= HDA_FIXUP_VERBS
,
4873 .v
.verbs
= (const struct hda_verb
[]) {
4874 {0x01, AC_VERB_SET_GPIO_MASK
, 0x04},
4875 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x04},
4876 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
4880 .chain_id
= ALC269_FIXUP_SONY_VAIO
4882 [ALC269_FIXUP_DELL_M101Z
] = {
4883 .type
= HDA_FIXUP_VERBS
,
4884 .v
.verbs
= (const struct hda_verb
[]) {
4885 /* Enables internal speaker */
4886 {0x20, AC_VERB_SET_COEF_INDEX
, 13},
4887 {0x20, AC_VERB_SET_PROC_COEF
, 0x4040},
4891 [ALC269_FIXUP_SKU_IGNORE
] = {
4892 .type
= HDA_FIXUP_FUNC
,
4893 .v
.func
= alc_fixup_sku_ignore
,
4895 [ALC269_FIXUP_ASUS_G73JW
] = {
4896 .type
= HDA_FIXUP_PINS
,
4897 .v
.pins
= (const struct hda_pintbl
[]) {
4898 { 0x17, 0x99130111 }, /* subwoofer */
4902 [ALC269_FIXUP_LENOVO_EAPD
] = {
4903 .type
= HDA_FIXUP_VERBS
,
4904 .v
.verbs
= (const struct hda_verb
[]) {
4905 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
4909 [ALC275_FIXUP_SONY_HWEQ
] = {
4910 .type
= HDA_FIXUP_FUNC
,
4911 .v
.func
= alc269_fixup_hweq
,
4913 .chain_id
= ALC275_FIXUP_SONY_VAIO_GPIO2
4915 [ALC275_FIXUP_SONY_DISABLE_AAMIX
] = {
4916 .type
= HDA_FIXUP_FUNC
,
4917 .v
.func
= alc_fixup_disable_aamix
,
4919 .chain_id
= ALC269_FIXUP_SONY_VAIO
4921 [ALC271_FIXUP_DMIC
] = {
4922 .type
= HDA_FIXUP_FUNC
,
4923 .v
.func
= alc271_fixup_dmic
,
4925 [ALC269_FIXUP_PCM_44K
] = {
4926 .type
= HDA_FIXUP_FUNC
,
4927 .v
.func
= alc269_fixup_pcm_44k
,
4929 .chain_id
= ALC269_FIXUP_QUANTA_MUTE
4931 [ALC269_FIXUP_STEREO_DMIC
] = {
4932 .type
= HDA_FIXUP_FUNC
,
4933 .v
.func
= alc269_fixup_stereo_dmic
,
4935 [ALC269_FIXUP_HEADSET_MIC
] = {
4936 .type
= HDA_FIXUP_FUNC
,
4937 .v
.func
= alc269_fixup_headset_mic
,
4939 [ALC269_FIXUP_QUANTA_MUTE
] = {
4940 .type
= HDA_FIXUP_FUNC
,
4941 .v
.func
= alc269_fixup_quanta_mute
,
4943 [ALC269_FIXUP_LIFEBOOK
] = {
4944 .type
= HDA_FIXUP_PINS
,
4945 .v
.pins
= (const struct hda_pintbl
[]) {
4946 { 0x1a, 0x2101103f }, /* dock line-out */
4947 { 0x1b, 0x23a11040 }, /* dock mic-in */
4951 .chain_id
= ALC269_FIXUP_QUANTA_MUTE
4953 [ALC269_FIXUP_LIFEBOOK_EXTMIC
] = {
4954 .type
= HDA_FIXUP_PINS
,
4955 .v
.pins
= (const struct hda_pintbl
[]) {
4956 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
4960 [ALC269_FIXUP_LIFEBOOK_HP_PIN
] = {
4961 .type
= HDA_FIXUP_PINS
,
4962 .v
.pins
= (const struct hda_pintbl
[]) {
4963 { 0x21, 0x0221102f }, /* HP out */
4967 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT
] = {
4968 .type
= HDA_FIXUP_FUNC
,
4969 .v
.func
= alc269_fixup_pincfg_no_hp_to_lineout
,
4971 [ALC269_FIXUP_AMIC
] = {
4972 .type
= HDA_FIXUP_PINS
,
4973 .v
.pins
= (const struct hda_pintbl
[]) {
4974 { 0x14, 0x99130110 }, /* speaker */
4975 { 0x15, 0x0121401f }, /* HP out */
4976 { 0x18, 0x01a19c20 }, /* mic */
4977 { 0x19, 0x99a3092f }, /* int-mic */
4981 [ALC269_FIXUP_DMIC
] = {
4982 .type
= HDA_FIXUP_PINS
,
4983 .v
.pins
= (const struct hda_pintbl
[]) {
4984 { 0x12, 0x99a3092f }, /* int-mic */
4985 { 0x14, 0x99130110 }, /* speaker */
4986 { 0x15, 0x0121401f }, /* HP out */
4987 { 0x18, 0x01a19c20 }, /* mic */
4991 [ALC269VB_FIXUP_AMIC
] = {
4992 .type
= HDA_FIXUP_PINS
,
4993 .v
.pins
= (const struct hda_pintbl
[]) {
4994 { 0x14, 0x99130110 }, /* speaker */
4995 { 0x18, 0x01a19c20 }, /* mic */
4996 { 0x19, 0x99a3092f }, /* int-mic */
4997 { 0x21, 0x0121401f }, /* HP out */
5001 [ALC269VB_FIXUP_DMIC
] = {
5002 .type
= HDA_FIXUP_PINS
,
5003 .v
.pins
= (const struct hda_pintbl
[]) {
5004 { 0x12, 0x99a3092f }, /* int-mic */
5005 { 0x14, 0x99130110 }, /* speaker */
5006 { 0x18, 0x01a19c20 }, /* mic */
5007 { 0x21, 0x0121401f }, /* HP out */
5011 [ALC269_FIXUP_HP_MUTE_LED
] = {
5012 .type
= HDA_FIXUP_FUNC
,
5013 .v
.func
= alc269_fixup_hp_mute_led
,
5015 [ALC269_FIXUP_HP_MUTE_LED_MIC1
] = {
5016 .type
= HDA_FIXUP_FUNC
,
5017 .v
.func
= alc269_fixup_hp_mute_led_mic1
,
5019 [ALC269_FIXUP_HP_MUTE_LED_MIC2
] = {
5020 .type
= HDA_FIXUP_FUNC
,
5021 .v
.func
= alc269_fixup_hp_mute_led_mic2
,
5023 [ALC269_FIXUP_HP_GPIO_LED
] = {
5024 .type
= HDA_FIXUP_FUNC
,
5025 .v
.func
= alc269_fixup_hp_gpio_led
,
5027 [ALC269_FIXUP_HP_GPIO_MIC1_LED
] = {
5028 .type
= HDA_FIXUP_FUNC
,
5029 .v
.func
= alc269_fixup_hp_gpio_mic1_led
,
5031 [ALC269_FIXUP_HP_LINE1_MIC1_LED
] = {
5032 .type
= HDA_FIXUP_FUNC
,
5033 .v
.func
= alc269_fixup_hp_line1_mic1_led
,
5035 [ALC269_FIXUP_INV_DMIC
] = {
5036 .type
= HDA_FIXUP_FUNC
,
5037 .v
.func
= alc_fixup_inv_dmic
,
5039 [ALC269_FIXUP_NO_SHUTUP
] = {
5040 .type
= HDA_FIXUP_FUNC
,
5041 .v
.func
= alc_fixup_no_shutup
,
5043 [ALC269_FIXUP_LENOVO_DOCK
] = {
5044 .type
= HDA_FIXUP_PINS
,
5045 .v
.pins
= (const struct hda_pintbl
[]) {
5046 { 0x19, 0x23a11040 }, /* dock mic */
5047 { 0x1b, 0x2121103f }, /* dock headphone */
5051 .chain_id
= ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
5053 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
] = {
5054 .type
= HDA_FIXUP_FUNC
,
5055 .v
.func
= alc269_fixup_pincfg_no_hp_to_lineout
,
5057 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
5059 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
5060 .type
= HDA_FIXUP_PINS
,
5061 .v
.pins
= (const struct hda_pintbl
[]) {
5062 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5063 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5067 .chain_id
= ALC269_FIXUP_HEADSET_MODE
5069 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
] = {
5070 .type
= HDA_FIXUP_PINS
,
5071 .v
.pins
= (const struct hda_pintbl
[]) {
5072 { 0x16, 0x21014020 }, /* dock line out */
5073 { 0x19, 0x21a19030 }, /* dock mic */
5074 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5078 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
5080 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
] = {
5081 .type
= HDA_FIXUP_PINS
,
5082 .v
.pins
= (const struct hda_pintbl
[]) {
5083 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5087 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
5089 [ALC269_FIXUP_HEADSET_MODE
] = {
5090 .type
= HDA_FIXUP_FUNC
,
5091 .v
.func
= alc_fixup_headset_mode
,
5093 .chain_id
= ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
5095 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
] = {
5096 .type
= HDA_FIXUP_FUNC
,
5097 .v
.func
= alc_fixup_headset_mode_no_hp_mic
,
5099 [ALC269_FIXUP_ASPIRE_HEADSET_MIC
] = {
5100 .type
= HDA_FIXUP_PINS
,
5101 .v
.pins
= (const struct hda_pintbl
[]) {
5102 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
5106 .chain_id
= ALC269_FIXUP_HEADSET_MODE
,
5108 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE
] = {
5109 .type
= HDA_FIXUP_PINS
,
5110 .v
.pins
= (const struct hda_pintbl
[]) {
5111 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5115 .chain_id
= ALC269_FIXUP_HEADSET_MIC
5117 [ALC269_FIXUP_ASUS_X101_FUNC
] = {
5118 .type
= HDA_FIXUP_FUNC
,
5119 .v
.func
= alc269_fixup_x101_headset_mic
,
5121 [ALC269_FIXUP_ASUS_X101_VERB
] = {
5122 .type
= HDA_FIXUP_VERBS
,
5123 .v
.verbs
= (const struct hda_verb
[]) {
5124 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5125 {0x20, AC_VERB_SET_COEF_INDEX
, 0x08},
5126 {0x20, AC_VERB_SET_PROC_COEF
, 0x0310},
5130 .chain_id
= ALC269_FIXUP_ASUS_X101_FUNC
5132 [ALC269_FIXUP_ASUS_X101
] = {
5133 .type
= HDA_FIXUP_PINS
,
5134 .v
.pins
= (const struct hda_pintbl
[]) {
5135 { 0x18, 0x04a1182c }, /* Headset mic */
5139 .chain_id
= ALC269_FIXUP_ASUS_X101_VERB
5141 [ALC271_FIXUP_AMIC_MIC2
] = {
5142 .type
= HDA_FIXUP_PINS
,
5143 .v
.pins
= (const struct hda_pintbl
[]) {
5144 { 0x14, 0x99130110 }, /* speaker */
5145 { 0x19, 0x01a19c20 }, /* mic */
5146 { 0x1b, 0x99a7012f }, /* int-mic */
5147 { 0x21, 0x0121401f }, /* HP out */
5151 [ALC271_FIXUP_HP_GATE_MIC_JACK
] = {
5152 .type
= HDA_FIXUP_FUNC
,
5153 .v
.func
= alc271_hp_gate_mic_jack
,
5155 .chain_id
= ALC271_FIXUP_AMIC_MIC2
,
5157 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
] = {
5158 .type
= HDA_FIXUP_FUNC
,
5159 .v
.func
= alc269_fixup_limit_int_mic_boost
,
5161 .chain_id
= ALC271_FIXUP_HP_GATE_MIC_JACK
,
5163 [ALC269_FIXUP_ACER_AC700
] = {
5164 .type
= HDA_FIXUP_PINS
,
5165 .v
.pins
= (const struct hda_pintbl
[]) {
5166 { 0x12, 0x99a3092f }, /* int-mic */
5167 { 0x14, 0x99130110 }, /* speaker */
5168 { 0x18, 0x03a11c20 }, /* mic */
5169 { 0x1e, 0x0346101e }, /* SPDIF1 */
5170 { 0x21, 0x0321101f }, /* HP out */
5174 .chain_id
= ALC271_FIXUP_DMIC
,
5176 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST
] = {
5177 .type
= HDA_FIXUP_FUNC
,
5178 .v
.func
= alc269_fixup_limit_int_mic_boost
,
5180 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
5182 [ALC269VB_FIXUP_ASUS_ZENBOOK
] = {
5183 .type
= HDA_FIXUP_FUNC
,
5184 .v
.func
= alc269_fixup_limit_int_mic_boost
,
5186 .chain_id
= ALC269VB_FIXUP_DMIC
,
5188 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
] = {
5189 .type
= HDA_FIXUP_VERBS
,
5190 .v
.verbs
= (const struct hda_verb
[]) {
5191 /* class-D output amp +5dB */
5192 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x12 },
5193 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2800 },
5197 .chain_id
= ALC269VB_FIXUP_ASUS_ZENBOOK
,
5199 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
] = {
5200 .type
= HDA_FIXUP_FUNC
,
5201 .v
.func
= alc269_fixup_limit_int_mic_boost
,
5203 .chain_id
= ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5205 [ALC269VB_FIXUP_ORDISSIMO_EVE2
] = {
5206 .type
= HDA_FIXUP_PINS
,
5207 .v
.pins
= (const struct hda_pintbl
[]) {
5208 { 0x12, 0x99a3092f }, /* int-mic */
5209 { 0x18, 0x03a11d20 }, /* mic */
5210 { 0x19, 0x411111f0 }, /* Unused bogus pin */
5214 [ALC283_FIXUP_CHROME_BOOK
] = {
5215 .type
= HDA_FIXUP_FUNC
,
5216 .v
.func
= alc283_fixup_chromebook
,
5218 [ALC283_FIXUP_SENSE_COMBO_JACK
] = {
5219 .type
= HDA_FIXUP_FUNC
,
5220 .v
.func
= alc283_fixup_sense_combo_jack
,
5222 .chain_id
= ALC283_FIXUP_CHROME_BOOK
,
5224 [ALC282_FIXUP_ASUS_TX300
] = {
5225 .type
= HDA_FIXUP_FUNC
,
5226 .v
.func
= alc282_fixup_asus_tx300
,
5228 [ALC283_FIXUP_INT_MIC
] = {
5229 .type
= HDA_FIXUP_VERBS
,
5230 .v
.verbs
= (const struct hda_verb
[]) {
5231 {0x20, AC_VERB_SET_COEF_INDEX
, 0x1a},
5232 {0x20, AC_VERB_SET_PROC_COEF
, 0x0011},
5236 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
5238 [ALC290_FIXUP_SUBWOOFER_HSJACK
] = {
5239 .type
= HDA_FIXUP_PINS
,
5240 .v
.pins
= (const struct hda_pintbl
[]) {
5241 { 0x17, 0x90170112 }, /* subwoofer */
5245 .chain_id
= ALC290_FIXUP_MONO_SPEAKERS_HSJACK
,
5247 [ALC290_FIXUP_SUBWOOFER
] = {
5248 .type
= HDA_FIXUP_PINS
,
5249 .v
.pins
= (const struct hda_pintbl
[]) {
5250 { 0x17, 0x90170112 }, /* subwoofer */
5254 .chain_id
= ALC290_FIXUP_MONO_SPEAKERS
,
5256 [ALC290_FIXUP_MONO_SPEAKERS
] = {
5257 .type
= HDA_FIXUP_FUNC
,
5258 .v
.func
= alc290_fixup_mono_speakers
,
5260 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK
] = {
5261 .type
= HDA_FIXUP_FUNC
,
5262 .v
.func
= alc290_fixup_mono_speakers
,
5264 .chain_id
= ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
5266 [ALC269_FIXUP_THINKPAD_ACPI
] = {
5267 .type
= HDA_FIXUP_FUNC
,
5268 .v
.func
= hda_fixup_thinkpad_acpi
,
5270 .chain_id
= ALC269_FIXUP_SKU_IGNORE
,
5272 [ALC269_FIXUP_DMIC_THINKPAD_ACPI
] = {
5273 .type
= HDA_FIXUP_FUNC
,
5274 .v
.func
= alc_fixup_inv_dmic
,
5276 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
5278 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
5279 .type
= HDA_FIXUP_PINS
,
5280 .v
.pins
= (const struct hda_pintbl
[]) {
5281 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5282 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5286 .chain_id
= ALC255_FIXUP_HEADSET_MODE
5288 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
] = {
5289 .type
= HDA_FIXUP_PINS
,
5290 .v
.pins
= (const struct hda_pintbl
[]) {
5291 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5295 .chain_id
= ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
5297 [ALC255_FIXUP_HEADSET_MODE
] = {
5298 .type
= HDA_FIXUP_FUNC
,
5299 .v
.func
= alc_fixup_headset_mode_alc255
,
5301 .chain_id
= ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
5303 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
] = {
5304 .type
= HDA_FIXUP_FUNC
,
5305 .v
.func
= alc_fixup_headset_mode_alc255_no_hp_mic
,
5307 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
5308 .type
= HDA_FIXUP_PINS
,
5309 .v
.pins
= (const struct hda_pintbl
[]) {
5310 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5311 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5315 .chain_id
= ALC269_FIXUP_HEADSET_MODE
5317 [ALC292_FIXUP_TPT440_DOCK
] = {
5318 .type
= HDA_FIXUP_FUNC
,
5319 .v
.func
= alc_fixup_tpt440_dock
,
5321 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
5323 [ALC292_FIXUP_TPT440
] = {
5324 .type
= HDA_FIXUP_FUNC
,
5325 .v
.func
= alc_fixup_disable_aamix
,
5327 .chain_id
= ALC292_FIXUP_TPT440_DOCK
,
5329 [ALC283_FIXUP_HEADSET_MIC
] = {
5330 .type
= HDA_FIXUP_PINS
,
5331 .v
.pins
= (const struct hda_pintbl
[]) {
5332 { 0x19, 0x04a110f0 },
5336 [ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
] = {
5337 .type
= HDA_FIXUP_FUNC
,
5338 .v
.func
= alc_fixup_dell_wmi
,
5340 [ALC282_FIXUP_ASPIRE_V5_PINS
] = {
5341 .type
= HDA_FIXUP_PINS
,
5342 .v
.pins
= (const struct hda_pintbl
[]) {
5343 { 0x12, 0x90a60130 },
5344 { 0x14, 0x90170110 },
5345 { 0x17, 0x40000008 },
5346 { 0x18, 0x411111f0 },
5347 { 0x19, 0x01a1913c },
5348 { 0x1a, 0x411111f0 },
5349 { 0x1b, 0x411111f0 },
5350 { 0x1d, 0x40f89b2d },
5351 { 0x1e, 0x411111f0 },
5352 { 0x21, 0x0321101f },
5356 [ALC280_FIXUP_HP_GPIO4
] = {
5357 .type
= HDA_FIXUP_FUNC
,
5358 .v
.func
= alc280_fixup_hp_gpio4
,
5360 [ALC286_FIXUP_HP_GPIO_LED
] = {
5361 .type
= HDA_FIXUP_FUNC
,
5362 .v
.func
= alc286_fixup_hp_gpio_led
,
5364 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY
] = {
5365 .type
= HDA_FIXUP_FUNC
,
5366 .v
.func
= alc280_fixup_hp_gpio2_mic_hotkey
,
5368 [ALC280_FIXUP_HP_DOCK_PINS
] = {
5369 .type
= HDA_FIXUP_PINS
,
5370 .v
.pins
= (const struct hda_pintbl
[]) {
5371 { 0x1b, 0x21011020 }, /* line-out */
5372 { 0x1a, 0x01a1903c }, /* headset mic */
5373 { 0x18, 0x2181103f }, /* line-in */
5377 .chain_id
= ALC280_FIXUP_HP_GPIO4
5379 [ALC280_FIXUP_HP_9480M
] = {
5380 .type
= HDA_FIXUP_FUNC
,
5381 .v
.func
= alc280_fixup_hp_9480m
,
5383 [ALC288_FIXUP_DELL_HEADSET_MODE
] = {
5384 .type
= HDA_FIXUP_FUNC
,
5385 .v
.func
= alc_fixup_headset_mode_dell_alc288
,
5387 .chain_id
= ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
5389 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
5390 .type
= HDA_FIXUP_PINS
,
5391 .v
.pins
= (const struct hda_pintbl
[]) {
5392 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5393 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5397 .chain_id
= ALC288_FIXUP_DELL_HEADSET_MODE
5399 [ALC288_FIXUP_DELL_XPS_13_GPIO6
] = {
5400 .type
= HDA_FIXUP_VERBS
,
5401 .v
.verbs
= (const struct hda_verb
[]) {
5402 {0x01, AC_VERB_SET_GPIO_MASK
, 0x40},
5403 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x40},
5404 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
5408 .chain_id
= ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
5410 [ALC288_FIXUP_DISABLE_AAMIX
] = {
5411 .type
= HDA_FIXUP_FUNC
,
5412 .v
.func
= alc_fixup_disable_aamix
,
5414 .chain_id
= ALC288_FIXUP_DELL_XPS_13_GPIO6
5416 [ALC288_FIXUP_DELL_XPS_13
] = {
5417 .type
= HDA_FIXUP_FUNC
,
5418 .v
.func
= alc_fixup_dell_xps13
,
5420 .chain_id
= ALC288_FIXUP_DISABLE_AAMIX
5422 [ALC292_FIXUP_DISABLE_AAMIX
] = {
5423 .type
= HDA_FIXUP_FUNC
,
5424 .v
.func
= alc_fixup_disable_aamix
,
5426 .chain_id
= ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
5428 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
] = {
5429 .type
= HDA_FIXUP_FUNC
,
5430 .v
.func
= alc_fixup_disable_aamix
,
5432 .chain_id
= ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
5434 [ALC292_FIXUP_DELL_E7X
] = {
5435 .type
= HDA_FIXUP_FUNC
,
5436 .v
.func
= alc_fixup_dell_xps13
,
5438 .chain_id
= ALC292_FIXUP_DISABLE_AAMIX
5440 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
5441 .type
= HDA_FIXUP_PINS
,
5442 .v
.pins
= (const struct hda_pintbl
[]) {
5443 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5444 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5448 .chain_id
= ALC269_FIXUP_HEADSET_MODE
5450 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE
] = {
5451 .type
= HDA_FIXUP_PINS
,
5452 .v
.pins
= (const struct hda_pintbl
[]) {
5453 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5457 .chain_id
= ALC269_FIXUP_HEADSET_MODE
5459 [ALC275_FIXUP_DELL_XPS
] = {
5460 .type
= HDA_FIXUP_VERBS
,
5461 .v
.verbs
= (const struct hda_verb
[]) {
5462 /* Enables internal speaker */
5463 {0x20, AC_VERB_SET_COEF_INDEX
, 0x1f},
5464 {0x20, AC_VERB_SET_PROC_COEF
, 0x00c0},
5465 {0x20, AC_VERB_SET_COEF_INDEX
, 0x30},
5466 {0x20, AC_VERB_SET_PROC_COEF
, 0x00b1},
5470 [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE
] = {
5471 .type
= HDA_FIXUP_VERBS
,
5472 .v
.verbs
= (const struct hda_verb
[]) {
5473 /* Disable pass-through path for FRONT 14h */
5474 {0x20, AC_VERB_SET_COEF_INDEX
, 0x36},
5475 {0x20, AC_VERB_SET_PROC_COEF
, 0x1737},
5479 .chain_id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
5481 [ALC293_FIXUP_LENOVO_SPK_NOISE
] = {
5482 .type
= HDA_FIXUP_FUNC
,
5483 .v
.func
= alc_fixup_disable_aamix
,
5485 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
5487 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
] = {
5488 .type
= HDA_FIXUP_FUNC
,
5489 .v
.func
= alc233_fixup_lenovo_line2_mic_hotkey
,
5491 [ALC255_FIXUP_DELL_SPK_NOISE
] = {
5492 .type
= HDA_FIXUP_FUNC
,
5493 .v
.func
= alc_fixup_disable_aamix
,
5495 .chain_id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
5497 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
5498 .type
= HDA_FIXUP_VERBS
,
5499 .v
.verbs
= (const struct hda_verb
[]) {
5500 /* Disable pass-through path for FRONT 14h */
5501 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x36 },
5502 { 0x20, AC_VERB_SET_PROC_COEF
, 0x57d7 },
5506 .chain_id
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
5508 [ALC280_FIXUP_HP_HEADSET_MIC
] = {
5509 .type
= HDA_FIXUP_FUNC
,
5510 .v
.func
= alc_fixup_disable_aamix
,
5512 .chain_id
= ALC269_FIXUP_HEADSET_MIC
,
5514 [ALC221_FIXUP_HP_FRONT_MIC
] = {
5515 .type
= HDA_FIXUP_PINS
,
5516 .v
.pins
= (const struct hda_pintbl
[]) {
5517 { 0x19, 0x02a19020 }, /* Front Mic */
5521 [ALC292_FIXUP_TPT460
] = {
5522 .type
= HDA_FIXUP_FUNC
,
5523 .v
.func
= alc_fixup_tpt440_dock
,
5525 .chain_id
= ALC293_FIXUP_LENOVO_SPK_NOISE
,
5527 [ALC298_FIXUP_SPK_VOLUME
] = {
5528 .type
= HDA_FIXUP_FUNC
,
5529 .v
.func
= alc298_fixup_speaker_volume
,
5531 .chain_id
= ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE
,
5533 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER
] = {
5534 .type
= HDA_FIXUP_PINS
,
5535 .v
.pins
= (const struct hda_pintbl
[]) {
5536 { 0x1b, 0x90170151 },
5540 .chain_id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
5544 static const struct snd_pci_quirk alc269_fixup_tbl
[] = {
5545 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC
),
5546 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC
),
5547 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC
),
5548 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700
),
5549 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC
),
5550 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC
),
5551 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK
),
5552 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK
),
5553 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
),
5554 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
),
5555 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS
),
5556 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK
),
5557 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z
),
5558 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS
),
5559 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X
),
5560 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X
),
5561 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X
),
5562 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X
),
5563 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER
),
5564 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
5565 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
5566 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
5567 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK
),
5568 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK
),
5569 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X
),
5570 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X
),
5571 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK
),
5572 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5573 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5574 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13
),
5575 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
),
5576 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK
),
5577 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
),
5578 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5579 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5580 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
5581 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
5582 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
5583 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
5584 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
5585 SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13 9350", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE
),
5586 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER
),
5587 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE
),
5588 SND_PCI_QUIRK(0x1028, 0x075b, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE
),
5589 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME
),
5590 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER
),
5591 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5592 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5593 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2
),
5594 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED
),
5595 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
),
5596 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY
),
5598 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5599 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5600 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5601 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
5602 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
5603 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
5604 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
5605 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
5606 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5607 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5608 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5609 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5610 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED
),
5611 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS
),
5612 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS
),
5613 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5614 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5615 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5616 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5617 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5618 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M
),
5619 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5620 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5622 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5623 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5624 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5625 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5626 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5627 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5628 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5629 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5630 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5631 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5632 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5633 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5634 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5635 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5636 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5637 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5638 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5639 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5640 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5641 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5642 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5643 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5644 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5645 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5646 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5647 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5648 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5649 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5650 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5651 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC
),
5652 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC
),
5653 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300
),
5654 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5655 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5656 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK
),
5657 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
),
5658 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC
),
5659 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW
),
5660 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC
),
5661 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5662 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC
),
5663 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC
),
5664 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC
),
5665 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC
),
5666 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101
),
5667 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE
),
5668 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE
),
5669 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2
),
5670 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
5671 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
5672 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX
),
5673 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK
),
5674 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT
),
5675 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN
),
5676 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN
),
5677 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC
),
5678 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC
),
5679 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC
),
5680 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC
),
5681 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE
),
5682 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE
),
5683 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE
),
5684 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE
),
5685 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE
),
5686 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK
),
5687 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK
),
5688 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK
),
5689 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK
),
5690 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK
),
5691 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK
),
5692 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440
),
5693 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK
),
5694 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK
),
5695 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK
),
5696 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK
),
5697 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK
),
5698 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5699 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK
),
5700 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK
),
5701 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK
),
5702 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460
),
5703 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460
),
5704 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
),
5705 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
),
5706 SND_PCI_QUIRK(0x17aa, 0x3112, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
),
5707 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI
),
5708 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC
),
5709 SND_PCI_QUIRK(0x17aa, 0x3978, "IdeaPad Y410P", ALC269_FIXUP_NO_SHUTUP
),
5710 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5711 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC
),
5712 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK
),
5713 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5714 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK
),
5715 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK
),
5716 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK
),
5717 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK
),
5718 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE
),
5719 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460
),
5720 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460
),
5721 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460
),
5722 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5723 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K
),
5724 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD
),
5725 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2
), /* Also known as Malata PC-B1303 */
5728 /* Below is a quirk table taken from the old code.
5729 * Basically the device should work as is without the fixup table.
5730 * If BIOS doesn't give a proper info, enable the corresponding
5733 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
5735 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC
),
5736 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC
),
5737 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC
),
5738 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC
),
5739 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC
),
5740 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC
),
5741 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC
),
5742 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC
),
5743 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC
),
5744 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC
),
5745 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC
),
5746 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC
),
5747 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC
),
5748 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC
),
5749 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC
),
5750 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC
),
5751 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC
),
5752 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC
),
5753 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC
),
5754 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC
),
5755 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC
),
5756 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC
),
5757 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC
),
5758 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC
),
5759 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC
),
5760 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC
),
5761 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC
),
5762 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC
),
5763 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC
),
5764 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC
),
5765 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC
),
5766 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC
),
5767 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC
),
5768 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC
),
5769 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC
),
5770 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC
),
5771 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC
),
5772 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC
),
5773 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC
),
5778 static const struct snd_pci_quirk alc269_fixup_vendor_tbl
[] = {
5779 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC
),
5780 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED
),
5781 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO
),
5782 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI
),
5786 static const struct hda_model_fixup alc269_fixup_models
[] = {
5787 {.id
= ALC269_FIXUP_AMIC
, .name
= "laptop-amic"},
5788 {.id
= ALC269_FIXUP_DMIC
, .name
= "laptop-dmic"},
5789 {.id
= ALC269_FIXUP_STEREO_DMIC
, .name
= "alc269-dmic"},
5790 {.id
= ALC271_FIXUP_DMIC
, .name
= "alc271-dmic"},
5791 {.id
= ALC269_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
5792 {.id
= ALC269_FIXUP_HEADSET_MIC
, .name
= "headset-mic"},
5793 {.id
= ALC269_FIXUP_HEADSET_MODE
, .name
= "headset-mode"},
5794 {.id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
, .name
= "headset-mode-no-hp-mic"},
5795 {.id
= ALC269_FIXUP_LENOVO_DOCK
, .name
= "lenovo-dock"},
5796 {.id
= ALC269_FIXUP_HP_GPIO_LED
, .name
= "hp-gpio-led"},
5797 {.id
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
, .name
= "dell-headset-multi"},
5798 {.id
= ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
, .name
= "dell-headset-dock"},
5799 {.id
= ALC283_FIXUP_CHROME_BOOK
, .name
= "alc283-dac-wcaps"},
5800 {.id
= ALC283_FIXUP_SENSE_COMBO_JACK
, .name
= "alc283-sense-combo"},
5801 {.id
= ALC292_FIXUP_TPT440_DOCK
, .name
= "tpt440-dock"},
5802 {.id
= ALC292_FIXUP_TPT440
, .name
= "tpt440"},
5803 {.id
= ALC292_FIXUP_TPT460
, .name
= "tpt460"},
5806 #define ALC225_STANDARD_PINS \
5809 #define ALC256_STANDARD_PINS \
5810 {0x12, 0x90a60140}, \
5811 {0x14, 0x90170110}, \
5814 #define ALC282_STANDARD_PINS \
5817 #define ALC290_STANDARD_PINS \
5820 #define ALC292_STANDARD_PINS \
5821 {0x14, 0x90170110}, \
5824 #define ALC295_STANDARD_PINS \
5825 {0x12, 0xb7a60130}, \
5826 {0x14, 0x90170110}, \
5829 #define ALC298_STANDARD_PINS \
5830 {0x12, 0x90a60130}, \
5833 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl
[] = {
5834 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
5835 ALC225_STANDARD_PINS
,
5837 {0x14, 0x901701a0}),
5838 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
5839 ALC225_STANDARD_PINS
,
5841 {0x14, 0x901701b0}),
5842 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
5843 ALC225_STANDARD_PINS
,
5845 {0x14, 0x901701a0}),
5846 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
5847 ALC225_STANDARD_PINS
,
5849 {0x14, 0x901701b0}),
5850 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE
,
5851 ALC225_STANDARD_PINS
,
5853 {0x1b, 0x90170110}),
5854 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
,
5856 {0x21, 0x02211020}),
5857 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5859 {0x21, 0x02211040}),
5860 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5863 {0x21, 0x02211020}),
5864 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5867 {0x21, 0x02211030}),
5868 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5871 {0x21, 0x0221101f}),
5872 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5875 {0x21, 0x0221101f}),
5876 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5879 {0x21, 0x0221103f}),
5880 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5883 {0x21, 0x0221103f}),
5884 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5887 {0x21, 0x0221103f}),
5888 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5891 {0x21, 0x0221105f}),
5892 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5895 {0x21, 0x0221101f}),
5896 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5900 {0x21, 0x0321102f}),
5901 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5904 {0x21, 0x02211040}),
5905 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5908 {0x21, 0x02211050}),
5909 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5912 {0x21, 0x02211030}),
5913 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5916 {0x21, 0x02211040}),
5917 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5920 {0x21, 0x02211040}),
5921 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5924 {0x21, 0x02211050}),
5925 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5928 {0x21, 0x02211040}),
5929 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5932 {0x21, 0x02211030}),
5933 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5935 {0x21, 0x02211010}),
5936 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5939 {0x21, 0x02211030}),
5940 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5943 {0x21, 0x02211030}),
5944 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell Inspiron 5468", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5947 {0x21, 0x02211030}),
5948 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5951 {0x21, 0x02211020}),
5952 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5953 ALC256_STANDARD_PINS
),
5954 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4
,
5958 {0x1a, 0x04a11020}),
5959 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
,
5965 {0x1b, 0x02011020}),
5966 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5967 ALC282_STANDARD_PINS
,
5970 {0x21, 0x0321101f}),
5971 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5972 ALC282_STANDARD_PINS
,
5975 {0x21, 0x03211040}),
5976 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5977 ALC282_STANDARD_PINS
,
5980 {0x21, 0x03211020}),
5981 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5982 ALC282_STANDARD_PINS
,
5985 {0x21, 0x0421101f}),
5986 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
,
5987 ALC282_STANDARD_PINS
,
5990 {0x21, 0x04211020}),
5991 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
5992 ALC282_STANDARD_PINS
,
5994 {0x21, 0x0321101f}),
5995 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
5998 {0x21, 0x02211030}),
5999 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
6000 ALC282_STANDARD_PINS
,
6003 {0x21, 0x0321101f}),
6004 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL_XPS_13_GPIO6
,
6007 {0x21, 0x0321101f}),
6008 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
6009 ALC290_STANDARD_PINS
,
6012 {0x1a, 0x04a11020}),
6013 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
6014 ALC290_STANDARD_PINS
,
6017 {0x1a, 0x04a11020}),
6018 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
6019 ALC290_STANDARD_PINS
,
6021 {0x1a, 0x04a11020}),
6022 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
6023 ALC290_STANDARD_PINS
,
6025 {0x1a, 0x04a11040}),
6026 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
6027 ALC290_STANDARD_PINS
,
6030 {0x1a, 0x04a11040}),
6031 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
6032 ALC290_STANDARD_PINS
,
6035 {0x1a, 0x04a11020}),
6036 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
6037 ALC290_STANDARD_PINS
,
6040 {0x1a, 0x04a11020}),
6041 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
,
6042 ALC292_STANDARD_PINS
,
6045 {0x19, 0x01a19030}),
6046 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
,
6047 ALC292_STANDARD_PINS
,
6051 {0x19, 0x01a1903e}),
6052 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
6053 ALC292_STANDARD_PINS
,
6054 {0x12, 0x90a60140}),
6055 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
,
6056 ALC292_STANDARD_PINS
,
6059 {0x19, 0x21a19030}),
6060 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
,
6061 ALC292_STANDARD_PINS
,
6062 {0x13, 0x90a60140}),
6063 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
6064 ALC295_STANDARD_PINS
,
6066 {0x18, 0x21a19030}),
6067 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
6068 ALC295_STANDARD_PINS
,
6070 {0x18, 0x21a19050}),
6071 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
6072 ALC295_STANDARD_PINS
),
6073 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
6074 ALC298_STANDARD_PINS
,
6075 {0x17, 0x90170110}),
6076 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
6077 ALC298_STANDARD_PINS
,
6078 {0x17, 0x90170140}),
6079 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
6080 ALC298_STANDARD_PINS
,
6081 {0x17, 0x90170150}),
6082 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME
,
6087 {0x21, 0x03211030}),
6091 static void alc269_fill_coef(struct hda_codec
*codec
)
6093 struct alc_spec
*spec
= codec
->spec
;
6096 if (spec
->codec_variant
!= ALC269_TYPE_ALC269VB
)
6099 if ((alc_get_coef0(codec
) & 0x00ff) < 0x015) {
6100 alc_write_coef_idx(codec
, 0xf, 0x960b);
6101 alc_write_coef_idx(codec
, 0xe, 0x8817);
6104 if ((alc_get_coef0(codec
) & 0x00ff) == 0x016) {
6105 alc_write_coef_idx(codec
, 0xf, 0x960b);
6106 alc_write_coef_idx(codec
, 0xe, 0x8814);
6109 if ((alc_get_coef0(codec
) & 0x00ff) == 0x017) {
6110 /* Power up output pin */
6111 alc_update_coef_idx(codec
, 0x04, 0, 1<<11);
6114 if ((alc_get_coef0(codec
) & 0x00ff) == 0x018) {
6115 val
= alc_read_coef_idx(codec
, 0xd);
6116 if (val
!= -1 && (val
& 0x0c00) >> 10 != 0x1) {
6117 /* Capless ramp up clock control */
6118 alc_write_coef_idx(codec
, 0xd, val
| (1<<10));
6120 val
= alc_read_coef_idx(codec
, 0x17);
6121 if (val
!= -1 && (val
& 0x01c0) >> 6 != 0x4) {
6122 /* Class D power on reset */
6123 alc_write_coef_idx(codec
, 0x17, val
| (1<<7));
6128 alc_update_coef_idx(codec
, 0x4, 0, 1<<11);
6133 static int patch_alc269(struct hda_codec
*codec
)
6135 struct alc_spec
*spec
;
6138 err
= alc_alloc_spec(codec
, 0x0b);
6143 spec
->gen
.shared_mic_vref_pin
= 0x18;
6144 codec
->power_save_node
= 1;
6147 codec
->patch_ops
.suspend
= alc269_suspend
;
6148 codec
->patch_ops
.resume
= alc269_resume
;
6150 spec
->shutup
= alc269_shutup
;
6152 snd_hda_pick_fixup(codec
, alc269_fixup_models
,
6153 alc269_fixup_tbl
, alc269_fixups
);
6154 snd_hda_pick_pin_fixup(codec
, alc269_pin_fixup_tbl
, alc269_fixups
);
6155 snd_hda_pick_fixup(codec
, NULL
, alc269_fixup_vendor_tbl
,
6157 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
6159 alc_auto_parse_customize_define(codec
);
6161 if (has_cdefine_beep(codec
))
6162 spec
->gen
.beep_nid
= 0x01;
6164 switch (codec
->core
.vendor_id
) {
6166 spec
->codec_variant
= ALC269_TYPE_ALC269VA
;
6167 switch (alc_get_coef0(codec
) & 0x00f0) {
6169 if (codec
->bus
->pci
&&
6170 codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
6171 spec
->cdefine
.platform_type
== 1)
6172 err
= alc_codec_rename(codec
, "ALC271X");
6173 spec
->codec_variant
= ALC269_TYPE_ALC269VB
;
6176 if (codec
->bus
->pci
&&
6177 codec
->bus
->pci
->subsystem_vendor
== 0x17aa &&
6178 codec
->bus
->pci
->subsystem_device
== 0x21f3)
6179 err
= alc_codec_rename(codec
, "ALC3202");
6180 spec
->codec_variant
= ALC269_TYPE_ALC269VC
;
6183 spec
->codec_variant
= ALC269_TYPE_ALC269VD
;
6186 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
6190 spec
->init_hook
= alc269_fill_coef
;
6191 alc269_fill_coef(codec
);
6196 spec
->codec_variant
= ALC269_TYPE_ALC280
;
6199 spec
->codec_variant
= ALC269_TYPE_ALC282
;
6200 spec
->shutup
= alc282_shutup
;
6201 spec
->init_hook
= alc282_init
;
6205 spec
->codec_variant
= ALC269_TYPE_ALC283
;
6206 spec
->shutup
= alc283_shutup
;
6207 spec
->init_hook
= alc283_init
;
6211 spec
->codec_variant
= ALC269_TYPE_ALC284
;
6215 spec
->codec_variant
= ALC269_TYPE_ALC285
;
6219 spec
->codec_variant
= ALC269_TYPE_ALC286
;
6220 spec
->shutup
= alc286_shutup
;
6223 spec
->codec_variant
= ALC269_TYPE_ALC298
;
6226 spec
->codec_variant
= ALC269_TYPE_ALC255
;
6229 spec
->codec_variant
= ALC269_TYPE_ALC256
;
6230 spec
->gen
.mixer_nid
= 0; /* ALC256 does not have any loopback mixer path */
6231 alc_update_coef_idx(codec
, 0x36, 1 << 13, 1 << 5); /* Switch pcbeep path to Line in path*/
6235 spec
->codec_variant
= ALC269_TYPE_ALC225
;
6240 spec
->codec_variant
= ALC269_TYPE_ALC294
;
6245 spec
->codec_variant
= ALC269_TYPE_ALC700
;
6246 spec
->gen
.mixer_nid
= 0; /* ALC700 does not have any loopback mixer path */
6247 alc_update_coef_idx(codec
, 0x4a, 0, 1 << 15); /* Combo jack auto trigger control */
6252 if (snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_PARAMETERS
, 0) == 0x10ec5505) {
6253 spec
->has_alc5505_dsp
= 1;
6254 spec
->init_hook
= alc5505_dsp_init
;
6257 /* automatic parse from the BIOS config */
6258 err
= alc269_parse_auto_config(codec
);
6262 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
&& spec
->gen
.mixer_nid
)
6263 set_beep_amp(spec
, spec
->gen
.mixer_nid
, 0x04, HDA_INPUT
);
6265 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
6278 static int alc861_parse_auto_config(struct hda_codec
*codec
)
6280 static const hda_nid_t alc861_ignore
[] = { 0x1d, 0 };
6281 static const hda_nid_t alc861_ssids
[] = { 0x0e, 0x0f, 0x0b, 0 };
6282 return alc_parse_auto_config(codec
, alc861_ignore
, alc861_ssids
);
6285 /* Pin config fixes */
6287 ALC861_FIXUP_FSC_AMILO_PI1505
,
6288 ALC861_FIXUP_AMP_VREF_0F
,
6289 ALC861_FIXUP_NO_JACK_DETECT
,
6290 ALC861_FIXUP_ASUS_A6RP
,
6291 ALC660_FIXUP_ASUS_W7J
,
6294 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
6295 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec
*codec
,
6296 const struct hda_fixup
*fix
, int action
)
6298 struct alc_spec
*spec
= codec
->spec
;
6301 if (action
!= HDA_FIXUP_ACT_INIT
)
6303 val
= snd_hda_codec_get_pin_target(codec
, 0x0f);
6304 if (!(val
& (AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
)))
6305 val
|= AC_PINCTL_IN_EN
;
6306 val
|= AC_PINCTL_VREF_50
;
6307 snd_hda_set_pin_ctl(codec
, 0x0f, val
);
6308 spec
->gen
.keep_vref_in_automute
= 1;
6311 /* suppress the jack-detection */
6312 static void alc_fixup_no_jack_detect(struct hda_codec
*codec
,
6313 const struct hda_fixup
*fix
, int action
)
6315 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
6316 codec
->no_jack_detect
= 1;
6319 static const struct hda_fixup alc861_fixups
[] = {
6320 [ALC861_FIXUP_FSC_AMILO_PI1505
] = {
6321 .type
= HDA_FIXUP_PINS
,
6322 .v
.pins
= (const struct hda_pintbl
[]) {
6323 { 0x0b, 0x0221101f }, /* HP */
6324 { 0x0f, 0x90170310 }, /* speaker */
6328 [ALC861_FIXUP_AMP_VREF_0F
] = {
6329 .type
= HDA_FIXUP_FUNC
,
6330 .v
.func
= alc861_fixup_asus_amp_vref_0f
,
6332 [ALC861_FIXUP_NO_JACK_DETECT
] = {
6333 .type
= HDA_FIXUP_FUNC
,
6334 .v
.func
= alc_fixup_no_jack_detect
,
6336 [ALC861_FIXUP_ASUS_A6RP
] = {
6337 .type
= HDA_FIXUP_FUNC
,
6338 .v
.func
= alc861_fixup_asus_amp_vref_0f
,
6340 .chain_id
= ALC861_FIXUP_NO_JACK_DETECT
,
6342 [ALC660_FIXUP_ASUS_W7J
] = {
6343 .type
= HDA_FIXUP_VERBS
,
6344 .v
.verbs
= (const struct hda_verb
[]) {
6345 /* ASUS W7J needs a magic pin setup on unused NID 0x10
6346 * for enabling outputs
6348 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
6354 static const struct snd_pci_quirk alc861_fixup_tbl
[] = {
6355 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J
),
6356 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J
),
6357 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP
),
6358 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F
),
6359 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT
),
6360 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F
),
6361 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F
),
6362 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505
),
6368 static int patch_alc861(struct hda_codec
*codec
)
6370 struct alc_spec
*spec
;
6373 err
= alc_alloc_spec(codec
, 0x15);
6378 spec
->gen
.beep_nid
= 0x23;
6381 spec
->power_hook
= alc_power_eapd
;
6384 snd_hda_pick_fixup(codec
, NULL
, alc861_fixup_tbl
, alc861_fixups
);
6385 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
6387 /* automatic parse from the BIOS config */
6388 err
= alc861_parse_auto_config(codec
);
6392 if (!spec
->gen
.no_analog
)
6393 set_beep_amp(spec
, 0x23, 0, HDA_OUTPUT
);
6395 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
6409 * In addition, an independent DAC
6411 static int alc861vd_parse_auto_config(struct hda_codec
*codec
)
6413 static const hda_nid_t alc861vd_ignore
[] = { 0x1d, 0 };
6414 static const hda_nid_t alc861vd_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
6415 return alc_parse_auto_config(codec
, alc861vd_ignore
, alc861vd_ssids
);
6419 ALC660VD_FIX_ASUS_GPIO1
,
6420 ALC861VD_FIX_DALLAS
,
6423 /* exclude VREF80 */
6424 static void alc861vd_fixup_dallas(struct hda_codec
*codec
,
6425 const struct hda_fixup
*fix
, int action
)
6427 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6428 snd_hda_override_pin_caps(codec
, 0x18, 0x00000734);
6429 snd_hda_override_pin_caps(codec
, 0x19, 0x0000073c);
6433 static const struct hda_fixup alc861vd_fixups
[] = {
6434 [ALC660VD_FIX_ASUS_GPIO1
] = {
6435 .type
= HDA_FIXUP_VERBS
,
6436 .v
.verbs
= (const struct hda_verb
[]) {
6438 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
6439 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
6440 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
6444 [ALC861VD_FIX_DALLAS
] = {
6445 .type
= HDA_FIXUP_FUNC
,
6446 .v
.func
= alc861vd_fixup_dallas
,
6450 static const struct snd_pci_quirk alc861vd_fixup_tbl
[] = {
6451 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS
),
6452 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1
),
6453 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS
),
6459 static int patch_alc861vd(struct hda_codec
*codec
)
6461 struct alc_spec
*spec
;
6464 err
= alc_alloc_spec(codec
, 0x0b);
6469 spec
->gen
.beep_nid
= 0x23;
6471 spec
->shutup
= alc_eapd_shutup
;
6473 snd_hda_pick_fixup(codec
, NULL
, alc861vd_fixup_tbl
, alc861vd_fixups
);
6474 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
6476 /* automatic parse from the BIOS config */
6477 err
= alc861vd_parse_auto_config(codec
);
6481 if (!spec
->gen
.no_analog
)
6482 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
6484 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
6496 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
6497 * configuration. Each pin widget can choose any input DACs and a mixer.
6498 * Each ADC is connected from a mixer of all inputs. This makes possible
6499 * 6-channel independent captures.
6501 * In addition, an independent DAC for the multi-playback (not used in this
6506 * BIOS auto configuration
6509 static int alc662_parse_auto_config(struct hda_codec
*codec
)
6511 static const hda_nid_t alc662_ignore
[] = { 0x1d, 0 };
6512 static const hda_nid_t alc663_ssids
[] = { 0x15, 0x1b, 0x14, 0x21 };
6513 static const hda_nid_t alc662_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
6514 const hda_nid_t
*ssids
;
6516 if (codec
->core
.vendor_id
== 0x10ec0272 || codec
->core
.vendor_id
== 0x10ec0663 ||
6517 codec
->core
.vendor_id
== 0x10ec0665 || codec
->core
.vendor_id
== 0x10ec0670 ||
6518 codec
->core
.vendor_id
== 0x10ec0671)
6519 ssids
= alc663_ssids
;
6521 ssids
= alc662_ssids
;
6522 return alc_parse_auto_config(codec
, alc662_ignore
, ssids
);
6525 static void alc272_fixup_mario(struct hda_codec
*codec
,
6526 const struct hda_fixup
*fix
, int action
)
6528 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
6530 if (snd_hda_override_amp_caps(codec
, 0x2, HDA_OUTPUT
,
6531 (0x3b << AC_AMPCAP_OFFSET_SHIFT
) |
6532 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT
) |
6533 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
6534 (0 << AC_AMPCAP_MUTE_SHIFT
)))
6535 codec_warn(codec
, "failed to override amp caps for NID 0x2\n");
6538 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps
[] = {
6540 .map
= { SNDRV_CHMAP_FL
, SNDRV_CHMAP_FR
} },
6542 .map
= { SNDRV_CHMAP_FL
, SNDRV_CHMAP_FR
,
6543 SNDRV_CHMAP_NA
, SNDRV_CHMAP_LFE
} }, /* LFE only on right */
6547 /* override the 2.1 chmap */
6548 static void alc_fixup_bass_chmap(struct hda_codec
*codec
,
6549 const struct hda_fixup
*fix
, int action
)
6551 if (action
== HDA_FIXUP_ACT_BUILD
) {
6552 struct alc_spec
*spec
= codec
->spec
;
6553 spec
->gen
.pcm_rec
[0]->stream
[0].chmap
= asus_pcm_2_1_chmaps
;
6557 /* avoid D3 for keeping GPIO up */
6558 static unsigned int gpio_led_power_filter(struct hda_codec
*codec
,
6560 unsigned int power_state
)
6562 struct alc_spec
*spec
= codec
->spec
;
6563 if (nid
== codec
->core
.afg
&& power_state
== AC_PWRST_D3
&& spec
->gpio_led
)
6568 static void alc662_fixup_led_gpio1(struct hda_codec
*codec
,
6569 const struct hda_fixup
*fix
, int action
)
6571 struct alc_spec
*spec
= codec
->spec
;
6572 static const struct hda_verb gpio_init
[] = {
6573 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x01 },
6574 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01 },
6578 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6579 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
6581 spec
->mute_led_polarity
= 1;
6582 spec
->gpio_mute_led_mask
= 0x01;
6583 snd_hda_add_verbs(codec
, gpio_init
);
6584 codec
->power_filter
= gpio_led_power_filter
;
6588 static struct coef_fw alc668_coefs
[] = {
6589 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
6590 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
6591 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
6592 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
6593 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
6594 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
6595 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
6596 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
6597 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
6598 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
6599 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
6600 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
6601 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
6602 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
6603 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
6604 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
6605 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
6606 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
6607 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
6608 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
6612 static void alc668_restore_default_value(struct hda_codec
*codec
)
6614 alc_process_coef_fw(codec
, alc668_coefs
);
6618 ALC662_FIXUP_ASPIRE
,
6619 ALC662_FIXUP_LED_GPIO1
,
6620 ALC662_FIXUP_IDEAPAD
,
6622 ALC662_FIXUP_CZC_P10T
,
6623 ALC662_FIXUP_SKU_IGNORE
,
6624 ALC662_FIXUP_HP_RP5800
,
6625 ALC662_FIXUP_ASUS_MODE1
,
6626 ALC662_FIXUP_ASUS_MODE2
,
6627 ALC662_FIXUP_ASUS_MODE3
,
6628 ALC662_FIXUP_ASUS_MODE4
,
6629 ALC662_FIXUP_ASUS_MODE5
,
6630 ALC662_FIXUP_ASUS_MODE6
,
6631 ALC662_FIXUP_ASUS_MODE7
,
6632 ALC662_FIXUP_ASUS_MODE8
,
6633 ALC662_FIXUP_NO_JACK_DETECT
,
6634 ALC662_FIXUP_ZOTAC_Z68
,
6635 ALC662_FIXUP_INV_DMIC
,
6636 ALC662_FIXUP_DELL_MIC_NO_PRESENCE
,
6637 ALC668_FIXUP_DELL_MIC_NO_PRESENCE
,
6638 ALC662_FIXUP_HEADSET_MODE
,
6639 ALC668_FIXUP_HEADSET_MODE
,
6640 ALC662_FIXUP_BASS_MODE4_CHMAP
,
6641 ALC662_FIXUP_BASS_16
,
6642 ALC662_FIXUP_BASS_1A
,
6643 ALC662_FIXUP_BASS_CHMAP
,
6644 ALC668_FIXUP_AUTO_MUTE
,
6645 ALC668_FIXUP_DELL_DISABLE_AAMIX
,
6646 ALC668_FIXUP_DELL_XPS13
,
6647 ALC662_FIXUP_ASUS_Nx50
,
6648 ALC668_FIXUP_ASUS_Nx51
,
6649 ALC891_FIXUP_HEADSET_MODE
,
6650 ALC891_FIXUP_DELL_MIC_NO_PRESENCE
,
6651 ALC662_FIXUP_ACER_VERITON
,
6652 ALC892_FIXUP_ASROCK_MOBO
,
6655 static const struct hda_fixup alc662_fixups
[] = {
6656 [ALC662_FIXUP_ASPIRE
] = {
6657 .type
= HDA_FIXUP_PINS
,
6658 .v
.pins
= (const struct hda_pintbl
[]) {
6659 { 0x15, 0x99130112 }, /* subwoofer */
6663 [ALC662_FIXUP_LED_GPIO1
] = {
6664 .type
= HDA_FIXUP_FUNC
,
6665 .v
.func
= alc662_fixup_led_gpio1
,
6667 [ALC662_FIXUP_IDEAPAD
] = {
6668 .type
= HDA_FIXUP_PINS
,
6669 .v
.pins
= (const struct hda_pintbl
[]) {
6670 { 0x17, 0x99130112 }, /* subwoofer */
6674 .chain_id
= ALC662_FIXUP_LED_GPIO1
,
6676 [ALC272_FIXUP_MARIO
] = {
6677 .type
= HDA_FIXUP_FUNC
,
6678 .v
.func
= alc272_fixup_mario
,
6680 [ALC662_FIXUP_CZC_P10T
] = {
6681 .type
= HDA_FIXUP_VERBS
,
6682 .v
.verbs
= (const struct hda_verb
[]) {
6683 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
6687 [ALC662_FIXUP_SKU_IGNORE
] = {
6688 .type
= HDA_FIXUP_FUNC
,
6689 .v
.func
= alc_fixup_sku_ignore
,
6691 [ALC662_FIXUP_HP_RP5800
] = {
6692 .type
= HDA_FIXUP_PINS
,
6693 .v
.pins
= (const struct hda_pintbl
[]) {
6694 { 0x14, 0x0221201f }, /* HP out */
6698 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6700 [ALC662_FIXUP_ASUS_MODE1
] = {
6701 .type
= HDA_FIXUP_PINS
,
6702 .v
.pins
= (const struct hda_pintbl
[]) {
6703 { 0x14, 0x99130110 }, /* speaker */
6704 { 0x18, 0x01a19c20 }, /* mic */
6705 { 0x19, 0x99a3092f }, /* int-mic */
6706 { 0x21, 0x0121401f }, /* HP out */
6710 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6712 [ALC662_FIXUP_ASUS_MODE2
] = {
6713 .type
= HDA_FIXUP_PINS
,
6714 .v
.pins
= (const struct hda_pintbl
[]) {
6715 { 0x14, 0x99130110 }, /* speaker */
6716 { 0x18, 0x01a19820 }, /* mic */
6717 { 0x19, 0x99a3092f }, /* int-mic */
6718 { 0x1b, 0x0121401f }, /* HP out */
6722 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6724 [ALC662_FIXUP_ASUS_MODE3
] = {
6725 .type
= HDA_FIXUP_PINS
,
6726 .v
.pins
= (const struct hda_pintbl
[]) {
6727 { 0x14, 0x99130110 }, /* speaker */
6728 { 0x15, 0x0121441f }, /* HP */
6729 { 0x18, 0x01a19840 }, /* mic */
6730 { 0x19, 0x99a3094f }, /* int-mic */
6731 { 0x21, 0x01211420 }, /* HP2 */
6735 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6737 [ALC662_FIXUP_ASUS_MODE4
] = {
6738 .type
= HDA_FIXUP_PINS
,
6739 .v
.pins
= (const struct hda_pintbl
[]) {
6740 { 0x14, 0x99130110 }, /* speaker */
6741 { 0x16, 0x99130111 }, /* speaker */
6742 { 0x18, 0x01a19840 }, /* mic */
6743 { 0x19, 0x99a3094f }, /* int-mic */
6744 { 0x21, 0x0121441f }, /* HP */
6748 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6750 [ALC662_FIXUP_ASUS_MODE5
] = {
6751 .type
= HDA_FIXUP_PINS
,
6752 .v
.pins
= (const struct hda_pintbl
[]) {
6753 { 0x14, 0x99130110 }, /* speaker */
6754 { 0x15, 0x0121441f }, /* HP */
6755 { 0x16, 0x99130111 }, /* speaker */
6756 { 0x18, 0x01a19840 }, /* mic */
6757 { 0x19, 0x99a3094f }, /* int-mic */
6761 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6763 [ALC662_FIXUP_ASUS_MODE6
] = {
6764 .type
= HDA_FIXUP_PINS
,
6765 .v
.pins
= (const struct hda_pintbl
[]) {
6766 { 0x14, 0x99130110 }, /* speaker */
6767 { 0x15, 0x01211420 }, /* HP2 */
6768 { 0x18, 0x01a19840 }, /* mic */
6769 { 0x19, 0x99a3094f }, /* int-mic */
6770 { 0x1b, 0x0121441f }, /* HP */
6774 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6776 [ALC662_FIXUP_ASUS_MODE7
] = {
6777 .type
= HDA_FIXUP_PINS
,
6778 .v
.pins
= (const struct hda_pintbl
[]) {
6779 { 0x14, 0x99130110 }, /* speaker */
6780 { 0x17, 0x99130111 }, /* speaker */
6781 { 0x18, 0x01a19840 }, /* mic */
6782 { 0x19, 0x99a3094f }, /* int-mic */
6783 { 0x1b, 0x01214020 }, /* HP */
6784 { 0x21, 0x0121401f }, /* HP */
6788 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6790 [ALC662_FIXUP_ASUS_MODE8
] = {
6791 .type
= HDA_FIXUP_PINS
,
6792 .v
.pins
= (const struct hda_pintbl
[]) {
6793 { 0x14, 0x99130110 }, /* speaker */
6794 { 0x12, 0x99a30970 }, /* int-mic */
6795 { 0x15, 0x01214020 }, /* HP */
6796 { 0x17, 0x99130111 }, /* speaker */
6797 { 0x18, 0x01a19840 }, /* mic */
6798 { 0x21, 0x0121401f }, /* HP */
6802 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6804 [ALC662_FIXUP_NO_JACK_DETECT
] = {
6805 .type
= HDA_FIXUP_FUNC
,
6806 .v
.func
= alc_fixup_no_jack_detect
,
6808 [ALC662_FIXUP_ZOTAC_Z68
] = {
6809 .type
= HDA_FIXUP_PINS
,
6810 .v
.pins
= (const struct hda_pintbl
[]) {
6811 { 0x1b, 0x02214020 }, /* Front HP */
6815 [ALC662_FIXUP_INV_DMIC
] = {
6816 .type
= HDA_FIXUP_FUNC
,
6817 .v
.func
= alc_fixup_inv_dmic
,
6819 [ALC668_FIXUP_DELL_XPS13
] = {
6820 .type
= HDA_FIXUP_FUNC
,
6821 .v
.func
= alc_fixup_dell_xps13
,
6823 .chain_id
= ALC668_FIXUP_DELL_DISABLE_AAMIX
6825 [ALC668_FIXUP_DELL_DISABLE_AAMIX
] = {
6826 .type
= HDA_FIXUP_FUNC
,
6827 .v
.func
= alc_fixup_disable_aamix
,
6829 .chain_id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
6831 [ALC668_FIXUP_AUTO_MUTE
] = {
6832 .type
= HDA_FIXUP_FUNC
,
6833 .v
.func
= alc_fixup_auto_mute_via_amp
,
6835 .chain_id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
6837 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE
] = {
6838 .type
= HDA_FIXUP_PINS
,
6839 .v
.pins
= (const struct hda_pintbl
[]) {
6840 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
6841 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
6845 .chain_id
= ALC662_FIXUP_HEADSET_MODE
6847 [ALC662_FIXUP_HEADSET_MODE
] = {
6848 .type
= HDA_FIXUP_FUNC
,
6849 .v
.func
= alc_fixup_headset_mode_alc662
,
6851 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE
] = {
6852 .type
= HDA_FIXUP_PINS
,
6853 .v
.pins
= (const struct hda_pintbl
[]) {
6854 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
6855 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
6859 .chain_id
= ALC668_FIXUP_HEADSET_MODE
6861 [ALC668_FIXUP_HEADSET_MODE
] = {
6862 .type
= HDA_FIXUP_FUNC
,
6863 .v
.func
= alc_fixup_headset_mode_alc668
,
6865 [ALC662_FIXUP_BASS_MODE4_CHMAP
] = {
6866 .type
= HDA_FIXUP_FUNC
,
6867 .v
.func
= alc_fixup_bass_chmap
,
6869 .chain_id
= ALC662_FIXUP_ASUS_MODE4
6871 [ALC662_FIXUP_BASS_16
] = {
6872 .type
= HDA_FIXUP_PINS
,
6873 .v
.pins
= (const struct hda_pintbl
[]) {
6874 {0x16, 0x80106111}, /* bass speaker */
6878 .chain_id
= ALC662_FIXUP_BASS_CHMAP
,
6880 [ALC662_FIXUP_BASS_1A
] = {
6881 .type
= HDA_FIXUP_PINS
,
6882 .v
.pins
= (const struct hda_pintbl
[]) {
6883 {0x1a, 0x80106111}, /* bass speaker */
6887 .chain_id
= ALC662_FIXUP_BASS_CHMAP
,
6889 [ALC662_FIXUP_BASS_CHMAP
] = {
6890 .type
= HDA_FIXUP_FUNC
,
6891 .v
.func
= alc_fixup_bass_chmap
,
6893 [ALC662_FIXUP_ASUS_Nx50
] = {
6894 .type
= HDA_FIXUP_FUNC
,
6895 .v
.func
= alc_fixup_auto_mute_via_amp
,
6897 .chain_id
= ALC662_FIXUP_BASS_1A
6899 [ALC668_FIXUP_ASUS_Nx51
] = {
6900 .type
= HDA_FIXUP_PINS
,
6901 .v
.pins
= (const struct hda_pintbl
[]) {
6902 {0x1a, 0x90170151}, /* bass speaker */
6906 .chain_id
= ALC662_FIXUP_BASS_CHMAP
,
6908 [ALC891_FIXUP_HEADSET_MODE
] = {
6909 .type
= HDA_FIXUP_FUNC
,
6910 .v
.func
= alc_fixup_headset_mode
,
6912 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE
] = {
6913 .type
= HDA_FIXUP_PINS
,
6914 .v
.pins
= (const struct hda_pintbl
[]) {
6915 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
6916 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
6920 .chain_id
= ALC891_FIXUP_HEADSET_MODE
6922 [ALC662_FIXUP_ACER_VERITON
] = {
6923 .type
= HDA_FIXUP_PINS
,
6924 .v
.pins
= (const struct hda_pintbl
[]) {
6925 { 0x15, 0x50170120 }, /* no internal speaker */
6929 [ALC892_FIXUP_ASROCK_MOBO
] = {
6930 .type
= HDA_FIXUP_PINS
,
6931 .v
.pins
= (const struct hda_pintbl
[]) {
6932 { 0x15, 0x40f000f0 }, /* disabled */
6933 { 0x16, 0x40f000f0 }, /* disabled */
6939 static const struct snd_pci_quirk alc662_fixup_tbl
[] = {
6940 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2
),
6941 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC
),
6942 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC
),
6943 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE
),
6944 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE
),
6945 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC
),
6946 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC
),
6947 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE
),
6948 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6949 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6950 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13
),
6951 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13
),
6952 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13
),
6953 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6954 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6955 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6956 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6957 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6958 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800
),
6959 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE
),
6960 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50
),
6961 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A
),
6962 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50
),
6963 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP
),
6964 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16
),
6965 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51
),
6966 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51
),
6967 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8
),
6968 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16
),
6969 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP
),
6970 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT
),
6971 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2
),
6972 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD
),
6973 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD
),
6974 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD
),
6975 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO
),
6976 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68
),
6977 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON
),
6978 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T
),
6981 /* Below is a quirk table taken from the old code.
6982 * Basically the device should work as is without the fixup table.
6983 * If BIOS doesn't give a proper info, enable the corresponding
6986 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1
),
6987 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3
),
6988 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1
),
6989 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3
),
6990 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
6991 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6992 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
6993 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1
),
6994 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1
),
6995 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6996 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7
),
6997 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7
),
6998 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8
),
6999 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3
),
7000 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1
),
7001 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
7002 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2
),
7003 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1
),
7004 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
7005 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
7006 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
7007 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
7008 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1
),
7009 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3
),
7010 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2
),
7011 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
7012 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5
),
7013 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
7014 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
7015 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1
),
7016 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
7017 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
7018 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3
),
7019 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3
),
7020 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1
),
7021 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1
),
7022 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1
),
7023 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1
),
7024 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1
),
7025 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
7026 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2
),
7027 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1
),
7028 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
7029 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3
),
7030 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1
),
7031 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1
),
7032 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1
),
7033 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2
),
7034 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
7035 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4
),
7040 static const struct hda_model_fixup alc662_fixup_models
[] = {
7041 {.id
= ALC272_FIXUP_MARIO
, .name
= "mario"},
7042 {.id
= ALC662_FIXUP_ASUS_MODE1
, .name
= "asus-mode1"},
7043 {.id
= ALC662_FIXUP_ASUS_MODE2
, .name
= "asus-mode2"},
7044 {.id
= ALC662_FIXUP_ASUS_MODE3
, .name
= "asus-mode3"},
7045 {.id
= ALC662_FIXUP_ASUS_MODE4
, .name
= "asus-mode4"},
7046 {.id
= ALC662_FIXUP_ASUS_MODE5
, .name
= "asus-mode5"},
7047 {.id
= ALC662_FIXUP_ASUS_MODE6
, .name
= "asus-mode6"},
7048 {.id
= ALC662_FIXUP_ASUS_MODE7
, .name
= "asus-mode7"},
7049 {.id
= ALC662_FIXUP_ASUS_MODE8
, .name
= "asus-mode8"},
7050 {.id
= ALC662_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
7051 {.id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
, .name
= "dell-headset-multi"},
7055 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl
[] = {
7056 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE
,
7060 {0x21, 0x01014020}),
7061 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE
,
7065 {0x1b, 0x0221401f}),
7066 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
7070 {0x16, 0x03011020}),
7071 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
7075 {0x16, 0x03011020}),
7076 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
7080 {0x16, 0x03011020}),
7081 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
7084 {0x16, 0x03011020}),
7085 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE
,
7088 {0x15, 0x0321101f}),
7094 static int patch_alc662(struct hda_codec
*codec
)
7096 struct alc_spec
*spec
;
7099 err
= alc_alloc_spec(codec
, 0x0b);
7105 spec
->shutup
= alc_eapd_shutup
;
7107 /* handle multiple HPs as is */
7108 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
7110 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
7112 switch (codec
->core
.vendor_id
) {
7114 spec
->init_hook
= alc668_restore_default_value
;
7118 snd_hda_pick_fixup(codec
, alc662_fixup_models
,
7119 alc662_fixup_tbl
, alc662_fixups
);
7120 snd_hda_pick_pin_fixup(codec
, alc662_pin_fixup_tbl
, alc662_fixups
);
7121 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
7123 alc_auto_parse_customize_define(codec
);
7125 if (has_cdefine_beep(codec
))
7126 spec
->gen
.beep_nid
= 0x01;
7128 if ((alc_get_coef0(codec
) & (1 << 14)) &&
7129 codec
->bus
->pci
&& codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
7130 spec
->cdefine
.platform_type
== 1) {
7131 err
= alc_codec_rename(codec
, "ALC272X");
7136 /* automatic parse from the BIOS config */
7137 err
= alc662_parse_auto_config(codec
);
7141 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
) {
7142 switch (codec
->core
.vendor_id
) {
7144 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
7150 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
7153 set_beep_amp(spec
, 0x0b, 0x03, HDA_INPUT
);
7158 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
7171 static int alc680_parse_auto_config(struct hda_codec
*codec
)
7173 return alc_parse_auto_config(codec
, NULL
, NULL
);
7178 static int patch_alc680(struct hda_codec
*codec
)
7182 /* ALC680 has no aa-loopback mixer */
7183 err
= alc_alloc_spec(codec
, 0);
7187 /* automatic parse from the BIOS config */
7188 err
= alc680_parse_auto_config(codec
);
7200 static const struct hda_device_id snd_hda_id_realtek
[] = {
7201 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269
),
7202 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269
),
7203 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269
),
7204 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269
),
7205 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269
),
7206 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269
),
7207 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269
),
7208 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269
),
7209 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260
),
7210 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262
),
7211 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268
),
7212 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268
),
7213 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269
),
7214 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269
),
7215 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662
),
7216 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269
),
7217 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269
),
7218 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269
),
7219 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269
),
7220 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269
),
7221 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269
),
7222 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269
),
7223 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269
),
7224 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269
),
7225 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269
),
7226 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269
),
7227 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269
),
7228 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269
),
7229 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269
),
7230 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269
),
7231 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269
),
7232 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861
),
7233 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd
),
7234 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861
),
7235 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd
),
7236 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882
),
7237 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662
),
7238 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662
),
7239 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662
),
7240 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662
),
7241 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662
),
7242 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662
),
7243 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662
),
7244 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662
),
7245 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680
),
7246 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269
),
7247 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269
),
7248 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269
),
7249 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662
),
7250 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880
),
7251 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882
),
7252 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882
),
7253 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882
),
7254 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882
),
7255 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882
),
7256 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882
),
7257 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882
),
7258 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882
),
7259 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882
),
7260 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662
),
7261 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882
),
7262 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882
),
7265 MODULE_DEVICE_TABLE(hdaudio
, snd_hda_id_realtek
);
7267 MODULE_LICENSE("GPL");
7268 MODULE_DESCRIPTION("Realtek HD-audio codec");
7270 static struct hda_codec_driver realtek_driver
= {
7271 .id
= snd_hda_id_realtek
,
7274 module_hda_codec_driver(realtek_driver
);