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
->tbl
->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);
338 alc_update_coef_idx(codec
, 0x10, 1<<9, 0);
342 alc_update_coef_idx(codec
, 0xa, 1<<13, 0);
345 if ((coef
& 0x00f0) == 0x0030)
346 alc_update_coef_idx(codec
, 0x4, 1<<10, 0); /* EAPD Ctrl */
355 alc_update_coef_idx(codec
, 0xd, 0, 1<<14); /* EAPD Ctrl */
358 alc_update_coef_idx(codec
, 0x7, 3<<13, 0);
361 alc_update_coef_idx(codec
, 0x4, 1<<10, 0);
364 if ((coef
& 0x00f0) == 0x0020 || (coef
& 0x00f0) == 0x0030)
365 alc_update_coef_idx(codec
, 0x7, 1<<5, 0);
368 alc_update_coef_idx(codec
, 0x7, 1<<5, 0);
372 alc_update_coef_idx(codec
, 0x7, 1<<1, 0);
377 /* additional initialization for ALC888 variants */
378 static void alc888_coef_init(struct hda_codec
*codec
)
380 switch (alc_get_coef0(codec
) & 0x00f0) {
385 alc_update_coef_idx(codec
, 7, 0, 0x2030); /* Turn EAPD to High */
390 /* turn on/off EAPD control (only if available) */
391 static void set_eapd(struct hda_codec
*codec
, hda_nid_t nid
, int on
)
393 if (get_wcaps_type(get_wcaps(codec
, nid
)) != AC_WID_PIN
)
395 if (snd_hda_query_pin_caps(codec
, nid
) & AC_PINCAP_EAPD
)
396 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
400 /* turn on/off EAPD controls of the codec */
401 static void alc_auto_setup_eapd(struct hda_codec
*codec
, bool on
)
403 /* We currently only handle front, HP */
404 static hda_nid_t pins
[] = {
405 0x0f, 0x10, 0x14, 0x15, 0x17, 0
408 for (p
= pins
; *p
; p
++)
409 set_eapd(codec
, *p
, on
);
412 /* generic shutup callback;
413 * just turning off EPAD and a little pause for avoiding pop-noise
415 static void alc_eapd_shutup(struct hda_codec
*codec
)
417 struct alc_spec
*spec
= codec
->spec
;
419 alc_auto_setup_eapd(codec
, false);
420 if (!spec
->no_depop_delay
)
422 snd_hda_shutup_pins(codec
);
425 /* generic EAPD initialization */
426 static void alc_auto_init_amp(struct hda_codec
*codec
, int type
)
428 alc_fill_eapd_coef(codec
);
429 alc_auto_setup_eapd(codec
, true);
432 snd_hda_sequence_write(codec
, alc_gpio1_init_verbs
);
435 snd_hda_sequence_write(codec
, alc_gpio2_init_verbs
);
438 snd_hda_sequence_write(codec
, alc_gpio3_init_verbs
);
440 case ALC_INIT_DEFAULT
:
441 switch (codec
->core
.vendor_id
) {
443 alc_update_coefex_idx(codec
, 0x1a, 7, 0, 0x2010);
449 alc_update_coef_idx(codec
, 7, 0, 0x2030);
452 alc888_coef_init(codec
);
461 * Realtek SSID verification
464 /* Could be any non-zero and even value. When used as fixup, tells
465 * the driver to ignore any present sku defines.
467 #define ALC_FIXUP_SKU_IGNORE (2)
469 static void alc_fixup_sku_ignore(struct hda_codec
*codec
,
470 const struct hda_fixup
*fix
, int action
)
472 struct alc_spec
*spec
= codec
->spec
;
473 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
474 spec
->cdefine
.fixup
= 1;
475 spec
->cdefine
.sku_cfg
= ALC_FIXUP_SKU_IGNORE
;
479 static void alc_fixup_no_depop_delay(struct hda_codec
*codec
,
480 const struct hda_fixup
*fix
, int action
)
482 struct alc_spec
*spec
= codec
->spec
;
484 if (action
== HDA_FIXUP_ACT_PROBE
) {
485 spec
->no_depop_delay
= 1;
486 codec
->depop_delay
= 0;
490 static int alc_auto_parse_customize_define(struct hda_codec
*codec
)
492 unsigned int ass
, tmp
, i
;
494 struct alc_spec
*spec
= codec
->spec
;
496 spec
->cdefine
.enable_pcbeep
= 1; /* assume always enabled */
498 if (spec
->cdefine
.fixup
) {
499 ass
= spec
->cdefine
.sku_cfg
;
500 if (ass
== ALC_FIXUP_SKU_IGNORE
)
505 if (!codec
->bus
->pci
)
507 ass
= codec
->core
.subsystem_id
& 0xffff;
508 if (ass
!= codec
->bus
->pci
->subsystem_device
&& (ass
& 1))
512 if (codec
->core
.vendor_id
== 0x10ec0260)
514 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
517 codec_info(codec
, "%s: SKU not ready 0x%08x\n",
518 codec
->core
.chip_name
, ass
);
524 for (i
= 1; i
< 16; i
++) {
528 if (((ass
>> 16) & 0xf) != tmp
)
531 spec
->cdefine
.port_connectivity
= ass
>> 30;
532 spec
->cdefine
.enable_pcbeep
= (ass
& 0x100000) >> 20;
533 spec
->cdefine
.check_sum
= (ass
>> 16) & 0xf;
534 spec
->cdefine
.customization
= ass
>> 8;
536 spec
->cdefine
.sku_cfg
= ass
;
537 spec
->cdefine
.external_amp
= (ass
& 0x38) >> 3;
538 spec
->cdefine
.platform_type
= (ass
& 0x4) >> 2;
539 spec
->cdefine
.swap
= (ass
& 0x2) >> 1;
540 spec
->cdefine
.override
= ass
& 0x1;
542 codec_dbg(codec
, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
543 nid
, spec
->cdefine
.sku_cfg
);
544 codec_dbg(codec
, "SKU: port_connectivity=0x%x\n",
545 spec
->cdefine
.port_connectivity
);
546 codec_dbg(codec
, "SKU: enable_pcbeep=0x%x\n", spec
->cdefine
.enable_pcbeep
);
547 codec_dbg(codec
, "SKU: check_sum=0x%08x\n", spec
->cdefine
.check_sum
);
548 codec_dbg(codec
, "SKU: customization=0x%08x\n", spec
->cdefine
.customization
);
549 codec_dbg(codec
, "SKU: external_amp=0x%x\n", spec
->cdefine
.external_amp
);
550 codec_dbg(codec
, "SKU: platform_type=0x%x\n", spec
->cdefine
.platform_type
);
551 codec_dbg(codec
, "SKU: swap=0x%x\n", spec
->cdefine
.swap
);
552 codec_dbg(codec
, "SKU: override=0x%x\n", spec
->cdefine
.override
);
557 /* return the position of NID in the list, or -1 if not found */
558 static int find_idx_in_nid_list(hda_nid_t nid
, const hda_nid_t
*list
, int nums
)
561 for (i
= 0; i
< nums
; i
++)
566 /* return true if the given NID is found in the list */
567 static bool found_in_nid_list(hda_nid_t nid
, const hda_nid_t
*list
, int nums
)
569 return find_idx_in_nid_list(nid
, list
, nums
) >= 0;
572 /* check subsystem ID and set up device-specific initialization;
573 * return 1 if initialized, 0 if invalid SSID
575 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
576 * 31 ~ 16 : Manufacture ID
578 * 7 ~ 0 : Assembly ID
579 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
581 static int alc_subsystem_id(struct hda_codec
*codec
, const hda_nid_t
*ports
)
583 unsigned int ass
, tmp
, i
;
585 struct alc_spec
*spec
= codec
->spec
;
587 if (spec
->cdefine
.fixup
) {
588 ass
= spec
->cdefine
.sku_cfg
;
589 if (ass
== ALC_FIXUP_SKU_IGNORE
)
594 ass
= codec
->core
.subsystem_id
& 0xffff;
595 if (codec
->bus
->pci
&&
596 ass
!= codec
->bus
->pci
->subsystem_device
&& (ass
& 1))
599 /* invalid SSID, check the special NID pin defcfg instead */
601 * 31~30 : port connectivity
604 * 19~16 : Check sum (15:1)
609 if (codec
->core
.vendor_id
== 0x10ec0260)
611 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
613 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
617 if ((ass
>> 30) != 1) /* no physical connection */
622 for (i
= 1; i
< 16; i
++) {
626 if (((ass
>> 16) & 0xf) != tmp
)
629 codec_dbg(codec
, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
630 ass
& 0xffff, codec
->core
.vendor_id
);
634 * 2 : 0 --> Desktop, 1 --> Laptop
635 * 3~5 : External Amplifier control
638 tmp
= (ass
& 0x38) >> 3; /* external Amp control */
641 spec
->init_amp
= ALC_INIT_GPIO1
;
644 spec
->init_amp
= ALC_INIT_GPIO2
;
647 spec
->init_amp
= ALC_INIT_GPIO3
;
651 spec
->init_amp
= ALC_INIT_DEFAULT
;
655 /* is laptop or Desktop and enable the function "Mute internal speaker
656 * when the external headphone out jack is plugged"
661 * 10~8 : Jack location
662 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
664 * 15 : 1 --> enable the function "Mute internal speaker
665 * when the external headphone out jack is plugged"
667 if (!spec
->gen
.autocfg
.hp_pins
[0] &&
668 !(spec
->gen
.autocfg
.line_out_pins
[0] &&
669 spec
->gen
.autocfg
.line_out_type
== AUTO_PIN_HP_OUT
)) {
671 tmp
= (ass
>> 11) & 0x3; /* HP to chassis */
673 if (found_in_nid_list(nid
, spec
->gen
.autocfg
.line_out_pins
,
674 spec
->gen
.autocfg
.line_outs
))
676 spec
->gen
.autocfg
.hp_pins
[0] = nid
;
681 /* Check the validity of ALC subsystem-id
682 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
683 static void alc_ssid_check(struct hda_codec
*codec
, const hda_nid_t
*ports
)
685 if (!alc_subsystem_id(codec
, ports
)) {
686 struct alc_spec
*spec
= codec
->spec
;
688 "realtek: Enable default setup for auto mode as fallback\n");
689 spec
->init_amp
= ALC_INIT_DEFAULT
;
696 static void alc_fixup_inv_dmic(struct hda_codec
*codec
,
697 const struct hda_fixup
*fix
, int action
)
699 struct alc_spec
*spec
= codec
->spec
;
701 spec
->gen
.inv_dmic_split
= 1;
705 #ifdef CONFIG_SND_HDA_INPUT_BEEP
706 /* additional beep mixers; the actual parameters are overwritten at build */
707 static const struct snd_kcontrol_new alc_beep_mixer
[] = {
708 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT
),
709 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT
),
714 static int alc_build_controls(struct hda_codec
*codec
)
716 struct alc_spec
*spec
= codec
->spec
;
719 err
= snd_hda_gen_build_controls(codec
);
723 for (i
= 0; i
< spec
->num_mixers
; i
++) {
724 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
729 #ifdef CONFIG_SND_HDA_INPUT_BEEP
730 /* create beep controls if needed */
731 if (spec
->beep_amp
) {
732 const struct snd_kcontrol_new
*knew
;
733 for (knew
= alc_beep_mixer
; knew
->name
; knew
++) {
734 struct snd_kcontrol
*kctl
;
735 kctl
= snd_ctl_new1(knew
, codec
);
738 kctl
->private_value
= spec
->beep_amp
;
739 err
= snd_hda_ctl_add(codec
, 0, kctl
);
746 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_BUILD
);
755 static int alc_init(struct hda_codec
*codec
)
757 struct alc_spec
*spec
= codec
->spec
;
760 spec
->init_hook(codec
);
763 alc_auto_init_amp(codec
, spec
->init_amp
);
765 snd_hda_gen_init(codec
);
767 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_INIT
);
772 static inline void alc_shutup(struct hda_codec
*codec
)
774 struct alc_spec
*spec
= codec
->spec
;
776 if (spec
&& spec
->shutup
)
779 snd_hda_shutup_pins(codec
);
782 static void alc_reboot_notify(struct hda_codec
*codec
)
784 struct alc_spec
*spec
= codec
->spec
;
786 if (spec
&& spec
->reboot_notify
)
787 spec
->reboot_notify(codec
);
792 /* power down codec to D3 at reboot/shutdown; set as reboot_notify ops */
793 static void alc_d3_at_reboot(struct hda_codec
*codec
)
795 snd_hda_codec_set_power_to_all(codec
, codec
->core
.afg
, AC_PWRST_D3
);
796 snd_hda_codec_write(codec
, codec
->core
.afg
, 0,
797 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
801 #define alc_free snd_hda_gen_free
804 static void alc_power_eapd(struct hda_codec
*codec
)
806 alc_auto_setup_eapd(codec
, false);
809 static int alc_suspend(struct hda_codec
*codec
)
811 struct alc_spec
*spec
= codec
->spec
;
813 if (spec
&& spec
->power_hook
)
814 spec
->power_hook(codec
);
820 static int alc_resume(struct hda_codec
*codec
)
822 struct alc_spec
*spec
= codec
->spec
;
824 if (!spec
->no_depop_delay
)
825 msleep(150); /* to avoid pop noise */
826 codec
->patch_ops
.init(codec
);
827 regcache_sync(codec
->core
.regmap
);
828 hda_call_check_power_status(codec
, 0x01);
835 static const struct hda_codec_ops alc_patch_ops
= {
836 .build_controls
= alc_build_controls
,
837 .build_pcms
= snd_hda_gen_build_pcms
,
840 .unsol_event
= snd_hda_jack_unsol_event
,
842 .resume
= alc_resume
,
843 .suspend
= alc_suspend
,
844 .check_power_status
= snd_hda_gen_check_power_status
,
846 .reboot_notify
= alc_reboot_notify
,
850 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
853 * Rename codecs appropriately from COEF value or subvendor id
855 struct alc_codec_rename_table
{
856 unsigned int vendor_id
;
857 unsigned short coef_mask
;
858 unsigned short coef_bits
;
862 struct alc_codec_rename_pci_table
{
863 unsigned int codec_vendor_id
;
864 unsigned short pci_subvendor
;
865 unsigned short pci_subdevice
;
869 static struct alc_codec_rename_table rename_tbl
[] = {
870 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
871 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
872 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
873 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
874 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
875 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
876 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
877 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
878 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
879 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
880 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
881 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
882 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
883 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
884 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
885 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
886 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
890 static struct alc_codec_rename_pci_table rename_pci_tbl
[] = {
891 { 0x10ec0280, 0x1028, 0, "ALC3220" },
892 { 0x10ec0282, 0x1028, 0, "ALC3221" },
893 { 0x10ec0283, 0x1028, 0, "ALC3223" },
894 { 0x10ec0288, 0x1028, 0, "ALC3263" },
895 { 0x10ec0292, 0x1028, 0, "ALC3226" },
896 { 0x10ec0293, 0x1028, 0, "ALC3235" },
897 { 0x10ec0255, 0x1028, 0, "ALC3234" },
898 { 0x10ec0668, 0x1028, 0, "ALC3661" },
899 { 0x10ec0275, 0x1028, 0, "ALC3260" },
900 { 0x10ec0899, 0x1028, 0, "ALC3861" },
901 { 0x10ec0298, 0x1028, 0, "ALC3266" },
902 { 0x10ec0256, 0x1028, 0, "ALC3246" },
903 { 0x10ec0670, 0x1025, 0, "ALC669X" },
904 { 0x10ec0676, 0x1025, 0, "ALC679X" },
905 { 0x10ec0282, 0x1043, 0, "ALC3229" },
906 { 0x10ec0233, 0x1043, 0, "ALC3236" },
907 { 0x10ec0280, 0x103c, 0, "ALC3228" },
908 { 0x10ec0282, 0x103c, 0, "ALC3227" },
909 { 0x10ec0286, 0x103c, 0, "ALC3242" },
910 { 0x10ec0290, 0x103c, 0, "ALC3241" },
911 { 0x10ec0668, 0x103c, 0, "ALC3662" },
912 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
913 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
917 static int alc_codec_rename_from_preset(struct hda_codec
*codec
)
919 const struct alc_codec_rename_table
*p
;
920 const struct alc_codec_rename_pci_table
*q
;
922 for (p
= rename_tbl
; p
->vendor_id
; p
++) {
923 if (p
->vendor_id
!= codec
->core
.vendor_id
)
925 if ((alc_get_coef0(codec
) & p
->coef_mask
) == p
->coef_bits
)
926 return alc_codec_rename(codec
, p
->name
);
929 if (!codec
->bus
->pci
)
931 for (q
= rename_pci_tbl
; q
->codec_vendor_id
; q
++) {
932 if (q
->codec_vendor_id
!= codec
->core
.vendor_id
)
934 if (q
->pci_subvendor
!= codec
->bus
->pci
->subsystem_vendor
)
936 if (!q
->pci_subdevice
||
937 q
->pci_subdevice
== codec
->bus
->pci
->subsystem_device
)
938 return alc_codec_rename(codec
, q
->name
);
946 * Digital-beep handlers
948 #ifdef CONFIG_SND_HDA_INPUT_BEEP
949 #define set_beep_amp(spec, nid, idx, dir) \
950 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
952 static const struct snd_pci_quirk beep_white_list
[] = {
953 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
954 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
955 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
956 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
957 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
958 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
959 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
960 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
961 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
965 static inline int has_cdefine_beep(struct hda_codec
*codec
)
967 struct alc_spec
*spec
= codec
->spec
;
968 const struct snd_pci_quirk
*q
;
969 q
= snd_pci_quirk_lookup(codec
->bus
->pci
, beep_white_list
);
972 return spec
->cdefine
.enable_pcbeep
;
975 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
976 #define has_cdefine_beep(codec) 0
979 /* parse the BIOS configuration and set up the alc_spec */
980 /* return 1 if successful, 0 if the proper config is not found,
981 * or a negative error code
983 static int alc_parse_auto_config(struct hda_codec
*codec
,
984 const hda_nid_t
*ignore_nids
,
985 const hda_nid_t
*ssid_nids
)
987 struct alc_spec
*spec
= codec
->spec
;
988 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
991 err
= snd_hda_parse_pin_defcfg(codec
, cfg
, ignore_nids
,
997 alc_ssid_check(codec
, ssid_nids
);
999 err
= snd_hda_gen_parse_auto_config(codec
, cfg
);
1006 /* common preparation job for alc_spec */
1007 static int alc_alloc_spec(struct hda_codec
*codec
, hda_nid_t mixer_nid
)
1009 struct alc_spec
*spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
1015 snd_hda_gen_spec_init(&spec
->gen
);
1016 spec
->gen
.mixer_nid
= mixer_nid
;
1017 spec
->gen
.own_eapd_ctl
= 1;
1018 codec
->single_adc_amp
= 1;
1019 /* FIXME: do we need this for all Realtek codec models? */
1020 codec
->spdif_status_reset
= 1;
1021 codec
->patch_ops
= alc_patch_ops
;
1023 err
= alc_codec_rename_from_preset(codec
);
1031 static int alc880_parse_auto_config(struct hda_codec
*codec
)
1033 static const hda_nid_t alc880_ignore
[] = { 0x1d, 0 };
1034 static const hda_nid_t alc880_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
1035 return alc_parse_auto_config(codec
, alc880_ignore
, alc880_ssids
);
1044 ALC880_FIXUP_MEDION_RIM
,
1046 ALC880_FIXUP_LG_LW25
,
1048 ALC880_FIXUP_EAPD_COEF
,
1049 ALC880_FIXUP_TCL_S700
,
1050 ALC880_FIXUP_VOL_KNOB
,
1051 ALC880_FIXUP_FUJITSU
,
1053 ALC880_FIXUP_UNIWILL
,
1054 ALC880_FIXUP_UNIWILL_DIG
,
1056 ALC880_FIXUP_ASUS_W5A
,
1057 ALC880_FIXUP_3ST_BASE
,
1059 ALC880_FIXUP_3ST_DIG
,
1060 ALC880_FIXUP_5ST_BASE
,
1062 ALC880_FIXUP_5ST_DIG
,
1063 ALC880_FIXUP_6ST_BASE
,
1065 ALC880_FIXUP_6ST_DIG
,
1066 ALC880_FIXUP_6ST_AUTOMUTE
,
1069 /* enable the volume-knob widget support on NID 0x21 */
1070 static void alc880_fixup_vol_knob(struct hda_codec
*codec
,
1071 const struct hda_fixup
*fix
, int action
)
1073 if (action
== HDA_FIXUP_ACT_PROBE
)
1074 snd_hda_jack_detect_enable_callback(codec
, 0x21,
1075 alc_update_knob_master
);
1078 static const struct hda_fixup alc880_fixups
[] = {
1079 [ALC880_FIXUP_GPIO1
] = {
1080 .type
= HDA_FIXUP_VERBS
,
1081 .v
.verbs
= alc_gpio1_init_verbs
,
1083 [ALC880_FIXUP_GPIO2
] = {
1084 .type
= HDA_FIXUP_VERBS
,
1085 .v
.verbs
= alc_gpio2_init_verbs
,
1087 [ALC880_FIXUP_MEDION_RIM
] = {
1088 .type
= HDA_FIXUP_VERBS
,
1089 .v
.verbs
= (const struct hda_verb
[]) {
1090 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1091 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
1095 .chain_id
= ALC880_FIXUP_GPIO2
,
1097 [ALC880_FIXUP_LG
] = {
1098 .type
= HDA_FIXUP_PINS
,
1099 .v
.pins
= (const struct hda_pintbl
[]) {
1100 /* disable bogus unused pins */
1101 { 0x16, 0x411111f0 },
1102 { 0x18, 0x411111f0 },
1103 { 0x1a, 0x411111f0 },
1107 [ALC880_FIXUP_LG_LW25
] = {
1108 .type
= HDA_FIXUP_PINS
,
1109 .v
.pins
= (const struct hda_pintbl
[]) {
1110 { 0x1a, 0x0181344f }, /* line-in */
1111 { 0x1b, 0x0321403f }, /* headphone */
1115 [ALC880_FIXUP_W810
] = {
1116 .type
= HDA_FIXUP_PINS
,
1117 .v
.pins
= (const struct hda_pintbl
[]) {
1118 /* disable bogus unused pins */
1119 { 0x17, 0x411111f0 },
1123 .chain_id
= ALC880_FIXUP_GPIO2
,
1125 [ALC880_FIXUP_EAPD_COEF
] = {
1126 .type
= HDA_FIXUP_VERBS
,
1127 .v
.verbs
= (const struct hda_verb
[]) {
1128 /* change to EAPD mode */
1129 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1130 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
1134 [ALC880_FIXUP_TCL_S700
] = {
1135 .type
= HDA_FIXUP_VERBS
,
1136 .v
.verbs
= (const struct hda_verb
[]) {
1137 /* change to EAPD mode */
1138 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1139 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
1143 .chain_id
= ALC880_FIXUP_GPIO2
,
1145 [ALC880_FIXUP_VOL_KNOB
] = {
1146 .type
= HDA_FIXUP_FUNC
,
1147 .v
.func
= alc880_fixup_vol_knob
,
1149 [ALC880_FIXUP_FUJITSU
] = {
1150 /* override all pins as BIOS on old Amilo is broken */
1151 .type
= HDA_FIXUP_PINS
,
1152 .v
.pins
= (const struct hda_pintbl
[]) {
1153 { 0x14, 0x0121401f }, /* HP */
1154 { 0x15, 0x99030120 }, /* speaker */
1155 { 0x16, 0x99030130 }, /* bass speaker */
1156 { 0x17, 0x411111f0 }, /* N/A */
1157 { 0x18, 0x411111f0 }, /* N/A */
1158 { 0x19, 0x01a19950 }, /* mic-in */
1159 { 0x1a, 0x411111f0 }, /* N/A */
1160 { 0x1b, 0x411111f0 }, /* N/A */
1161 { 0x1c, 0x411111f0 }, /* N/A */
1162 { 0x1d, 0x411111f0 }, /* N/A */
1163 { 0x1e, 0x01454140 }, /* SPDIF out */
1167 .chain_id
= ALC880_FIXUP_VOL_KNOB
,
1169 [ALC880_FIXUP_F1734
] = {
1170 /* almost compatible with FUJITSU, but no bass and SPDIF */
1171 .type
= HDA_FIXUP_PINS
,
1172 .v
.pins
= (const struct hda_pintbl
[]) {
1173 { 0x14, 0x0121401f }, /* HP */
1174 { 0x15, 0x99030120 }, /* speaker */
1175 { 0x16, 0x411111f0 }, /* N/A */
1176 { 0x17, 0x411111f0 }, /* N/A */
1177 { 0x18, 0x411111f0 }, /* N/A */
1178 { 0x19, 0x01a19950 }, /* mic-in */
1179 { 0x1a, 0x411111f0 }, /* N/A */
1180 { 0x1b, 0x411111f0 }, /* N/A */
1181 { 0x1c, 0x411111f0 }, /* N/A */
1182 { 0x1d, 0x411111f0 }, /* N/A */
1183 { 0x1e, 0x411111f0 }, /* N/A */
1187 .chain_id
= ALC880_FIXUP_VOL_KNOB
,
1189 [ALC880_FIXUP_UNIWILL
] = {
1190 /* need to fix HP and speaker pins to be parsed correctly */
1191 .type
= HDA_FIXUP_PINS
,
1192 .v
.pins
= (const struct hda_pintbl
[]) {
1193 { 0x14, 0x0121411f }, /* HP */
1194 { 0x15, 0x99030120 }, /* speaker */
1195 { 0x16, 0x99030130 }, /* bass speaker */
1199 [ALC880_FIXUP_UNIWILL_DIG
] = {
1200 .type
= HDA_FIXUP_PINS
,
1201 .v
.pins
= (const struct hda_pintbl
[]) {
1202 /* disable bogus unused pins */
1203 { 0x17, 0x411111f0 },
1204 { 0x19, 0x411111f0 },
1205 { 0x1b, 0x411111f0 },
1206 { 0x1f, 0x411111f0 },
1210 [ALC880_FIXUP_Z71V
] = {
1211 .type
= HDA_FIXUP_PINS
,
1212 .v
.pins
= (const struct hda_pintbl
[]) {
1213 /* set up the whole pins as BIOS is utterly broken */
1214 { 0x14, 0x99030120 }, /* speaker */
1215 { 0x15, 0x0121411f }, /* HP */
1216 { 0x16, 0x411111f0 }, /* N/A */
1217 { 0x17, 0x411111f0 }, /* N/A */
1218 { 0x18, 0x01a19950 }, /* mic-in */
1219 { 0x19, 0x411111f0 }, /* N/A */
1220 { 0x1a, 0x01813031 }, /* line-in */
1221 { 0x1b, 0x411111f0 }, /* N/A */
1222 { 0x1c, 0x411111f0 }, /* N/A */
1223 { 0x1d, 0x411111f0 }, /* N/A */
1224 { 0x1e, 0x0144111e }, /* SPDIF */
1228 [ALC880_FIXUP_ASUS_W5A
] = {
1229 .type
= HDA_FIXUP_PINS
,
1230 .v
.pins
= (const struct hda_pintbl
[]) {
1231 /* set up the whole pins as BIOS is utterly broken */
1232 { 0x14, 0x0121411f }, /* HP */
1233 { 0x15, 0x411111f0 }, /* N/A */
1234 { 0x16, 0x411111f0 }, /* N/A */
1235 { 0x17, 0x411111f0 }, /* N/A */
1236 { 0x18, 0x90a60160 }, /* mic */
1237 { 0x19, 0x411111f0 }, /* N/A */
1238 { 0x1a, 0x411111f0 }, /* N/A */
1239 { 0x1b, 0x411111f0 }, /* N/A */
1240 { 0x1c, 0x411111f0 }, /* N/A */
1241 { 0x1d, 0x411111f0 }, /* N/A */
1242 { 0x1e, 0xb743111e }, /* SPDIF out */
1246 .chain_id
= ALC880_FIXUP_GPIO1
,
1248 [ALC880_FIXUP_3ST_BASE
] = {
1249 .type
= HDA_FIXUP_PINS
,
1250 .v
.pins
= (const struct hda_pintbl
[]) {
1251 { 0x14, 0x01014010 }, /* line-out */
1252 { 0x15, 0x411111f0 }, /* N/A */
1253 { 0x16, 0x411111f0 }, /* N/A */
1254 { 0x17, 0x411111f0 }, /* N/A */
1255 { 0x18, 0x01a19c30 }, /* mic-in */
1256 { 0x19, 0x0121411f }, /* HP */
1257 { 0x1a, 0x01813031 }, /* line-in */
1258 { 0x1b, 0x02a19c40 }, /* front-mic */
1259 { 0x1c, 0x411111f0 }, /* N/A */
1260 { 0x1d, 0x411111f0 }, /* N/A */
1261 /* 0x1e is filled in below */
1262 { 0x1f, 0x411111f0 }, /* N/A */
1266 [ALC880_FIXUP_3ST
] = {
1267 .type
= HDA_FIXUP_PINS
,
1268 .v
.pins
= (const struct hda_pintbl
[]) {
1269 { 0x1e, 0x411111f0 }, /* N/A */
1273 .chain_id
= ALC880_FIXUP_3ST_BASE
,
1275 [ALC880_FIXUP_3ST_DIG
] = {
1276 .type
= HDA_FIXUP_PINS
,
1277 .v
.pins
= (const struct hda_pintbl
[]) {
1278 { 0x1e, 0x0144111e }, /* SPDIF */
1282 .chain_id
= ALC880_FIXUP_3ST_BASE
,
1284 [ALC880_FIXUP_5ST_BASE
] = {
1285 .type
= HDA_FIXUP_PINS
,
1286 .v
.pins
= (const struct hda_pintbl
[]) {
1287 { 0x14, 0x01014010 }, /* front */
1288 { 0x15, 0x411111f0 }, /* N/A */
1289 { 0x16, 0x01011411 }, /* CLFE */
1290 { 0x17, 0x01016412 }, /* surr */
1291 { 0x18, 0x01a19c30 }, /* mic-in */
1292 { 0x19, 0x0121411f }, /* HP */
1293 { 0x1a, 0x01813031 }, /* line-in */
1294 { 0x1b, 0x02a19c40 }, /* front-mic */
1295 { 0x1c, 0x411111f0 }, /* N/A */
1296 { 0x1d, 0x411111f0 }, /* N/A */
1297 /* 0x1e is filled in below */
1298 { 0x1f, 0x411111f0 }, /* N/A */
1302 [ALC880_FIXUP_5ST
] = {
1303 .type
= HDA_FIXUP_PINS
,
1304 .v
.pins
= (const struct hda_pintbl
[]) {
1305 { 0x1e, 0x411111f0 }, /* N/A */
1309 .chain_id
= ALC880_FIXUP_5ST_BASE
,
1311 [ALC880_FIXUP_5ST_DIG
] = {
1312 .type
= HDA_FIXUP_PINS
,
1313 .v
.pins
= (const struct hda_pintbl
[]) {
1314 { 0x1e, 0x0144111e }, /* SPDIF */
1318 .chain_id
= ALC880_FIXUP_5ST_BASE
,
1320 [ALC880_FIXUP_6ST_BASE
] = {
1321 .type
= HDA_FIXUP_PINS
,
1322 .v
.pins
= (const struct hda_pintbl
[]) {
1323 { 0x14, 0x01014010 }, /* front */
1324 { 0x15, 0x01016412 }, /* surr */
1325 { 0x16, 0x01011411 }, /* CLFE */
1326 { 0x17, 0x01012414 }, /* side */
1327 { 0x18, 0x01a19c30 }, /* mic-in */
1328 { 0x19, 0x02a19c40 }, /* front-mic */
1329 { 0x1a, 0x01813031 }, /* line-in */
1330 { 0x1b, 0x0121411f }, /* HP */
1331 { 0x1c, 0x411111f0 }, /* N/A */
1332 { 0x1d, 0x411111f0 }, /* N/A */
1333 /* 0x1e is filled in below */
1334 { 0x1f, 0x411111f0 }, /* N/A */
1338 [ALC880_FIXUP_6ST
] = {
1339 .type
= HDA_FIXUP_PINS
,
1340 .v
.pins
= (const struct hda_pintbl
[]) {
1341 { 0x1e, 0x411111f0 }, /* N/A */
1345 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1347 [ALC880_FIXUP_6ST_DIG
] = {
1348 .type
= HDA_FIXUP_PINS
,
1349 .v
.pins
= (const struct hda_pintbl
[]) {
1350 { 0x1e, 0x0144111e }, /* SPDIF */
1354 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1356 [ALC880_FIXUP_6ST_AUTOMUTE
] = {
1357 .type
= HDA_FIXUP_PINS
,
1358 .v
.pins
= (const struct hda_pintbl
[]) {
1359 { 0x1b, 0x0121401f }, /* HP with jack detect */
1362 .chained_before
= true,
1363 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1367 static const struct snd_pci_quirk alc880_fixup_tbl
[] = {
1368 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810
),
1369 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A
),
1370 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V
),
1371 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1
),
1372 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE
),
1373 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2
),
1374 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF
),
1375 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG
),
1376 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734
),
1377 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL
),
1378 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB
),
1379 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810
),
1380 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM
),
1381 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE
),
1382 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU
),
1383 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU
),
1384 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734
),
1385 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU
),
1386 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG
),
1387 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG
),
1388 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG
),
1389 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25
),
1390 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700
),
1392 /* Below is the copied entries from alc880_quirks.c.
1393 * It's not quite sure whether BIOS sets the correct pin-config table
1394 * on these machines, thus they are kept to be compatible with
1395 * the old static quirks. Once when it's confirmed to work without
1396 * these overrides, it'd be better to remove.
1398 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG
),
1399 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST
),
1400 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG
),
1401 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG
),
1402 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG
),
1403 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG
),
1404 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG
),
1405 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST
),
1406 SND_PCI_QUIRK(0x1039, 0x1234, NULL
, ALC880_FIXUP_6ST_DIG
),
1407 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST
),
1408 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST
),
1409 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST
),
1410 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST
),
1411 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST
),
1412 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG
),
1413 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG
),
1414 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG
),
1415 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG
),
1416 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG
),
1417 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG
),
1418 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG
),
1419 SND_PCI_QUIRK(0x2668, 0x8086, NULL
, ALC880_FIXUP_6ST_DIG
), /* broken BIOS */
1420 SND_PCI_QUIRK(0x8086, 0x2668, NULL
, ALC880_FIXUP_6ST_DIG
),
1421 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1422 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1423 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1424 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1425 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1426 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1427 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1428 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1429 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1430 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1432 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST
),
1433 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG
),
1434 SND_PCI_QUIRK(0xe803, 0x1019, NULL
, ALC880_FIXUP_6ST_DIG
),
1438 static const struct hda_model_fixup alc880_fixup_models
[] = {
1439 {.id
= ALC880_FIXUP_3ST
, .name
= "3stack"},
1440 {.id
= ALC880_FIXUP_3ST_DIG
, .name
= "3stack-digout"},
1441 {.id
= ALC880_FIXUP_5ST
, .name
= "5stack"},
1442 {.id
= ALC880_FIXUP_5ST_DIG
, .name
= "5stack-digout"},
1443 {.id
= ALC880_FIXUP_6ST
, .name
= "6stack"},
1444 {.id
= ALC880_FIXUP_6ST_DIG
, .name
= "6stack-digout"},
1445 {.id
= ALC880_FIXUP_6ST_AUTOMUTE
, .name
= "6stack-automute"},
1451 * OK, here we have finally the patch for ALC880
1453 static int patch_alc880(struct hda_codec
*codec
)
1455 struct alc_spec
*spec
;
1458 err
= alc_alloc_spec(codec
, 0x0b);
1463 spec
->gen
.need_dac_fix
= 1;
1464 spec
->gen
.beep_nid
= 0x01;
1466 codec
->patch_ops
.unsol_event
= alc880_unsol_event
;
1468 snd_hda_pick_fixup(codec
, alc880_fixup_models
, alc880_fixup_tbl
,
1470 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
1472 /* automatic parse from the BIOS config */
1473 err
= alc880_parse_auto_config(codec
);
1477 if (!spec
->gen
.no_analog
)
1478 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
1480 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
1493 static int alc260_parse_auto_config(struct hda_codec
*codec
)
1495 static const hda_nid_t alc260_ignore
[] = { 0x17, 0 };
1496 static const hda_nid_t alc260_ssids
[] = { 0x10, 0x15, 0x0f, 0 };
1497 return alc_parse_auto_config(codec
, alc260_ignore
, alc260_ssids
);
1504 ALC260_FIXUP_HP_DC5750
,
1505 ALC260_FIXUP_HP_PIN_0F
,
1508 ALC260_FIXUP_GPIO1_TOGGLE
,
1509 ALC260_FIXUP_REPLACER
,
1510 ALC260_FIXUP_HP_B1900
,
1512 ALC260_FIXUP_FSC_S7020
,
1513 ALC260_FIXUP_FSC_S7020_JWSE
,
1514 ALC260_FIXUP_VAIO_PINS
,
1517 static void alc260_gpio1_automute(struct hda_codec
*codec
)
1519 struct alc_spec
*spec
= codec
->spec
;
1520 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
1521 spec
->gen
.hp_jack_present
);
1524 static void alc260_fixup_gpio1_toggle(struct hda_codec
*codec
,
1525 const struct hda_fixup
*fix
, int action
)
1527 struct alc_spec
*spec
= codec
->spec
;
1528 if (action
== HDA_FIXUP_ACT_PROBE
) {
1529 /* although the machine has only one output pin, we need to
1530 * toggle GPIO1 according to the jack state
1532 spec
->gen
.automute_hook
= alc260_gpio1_automute
;
1533 spec
->gen
.detect_hp
= 1;
1534 spec
->gen
.automute_speaker
= 1;
1535 spec
->gen
.autocfg
.hp_pins
[0] = 0x0f; /* copy it for automute */
1536 snd_hda_jack_detect_enable_callback(codec
, 0x0f,
1537 snd_hda_gen_hp_automute
);
1538 snd_hda_add_verbs(codec
, alc_gpio1_init_verbs
);
1542 static void alc260_fixup_kn1(struct hda_codec
*codec
,
1543 const struct hda_fixup
*fix
, int action
)
1545 struct alc_spec
*spec
= codec
->spec
;
1546 static const struct hda_pintbl pincfgs
[] = {
1547 { 0x0f, 0x02214000 }, /* HP/speaker */
1548 { 0x12, 0x90a60160 }, /* int mic */
1549 { 0x13, 0x02a19000 }, /* ext mic */
1550 { 0x18, 0x01446000 }, /* SPDIF out */
1551 /* disable bogus I/O pins */
1552 { 0x10, 0x411111f0 },
1553 { 0x11, 0x411111f0 },
1554 { 0x14, 0x411111f0 },
1555 { 0x15, 0x411111f0 },
1556 { 0x16, 0x411111f0 },
1557 { 0x17, 0x411111f0 },
1558 { 0x19, 0x411111f0 },
1563 case HDA_FIXUP_ACT_PRE_PROBE
:
1564 snd_hda_apply_pincfgs(codec
, pincfgs
);
1566 case HDA_FIXUP_ACT_PROBE
:
1567 spec
->init_amp
= ALC_INIT_NONE
;
1572 static void alc260_fixup_fsc_s7020(struct hda_codec
*codec
,
1573 const struct hda_fixup
*fix
, int action
)
1575 struct alc_spec
*spec
= codec
->spec
;
1576 if (action
== HDA_FIXUP_ACT_PROBE
)
1577 spec
->init_amp
= ALC_INIT_NONE
;
1580 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec
*codec
,
1581 const struct hda_fixup
*fix
, int action
)
1583 struct alc_spec
*spec
= codec
->spec
;
1584 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
1585 spec
->gen
.add_jack_modes
= 1;
1586 spec
->gen
.hp_mic
= 1;
1590 static const struct hda_fixup alc260_fixups
[] = {
1591 [ALC260_FIXUP_HP_DC5750
] = {
1592 .type
= HDA_FIXUP_PINS
,
1593 .v
.pins
= (const struct hda_pintbl
[]) {
1594 { 0x11, 0x90130110 }, /* speaker */
1598 [ALC260_FIXUP_HP_PIN_0F
] = {
1599 .type
= HDA_FIXUP_PINS
,
1600 .v
.pins
= (const struct hda_pintbl
[]) {
1601 { 0x0f, 0x01214000 }, /* HP */
1605 [ALC260_FIXUP_COEF
] = {
1606 .type
= HDA_FIXUP_VERBS
,
1607 .v
.verbs
= (const struct hda_verb
[]) {
1608 { 0x1a, AC_VERB_SET_COEF_INDEX
, 0x07 },
1609 { 0x1a, AC_VERB_SET_PROC_COEF
, 0x3040 },
1613 [ALC260_FIXUP_GPIO1
] = {
1614 .type
= HDA_FIXUP_VERBS
,
1615 .v
.verbs
= alc_gpio1_init_verbs
,
1617 [ALC260_FIXUP_GPIO1_TOGGLE
] = {
1618 .type
= HDA_FIXUP_FUNC
,
1619 .v
.func
= alc260_fixup_gpio1_toggle
,
1621 .chain_id
= ALC260_FIXUP_HP_PIN_0F
,
1623 [ALC260_FIXUP_REPLACER
] = {
1624 .type
= HDA_FIXUP_VERBS
,
1625 .v
.verbs
= (const struct hda_verb
[]) {
1626 { 0x1a, AC_VERB_SET_COEF_INDEX
, 0x07 },
1627 { 0x1a, AC_VERB_SET_PROC_COEF
, 0x3050 },
1631 .chain_id
= ALC260_FIXUP_GPIO1_TOGGLE
,
1633 [ALC260_FIXUP_HP_B1900
] = {
1634 .type
= HDA_FIXUP_FUNC
,
1635 .v
.func
= alc260_fixup_gpio1_toggle
,
1637 .chain_id
= ALC260_FIXUP_COEF
,
1639 [ALC260_FIXUP_KN1
] = {
1640 .type
= HDA_FIXUP_FUNC
,
1641 .v
.func
= alc260_fixup_kn1
,
1643 [ALC260_FIXUP_FSC_S7020
] = {
1644 .type
= HDA_FIXUP_FUNC
,
1645 .v
.func
= alc260_fixup_fsc_s7020
,
1647 [ALC260_FIXUP_FSC_S7020_JWSE
] = {
1648 .type
= HDA_FIXUP_FUNC
,
1649 .v
.func
= alc260_fixup_fsc_s7020_jwse
,
1651 .chain_id
= ALC260_FIXUP_FSC_S7020
,
1653 [ALC260_FIXUP_VAIO_PINS
] = {
1654 .type
= HDA_FIXUP_PINS
,
1655 .v
.pins
= (const struct hda_pintbl
[]) {
1656 /* Pin configs are missing completely on some VAIOs */
1657 { 0x0f, 0x01211020 },
1658 { 0x10, 0x0001003f },
1659 { 0x11, 0x411111f0 },
1660 { 0x12, 0x01a15930 },
1661 { 0x13, 0x411111f0 },
1662 { 0x14, 0x411111f0 },
1663 { 0x15, 0x411111f0 },
1664 { 0x16, 0x411111f0 },
1665 { 0x17, 0x411111f0 },
1666 { 0x18, 0x411111f0 },
1667 { 0x19, 0x411111f0 },
1673 static const struct snd_pci_quirk alc260_fixup_tbl
[] = {
1674 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1
),
1675 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF
),
1676 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1
),
1677 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750
),
1678 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900
),
1679 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS
),
1680 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F
),
1681 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020
),
1682 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1
),
1683 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1
),
1684 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER
),
1685 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF
),
1689 static const struct hda_model_fixup alc260_fixup_models
[] = {
1690 {.id
= ALC260_FIXUP_GPIO1
, .name
= "gpio1"},
1691 {.id
= ALC260_FIXUP_COEF
, .name
= "coef"},
1692 {.id
= ALC260_FIXUP_FSC_S7020
, .name
= "fujitsu"},
1693 {.id
= ALC260_FIXUP_FSC_S7020_JWSE
, .name
= "fujitsu-jwse"},
1699 static int patch_alc260(struct hda_codec
*codec
)
1701 struct alc_spec
*spec
;
1704 err
= alc_alloc_spec(codec
, 0x07);
1709 /* as quite a few machines require HP amp for speaker outputs,
1710 * it's easier to enable it unconditionally; even if it's unneeded,
1711 * it's almost harmless.
1713 spec
->gen
.prefer_hp_amp
= 1;
1714 spec
->gen
.beep_nid
= 0x01;
1716 spec
->shutup
= alc_eapd_shutup
;
1718 snd_hda_pick_fixup(codec
, alc260_fixup_models
, alc260_fixup_tbl
,
1720 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
1722 /* automatic parse from the BIOS config */
1723 err
= alc260_parse_auto_config(codec
);
1727 if (!spec
->gen
.no_analog
)
1728 set_beep_amp(spec
, 0x07, 0x05, HDA_INPUT
);
1730 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
1741 * ALC882/883/885/888/889 support
1743 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1744 * configuration. Each pin widget can choose any input DACs and a mixer.
1745 * Each ADC is connected from a mixer of all inputs. This makes possible
1746 * 6-channel independent captures.
1748 * In addition, an independent DAC for the multi-playback (not used in this
1756 ALC882_FIXUP_ABIT_AW9D_MAX
,
1757 ALC882_FIXUP_LENOVO_Y530
,
1758 ALC882_FIXUP_PB_M5210
,
1759 ALC882_FIXUP_ACER_ASPIRE_7736
,
1760 ALC882_FIXUP_ASUS_W90V
,
1762 ALC889_FIXUP_FRONT_HP_NO_PRESENCE
,
1763 ALC889_FIXUP_VAIO_TT
,
1764 ALC888_FIXUP_EEE1601
,
1767 ALC883_FIXUP_ACER_EAPD
,
1772 ALC882_FIXUP_ASUS_W2JC
,
1773 ALC882_FIXUP_ACER_ASPIRE_4930G
,
1774 ALC882_FIXUP_ACER_ASPIRE_8930G
,
1775 ALC882_FIXUP_ASPIRE_8930G_VERBS
,
1776 ALC885_FIXUP_MACPRO_GPIO
,
1777 ALC889_FIXUP_DAC_ROUTE
,
1778 ALC889_FIXUP_MBP_VREF
,
1779 ALC889_FIXUP_IMAC91_VREF
,
1780 ALC889_FIXUP_MBA11_VREF
,
1781 ALC889_FIXUP_MBA21_VREF
,
1782 ALC889_FIXUP_MP11_VREF
,
1783 ALC889_FIXUP_MP41_VREF
,
1784 ALC882_FIXUP_INV_DMIC
,
1785 ALC882_FIXUP_NO_PRIMARY_HP
,
1786 ALC887_FIXUP_ASUS_BASS
,
1787 ALC887_FIXUP_BASS_CHMAP
,
1788 ALC882_FIXUP_DISABLE_AAMIX
,
1791 static void alc889_fixup_coef(struct hda_codec
*codec
,
1792 const struct hda_fixup
*fix
, int action
)
1794 if (action
!= HDA_FIXUP_ACT_INIT
)
1796 alc_update_coef_idx(codec
, 7, 0, 0x2030);
1799 /* toggle speaker-output according to the hp-jack state */
1800 static void alc882_gpio_mute(struct hda_codec
*codec
, int pin
, int muted
)
1802 unsigned int gpiostate
, gpiomask
, gpiodir
;
1804 gpiostate
= snd_hda_codec_read(codec
, codec
->core
.afg
, 0,
1805 AC_VERB_GET_GPIO_DATA
, 0);
1808 gpiostate
|= (1 << pin
);
1810 gpiostate
&= ~(1 << pin
);
1812 gpiomask
= snd_hda_codec_read(codec
, codec
->core
.afg
, 0,
1813 AC_VERB_GET_GPIO_MASK
, 0);
1814 gpiomask
|= (1 << pin
);
1816 gpiodir
= snd_hda_codec_read(codec
, codec
->core
.afg
, 0,
1817 AC_VERB_GET_GPIO_DIRECTION
, 0);
1818 gpiodir
|= (1 << pin
);
1821 snd_hda_codec_write(codec
, codec
->core
.afg
, 0,
1822 AC_VERB_SET_GPIO_MASK
, gpiomask
);
1823 snd_hda_codec_write(codec
, codec
->core
.afg
, 0,
1824 AC_VERB_SET_GPIO_DIRECTION
, gpiodir
);
1828 snd_hda_codec_write(codec
, codec
->core
.afg
, 0,
1829 AC_VERB_SET_GPIO_DATA
, gpiostate
);
1832 /* set up GPIO at initialization */
1833 static void alc885_fixup_macpro_gpio(struct hda_codec
*codec
,
1834 const struct hda_fixup
*fix
, int action
)
1836 if (action
!= HDA_FIXUP_ACT_INIT
)
1838 alc882_gpio_mute(codec
, 0, 0);
1839 alc882_gpio_mute(codec
, 1, 0);
1842 /* Fix the connection of some pins for ALC889:
1843 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1844 * work correctly (bko#42740)
1846 static void alc889_fixup_dac_route(struct hda_codec
*codec
,
1847 const struct hda_fixup
*fix
, int action
)
1849 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
1850 /* fake the connections during parsing the tree */
1851 hda_nid_t conn1
[2] = { 0x0c, 0x0d };
1852 hda_nid_t conn2
[2] = { 0x0e, 0x0f };
1853 snd_hda_override_conn_list(codec
, 0x14, 2, conn1
);
1854 snd_hda_override_conn_list(codec
, 0x15, 2, conn1
);
1855 snd_hda_override_conn_list(codec
, 0x18, 2, conn2
);
1856 snd_hda_override_conn_list(codec
, 0x1a, 2, conn2
);
1857 } else if (action
== HDA_FIXUP_ACT_PROBE
) {
1858 /* restore the connections */
1859 hda_nid_t conn
[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1860 snd_hda_override_conn_list(codec
, 0x14, 5, conn
);
1861 snd_hda_override_conn_list(codec
, 0x15, 5, conn
);
1862 snd_hda_override_conn_list(codec
, 0x18, 5, conn
);
1863 snd_hda_override_conn_list(codec
, 0x1a, 5, conn
);
1867 /* Set VREF on HP pin */
1868 static void alc889_fixup_mbp_vref(struct hda_codec
*codec
,
1869 const struct hda_fixup
*fix
, int action
)
1871 struct alc_spec
*spec
= codec
->spec
;
1872 static hda_nid_t nids
[3] = { 0x14, 0x15, 0x19 };
1875 if (action
!= HDA_FIXUP_ACT_INIT
)
1877 for (i
= 0; i
< ARRAY_SIZE(nids
); i
++) {
1878 unsigned int val
= snd_hda_codec_get_pincfg(codec
, nids
[i
]);
1879 if (get_defcfg_device(val
) != AC_JACK_HP_OUT
)
1881 val
= snd_hda_codec_get_pin_target(codec
, nids
[i
]);
1882 val
|= AC_PINCTL_VREF_80
;
1883 snd_hda_set_pin_ctl(codec
, nids
[i
], val
);
1884 spec
->gen
.keep_vref_in_automute
= 1;
1889 static void alc889_fixup_mac_pins(struct hda_codec
*codec
,
1890 const hda_nid_t
*nids
, int num_nids
)
1892 struct alc_spec
*spec
= codec
->spec
;
1895 for (i
= 0; i
< num_nids
; i
++) {
1897 val
= snd_hda_codec_get_pin_target(codec
, nids
[i
]);
1898 val
|= AC_PINCTL_VREF_50
;
1899 snd_hda_set_pin_ctl(codec
, nids
[i
], val
);
1901 spec
->gen
.keep_vref_in_automute
= 1;
1904 /* Set VREF on speaker pins on imac91 */
1905 static void alc889_fixup_imac91_vref(struct hda_codec
*codec
,
1906 const struct hda_fixup
*fix
, int action
)
1908 static hda_nid_t nids
[2] = { 0x18, 0x1a };
1910 if (action
== HDA_FIXUP_ACT_INIT
)
1911 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
1914 /* Set VREF on speaker pins on mba11 */
1915 static void alc889_fixup_mba11_vref(struct hda_codec
*codec
,
1916 const struct hda_fixup
*fix
, int action
)
1918 static hda_nid_t nids
[1] = { 0x18 };
1920 if (action
== HDA_FIXUP_ACT_INIT
)
1921 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
1924 /* Set VREF on speaker pins on mba21 */
1925 static void alc889_fixup_mba21_vref(struct hda_codec
*codec
,
1926 const struct hda_fixup
*fix
, int action
)
1928 static hda_nid_t nids
[2] = { 0x18, 0x19 };
1930 if (action
== HDA_FIXUP_ACT_INIT
)
1931 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
1934 /* Don't take HP output as primary
1935 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
1936 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
1938 static void alc882_fixup_no_primary_hp(struct hda_codec
*codec
,
1939 const struct hda_fixup
*fix
, int action
)
1941 struct alc_spec
*spec
= codec
->spec
;
1942 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
1943 spec
->gen
.no_primary_hp
= 1;
1944 spec
->gen
.no_multi_io
= 1;
1948 static void alc_fixup_bass_chmap(struct hda_codec
*codec
,
1949 const struct hda_fixup
*fix
, int action
);
1950 static void alc_fixup_disable_aamix(struct hda_codec
*codec
,
1951 const struct hda_fixup
*fix
, int action
);
1953 static const struct hda_fixup alc882_fixups
[] = {
1954 [ALC882_FIXUP_ABIT_AW9D_MAX
] = {
1955 .type
= HDA_FIXUP_PINS
,
1956 .v
.pins
= (const struct hda_pintbl
[]) {
1957 { 0x15, 0x01080104 }, /* side */
1958 { 0x16, 0x01011012 }, /* rear */
1959 { 0x17, 0x01016011 }, /* clfe */
1963 [ALC882_FIXUP_LENOVO_Y530
] = {
1964 .type
= HDA_FIXUP_PINS
,
1965 .v
.pins
= (const struct hda_pintbl
[]) {
1966 { 0x15, 0x99130112 }, /* rear int speakers */
1967 { 0x16, 0x99130111 }, /* subwoofer */
1971 [ALC882_FIXUP_PB_M5210
] = {
1972 .type
= HDA_FIXUP_PINCTLS
,
1973 .v
.pins
= (const struct hda_pintbl
[]) {
1974 { 0x19, PIN_VREF50
},
1978 [ALC882_FIXUP_ACER_ASPIRE_7736
] = {
1979 .type
= HDA_FIXUP_FUNC
,
1980 .v
.func
= alc_fixup_sku_ignore
,
1982 [ALC882_FIXUP_ASUS_W90V
] = {
1983 .type
= HDA_FIXUP_PINS
,
1984 .v
.pins
= (const struct hda_pintbl
[]) {
1985 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
1989 [ALC889_FIXUP_CD
] = {
1990 .type
= HDA_FIXUP_PINS
,
1991 .v
.pins
= (const struct hda_pintbl
[]) {
1992 { 0x1c, 0x993301f0 }, /* CD */
1996 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE
] = {
1997 .type
= HDA_FIXUP_PINS
,
1998 .v
.pins
= (const struct hda_pintbl
[]) {
1999 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2003 .chain_id
= ALC889_FIXUP_CD
,
2005 [ALC889_FIXUP_VAIO_TT
] = {
2006 .type
= HDA_FIXUP_PINS
,
2007 .v
.pins
= (const struct hda_pintbl
[]) {
2008 { 0x17, 0x90170111 }, /* hidden surround speaker */
2012 [ALC888_FIXUP_EEE1601
] = {
2013 .type
= HDA_FIXUP_VERBS
,
2014 .v
.verbs
= (const struct hda_verb
[]) {
2015 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0b },
2016 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0838 },
2020 [ALC882_FIXUP_EAPD
] = {
2021 .type
= HDA_FIXUP_VERBS
,
2022 .v
.verbs
= (const struct hda_verb
[]) {
2023 /* change to EAPD mode */
2024 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2025 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
2029 [ALC883_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
, 0x3070 },
2038 [ALC883_FIXUP_ACER_EAPD
] = {
2039 .type
= HDA_FIXUP_VERBS
,
2040 .v
.verbs
= (const struct hda_verb
[]) {
2041 /* eanable EAPD on Acer laptops */
2042 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2043 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2047 [ALC882_FIXUP_GPIO1
] = {
2048 .type
= HDA_FIXUP_VERBS
,
2049 .v
.verbs
= alc_gpio1_init_verbs
,
2051 [ALC882_FIXUP_GPIO2
] = {
2052 .type
= HDA_FIXUP_VERBS
,
2053 .v
.verbs
= alc_gpio2_init_verbs
,
2055 [ALC882_FIXUP_GPIO3
] = {
2056 .type
= HDA_FIXUP_VERBS
,
2057 .v
.verbs
= alc_gpio3_init_verbs
,
2059 [ALC882_FIXUP_ASUS_W2JC
] = {
2060 .type
= HDA_FIXUP_VERBS
,
2061 .v
.verbs
= alc_gpio1_init_verbs
,
2063 .chain_id
= ALC882_FIXUP_EAPD
,
2065 [ALC889_FIXUP_COEF
] = {
2066 .type
= HDA_FIXUP_FUNC
,
2067 .v
.func
= alc889_fixup_coef
,
2069 [ALC882_FIXUP_ACER_ASPIRE_4930G
] = {
2070 .type
= HDA_FIXUP_PINS
,
2071 .v
.pins
= (const struct hda_pintbl
[]) {
2072 { 0x16, 0x99130111 }, /* CLFE speaker */
2073 { 0x17, 0x99130112 }, /* surround speaker */
2077 .chain_id
= ALC882_FIXUP_GPIO1
,
2079 [ALC882_FIXUP_ACER_ASPIRE_8930G
] = {
2080 .type
= HDA_FIXUP_PINS
,
2081 .v
.pins
= (const struct hda_pintbl
[]) {
2082 { 0x16, 0x99130111 }, /* CLFE speaker */
2083 { 0x1b, 0x99130112 }, /* surround speaker */
2087 .chain_id
= ALC882_FIXUP_ASPIRE_8930G_VERBS
,
2089 [ALC882_FIXUP_ASPIRE_8930G_VERBS
] = {
2090 /* additional init verbs for Acer Aspire 8930G */
2091 .type
= HDA_FIXUP_VERBS
,
2092 .v
.verbs
= (const struct hda_verb
[]) {
2093 /* Enable all DACs */
2094 /* DAC DISABLE/MUTE 1? */
2095 /* setting bits 1-5 disables DAC nids 0x02-0x06
2096 * apparently. Init=0x38 */
2097 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x03 },
2098 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0000 },
2099 /* DAC DISABLE/MUTE 2? */
2100 /* some bit here disables the other DACs.
2102 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x08 },
2103 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0000 },
2105 * This laptop has a stereo digital microphone.
2106 * The mics are only 1cm apart which makes the stereo
2107 * useless. However, either the mic or the ALC889
2108 * makes the signal become a difference/sum signal
2109 * instead of standard stereo, which is annoying.
2110 * So instead we flip this bit which makes the
2111 * codec replicate the sum signal to both channels,
2112 * turning it into a normal mono mic.
2114 /* DMIC_CONTROL? Init value = 0x0001 */
2115 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0b },
2116 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0003 },
2117 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2118 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2122 .chain_id
= ALC882_FIXUP_GPIO1
,
2124 [ALC885_FIXUP_MACPRO_GPIO
] = {
2125 .type
= HDA_FIXUP_FUNC
,
2126 .v
.func
= alc885_fixup_macpro_gpio
,
2128 [ALC889_FIXUP_DAC_ROUTE
] = {
2129 .type
= HDA_FIXUP_FUNC
,
2130 .v
.func
= alc889_fixup_dac_route
,
2132 [ALC889_FIXUP_MBP_VREF
] = {
2133 .type
= HDA_FIXUP_FUNC
,
2134 .v
.func
= alc889_fixup_mbp_vref
,
2136 .chain_id
= ALC882_FIXUP_GPIO1
,
2138 [ALC889_FIXUP_IMAC91_VREF
] = {
2139 .type
= HDA_FIXUP_FUNC
,
2140 .v
.func
= alc889_fixup_imac91_vref
,
2142 .chain_id
= ALC882_FIXUP_GPIO1
,
2144 [ALC889_FIXUP_MBA11_VREF
] = {
2145 .type
= HDA_FIXUP_FUNC
,
2146 .v
.func
= alc889_fixup_mba11_vref
,
2148 .chain_id
= ALC889_FIXUP_MBP_VREF
,
2150 [ALC889_FIXUP_MBA21_VREF
] = {
2151 .type
= HDA_FIXUP_FUNC
,
2152 .v
.func
= alc889_fixup_mba21_vref
,
2154 .chain_id
= ALC889_FIXUP_MBP_VREF
,
2156 [ALC889_FIXUP_MP11_VREF
] = {
2157 .type
= HDA_FIXUP_FUNC
,
2158 .v
.func
= alc889_fixup_mba11_vref
,
2160 .chain_id
= ALC885_FIXUP_MACPRO_GPIO
,
2162 [ALC889_FIXUP_MP41_VREF
] = {
2163 .type
= HDA_FIXUP_FUNC
,
2164 .v
.func
= alc889_fixup_mbp_vref
,
2166 .chain_id
= ALC885_FIXUP_MACPRO_GPIO
,
2168 [ALC882_FIXUP_INV_DMIC
] = {
2169 .type
= HDA_FIXUP_FUNC
,
2170 .v
.func
= alc_fixup_inv_dmic
,
2172 [ALC882_FIXUP_NO_PRIMARY_HP
] = {
2173 .type
= HDA_FIXUP_FUNC
,
2174 .v
.func
= alc882_fixup_no_primary_hp
,
2176 [ALC887_FIXUP_ASUS_BASS
] = {
2177 .type
= HDA_FIXUP_PINS
,
2178 .v
.pins
= (const struct hda_pintbl
[]) {
2179 {0x16, 0x99130130}, /* bass speaker */
2183 .chain_id
= ALC887_FIXUP_BASS_CHMAP
,
2185 [ALC887_FIXUP_BASS_CHMAP
] = {
2186 .type
= HDA_FIXUP_FUNC
,
2187 .v
.func
= alc_fixup_bass_chmap
,
2189 [ALC882_FIXUP_DISABLE_AAMIX
] = {
2190 .type
= HDA_FIXUP_FUNC
,
2191 .v
.func
= alc_fixup_disable_aamix
,
2195 static const struct snd_pci_quirk alc882_fixup_tbl
[] = {
2196 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD
),
2197 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2198 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2199 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD
),
2200 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2201 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD
),
2202 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD
),
2203 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2204 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2205 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2206 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2207 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2208 ALC882_FIXUP_ACER_ASPIRE_8930G
),
2209 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2210 ALC882_FIXUP_ACER_ASPIRE_8930G
),
2211 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2212 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2213 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2214 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2215 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2216 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2217 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210
),
2218 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2219 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2220 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE
),
2221 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G
),
2222 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736
),
2223 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD
),
2224 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V
),
2225 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC
),
2226 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601
),
2227 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS
),
2228 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT
),
2229 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP
),
2230 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP
),
2232 /* All Apple entries are in codec SSIDs */
2233 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF
),
2234 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF
),
2235 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF
),
2236 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF
),
2237 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO
),
2238 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO
),
2239 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF
),
2240 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF
),
2241 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD
),
2242 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF
),
2243 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF
),
2244 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF
),
2245 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF
),
2246 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO
),
2247 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF
),
2248 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF
),
2249 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF
),
2250 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF
),
2251 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF
),
2252 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF
),
2253 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF
),
2254 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF
),
2256 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD
),
2257 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD
),
2258 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3
),
2259 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE
),
2260 SND_PCI_QUIRK(0x1458, 0xa182, "Gigabyte Z170X-UD3", ALC882_FIXUP_DISABLE_AAMIX
),
2261 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX
),
2262 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD
),
2263 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD
),
2264 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530
),
2265 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF
),
2269 static const struct hda_model_fixup alc882_fixup_models
[] = {
2270 {.id
= ALC882_FIXUP_ACER_ASPIRE_4930G
, .name
= "acer-aspire-4930g"},
2271 {.id
= ALC882_FIXUP_ACER_ASPIRE_8930G
, .name
= "acer-aspire-8930g"},
2272 {.id
= ALC883_FIXUP_ACER_EAPD
, .name
= "acer-aspire"},
2273 {.id
= ALC882_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2274 {.id
= ALC882_FIXUP_NO_PRIMARY_HP
, .name
= "no-primary-hp"},
2279 * BIOS auto configuration
2281 /* almost identical with ALC880 parser... */
2282 static int alc882_parse_auto_config(struct hda_codec
*codec
)
2284 static const hda_nid_t alc882_ignore
[] = { 0x1d, 0 };
2285 static const hda_nid_t alc882_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2286 return alc_parse_auto_config(codec
, alc882_ignore
, alc882_ssids
);
2291 static int patch_alc882(struct hda_codec
*codec
)
2293 struct alc_spec
*spec
;
2296 err
= alc_alloc_spec(codec
, 0x0b);
2302 switch (codec
->core
.vendor_id
) {
2308 /* ALC883 and variants */
2309 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
2313 snd_hda_pick_fixup(codec
, alc882_fixup_models
, alc882_fixup_tbl
,
2315 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2317 alc_auto_parse_customize_define(codec
);
2319 if (has_cdefine_beep(codec
))
2320 spec
->gen
.beep_nid
= 0x01;
2322 /* automatic parse from the BIOS config */
2323 err
= alc882_parse_auto_config(codec
);
2327 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
)
2328 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
2330 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
2343 static int alc262_parse_auto_config(struct hda_codec
*codec
)
2345 static const hda_nid_t alc262_ignore
[] = { 0x1d, 0 };
2346 static const hda_nid_t alc262_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2347 return alc_parse_auto_config(codec
, alc262_ignore
, alc262_ssids
);
2354 ALC262_FIXUP_FSC_H270
,
2355 ALC262_FIXUP_FSC_S7110
,
2356 ALC262_FIXUP_HP_Z200
,
2358 ALC262_FIXUP_LENOVO_3000
,
2360 ALC262_FIXUP_BENQ_T31
,
2361 ALC262_FIXUP_INV_DMIC
,
2362 ALC262_FIXUP_INTEL_BAYLEYBAY
,
2365 static const struct hda_fixup alc262_fixups
[] = {
2366 [ALC262_FIXUP_FSC_H270
] = {
2367 .type
= HDA_FIXUP_PINS
,
2368 .v
.pins
= (const struct hda_pintbl
[]) {
2369 { 0x14, 0x99130110 }, /* speaker */
2370 { 0x15, 0x0221142f }, /* front HP */
2371 { 0x1b, 0x0121141f }, /* rear HP */
2375 [ALC262_FIXUP_FSC_S7110
] = {
2376 .type
= HDA_FIXUP_PINS
,
2377 .v
.pins
= (const struct hda_pintbl
[]) {
2378 { 0x15, 0x90170110 }, /* speaker */
2382 .chain_id
= ALC262_FIXUP_BENQ
,
2384 [ALC262_FIXUP_HP_Z200
] = {
2385 .type
= HDA_FIXUP_PINS
,
2386 .v
.pins
= (const struct hda_pintbl
[]) {
2387 { 0x16, 0x99130120 }, /* internal speaker */
2391 [ALC262_FIXUP_TYAN
] = {
2392 .type
= HDA_FIXUP_PINS
,
2393 .v
.pins
= (const struct hda_pintbl
[]) {
2394 { 0x14, 0x1993e1f0 }, /* int AUX */
2398 [ALC262_FIXUP_LENOVO_3000
] = {
2399 .type
= HDA_FIXUP_PINCTLS
,
2400 .v
.pins
= (const struct hda_pintbl
[]) {
2401 { 0x19, PIN_VREF50
},
2405 .chain_id
= ALC262_FIXUP_BENQ
,
2407 [ALC262_FIXUP_BENQ
] = {
2408 .type
= HDA_FIXUP_VERBS
,
2409 .v
.verbs
= (const struct hda_verb
[]) {
2410 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2411 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
2415 [ALC262_FIXUP_BENQ_T31
] = {
2416 .type
= HDA_FIXUP_VERBS
,
2417 .v
.verbs
= (const struct hda_verb
[]) {
2418 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2419 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2423 [ALC262_FIXUP_INV_DMIC
] = {
2424 .type
= HDA_FIXUP_FUNC
,
2425 .v
.func
= alc_fixup_inv_dmic
,
2427 [ALC262_FIXUP_INTEL_BAYLEYBAY
] = {
2428 .type
= HDA_FIXUP_FUNC
,
2429 .v
.func
= alc_fixup_no_depop_delay
,
2433 static const struct snd_pci_quirk alc262_fixup_tbl
[] = {
2434 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200
),
2435 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110
),
2436 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ
),
2437 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN
),
2438 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270
),
2439 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000
),
2440 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ
),
2441 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31
),
2442 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY
),
2446 static const struct hda_model_fixup alc262_fixup_models
[] = {
2447 {.id
= ALC262_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2453 static int patch_alc262(struct hda_codec
*codec
)
2455 struct alc_spec
*spec
;
2458 err
= alc_alloc_spec(codec
, 0x0b);
2463 spec
->gen
.shared_mic_vref_pin
= 0x18;
2465 spec
->shutup
= alc_eapd_shutup
;
2468 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2471 alc_update_coefex_idx(codec
, 0x1a, 7, 0, 0x80);
2473 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
2475 snd_hda_pick_fixup(codec
, alc262_fixup_models
, alc262_fixup_tbl
,
2477 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2479 alc_auto_parse_customize_define(codec
);
2481 if (has_cdefine_beep(codec
))
2482 spec
->gen
.beep_nid
= 0x01;
2484 /* automatic parse from the BIOS config */
2485 err
= alc262_parse_auto_config(codec
);
2489 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
)
2490 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
2492 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
2504 /* bind Beep switches of both NID 0x0f and 0x10 */
2505 static const struct hda_bind_ctls alc268_bind_beep_sw
= {
2506 .ops
= &snd_hda_bind_sw
,
2508 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT
),
2509 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT
),
2514 static const struct snd_kcontrol_new alc268_beep_mixer
[] = {
2515 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT
),
2516 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw
),
2520 /* set PCBEEP vol = 0, mute connections */
2521 static const struct hda_verb alc268_beep_init_verbs
[] = {
2522 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2523 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2524 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2529 ALC268_FIXUP_INV_DMIC
,
2530 ALC268_FIXUP_HP_EAPD
,
2534 static const struct hda_fixup alc268_fixups
[] = {
2535 [ALC268_FIXUP_INV_DMIC
] = {
2536 .type
= HDA_FIXUP_FUNC
,
2537 .v
.func
= alc_fixup_inv_dmic
,
2539 [ALC268_FIXUP_HP_EAPD
] = {
2540 .type
= HDA_FIXUP_VERBS
,
2541 .v
.verbs
= (const struct hda_verb
[]) {
2542 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 0},
2546 [ALC268_FIXUP_SPDIF
] = {
2547 .type
= HDA_FIXUP_PINS
,
2548 .v
.pins
= (const struct hda_pintbl
[]) {
2549 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2555 static const struct hda_model_fixup alc268_fixup_models
[] = {
2556 {.id
= ALC268_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2557 {.id
= ALC268_FIXUP_HP_EAPD
, .name
= "hp-eapd"},
2561 static const struct snd_pci_quirk alc268_fixup_tbl
[] = {
2562 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF
),
2563 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC
),
2564 /* below is codec SSID since multiple Toshiba laptops have the
2565 * same PCI SSID 1179:ff00
2567 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD
),
2572 * BIOS auto configuration
2574 static int alc268_parse_auto_config(struct hda_codec
*codec
)
2576 static const hda_nid_t alc268_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2577 return alc_parse_auto_config(codec
, NULL
, alc268_ssids
);
2582 static int patch_alc268(struct hda_codec
*codec
)
2584 struct alc_spec
*spec
;
2587 /* ALC268 has no aa-loopback mixer */
2588 err
= alc_alloc_spec(codec
, 0);
2593 spec
->gen
.beep_nid
= 0x01;
2595 spec
->shutup
= alc_eapd_shutup
;
2597 snd_hda_pick_fixup(codec
, alc268_fixup_models
, alc268_fixup_tbl
, alc268_fixups
);
2598 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2600 /* automatic parse from the BIOS config */
2601 err
= alc268_parse_auto_config(codec
);
2605 if (err
> 0 && !spec
->gen
.no_analog
&&
2606 spec
->gen
.autocfg
.speaker_pins
[0] != 0x1d) {
2607 add_mixer(spec
, alc268_beep_mixer
);
2608 snd_hda_add_verbs(codec
, alc268_beep_init_verbs
);
2609 if (!query_amp_caps(codec
, 0x1d, HDA_INPUT
))
2610 /* override the amp caps for beep generator */
2611 snd_hda_override_amp_caps(codec
, 0x1d, HDA_INPUT
,
2612 (0x0c << AC_AMPCAP_OFFSET_SHIFT
) |
2613 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT
) |
2614 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
2615 (0 << AC_AMPCAP_MUTE_SHIFT
));
2618 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
2631 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback
= {
2632 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
2635 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture
= {
2636 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
2639 /* different alc269-variants */
2641 ALC269_TYPE_ALC269VA
,
2642 ALC269_TYPE_ALC269VB
,
2643 ALC269_TYPE_ALC269VC
,
2644 ALC269_TYPE_ALC269VD
,
2657 * BIOS auto configuration
2659 static int alc269_parse_auto_config(struct hda_codec
*codec
)
2661 static const hda_nid_t alc269_ignore
[] = { 0x1d, 0 };
2662 static const hda_nid_t alc269_ssids
[] = { 0, 0x1b, 0x14, 0x21 };
2663 static const hda_nid_t alc269va_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2664 struct alc_spec
*spec
= codec
->spec
;
2665 const hda_nid_t
*ssids
;
2667 switch (spec
->codec_variant
) {
2668 case ALC269_TYPE_ALC269VA
:
2669 case ALC269_TYPE_ALC269VC
:
2670 case ALC269_TYPE_ALC280
:
2671 case ALC269_TYPE_ALC284
:
2672 case ALC269_TYPE_ALC285
:
2673 ssids
= alc269va_ssids
;
2675 case ALC269_TYPE_ALC269VB
:
2676 case ALC269_TYPE_ALC269VD
:
2677 case ALC269_TYPE_ALC282
:
2678 case ALC269_TYPE_ALC283
:
2679 case ALC269_TYPE_ALC286
:
2680 case ALC269_TYPE_ALC298
:
2681 case ALC269_TYPE_ALC255
:
2682 case ALC269_TYPE_ALC256
:
2683 ssids
= alc269_ssids
;
2686 ssids
= alc269_ssids
;
2690 return alc_parse_auto_config(codec
, alc269_ignore
, ssids
);
2693 static int find_ext_mic_pin(struct hda_codec
*codec
);
2695 static void alc286_shutup(struct hda_codec
*codec
)
2698 int mic_pin
= find_ext_mic_pin(codec
);
2699 /* don't shut up pins when unloading the driver; otherwise it breaks
2700 * the default pin setup at the next load of the driver
2702 if (codec
->bus
->shutdown
)
2704 for (i
= 0; i
< codec
->init_pins
.used
; i
++) {
2705 struct hda_pincfg
*pin
= snd_array_elem(&codec
->init_pins
, i
);
2706 /* use read here for syncing after issuing each verb */
2707 if (pin
->nid
!= mic_pin
)
2708 snd_hda_codec_read(codec
, pin
->nid
, 0,
2709 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
2711 codec
->pins_shutup
= 1;
2714 static void alc269vb_toggle_power_output(struct hda_codec
*codec
, int power_up
)
2716 alc_update_coef_idx(codec
, 0x04, 1 << 11, power_up
? (1 << 11) : 0);
2719 static void alc269_shutup(struct hda_codec
*codec
)
2721 struct alc_spec
*spec
= codec
->spec
;
2723 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
2724 alc269vb_toggle_power_output(codec
, 0);
2725 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
2726 (alc_get_coef0(codec
) & 0x00ff) == 0x018) {
2729 snd_hda_shutup_pins(codec
);
2732 static struct coef_fw alc282_coefs
[] = {
2733 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2734 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
2735 WRITE_COEF(0x07, 0x0200), /* DMIC control */
2736 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
2737 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
2738 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
2739 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
2740 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
2741 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
2742 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
2743 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
2744 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
2745 WRITE_COEF(0x34, 0xa0c0), /* ANC */
2746 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
2747 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
2748 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
2749 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
2750 WRITE_COEF(0x63, 0x2902), /* PLL */
2751 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
2752 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
2753 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
2754 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
2755 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
2756 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
2757 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
2758 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
2759 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
2760 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
2761 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
2765 static void alc282_restore_default_value(struct hda_codec
*codec
)
2767 alc_process_coef_fw(codec
, alc282_coefs
);
2770 static void alc282_init(struct hda_codec
*codec
)
2772 struct alc_spec
*spec
= codec
->spec
;
2773 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
2777 alc282_restore_default_value(codec
);
2781 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
2782 coef78
= alc_read_coef_idx(codec
, 0x78);
2784 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
2785 /* Headphone capless set to high power mode */
2786 alc_write_coef_idx(codec
, 0x78, 0x9004);
2791 snd_hda_codec_write(codec
, hp_pin
, 0,
2792 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
2797 snd_hda_codec_write(codec
, hp_pin
, 0,
2798 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
2803 /* Headphone capless set to normal mode */
2804 alc_write_coef_idx(codec
, 0x78, coef78
);
2807 static void alc282_shutup(struct hda_codec
*codec
)
2809 struct alc_spec
*spec
= codec
->spec
;
2810 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
2815 alc269_shutup(codec
);
2819 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
2820 coef78
= alc_read_coef_idx(codec
, 0x78);
2821 alc_write_coef_idx(codec
, 0x78, 0x9004);
2826 snd_hda_codec_write(codec
, hp_pin
, 0,
2827 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
2832 snd_hda_codec_write(codec
, hp_pin
, 0,
2833 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
2838 alc_auto_setup_eapd(codec
, false);
2839 snd_hda_shutup_pins(codec
);
2840 alc_write_coef_idx(codec
, 0x78, coef78
);
2843 static struct coef_fw alc283_coefs
[] = {
2844 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2845 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
2846 WRITE_COEF(0x07, 0x0200), /* DMIC control */
2847 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
2848 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
2849 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
2850 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
2851 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
2852 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
2853 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
2854 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
2855 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
2856 WRITE_COEF(0x22, 0xa0c0), /* ANC */
2857 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
2858 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
2859 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
2860 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
2861 WRITE_COEF(0x2e, 0x2902), /* PLL */
2862 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
2863 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
2864 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
2865 WRITE_COEF(0x36, 0x0), /* capless control 5 */
2866 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
2867 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
2868 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
2869 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
2870 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
2871 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
2872 WRITE_COEF(0x49, 0x0), /* test mode */
2873 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
2874 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
2875 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
2876 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
2880 static void alc283_restore_default_value(struct hda_codec
*codec
)
2882 alc_process_coef_fw(codec
, alc283_coefs
);
2885 static void alc283_init(struct hda_codec
*codec
)
2887 struct alc_spec
*spec
= codec
->spec
;
2888 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
2891 if (!spec
->gen
.autocfg
.hp_outs
) {
2892 if (spec
->gen
.autocfg
.line_out_type
== AC_JACK_HP_OUT
)
2893 hp_pin
= spec
->gen
.autocfg
.line_out_pins
[0];
2896 alc283_restore_default_value(codec
);
2902 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
2904 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
2905 /* Headphone capless set to high power mode */
2906 alc_write_coef_idx(codec
, 0x43, 0x9004);
2908 snd_hda_codec_write(codec
, hp_pin
, 0,
2909 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
2914 snd_hda_codec_write(codec
, hp_pin
, 0,
2915 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
2919 /* Index 0x46 Combo jack auto switch control 2 */
2920 /* 3k pull low control for Headset jack. */
2921 alc_update_coef_idx(codec
, 0x46, 3 << 12, 0);
2922 /* Headphone capless set to normal mode */
2923 alc_write_coef_idx(codec
, 0x43, 0x9614);
2926 static void alc283_shutup(struct hda_codec
*codec
)
2928 struct alc_spec
*spec
= codec
->spec
;
2929 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
2932 if (!spec
->gen
.autocfg
.hp_outs
) {
2933 if (spec
->gen
.autocfg
.line_out_type
== AC_JACK_HP_OUT
)
2934 hp_pin
= spec
->gen
.autocfg
.line_out_pins
[0];
2938 alc269_shutup(codec
);
2942 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
2944 alc_write_coef_idx(codec
, 0x43, 0x9004);
2946 /*depop hp during suspend*/
2947 alc_write_coef_idx(codec
, 0x06, 0x2100);
2949 snd_hda_codec_write(codec
, hp_pin
, 0,
2950 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
2955 snd_hda_codec_write(codec
, hp_pin
, 0,
2956 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
2958 alc_update_coef_idx(codec
, 0x46, 0, 3 << 12);
2962 alc_auto_setup_eapd(codec
, false);
2963 snd_hda_shutup_pins(codec
);
2964 alc_write_coef_idx(codec
, 0x43, 0x9614);
2967 static void alc5505_coef_set(struct hda_codec
*codec
, unsigned int index_reg
,
2970 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_COEF_INDEX
, index_reg
>> 1);
2971 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_PROC_COEF
, val
& 0xffff); /* LSB */
2972 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_PROC_COEF
, val
>> 16); /* MSB */
2975 static int alc5505_coef_get(struct hda_codec
*codec
, unsigned int index_reg
)
2979 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_COEF_INDEX
, index_reg
>> 1);
2980 val
= snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_GET_PROC_COEF
, 0)
2982 val
|= snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_GET_PROC_COEF
, 0)
2987 static void alc5505_dsp_halt(struct hda_codec
*codec
)
2991 alc5505_coef_set(codec
, 0x3000, 0x000c); /* DSP CPU stop */
2992 alc5505_coef_set(codec
, 0x880c, 0x0008); /* DDR enter self refresh */
2993 alc5505_coef_set(codec
, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
2994 alc5505_coef_set(codec
, 0x6230, 0xfc0d4011); /* Disable Input OP */
2995 alc5505_coef_set(codec
, 0x61b4, 0x040a2b03); /* Stop PLL2 */
2996 alc5505_coef_set(codec
, 0x61b0, 0x00005b17); /* Stop PLL1 */
2997 alc5505_coef_set(codec
, 0x61b8, 0x04133303); /* Stop PLL3 */
2998 val
= alc5505_coef_get(codec
, 0x6220);
2999 alc5505_coef_set(codec
, 0x6220, (val
| 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3002 static void alc5505_dsp_back_from_halt(struct hda_codec
*codec
)
3004 alc5505_coef_set(codec
, 0x61b8, 0x04133302);
3005 alc5505_coef_set(codec
, 0x61b0, 0x00005b16);
3006 alc5505_coef_set(codec
, 0x61b4, 0x040a2b02);
3007 alc5505_coef_set(codec
, 0x6230, 0xf80d4011);
3008 alc5505_coef_set(codec
, 0x6220, 0x2002010f);
3009 alc5505_coef_set(codec
, 0x880c, 0x00000004);
3012 static void alc5505_dsp_init(struct hda_codec
*codec
)
3016 alc5505_dsp_halt(codec
);
3017 alc5505_dsp_back_from_halt(codec
);
3018 alc5505_coef_set(codec
, 0x61b0, 0x5b14); /* PLL1 control */
3019 alc5505_coef_set(codec
, 0x61b0, 0x5b16);
3020 alc5505_coef_set(codec
, 0x61b4, 0x04132b00); /* PLL2 control */
3021 alc5505_coef_set(codec
, 0x61b4, 0x04132b02);
3022 alc5505_coef_set(codec
, 0x61b8, 0x041f3300); /* PLL3 control*/
3023 alc5505_coef_set(codec
, 0x61b8, 0x041f3302);
3024 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_CODEC_RESET
, 0); /* Function reset */
3025 alc5505_coef_set(codec
, 0x61b8, 0x041b3302);
3026 alc5505_coef_set(codec
, 0x61b8, 0x04173302);
3027 alc5505_coef_set(codec
, 0x61b8, 0x04163302);
3028 alc5505_coef_set(codec
, 0x8800, 0x348b328b); /* DRAM control */
3029 alc5505_coef_set(codec
, 0x8808, 0x00020022); /* DRAM control */
3030 alc5505_coef_set(codec
, 0x8818, 0x00000400); /* DRAM control */
3032 val
= alc5505_coef_get(codec
, 0x6200) >> 16; /* Read revision ID */
3034 alc5505_coef_set(codec
, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3036 alc5505_coef_set(codec
, 0x6220, 0x6002018f);
3038 alc5505_coef_set(codec
, 0x61ac, 0x055525f0); /**/
3039 alc5505_coef_set(codec
, 0x61c0, 0x12230080); /* Clock control */
3040 alc5505_coef_set(codec
, 0x61b4, 0x040e2b02); /* PLL2 control */
3041 alc5505_coef_set(codec
, 0x61bc, 0x010234f8); /* OSC Control */
3042 alc5505_coef_set(codec
, 0x880c, 0x00000004); /* DRAM Function control */
3043 alc5505_coef_set(codec
, 0x880c, 0x00000003);
3044 alc5505_coef_set(codec
, 0x880c, 0x00000010);
3046 #ifdef HALT_REALTEK_ALC5505
3047 alc5505_dsp_halt(codec
);
3051 #ifdef HALT_REALTEK_ALC5505
3052 #define alc5505_dsp_suspend(codec) /* NOP */
3053 #define alc5505_dsp_resume(codec) /* NOP */
3055 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
3056 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
3060 static int alc269_suspend(struct hda_codec
*codec
)
3062 struct alc_spec
*spec
= codec
->spec
;
3064 if (spec
->has_alc5505_dsp
)
3065 alc5505_dsp_suspend(codec
);
3066 return alc_suspend(codec
);
3069 static int alc269_resume(struct hda_codec
*codec
)
3071 struct alc_spec
*spec
= codec
->spec
;
3073 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
3074 alc269vb_toggle_power_output(codec
, 0);
3075 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
3076 (alc_get_coef0(codec
) & 0x00ff) == 0x018) {
3080 codec
->patch_ops
.init(codec
);
3082 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
3083 alc269vb_toggle_power_output(codec
, 1);
3084 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
3085 (alc_get_coef0(codec
) & 0x00ff) == 0x017) {
3089 regcache_sync(codec
->core
.regmap
);
3090 hda_call_check_power_status(codec
, 0x01);
3092 /* on some machine, the BIOS will clear the codec gpio data when enter
3093 * suspend, and won't restore the data after resume, so we restore it
3097 snd_hda_codec_write(codec
, codec
->core
.afg
, 0, AC_VERB_SET_GPIO_DATA
,
3100 if (spec
->has_alc5505_dsp
)
3101 alc5505_dsp_resume(codec
);
3105 #endif /* CONFIG_PM */
3107 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec
*codec
,
3108 const struct hda_fixup
*fix
, int action
)
3110 struct alc_spec
*spec
= codec
->spec
;
3112 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
3113 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
3116 static void alc269_fixup_hweq(struct hda_codec
*codec
,
3117 const struct hda_fixup
*fix
, int action
)
3119 if (action
== HDA_FIXUP_ACT_INIT
)
3120 alc_update_coef_idx(codec
, 0x1e, 0, 0x80);
3123 static void alc269_fixup_headset_mic(struct hda_codec
*codec
,
3124 const struct hda_fixup
*fix
, int action
)
3126 struct alc_spec
*spec
= codec
->spec
;
3128 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
3129 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
3132 static void alc271_fixup_dmic(struct hda_codec
*codec
,
3133 const struct hda_fixup
*fix
, int action
)
3135 static const struct hda_verb verbs
[] = {
3136 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0d},
3137 {0x20, AC_VERB_SET_PROC_COEF
, 0x4000},
3142 if (strcmp(codec
->core
.chip_name
, "ALC271X") &&
3143 strcmp(codec
->core
.chip_name
, "ALC269VB"))
3145 cfg
= snd_hda_codec_get_pincfg(codec
, 0x12);
3146 if (get_defcfg_connect(cfg
) == AC_JACK_PORT_FIXED
)
3147 snd_hda_sequence_write(codec
, verbs
);
3150 static void alc269_fixup_pcm_44k(struct hda_codec
*codec
,
3151 const struct hda_fixup
*fix
, int action
)
3153 struct alc_spec
*spec
= codec
->spec
;
3155 if (action
!= HDA_FIXUP_ACT_PROBE
)
3158 /* Due to a hardware problem on Lenovo Ideadpad, we need to
3159 * fix the sample rate of analog I/O to 44.1kHz
3161 spec
->gen
.stream_analog_playback
= &alc269_44k_pcm_analog_playback
;
3162 spec
->gen
.stream_analog_capture
= &alc269_44k_pcm_analog_capture
;
3165 static void alc269_fixup_stereo_dmic(struct hda_codec
*codec
,
3166 const struct hda_fixup
*fix
, int action
)
3168 /* The digital-mic unit sends PDM (differential signal) instead of
3169 * the standard PCM, thus you can't record a valid mono stream as is.
3170 * Below is a workaround specific to ALC269 to control the dmic
3171 * signal source as mono.
3173 if (action
== HDA_FIXUP_ACT_INIT
)
3174 alc_update_coef_idx(codec
, 0x07, 0, 0x80);
3177 static void alc269_quanta_automute(struct hda_codec
*codec
)
3179 snd_hda_gen_update_outputs(codec
);
3181 alc_write_coef_idx(codec
, 0x0c, 0x680);
3182 alc_write_coef_idx(codec
, 0x0c, 0x480);
3185 static void alc269_fixup_quanta_mute(struct hda_codec
*codec
,
3186 const struct hda_fixup
*fix
, int action
)
3188 struct alc_spec
*spec
= codec
->spec
;
3189 if (action
!= HDA_FIXUP_ACT_PROBE
)
3191 spec
->gen
.automute_hook
= alc269_quanta_automute
;
3194 static void alc269_x101_hp_automute_hook(struct hda_codec
*codec
,
3195 struct hda_jack_callback
*jack
)
3197 struct alc_spec
*spec
= codec
->spec
;
3200 snd_hda_gen_hp_automute(codec
, jack
);
3202 vref
= spec
->gen
.hp_jack_present
? PIN_VREF80
: 0;
3204 snd_hda_codec_write(codec
, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
3207 snd_hda_codec_write(codec
, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
3211 static void alc269_fixup_x101_headset_mic(struct hda_codec
*codec
,
3212 const struct hda_fixup
*fix
, int action
)
3214 struct alc_spec
*spec
= codec
->spec
;
3215 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3216 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
3217 spec
->gen
.hp_automute_hook
= alc269_x101_hp_automute_hook
;
3222 /* update mute-LED according to the speaker mute state via mic VREF pin */
3223 static void alc269_fixup_mic_mute_hook(void *private_data
, int enabled
)
3225 struct hda_codec
*codec
= private_data
;
3226 struct alc_spec
*spec
= codec
->spec
;
3227 unsigned int pinval
;
3229 if (spec
->mute_led_polarity
)
3231 pinval
= snd_hda_codec_get_pin_target(codec
, spec
->mute_led_nid
);
3232 pinval
&= ~AC_PINCTL_VREFEN
;
3233 pinval
|= enabled
? AC_PINCTL_VREF_HIZ
: AC_PINCTL_VREF_80
;
3234 if (spec
->mute_led_nid
)
3235 snd_hda_set_pin_ctl_cache(codec
, spec
->mute_led_nid
, pinval
);
3238 /* Make sure the led works even in runtime suspend */
3239 static unsigned int led_power_filter(struct hda_codec
*codec
,
3241 unsigned int power_state
)
3243 struct alc_spec
*spec
= codec
->spec
;
3245 if (power_state
!= AC_PWRST_D3
|| nid
== 0 ||
3246 (nid
!= spec
->mute_led_nid
&& nid
!= spec
->cap_mute_led_nid
))
3249 /* Set pin ctl again, it might have just been set to 0 */
3250 snd_hda_set_pin_ctl(codec
, nid
,
3251 snd_hda_codec_get_pin_target(codec
, nid
));
3253 return snd_hda_gen_path_power_filter(codec
, nid
, power_state
);
3256 static void alc269_fixup_hp_mute_led(struct hda_codec
*codec
,
3257 const struct hda_fixup
*fix
, int action
)
3259 struct alc_spec
*spec
= codec
->spec
;
3260 const struct dmi_device
*dev
= NULL
;
3262 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
3265 while ((dev
= dmi_find_device(DMI_DEV_TYPE_OEM_STRING
, NULL
, dev
))) {
3267 if (sscanf(dev
->name
, "HP_Mute_LED_%d_%x", &pol
, &pin
) != 2)
3269 if (pin
< 0x0a || pin
>= 0x10)
3271 spec
->mute_led_polarity
= pol
;
3272 spec
->mute_led_nid
= pin
- 0x0a + 0x18;
3273 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3274 spec
->gen
.vmaster_mute_enum
= 1;
3275 codec
->power_filter
= led_power_filter
;
3277 "Detected mute LED for %x:%d\n", spec
->mute_led_nid
,
3278 spec
->mute_led_polarity
);
3283 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec
*codec
,
3284 const struct hda_fixup
*fix
, int action
)
3286 struct alc_spec
*spec
= codec
->spec
;
3287 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3288 spec
->mute_led_polarity
= 0;
3289 spec
->mute_led_nid
= 0x18;
3290 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3291 spec
->gen
.vmaster_mute_enum
= 1;
3292 codec
->power_filter
= led_power_filter
;
3296 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec
*codec
,
3297 const struct hda_fixup
*fix
, int action
)
3299 struct alc_spec
*spec
= codec
->spec
;
3300 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3301 spec
->mute_led_polarity
= 0;
3302 spec
->mute_led_nid
= 0x19;
3303 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3304 spec
->gen
.vmaster_mute_enum
= 1;
3305 codec
->power_filter
= led_power_filter
;
3309 /* update LED status via GPIO */
3310 static void alc_update_gpio_led(struct hda_codec
*codec
, unsigned int mask
,
3313 struct alc_spec
*spec
= codec
->spec
;
3314 unsigned int oldval
= spec
->gpio_led
;
3316 if (spec
->mute_led_polarity
)
3320 spec
->gpio_led
&= ~mask
;
3322 spec
->gpio_led
|= mask
;
3323 if (spec
->gpio_led
!= oldval
)
3324 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
3328 /* turn on/off mute LED via GPIO per vmaster hook */
3329 static void alc_fixup_gpio_mute_hook(void *private_data
, int enabled
)
3331 struct hda_codec
*codec
= private_data
;
3332 struct alc_spec
*spec
= codec
->spec
;
3334 alc_update_gpio_led(codec
, spec
->gpio_mute_led_mask
, enabled
);
3337 /* turn on/off mic-mute LED via GPIO per capture hook */
3338 static void alc_fixup_gpio_mic_mute_hook(struct hda_codec
*codec
,
3339 struct snd_kcontrol
*kcontrol
,
3340 struct snd_ctl_elem_value
*ucontrol
)
3342 struct alc_spec
*spec
= codec
->spec
;
3345 alc_update_gpio_led(codec
, spec
->gpio_mic_led_mask
,
3346 ucontrol
->value
.integer
.value
[0] ||
3347 ucontrol
->value
.integer
.value
[1]);
3350 static void alc269_fixup_hp_gpio_led(struct hda_codec
*codec
,
3351 const struct hda_fixup
*fix
, int action
)
3353 struct alc_spec
*spec
= codec
->spec
;
3354 static const struct hda_verb gpio_init
[] = {
3355 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x18 },
3356 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x18 },
3360 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3361 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
3362 spec
->gen
.cap_sync_hook
= alc_fixup_gpio_mic_mute_hook
;
3364 spec
->mute_led_polarity
= 0;
3365 spec
->gpio_mute_led_mask
= 0x08;
3366 spec
->gpio_mic_led_mask
= 0x10;
3367 snd_hda_add_verbs(codec
, gpio_init
);
3371 static void alc286_fixup_hp_gpio_led(struct hda_codec
*codec
,
3372 const struct hda_fixup
*fix
, int action
)
3374 struct alc_spec
*spec
= codec
->spec
;
3375 static const struct hda_verb gpio_init
[] = {
3376 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x22 },
3377 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x22 },
3381 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3382 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
3383 spec
->gen
.cap_sync_hook
= alc_fixup_gpio_mic_mute_hook
;
3385 spec
->mute_led_polarity
= 0;
3386 spec
->gpio_mute_led_mask
= 0x02;
3387 spec
->gpio_mic_led_mask
= 0x20;
3388 snd_hda_add_verbs(codec
, gpio_init
);
3392 /* turn on/off mic-mute LED per capture hook */
3393 static void alc269_fixup_hp_cap_mic_mute_hook(struct hda_codec
*codec
,
3394 struct snd_kcontrol
*kcontrol
,
3395 struct snd_ctl_elem_value
*ucontrol
)
3397 struct alc_spec
*spec
= codec
->spec
;
3398 unsigned int pinval
, enable
, disable
;
3400 pinval
= snd_hda_codec_get_pin_target(codec
, spec
->cap_mute_led_nid
);
3401 pinval
&= ~AC_PINCTL_VREFEN
;
3402 enable
= pinval
| AC_PINCTL_VREF_80
;
3403 disable
= pinval
| AC_PINCTL_VREF_HIZ
;
3408 if (ucontrol
->value
.integer
.value
[0] ||
3409 ucontrol
->value
.integer
.value
[1])
3414 if (spec
->cap_mute_led_nid
)
3415 snd_hda_set_pin_ctl_cache(codec
, spec
->cap_mute_led_nid
, pinval
);
3418 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec
*codec
,
3419 const struct hda_fixup
*fix
, int action
)
3421 struct alc_spec
*spec
= codec
->spec
;
3422 static const struct hda_verb gpio_init
[] = {
3423 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x08 },
3424 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x08 },
3428 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3429 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
3430 spec
->gen
.cap_sync_hook
= alc269_fixup_hp_cap_mic_mute_hook
;
3432 spec
->mute_led_polarity
= 0;
3433 spec
->gpio_mute_led_mask
= 0x08;
3434 spec
->cap_mute_led_nid
= 0x18;
3435 snd_hda_add_verbs(codec
, gpio_init
);
3436 codec
->power_filter
= led_power_filter
;
3440 static void alc280_fixup_hp_gpio4(struct hda_codec
*codec
,
3441 const struct hda_fixup
*fix
, int action
)
3443 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to enable headphone amp */
3444 struct alc_spec
*spec
= codec
->spec
;
3445 static const struct hda_verb gpio_init
[] = {
3446 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x18 },
3447 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x18 },
3451 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3452 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
3453 spec
->gen
.cap_sync_hook
= alc269_fixup_hp_cap_mic_mute_hook
;
3455 spec
->mute_led_polarity
= 0;
3456 spec
->gpio_mute_led_mask
= 0x08;
3457 spec
->cap_mute_led_nid
= 0x18;
3458 snd_hda_add_verbs(codec
, gpio_init
);
3459 codec
->power_filter
= led_power_filter
;
3463 static void gpio2_mic_hotkey_event(struct hda_codec
*codec
,
3464 struct hda_jack_callback
*event
)
3466 struct alc_spec
*spec
= codec
->spec
;
3468 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
3469 send both key on and key off event for every interrupt. */
3470 input_report_key(spec
->kb_dev
, spec
->alc_mute_keycode_map
[ALC_KEY_MICMUTE_INDEX
], 1);
3471 input_sync(spec
->kb_dev
);
3472 input_report_key(spec
->kb_dev
, spec
->alc_mute_keycode_map
[ALC_KEY_MICMUTE_INDEX
], 0);
3473 input_sync(spec
->kb_dev
);
3476 static int alc_register_micmute_input_device(struct hda_codec
*codec
)
3478 struct alc_spec
*spec
= codec
->spec
;
3481 spec
->kb_dev
= input_allocate_device();
3482 if (!spec
->kb_dev
) {
3483 codec_err(codec
, "Out of memory (input_allocate_device)\n");
3487 spec
->alc_mute_keycode_map
[ALC_KEY_MICMUTE_INDEX
] = KEY_MICMUTE
;
3489 spec
->kb_dev
->name
= "Microphone Mute Button";
3490 spec
->kb_dev
->evbit
[0] = BIT_MASK(EV_KEY
);
3491 spec
->kb_dev
->keycodesize
= sizeof(spec
->alc_mute_keycode_map
[0]);
3492 spec
->kb_dev
->keycodemax
= ARRAY_SIZE(spec
->alc_mute_keycode_map
);
3493 spec
->kb_dev
->keycode
= spec
->alc_mute_keycode_map
;
3494 for (i
= 0; i
< ARRAY_SIZE(spec
->alc_mute_keycode_map
); i
++)
3495 set_bit(spec
->alc_mute_keycode_map
[i
], spec
->kb_dev
->keybit
);
3497 if (input_register_device(spec
->kb_dev
)) {
3498 codec_err(codec
, "input_register_device failed\n");
3499 input_free_device(spec
->kb_dev
);
3500 spec
->kb_dev
= NULL
;
3507 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec
*codec
,
3508 const struct hda_fixup
*fix
, int action
)
3510 /* GPIO1 = set according to SKU external amp
3511 GPIO2 = mic mute hotkey
3513 GPIO4 = mic mute LED */
3514 static const struct hda_verb gpio_init
[] = {
3515 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x1e },
3516 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x1a },
3517 { 0x01, AC_VERB_SET_GPIO_DATA
, 0x02 },
3521 struct alc_spec
*spec
= codec
->spec
;
3523 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3524 if (alc_register_micmute_input_device(codec
) != 0)
3527 snd_hda_add_verbs(codec
, gpio_init
);
3528 snd_hda_codec_write_cache(codec
, codec
->core
.afg
, 0,
3529 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK
, 0x04);
3530 snd_hda_jack_detect_enable_callback(codec
, codec
->core
.afg
,
3531 gpio2_mic_hotkey_event
);
3533 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
3534 spec
->gen
.cap_sync_hook
= alc_fixup_gpio_mic_mute_hook
;
3536 spec
->mute_led_polarity
= 0;
3537 spec
->gpio_mute_led_mask
= 0x08;
3538 spec
->gpio_mic_led_mask
= 0x10;
3546 case HDA_FIXUP_ACT_PROBE
:
3547 spec
->init_amp
= ALC_INIT_DEFAULT
;
3549 case HDA_FIXUP_ACT_FREE
:
3550 input_unregister_device(spec
->kb_dev
);
3551 spec
->kb_dev
= NULL
;
3555 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec
*codec
,
3556 const struct hda_fixup
*fix
, int action
)
3558 /* Line2 = mic mute hotkey
3559 GPIO2 = mic mute LED */
3560 static const struct hda_verb gpio_init
[] = {
3561 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x04 },
3562 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x04 },
3566 struct alc_spec
*spec
= codec
->spec
;
3568 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3569 if (alc_register_micmute_input_device(codec
) != 0)
3572 snd_hda_add_verbs(codec
, gpio_init
);
3573 snd_hda_jack_detect_enable_callback(codec
, 0x1b,
3574 gpio2_mic_hotkey_event
);
3576 spec
->gen
.cap_sync_hook
= alc_fixup_gpio_mic_mute_hook
;
3578 spec
->mute_led_polarity
= 0;
3579 spec
->gpio_mic_led_mask
= 0x04;
3587 case HDA_FIXUP_ACT_PROBE
:
3588 spec
->init_amp
= ALC_INIT_DEFAULT
;
3590 case HDA_FIXUP_ACT_FREE
:
3591 input_unregister_device(spec
->kb_dev
);
3592 spec
->kb_dev
= NULL
;
3596 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec
*codec
,
3597 const struct hda_fixup
*fix
, int action
)
3599 struct alc_spec
*spec
= codec
->spec
;
3601 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3602 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3603 spec
->gen
.cap_sync_hook
= alc269_fixup_hp_cap_mic_mute_hook
;
3604 spec
->mute_led_polarity
= 0;
3605 spec
->mute_led_nid
= 0x1a;
3606 spec
->cap_mute_led_nid
= 0x18;
3607 spec
->gen
.vmaster_mute_enum
= 1;
3608 codec
->power_filter
= led_power_filter
;
3612 static void alc_headset_mode_unplugged(struct hda_codec
*codec
)
3614 static struct coef_fw coef0255
[] = {
3615 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
3616 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
3617 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
3618 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
3619 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
3622 static struct coef_fw coef0233
[] = {
3623 WRITE_COEF(0x1b, 0x0c0b),
3624 WRITE_COEF(0x45, 0xc429),
3625 UPDATE_COEF(0x35, 0x4000, 0),
3626 WRITE_COEF(0x06, 0x2104),
3627 WRITE_COEF(0x1a, 0x0001),
3628 WRITE_COEF(0x26, 0x0004),
3629 WRITE_COEF(0x32, 0x42a3),
3632 static struct coef_fw coef0288
[] = {
3633 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
3634 UPDATE_COEF(0x50, 0x2000, 0x2000),
3635 UPDATE_COEF(0x56, 0x0006, 0x0006),
3636 UPDATE_COEF(0x66, 0x0008, 0),
3637 UPDATE_COEF(0x67, 0x2000, 0),
3640 static struct coef_fw coef0292
[] = {
3641 WRITE_COEF(0x76, 0x000e),
3642 WRITE_COEF(0x6c, 0x2400),
3643 WRITE_COEF(0x18, 0x7308),
3644 WRITE_COEF(0x6b, 0xc429),
3647 static struct coef_fw coef0293
[] = {
3648 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
3649 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
3650 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
3651 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
3652 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
3653 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
3656 static struct coef_fw coef0668
[] = {
3657 WRITE_COEF(0x15, 0x0d40),
3658 WRITE_COEF(0xb7, 0x802b),
3662 switch (codec
->core
.vendor_id
) {
3665 alc_process_coef_fw(codec
, coef0255
);
3669 alc_process_coef_fw(codec
, coef0233
);
3674 alc_process_coef_fw(codec
, coef0288
);
3677 alc_process_coef_fw(codec
, coef0292
);
3680 alc_process_coef_fw(codec
, coef0293
);
3683 alc_process_coef_fw(codec
, coef0668
);
3686 codec_dbg(codec
, "Headset jack set to unplugged mode.\n");
3690 static void alc_headset_mode_mic_in(struct hda_codec
*codec
, hda_nid_t hp_pin
,
3693 static struct coef_fw coef0255
[] = {
3694 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
3695 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
3698 static struct coef_fw coef0233
[] = {
3699 UPDATE_COEF(0x35, 0, 1<<14),
3700 WRITE_COEF(0x06, 0x2100),
3701 WRITE_COEF(0x1a, 0x0021),
3702 WRITE_COEF(0x26, 0x008c),
3705 static struct coef_fw coef0288
[] = {
3706 UPDATE_COEF(0x50, 0x2000, 0),
3707 UPDATE_COEF(0x56, 0x0006, 0),
3708 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
3709 UPDATE_COEF(0x66, 0x0008, 0x0008),
3710 UPDATE_COEF(0x67, 0x2000, 0x2000),
3713 static struct coef_fw coef0292
[] = {
3714 WRITE_COEF(0x19, 0xa208),
3715 WRITE_COEF(0x2e, 0xacf0),
3718 static struct coef_fw coef0293
[] = {
3719 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
3720 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
3721 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
3724 static struct coef_fw coef0688
[] = {
3725 WRITE_COEF(0xb7, 0x802b),
3726 WRITE_COEF(0xb5, 0x1040),
3727 UPDATE_COEF(0xc3, 0, 1<<12),
3731 switch (codec
->core
.vendor_id
) {
3734 alc_write_coef_idx(codec
, 0x45, 0xc489);
3735 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3736 alc_process_coef_fw(codec
, coef0255
);
3737 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3741 alc_write_coef_idx(codec
, 0x45, 0xc429);
3742 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3743 alc_process_coef_fw(codec
, coef0233
);
3744 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3749 alc_update_coef_idx(codec
, 0x4f, 0x000c, 0);
3750 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3751 alc_process_coef_fw(codec
, coef0288
);
3752 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3755 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3756 alc_process_coef_fw(codec
, coef0292
);
3759 /* Set to TRS mode */
3760 alc_write_coef_idx(codec
, 0x45, 0xc429);
3761 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3762 alc_process_coef_fw(codec
, coef0293
);
3763 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3766 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3767 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3770 alc_write_coef_idx(codec
, 0x11, 0x0001);
3771 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3772 alc_process_coef_fw(codec
, coef0688
);
3773 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3776 codec_dbg(codec
, "Headset jack set to mic-in mode.\n");
3779 static void alc_headset_mode_default(struct hda_codec
*codec
)
3781 static struct coef_fw coef0255
[] = {
3782 WRITE_COEF(0x45, 0xc089),
3783 WRITE_COEF(0x45, 0xc489),
3784 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
3785 WRITE_COEF(0x49, 0x0049),
3788 static struct coef_fw coef0233
[] = {
3789 WRITE_COEF(0x06, 0x2100),
3790 WRITE_COEF(0x32, 0x4ea3),
3793 static struct coef_fw coef0288
[] = {
3794 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
3795 UPDATE_COEF(0x50, 0x2000, 0x2000),
3796 UPDATE_COEF(0x56, 0x0006, 0x0006),
3797 UPDATE_COEF(0x66, 0x0008, 0),
3798 UPDATE_COEF(0x67, 0x2000, 0),
3801 static struct coef_fw coef0292
[] = {
3802 WRITE_COEF(0x76, 0x000e),
3803 WRITE_COEF(0x6c, 0x2400),
3804 WRITE_COEF(0x6b, 0xc429),
3805 WRITE_COEF(0x18, 0x7308),
3808 static struct coef_fw coef0293
[] = {
3809 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
3810 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
3811 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
3814 static struct coef_fw coef0688
[] = {
3815 WRITE_COEF(0x11, 0x0041),
3816 WRITE_COEF(0x15, 0x0d40),
3817 WRITE_COEF(0xb7, 0x802b),
3821 switch (codec
->core
.vendor_id
) {
3824 alc_process_coef_fw(codec
, coef0255
);
3828 alc_process_coef_fw(codec
, coef0233
);
3833 alc_process_coef_fw(codec
, coef0288
);
3836 alc_process_coef_fw(codec
, coef0292
);
3839 alc_process_coef_fw(codec
, coef0293
);
3842 alc_process_coef_fw(codec
, coef0688
);
3845 codec_dbg(codec
, "Headset jack set to headphone (default) mode.\n");
3849 static void alc_headset_mode_ctia(struct hda_codec
*codec
)
3851 static struct coef_fw coef0255
[] = {
3852 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
3853 WRITE_COEF(0x1b, 0x0c2b),
3854 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
3857 static struct coef_fw coef0233
[] = {
3858 WRITE_COEF(0x45, 0xd429),
3859 WRITE_COEF(0x1b, 0x0c2b),
3860 WRITE_COEF(0x32, 0x4ea3),
3863 static struct coef_fw coef0288
[] = {
3864 UPDATE_COEF(0x50, 0x2000, 0x2000),
3865 UPDATE_COEF(0x56, 0x0006, 0x0006),
3866 UPDATE_COEF(0x66, 0x0008, 0),
3867 UPDATE_COEF(0x67, 0x2000, 0),
3870 static struct coef_fw coef0292
[] = {
3871 WRITE_COEF(0x6b, 0xd429),
3872 WRITE_COEF(0x76, 0x0008),
3873 WRITE_COEF(0x18, 0x7388),
3876 static struct coef_fw coef0293
[] = {
3877 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
3878 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
3881 static struct coef_fw coef0688
[] = {
3882 WRITE_COEF(0x11, 0x0001),
3883 WRITE_COEF(0x15, 0x0d60),
3884 WRITE_COEF(0xc3, 0x0000),
3888 switch (codec
->core
.vendor_id
) {
3891 alc_process_coef_fw(codec
, coef0255
);
3895 alc_process_coef_fw(codec
, coef0233
);
3898 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0020);/* Headset output enable */
3899 /* ALC298 jack type setting is the same with ALC286/ALC288 */
3902 alc_update_coef_idx(codec
, 0x4f, 0xfcc0, 0xd400);
3904 alc_process_coef_fw(codec
, coef0288
);
3907 alc_process_coef_fw(codec
, coef0292
);
3910 alc_process_coef_fw(codec
, coef0293
);
3913 alc_process_coef_fw(codec
, coef0688
);
3916 codec_dbg(codec
, "Headset jack set to iPhone-style headset mode.\n");
3920 static void alc_headset_mode_omtp(struct hda_codec
*codec
)
3922 static struct coef_fw coef0255
[] = {
3923 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
3924 WRITE_COEF(0x1b, 0x0c2b),
3925 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
3928 static struct coef_fw coef0233
[] = {
3929 WRITE_COEF(0x45, 0xe429),
3930 WRITE_COEF(0x1b, 0x0c2b),
3931 WRITE_COEF(0x32, 0x4ea3),
3934 static struct coef_fw coef0288
[] = {
3935 UPDATE_COEF(0x50, 0x2000, 0x2000),
3936 UPDATE_COEF(0x56, 0x0006, 0x0006),
3937 UPDATE_COEF(0x66, 0x0008, 0),
3938 UPDATE_COEF(0x67, 0x2000, 0),
3941 static struct coef_fw coef0292
[] = {
3942 WRITE_COEF(0x6b, 0xe429),
3943 WRITE_COEF(0x76, 0x0008),
3944 WRITE_COEF(0x18, 0x7388),
3947 static struct coef_fw coef0293
[] = {
3948 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
3949 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
3952 static struct coef_fw coef0688
[] = {
3953 WRITE_COEF(0x11, 0x0001),
3954 WRITE_COEF(0x15, 0x0d50),
3955 WRITE_COEF(0xc3, 0x0000),
3959 switch (codec
->core
.vendor_id
) {
3962 alc_process_coef_fw(codec
, coef0255
);
3966 alc_process_coef_fw(codec
, coef0233
);
3969 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0010);/* Headset output enable */
3970 /* ALC298 jack type setting is the same with ALC286/ALC288 */
3973 alc_update_coef_idx(codec
, 0x4f, 0xfcc0, 0xe400);
3975 alc_process_coef_fw(codec
, coef0288
);
3978 alc_process_coef_fw(codec
, coef0292
);
3981 alc_process_coef_fw(codec
, coef0293
);
3984 alc_process_coef_fw(codec
, coef0688
);
3987 codec_dbg(codec
, "Headset jack set to Nokia-style headset mode.\n");
3990 static void alc_determine_headset_type(struct hda_codec
*codec
)
3993 bool is_ctia
= false;
3994 struct alc_spec
*spec
= codec
->spec
;
3995 static struct coef_fw coef0255
[] = {
3996 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
3997 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
4001 static struct coef_fw coef0288
[] = {
4002 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
4005 static struct coef_fw coef0293
[] = {
4006 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
4007 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
4010 static struct coef_fw coef0688
[] = {
4011 WRITE_COEF(0x11, 0x0001),
4012 WRITE_COEF(0xb7, 0x802b),
4013 WRITE_COEF(0x15, 0x0d60),
4014 WRITE_COEF(0xc3, 0x0c00),
4018 switch (codec
->core
.vendor_id
) {
4021 alc_process_coef_fw(codec
, coef0255
);
4023 val
= alc_read_coef_idx(codec
, 0x46);
4024 is_ctia
= (val
& 0x0070) == 0x0070;
4028 alc_write_coef_idx(codec
, 0x45, 0xd029);
4030 val
= alc_read_coef_idx(codec
, 0x46);
4031 is_ctia
= (val
& 0x0070) == 0x0070;
4034 alc_update_coef_idx(codec
, 0x8e, 0x0070, 0x0020); /* Headset output enable */
4035 /* ALC298 check jack type is the same with ALC286/ALC288 */
4038 alc_process_coef_fw(codec
, coef0288
);
4040 val
= alc_read_coef_idx(codec
, 0x50);
4041 is_ctia
= (val
& 0x0070) == 0x0070;
4044 alc_write_coef_idx(codec
, 0x6b, 0xd429);
4046 val
= alc_read_coef_idx(codec
, 0x6c);
4047 is_ctia
= (val
& 0x001c) == 0x001c;
4050 alc_process_coef_fw(codec
, coef0293
);
4052 val
= alc_read_coef_idx(codec
, 0x46);
4053 is_ctia
= (val
& 0x0070) == 0x0070;
4056 alc_process_coef_fw(codec
, coef0688
);
4058 val
= alc_read_coef_idx(codec
, 0xbe);
4059 is_ctia
= (val
& 0x1c02) == 0x1c02;
4063 codec_dbg(codec
, "Headset jack detected iPhone-style headset: %s\n",
4064 is_ctia
? "yes" : "no");
4065 spec
->current_headset_type
= is_ctia
? ALC_HEADSET_TYPE_CTIA
: ALC_HEADSET_TYPE_OMTP
;
4068 static void alc_update_headset_mode(struct hda_codec
*codec
)
4070 struct alc_spec
*spec
= codec
->spec
;
4072 hda_nid_t mux_pin
= spec
->gen
.imux_pins
[spec
->gen
.cur_mux
[0]];
4073 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
4075 int new_headset_mode
;
4077 if (!snd_hda_jack_detect(codec
, hp_pin
))
4078 new_headset_mode
= ALC_HEADSET_MODE_UNPLUGGED
;
4079 else if (mux_pin
== spec
->headset_mic_pin
)
4080 new_headset_mode
= ALC_HEADSET_MODE_HEADSET
;
4081 else if (mux_pin
== spec
->headphone_mic_pin
)
4082 new_headset_mode
= ALC_HEADSET_MODE_MIC
;
4084 new_headset_mode
= ALC_HEADSET_MODE_HEADPHONE
;
4086 if (new_headset_mode
== spec
->current_headset_mode
) {
4087 snd_hda_gen_update_outputs(codec
);
4091 switch (new_headset_mode
) {
4092 case ALC_HEADSET_MODE_UNPLUGGED
:
4093 alc_headset_mode_unplugged(codec
);
4094 spec
->gen
.hp_jack_present
= false;
4096 case ALC_HEADSET_MODE_HEADSET
:
4097 if (spec
->current_headset_type
== ALC_HEADSET_TYPE_UNKNOWN
)
4098 alc_determine_headset_type(codec
);
4099 if (spec
->current_headset_type
== ALC_HEADSET_TYPE_CTIA
)
4100 alc_headset_mode_ctia(codec
);
4101 else if (spec
->current_headset_type
== ALC_HEADSET_TYPE_OMTP
)
4102 alc_headset_mode_omtp(codec
);
4103 spec
->gen
.hp_jack_present
= true;
4105 case ALC_HEADSET_MODE_MIC
:
4106 alc_headset_mode_mic_in(codec
, hp_pin
, spec
->headphone_mic_pin
);
4107 spec
->gen
.hp_jack_present
= false;
4109 case ALC_HEADSET_MODE_HEADPHONE
:
4110 alc_headset_mode_default(codec
);
4111 spec
->gen
.hp_jack_present
= true;
4114 if (new_headset_mode
!= ALC_HEADSET_MODE_MIC
) {
4115 snd_hda_set_pin_ctl_cache(codec
, hp_pin
,
4116 AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
);
4117 if (spec
->headphone_mic_pin
&& spec
->headphone_mic_pin
!= hp_pin
)
4118 snd_hda_set_pin_ctl_cache(codec
, spec
->headphone_mic_pin
,
4121 spec
->current_headset_mode
= new_headset_mode
;
4123 snd_hda_gen_update_outputs(codec
);
4126 static void alc_update_headset_mode_hook(struct hda_codec
*codec
,
4127 struct snd_kcontrol
*kcontrol
,
4128 struct snd_ctl_elem_value
*ucontrol
)
4130 alc_update_headset_mode(codec
);
4133 static void alc_update_headset_jack_cb(struct hda_codec
*codec
,
4134 struct hda_jack_callback
*jack
)
4136 struct alc_spec
*spec
= codec
->spec
;
4137 spec
->current_headset_type
= ALC_HEADSET_TYPE_UNKNOWN
;
4138 snd_hda_gen_hp_automute(codec
, jack
);
4141 static void alc_probe_headset_mode(struct hda_codec
*codec
)
4144 struct alc_spec
*spec
= codec
->spec
;
4145 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
4148 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
4149 if (cfg
->inputs
[i
].is_headset_mic
&& !spec
->headset_mic_pin
)
4150 spec
->headset_mic_pin
= cfg
->inputs
[i
].pin
;
4151 if (cfg
->inputs
[i
].is_headphone_mic
&& !spec
->headphone_mic_pin
)
4152 spec
->headphone_mic_pin
= cfg
->inputs
[i
].pin
;
4155 spec
->gen
.cap_sync_hook
= alc_update_headset_mode_hook
;
4156 spec
->gen
.automute_hook
= alc_update_headset_mode
;
4157 spec
->gen
.hp_automute_hook
= alc_update_headset_jack_cb
;
4160 static void alc_fixup_headset_mode(struct hda_codec
*codec
,
4161 const struct hda_fixup
*fix
, int action
)
4163 struct alc_spec
*spec
= codec
->spec
;
4166 case HDA_FIXUP_ACT_PRE_PROBE
:
4167 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
| HDA_PINCFG_HEADPHONE_MIC
;
4169 case HDA_FIXUP_ACT_PROBE
:
4170 alc_probe_headset_mode(codec
);
4172 case HDA_FIXUP_ACT_INIT
:
4173 spec
->current_headset_mode
= 0;
4174 alc_update_headset_mode(codec
);
4179 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec
*codec
,
4180 const struct hda_fixup
*fix
, int action
)
4182 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4183 struct alc_spec
*spec
= codec
->spec
;
4184 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
4187 alc_fixup_headset_mode(codec
, fix
, action
);
4190 static void alc255_set_default_jack_type(struct hda_codec
*codec
)
4192 /* Set to iphone type */
4193 static struct coef_fw fw
[] = {
4194 WRITE_COEF(0x1b, 0x880b),
4195 WRITE_COEF(0x45, 0xd089),
4196 WRITE_COEF(0x1b, 0x080b),
4197 WRITE_COEF(0x46, 0x0004),
4198 WRITE_COEF(0x1b, 0x0c0b),
4201 alc_process_coef_fw(codec
, fw
);
4205 static void alc_fixup_headset_mode_alc255(struct hda_codec
*codec
,
4206 const struct hda_fixup
*fix
, int action
)
4208 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4209 alc255_set_default_jack_type(codec
);
4211 alc_fixup_headset_mode(codec
, fix
, action
);
4214 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec
*codec
,
4215 const struct hda_fixup
*fix
, int action
)
4217 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4218 struct alc_spec
*spec
= codec
->spec
;
4219 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
4220 alc255_set_default_jack_type(codec
);
4223 alc_fixup_headset_mode(codec
, fix
, action
);
4226 static void alc288_update_headset_jack_cb(struct hda_codec
*codec
,
4227 struct hda_jack_callback
*jack
)
4229 struct alc_spec
*spec
= codec
->spec
;
4232 alc_update_headset_jack_cb(codec
, jack
);
4233 /* Headset Mic enable or disable, only for Dell Dino */
4234 present
= spec
->gen
.hp_jack_present
? 0x40 : 0;
4235 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
4239 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec
*codec
,
4240 const struct hda_fixup
*fix
, int action
)
4242 alc_fixup_headset_mode(codec
, fix
, action
);
4243 if (action
== HDA_FIXUP_ACT_PROBE
) {
4244 struct alc_spec
*spec
= codec
->spec
;
4245 spec
->gen
.hp_automute_hook
= alc288_update_headset_jack_cb
;
4249 static void alc_fixup_auto_mute_via_amp(struct hda_codec
*codec
,
4250 const struct hda_fixup
*fix
, int action
)
4252 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4253 struct alc_spec
*spec
= codec
->spec
;
4254 spec
->gen
.auto_mute_via_amp
= 1;
4258 static void alc_no_shutup(struct hda_codec
*codec
)
4262 static void alc_fixup_no_shutup(struct hda_codec
*codec
,
4263 const struct hda_fixup
*fix
, int action
)
4265 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4266 struct alc_spec
*spec
= codec
->spec
;
4267 spec
->shutup
= alc_no_shutup
;
4271 static void alc_fixup_disable_aamix(struct hda_codec
*codec
,
4272 const struct hda_fixup
*fix
, int action
)
4274 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4275 struct alc_spec
*spec
= codec
->spec
;
4276 /* Disable AA-loopback as it causes white noise */
4277 spec
->gen
.mixer_nid
= 0;
4281 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
4282 static void alc_fixup_tpt440_dock(struct hda_codec
*codec
,
4283 const struct hda_fixup
*fix
, int action
)
4285 static const struct hda_pintbl pincfgs
[] = {
4286 { 0x16, 0x21211010 }, /* dock headphone */
4287 { 0x19, 0x21a11010 }, /* dock mic */
4290 struct alc_spec
*spec
= codec
->spec
;
4292 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4293 spec
->shutup
= alc_no_shutup
; /* reduce click noise */
4294 spec
->reboot_notify
= alc_d3_at_reboot
; /* reduce noise */
4295 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
4296 codec
->power_save_node
= 0; /* avoid click noises */
4297 snd_hda_apply_pincfgs(codec
, pincfgs
);
4301 static void alc_shutup_dell_xps13(struct hda_codec
*codec
)
4303 struct alc_spec
*spec
= codec
->spec
;
4304 int hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
4306 /* Prevent pop noises when headphones are plugged in */
4307 snd_hda_codec_write(codec
, hp_pin
, 0,
4308 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
4312 static void alc_fixup_dell_xps13(struct hda_codec
*codec
,
4313 const struct hda_fixup
*fix
, int action
)
4315 struct alc_spec
*spec
= codec
->spec
;
4316 struct hda_input_mux
*imux
= &spec
->gen
.input_mux
;
4320 case HDA_FIXUP_ACT_PRE_PROBE
:
4321 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
4322 * it causes a click noise at start up
4324 snd_hda_codec_set_pin_target(codec
, 0x19, PIN_VREFHIZ
);
4326 case HDA_FIXUP_ACT_PROBE
:
4327 spec
->shutup
= alc_shutup_dell_xps13
;
4329 /* Make the internal mic the default input source. */
4330 for (i
= 0; i
< imux
->num_items
; i
++) {
4331 if (spec
->gen
.imux_pins
[i
] == 0x12) {
4332 spec
->gen
.cur_mux
[0] = i
;
4340 static void alc_fixup_headset_mode_alc662(struct hda_codec
*codec
,
4341 const struct hda_fixup
*fix
, int action
)
4343 struct alc_spec
*spec
= codec
->spec
;
4345 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4346 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
4347 spec
->gen
.hp_mic
= 1; /* Mic-in is same pin as headphone */
4349 /* Disable boost for mic-in permanently. (This code is only called
4350 from quirks that guarantee that the headphone is at NID 0x1b.) */
4351 snd_hda_codec_write(codec
, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000);
4352 snd_hda_override_wcaps(codec
, 0x1b, get_wcaps(codec
, 0x1b) & ~AC_WCAP_IN_AMP
);
4354 alc_fixup_headset_mode(codec
, fix
, action
);
4357 static void alc_fixup_headset_mode_alc668(struct hda_codec
*codec
,
4358 const struct hda_fixup
*fix
, int action
)
4360 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4361 alc_write_coef_idx(codec
, 0xc4, 0x8000);
4362 alc_update_coef_idx(codec
, 0xc2, ~0xfe, 0);
4363 snd_hda_set_pin_ctl_cache(codec
, 0x18, 0);
4365 alc_fixup_headset_mode(codec
, fix
, action
);
4368 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
4369 static int find_ext_mic_pin(struct hda_codec
*codec
)
4371 struct alc_spec
*spec
= codec
->spec
;
4372 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
4374 unsigned int defcfg
;
4377 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
4378 if (cfg
->inputs
[i
].type
!= AUTO_PIN_MIC
)
4380 nid
= cfg
->inputs
[i
].pin
;
4381 defcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
4382 if (snd_hda_get_input_pin_attr(defcfg
) == INPUT_PIN_ATTR_INT
)
4390 static void alc271_hp_gate_mic_jack(struct hda_codec
*codec
,
4391 const struct hda_fixup
*fix
,
4394 struct alc_spec
*spec
= codec
->spec
;
4396 if (action
== HDA_FIXUP_ACT_PROBE
) {
4397 int mic_pin
= find_ext_mic_pin(codec
);
4398 int hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
4400 if (snd_BUG_ON(!mic_pin
|| !hp_pin
))
4402 snd_hda_jack_set_gating_jack(codec
, mic_pin
, hp_pin
);
4406 static void alc269_fixup_limit_int_mic_boost(struct hda_codec
*codec
,
4407 const struct hda_fixup
*fix
,
4410 struct alc_spec
*spec
= codec
->spec
;
4411 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
4414 /* The mic boosts on level 2 and 3 are too noisy
4415 on the internal mic input.
4416 Therefore limit the boost to 0 or 1. */
4418 if (action
!= HDA_FIXUP_ACT_PROBE
)
4421 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
4422 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
4423 unsigned int defcfg
;
4424 if (cfg
->inputs
[i
].type
!= AUTO_PIN_MIC
)
4426 defcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
4427 if (snd_hda_get_input_pin_attr(defcfg
) != INPUT_PIN_ATTR_INT
)
4430 snd_hda_override_amp_caps(codec
, nid
, HDA_INPUT
,
4431 (0x00 << AC_AMPCAP_OFFSET_SHIFT
) |
4432 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
4433 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT
) |
4434 (0 << AC_AMPCAP_MUTE_SHIFT
));
4438 static void alc283_hp_automute_hook(struct hda_codec
*codec
,
4439 struct hda_jack_callback
*jack
)
4441 struct alc_spec
*spec
= codec
->spec
;
4445 snd_hda_gen_hp_automute(codec
, jack
);
4447 vref
= spec
->gen
.hp_jack_present
? PIN_VREF80
: 0;
4450 snd_hda_codec_write(codec
, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4454 static void alc283_fixup_chromebook(struct hda_codec
*codec
,
4455 const struct hda_fixup
*fix
, int action
)
4457 struct alc_spec
*spec
= codec
->spec
;
4460 case HDA_FIXUP_ACT_PRE_PROBE
:
4461 snd_hda_override_wcaps(codec
, 0x03, 0);
4462 /* Disable AA-loopback as it causes white noise */
4463 spec
->gen
.mixer_nid
= 0;
4465 case HDA_FIXUP_ACT_INIT
:
4466 /* MIC2-VREF control */
4467 /* Set to manual mode */
4468 alc_update_coef_idx(codec
, 0x06, 0x000c, 0);
4469 /* Enable Line1 input control by verb */
4470 alc_update_coef_idx(codec
, 0x1a, 0, 1 << 4);
4475 static void alc283_fixup_sense_combo_jack(struct hda_codec
*codec
,
4476 const struct hda_fixup
*fix
, int action
)
4478 struct alc_spec
*spec
= codec
->spec
;
4481 case HDA_FIXUP_ACT_PRE_PROBE
:
4482 spec
->gen
.hp_automute_hook
= alc283_hp_automute_hook
;
4484 case HDA_FIXUP_ACT_INIT
:
4485 /* MIC2-VREF control */
4486 /* Set to manual mode */
4487 alc_update_coef_idx(codec
, 0x06, 0x000c, 0);
4492 /* mute tablet speaker pin (0x14) via dock plugging in addition */
4493 static void asus_tx300_automute(struct hda_codec
*codec
)
4495 struct alc_spec
*spec
= codec
->spec
;
4496 snd_hda_gen_update_outputs(codec
);
4497 if (snd_hda_jack_detect(codec
, 0x1b))
4498 spec
->gen
.mute_bits
|= (1ULL << 0x14);
4501 static void alc282_fixup_asus_tx300(struct hda_codec
*codec
,
4502 const struct hda_fixup
*fix
, int action
)
4504 struct alc_spec
*spec
= codec
->spec
;
4505 /* TX300 needs to set up GPIO2 for the speaker amp */
4506 static const struct hda_verb gpio2_verbs
[] = {
4507 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x04 },
4508 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x04 },
4509 { 0x01, AC_VERB_SET_GPIO_DATA
, 0x04 },
4512 static const struct hda_pintbl dock_pins
[] = {
4513 { 0x1b, 0x21114000 }, /* dock speaker pin */
4516 struct snd_kcontrol
*kctl
;
4519 case HDA_FIXUP_ACT_PRE_PROBE
:
4520 snd_hda_add_verbs(codec
, gpio2_verbs
);
4521 snd_hda_apply_pincfgs(codec
, dock_pins
);
4522 spec
->gen
.auto_mute_via_amp
= 1;
4523 spec
->gen
.automute_hook
= asus_tx300_automute
;
4524 snd_hda_jack_detect_enable_callback(codec
, 0x1b,
4525 snd_hda_gen_hp_automute
);
4527 case HDA_FIXUP_ACT_BUILD
:
4528 /* this is a bit tricky; give more sane names for the main
4529 * (tablet) speaker and the dock speaker, respectively
4531 kctl
= snd_hda_find_mixer_ctl(codec
, "Speaker Playback Switch");
4533 strcpy(kctl
->id
.name
, "Dock Speaker Playback Switch");
4534 kctl
= snd_hda_find_mixer_ctl(codec
, "Bass Speaker Playback Switch");
4536 strcpy(kctl
->id
.name
, "Speaker Playback Switch");
4541 static void alc290_fixup_mono_speakers(struct hda_codec
*codec
,
4542 const struct hda_fixup
*fix
, int action
)
4544 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4545 /* DAC node 0x03 is giving mono output. We therefore want to
4546 make sure 0x14 (front speaker) and 0x15 (headphones) use the
4547 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
4548 hda_nid_t conn1
[2] = { 0x0c };
4549 snd_hda_override_conn_list(codec
, 0x14, 1, conn1
);
4550 snd_hda_override_conn_list(codec
, 0x15, 1, conn1
);
4554 /* Hook to update amp GPIO4 for automute */
4555 static void alc280_hp_gpio4_automute_hook(struct hda_codec
*codec
,
4556 struct hda_jack_callback
*jack
)
4558 struct alc_spec
*spec
= codec
->spec
;
4560 snd_hda_gen_hp_automute(codec
, jack
);
4561 /* mute_led_polarity is set to 0, so we pass inverted value here */
4562 alc_update_gpio_led(codec
, 0x10, !spec
->gen
.hp_jack_present
);
4565 /* Manage GPIOs for HP EliteBook Folio 9480m.
4567 * GPIO4 is the headphone amplifier power control
4568 * GPIO3 is the audio output mute indicator LED
4571 static void alc280_fixup_hp_9480m(struct hda_codec
*codec
,
4572 const struct hda_fixup
*fix
,
4575 struct alc_spec
*spec
= codec
->spec
;
4576 static const struct hda_verb gpio_init
[] = {
4577 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x18 },
4578 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x18 },
4582 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4583 /* Set the hooks to turn the headphone amp on/off
4586 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
4587 spec
->gen
.hp_automute_hook
= alc280_hp_gpio4_automute_hook
;
4589 /* The GPIOs are currently off */
4592 /* GPIO3 is connected to the output mute LED,
4593 * high is on, low is off
4595 spec
->mute_led_polarity
= 0;
4596 spec
->gpio_mute_led_mask
= 0x08;
4598 /* Initialize GPIO configuration */
4599 snd_hda_add_verbs(codec
, gpio_init
);
4603 /* for hda_fixup_thinkpad_acpi() */
4604 #include "thinkpad_helper.c"
4606 /* for dell wmi mic mute led */
4607 #include "dell_wmi_helper.c"
4610 ALC269_FIXUP_SONY_VAIO
,
4611 ALC275_FIXUP_SONY_VAIO_GPIO2
,
4612 ALC269_FIXUP_DELL_M101Z
,
4613 ALC269_FIXUP_SKU_IGNORE
,
4614 ALC269_FIXUP_ASUS_G73JW
,
4615 ALC269_FIXUP_LENOVO_EAPD
,
4616 ALC275_FIXUP_SONY_HWEQ
,
4617 ALC275_FIXUP_SONY_DISABLE_AAMIX
,
4619 ALC269_FIXUP_PCM_44K
,
4620 ALC269_FIXUP_STEREO_DMIC
,
4621 ALC269_FIXUP_HEADSET_MIC
,
4622 ALC269_FIXUP_QUANTA_MUTE
,
4623 ALC269_FIXUP_LIFEBOOK
,
4624 ALC269_FIXUP_LIFEBOOK_EXTMIC
,
4625 ALC269_FIXUP_LIFEBOOK_HP_PIN
,
4626 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT
,
4629 ALC269VB_FIXUP_AMIC
,
4630 ALC269VB_FIXUP_DMIC
,
4631 ALC269_FIXUP_HP_MUTE_LED
,
4632 ALC269_FIXUP_HP_MUTE_LED_MIC1
,
4633 ALC269_FIXUP_HP_MUTE_LED_MIC2
,
4634 ALC269_FIXUP_HP_GPIO_LED
,
4635 ALC269_FIXUP_HP_GPIO_MIC1_LED
,
4636 ALC269_FIXUP_HP_LINE1_MIC1_LED
,
4637 ALC269_FIXUP_INV_DMIC
,
4638 ALC269_FIXUP_LENOVO_DOCK
,
4639 ALC269_FIXUP_NO_SHUTUP
,
4640 ALC286_FIXUP_SONY_MIC_NO_PRESENCE
,
4641 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
,
4642 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
4643 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
,
4644 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
4645 ALC269_FIXUP_HEADSET_MODE
,
4646 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
,
4647 ALC269_FIXUP_ASPIRE_HEADSET_MIC
,
4648 ALC269_FIXUP_ASUS_X101_FUNC
,
4649 ALC269_FIXUP_ASUS_X101_VERB
,
4650 ALC269_FIXUP_ASUS_X101
,
4651 ALC271_FIXUP_AMIC_MIC2
,
4652 ALC271_FIXUP_HP_GATE_MIC_JACK
,
4653 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
,
4654 ALC269_FIXUP_ACER_AC700
,
4655 ALC269_FIXUP_LIMIT_INT_MIC_BOOST
,
4656 ALC269VB_FIXUP_ASUS_ZENBOOK
,
4657 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
,
4658 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
,
4659 ALC269VB_FIXUP_ORDISSIMO_EVE2
,
4660 ALC283_FIXUP_CHROME_BOOK
,
4661 ALC283_FIXUP_SENSE_COMBO_JACK
,
4662 ALC282_FIXUP_ASUS_TX300
,
4663 ALC283_FIXUP_INT_MIC
,
4664 ALC290_FIXUP_MONO_SPEAKERS
,
4665 ALC290_FIXUP_MONO_SPEAKERS_HSJACK
,
4666 ALC290_FIXUP_SUBWOOFER
,
4667 ALC290_FIXUP_SUBWOOFER_HSJACK
,
4668 ALC269_FIXUP_THINKPAD_ACPI
,
4669 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
4670 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
,
4671 ALC255_FIXUP_HEADSET_MODE
,
4672 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
,
4673 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
,
4674 ALC292_FIXUP_TPT440_DOCK
,
4675 ALC292_FIXUP_TPT440
,
4676 ALC283_FIXUP_BXBT2807_MIC
,
4677 ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
,
4678 ALC282_FIXUP_ASPIRE_V5_PINS
,
4679 ALC280_FIXUP_HP_GPIO4
,
4680 ALC286_FIXUP_HP_GPIO_LED
,
4681 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY
,
4682 ALC280_FIXUP_HP_DOCK_PINS
,
4683 ALC280_FIXUP_HP_9480M
,
4684 ALC288_FIXUP_DELL_HEADSET_MODE
,
4685 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
,
4686 ALC288_FIXUP_DELL_XPS_13_GPIO6
,
4687 ALC288_FIXUP_DELL_XPS_13
,
4688 ALC288_FIXUP_DISABLE_AAMIX
,
4689 ALC292_FIXUP_DELL_E7X
,
4690 ALC292_FIXUP_DISABLE_AAMIX
,
4691 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
,
4692 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
4693 ALC275_FIXUP_DELL_XPS
,
4694 ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE
,
4695 ALC293_FIXUP_LENOVO_SPK_NOISE
,
4696 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
,
4699 static const struct hda_fixup alc269_fixups
[] = {
4700 [ALC269_FIXUP_SONY_VAIO
] = {
4701 .type
= HDA_FIXUP_PINCTLS
,
4702 .v
.pins
= (const struct hda_pintbl
[]) {
4703 {0x19, PIN_VREFGRD
},
4707 [ALC275_FIXUP_SONY_VAIO_GPIO2
] = {
4708 .type
= HDA_FIXUP_VERBS
,
4709 .v
.verbs
= (const struct hda_verb
[]) {
4710 {0x01, AC_VERB_SET_GPIO_MASK
, 0x04},
4711 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x04},
4712 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
4716 .chain_id
= ALC269_FIXUP_SONY_VAIO
4718 [ALC269_FIXUP_DELL_M101Z
] = {
4719 .type
= HDA_FIXUP_VERBS
,
4720 .v
.verbs
= (const struct hda_verb
[]) {
4721 /* Enables internal speaker */
4722 {0x20, AC_VERB_SET_COEF_INDEX
, 13},
4723 {0x20, AC_VERB_SET_PROC_COEF
, 0x4040},
4727 [ALC269_FIXUP_SKU_IGNORE
] = {
4728 .type
= HDA_FIXUP_FUNC
,
4729 .v
.func
= alc_fixup_sku_ignore
,
4731 [ALC269_FIXUP_ASUS_G73JW
] = {
4732 .type
= HDA_FIXUP_PINS
,
4733 .v
.pins
= (const struct hda_pintbl
[]) {
4734 { 0x17, 0x99130111 }, /* subwoofer */
4738 [ALC269_FIXUP_LENOVO_EAPD
] = {
4739 .type
= HDA_FIXUP_VERBS
,
4740 .v
.verbs
= (const struct hda_verb
[]) {
4741 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
4745 [ALC275_FIXUP_SONY_HWEQ
] = {
4746 .type
= HDA_FIXUP_FUNC
,
4747 .v
.func
= alc269_fixup_hweq
,
4749 .chain_id
= ALC275_FIXUP_SONY_VAIO_GPIO2
4751 [ALC275_FIXUP_SONY_DISABLE_AAMIX
] = {
4752 .type
= HDA_FIXUP_FUNC
,
4753 .v
.func
= alc_fixup_disable_aamix
,
4755 .chain_id
= ALC269_FIXUP_SONY_VAIO
4757 [ALC271_FIXUP_DMIC
] = {
4758 .type
= HDA_FIXUP_FUNC
,
4759 .v
.func
= alc271_fixup_dmic
,
4761 [ALC269_FIXUP_PCM_44K
] = {
4762 .type
= HDA_FIXUP_FUNC
,
4763 .v
.func
= alc269_fixup_pcm_44k
,
4765 .chain_id
= ALC269_FIXUP_QUANTA_MUTE
4767 [ALC269_FIXUP_STEREO_DMIC
] = {
4768 .type
= HDA_FIXUP_FUNC
,
4769 .v
.func
= alc269_fixup_stereo_dmic
,
4771 [ALC269_FIXUP_HEADSET_MIC
] = {
4772 .type
= HDA_FIXUP_FUNC
,
4773 .v
.func
= alc269_fixup_headset_mic
,
4775 [ALC269_FIXUP_QUANTA_MUTE
] = {
4776 .type
= HDA_FIXUP_FUNC
,
4777 .v
.func
= alc269_fixup_quanta_mute
,
4779 [ALC269_FIXUP_LIFEBOOK
] = {
4780 .type
= HDA_FIXUP_PINS
,
4781 .v
.pins
= (const struct hda_pintbl
[]) {
4782 { 0x1a, 0x2101103f }, /* dock line-out */
4783 { 0x1b, 0x23a11040 }, /* dock mic-in */
4787 .chain_id
= ALC269_FIXUP_QUANTA_MUTE
4789 [ALC269_FIXUP_LIFEBOOK_EXTMIC
] = {
4790 .type
= HDA_FIXUP_PINS
,
4791 .v
.pins
= (const struct hda_pintbl
[]) {
4792 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
4796 [ALC269_FIXUP_LIFEBOOK_HP_PIN
] = {
4797 .type
= HDA_FIXUP_PINS
,
4798 .v
.pins
= (const struct hda_pintbl
[]) {
4799 { 0x21, 0x0221102f }, /* HP out */
4803 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT
] = {
4804 .type
= HDA_FIXUP_FUNC
,
4805 .v
.func
= alc269_fixup_pincfg_no_hp_to_lineout
,
4807 [ALC269_FIXUP_AMIC
] = {
4808 .type
= HDA_FIXUP_PINS
,
4809 .v
.pins
= (const struct hda_pintbl
[]) {
4810 { 0x14, 0x99130110 }, /* speaker */
4811 { 0x15, 0x0121401f }, /* HP out */
4812 { 0x18, 0x01a19c20 }, /* mic */
4813 { 0x19, 0x99a3092f }, /* int-mic */
4817 [ALC269_FIXUP_DMIC
] = {
4818 .type
= HDA_FIXUP_PINS
,
4819 .v
.pins
= (const struct hda_pintbl
[]) {
4820 { 0x12, 0x99a3092f }, /* int-mic */
4821 { 0x14, 0x99130110 }, /* speaker */
4822 { 0x15, 0x0121401f }, /* HP out */
4823 { 0x18, 0x01a19c20 }, /* mic */
4827 [ALC269VB_FIXUP_AMIC
] = {
4828 .type
= HDA_FIXUP_PINS
,
4829 .v
.pins
= (const struct hda_pintbl
[]) {
4830 { 0x14, 0x99130110 }, /* speaker */
4831 { 0x18, 0x01a19c20 }, /* mic */
4832 { 0x19, 0x99a3092f }, /* int-mic */
4833 { 0x21, 0x0121401f }, /* HP out */
4837 [ALC269VB_FIXUP_DMIC
] = {
4838 .type
= HDA_FIXUP_PINS
,
4839 .v
.pins
= (const struct hda_pintbl
[]) {
4840 { 0x12, 0x99a3092f }, /* int-mic */
4841 { 0x14, 0x99130110 }, /* speaker */
4842 { 0x18, 0x01a19c20 }, /* mic */
4843 { 0x21, 0x0121401f }, /* HP out */
4847 [ALC269_FIXUP_HP_MUTE_LED
] = {
4848 .type
= HDA_FIXUP_FUNC
,
4849 .v
.func
= alc269_fixup_hp_mute_led
,
4851 [ALC269_FIXUP_HP_MUTE_LED_MIC1
] = {
4852 .type
= HDA_FIXUP_FUNC
,
4853 .v
.func
= alc269_fixup_hp_mute_led_mic1
,
4855 [ALC269_FIXUP_HP_MUTE_LED_MIC2
] = {
4856 .type
= HDA_FIXUP_FUNC
,
4857 .v
.func
= alc269_fixup_hp_mute_led_mic2
,
4859 [ALC269_FIXUP_HP_GPIO_LED
] = {
4860 .type
= HDA_FIXUP_FUNC
,
4861 .v
.func
= alc269_fixup_hp_gpio_led
,
4863 [ALC269_FIXUP_HP_GPIO_MIC1_LED
] = {
4864 .type
= HDA_FIXUP_FUNC
,
4865 .v
.func
= alc269_fixup_hp_gpio_mic1_led
,
4867 [ALC269_FIXUP_HP_LINE1_MIC1_LED
] = {
4868 .type
= HDA_FIXUP_FUNC
,
4869 .v
.func
= alc269_fixup_hp_line1_mic1_led
,
4871 [ALC269_FIXUP_INV_DMIC
] = {
4872 .type
= HDA_FIXUP_FUNC
,
4873 .v
.func
= alc_fixup_inv_dmic
,
4875 [ALC269_FIXUP_NO_SHUTUP
] = {
4876 .type
= HDA_FIXUP_FUNC
,
4877 .v
.func
= alc_fixup_no_shutup
,
4879 [ALC269_FIXUP_LENOVO_DOCK
] = {
4880 .type
= HDA_FIXUP_PINS
,
4881 .v
.pins
= (const struct hda_pintbl
[]) {
4882 { 0x19, 0x23a11040 }, /* dock mic */
4883 { 0x1b, 0x2121103f }, /* dock headphone */
4887 .chain_id
= ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
4889 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
] = {
4890 .type
= HDA_FIXUP_FUNC
,
4891 .v
.func
= alc269_fixup_pincfg_no_hp_to_lineout
,
4893 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
4895 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
4896 .type
= HDA_FIXUP_PINS
,
4897 .v
.pins
= (const struct hda_pintbl
[]) {
4898 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4899 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4903 .chain_id
= ALC269_FIXUP_HEADSET_MODE
4905 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
] = {
4906 .type
= HDA_FIXUP_PINS
,
4907 .v
.pins
= (const struct hda_pintbl
[]) {
4908 { 0x16, 0x21014020 }, /* dock line out */
4909 { 0x19, 0x21a19030 }, /* dock mic */
4910 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4914 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4916 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
] = {
4917 .type
= HDA_FIXUP_PINS
,
4918 .v
.pins
= (const struct hda_pintbl
[]) {
4919 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4923 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4925 [ALC269_FIXUP_HEADSET_MODE
] = {
4926 .type
= HDA_FIXUP_FUNC
,
4927 .v
.func
= alc_fixup_headset_mode
,
4929 .chain_id
= ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
4931 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
] = {
4932 .type
= HDA_FIXUP_FUNC
,
4933 .v
.func
= alc_fixup_headset_mode_no_hp_mic
,
4935 [ALC269_FIXUP_ASPIRE_HEADSET_MIC
] = {
4936 .type
= HDA_FIXUP_PINS
,
4937 .v
.pins
= (const struct hda_pintbl
[]) {
4938 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
4942 .chain_id
= ALC269_FIXUP_HEADSET_MODE
,
4944 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE
] = {
4945 .type
= HDA_FIXUP_PINS
,
4946 .v
.pins
= (const struct hda_pintbl
[]) {
4947 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4951 .chain_id
= ALC269_FIXUP_HEADSET_MIC
4953 [ALC269_FIXUP_ASUS_X101_FUNC
] = {
4954 .type
= HDA_FIXUP_FUNC
,
4955 .v
.func
= alc269_fixup_x101_headset_mic
,
4957 [ALC269_FIXUP_ASUS_X101_VERB
] = {
4958 .type
= HDA_FIXUP_VERBS
,
4959 .v
.verbs
= (const struct hda_verb
[]) {
4960 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
4961 {0x20, AC_VERB_SET_COEF_INDEX
, 0x08},
4962 {0x20, AC_VERB_SET_PROC_COEF
, 0x0310},
4966 .chain_id
= ALC269_FIXUP_ASUS_X101_FUNC
4968 [ALC269_FIXUP_ASUS_X101
] = {
4969 .type
= HDA_FIXUP_PINS
,
4970 .v
.pins
= (const struct hda_pintbl
[]) {
4971 { 0x18, 0x04a1182c }, /* Headset mic */
4975 .chain_id
= ALC269_FIXUP_ASUS_X101_VERB
4977 [ALC271_FIXUP_AMIC_MIC2
] = {
4978 .type
= HDA_FIXUP_PINS
,
4979 .v
.pins
= (const struct hda_pintbl
[]) {
4980 { 0x14, 0x99130110 }, /* speaker */
4981 { 0x19, 0x01a19c20 }, /* mic */
4982 { 0x1b, 0x99a7012f }, /* int-mic */
4983 { 0x21, 0x0121401f }, /* HP out */
4987 [ALC271_FIXUP_HP_GATE_MIC_JACK
] = {
4988 .type
= HDA_FIXUP_FUNC
,
4989 .v
.func
= alc271_hp_gate_mic_jack
,
4991 .chain_id
= ALC271_FIXUP_AMIC_MIC2
,
4993 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
] = {
4994 .type
= HDA_FIXUP_FUNC
,
4995 .v
.func
= alc269_fixup_limit_int_mic_boost
,
4997 .chain_id
= ALC271_FIXUP_HP_GATE_MIC_JACK
,
4999 [ALC269_FIXUP_ACER_AC700
] = {
5000 .type
= HDA_FIXUP_PINS
,
5001 .v
.pins
= (const struct hda_pintbl
[]) {
5002 { 0x12, 0x99a3092f }, /* int-mic */
5003 { 0x14, 0x99130110 }, /* speaker */
5004 { 0x18, 0x03a11c20 }, /* mic */
5005 { 0x1e, 0x0346101e }, /* SPDIF1 */
5006 { 0x21, 0x0321101f }, /* HP out */
5010 .chain_id
= ALC271_FIXUP_DMIC
,
5012 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST
] = {
5013 .type
= HDA_FIXUP_FUNC
,
5014 .v
.func
= alc269_fixup_limit_int_mic_boost
,
5016 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
5018 [ALC269VB_FIXUP_ASUS_ZENBOOK
] = {
5019 .type
= HDA_FIXUP_FUNC
,
5020 .v
.func
= alc269_fixup_limit_int_mic_boost
,
5022 .chain_id
= ALC269VB_FIXUP_DMIC
,
5024 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
] = {
5025 .type
= HDA_FIXUP_VERBS
,
5026 .v
.verbs
= (const struct hda_verb
[]) {
5027 /* class-D output amp +5dB */
5028 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x12 },
5029 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2800 },
5033 .chain_id
= ALC269VB_FIXUP_ASUS_ZENBOOK
,
5035 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
] = {
5036 .type
= HDA_FIXUP_FUNC
,
5037 .v
.func
= alc269_fixup_limit_int_mic_boost
,
5039 .chain_id
= ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5041 [ALC269VB_FIXUP_ORDISSIMO_EVE2
] = {
5042 .type
= HDA_FIXUP_PINS
,
5043 .v
.pins
= (const struct hda_pintbl
[]) {
5044 { 0x12, 0x99a3092f }, /* int-mic */
5045 { 0x18, 0x03a11d20 }, /* mic */
5046 { 0x19, 0x411111f0 }, /* Unused bogus pin */
5050 [ALC283_FIXUP_CHROME_BOOK
] = {
5051 .type
= HDA_FIXUP_FUNC
,
5052 .v
.func
= alc283_fixup_chromebook
,
5054 [ALC283_FIXUP_SENSE_COMBO_JACK
] = {
5055 .type
= HDA_FIXUP_FUNC
,
5056 .v
.func
= alc283_fixup_sense_combo_jack
,
5058 .chain_id
= ALC283_FIXUP_CHROME_BOOK
,
5060 [ALC282_FIXUP_ASUS_TX300
] = {
5061 .type
= HDA_FIXUP_FUNC
,
5062 .v
.func
= alc282_fixup_asus_tx300
,
5064 [ALC283_FIXUP_INT_MIC
] = {
5065 .type
= HDA_FIXUP_VERBS
,
5066 .v
.verbs
= (const struct hda_verb
[]) {
5067 {0x20, AC_VERB_SET_COEF_INDEX
, 0x1a},
5068 {0x20, AC_VERB_SET_PROC_COEF
, 0x0011},
5072 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
5074 [ALC290_FIXUP_SUBWOOFER_HSJACK
] = {
5075 .type
= HDA_FIXUP_PINS
,
5076 .v
.pins
= (const struct hda_pintbl
[]) {
5077 { 0x17, 0x90170112 }, /* subwoofer */
5081 .chain_id
= ALC290_FIXUP_MONO_SPEAKERS_HSJACK
,
5083 [ALC290_FIXUP_SUBWOOFER
] = {
5084 .type
= HDA_FIXUP_PINS
,
5085 .v
.pins
= (const struct hda_pintbl
[]) {
5086 { 0x17, 0x90170112 }, /* subwoofer */
5090 .chain_id
= ALC290_FIXUP_MONO_SPEAKERS
,
5092 [ALC290_FIXUP_MONO_SPEAKERS
] = {
5093 .type
= HDA_FIXUP_FUNC
,
5094 .v
.func
= alc290_fixup_mono_speakers
,
5096 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK
] = {
5097 .type
= HDA_FIXUP_FUNC
,
5098 .v
.func
= alc290_fixup_mono_speakers
,
5100 .chain_id
= ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
5102 [ALC269_FIXUP_THINKPAD_ACPI
] = {
5103 .type
= HDA_FIXUP_FUNC
,
5104 .v
.func
= hda_fixup_thinkpad_acpi
,
5106 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
5107 .type
= HDA_FIXUP_PINS
,
5108 .v
.pins
= (const struct hda_pintbl
[]) {
5109 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5110 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5114 .chain_id
= ALC255_FIXUP_HEADSET_MODE
5116 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
] = {
5117 .type
= HDA_FIXUP_PINS
,
5118 .v
.pins
= (const struct hda_pintbl
[]) {
5119 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5123 .chain_id
= ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
5125 [ALC255_FIXUP_HEADSET_MODE
] = {
5126 .type
= HDA_FIXUP_FUNC
,
5127 .v
.func
= alc_fixup_headset_mode_alc255
,
5129 .chain_id
= ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
5131 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
] = {
5132 .type
= HDA_FIXUP_FUNC
,
5133 .v
.func
= alc_fixup_headset_mode_alc255_no_hp_mic
,
5135 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
5136 .type
= HDA_FIXUP_PINS
,
5137 .v
.pins
= (const struct hda_pintbl
[]) {
5138 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5139 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5143 .chain_id
= ALC269_FIXUP_HEADSET_MODE
5145 [ALC292_FIXUP_TPT440_DOCK
] = {
5146 .type
= HDA_FIXUP_FUNC
,
5147 .v
.func
= alc_fixup_tpt440_dock
,
5149 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
5151 [ALC292_FIXUP_TPT440
] = {
5152 .type
= HDA_FIXUP_FUNC
,
5153 .v
.func
= alc_fixup_disable_aamix
,
5155 .chain_id
= ALC292_FIXUP_TPT440_DOCK
,
5157 [ALC283_FIXUP_BXBT2807_MIC
] = {
5158 .type
= HDA_FIXUP_PINS
,
5159 .v
.pins
= (const struct hda_pintbl
[]) {
5160 { 0x19, 0x04a110f0 },
5164 [ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
] = {
5165 .type
= HDA_FIXUP_FUNC
,
5166 .v
.func
= alc_fixup_dell_wmi
,
5168 [ALC282_FIXUP_ASPIRE_V5_PINS
] = {
5169 .type
= HDA_FIXUP_PINS
,
5170 .v
.pins
= (const struct hda_pintbl
[]) {
5171 { 0x12, 0x90a60130 },
5172 { 0x14, 0x90170110 },
5173 { 0x17, 0x40000008 },
5174 { 0x18, 0x411111f0 },
5175 { 0x19, 0x01a1913c },
5176 { 0x1a, 0x411111f0 },
5177 { 0x1b, 0x411111f0 },
5178 { 0x1d, 0x40f89b2d },
5179 { 0x1e, 0x411111f0 },
5180 { 0x21, 0x0321101f },
5184 [ALC280_FIXUP_HP_GPIO4
] = {
5185 .type
= HDA_FIXUP_FUNC
,
5186 .v
.func
= alc280_fixup_hp_gpio4
,
5188 [ALC286_FIXUP_HP_GPIO_LED
] = {
5189 .type
= HDA_FIXUP_FUNC
,
5190 .v
.func
= alc286_fixup_hp_gpio_led
,
5192 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY
] = {
5193 .type
= HDA_FIXUP_FUNC
,
5194 .v
.func
= alc280_fixup_hp_gpio2_mic_hotkey
,
5196 [ALC280_FIXUP_HP_DOCK_PINS
] = {
5197 .type
= HDA_FIXUP_PINS
,
5198 .v
.pins
= (const struct hda_pintbl
[]) {
5199 { 0x1b, 0x21011020 }, /* line-out */
5200 { 0x1a, 0x01a1903c }, /* headset mic */
5201 { 0x18, 0x2181103f }, /* line-in */
5205 .chain_id
= ALC280_FIXUP_HP_GPIO4
5207 [ALC280_FIXUP_HP_9480M
] = {
5208 .type
= HDA_FIXUP_FUNC
,
5209 .v
.func
= alc280_fixup_hp_9480m
,
5211 [ALC288_FIXUP_DELL_HEADSET_MODE
] = {
5212 .type
= HDA_FIXUP_FUNC
,
5213 .v
.func
= alc_fixup_headset_mode_dell_alc288
,
5215 .chain_id
= ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
5217 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
5218 .type
= HDA_FIXUP_PINS
,
5219 .v
.pins
= (const struct hda_pintbl
[]) {
5220 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5221 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5225 .chain_id
= ALC288_FIXUP_DELL_HEADSET_MODE
5227 [ALC288_FIXUP_DELL_XPS_13_GPIO6
] = {
5228 .type
= HDA_FIXUP_VERBS
,
5229 .v
.verbs
= (const struct hda_verb
[]) {
5230 {0x01, AC_VERB_SET_GPIO_MASK
, 0x40},
5231 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x40},
5232 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
5236 .chain_id
= ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
5238 [ALC288_FIXUP_DISABLE_AAMIX
] = {
5239 .type
= HDA_FIXUP_FUNC
,
5240 .v
.func
= alc_fixup_disable_aamix
,
5242 .chain_id
= ALC288_FIXUP_DELL_XPS_13_GPIO6
5244 [ALC288_FIXUP_DELL_XPS_13
] = {
5245 .type
= HDA_FIXUP_FUNC
,
5246 .v
.func
= alc_fixup_dell_xps13
,
5248 .chain_id
= ALC288_FIXUP_DISABLE_AAMIX
5250 [ALC292_FIXUP_DISABLE_AAMIX
] = {
5251 .type
= HDA_FIXUP_FUNC
,
5252 .v
.func
= alc_fixup_disable_aamix
,
5254 .chain_id
= ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
5256 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
] = {
5257 .type
= HDA_FIXUP_FUNC
,
5258 .v
.func
= alc_fixup_disable_aamix
,
5260 .chain_id
= ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
5262 [ALC292_FIXUP_DELL_E7X
] = {
5263 .type
= HDA_FIXUP_FUNC
,
5264 .v
.func
= alc_fixup_dell_xps13
,
5266 .chain_id
= ALC292_FIXUP_DISABLE_AAMIX
5268 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
5269 .type
= HDA_FIXUP_PINS
,
5270 .v
.pins
= (const struct hda_pintbl
[]) {
5271 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5272 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5276 .chain_id
= ALC269_FIXUP_HEADSET_MODE
5278 [ALC275_FIXUP_DELL_XPS
] = {
5279 .type
= HDA_FIXUP_VERBS
,
5280 .v
.verbs
= (const struct hda_verb
[]) {
5281 /* Enables internal speaker */
5282 {0x20, AC_VERB_SET_COEF_INDEX
, 0x1f},
5283 {0x20, AC_VERB_SET_PROC_COEF
, 0x00c0},
5284 {0x20, AC_VERB_SET_COEF_INDEX
, 0x30},
5285 {0x20, AC_VERB_SET_PROC_COEF
, 0x00b1},
5289 [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE
] = {
5290 .type
= HDA_FIXUP_VERBS
,
5291 .v
.verbs
= (const struct hda_verb
[]) {
5292 /* Disable pass-through path for FRONT 14h */
5293 {0x20, AC_VERB_SET_COEF_INDEX
, 0x36},
5294 {0x20, AC_VERB_SET_PROC_COEF
, 0x1737},
5298 .chain_id
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
5300 [ALC293_FIXUP_LENOVO_SPK_NOISE
] = {
5301 .type
= HDA_FIXUP_FUNC
,
5302 .v
.func
= alc_fixup_disable_aamix
,
5304 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
5306 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
] = {
5307 .type
= HDA_FIXUP_FUNC
,
5308 .v
.func
= alc233_fixup_lenovo_line2_mic_hotkey
,
5312 static const struct snd_pci_quirk alc269_fixup_tbl
[] = {
5313 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC
),
5314 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC
),
5315 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC
),
5316 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700
),
5317 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC
),
5318 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC
),
5319 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK
),
5320 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK
),
5321 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
),
5322 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS
),
5323 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK
),
5324 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z
),
5325 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS
),
5326 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X
),
5327 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X
),
5328 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X
),
5329 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER
),
5330 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
5331 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
5332 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
5333 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK
),
5334 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK
),
5335 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X
),
5336 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK
),
5337 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5338 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5339 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13
),
5340 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK
),
5341 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
),
5342 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5343 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5344 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
5345 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
5346 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
5347 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
5348 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK
),
5349 SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE
),
5350 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5351 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
5352 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2
),
5353 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED
),
5354 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
),
5355 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY
),
5357 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5358 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5359 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5360 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
5361 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
5362 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
5363 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
5364 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
),
5365 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5366 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5367 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5368 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5369 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED
),
5370 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS
),
5371 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS
),
5372 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5373 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5374 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5375 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5376 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5377 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M
),
5378 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5379 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5381 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5382 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5383 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5384 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5385 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5386 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5387 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5388 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5389 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5390 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5391 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5392 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5393 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5394 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5395 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5396 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5397 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
),
5398 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5399 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5400 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5401 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5402 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5403 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5404 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5405 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5406 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5407 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5408 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5409 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
5410 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300
),
5411 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5412 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5413 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK
),
5414 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
),
5415 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC
),
5416 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW
),
5417 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC
),
5418 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5419 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC
),
5420 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC
),
5421 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC
),
5422 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC
),
5423 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101
),
5424 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE
),
5425 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE
),
5426 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2
),
5427 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
5428 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
5429 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX
),
5430 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK
),
5431 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT
),
5432 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN
),
5433 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN
),
5434 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC
),
5435 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC
),
5436 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_BXBT2807_MIC
),
5437 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE
),
5438 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE
),
5439 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE
),
5440 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE
),
5441 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE
),
5442 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK
),
5443 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK
),
5444 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK
),
5445 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK
),
5446 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK
),
5447 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK
),
5448 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440
),
5449 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK
),
5450 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK
),
5451 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK
),
5452 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK
),
5453 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK
),
5454 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5455 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK
),
5456 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK
),
5457 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK
),
5458 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE
),
5459 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY
),
5460 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC
),
5461 SND_PCI_QUIRK(0x17aa, 0x3978, "IdeaPad Y410P", ALC269_FIXUP_NO_SHUTUP
),
5462 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5463 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC
),
5464 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK
),
5465 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5466 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK
),
5467 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK
),
5468 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK
),
5469 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE
),
5470 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
5471 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K
),
5472 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD
),
5473 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2
), /* Also known as Malata PC-B1303 */
5476 /* Below is a quirk table taken from the old code.
5477 * Basically the device should work as is without the fixup table.
5478 * If BIOS doesn't give a proper info, enable the corresponding
5481 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
5483 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC
),
5484 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC
),
5485 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC
),
5486 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC
),
5487 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC
),
5488 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC
),
5489 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC
),
5490 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC
),
5491 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC
),
5492 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC
),
5493 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC
),
5494 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC
),
5495 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC
),
5496 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC
),
5497 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC
),
5498 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC
),
5499 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC
),
5500 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC
),
5501 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC
),
5502 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC
),
5503 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC
),
5504 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC
),
5505 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC
),
5506 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC
),
5507 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC
),
5508 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC
),
5509 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC
),
5510 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC
),
5511 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC
),
5512 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC
),
5513 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC
),
5514 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC
),
5515 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC
),
5516 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC
),
5517 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC
),
5518 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC
),
5519 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC
),
5520 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC
),
5521 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC
),
5526 static const struct snd_pci_quirk alc269_fixup_vendor_tbl
[] = {
5527 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC
),
5528 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED
),
5529 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO
),
5530 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI
),
5534 static const struct hda_model_fixup alc269_fixup_models
[] = {
5535 {.id
= ALC269_FIXUP_AMIC
, .name
= "laptop-amic"},
5536 {.id
= ALC269_FIXUP_DMIC
, .name
= "laptop-dmic"},
5537 {.id
= ALC269_FIXUP_STEREO_DMIC
, .name
= "alc269-dmic"},
5538 {.id
= ALC271_FIXUP_DMIC
, .name
= "alc271-dmic"},
5539 {.id
= ALC269_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
5540 {.id
= ALC269_FIXUP_HEADSET_MIC
, .name
= "headset-mic"},
5541 {.id
= ALC269_FIXUP_HEADSET_MODE
, .name
= "headset-mode"},
5542 {.id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
, .name
= "headset-mode-no-hp-mic"},
5543 {.id
= ALC269_FIXUP_LENOVO_DOCK
, .name
= "lenovo-dock"},
5544 {.id
= ALC269_FIXUP_HP_GPIO_LED
, .name
= "hp-gpio-led"},
5545 {.id
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
, .name
= "dell-headset-multi"},
5546 {.id
= ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
, .name
= "dell-headset-dock"},
5547 {.id
= ALC283_FIXUP_CHROME_BOOK
, .name
= "alc283-dac-wcaps"},
5548 {.id
= ALC283_FIXUP_SENSE_COMBO_JACK
, .name
= "alc283-sense-combo"},
5549 {.id
= ALC292_FIXUP_TPT440_DOCK
, .name
= "tpt440-dock"},
5550 {.id
= ALC292_FIXUP_TPT440
, .name
= "tpt440"},
5554 #define ALC256_STANDARD_PINS \
5555 {0x12, 0x90a60140}, \
5556 {0x14, 0x90170110}, \
5559 #define ALC282_STANDARD_PINS \
5562 #define ALC290_STANDARD_PINS \
5565 #define ALC292_STANDARD_PINS \
5566 {0x14, 0x90170110}, \
5569 #define ALC298_STANDARD_PINS \
5570 {0x12, 0x90a60130}, \
5573 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl
[] = {
5574 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
,
5576 {0x21, 0x02211020}),
5577 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5580 {0x21, 0x02211020}),
5581 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5584 {0x21, 0x02211030}),
5585 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5588 {0x21, 0x0221103f}),
5589 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5592 {0x21, 0x0221105f}),
5593 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5596 {0x21, 0x0221101f}),
5597 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5601 {0x21, 0x0321102f}),
5602 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5605 {0x21, 0x02211040}),
5606 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5609 {0x21, 0x02211050}),
5610 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5613 {0x21, 0x02211030}),
5614 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5617 {0x21, 0x02211040}),
5618 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5621 {0x21, 0x02211050}),
5622 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5625 {0x21, 0x02211040}),
5626 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5629 {0x21, 0x02211030}),
5630 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5631 ALC256_STANDARD_PINS
),
5632 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4
,
5636 {0x1a, 0x04a11020}),
5637 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED
,
5643 {0x1b, 0x02011020}),
5644 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5645 ALC282_STANDARD_PINS
,
5648 {0x21, 0x0321101f}),
5649 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5650 ALC282_STANDARD_PINS
,
5653 {0x21, 0x03211040}),
5654 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5655 ALC282_STANDARD_PINS
,
5658 {0x21, 0x03211020}),
5659 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5660 ALC282_STANDARD_PINS
,
5663 {0x21, 0x0421101f}),
5664 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED
,
5665 ALC282_STANDARD_PINS
,
5668 {0x21, 0x04211020}),
5669 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
5670 ALC282_STANDARD_PINS
,
5672 {0x21, 0x0321101f}),
5673 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
5676 {0x21, 0x02211030}),
5677 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
5678 ALC282_STANDARD_PINS
,
5681 {0x21, 0x0321101f}),
5682 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL_XPS_13_GPIO6
,
5685 {0x21, 0x0321101f}),
5686 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5687 ALC290_STANDARD_PINS
,
5690 {0x1a, 0x04a11020}),
5691 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5692 ALC290_STANDARD_PINS
,
5695 {0x1a, 0x04a11020}),
5696 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5697 ALC290_STANDARD_PINS
,
5699 {0x1a, 0x04a11020}),
5700 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5701 ALC290_STANDARD_PINS
,
5703 {0x1a, 0x04a11040}),
5704 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5705 ALC290_STANDARD_PINS
,
5708 {0x1a, 0x04a11040}),
5709 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5710 ALC290_STANDARD_PINS
,
5713 {0x1a, 0x04a11020}),
5714 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
,
5715 ALC290_STANDARD_PINS
,
5718 {0x1a, 0x04a11020}),
5719 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
,
5720 ALC292_STANDARD_PINS
,
5723 {0x19, 0x01a19030}),
5724 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
,
5725 ALC292_STANDARD_PINS
,
5729 {0x19, 0x01a1903e}),
5730 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
5731 ALC292_STANDARD_PINS
,
5732 {0x12, 0x90a60140}),
5733 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
,
5734 ALC292_STANDARD_PINS
,
5737 {0x19, 0x21a19030}),
5738 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
,
5739 ALC292_STANDARD_PINS
,
5740 {0x13, 0x90a60140}),
5741 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
5742 ALC298_STANDARD_PINS
,
5743 {0x17, 0x90170110}),
5744 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
5745 ALC298_STANDARD_PINS
,
5746 {0x17, 0x90170140}),
5747 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE
,
5748 ALC298_STANDARD_PINS
,
5749 {0x17, 0x90170150}),
5753 static void alc269_fill_coef(struct hda_codec
*codec
)
5755 struct alc_spec
*spec
= codec
->spec
;
5758 if (spec
->codec_variant
!= ALC269_TYPE_ALC269VB
)
5761 if ((alc_get_coef0(codec
) & 0x00ff) < 0x015) {
5762 alc_write_coef_idx(codec
, 0xf, 0x960b);
5763 alc_write_coef_idx(codec
, 0xe, 0x8817);
5766 if ((alc_get_coef0(codec
) & 0x00ff) == 0x016) {
5767 alc_write_coef_idx(codec
, 0xf, 0x960b);
5768 alc_write_coef_idx(codec
, 0xe, 0x8814);
5771 if ((alc_get_coef0(codec
) & 0x00ff) == 0x017) {
5772 /* Power up output pin */
5773 alc_update_coef_idx(codec
, 0x04, 0, 1<<11);
5776 if ((alc_get_coef0(codec
) & 0x00ff) == 0x018) {
5777 val
= alc_read_coef_idx(codec
, 0xd);
5778 if (val
!= -1 && (val
& 0x0c00) >> 10 != 0x1) {
5779 /* Capless ramp up clock control */
5780 alc_write_coef_idx(codec
, 0xd, val
| (1<<10));
5782 val
= alc_read_coef_idx(codec
, 0x17);
5783 if (val
!= -1 && (val
& 0x01c0) >> 6 != 0x4) {
5784 /* Class D power on reset */
5785 alc_write_coef_idx(codec
, 0x17, val
| (1<<7));
5790 alc_update_coef_idx(codec
, 0x4, 0, 1<<11);
5795 static int patch_alc269(struct hda_codec
*codec
)
5797 struct alc_spec
*spec
;
5800 err
= alc_alloc_spec(codec
, 0x0b);
5805 spec
->gen
.shared_mic_vref_pin
= 0x18;
5806 codec
->power_save_node
= 1;
5809 codec
->patch_ops
.suspend
= alc269_suspend
;
5810 codec
->patch_ops
.resume
= alc269_resume
;
5812 spec
->shutup
= alc269_shutup
;
5814 snd_hda_pick_fixup(codec
, alc269_fixup_models
,
5815 alc269_fixup_tbl
, alc269_fixups
);
5816 snd_hda_pick_pin_fixup(codec
, alc269_pin_fixup_tbl
, alc269_fixups
);
5817 snd_hda_pick_fixup(codec
, NULL
, alc269_fixup_vendor_tbl
,
5819 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
5821 alc_auto_parse_customize_define(codec
);
5823 if (has_cdefine_beep(codec
))
5824 spec
->gen
.beep_nid
= 0x01;
5826 switch (codec
->core
.vendor_id
) {
5828 spec
->codec_variant
= ALC269_TYPE_ALC269VA
;
5829 switch (alc_get_coef0(codec
) & 0x00f0) {
5831 if (codec
->bus
->pci
&&
5832 codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
5833 spec
->cdefine
.platform_type
== 1)
5834 err
= alc_codec_rename(codec
, "ALC271X");
5835 spec
->codec_variant
= ALC269_TYPE_ALC269VB
;
5838 if (codec
->bus
->pci
&&
5839 codec
->bus
->pci
->subsystem_vendor
== 0x17aa &&
5840 codec
->bus
->pci
->subsystem_device
== 0x21f3)
5841 err
= alc_codec_rename(codec
, "ALC3202");
5842 spec
->codec_variant
= ALC269_TYPE_ALC269VC
;
5845 spec
->codec_variant
= ALC269_TYPE_ALC269VD
;
5848 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
5852 spec
->init_hook
= alc269_fill_coef
;
5853 alc269_fill_coef(codec
);
5858 spec
->codec_variant
= ALC269_TYPE_ALC280
;
5861 spec
->codec_variant
= ALC269_TYPE_ALC282
;
5862 spec
->shutup
= alc282_shutup
;
5863 spec
->init_hook
= alc282_init
;
5867 spec
->codec_variant
= ALC269_TYPE_ALC283
;
5868 spec
->shutup
= alc283_shutup
;
5869 spec
->init_hook
= alc283_init
;
5873 spec
->codec_variant
= ALC269_TYPE_ALC284
;
5877 spec
->codec_variant
= ALC269_TYPE_ALC285
;
5881 spec
->codec_variant
= ALC269_TYPE_ALC286
;
5882 spec
->shutup
= alc286_shutup
;
5885 spec
->codec_variant
= ALC269_TYPE_ALC298
;
5888 spec
->codec_variant
= ALC269_TYPE_ALC255
;
5891 spec
->codec_variant
= ALC269_TYPE_ALC256
;
5892 spec
->gen
.mixer_nid
= 0; /* ALC256 does not have any loopback mixer path */
5893 alc_update_coef_idx(codec
, 0x36, 1 << 13, 1 << 5); /* Switch pcbeep path to Line in path*/
5897 if (snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_PARAMETERS
, 0) == 0x10ec5505) {
5898 spec
->has_alc5505_dsp
= 1;
5899 spec
->init_hook
= alc5505_dsp_init
;
5902 /* automatic parse from the BIOS config */
5903 err
= alc269_parse_auto_config(codec
);
5907 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
&& spec
->gen
.mixer_nid
)
5908 set_beep_amp(spec
, spec
->gen
.mixer_nid
, 0x04, HDA_INPUT
);
5910 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
5923 static int alc861_parse_auto_config(struct hda_codec
*codec
)
5925 static const hda_nid_t alc861_ignore
[] = { 0x1d, 0 };
5926 static const hda_nid_t alc861_ssids
[] = { 0x0e, 0x0f, 0x0b, 0 };
5927 return alc_parse_auto_config(codec
, alc861_ignore
, alc861_ssids
);
5930 /* Pin config fixes */
5932 ALC861_FIXUP_FSC_AMILO_PI1505
,
5933 ALC861_FIXUP_AMP_VREF_0F
,
5934 ALC861_FIXUP_NO_JACK_DETECT
,
5935 ALC861_FIXUP_ASUS_A6RP
,
5936 ALC660_FIXUP_ASUS_W7J
,
5939 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
5940 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec
*codec
,
5941 const struct hda_fixup
*fix
, int action
)
5943 struct alc_spec
*spec
= codec
->spec
;
5946 if (action
!= HDA_FIXUP_ACT_INIT
)
5948 val
= snd_hda_codec_get_pin_target(codec
, 0x0f);
5949 if (!(val
& (AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
)))
5950 val
|= AC_PINCTL_IN_EN
;
5951 val
|= AC_PINCTL_VREF_50
;
5952 snd_hda_set_pin_ctl(codec
, 0x0f, val
);
5953 spec
->gen
.keep_vref_in_automute
= 1;
5956 /* suppress the jack-detection */
5957 static void alc_fixup_no_jack_detect(struct hda_codec
*codec
,
5958 const struct hda_fixup
*fix
, int action
)
5960 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
5961 codec
->no_jack_detect
= 1;
5964 static const struct hda_fixup alc861_fixups
[] = {
5965 [ALC861_FIXUP_FSC_AMILO_PI1505
] = {
5966 .type
= HDA_FIXUP_PINS
,
5967 .v
.pins
= (const struct hda_pintbl
[]) {
5968 { 0x0b, 0x0221101f }, /* HP */
5969 { 0x0f, 0x90170310 }, /* speaker */
5973 [ALC861_FIXUP_AMP_VREF_0F
] = {
5974 .type
= HDA_FIXUP_FUNC
,
5975 .v
.func
= alc861_fixup_asus_amp_vref_0f
,
5977 [ALC861_FIXUP_NO_JACK_DETECT
] = {
5978 .type
= HDA_FIXUP_FUNC
,
5979 .v
.func
= alc_fixup_no_jack_detect
,
5981 [ALC861_FIXUP_ASUS_A6RP
] = {
5982 .type
= HDA_FIXUP_FUNC
,
5983 .v
.func
= alc861_fixup_asus_amp_vref_0f
,
5985 .chain_id
= ALC861_FIXUP_NO_JACK_DETECT
,
5987 [ALC660_FIXUP_ASUS_W7J
] = {
5988 .type
= HDA_FIXUP_VERBS
,
5989 .v
.verbs
= (const struct hda_verb
[]) {
5990 /* ASUS W7J needs a magic pin setup on unused NID 0x10
5991 * for enabling outputs
5993 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
5999 static const struct snd_pci_quirk alc861_fixup_tbl
[] = {
6000 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J
),
6001 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J
),
6002 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP
),
6003 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F
),
6004 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT
),
6005 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F
),
6006 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F
),
6007 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505
),
6013 static int patch_alc861(struct hda_codec
*codec
)
6015 struct alc_spec
*spec
;
6018 err
= alc_alloc_spec(codec
, 0x15);
6023 spec
->gen
.beep_nid
= 0x23;
6026 spec
->power_hook
= alc_power_eapd
;
6029 snd_hda_pick_fixup(codec
, NULL
, alc861_fixup_tbl
, alc861_fixups
);
6030 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
6032 /* automatic parse from the BIOS config */
6033 err
= alc861_parse_auto_config(codec
);
6037 if (!spec
->gen
.no_analog
)
6038 set_beep_amp(spec
, 0x23, 0, HDA_OUTPUT
);
6040 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
6054 * In addition, an independent DAC
6056 static int alc861vd_parse_auto_config(struct hda_codec
*codec
)
6058 static const hda_nid_t alc861vd_ignore
[] = { 0x1d, 0 };
6059 static const hda_nid_t alc861vd_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
6060 return alc_parse_auto_config(codec
, alc861vd_ignore
, alc861vd_ssids
);
6064 ALC660VD_FIX_ASUS_GPIO1
,
6065 ALC861VD_FIX_DALLAS
,
6068 /* exclude VREF80 */
6069 static void alc861vd_fixup_dallas(struct hda_codec
*codec
,
6070 const struct hda_fixup
*fix
, int action
)
6072 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6073 snd_hda_override_pin_caps(codec
, 0x18, 0x00000734);
6074 snd_hda_override_pin_caps(codec
, 0x19, 0x0000073c);
6078 static const struct hda_fixup alc861vd_fixups
[] = {
6079 [ALC660VD_FIX_ASUS_GPIO1
] = {
6080 .type
= HDA_FIXUP_VERBS
,
6081 .v
.verbs
= (const struct hda_verb
[]) {
6083 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
6084 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
6085 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
6089 [ALC861VD_FIX_DALLAS
] = {
6090 .type
= HDA_FIXUP_FUNC
,
6091 .v
.func
= alc861vd_fixup_dallas
,
6095 static const struct snd_pci_quirk alc861vd_fixup_tbl
[] = {
6096 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS
),
6097 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1
),
6098 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS
),
6104 static int patch_alc861vd(struct hda_codec
*codec
)
6106 struct alc_spec
*spec
;
6109 err
= alc_alloc_spec(codec
, 0x0b);
6114 spec
->gen
.beep_nid
= 0x23;
6116 spec
->shutup
= alc_eapd_shutup
;
6118 snd_hda_pick_fixup(codec
, NULL
, alc861vd_fixup_tbl
, alc861vd_fixups
);
6119 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
6121 /* automatic parse from the BIOS config */
6122 err
= alc861vd_parse_auto_config(codec
);
6126 if (!spec
->gen
.no_analog
)
6127 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
6129 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
6141 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
6142 * configuration. Each pin widget can choose any input DACs and a mixer.
6143 * Each ADC is connected from a mixer of all inputs. This makes possible
6144 * 6-channel independent captures.
6146 * In addition, an independent DAC for the multi-playback (not used in this
6151 * BIOS auto configuration
6154 static int alc662_parse_auto_config(struct hda_codec
*codec
)
6156 static const hda_nid_t alc662_ignore
[] = { 0x1d, 0 };
6157 static const hda_nid_t alc663_ssids
[] = { 0x15, 0x1b, 0x14, 0x21 };
6158 static const hda_nid_t alc662_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
6159 const hda_nid_t
*ssids
;
6161 if (codec
->core
.vendor_id
== 0x10ec0272 || codec
->core
.vendor_id
== 0x10ec0663 ||
6162 codec
->core
.vendor_id
== 0x10ec0665 || codec
->core
.vendor_id
== 0x10ec0670 ||
6163 codec
->core
.vendor_id
== 0x10ec0671)
6164 ssids
= alc663_ssids
;
6166 ssids
= alc662_ssids
;
6167 return alc_parse_auto_config(codec
, alc662_ignore
, ssids
);
6170 static void alc272_fixup_mario(struct hda_codec
*codec
,
6171 const struct hda_fixup
*fix
, int action
)
6173 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
6175 if (snd_hda_override_amp_caps(codec
, 0x2, HDA_OUTPUT
,
6176 (0x3b << AC_AMPCAP_OFFSET_SHIFT
) |
6177 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT
) |
6178 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
6179 (0 << AC_AMPCAP_MUTE_SHIFT
)))
6180 codec_warn(codec
, "failed to override amp caps for NID 0x2\n");
6183 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps
[] = {
6185 .map
= { SNDRV_CHMAP_FL
, SNDRV_CHMAP_FR
} },
6187 .map
= { SNDRV_CHMAP_FL
, SNDRV_CHMAP_FR
,
6188 SNDRV_CHMAP_NA
, SNDRV_CHMAP_LFE
} }, /* LFE only on right */
6192 /* override the 2.1 chmap */
6193 static void alc_fixup_bass_chmap(struct hda_codec
*codec
,
6194 const struct hda_fixup
*fix
, int action
)
6196 if (action
== HDA_FIXUP_ACT_BUILD
) {
6197 struct alc_spec
*spec
= codec
->spec
;
6198 spec
->gen
.pcm_rec
[0]->stream
[0].chmap
= asus_pcm_2_1_chmaps
;
6202 /* avoid D3 for keeping GPIO up */
6203 static unsigned int gpio_led_power_filter(struct hda_codec
*codec
,
6205 unsigned int power_state
)
6207 struct alc_spec
*spec
= codec
->spec
;
6208 if (nid
== codec
->core
.afg
&& power_state
== AC_PWRST_D3
&& spec
->gpio_led
)
6213 static void alc662_fixup_led_gpio1(struct hda_codec
*codec
,
6214 const struct hda_fixup
*fix
, int action
)
6216 struct alc_spec
*spec
= codec
->spec
;
6217 static const struct hda_verb gpio_init
[] = {
6218 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x01 },
6219 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01 },
6223 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
6224 spec
->gen
.vmaster_mute
.hook
= alc_fixup_gpio_mute_hook
;
6226 spec
->mute_led_polarity
= 1;
6227 spec
->gpio_mute_led_mask
= 0x01;
6228 snd_hda_add_verbs(codec
, gpio_init
);
6229 codec
->power_filter
= gpio_led_power_filter
;
6233 static struct coef_fw alc668_coefs
[] = {
6234 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
6235 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
6236 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
6237 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
6238 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
6239 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
6240 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
6241 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
6242 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
6243 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
6244 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
6245 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
6246 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
6247 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
6248 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
6249 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
6250 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
6251 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
6252 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
6253 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
6257 static void alc668_restore_default_value(struct hda_codec
*codec
)
6259 alc_process_coef_fw(codec
, alc668_coefs
);
6263 ALC662_FIXUP_ASPIRE
,
6264 ALC662_FIXUP_LED_GPIO1
,
6265 ALC662_FIXUP_IDEAPAD
,
6267 ALC662_FIXUP_CZC_P10T
,
6268 ALC662_FIXUP_SKU_IGNORE
,
6269 ALC662_FIXUP_HP_RP5800
,
6270 ALC662_FIXUP_ASUS_MODE1
,
6271 ALC662_FIXUP_ASUS_MODE2
,
6272 ALC662_FIXUP_ASUS_MODE3
,
6273 ALC662_FIXUP_ASUS_MODE4
,
6274 ALC662_FIXUP_ASUS_MODE5
,
6275 ALC662_FIXUP_ASUS_MODE6
,
6276 ALC662_FIXUP_ASUS_MODE7
,
6277 ALC662_FIXUP_ASUS_MODE8
,
6278 ALC662_FIXUP_NO_JACK_DETECT
,
6279 ALC662_FIXUP_ZOTAC_Z68
,
6280 ALC662_FIXUP_INV_DMIC
,
6281 ALC662_FIXUP_DELL_MIC_NO_PRESENCE
,
6282 ALC668_FIXUP_DELL_MIC_NO_PRESENCE
,
6283 ALC662_FIXUP_HEADSET_MODE
,
6284 ALC668_FIXUP_HEADSET_MODE
,
6285 ALC662_FIXUP_BASS_MODE4_CHMAP
,
6286 ALC662_FIXUP_BASS_16
,
6287 ALC662_FIXUP_BASS_1A
,
6288 ALC662_FIXUP_BASS_CHMAP
,
6289 ALC668_FIXUP_AUTO_MUTE
,
6290 ALC668_FIXUP_DELL_DISABLE_AAMIX
,
6291 ALC668_FIXUP_DELL_XPS13
,
6294 static const struct hda_fixup alc662_fixups
[] = {
6295 [ALC662_FIXUP_ASPIRE
] = {
6296 .type
= HDA_FIXUP_PINS
,
6297 .v
.pins
= (const struct hda_pintbl
[]) {
6298 { 0x15, 0x99130112 }, /* subwoofer */
6302 [ALC662_FIXUP_LED_GPIO1
] = {
6303 .type
= HDA_FIXUP_FUNC
,
6304 .v
.func
= alc662_fixup_led_gpio1
,
6306 [ALC662_FIXUP_IDEAPAD
] = {
6307 .type
= HDA_FIXUP_PINS
,
6308 .v
.pins
= (const struct hda_pintbl
[]) {
6309 { 0x17, 0x99130112 }, /* subwoofer */
6313 .chain_id
= ALC662_FIXUP_LED_GPIO1
,
6315 [ALC272_FIXUP_MARIO
] = {
6316 .type
= HDA_FIXUP_FUNC
,
6317 .v
.func
= alc272_fixup_mario
,
6319 [ALC662_FIXUP_CZC_P10T
] = {
6320 .type
= HDA_FIXUP_VERBS
,
6321 .v
.verbs
= (const struct hda_verb
[]) {
6322 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
6326 [ALC662_FIXUP_SKU_IGNORE
] = {
6327 .type
= HDA_FIXUP_FUNC
,
6328 .v
.func
= alc_fixup_sku_ignore
,
6330 [ALC662_FIXUP_HP_RP5800
] = {
6331 .type
= HDA_FIXUP_PINS
,
6332 .v
.pins
= (const struct hda_pintbl
[]) {
6333 { 0x14, 0x0221201f }, /* HP out */
6337 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6339 [ALC662_FIXUP_ASUS_MODE1
] = {
6340 .type
= HDA_FIXUP_PINS
,
6341 .v
.pins
= (const struct hda_pintbl
[]) {
6342 { 0x14, 0x99130110 }, /* speaker */
6343 { 0x18, 0x01a19c20 }, /* mic */
6344 { 0x19, 0x99a3092f }, /* int-mic */
6345 { 0x21, 0x0121401f }, /* HP out */
6349 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6351 [ALC662_FIXUP_ASUS_MODE2
] = {
6352 .type
= HDA_FIXUP_PINS
,
6353 .v
.pins
= (const struct hda_pintbl
[]) {
6354 { 0x14, 0x99130110 }, /* speaker */
6355 { 0x18, 0x01a19820 }, /* mic */
6356 { 0x19, 0x99a3092f }, /* int-mic */
6357 { 0x1b, 0x0121401f }, /* HP out */
6361 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6363 [ALC662_FIXUP_ASUS_MODE3
] = {
6364 .type
= HDA_FIXUP_PINS
,
6365 .v
.pins
= (const struct hda_pintbl
[]) {
6366 { 0x14, 0x99130110 }, /* speaker */
6367 { 0x15, 0x0121441f }, /* HP */
6368 { 0x18, 0x01a19840 }, /* mic */
6369 { 0x19, 0x99a3094f }, /* int-mic */
6370 { 0x21, 0x01211420 }, /* HP2 */
6374 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6376 [ALC662_FIXUP_ASUS_MODE4
] = {
6377 .type
= HDA_FIXUP_PINS
,
6378 .v
.pins
= (const struct hda_pintbl
[]) {
6379 { 0x14, 0x99130110 }, /* speaker */
6380 { 0x16, 0x99130111 }, /* speaker */
6381 { 0x18, 0x01a19840 }, /* mic */
6382 { 0x19, 0x99a3094f }, /* int-mic */
6383 { 0x21, 0x0121441f }, /* HP */
6387 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6389 [ALC662_FIXUP_ASUS_MODE5
] = {
6390 .type
= HDA_FIXUP_PINS
,
6391 .v
.pins
= (const struct hda_pintbl
[]) {
6392 { 0x14, 0x99130110 }, /* speaker */
6393 { 0x15, 0x0121441f }, /* HP */
6394 { 0x16, 0x99130111 }, /* speaker */
6395 { 0x18, 0x01a19840 }, /* mic */
6396 { 0x19, 0x99a3094f }, /* int-mic */
6400 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6402 [ALC662_FIXUP_ASUS_MODE6
] = {
6403 .type
= HDA_FIXUP_PINS
,
6404 .v
.pins
= (const struct hda_pintbl
[]) {
6405 { 0x14, 0x99130110 }, /* speaker */
6406 { 0x15, 0x01211420 }, /* HP2 */
6407 { 0x18, 0x01a19840 }, /* mic */
6408 { 0x19, 0x99a3094f }, /* int-mic */
6409 { 0x1b, 0x0121441f }, /* HP */
6413 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6415 [ALC662_FIXUP_ASUS_MODE7
] = {
6416 .type
= HDA_FIXUP_PINS
,
6417 .v
.pins
= (const struct hda_pintbl
[]) {
6418 { 0x14, 0x99130110 }, /* speaker */
6419 { 0x17, 0x99130111 }, /* speaker */
6420 { 0x18, 0x01a19840 }, /* mic */
6421 { 0x19, 0x99a3094f }, /* int-mic */
6422 { 0x1b, 0x01214020 }, /* HP */
6423 { 0x21, 0x0121401f }, /* HP */
6427 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6429 [ALC662_FIXUP_ASUS_MODE8
] = {
6430 .type
= HDA_FIXUP_PINS
,
6431 .v
.pins
= (const struct hda_pintbl
[]) {
6432 { 0x14, 0x99130110 }, /* speaker */
6433 { 0x12, 0x99a30970 }, /* int-mic */
6434 { 0x15, 0x01214020 }, /* HP */
6435 { 0x17, 0x99130111 }, /* speaker */
6436 { 0x18, 0x01a19840 }, /* mic */
6437 { 0x21, 0x0121401f }, /* HP */
6441 .chain_id
= ALC662_FIXUP_SKU_IGNORE
6443 [ALC662_FIXUP_NO_JACK_DETECT
] = {
6444 .type
= HDA_FIXUP_FUNC
,
6445 .v
.func
= alc_fixup_no_jack_detect
,
6447 [ALC662_FIXUP_ZOTAC_Z68
] = {
6448 .type
= HDA_FIXUP_PINS
,
6449 .v
.pins
= (const struct hda_pintbl
[]) {
6450 { 0x1b, 0x02214020 }, /* Front HP */
6454 [ALC662_FIXUP_INV_DMIC
] = {
6455 .type
= HDA_FIXUP_FUNC
,
6456 .v
.func
= alc_fixup_inv_dmic
,
6458 [ALC668_FIXUP_DELL_XPS13
] = {
6459 .type
= HDA_FIXUP_FUNC
,
6460 .v
.func
= alc_fixup_dell_xps13
,
6462 .chain_id
= ALC668_FIXUP_DELL_DISABLE_AAMIX
6464 [ALC668_FIXUP_DELL_DISABLE_AAMIX
] = {
6465 .type
= HDA_FIXUP_FUNC
,
6466 .v
.func
= alc_fixup_disable_aamix
,
6468 .chain_id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
6470 [ALC668_FIXUP_AUTO_MUTE
] = {
6471 .type
= HDA_FIXUP_FUNC
,
6472 .v
.func
= alc_fixup_auto_mute_via_amp
,
6474 .chain_id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
6476 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE
] = {
6477 .type
= HDA_FIXUP_PINS
,
6478 .v
.pins
= (const struct hda_pintbl
[]) {
6479 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
6480 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
6484 .chain_id
= ALC662_FIXUP_HEADSET_MODE
6486 [ALC662_FIXUP_HEADSET_MODE
] = {
6487 .type
= HDA_FIXUP_FUNC
,
6488 .v
.func
= alc_fixup_headset_mode_alc662
,
6490 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE
] = {
6491 .type
= HDA_FIXUP_PINS
,
6492 .v
.pins
= (const struct hda_pintbl
[]) {
6493 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
6494 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
6498 .chain_id
= ALC668_FIXUP_HEADSET_MODE
6500 [ALC668_FIXUP_HEADSET_MODE
] = {
6501 .type
= HDA_FIXUP_FUNC
,
6502 .v
.func
= alc_fixup_headset_mode_alc668
,
6504 [ALC662_FIXUP_BASS_MODE4_CHMAP
] = {
6505 .type
= HDA_FIXUP_FUNC
,
6506 .v
.func
= alc_fixup_bass_chmap
,
6508 .chain_id
= ALC662_FIXUP_ASUS_MODE4
6510 [ALC662_FIXUP_BASS_16
] = {
6511 .type
= HDA_FIXUP_PINS
,
6512 .v
.pins
= (const struct hda_pintbl
[]) {
6513 {0x16, 0x80106111}, /* bass speaker */
6517 .chain_id
= ALC662_FIXUP_BASS_CHMAP
,
6519 [ALC662_FIXUP_BASS_1A
] = {
6520 .type
= HDA_FIXUP_PINS
,
6521 .v
.pins
= (const struct hda_pintbl
[]) {
6522 {0x1a, 0x80106111}, /* bass speaker */
6526 .chain_id
= ALC662_FIXUP_BASS_CHMAP
,
6528 [ALC662_FIXUP_BASS_CHMAP
] = {
6529 .type
= HDA_FIXUP_FUNC
,
6530 .v
.func
= alc_fixup_bass_chmap
,
6534 static const struct snd_pci_quirk alc662_fixup_tbl
[] = {
6535 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2
),
6536 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC
),
6537 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC
),
6538 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE
),
6539 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE
),
6540 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC
),
6541 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC
),
6542 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE
),
6543 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6544 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6545 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13
),
6546 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13
),
6547 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13
),
6548 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6549 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6550 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6551 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6552 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
6553 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800
),
6554 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_BASS_1A
),
6555 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP
),
6556 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16
),
6557 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16
),
6558 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP
),
6559 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT
),
6560 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2
),
6561 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD
),
6562 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD
),
6563 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD
),
6564 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68
),
6565 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T
),
6568 /* Below is a quirk table taken from the old code.
6569 * Basically the device should work as is without the fixup table.
6570 * If BIOS doesn't give a proper info, enable the corresponding
6573 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1
),
6574 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3
),
6575 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1
),
6576 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3
),
6577 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
6578 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6579 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
6580 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1
),
6581 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1
),
6582 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6583 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7
),
6584 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7
),
6585 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8
),
6586 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3
),
6587 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1
),
6588 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6589 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2
),
6590 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1
),
6591 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6592 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
6593 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
6594 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6595 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1
),
6596 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3
),
6597 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2
),
6598 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6599 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5
),
6600 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
6601 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6602 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1
),
6603 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6604 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6605 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3
),
6606 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3
),
6607 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1
),
6608 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1
),
6609 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1
),
6610 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1
),
6611 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1
),
6612 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
6613 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2
),
6614 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1
),
6615 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
6616 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3
),
6617 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1
),
6618 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1
),
6619 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1
),
6620 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2
),
6621 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
6622 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4
),
6627 static const struct hda_model_fixup alc662_fixup_models
[] = {
6628 {.id
= ALC272_FIXUP_MARIO
, .name
= "mario"},
6629 {.id
= ALC662_FIXUP_ASUS_MODE1
, .name
= "asus-mode1"},
6630 {.id
= ALC662_FIXUP_ASUS_MODE2
, .name
= "asus-mode2"},
6631 {.id
= ALC662_FIXUP_ASUS_MODE3
, .name
= "asus-mode3"},
6632 {.id
= ALC662_FIXUP_ASUS_MODE4
, .name
= "asus-mode4"},
6633 {.id
= ALC662_FIXUP_ASUS_MODE5
, .name
= "asus-mode5"},
6634 {.id
= ALC662_FIXUP_ASUS_MODE6
, .name
= "asus-mode6"},
6635 {.id
= ALC662_FIXUP_ASUS_MODE7
, .name
= "asus-mode7"},
6636 {.id
= ALC662_FIXUP_ASUS_MODE8
, .name
= "asus-mode8"},
6637 {.id
= ALC662_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
6638 {.id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
, .name
= "dell-headset-multi"},
6642 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl
[] = {
6643 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE
,
6647 {0x1b, 0x0221401f}),
6648 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
6652 {0x16, 0x03011020}),
6653 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
6657 {0x16, 0x03011020}),
6658 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
6662 {0x16, 0x03011020}),
6663 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE
,
6666 {0x16, 0x03011020}),
6667 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE
,
6670 {0x15, 0x0321101f}),
6676 static int patch_alc662(struct hda_codec
*codec
)
6678 struct alc_spec
*spec
;
6681 err
= alc_alloc_spec(codec
, 0x0b);
6687 spec
->shutup
= alc_eapd_shutup
;
6689 /* handle multiple HPs as is */
6690 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
6692 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
6694 switch (codec
->core
.vendor_id
) {
6696 spec
->init_hook
= alc668_restore_default_value
;
6700 snd_hda_pick_fixup(codec
, alc662_fixup_models
,
6701 alc662_fixup_tbl
, alc662_fixups
);
6702 snd_hda_pick_pin_fixup(codec
, alc662_pin_fixup_tbl
, alc662_fixups
);
6703 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
6705 alc_auto_parse_customize_define(codec
);
6707 if (has_cdefine_beep(codec
))
6708 spec
->gen
.beep_nid
= 0x01;
6710 if ((alc_get_coef0(codec
) & (1 << 14)) &&
6711 codec
->bus
->pci
&& codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
6712 spec
->cdefine
.platform_type
== 1) {
6713 err
= alc_codec_rename(codec
, "ALC272X");
6718 /* automatic parse from the BIOS config */
6719 err
= alc662_parse_auto_config(codec
);
6723 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
) {
6724 switch (codec
->core
.vendor_id
) {
6726 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
6732 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
6735 set_beep_amp(spec
, 0x0b, 0x03, HDA_INPUT
);
6740 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
6753 static int alc680_parse_auto_config(struct hda_codec
*codec
)
6755 return alc_parse_auto_config(codec
, NULL
, NULL
);
6760 static int patch_alc680(struct hda_codec
*codec
)
6764 /* ALC680 has no aa-loopback mixer */
6765 err
= alc_alloc_spec(codec
, 0);
6769 /* automatic parse from the BIOS config */
6770 err
= alc680_parse_auto_config(codec
);
6782 static const struct hda_device_id snd_hda_id_realtek
[] = {
6783 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269
),
6784 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269
),
6785 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269
),
6786 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269
),
6787 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269
),
6788 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269
),
6789 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260
),
6790 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262
),
6791 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268
),
6792 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268
),
6793 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269
),
6794 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269
),
6795 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662
),
6796 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269
),
6797 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269
),
6798 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269
),
6799 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269
),
6800 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269
),
6801 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269
),
6802 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269
),
6803 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269
),
6804 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269
),
6805 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269
),
6806 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269
),
6807 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269
),
6808 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269
),
6809 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861
),
6810 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd
),
6811 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861
),
6812 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd
),
6813 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882
),
6814 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662
),
6815 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662
),
6816 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662
),
6817 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662
),
6818 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662
),
6819 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662
),
6820 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662
),
6821 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662
),
6822 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680
),
6823 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc882
),
6824 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880
),
6825 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882
),
6826 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882
),
6827 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882
),
6828 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882
),
6829 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882
),
6830 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882
),
6831 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882
),
6832 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882
),
6833 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882
),
6834 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662
),
6835 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882
),
6836 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882
),
6839 MODULE_DEVICE_TABLE(hdaudio
, snd_hda_id_realtek
);
6841 MODULE_LICENSE("GPL");
6842 MODULE_DESCRIPTION("Realtek HD-audio codec");
6844 static struct hda_codec_driver realtek_driver
= {
6845 .id
= snd_hda_id_realtek
,
6848 module_hda_codec_driver(realtek_driver
);