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 <sound/core.h>
33 #include <sound/jack.h>
34 #include "hda_codec.h"
35 #include "hda_local.h"
36 #include "hda_auto_parser.h"
38 #include "hda_generic.h"
40 /* keep halting ALC5505 DSP, for power saving */
41 #define HALT_REALTEK_ALC5505
43 /* unsol event tags */
44 #define ALC_DCVOL_EVENT 0x08
47 #define GPIO_MASK 0x03
49 /* extra amp-initialization sequence types */
59 ALC_HEADSET_MODE_UNKNOWN
,
60 ALC_HEADSET_MODE_UNPLUGGED
,
61 ALC_HEADSET_MODE_HEADSET
,
63 ALC_HEADSET_MODE_HEADPHONE
,
67 ALC_HEADSET_TYPE_UNKNOWN
,
68 ALC_HEADSET_TYPE_CTIA
,
69 ALC_HEADSET_TYPE_OMTP
,
72 struct alc_customize_define
{
74 unsigned char port_connectivity
;
75 unsigned char check_sum
;
76 unsigned char customization
;
77 unsigned char external_amp
;
78 unsigned int enable_pcbeep
:1;
79 unsigned int platform_type
:1;
81 unsigned int override
:1;
82 unsigned int fixup
:1; /* Means that this sku is set by driver, not read from hw */
86 struct hda_gen_spec gen
; /* must be at head */
88 /* codec parameterization */
89 const struct snd_kcontrol_new
*mixers
[5]; /* mixer arrays */
90 unsigned int num_mixers
;
91 unsigned int beep_amp
; /* beep amp value, set via set_beep_amp() */
93 struct alc_customize_define cdefine
;
94 unsigned int parse_flags
; /* flag for snd_hda_parse_pin_defcfg() */
96 /* inverted dmic fix */
97 unsigned int inv_dmic_fixup
:1; /* has inverted digital-mic workaround */
98 unsigned int inv_dmic_muted
:1; /* R-ch of inv d-mic is muted? */
99 hda_nid_t inv_dmic_pin
;
101 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
102 int mute_led_polarity
;
103 hda_nid_t mute_led_nid
;
105 unsigned int gpio_led
; /* used for alc269_fixup_hp_gpio_led() */
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
);
120 int codec_variant
; /* flag for other variants */
121 unsigned int has_alc5505_dsp
:1;
122 unsigned int no_depop_delay
:1;
126 unsigned int pll_coef_idx
, pll_coef_bit
;
131 * Append the given mixer and verb elements for the later use
132 * The mixer array is referred in build_controls(), and init_verbs are
135 static void add_mixer(struct alc_spec
*spec
, const struct snd_kcontrol_new
*mix
)
137 if (snd_BUG_ON(spec
->num_mixers
>= ARRAY_SIZE(spec
->mixers
)))
139 spec
->mixers
[spec
->num_mixers
++] = mix
;
143 * GPIO setup tables, used in initialization
145 /* Enable GPIO mask and set output */
146 static const struct hda_verb alc_gpio1_init_verbs
[] = {
147 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
148 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
149 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
153 static const struct hda_verb alc_gpio2_init_verbs
[] = {
154 {0x01, AC_VERB_SET_GPIO_MASK
, 0x02},
155 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x02},
156 {0x01, AC_VERB_SET_GPIO_DATA
, 0x02},
160 static const struct hda_verb alc_gpio3_init_verbs
[] = {
161 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
162 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x03},
163 {0x01, AC_VERB_SET_GPIO_DATA
, 0x03},
168 * Fix hardware PLL issue
169 * On some codecs, the analog PLL gating control must be off while
170 * the default value is 1.
172 static void alc_fix_pll(struct hda_codec
*codec
)
174 struct alc_spec
*spec
= codec
->spec
;
179 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_COEF_INDEX
,
181 val
= snd_hda_codec_read(codec
, spec
->pll_nid
, 0,
182 AC_VERB_GET_PROC_COEF
, 0);
183 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_COEF_INDEX
,
185 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_PROC_COEF
,
186 val
& ~(1 << spec
->pll_coef_bit
));
189 static void alc_fix_pll_init(struct hda_codec
*codec
, hda_nid_t nid
,
190 unsigned int coef_idx
, unsigned int coef_bit
)
192 struct alc_spec
*spec
= codec
->spec
;
194 spec
->pll_coef_idx
= coef_idx
;
195 spec
->pll_coef_bit
= coef_bit
;
199 /* update the master volume per volume-knob's unsol event */
200 static void alc_update_knob_master(struct hda_codec
*codec
, struct hda_jack_tbl
*jack
)
203 struct snd_kcontrol
*kctl
;
204 struct snd_ctl_elem_value
*uctl
;
206 kctl
= snd_hda_find_mixer_ctl(codec
, "Master Playback Volume");
209 uctl
= kzalloc(sizeof(*uctl
), GFP_KERNEL
);
212 val
= snd_hda_codec_read(codec
, jack
->nid
, 0,
213 AC_VERB_GET_VOLUME_KNOB_CONTROL
, 0);
214 val
&= HDA_AMP_VOLMASK
;
215 uctl
->value
.integer
.value
[0] = val
;
216 uctl
->value
.integer
.value
[1] = val
;
217 kctl
->put(kctl
, uctl
);
221 static void alc880_unsol_event(struct hda_codec
*codec
, unsigned int res
)
223 /* For some reason, the res given from ALC880 is broken.
224 Here we adjust it properly. */
225 snd_hda_jack_unsol_event(codec
, res
>> 2);
228 /* additional initialization for ALC888 variants */
229 static void alc888_coef_init(struct hda_codec
*codec
)
233 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 0);
234 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
235 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 7);
236 if ((tmp
& 0xf0) == 0x20)
238 snd_hda_codec_read(codec
, 0x20, 0,
239 AC_VERB_SET_PROC_COEF
, 0x830);
242 snd_hda_codec_read(codec
, 0x20, 0,
243 AC_VERB_SET_PROC_COEF
, 0x3030);
246 /* additional initialization for ALC889 variants */
247 static void alc889_coef_init(struct hda_codec
*codec
)
251 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 7);
252 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
253 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 7);
254 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_PROC_COEF
, tmp
|0x2010);
257 /* turn on/off EAPD control (only if available) */
258 static void set_eapd(struct hda_codec
*codec
, hda_nid_t nid
, int on
)
260 if (get_wcaps_type(get_wcaps(codec
, nid
)) != AC_WID_PIN
)
262 if (snd_hda_query_pin_caps(codec
, nid
) & AC_PINCAP_EAPD
)
263 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
267 /* turn on/off EAPD controls of the codec */
268 static void alc_auto_setup_eapd(struct hda_codec
*codec
, bool on
)
270 /* We currently only handle front, HP */
271 static hda_nid_t pins
[] = {
272 0x0f, 0x10, 0x14, 0x15, 0
275 for (p
= pins
; *p
; p
++)
276 set_eapd(codec
, *p
, on
);
279 /* generic shutup callback;
280 * just turning off EPAD and a little pause for avoiding pop-noise
282 static void alc_eapd_shutup(struct hda_codec
*codec
)
284 struct alc_spec
*spec
= codec
->spec
;
286 alc_auto_setup_eapd(codec
, false);
287 if (!spec
->no_depop_delay
)
289 snd_hda_shutup_pins(codec
);
292 /* generic EAPD initialization */
293 static void alc_auto_init_amp(struct hda_codec
*codec
, int type
)
297 alc_auto_setup_eapd(codec
, true);
300 snd_hda_sequence_write(codec
, alc_gpio1_init_verbs
);
303 snd_hda_sequence_write(codec
, alc_gpio2_init_verbs
);
306 snd_hda_sequence_write(codec
, alc_gpio3_init_verbs
);
308 case ALC_INIT_DEFAULT
:
309 switch (codec
->vendor_id
) {
311 snd_hda_codec_write(codec
, 0x1a, 0,
312 AC_VERB_SET_COEF_INDEX
, 7);
313 tmp
= snd_hda_codec_read(codec
, 0x1a, 0,
314 AC_VERB_GET_PROC_COEF
, 0);
315 snd_hda_codec_write(codec
, 0x1a, 0,
316 AC_VERB_SET_COEF_INDEX
, 7);
317 snd_hda_codec_write(codec
, 0x1a, 0,
318 AC_VERB_SET_PROC_COEF
,
327 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
328 alc889_coef_init(codec
);
331 alc888_coef_init(codec
);
333 #if 0 /* XXX: This may cause the silent output on speaker on some machines */
336 snd_hda_codec_write(codec
, 0x20, 0,
337 AC_VERB_SET_COEF_INDEX
, 7);
338 tmp
= snd_hda_codec_read(codec
, 0x20, 0,
339 AC_VERB_GET_PROC_COEF
, 0);
340 snd_hda_codec_write(codec
, 0x20, 0,
341 AC_VERB_SET_COEF_INDEX
, 7);
342 snd_hda_codec_write(codec
, 0x20, 0,
343 AC_VERB_SET_PROC_COEF
,
354 * Realtek SSID verification
357 /* Could be any non-zero and even value. When used as fixup, tells
358 * the driver to ignore any present sku defines.
360 #define ALC_FIXUP_SKU_IGNORE (2)
362 static void alc_fixup_sku_ignore(struct hda_codec
*codec
,
363 const struct hda_fixup
*fix
, int action
)
365 struct alc_spec
*spec
= codec
->spec
;
366 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
367 spec
->cdefine
.fixup
= 1;
368 spec
->cdefine
.sku_cfg
= ALC_FIXUP_SKU_IGNORE
;
372 static void alc_fixup_no_depop_delay(struct hda_codec
*codec
,
373 const struct hda_fixup
*fix
, int action
)
375 struct alc_spec
*spec
= codec
->spec
;
377 if (action
== HDA_FIXUP_ACT_PROBE
) {
378 spec
->no_depop_delay
= 1;
379 codec
->depop_delay
= 0;
383 static int alc_auto_parse_customize_define(struct hda_codec
*codec
)
385 unsigned int ass
, tmp
, i
;
387 struct alc_spec
*spec
= codec
->spec
;
389 spec
->cdefine
.enable_pcbeep
= 1; /* assume always enabled */
391 if (spec
->cdefine
.fixup
) {
392 ass
= spec
->cdefine
.sku_cfg
;
393 if (ass
== ALC_FIXUP_SKU_IGNORE
)
398 if (!codec
->bus
->pci
)
400 ass
= codec
->subsystem_id
& 0xffff;
401 if (ass
!= codec
->bus
->pci
->subsystem_device
&& (ass
& 1))
405 if (codec
->vendor_id
== 0x10ec0260)
407 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
410 codec_info(codec
, "%s: SKU not ready 0x%08x\n",
411 codec
->chip_name
, ass
);
417 for (i
= 1; i
< 16; i
++) {
421 if (((ass
>> 16) & 0xf) != tmp
)
424 spec
->cdefine
.port_connectivity
= ass
>> 30;
425 spec
->cdefine
.enable_pcbeep
= (ass
& 0x100000) >> 20;
426 spec
->cdefine
.check_sum
= (ass
>> 16) & 0xf;
427 spec
->cdefine
.customization
= ass
>> 8;
429 spec
->cdefine
.sku_cfg
= ass
;
430 spec
->cdefine
.external_amp
= (ass
& 0x38) >> 3;
431 spec
->cdefine
.platform_type
= (ass
& 0x4) >> 2;
432 spec
->cdefine
.swap
= (ass
& 0x2) >> 1;
433 spec
->cdefine
.override
= ass
& 0x1;
435 codec_dbg(codec
, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
436 nid
, spec
->cdefine
.sku_cfg
);
437 codec_dbg(codec
, "SKU: port_connectivity=0x%x\n",
438 spec
->cdefine
.port_connectivity
);
439 codec_dbg(codec
, "SKU: enable_pcbeep=0x%x\n", spec
->cdefine
.enable_pcbeep
);
440 codec_dbg(codec
, "SKU: check_sum=0x%08x\n", spec
->cdefine
.check_sum
);
441 codec_dbg(codec
, "SKU: customization=0x%08x\n", spec
->cdefine
.customization
);
442 codec_dbg(codec
, "SKU: external_amp=0x%x\n", spec
->cdefine
.external_amp
);
443 codec_dbg(codec
, "SKU: platform_type=0x%x\n", spec
->cdefine
.platform_type
);
444 codec_dbg(codec
, "SKU: swap=0x%x\n", spec
->cdefine
.swap
);
445 codec_dbg(codec
, "SKU: override=0x%x\n", spec
->cdefine
.override
);
450 /* return the position of NID in the list, or -1 if not found */
451 static int find_idx_in_nid_list(hda_nid_t nid
, const hda_nid_t
*list
, int nums
)
454 for (i
= 0; i
< nums
; i
++)
459 /* return true if the given NID is found in the list */
460 static bool found_in_nid_list(hda_nid_t nid
, const hda_nid_t
*list
, int nums
)
462 return find_idx_in_nid_list(nid
, list
, nums
) >= 0;
465 /* check subsystem ID and set up device-specific initialization;
466 * return 1 if initialized, 0 if invalid SSID
468 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
469 * 31 ~ 16 : Manufacture ID
471 * 7 ~ 0 : Assembly ID
472 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
474 static int alc_subsystem_id(struct hda_codec
*codec
, const hda_nid_t
*ports
)
476 unsigned int ass
, tmp
, i
;
478 struct alc_spec
*spec
= codec
->spec
;
480 if (spec
->cdefine
.fixup
) {
481 ass
= spec
->cdefine
.sku_cfg
;
482 if (ass
== ALC_FIXUP_SKU_IGNORE
)
487 ass
= codec
->subsystem_id
& 0xffff;
488 if (codec
->bus
->pci
&&
489 ass
!= codec
->bus
->pci
->subsystem_device
&& (ass
& 1))
492 /* invalid SSID, check the special NID pin defcfg instead */
494 * 31~30 : port connectivity
497 * 19~16 : Check sum (15:1)
502 if (codec
->vendor_id
== 0x10ec0260)
504 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
506 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
510 if ((ass
>> 30) != 1) /* no physical connection */
515 for (i
= 1; i
< 16; i
++) {
519 if (((ass
>> 16) & 0xf) != tmp
)
522 codec_dbg(codec
, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
523 ass
& 0xffff, codec
->vendor_id
);
527 * 2 : 0 --> Desktop, 1 --> Laptop
528 * 3~5 : External Amplifier control
531 tmp
= (ass
& 0x38) >> 3; /* external Amp control */
534 spec
->init_amp
= ALC_INIT_GPIO1
;
537 spec
->init_amp
= ALC_INIT_GPIO2
;
540 spec
->init_amp
= ALC_INIT_GPIO3
;
544 spec
->init_amp
= ALC_INIT_DEFAULT
;
548 /* is laptop or Desktop and enable the function "Mute internal speaker
549 * when the external headphone out jack is plugged"
554 * 10~8 : Jack location
555 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
557 * 15 : 1 --> enable the function "Mute internal speaker
558 * when the external headphone out jack is plugged"
560 if (!spec
->gen
.autocfg
.hp_pins
[0] &&
561 !(spec
->gen
.autocfg
.line_out_pins
[0] &&
562 spec
->gen
.autocfg
.line_out_type
== AUTO_PIN_HP_OUT
)) {
564 tmp
= (ass
>> 11) & 0x3; /* HP to chassis */
566 if (found_in_nid_list(nid
, spec
->gen
.autocfg
.line_out_pins
,
567 spec
->gen
.autocfg
.line_outs
))
569 spec
->gen
.autocfg
.hp_pins
[0] = nid
;
574 /* Check the validity of ALC subsystem-id
575 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
576 static void alc_ssid_check(struct hda_codec
*codec
, const hda_nid_t
*ports
)
578 if (!alc_subsystem_id(codec
, ports
)) {
579 struct alc_spec
*spec
= codec
->spec
;
581 "realtek: Enable default setup for auto mode as fallback\n");
582 spec
->init_amp
= ALC_INIT_DEFAULT
;
587 * COEF access helper functions
590 static int alc_read_coefex_idx(struct hda_codec
*codec
,
592 unsigned int coef_idx
)
595 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_COEF_INDEX
,
597 val
= snd_hda_codec_read(codec
, nid
, 0,
598 AC_VERB_GET_PROC_COEF
, 0);
602 #define alc_read_coef_idx(codec, coef_idx) \
603 alc_read_coefex_idx(codec, 0x20, coef_idx)
605 static void alc_write_coefex_idx(struct hda_codec
*codec
, hda_nid_t nid
,
606 unsigned int coef_idx
,
607 unsigned int coef_val
)
609 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_COEF_INDEX
,
611 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PROC_COEF
,
615 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
616 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
618 /* a special bypass for COEF 0; read the cached value at the second time */
619 static unsigned int alc_get_coef0(struct hda_codec
*codec
)
621 struct alc_spec
*spec
= codec
->spec
;
623 spec
->coef0
= alc_read_coef_idx(codec
, 0);
630 static hda_nid_t
get_adc_nid(struct hda_codec
*codec
, int adc_idx
, int imux_idx
)
632 struct hda_gen_spec
*spec
= codec
->spec
;
633 if (spec
->dyn_adc_switch
)
634 adc_idx
= spec
->dyn_adc_idx
[imux_idx
];
635 return spec
->adc_nids
[adc_idx
];
638 static void alc_inv_dmic_sync_adc(struct hda_codec
*codec
, int adc_idx
)
640 struct alc_spec
*spec
= codec
->spec
;
641 struct hda_input_mux
*imux
= &spec
->gen
.input_mux
;
642 struct nid_path
*path
;
647 for (i
= 0; i
< imux
->num_items
; i
++) {
648 if (spec
->gen
.imux_pins
[i
] == spec
->inv_dmic_pin
)
651 if (i
>= imux
->num_items
)
654 path
= snd_hda_get_nid_path(codec
, spec
->inv_dmic_pin
,
655 get_adc_nid(codec
, adc_idx
, i
));
656 val
= path
->ctls
[NID_PATH_MUTE_CTL
];
659 nid
= get_amp_nid_(val
);
660 dir
= get_amp_direction_(val
);
661 parm
= AC_AMP_SET_RIGHT
|
662 (dir
== HDA_OUTPUT
? AC_AMP_SET_OUTPUT
: AC_AMP_SET_INPUT
);
664 /* flush all cached amps at first */
665 snd_hda_codec_flush_cache(codec
);
667 /* we care only right channel */
668 val
= snd_hda_codec_amp_read(codec
, nid
, 1, dir
, 0);
669 if (val
& 0x80) /* if already muted, we don't need to touch */
672 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
677 * Inverted digital-mic handling
679 * First off, it's a bit tricky. The "Inverted Internal Mic Capture Switch"
680 * gives the additional mute only to the right channel of the digital mic
681 * capture stream. This is a workaround for avoiding the almost silence
682 * by summing the stereo stream from some (known to be ForteMedia)
685 * The logic is to call alc_inv_dmic_sync() after each action (possibly)
686 * modifying ADC amp. When the mute flag is set, it mutes the R-channel
687 * without caching so that the cache can still keep the original value.
688 * The cached value is then restored when the flag is set off or any other
689 * than d-mic is used as the current input source.
691 static void alc_inv_dmic_sync(struct hda_codec
*codec
, bool force
)
693 struct alc_spec
*spec
= codec
->spec
;
696 if (!spec
->inv_dmic_fixup
)
698 if (!spec
->inv_dmic_muted
&& !force
)
700 nums
= spec
->gen
.dyn_adc_switch
? 1 : spec
->gen
.num_adc_nids
;
701 for (src
= 0; src
< nums
; src
++) {
702 bool dmic_fixup
= false;
704 if (spec
->inv_dmic_muted
&&
705 spec
->gen
.imux_pins
[spec
->gen
.cur_mux
[src
]] == spec
->inv_dmic_pin
)
707 if (!dmic_fixup
&& !force
)
709 alc_inv_dmic_sync_adc(codec
, src
);
713 static void alc_inv_dmic_hook(struct hda_codec
*codec
,
714 struct snd_kcontrol
*kcontrol
,
715 struct snd_ctl_elem_value
*ucontrol
)
717 alc_inv_dmic_sync(codec
, false);
720 static int alc_inv_dmic_sw_get(struct snd_kcontrol
*kcontrol
,
721 struct snd_ctl_elem_value
*ucontrol
)
723 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
724 struct alc_spec
*spec
= codec
->spec
;
726 ucontrol
->value
.integer
.value
[0] = !spec
->inv_dmic_muted
;
730 static int alc_inv_dmic_sw_put(struct snd_kcontrol
*kcontrol
,
731 struct snd_ctl_elem_value
*ucontrol
)
733 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
734 struct alc_spec
*spec
= codec
->spec
;
735 unsigned int val
= !ucontrol
->value
.integer
.value
[0];
737 if (val
== spec
->inv_dmic_muted
)
739 spec
->inv_dmic_muted
= val
;
740 alc_inv_dmic_sync(codec
, true);
744 static const struct snd_kcontrol_new alc_inv_dmic_sw
= {
745 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
746 .name
= "Inverted Internal Mic Capture Switch",
747 .info
= snd_ctl_boolean_mono_info
,
748 .get
= alc_inv_dmic_sw_get
,
749 .put
= alc_inv_dmic_sw_put
,
752 static int alc_add_inv_dmic_mixer(struct hda_codec
*codec
, hda_nid_t nid
)
754 struct alc_spec
*spec
= codec
->spec
;
756 if (!snd_hda_gen_add_kctl(&spec
->gen
, NULL
, &alc_inv_dmic_sw
))
758 spec
->inv_dmic_fixup
= 1;
759 spec
->inv_dmic_muted
= 0;
760 spec
->inv_dmic_pin
= nid
;
761 spec
->gen
.cap_sync_hook
= alc_inv_dmic_hook
;
765 /* typically the digital mic is put at node 0x12 */
766 static void alc_fixup_inv_dmic_0x12(struct hda_codec
*codec
,
767 const struct hda_fixup
*fix
, int action
)
769 if (action
== HDA_FIXUP_ACT_PROBE
)
770 alc_add_inv_dmic_mixer(codec
, 0x12);
774 #ifdef CONFIG_SND_HDA_INPUT_BEEP
775 /* additional beep mixers; the actual parameters are overwritten at build */
776 static const struct snd_kcontrol_new alc_beep_mixer
[] = {
777 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT
),
778 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT
),
783 static int alc_build_controls(struct hda_codec
*codec
)
785 struct alc_spec
*spec
= codec
->spec
;
788 err
= snd_hda_gen_build_controls(codec
);
792 for (i
= 0; i
< spec
->num_mixers
; i
++) {
793 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
798 #ifdef CONFIG_SND_HDA_INPUT_BEEP
799 /* create beep controls if needed */
800 if (spec
->beep_amp
) {
801 const struct snd_kcontrol_new
*knew
;
802 for (knew
= alc_beep_mixer
; knew
->name
; knew
++) {
803 struct snd_kcontrol
*kctl
;
804 kctl
= snd_ctl_new1(knew
, codec
);
807 kctl
->private_value
= spec
->beep_amp
;
808 err
= snd_hda_ctl_add(codec
, 0, kctl
);
815 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_BUILD
);
824 static int alc_init(struct hda_codec
*codec
)
826 struct alc_spec
*spec
= codec
->spec
;
829 spec
->init_hook(codec
);
832 alc_auto_init_amp(codec
, spec
->init_amp
);
834 snd_hda_gen_init(codec
);
836 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_INIT
);
841 static inline void alc_shutup(struct hda_codec
*codec
)
843 struct alc_spec
*spec
= codec
->spec
;
845 if (spec
&& spec
->shutup
)
848 snd_hda_shutup_pins(codec
);
851 #define alc_free snd_hda_gen_free
854 static void alc_power_eapd(struct hda_codec
*codec
)
856 alc_auto_setup_eapd(codec
, false);
859 static int alc_suspend(struct hda_codec
*codec
)
861 struct alc_spec
*spec
= codec
->spec
;
863 if (spec
&& spec
->power_hook
)
864 spec
->power_hook(codec
);
870 static int alc_resume(struct hda_codec
*codec
)
872 struct alc_spec
*spec
= codec
->spec
;
874 if (!spec
->no_depop_delay
)
875 msleep(150); /* to avoid pop noise */
876 codec
->patch_ops
.init(codec
);
877 snd_hda_codec_resume_amp(codec
);
878 snd_hda_codec_resume_cache(codec
);
879 alc_inv_dmic_sync(codec
, true);
880 hda_call_check_power_status(codec
, 0x01);
887 static const struct hda_codec_ops alc_patch_ops
= {
888 .build_controls
= alc_build_controls
,
889 .build_pcms
= snd_hda_gen_build_pcms
,
892 .unsol_event
= snd_hda_jack_unsol_event
,
894 .resume
= alc_resume
,
895 .suspend
= alc_suspend
,
896 .check_power_status
= snd_hda_gen_check_power_status
,
898 .reboot_notify
= alc_shutup
,
902 /* replace the codec chip_name with the given string */
903 static int alc_codec_rename(struct hda_codec
*codec
, const char *name
)
905 kfree(codec
->chip_name
);
906 codec
->chip_name
= kstrdup(name
, GFP_KERNEL
);
907 if (!codec
->chip_name
) {
915 * Rename codecs appropriately from COEF value or subvendor id
917 struct alc_codec_rename_table
{
918 unsigned int vendor_id
;
919 unsigned short coef_mask
;
920 unsigned short coef_bits
;
924 struct alc_codec_rename_pci_table
{
925 unsigned int codec_vendor_id
;
926 unsigned short pci_subvendor
;
927 unsigned short pci_subdevice
;
931 static struct alc_codec_rename_table rename_tbl
[] = {
932 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
933 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
934 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
935 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
936 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
937 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
938 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
939 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
940 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
941 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
942 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
943 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
944 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
945 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
946 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
947 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
948 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
952 static struct alc_codec_rename_pci_table rename_pci_tbl
[] = {
953 { 0x10ec0280, 0x1028, 0, "ALC3220" },
954 { 0x10ec0282, 0x1028, 0, "ALC3221" },
955 { 0x10ec0283, 0x1028, 0, "ALC3223" },
956 { 0x10ec0288, 0x1028, 0, "ALC3263" },
957 { 0x10ec0292, 0x1028, 0, "ALC3226" },
958 { 0x10ec0293, 0x1028, 0, "ALC3235" },
959 { 0x10ec0255, 0x1028, 0, "ALC3234" },
960 { 0x10ec0668, 0x1028, 0, "ALC3661" },
961 { 0x10ec0275, 0x1028, 0, "ALC3260" },
962 { 0x10ec0899, 0x1028, 0, "ALC3861" },
963 { 0x10ec0670, 0x1025, 0, "ALC669X" },
964 { 0x10ec0676, 0x1025, 0, "ALC679X" },
965 { 0x10ec0282, 0x1043, 0, "ALC3229" },
966 { 0x10ec0233, 0x1043, 0, "ALC3236" },
967 { 0x10ec0280, 0x103c, 0, "ALC3228" },
968 { 0x10ec0282, 0x103c, 0, "ALC3227" },
969 { 0x10ec0286, 0x103c, 0, "ALC3242" },
970 { 0x10ec0290, 0x103c, 0, "ALC3241" },
971 { 0x10ec0668, 0x103c, 0, "ALC3662" },
972 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
973 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
977 static int alc_codec_rename_from_preset(struct hda_codec
*codec
)
979 const struct alc_codec_rename_table
*p
;
980 const struct alc_codec_rename_pci_table
*q
;
982 for (p
= rename_tbl
; p
->vendor_id
; p
++) {
983 if (p
->vendor_id
!= codec
->vendor_id
)
985 if ((alc_get_coef0(codec
) & p
->coef_mask
) == p
->coef_bits
)
986 return alc_codec_rename(codec
, p
->name
);
989 if (!codec
->bus
->pci
)
991 for (q
= rename_pci_tbl
; q
->codec_vendor_id
; q
++) {
992 if (q
->codec_vendor_id
!= codec
->vendor_id
)
994 if (q
->pci_subvendor
!= codec
->bus
->pci
->subsystem_vendor
)
996 if (!q
->pci_subdevice
||
997 q
->pci_subdevice
== codec
->bus
->pci
->subsystem_device
)
998 return alc_codec_rename(codec
, q
->name
);
1006 * Digital-beep handlers
1008 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1009 #define set_beep_amp(spec, nid, idx, dir) \
1010 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
1012 static const struct snd_pci_quirk beep_white_list
[] = {
1013 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1014 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1015 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
1016 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1017 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1018 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1019 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
1020 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1021 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1025 static inline int has_cdefine_beep(struct hda_codec
*codec
)
1027 struct alc_spec
*spec
= codec
->spec
;
1028 const struct snd_pci_quirk
*q
;
1029 q
= snd_pci_quirk_lookup(codec
->bus
->pci
, beep_white_list
);
1032 return spec
->cdefine
.enable_pcbeep
;
1035 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
1036 #define has_cdefine_beep(codec) 0
1039 /* parse the BIOS configuration and set up the alc_spec */
1040 /* return 1 if successful, 0 if the proper config is not found,
1041 * or a negative error code
1043 static int alc_parse_auto_config(struct hda_codec
*codec
,
1044 const hda_nid_t
*ignore_nids
,
1045 const hda_nid_t
*ssid_nids
)
1047 struct alc_spec
*spec
= codec
->spec
;
1048 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
1051 err
= snd_hda_parse_pin_defcfg(codec
, cfg
, ignore_nids
,
1057 alc_ssid_check(codec
, ssid_nids
);
1059 err
= snd_hda_gen_parse_auto_config(codec
, cfg
);
1066 /* common preparation job for alc_spec */
1067 static int alc_alloc_spec(struct hda_codec
*codec
, hda_nid_t mixer_nid
)
1069 struct alc_spec
*spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
1075 snd_hda_gen_spec_init(&spec
->gen
);
1076 spec
->gen
.mixer_nid
= mixer_nid
;
1077 spec
->gen
.own_eapd_ctl
= 1;
1078 codec
->single_adc_amp
= 1;
1079 /* FIXME: do we need this for all Realtek codec models? */
1080 codec
->spdif_status_reset
= 1;
1082 err
= alc_codec_rename_from_preset(codec
);
1090 static int alc880_parse_auto_config(struct hda_codec
*codec
)
1092 static const hda_nid_t alc880_ignore
[] = { 0x1d, 0 };
1093 static const hda_nid_t alc880_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
1094 return alc_parse_auto_config(codec
, alc880_ignore
, alc880_ssids
);
1103 ALC880_FIXUP_MEDION_RIM
,
1105 ALC880_FIXUP_LG_LW25
,
1107 ALC880_FIXUP_EAPD_COEF
,
1108 ALC880_FIXUP_TCL_S700
,
1109 ALC880_FIXUP_VOL_KNOB
,
1110 ALC880_FIXUP_FUJITSU
,
1112 ALC880_FIXUP_UNIWILL
,
1113 ALC880_FIXUP_UNIWILL_DIG
,
1115 ALC880_FIXUP_ASUS_W5A
,
1116 ALC880_FIXUP_3ST_BASE
,
1118 ALC880_FIXUP_3ST_DIG
,
1119 ALC880_FIXUP_5ST_BASE
,
1121 ALC880_FIXUP_5ST_DIG
,
1122 ALC880_FIXUP_6ST_BASE
,
1124 ALC880_FIXUP_6ST_DIG
,
1125 ALC880_FIXUP_6ST_AUTOMUTE
,
1128 /* enable the volume-knob widget support on NID 0x21 */
1129 static void alc880_fixup_vol_knob(struct hda_codec
*codec
,
1130 const struct hda_fixup
*fix
, int action
)
1132 if (action
== HDA_FIXUP_ACT_PROBE
)
1133 snd_hda_jack_detect_enable_callback(codec
, 0x21, ALC_DCVOL_EVENT
, alc_update_knob_master
);
1136 static const struct hda_fixup alc880_fixups
[] = {
1137 [ALC880_FIXUP_GPIO1
] = {
1138 .type
= HDA_FIXUP_VERBS
,
1139 .v
.verbs
= alc_gpio1_init_verbs
,
1141 [ALC880_FIXUP_GPIO2
] = {
1142 .type
= HDA_FIXUP_VERBS
,
1143 .v
.verbs
= alc_gpio2_init_verbs
,
1145 [ALC880_FIXUP_MEDION_RIM
] = {
1146 .type
= HDA_FIXUP_VERBS
,
1147 .v
.verbs
= (const struct hda_verb
[]) {
1148 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1149 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
1153 .chain_id
= ALC880_FIXUP_GPIO2
,
1155 [ALC880_FIXUP_LG
] = {
1156 .type
= HDA_FIXUP_PINS
,
1157 .v
.pins
= (const struct hda_pintbl
[]) {
1158 /* disable bogus unused pins */
1159 { 0x16, 0x411111f0 },
1160 { 0x18, 0x411111f0 },
1161 { 0x1a, 0x411111f0 },
1165 [ALC880_FIXUP_LG_LW25
] = {
1166 .type
= HDA_FIXUP_PINS
,
1167 .v
.pins
= (const struct hda_pintbl
[]) {
1168 { 0x1a, 0x0181344f }, /* line-in */
1169 { 0x1b, 0x0321403f }, /* headphone */
1173 [ALC880_FIXUP_W810
] = {
1174 .type
= HDA_FIXUP_PINS
,
1175 .v
.pins
= (const struct hda_pintbl
[]) {
1176 /* disable bogus unused pins */
1177 { 0x17, 0x411111f0 },
1181 .chain_id
= ALC880_FIXUP_GPIO2
,
1183 [ALC880_FIXUP_EAPD_COEF
] = {
1184 .type
= HDA_FIXUP_VERBS
,
1185 .v
.verbs
= (const struct hda_verb
[]) {
1186 /* change to EAPD mode */
1187 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1188 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
1192 [ALC880_FIXUP_TCL_S700
] = {
1193 .type
= HDA_FIXUP_VERBS
,
1194 .v
.verbs
= (const struct hda_verb
[]) {
1195 /* change to EAPD mode */
1196 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
1197 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
1201 .chain_id
= ALC880_FIXUP_GPIO2
,
1203 [ALC880_FIXUP_VOL_KNOB
] = {
1204 .type
= HDA_FIXUP_FUNC
,
1205 .v
.func
= alc880_fixup_vol_knob
,
1207 [ALC880_FIXUP_FUJITSU
] = {
1208 /* override all pins as BIOS on old Amilo is broken */
1209 .type
= HDA_FIXUP_PINS
,
1210 .v
.pins
= (const struct hda_pintbl
[]) {
1211 { 0x14, 0x0121411f }, /* HP */
1212 { 0x15, 0x99030120 }, /* speaker */
1213 { 0x16, 0x99030130 }, /* bass speaker */
1214 { 0x17, 0x411111f0 }, /* N/A */
1215 { 0x18, 0x411111f0 }, /* N/A */
1216 { 0x19, 0x01a19950 }, /* mic-in */
1217 { 0x1a, 0x411111f0 }, /* N/A */
1218 { 0x1b, 0x411111f0 }, /* N/A */
1219 { 0x1c, 0x411111f0 }, /* N/A */
1220 { 0x1d, 0x411111f0 }, /* N/A */
1221 { 0x1e, 0x01454140 }, /* SPDIF out */
1225 .chain_id
= ALC880_FIXUP_VOL_KNOB
,
1227 [ALC880_FIXUP_F1734
] = {
1228 /* almost compatible with FUJITSU, but no bass and SPDIF */
1229 .type
= HDA_FIXUP_PINS
,
1230 .v
.pins
= (const struct hda_pintbl
[]) {
1231 { 0x14, 0x0121411f }, /* HP */
1232 { 0x15, 0x99030120 }, /* speaker */
1233 { 0x16, 0x411111f0 }, /* N/A */
1234 { 0x17, 0x411111f0 }, /* N/A */
1235 { 0x18, 0x411111f0 }, /* N/A */
1236 { 0x19, 0x01a19950 }, /* mic-in */
1237 { 0x1a, 0x411111f0 }, /* N/A */
1238 { 0x1b, 0x411111f0 }, /* N/A */
1239 { 0x1c, 0x411111f0 }, /* N/A */
1240 { 0x1d, 0x411111f0 }, /* N/A */
1241 { 0x1e, 0x411111f0 }, /* N/A */
1245 .chain_id
= ALC880_FIXUP_VOL_KNOB
,
1247 [ALC880_FIXUP_UNIWILL
] = {
1248 /* need to fix HP and speaker pins to be parsed correctly */
1249 .type
= HDA_FIXUP_PINS
,
1250 .v
.pins
= (const struct hda_pintbl
[]) {
1251 { 0x14, 0x0121411f }, /* HP */
1252 { 0x15, 0x99030120 }, /* speaker */
1253 { 0x16, 0x99030130 }, /* bass speaker */
1257 [ALC880_FIXUP_UNIWILL_DIG
] = {
1258 .type
= HDA_FIXUP_PINS
,
1259 .v
.pins
= (const struct hda_pintbl
[]) {
1260 /* disable bogus unused pins */
1261 { 0x17, 0x411111f0 },
1262 { 0x19, 0x411111f0 },
1263 { 0x1b, 0x411111f0 },
1264 { 0x1f, 0x411111f0 },
1268 [ALC880_FIXUP_Z71V
] = {
1269 .type
= HDA_FIXUP_PINS
,
1270 .v
.pins
= (const struct hda_pintbl
[]) {
1271 /* set up the whole pins as BIOS is utterly broken */
1272 { 0x14, 0x99030120 }, /* speaker */
1273 { 0x15, 0x0121411f }, /* HP */
1274 { 0x16, 0x411111f0 }, /* N/A */
1275 { 0x17, 0x411111f0 }, /* N/A */
1276 { 0x18, 0x01a19950 }, /* mic-in */
1277 { 0x19, 0x411111f0 }, /* N/A */
1278 { 0x1a, 0x01813031 }, /* line-in */
1279 { 0x1b, 0x411111f0 }, /* N/A */
1280 { 0x1c, 0x411111f0 }, /* N/A */
1281 { 0x1d, 0x411111f0 }, /* N/A */
1282 { 0x1e, 0x0144111e }, /* SPDIF */
1286 [ALC880_FIXUP_ASUS_W5A
] = {
1287 .type
= HDA_FIXUP_PINS
,
1288 .v
.pins
= (const struct hda_pintbl
[]) {
1289 /* set up the whole pins as BIOS is utterly broken */
1290 { 0x14, 0x0121411f }, /* HP */
1291 { 0x15, 0x411111f0 }, /* N/A */
1292 { 0x16, 0x411111f0 }, /* N/A */
1293 { 0x17, 0x411111f0 }, /* N/A */
1294 { 0x18, 0x90a60160 }, /* mic */
1295 { 0x19, 0x411111f0 }, /* N/A */
1296 { 0x1a, 0x411111f0 }, /* N/A */
1297 { 0x1b, 0x411111f0 }, /* N/A */
1298 { 0x1c, 0x411111f0 }, /* N/A */
1299 { 0x1d, 0x411111f0 }, /* N/A */
1300 { 0x1e, 0xb743111e }, /* SPDIF out */
1304 .chain_id
= ALC880_FIXUP_GPIO1
,
1306 [ALC880_FIXUP_3ST_BASE
] = {
1307 .type
= HDA_FIXUP_PINS
,
1308 .v
.pins
= (const struct hda_pintbl
[]) {
1309 { 0x14, 0x01014010 }, /* line-out */
1310 { 0x15, 0x411111f0 }, /* N/A */
1311 { 0x16, 0x411111f0 }, /* N/A */
1312 { 0x17, 0x411111f0 }, /* N/A */
1313 { 0x18, 0x01a19c30 }, /* mic-in */
1314 { 0x19, 0x0121411f }, /* HP */
1315 { 0x1a, 0x01813031 }, /* line-in */
1316 { 0x1b, 0x02a19c40 }, /* front-mic */
1317 { 0x1c, 0x411111f0 }, /* N/A */
1318 { 0x1d, 0x411111f0 }, /* N/A */
1319 /* 0x1e is filled in below */
1320 { 0x1f, 0x411111f0 }, /* N/A */
1324 [ALC880_FIXUP_3ST
] = {
1325 .type
= HDA_FIXUP_PINS
,
1326 .v
.pins
= (const struct hda_pintbl
[]) {
1327 { 0x1e, 0x411111f0 }, /* N/A */
1331 .chain_id
= ALC880_FIXUP_3ST_BASE
,
1333 [ALC880_FIXUP_3ST_DIG
] = {
1334 .type
= HDA_FIXUP_PINS
,
1335 .v
.pins
= (const struct hda_pintbl
[]) {
1336 { 0x1e, 0x0144111e }, /* SPDIF */
1340 .chain_id
= ALC880_FIXUP_3ST_BASE
,
1342 [ALC880_FIXUP_5ST_BASE
] = {
1343 .type
= HDA_FIXUP_PINS
,
1344 .v
.pins
= (const struct hda_pintbl
[]) {
1345 { 0x14, 0x01014010 }, /* front */
1346 { 0x15, 0x411111f0 }, /* N/A */
1347 { 0x16, 0x01011411 }, /* CLFE */
1348 { 0x17, 0x01016412 }, /* surr */
1349 { 0x18, 0x01a19c30 }, /* mic-in */
1350 { 0x19, 0x0121411f }, /* HP */
1351 { 0x1a, 0x01813031 }, /* line-in */
1352 { 0x1b, 0x02a19c40 }, /* front-mic */
1353 { 0x1c, 0x411111f0 }, /* N/A */
1354 { 0x1d, 0x411111f0 }, /* N/A */
1355 /* 0x1e is filled in below */
1356 { 0x1f, 0x411111f0 }, /* N/A */
1360 [ALC880_FIXUP_5ST
] = {
1361 .type
= HDA_FIXUP_PINS
,
1362 .v
.pins
= (const struct hda_pintbl
[]) {
1363 { 0x1e, 0x411111f0 }, /* N/A */
1367 .chain_id
= ALC880_FIXUP_5ST_BASE
,
1369 [ALC880_FIXUP_5ST_DIG
] = {
1370 .type
= HDA_FIXUP_PINS
,
1371 .v
.pins
= (const struct hda_pintbl
[]) {
1372 { 0x1e, 0x0144111e }, /* SPDIF */
1376 .chain_id
= ALC880_FIXUP_5ST_BASE
,
1378 [ALC880_FIXUP_6ST_BASE
] = {
1379 .type
= HDA_FIXUP_PINS
,
1380 .v
.pins
= (const struct hda_pintbl
[]) {
1381 { 0x14, 0x01014010 }, /* front */
1382 { 0x15, 0x01016412 }, /* surr */
1383 { 0x16, 0x01011411 }, /* CLFE */
1384 { 0x17, 0x01012414 }, /* side */
1385 { 0x18, 0x01a19c30 }, /* mic-in */
1386 { 0x19, 0x02a19c40 }, /* front-mic */
1387 { 0x1a, 0x01813031 }, /* line-in */
1388 { 0x1b, 0x0121411f }, /* HP */
1389 { 0x1c, 0x411111f0 }, /* N/A */
1390 { 0x1d, 0x411111f0 }, /* N/A */
1391 /* 0x1e is filled in below */
1392 { 0x1f, 0x411111f0 }, /* N/A */
1396 [ALC880_FIXUP_6ST
] = {
1397 .type
= HDA_FIXUP_PINS
,
1398 .v
.pins
= (const struct hda_pintbl
[]) {
1399 { 0x1e, 0x411111f0 }, /* N/A */
1403 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1405 [ALC880_FIXUP_6ST_DIG
] = {
1406 .type
= HDA_FIXUP_PINS
,
1407 .v
.pins
= (const struct hda_pintbl
[]) {
1408 { 0x1e, 0x0144111e }, /* SPDIF */
1412 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1414 [ALC880_FIXUP_6ST_AUTOMUTE
] = {
1415 .type
= HDA_FIXUP_PINS
,
1416 .v
.pins
= (const struct hda_pintbl
[]) {
1417 { 0x1b, 0x0121401f }, /* HP with jack detect */
1420 .chained_before
= true,
1421 .chain_id
= ALC880_FIXUP_6ST_BASE
,
1425 static const struct snd_pci_quirk alc880_fixup_tbl
[] = {
1426 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810
),
1427 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A
),
1428 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V
),
1429 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1
),
1430 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2
),
1431 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF
),
1432 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG
),
1433 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734
),
1434 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL
),
1435 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB
),
1436 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810
),
1437 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM
),
1438 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE
),
1439 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734
),
1440 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU
),
1441 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734
),
1442 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU
),
1443 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG
),
1444 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG
),
1445 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG
),
1446 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25
),
1447 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700
),
1449 /* Below is the copied entries from alc880_quirks.c.
1450 * It's not quite sure whether BIOS sets the correct pin-config table
1451 * on these machines, thus they are kept to be compatible with
1452 * the old static quirks. Once when it's confirmed to work without
1453 * these overrides, it'd be better to remove.
1455 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG
),
1456 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST
),
1457 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG
),
1458 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG
),
1459 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG
),
1460 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG
),
1461 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG
),
1462 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST
),
1463 SND_PCI_QUIRK(0x1039, 0x1234, NULL
, ALC880_FIXUP_6ST_DIG
),
1464 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST
),
1465 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST
),
1466 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST
),
1467 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST
),
1468 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST
),
1469 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG
),
1470 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG
),
1471 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG
),
1472 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG
),
1473 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG
),
1474 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG
),
1475 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG
),
1476 SND_PCI_QUIRK(0x2668, 0x8086, NULL
, ALC880_FIXUP_6ST_DIG
), /* broken BIOS */
1477 SND_PCI_QUIRK(0x8086, 0x2668, NULL
, ALC880_FIXUP_6ST_DIG
),
1478 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1479 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1480 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1481 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1482 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1483 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1484 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG
),
1485 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1486 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1487 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG
),
1489 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST
),
1490 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG
),
1491 SND_PCI_QUIRK(0xe803, 0x1019, NULL
, ALC880_FIXUP_6ST_DIG
),
1495 static const struct hda_model_fixup alc880_fixup_models
[] = {
1496 {.id
= ALC880_FIXUP_3ST
, .name
= "3stack"},
1497 {.id
= ALC880_FIXUP_3ST_DIG
, .name
= "3stack-digout"},
1498 {.id
= ALC880_FIXUP_5ST
, .name
= "5stack"},
1499 {.id
= ALC880_FIXUP_5ST_DIG
, .name
= "5stack-digout"},
1500 {.id
= ALC880_FIXUP_6ST
, .name
= "6stack"},
1501 {.id
= ALC880_FIXUP_6ST_DIG
, .name
= "6stack-digout"},
1502 {.id
= ALC880_FIXUP_6ST_AUTOMUTE
, .name
= "6stack-automute"},
1508 * OK, here we have finally the patch for ALC880
1510 static int patch_alc880(struct hda_codec
*codec
)
1512 struct alc_spec
*spec
;
1515 err
= alc_alloc_spec(codec
, 0x0b);
1520 spec
->gen
.need_dac_fix
= 1;
1521 spec
->gen
.beep_nid
= 0x01;
1523 snd_hda_pick_fixup(codec
, alc880_fixup_models
, alc880_fixup_tbl
,
1525 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
1527 /* automatic parse from the BIOS config */
1528 err
= alc880_parse_auto_config(codec
);
1532 if (!spec
->gen
.no_analog
)
1533 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
1535 codec
->patch_ops
= alc_patch_ops
;
1536 codec
->patch_ops
.unsol_event
= alc880_unsol_event
;
1539 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
1552 static int alc260_parse_auto_config(struct hda_codec
*codec
)
1554 static const hda_nid_t alc260_ignore
[] = { 0x17, 0 };
1555 static const hda_nid_t alc260_ssids
[] = { 0x10, 0x15, 0x0f, 0 };
1556 return alc_parse_auto_config(codec
, alc260_ignore
, alc260_ssids
);
1563 ALC260_FIXUP_HP_DC5750
,
1564 ALC260_FIXUP_HP_PIN_0F
,
1567 ALC260_FIXUP_GPIO1_TOGGLE
,
1568 ALC260_FIXUP_REPLACER
,
1569 ALC260_FIXUP_HP_B1900
,
1571 ALC260_FIXUP_FSC_S7020
,
1572 ALC260_FIXUP_FSC_S7020_JWSE
,
1573 ALC260_FIXUP_VAIO_PINS
,
1576 static void alc260_gpio1_automute(struct hda_codec
*codec
)
1578 struct alc_spec
*spec
= codec
->spec
;
1579 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
1580 spec
->gen
.hp_jack_present
);
1583 static void alc260_fixup_gpio1_toggle(struct hda_codec
*codec
,
1584 const struct hda_fixup
*fix
, int action
)
1586 struct alc_spec
*spec
= codec
->spec
;
1587 if (action
== HDA_FIXUP_ACT_PROBE
) {
1588 /* although the machine has only one output pin, we need to
1589 * toggle GPIO1 according to the jack state
1591 spec
->gen
.automute_hook
= alc260_gpio1_automute
;
1592 spec
->gen
.detect_hp
= 1;
1593 spec
->gen
.automute_speaker
= 1;
1594 spec
->gen
.autocfg
.hp_pins
[0] = 0x0f; /* copy it for automute */
1595 snd_hda_jack_detect_enable_callback(codec
, 0x0f, HDA_GEN_HP_EVENT
,
1596 snd_hda_gen_hp_automute
);
1597 snd_hda_add_verbs(codec
, alc_gpio1_init_verbs
);
1601 static void alc260_fixup_kn1(struct hda_codec
*codec
,
1602 const struct hda_fixup
*fix
, int action
)
1604 struct alc_spec
*spec
= codec
->spec
;
1605 static const struct hda_pintbl pincfgs
[] = {
1606 { 0x0f, 0x02214000 }, /* HP/speaker */
1607 { 0x12, 0x90a60160 }, /* int mic */
1608 { 0x13, 0x02a19000 }, /* ext mic */
1609 { 0x18, 0x01446000 }, /* SPDIF out */
1610 /* disable bogus I/O pins */
1611 { 0x10, 0x411111f0 },
1612 { 0x11, 0x411111f0 },
1613 { 0x14, 0x411111f0 },
1614 { 0x15, 0x411111f0 },
1615 { 0x16, 0x411111f0 },
1616 { 0x17, 0x411111f0 },
1617 { 0x19, 0x411111f0 },
1622 case HDA_FIXUP_ACT_PRE_PROBE
:
1623 snd_hda_apply_pincfgs(codec
, pincfgs
);
1625 case HDA_FIXUP_ACT_PROBE
:
1626 spec
->init_amp
= ALC_INIT_NONE
;
1631 static void alc260_fixup_fsc_s7020(struct hda_codec
*codec
,
1632 const struct hda_fixup
*fix
, int action
)
1634 struct alc_spec
*spec
= codec
->spec
;
1635 if (action
== HDA_FIXUP_ACT_PROBE
)
1636 spec
->init_amp
= ALC_INIT_NONE
;
1639 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec
*codec
,
1640 const struct hda_fixup
*fix
, int action
)
1642 struct alc_spec
*spec
= codec
->spec
;
1643 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
1644 spec
->gen
.add_jack_modes
= 1;
1645 spec
->gen
.hp_mic
= 1;
1649 static const struct hda_fixup alc260_fixups
[] = {
1650 [ALC260_FIXUP_HP_DC5750
] = {
1651 .type
= HDA_FIXUP_PINS
,
1652 .v
.pins
= (const struct hda_pintbl
[]) {
1653 { 0x11, 0x90130110 }, /* speaker */
1657 [ALC260_FIXUP_HP_PIN_0F
] = {
1658 .type
= HDA_FIXUP_PINS
,
1659 .v
.pins
= (const struct hda_pintbl
[]) {
1660 { 0x0f, 0x01214000 }, /* HP */
1664 [ALC260_FIXUP_COEF
] = {
1665 .type
= HDA_FIXUP_VERBS
,
1666 .v
.verbs
= (const struct hda_verb
[]) {
1667 { 0x1a, AC_VERB_SET_COEF_INDEX
, 0x07 },
1668 { 0x1a, AC_VERB_SET_PROC_COEF
, 0x3040 },
1672 [ALC260_FIXUP_GPIO1
] = {
1673 .type
= HDA_FIXUP_VERBS
,
1674 .v
.verbs
= alc_gpio1_init_verbs
,
1676 [ALC260_FIXUP_GPIO1_TOGGLE
] = {
1677 .type
= HDA_FIXUP_FUNC
,
1678 .v
.func
= alc260_fixup_gpio1_toggle
,
1680 .chain_id
= ALC260_FIXUP_HP_PIN_0F
,
1682 [ALC260_FIXUP_REPLACER
] = {
1683 .type
= HDA_FIXUP_VERBS
,
1684 .v
.verbs
= (const struct hda_verb
[]) {
1685 { 0x1a, AC_VERB_SET_COEF_INDEX
, 0x07 },
1686 { 0x1a, AC_VERB_SET_PROC_COEF
, 0x3050 },
1690 .chain_id
= ALC260_FIXUP_GPIO1_TOGGLE
,
1692 [ALC260_FIXUP_HP_B1900
] = {
1693 .type
= HDA_FIXUP_FUNC
,
1694 .v
.func
= alc260_fixup_gpio1_toggle
,
1696 .chain_id
= ALC260_FIXUP_COEF
,
1698 [ALC260_FIXUP_KN1
] = {
1699 .type
= HDA_FIXUP_FUNC
,
1700 .v
.func
= alc260_fixup_kn1
,
1702 [ALC260_FIXUP_FSC_S7020
] = {
1703 .type
= HDA_FIXUP_FUNC
,
1704 .v
.func
= alc260_fixup_fsc_s7020
,
1706 [ALC260_FIXUP_FSC_S7020_JWSE
] = {
1707 .type
= HDA_FIXUP_FUNC
,
1708 .v
.func
= alc260_fixup_fsc_s7020_jwse
,
1710 .chain_id
= ALC260_FIXUP_FSC_S7020
,
1712 [ALC260_FIXUP_VAIO_PINS
] = {
1713 .type
= HDA_FIXUP_PINS
,
1714 .v
.pins
= (const struct hda_pintbl
[]) {
1715 /* Pin configs are missing completely on some VAIOs */
1716 { 0x0f, 0x01211020 },
1717 { 0x10, 0x0001003f },
1718 { 0x11, 0x411111f0 },
1719 { 0x12, 0x01a15930 },
1720 { 0x13, 0x411111f0 },
1721 { 0x14, 0x411111f0 },
1722 { 0x15, 0x411111f0 },
1723 { 0x16, 0x411111f0 },
1724 { 0x17, 0x411111f0 },
1725 { 0x18, 0x411111f0 },
1726 { 0x19, 0x411111f0 },
1732 static const struct snd_pci_quirk alc260_fixup_tbl
[] = {
1733 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1
),
1734 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF
),
1735 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1
),
1736 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750
),
1737 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900
),
1738 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS
),
1739 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F
),
1740 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020
),
1741 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1
),
1742 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1
),
1743 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER
),
1744 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF
),
1748 static const struct hda_model_fixup alc260_fixup_models
[] = {
1749 {.id
= ALC260_FIXUP_GPIO1
, .name
= "gpio1"},
1750 {.id
= ALC260_FIXUP_COEF
, .name
= "coef"},
1751 {.id
= ALC260_FIXUP_FSC_S7020
, .name
= "fujitsu"},
1752 {.id
= ALC260_FIXUP_FSC_S7020_JWSE
, .name
= "fujitsu-jwse"},
1758 static int patch_alc260(struct hda_codec
*codec
)
1760 struct alc_spec
*spec
;
1763 err
= alc_alloc_spec(codec
, 0x07);
1768 /* as quite a few machines require HP amp for speaker outputs,
1769 * it's easier to enable it unconditionally; even if it's unneeded,
1770 * it's almost harmless.
1772 spec
->gen
.prefer_hp_amp
= 1;
1773 spec
->gen
.beep_nid
= 0x01;
1775 snd_hda_pick_fixup(codec
, alc260_fixup_models
, alc260_fixup_tbl
,
1777 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
1779 /* automatic parse from the BIOS config */
1780 err
= alc260_parse_auto_config(codec
);
1784 if (!spec
->gen
.no_analog
)
1785 set_beep_amp(spec
, 0x07, 0x05, HDA_INPUT
);
1787 codec
->patch_ops
= alc_patch_ops
;
1788 spec
->shutup
= alc_eapd_shutup
;
1790 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
1801 * ALC882/883/885/888/889 support
1803 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1804 * configuration. Each pin widget can choose any input DACs and a mixer.
1805 * Each ADC is connected from a mixer of all inputs. This makes possible
1806 * 6-channel independent captures.
1808 * In addition, an independent DAC for the multi-playback (not used in this
1816 ALC882_FIXUP_ABIT_AW9D_MAX
,
1817 ALC882_FIXUP_LENOVO_Y530
,
1818 ALC882_FIXUP_PB_M5210
,
1819 ALC882_FIXUP_ACER_ASPIRE_7736
,
1820 ALC882_FIXUP_ASUS_W90V
,
1822 ALC889_FIXUP_FRONT_HP_NO_PRESENCE
,
1823 ALC889_FIXUP_VAIO_TT
,
1824 ALC888_FIXUP_EEE1601
,
1827 ALC883_FIXUP_ACER_EAPD
,
1832 ALC882_FIXUP_ASUS_W2JC
,
1833 ALC882_FIXUP_ACER_ASPIRE_4930G
,
1834 ALC882_FIXUP_ACER_ASPIRE_8930G
,
1835 ALC882_FIXUP_ASPIRE_8930G_VERBS
,
1836 ALC885_FIXUP_MACPRO_GPIO
,
1837 ALC889_FIXUP_DAC_ROUTE
,
1838 ALC889_FIXUP_MBP_VREF
,
1839 ALC889_FIXUP_IMAC91_VREF
,
1840 ALC889_FIXUP_MBA11_VREF
,
1841 ALC889_FIXUP_MBA21_VREF
,
1842 ALC889_FIXUP_MP11_VREF
,
1843 ALC882_FIXUP_INV_DMIC
,
1844 ALC882_FIXUP_NO_PRIMARY_HP
,
1845 ALC887_FIXUP_ASUS_BASS
,
1846 ALC887_FIXUP_BASS_CHMAP
,
1849 static void alc889_fixup_coef(struct hda_codec
*codec
,
1850 const struct hda_fixup
*fix
, int action
)
1852 if (action
!= HDA_FIXUP_ACT_INIT
)
1854 alc889_coef_init(codec
);
1857 /* toggle speaker-output according to the hp-jack state */
1858 static void alc882_gpio_mute(struct hda_codec
*codec
, int pin
, int muted
)
1860 unsigned int gpiostate
, gpiomask
, gpiodir
;
1862 gpiostate
= snd_hda_codec_read(codec
, codec
->afg
, 0,
1863 AC_VERB_GET_GPIO_DATA
, 0);
1866 gpiostate
|= (1 << pin
);
1868 gpiostate
&= ~(1 << pin
);
1870 gpiomask
= snd_hda_codec_read(codec
, codec
->afg
, 0,
1871 AC_VERB_GET_GPIO_MASK
, 0);
1872 gpiomask
|= (1 << pin
);
1874 gpiodir
= snd_hda_codec_read(codec
, codec
->afg
, 0,
1875 AC_VERB_GET_GPIO_DIRECTION
, 0);
1876 gpiodir
|= (1 << pin
);
1879 snd_hda_codec_write(codec
, codec
->afg
, 0,
1880 AC_VERB_SET_GPIO_MASK
, gpiomask
);
1881 snd_hda_codec_write(codec
, codec
->afg
, 0,
1882 AC_VERB_SET_GPIO_DIRECTION
, gpiodir
);
1886 snd_hda_codec_write(codec
, codec
->afg
, 0,
1887 AC_VERB_SET_GPIO_DATA
, gpiostate
);
1890 /* set up GPIO at initialization */
1891 static void alc885_fixup_macpro_gpio(struct hda_codec
*codec
,
1892 const struct hda_fixup
*fix
, int action
)
1894 if (action
!= HDA_FIXUP_ACT_INIT
)
1896 alc882_gpio_mute(codec
, 0, 0);
1897 alc882_gpio_mute(codec
, 1, 0);
1900 /* Fix the connection of some pins for ALC889:
1901 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1902 * work correctly (bko#42740)
1904 static void alc889_fixup_dac_route(struct hda_codec
*codec
,
1905 const struct hda_fixup
*fix
, int action
)
1907 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
1908 /* fake the connections during parsing the tree */
1909 hda_nid_t conn1
[2] = { 0x0c, 0x0d };
1910 hda_nid_t conn2
[2] = { 0x0e, 0x0f };
1911 snd_hda_override_conn_list(codec
, 0x14, 2, conn1
);
1912 snd_hda_override_conn_list(codec
, 0x15, 2, conn1
);
1913 snd_hda_override_conn_list(codec
, 0x18, 2, conn2
);
1914 snd_hda_override_conn_list(codec
, 0x1a, 2, conn2
);
1915 } else if (action
== HDA_FIXUP_ACT_PROBE
) {
1916 /* restore the connections */
1917 hda_nid_t conn
[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1918 snd_hda_override_conn_list(codec
, 0x14, 5, conn
);
1919 snd_hda_override_conn_list(codec
, 0x15, 5, conn
);
1920 snd_hda_override_conn_list(codec
, 0x18, 5, conn
);
1921 snd_hda_override_conn_list(codec
, 0x1a, 5, conn
);
1925 /* Set VREF on HP pin */
1926 static void alc889_fixup_mbp_vref(struct hda_codec
*codec
,
1927 const struct hda_fixup
*fix
, int action
)
1929 struct alc_spec
*spec
= codec
->spec
;
1930 static hda_nid_t nids
[2] = { 0x14, 0x15 };
1933 if (action
!= HDA_FIXUP_ACT_INIT
)
1935 for (i
= 0; i
< ARRAY_SIZE(nids
); i
++) {
1936 unsigned int val
= snd_hda_codec_get_pincfg(codec
, nids
[i
]);
1937 if (get_defcfg_device(val
) != AC_JACK_HP_OUT
)
1939 val
= snd_hda_codec_get_pin_target(codec
, nids
[i
]);
1940 val
|= AC_PINCTL_VREF_80
;
1941 snd_hda_set_pin_ctl(codec
, nids
[i
], val
);
1942 spec
->gen
.keep_vref_in_automute
= 1;
1947 static void alc889_fixup_mac_pins(struct hda_codec
*codec
,
1948 const hda_nid_t
*nids
, int num_nids
)
1950 struct alc_spec
*spec
= codec
->spec
;
1953 for (i
= 0; i
< num_nids
; i
++) {
1955 val
= snd_hda_codec_get_pin_target(codec
, nids
[i
]);
1956 val
|= AC_PINCTL_VREF_50
;
1957 snd_hda_set_pin_ctl(codec
, nids
[i
], val
);
1959 spec
->gen
.keep_vref_in_automute
= 1;
1962 /* Set VREF on speaker pins on imac91 */
1963 static void alc889_fixup_imac91_vref(struct hda_codec
*codec
,
1964 const struct hda_fixup
*fix
, int action
)
1966 static hda_nid_t nids
[2] = { 0x18, 0x1a };
1968 if (action
== HDA_FIXUP_ACT_INIT
)
1969 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
1972 /* Set VREF on speaker pins on mba11 */
1973 static void alc889_fixup_mba11_vref(struct hda_codec
*codec
,
1974 const struct hda_fixup
*fix
, int action
)
1976 static hda_nid_t nids
[1] = { 0x18 };
1978 if (action
== HDA_FIXUP_ACT_INIT
)
1979 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
1982 /* Set VREF on speaker pins on mba21 */
1983 static void alc889_fixup_mba21_vref(struct hda_codec
*codec
,
1984 const struct hda_fixup
*fix
, int action
)
1986 static hda_nid_t nids
[2] = { 0x18, 0x19 };
1988 if (action
== HDA_FIXUP_ACT_INIT
)
1989 alc889_fixup_mac_pins(codec
, nids
, ARRAY_SIZE(nids
));
1992 /* Don't take HP output as primary
1993 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
1994 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
1996 static void alc882_fixup_no_primary_hp(struct hda_codec
*codec
,
1997 const struct hda_fixup
*fix
, int action
)
1999 struct alc_spec
*spec
= codec
->spec
;
2000 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
2001 spec
->gen
.no_primary_hp
= 1;
2002 spec
->gen
.no_multi_io
= 1;
2006 static void alc_fixup_bass_chmap(struct hda_codec
*codec
,
2007 const struct hda_fixup
*fix
, int action
);
2009 static const struct hda_fixup alc882_fixups
[] = {
2010 [ALC882_FIXUP_ABIT_AW9D_MAX
] = {
2011 .type
= HDA_FIXUP_PINS
,
2012 .v
.pins
= (const struct hda_pintbl
[]) {
2013 { 0x15, 0x01080104 }, /* side */
2014 { 0x16, 0x01011012 }, /* rear */
2015 { 0x17, 0x01016011 }, /* clfe */
2019 [ALC882_FIXUP_LENOVO_Y530
] = {
2020 .type
= HDA_FIXUP_PINS
,
2021 .v
.pins
= (const struct hda_pintbl
[]) {
2022 { 0x15, 0x99130112 }, /* rear int speakers */
2023 { 0x16, 0x99130111 }, /* subwoofer */
2027 [ALC882_FIXUP_PB_M5210
] = {
2028 .type
= HDA_FIXUP_PINCTLS
,
2029 .v
.pins
= (const struct hda_pintbl
[]) {
2030 { 0x19, PIN_VREF50
},
2034 [ALC882_FIXUP_ACER_ASPIRE_7736
] = {
2035 .type
= HDA_FIXUP_FUNC
,
2036 .v
.func
= alc_fixup_sku_ignore
,
2038 [ALC882_FIXUP_ASUS_W90V
] = {
2039 .type
= HDA_FIXUP_PINS
,
2040 .v
.pins
= (const struct hda_pintbl
[]) {
2041 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2045 [ALC889_FIXUP_CD
] = {
2046 .type
= HDA_FIXUP_PINS
,
2047 .v
.pins
= (const struct hda_pintbl
[]) {
2048 { 0x1c, 0x993301f0 }, /* CD */
2052 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE
] = {
2053 .type
= HDA_FIXUP_PINS
,
2054 .v
.pins
= (const struct hda_pintbl
[]) {
2055 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2059 .chain_id
= ALC889_FIXUP_CD
,
2061 [ALC889_FIXUP_VAIO_TT
] = {
2062 .type
= HDA_FIXUP_PINS
,
2063 .v
.pins
= (const struct hda_pintbl
[]) {
2064 { 0x17, 0x90170111 }, /* hidden surround speaker */
2068 [ALC888_FIXUP_EEE1601
] = {
2069 .type
= HDA_FIXUP_VERBS
,
2070 .v
.verbs
= (const struct hda_verb
[]) {
2071 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0b },
2072 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0838 },
2076 [ALC882_FIXUP_EAPD
] = {
2077 .type
= HDA_FIXUP_VERBS
,
2078 .v
.verbs
= (const struct hda_verb
[]) {
2079 /* change to EAPD mode */
2080 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2081 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3060 },
2085 [ALC883_FIXUP_EAPD
] = {
2086 .type
= HDA_FIXUP_VERBS
,
2087 .v
.verbs
= (const struct hda_verb
[]) {
2088 /* change to EAPD mode */
2089 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2090 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
2094 [ALC883_FIXUP_ACER_EAPD
] = {
2095 .type
= HDA_FIXUP_VERBS
,
2096 .v
.verbs
= (const struct hda_verb
[]) {
2097 /* eanable EAPD on Acer laptops */
2098 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2099 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2103 [ALC882_FIXUP_GPIO1
] = {
2104 .type
= HDA_FIXUP_VERBS
,
2105 .v
.verbs
= alc_gpio1_init_verbs
,
2107 [ALC882_FIXUP_GPIO2
] = {
2108 .type
= HDA_FIXUP_VERBS
,
2109 .v
.verbs
= alc_gpio2_init_verbs
,
2111 [ALC882_FIXUP_GPIO3
] = {
2112 .type
= HDA_FIXUP_VERBS
,
2113 .v
.verbs
= alc_gpio3_init_verbs
,
2115 [ALC882_FIXUP_ASUS_W2JC
] = {
2116 .type
= HDA_FIXUP_VERBS
,
2117 .v
.verbs
= alc_gpio1_init_verbs
,
2119 .chain_id
= ALC882_FIXUP_EAPD
,
2121 [ALC889_FIXUP_COEF
] = {
2122 .type
= HDA_FIXUP_FUNC
,
2123 .v
.func
= alc889_fixup_coef
,
2125 [ALC882_FIXUP_ACER_ASPIRE_4930G
] = {
2126 .type
= HDA_FIXUP_PINS
,
2127 .v
.pins
= (const struct hda_pintbl
[]) {
2128 { 0x16, 0x99130111 }, /* CLFE speaker */
2129 { 0x17, 0x99130112 }, /* surround speaker */
2133 .chain_id
= ALC882_FIXUP_GPIO1
,
2135 [ALC882_FIXUP_ACER_ASPIRE_8930G
] = {
2136 .type
= HDA_FIXUP_PINS
,
2137 .v
.pins
= (const struct hda_pintbl
[]) {
2138 { 0x16, 0x99130111 }, /* CLFE speaker */
2139 { 0x1b, 0x99130112 }, /* surround speaker */
2143 .chain_id
= ALC882_FIXUP_ASPIRE_8930G_VERBS
,
2145 [ALC882_FIXUP_ASPIRE_8930G_VERBS
] = {
2146 /* additional init verbs for Acer Aspire 8930G */
2147 .type
= HDA_FIXUP_VERBS
,
2148 .v
.verbs
= (const struct hda_verb
[]) {
2149 /* Enable all DACs */
2150 /* DAC DISABLE/MUTE 1? */
2151 /* setting bits 1-5 disables DAC nids 0x02-0x06
2152 * apparently. Init=0x38 */
2153 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x03 },
2154 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0000 },
2155 /* DAC DISABLE/MUTE 2? */
2156 /* some bit here disables the other DACs.
2158 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x08 },
2159 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0000 },
2161 * This laptop has a stereo digital microphone.
2162 * The mics are only 1cm apart which makes the stereo
2163 * useless. However, either the mic or the ALC889
2164 * makes the signal become a difference/sum signal
2165 * instead of standard stereo, which is annoying.
2166 * So instead we flip this bit which makes the
2167 * codec replicate the sum signal to both channels,
2168 * turning it into a normal mono mic.
2170 /* DMIC_CONTROL? Init value = 0x0001 */
2171 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x0b },
2172 { 0x20, AC_VERB_SET_PROC_COEF
, 0x0003 },
2173 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2174 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2178 .chain_id
= ALC882_FIXUP_GPIO1
,
2180 [ALC885_FIXUP_MACPRO_GPIO
] = {
2181 .type
= HDA_FIXUP_FUNC
,
2182 .v
.func
= alc885_fixup_macpro_gpio
,
2184 [ALC889_FIXUP_DAC_ROUTE
] = {
2185 .type
= HDA_FIXUP_FUNC
,
2186 .v
.func
= alc889_fixup_dac_route
,
2188 [ALC889_FIXUP_MBP_VREF
] = {
2189 .type
= HDA_FIXUP_FUNC
,
2190 .v
.func
= alc889_fixup_mbp_vref
,
2192 .chain_id
= ALC882_FIXUP_GPIO1
,
2194 [ALC889_FIXUP_IMAC91_VREF
] = {
2195 .type
= HDA_FIXUP_FUNC
,
2196 .v
.func
= alc889_fixup_imac91_vref
,
2198 .chain_id
= ALC882_FIXUP_GPIO1
,
2200 [ALC889_FIXUP_MBA11_VREF
] = {
2201 .type
= HDA_FIXUP_FUNC
,
2202 .v
.func
= alc889_fixup_mba11_vref
,
2204 .chain_id
= ALC889_FIXUP_MBP_VREF
,
2206 [ALC889_FIXUP_MBA21_VREF
] = {
2207 .type
= HDA_FIXUP_FUNC
,
2208 .v
.func
= alc889_fixup_mba21_vref
,
2210 .chain_id
= ALC889_FIXUP_MBP_VREF
,
2212 [ALC889_FIXUP_MP11_VREF
] = {
2213 .type
= HDA_FIXUP_FUNC
,
2214 .v
.func
= alc889_fixup_mba11_vref
,
2216 .chain_id
= ALC885_FIXUP_MACPRO_GPIO
,
2218 [ALC882_FIXUP_INV_DMIC
] = {
2219 .type
= HDA_FIXUP_FUNC
,
2220 .v
.func
= alc_fixup_inv_dmic_0x12
,
2222 [ALC882_FIXUP_NO_PRIMARY_HP
] = {
2223 .type
= HDA_FIXUP_FUNC
,
2224 .v
.func
= alc882_fixup_no_primary_hp
,
2226 [ALC887_FIXUP_ASUS_BASS
] = {
2227 .type
= HDA_FIXUP_PINS
,
2228 .v
.pins
= (const struct hda_pintbl
[]) {
2229 {0x16, 0x99130130}, /* bass speaker */
2233 .chain_id
= ALC887_FIXUP_BASS_CHMAP
,
2235 [ALC887_FIXUP_BASS_CHMAP
] = {
2236 .type
= HDA_FIXUP_FUNC
,
2237 .v
.func
= alc_fixup_bass_chmap
,
2241 static const struct snd_pci_quirk alc882_fixup_tbl
[] = {
2242 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD
),
2243 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2244 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD
),
2245 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD
),
2246 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD
),
2247 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD
),
2248 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2249 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2250 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2251 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2252 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2253 ALC882_FIXUP_ACER_ASPIRE_8930G
),
2254 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2255 ALC882_FIXUP_ACER_ASPIRE_8930G
),
2256 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2257 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2258 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2259 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2260 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2261 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2262 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210
),
2263 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2264 ALC882_FIXUP_ACER_ASPIRE_4930G
),
2265 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE
),
2266 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G
),
2267 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736
),
2268 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD
),
2269 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V
),
2270 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC
),
2271 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601
),
2272 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS
),
2273 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT
),
2274 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP
),
2275 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP
),
2277 /* All Apple entries are in codec SSIDs */
2278 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF
),
2279 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF
),
2280 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF
),
2281 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF
),
2282 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO
),
2283 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO
),
2284 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF
),
2285 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF
),
2286 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD
),
2287 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF
),
2288 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF
),
2289 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF
),
2290 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF
),
2291 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO
),
2292 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF
),
2293 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF
),
2294 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF
),
2295 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO
),
2296 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF
),
2297 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF
),
2298 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF
),
2299 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF
),
2301 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD
),
2302 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD
),
2303 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3
),
2304 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE
),
2305 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX
),
2306 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD
),
2307 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD
),
2308 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530
),
2309 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF
),
2313 static const struct hda_model_fixup alc882_fixup_models
[] = {
2314 {.id
= ALC882_FIXUP_ACER_ASPIRE_4930G
, .name
= "acer-aspire-4930g"},
2315 {.id
= ALC882_FIXUP_ACER_ASPIRE_8930G
, .name
= "acer-aspire-8930g"},
2316 {.id
= ALC883_FIXUP_ACER_EAPD
, .name
= "acer-aspire"},
2317 {.id
= ALC882_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2318 {.id
= ALC882_FIXUP_NO_PRIMARY_HP
, .name
= "no-primary-hp"},
2323 * BIOS auto configuration
2325 /* almost identical with ALC880 parser... */
2326 static int alc882_parse_auto_config(struct hda_codec
*codec
)
2328 static const hda_nid_t alc882_ignore
[] = { 0x1d, 0 };
2329 static const hda_nid_t alc882_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2330 return alc_parse_auto_config(codec
, alc882_ignore
, alc882_ssids
);
2335 static int patch_alc882(struct hda_codec
*codec
)
2337 struct alc_spec
*spec
;
2340 err
= alc_alloc_spec(codec
, 0x0b);
2346 switch (codec
->vendor_id
) {
2351 /* ALC883 and variants */
2352 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
2356 snd_hda_pick_fixup(codec
, alc882_fixup_models
, alc882_fixup_tbl
,
2358 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2360 alc_auto_parse_customize_define(codec
);
2362 if (has_cdefine_beep(codec
))
2363 spec
->gen
.beep_nid
= 0x01;
2365 /* automatic parse from the BIOS config */
2366 err
= alc882_parse_auto_config(codec
);
2370 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
)
2371 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
2373 codec
->patch_ops
= alc_patch_ops
;
2375 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
2388 static int alc262_parse_auto_config(struct hda_codec
*codec
)
2390 static const hda_nid_t alc262_ignore
[] = { 0x1d, 0 };
2391 static const hda_nid_t alc262_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2392 return alc_parse_auto_config(codec
, alc262_ignore
, alc262_ssids
);
2399 ALC262_FIXUP_FSC_H270
,
2400 ALC262_FIXUP_FSC_S7110
,
2401 ALC262_FIXUP_HP_Z200
,
2403 ALC262_FIXUP_LENOVO_3000
,
2405 ALC262_FIXUP_BENQ_T31
,
2406 ALC262_FIXUP_INV_DMIC
,
2407 ALC262_FIXUP_INTEL_BAYLEYBAY
,
2410 static const struct hda_fixup alc262_fixups
[] = {
2411 [ALC262_FIXUP_FSC_H270
] = {
2412 .type
= HDA_FIXUP_PINS
,
2413 .v
.pins
= (const struct hda_pintbl
[]) {
2414 { 0x14, 0x99130110 }, /* speaker */
2415 { 0x15, 0x0221142f }, /* front HP */
2416 { 0x1b, 0x0121141f }, /* rear HP */
2420 [ALC262_FIXUP_FSC_S7110
] = {
2421 .type
= HDA_FIXUP_PINS
,
2422 .v
.pins
= (const struct hda_pintbl
[]) {
2423 { 0x15, 0x90170110 }, /* speaker */
2427 .chain_id
= ALC262_FIXUP_BENQ
,
2429 [ALC262_FIXUP_HP_Z200
] = {
2430 .type
= HDA_FIXUP_PINS
,
2431 .v
.pins
= (const struct hda_pintbl
[]) {
2432 { 0x16, 0x99130120 }, /* internal speaker */
2436 [ALC262_FIXUP_TYAN
] = {
2437 .type
= HDA_FIXUP_PINS
,
2438 .v
.pins
= (const struct hda_pintbl
[]) {
2439 { 0x14, 0x1993e1f0 }, /* int AUX */
2443 [ALC262_FIXUP_LENOVO_3000
] = {
2444 .type
= HDA_FIXUP_PINCTLS
,
2445 .v
.pins
= (const struct hda_pintbl
[]) {
2446 { 0x19, PIN_VREF50
},
2450 .chain_id
= ALC262_FIXUP_BENQ
,
2452 [ALC262_FIXUP_BENQ
] = {
2453 .type
= HDA_FIXUP_VERBS
,
2454 .v
.verbs
= (const struct hda_verb
[]) {
2455 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2456 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3070 },
2460 [ALC262_FIXUP_BENQ_T31
] = {
2461 .type
= HDA_FIXUP_VERBS
,
2462 .v
.verbs
= (const struct hda_verb
[]) {
2463 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x07 },
2464 { 0x20, AC_VERB_SET_PROC_COEF
, 0x3050 },
2468 [ALC262_FIXUP_INV_DMIC
] = {
2469 .type
= HDA_FIXUP_FUNC
,
2470 .v
.func
= alc_fixup_inv_dmic_0x12
,
2472 [ALC262_FIXUP_INTEL_BAYLEYBAY
] = {
2473 .type
= HDA_FIXUP_FUNC
,
2474 .v
.func
= alc_fixup_no_depop_delay
,
2478 static const struct snd_pci_quirk alc262_fixup_tbl
[] = {
2479 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200
),
2480 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110
),
2481 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ
),
2482 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN
),
2483 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270
),
2484 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000
),
2485 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ
),
2486 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31
),
2487 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY
),
2491 static const struct hda_model_fixup alc262_fixup_models
[] = {
2492 {.id
= ALC262_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2498 static int patch_alc262(struct hda_codec
*codec
)
2500 struct alc_spec
*spec
;
2503 err
= alc_alloc_spec(codec
, 0x0b);
2508 spec
->gen
.shared_mic_vref_pin
= 0x18;
2511 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2516 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_COEF_INDEX
, 7);
2517 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
2518 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_COEF_INDEX
, 7);
2519 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_PROC_COEF
, tmp
| 0x80);
2522 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
2524 snd_hda_pick_fixup(codec
, alc262_fixup_models
, alc262_fixup_tbl
,
2526 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2528 alc_auto_parse_customize_define(codec
);
2530 if (has_cdefine_beep(codec
))
2531 spec
->gen
.beep_nid
= 0x01;
2533 /* automatic parse from the BIOS config */
2534 err
= alc262_parse_auto_config(codec
);
2538 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
)
2539 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
2541 codec
->patch_ops
= alc_patch_ops
;
2542 spec
->shutup
= alc_eapd_shutup
;
2544 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
2556 /* bind Beep switches of both NID 0x0f and 0x10 */
2557 static const struct hda_bind_ctls alc268_bind_beep_sw
= {
2558 .ops
= &snd_hda_bind_sw
,
2560 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT
),
2561 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT
),
2566 static const struct snd_kcontrol_new alc268_beep_mixer
[] = {
2567 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT
),
2568 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw
),
2572 /* set PCBEEP vol = 0, mute connections */
2573 static const struct hda_verb alc268_beep_init_verbs
[] = {
2574 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2575 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2576 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2581 ALC268_FIXUP_INV_DMIC
,
2582 ALC268_FIXUP_HP_EAPD
,
2586 static const struct hda_fixup alc268_fixups
[] = {
2587 [ALC268_FIXUP_INV_DMIC
] = {
2588 .type
= HDA_FIXUP_FUNC
,
2589 .v
.func
= alc_fixup_inv_dmic_0x12
,
2591 [ALC268_FIXUP_HP_EAPD
] = {
2592 .type
= HDA_FIXUP_VERBS
,
2593 .v
.verbs
= (const struct hda_verb
[]) {
2594 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 0},
2598 [ALC268_FIXUP_SPDIF
] = {
2599 .type
= HDA_FIXUP_PINS
,
2600 .v
.pins
= (const struct hda_pintbl
[]) {
2601 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2607 static const struct hda_model_fixup alc268_fixup_models
[] = {
2608 {.id
= ALC268_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
2609 {.id
= ALC268_FIXUP_HP_EAPD
, .name
= "hp-eapd"},
2613 static const struct snd_pci_quirk alc268_fixup_tbl
[] = {
2614 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF
),
2615 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC
),
2616 /* below is codec SSID since multiple Toshiba laptops have the
2617 * same PCI SSID 1179:ff00
2619 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD
),
2624 * BIOS auto configuration
2626 static int alc268_parse_auto_config(struct hda_codec
*codec
)
2628 static const hda_nid_t alc268_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2629 return alc_parse_auto_config(codec
, NULL
, alc268_ssids
);
2634 static int patch_alc268(struct hda_codec
*codec
)
2636 struct alc_spec
*spec
;
2639 /* ALC268 has no aa-loopback mixer */
2640 err
= alc_alloc_spec(codec
, 0);
2645 spec
->gen
.beep_nid
= 0x01;
2647 snd_hda_pick_fixup(codec
, alc268_fixup_models
, alc268_fixup_tbl
, alc268_fixups
);
2648 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
2650 /* automatic parse from the BIOS config */
2651 err
= alc268_parse_auto_config(codec
);
2655 if (err
> 0 && !spec
->gen
.no_analog
&&
2656 spec
->gen
.autocfg
.speaker_pins
[0] != 0x1d) {
2657 add_mixer(spec
, alc268_beep_mixer
);
2658 snd_hda_add_verbs(codec
, alc268_beep_init_verbs
);
2659 if (!query_amp_caps(codec
, 0x1d, HDA_INPUT
))
2660 /* override the amp caps for beep generator */
2661 snd_hda_override_amp_caps(codec
, 0x1d, HDA_INPUT
,
2662 (0x0c << AC_AMPCAP_OFFSET_SHIFT
) |
2663 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT
) |
2664 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
2665 (0 << AC_AMPCAP_MUTE_SHIFT
));
2668 codec
->patch_ops
= alc_patch_ops
;
2669 spec
->shutup
= alc_eapd_shutup
;
2671 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
2684 static int playback_pcm_open(struct hda_pcm_stream
*hinfo
,
2685 struct hda_codec
*codec
,
2686 struct snd_pcm_substream
*substream
)
2688 struct hda_gen_spec
*spec
= codec
->spec
;
2689 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
,
2693 static int playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
2694 struct hda_codec
*codec
,
2695 unsigned int stream_tag
,
2696 unsigned int format
,
2697 struct snd_pcm_substream
*substream
)
2699 struct hda_gen_spec
*spec
= codec
->spec
;
2700 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
,
2701 stream_tag
, format
, substream
);
2704 static int playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
2705 struct hda_codec
*codec
,
2706 struct snd_pcm_substream
*substream
)
2708 struct hda_gen_spec
*spec
= codec
->spec
;
2709 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
2712 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback
= {
2716 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
2717 /* NID is set in alc_build_pcms */
2719 .open
= playback_pcm_open
,
2720 .prepare
= playback_pcm_prepare
,
2721 .cleanup
= playback_pcm_cleanup
2725 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture
= {
2729 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
2730 /* NID is set in alc_build_pcms */
2733 /* different alc269-variants */
2735 ALC269_TYPE_ALC269VA
,
2736 ALC269_TYPE_ALC269VB
,
2737 ALC269_TYPE_ALC269VC
,
2738 ALC269_TYPE_ALC269VD
,
2749 * BIOS auto configuration
2751 static int alc269_parse_auto_config(struct hda_codec
*codec
)
2753 static const hda_nid_t alc269_ignore
[] = { 0x1d, 0 };
2754 static const hda_nid_t alc269_ssids
[] = { 0, 0x1b, 0x14, 0x21 };
2755 static const hda_nid_t alc269va_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
2756 struct alc_spec
*spec
= codec
->spec
;
2757 const hda_nid_t
*ssids
;
2759 switch (spec
->codec_variant
) {
2760 case ALC269_TYPE_ALC269VA
:
2761 case ALC269_TYPE_ALC269VC
:
2762 case ALC269_TYPE_ALC280
:
2763 case ALC269_TYPE_ALC284
:
2764 case ALC269_TYPE_ALC285
:
2765 ssids
= alc269va_ssids
;
2767 case ALC269_TYPE_ALC269VB
:
2768 case ALC269_TYPE_ALC269VD
:
2769 case ALC269_TYPE_ALC282
:
2770 case ALC269_TYPE_ALC283
:
2771 case ALC269_TYPE_ALC286
:
2772 case ALC269_TYPE_ALC255
:
2773 ssids
= alc269_ssids
;
2776 ssids
= alc269_ssids
;
2780 return alc_parse_auto_config(codec
, alc269_ignore
, ssids
);
2783 static void alc269vb_toggle_power_output(struct hda_codec
*codec
, int power_up
)
2785 int val
= alc_read_coef_idx(codec
, 0x04);
2790 alc_write_coef_idx(codec
, 0x04, val
);
2793 static void alc269_shutup(struct hda_codec
*codec
)
2795 struct alc_spec
*spec
= codec
->spec
;
2797 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
2798 alc269vb_toggle_power_output(codec
, 0);
2799 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
2800 (alc_get_coef0(codec
) & 0x00ff) == 0x018) {
2803 snd_hda_shutup_pins(codec
);
2806 static void alc282_restore_default_value(struct hda_codec
*codec
)
2810 /* Power Down Control */
2811 alc_write_coef_idx(codec
, 0x03, 0x0002);
2812 /* FIFO and filter clock */
2813 alc_write_coef_idx(codec
, 0x05, 0x0700);
2815 alc_write_coef_idx(codec
, 0x07, 0x0200);
2817 val
= alc_read_coef_idx(codec
, 0x06);
2818 alc_write_coef_idx(codec
, 0x06, (val
& ~0x00f0) | 0x0);
2820 val
= alc_read_coef_idx(codec
, 0x08);
2821 alc_write_coef_idx(codec
, 0x08, (val
& ~0xfffc) | 0x0c2c);
2823 alc_write_coef_idx(codec
, 0x0a, 0xcccc);
2825 alc_write_coef_idx(codec
, 0x0b, 0xcccc);
2826 /* LDO1/2/3, DAC/ADC */
2827 alc_write_coef_idx(codec
, 0x0e, 0x6e00);
2829 val
= alc_read_coef_idx(codec
, 0x0f);
2830 alc_write_coef_idx(codec
, 0x0f, (val
& ~0xf800) | 0x1000);
2832 val
= alc_read_coef_idx(codec
, 0x10);
2833 alc_write_coef_idx(codec
, 0x10, (val
& ~0xfc00) | 0x0c00);
2834 /* Class D test 4 */
2835 alc_write_coef_idx(codec
, 0x6f, 0x0);
2836 /* IO power down directly */
2837 val
= alc_read_coef_idx(codec
, 0x0c);
2838 alc_write_coef_idx(codec
, 0x0c, (val
& ~0xfe00) | 0x0);
2840 alc_write_coef_idx(codec
, 0x34, 0xa0c0);
2842 val
= alc_read_coef_idx(codec
, 0x16);
2843 alc_write_coef_idx(codec
, 0x16, (val
& ~0x0008) | 0x0);
2844 /* DAC simple content protection */
2845 val
= alc_read_coef_idx(codec
, 0x1d);
2846 alc_write_coef_idx(codec
, 0x1d, (val
& ~0x00e0) | 0x0);
2847 /* ADC simple content protection */
2848 val
= alc_read_coef_idx(codec
, 0x1f);
2849 alc_write_coef_idx(codec
, 0x1f, (val
& ~0x00e0) | 0x0);
2850 /* DAC ADC Zero Detection */
2851 alc_write_coef_idx(codec
, 0x21, 0x8804);
2853 alc_write_coef_idx(codec
, 0x63, 0x2902);
2854 /* capless control 2 */
2855 alc_write_coef_idx(codec
, 0x68, 0xa080);
2856 /* capless control 3 */
2857 alc_write_coef_idx(codec
, 0x69, 0x3400);
2858 /* capless control 4 */
2859 alc_write_coef_idx(codec
, 0x6a, 0x2f3e);
2860 /* capless control 5 */
2861 alc_write_coef_idx(codec
, 0x6b, 0x0);
2862 /* class D test 2 */
2863 val
= alc_read_coef_idx(codec
, 0x6d);
2864 alc_write_coef_idx(codec
, 0x6d, (val
& ~0x0fff) | 0x0900);
2865 /* class D test 3 */
2866 alc_write_coef_idx(codec
, 0x6e, 0x110a);
2867 /* class D test 5 */
2868 val
= alc_read_coef_idx(codec
, 0x70);
2869 alc_write_coef_idx(codec
, 0x70, (val
& ~0x00f8) | 0x00d8);
2870 /* class D test 6 */
2871 alc_write_coef_idx(codec
, 0x71, 0x0014);
2873 alc_write_coef_idx(codec
, 0x72, 0xc2ba);
2874 /* classD pure DC test */
2875 val
= alc_read_coef_idx(codec
, 0x77);
2876 alc_write_coef_idx(codec
, 0x77, (val
& ~0x0f80) | 0x0);
2877 /* Class D amp control */
2878 alc_write_coef_idx(codec
, 0x6c, 0xfc06);
2881 static void alc282_init(struct hda_codec
*codec
)
2883 struct alc_spec
*spec
= codec
->spec
;
2884 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
2888 alc282_restore_default_value(codec
);
2892 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
2893 coef78
= alc_read_coef_idx(codec
, 0x78);
2895 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
2896 /* Headphone capless set to high power mode */
2897 alc_write_coef_idx(codec
, 0x78, 0x9004);
2902 snd_hda_codec_write(codec
, hp_pin
, 0,
2903 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
2908 snd_hda_codec_write(codec
, hp_pin
, 0,
2909 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
2914 /* Headphone capless set to normal mode */
2915 alc_write_coef_idx(codec
, 0x78, coef78
);
2918 static void alc282_shutup(struct hda_codec
*codec
)
2920 struct alc_spec
*spec
= codec
->spec
;
2921 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
2926 alc269_shutup(codec
);
2930 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
2931 coef78
= alc_read_coef_idx(codec
, 0x78);
2932 alc_write_coef_idx(codec
, 0x78, 0x9004);
2937 snd_hda_codec_write(codec
, hp_pin
, 0,
2938 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
2943 snd_hda_codec_write(codec
, hp_pin
, 0,
2944 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
2949 alc_auto_setup_eapd(codec
, false);
2950 snd_hda_shutup_pins(codec
);
2951 alc_write_coef_idx(codec
, 0x78, coef78
);
2954 static void alc283_restore_default_value(struct hda_codec
*codec
)
2958 /* Power Down Control */
2959 alc_write_coef_idx(codec
, 0x03, 0x0002);
2960 /* FIFO and filter clock */
2961 alc_write_coef_idx(codec
, 0x05, 0x0700);
2963 alc_write_coef_idx(codec
, 0x07, 0x0200);
2965 val
= alc_read_coef_idx(codec
, 0x06);
2966 alc_write_coef_idx(codec
, 0x06, (val
& ~0x00f0) | 0x0);
2968 val
= alc_read_coef_idx(codec
, 0x08);
2969 alc_write_coef_idx(codec
, 0x08, (val
& ~0xfffc) | 0x0c2c);
2971 alc_write_coef_idx(codec
, 0x0a, 0xcccc);
2973 alc_write_coef_idx(codec
, 0x0b, 0xcccc);
2974 /* LDO1/2/3, DAC/ADC */
2975 alc_write_coef_idx(codec
, 0x0e, 0x6fc0);
2977 val
= alc_read_coef_idx(codec
, 0x0f);
2978 alc_write_coef_idx(codec
, 0x0f, (val
& ~0xf800) | 0x1000);
2980 val
= alc_read_coef_idx(codec
, 0x10);
2981 alc_write_coef_idx(codec
, 0x10, (val
& ~0xfc00) | 0x0c00);
2982 /* Class D test 4 */
2983 alc_write_coef_idx(codec
, 0x3a, 0x0);
2984 /* IO power down directly */
2985 val
= alc_read_coef_idx(codec
, 0x0c);
2986 alc_write_coef_idx(codec
, 0x0c, (val
& ~0xfe00) | 0x0);
2988 alc_write_coef_idx(codec
, 0x22, 0xa0c0);
2990 val
= alc_read_coefex_idx(codec
, 0x53, 0x01);
2991 alc_write_coefex_idx(codec
, 0x53, 0x01, (val
& ~0x000f) | 0x0008);
2992 /* DAC simple content protection */
2993 val
= alc_read_coef_idx(codec
, 0x1d);
2994 alc_write_coef_idx(codec
, 0x1d, (val
& ~0x00e0) | 0x0);
2995 /* ADC simple content protection */
2996 val
= alc_read_coef_idx(codec
, 0x1f);
2997 alc_write_coef_idx(codec
, 0x1f, (val
& ~0x00e0) | 0x0);
2998 /* DAC ADC Zero Detection */
2999 alc_write_coef_idx(codec
, 0x21, 0x8804);
3001 alc_write_coef_idx(codec
, 0x2e, 0x2902);
3002 /* capless control 2 */
3003 alc_write_coef_idx(codec
, 0x33, 0xa080);
3004 /* capless control 3 */
3005 alc_write_coef_idx(codec
, 0x34, 0x3400);
3006 /* capless control 4 */
3007 alc_write_coef_idx(codec
, 0x35, 0x2f3e);
3008 /* capless control 5 */
3009 alc_write_coef_idx(codec
, 0x36, 0x0);
3010 /* class D test 2 */
3011 val
= alc_read_coef_idx(codec
, 0x38);
3012 alc_write_coef_idx(codec
, 0x38, (val
& ~0x0fff) | 0x0900);
3013 /* class D test 3 */
3014 alc_write_coef_idx(codec
, 0x39, 0x110a);
3015 /* class D test 5 */
3016 val
= alc_read_coef_idx(codec
, 0x3b);
3017 alc_write_coef_idx(codec
, 0x3b, (val
& ~0x00f8) | 0x00d8);
3018 /* class D test 6 */
3019 alc_write_coef_idx(codec
, 0x3c, 0x0014);
3021 alc_write_coef_idx(codec
, 0x3d, 0xc2ba);
3022 /* classD pure DC test */
3023 val
= alc_read_coef_idx(codec
, 0x42);
3024 alc_write_coef_idx(codec
, 0x42, (val
& ~0x0f80) | 0x0);
3026 alc_write_coef_idx(codec
, 0x49, 0x0);
3027 /* Class D DC enable */
3028 val
= alc_read_coef_idx(codec
, 0x40);
3029 alc_write_coef_idx(codec
, 0x40, (val
& ~0xf800) | 0x9800);
3031 val
= alc_read_coef_idx(codec
, 0x42);
3032 alc_write_coef_idx(codec
, 0x42, (val
& ~0xf000) | 0x2000);
3033 /* Class D amp control */
3034 alc_write_coef_idx(codec
, 0x37, 0xfc06);
3037 static void alc283_init(struct hda_codec
*codec
)
3039 struct alc_spec
*spec
= codec
->spec
;
3040 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
3044 if (!spec
->gen
.autocfg
.hp_outs
) {
3045 if (spec
->gen
.autocfg
.line_out_type
== AC_JACK_HP_OUT
)
3046 hp_pin
= spec
->gen
.autocfg
.line_out_pins
[0];
3049 alc283_restore_default_value(codec
);
3053 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3055 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3056 /* Headphone capless set to high power mode */
3057 alc_write_coef_idx(codec
, 0x43, 0x9004);
3059 snd_hda_codec_write(codec
, hp_pin
, 0,
3060 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3065 snd_hda_codec_write(codec
, hp_pin
, 0,
3066 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
3070 /* Index 0x46 Combo jack auto switch control 2 */
3071 /* 3k pull low control for Headset jack. */
3072 val
= alc_read_coef_idx(codec
, 0x46);
3073 alc_write_coef_idx(codec
, 0x46, val
& ~(3 << 12));
3074 /* Headphone capless set to normal mode */
3075 alc_write_coef_idx(codec
, 0x43, 0x9614);
3078 static void alc283_shutup(struct hda_codec
*codec
)
3080 struct alc_spec
*spec
= codec
->spec
;
3081 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
3085 if (!spec
->gen
.autocfg
.hp_outs
) {
3086 if (spec
->gen
.autocfg
.line_out_type
== AC_JACK_HP_OUT
)
3087 hp_pin
= spec
->gen
.autocfg
.line_out_pins
[0];
3091 alc269_shutup(codec
);
3095 hp_pin_sense
= snd_hda_jack_detect(codec
, hp_pin
);
3097 alc_write_coef_idx(codec
, 0x43, 0x9004);
3099 snd_hda_codec_write(codec
, hp_pin
, 0,
3100 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
);
3105 snd_hda_codec_write(codec
, hp_pin
, 0,
3106 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0);
3108 val
= alc_read_coef_idx(codec
, 0x46);
3109 alc_write_coef_idx(codec
, 0x46, val
| (3 << 12));
3113 alc_auto_setup_eapd(codec
, false);
3114 snd_hda_shutup_pins(codec
);
3115 alc_write_coef_idx(codec
, 0x43, 0x9614);
3118 static void alc5505_coef_set(struct hda_codec
*codec
, unsigned int index_reg
,
3121 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_COEF_INDEX
, index_reg
>> 1);
3122 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_PROC_COEF
, val
& 0xffff); /* LSB */
3123 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_PROC_COEF
, val
>> 16); /* MSB */
3126 static int alc5505_coef_get(struct hda_codec
*codec
, unsigned int index_reg
)
3130 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_COEF_INDEX
, index_reg
>> 1);
3131 val
= snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_GET_PROC_COEF
, 0)
3133 val
|= snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_GET_PROC_COEF
, 0)
3138 static void alc5505_dsp_halt(struct hda_codec
*codec
)
3142 alc5505_coef_set(codec
, 0x3000, 0x000c); /* DSP CPU stop */
3143 alc5505_coef_set(codec
, 0x880c, 0x0008); /* DDR enter self refresh */
3144 alc5505_coef_set(codec
, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3145 alc5505_coef_set(codec
, 0x6230, 0xfc0d4011); /* Disable Input OP */
3146 alc5505_coef_set(codec
, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3147 alc5505_coef_set(codec
, 0x61b0, 0x00005b17); /* Stop PLL1 */
3148 alc5505_coef_set(codec
, 0x61b8, 0x04133303); /* Stop PLL3 */
3149 val
= alc5505_coef_get(codec
, 0x6220);
3150 alc5505_coef_set(codec
, 0x6220, (val
| 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3153 static void alc5505_dsp_back_from_halt(struct hda_codec
*codec
)
3155 alc5505_coef_set(codec
, 0x61b8, 0x04133302);
3156 alc5505_coef_set(codec
, 0x61b0, 0x00005b16);
3157 alc5505_coef_set(codec
, 0x61b4, 0x040a2b02);
3158 alc5505_coef_set(codec
, 0x6230, 0xf80d4011);
3159 alc5505_coef_set(codec
, 0x6220, 0x2002010f);
3160 alc5505_coef_set(codec
, 0x880c, 0x00000004);
3163 static void alc5505_dsp_init(struct hda_codec
*codec
)
3167 alc5505_dsp_halt(codec
);
3168 alc5505_dsp_back_from_halt(codec
);
3169 alc5505_coef_set(codec
, 0x61b0, 0x5b14); /* PLL1 control */
3170 alc5505_coef_set(codec
, 0x61b0, 0x5b16);
3171 alc5505_coef_set(codec
, 0x61b4, 0x04132b00); /* PLL2 control */
3172 alc5505_coef_set(codec
, 0x61b4, 0x04132b02);
3173 alc5505_coef_set(codec
, 0x61b8, 0x041f3300); /* PLL3 control*/
3174 alc5505_coef_set(codec
, 0x61b8, 0x041f3302);
3175 snd_hda_codec_write(codec
, 0x51, 0, AC_VERB_SET_CODEC_RESET
, 0); /* Function reset */
3176 alc5505_coef_set(codec
, 0x61b8, 0x041b3302);
3177 alc5505_coef_set(codec
, 0x61b8, 0x04173302);
3178 alc5505_coef_set(codec
, 0x61b8, 0x04163302);
3179 alc5505_coef_set(codec
, 0x8800, 0x348b328b); /* DRAM control */
3180 alc5505_coef_set(codec
, 0x8808, 0x00020022); /* DRAM control */
3181 alc5505_coef_set(codec
, 0x8818, 0x00000400); /* DRAM control */
3183 val
= alc5505_coef_get(codec
, 0x6200) >> 16; /* Read revision ID */
3185 alc5505_coef_set(codec
, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3187 alc5505_coef_set(codec
, 0x6220, 0x6002018f);
3189 alc5505_coef_set(codec
, 0x61ac, 0x055525f0); /**/
3190 alc5505_coef_set(codec
, 0x61c0, 0x12230080); /* Clock control */
3191 alc5505_coef_set(codec
, 0x61b4, 0x040e2b02); /* PLL2 control */
3192 alc5505_coef_set(codec
, 0x61bc, 0x010234f8); /* OSC Control */
3193 alc5505_coef_set(codec
, 0x880c, 0x00000004); /* DRAM Function control */
3194 alc5505_coef_set(codec
, 0x880c, 0x00000003);
3195 alc5505_coef_set(codec
, 0x880c, 0x00000010);
3197 #ifdef HALT_REALTEK_ALC5505
3198 alc5505_dsp_halt(codec
);
3202 #ifdef HALT_REALTEK_ALC5505
3203 #define alc5505_dsp_suspend(codec) /* NOP */
3204 #define alc5505_dsp_resume(codec) /* NOP */
3206 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
3207 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
3211 static int alc269_suspend(struct hda_codec
*codec
)
3213 struct alc_spec
*spec
= codec
->spec
;
3215 if (spec
->has_alc5505_dsp
)
3216 alc5505_dsp_suspend(codec
);
3217 return alc_suspend(codec
);
3220 static int alc269_resume(struct hda_codec
*codec
)
3222 struct alc_spec
*spec
= codec
->spec
;
3224 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
3225 alc269vb_toggle_power_output(codec
, 0);
3226 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
3227 (alc_get_coef0(codec
) & 0x00ff) == 0x018) {
3231 codec
->patch_ops
.init(codec
);
3233 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
)
3234 alc269vb_toggle_power_output(codec
, 1);
3235 if (spec
->codec_variant
== ALC269_TYPE_ALC269VB
&&
3236 (alc_get_coef0(codec
) & 0x00ff) == 0x017) {
3240 snd_hda_codec_resume_amp(codec
);
3241 snd_hda_codec_resume_cache(codec
);
3242 alc_inv_dmic_sync(codec
, true);
3243 hda_call_check_power_status(codec
, 0x01);
3244 if (spec
->has_alc5505_dsp
)
3245 alc5505_dsp_resume(codec
);
3249 #endif /* CONFIG_PM */
3251 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec
*codec
,
3252 const struct hda_fixup
*fix
, int action
)
3254 struct alc_spec
*spec
= codec
->spec
;
3256 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
3257 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
3260 static void alc269_fixup_hweq(struct hda_codec
*codec
,
3261 const struct hda_fixup
*fix
, int action
)
3265 if (action
!= HDA_FIXUP_ACT_INIT
)
3267 coef
= alc_read_coef_idx(codec
, 0x1e);
3268 alc_write_coef_idx(codec
, 0x1e, coef
| 0x80);
3271 static void alc269_fixup_headset_mic(struct hda_codec
*codec
,
3272 const struct hda_fixup
*fix
, int action
)
3274 struct alc_spec
*spec
= codec
->spec
;
3276 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
3277 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
3280 static void alc271_fixup_dmic(struct hda_codec
*codec
,
3281 const struct hda_fixup
*fix
, int action
)
3283 static const struct hda_verb verbs
[] = {
3284 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0d},
3285 {0x20, AC_VERB_SET_PROC_COEF
, 0x4000},
3290 if (strcmp(codec
->chip_name
, "ALC271X") &&
3291 strcmp(codec
->chip_name
, "ALC269VB"))
3293 cfg
= snd_hda_codec_get_pincfg(codec
, 0x12);
3294 if (get_defcfg_connect(cfg
) == AC_JACK_PORT_FIXED
)
3295 snd_hda_sequence_write(codec
, verbs
);
3298 static void alc269_fixup_pcm_44k(struct hda_codec
*codec
,
3299 const struct hda_fixup
*fix
, int action
)
3301 struct alc_spec
*spec
= codec
->spec
;
3303 if (action
!= HDA_FIXUP_ACT_PROBE
)
3306 /* Due to a hardware problem on Lenovo Ideadpad, we need to
3307 * fix the sample rate of analog I/O to 44.1kHz
3309 spec
->gen
.stream_analog_playback
= &alc269_44k_pcm_analog_playback
;
3310 spec
->gen
.stream_analog_capture
= &alc269_44k_pcm_analog_capture
;
3313 static void alc269_fixup_stereo_dmic(struct hda_codec
*codec
,
3314 const struct hda_fixup
*fix
, int action
)
3318 if (action
!= HDA_FIXUP_ACT_INIT
)
3320 /* The digital-mic unit sends PDM (differential signal) instead of
3321 * the standard PCM, thus you can't record a valid mono stream as is.
3322 * Below is a workaround specific to ALC269 to control the dmic
3323 * signal source as mono.
3325 coef
= alc_read_coef_idx(codec
, 0x07);
3326 alc_write_coef_idx(codec
, 0x07, coef
| 0x80);
3329 static void alc269_quanta_automute(struct hda_codec
*codec
)
3331 snd_hda_gen_update_outputs(codec
);
3333 snd_hda_codec_write(codec
, 0x20, 0,
3334 AC_VERB_SET_COEF_INDEX
, 0x0c);
3335 snd_hda_codec_write(codec
, 0x20, 0,
3336 AC_VERB_SET_PROC_COEF
, 0x680);
3338 snd_hda_codec_write(codec
, 0x20, 0,
3339 AC_VERB_SET_COEF_INDEX
, 0x0c);
3340 snd_hda_codec_write(codec
, 0x20, 0,
3341 AC_VERB_SET_PROC_COEF
, 0x480);
3344 static void alc269_fixup_quanta_mute(struct hda_codec
*codec
,
3345 const struct hda_fixup
*fix
, int action
)
3347 struct alc_spec
*spec
= codec
->spec
;
3348 if (action
!= HDA_FIXUP_ACT_PROBE
)
3350 spec
->gen
.automute_hook
= alc269_quanta_automute
;
3353 static void alc269_x101_hp_automute_hook(struct hda_codec
*codec
,
3354 struct hda_jack_tbl
*jack
)
3356 struct alc_spec
*spec
= codec
->spec
;
3359 snd_hda_gen_hp_automute(codec
, jack
);
3361 vref
= spec
->gen
.hp_jack_present
? PIN_VREF80
: 0;
3363 snd_hda_codec_write(codec
, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
3366 snd_hda_codec_write(codec
, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
3370 static void alc269_fixup_x101_headset_mic(struct hda_codec
*codec
,
3371 const struct hda_fixup
*fix
, int action
)
3373 struct alc_spec
*spec
= codec
->spec
;
3374 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3375 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
3376 spec
->gen
.hp_automute_hook
= alc269_x101_hp_automute_hook
;
3381 /* update mute-LED according to the speaker mute state via mic VREF pin */
3382 static void alc269_fixup_mic_mute_hook(void *private_data
, int enabled
)
3384 struct hda_codec
*codec
= private_data
;
3385 struct alc_spec
*spec
= codec
->spec
;
3386 unsigned int pinval
;
3388 if (spec
->mute_led_polarity
)
3390 pinval
= snd_hda_codec_get_pin_target(codec
, spec
->mute_led_nid
);
3391 pinval
&= ~AC_PINCTL_VREFEN
;
3392 pinval
|= enabled
? AC_PINCTL_VREF_HIZ
: AC_PINCTL_VREF_80
;
3393 if (spec
->mute_led_nid
)
3394 snd_hda_set_pin_ctl_cache(codec
, spec
->mute_led_nid
, pinval
);
3397 /* Make sure the led works even in runtime suspend */
3398 static unsigned int led_power_filter(struct hda_codec
*codec
,
3400 unsigned int power_state
)
3402 struct alc_spec
*spec
= codec
->spec
;
3404 if (power_state
!= AC_PWRST_D3
|| nid
!= spec
->mute_led_nid
)
3407 /* Set pin ctl again, it might have just been set to 0 */
3408 snd_hda_set_pin_ctl(codec
, nid
,
3409 snd_hda_codec_get_pin_target(codec
, nid
));
3414 static void alc269_fixup_hp_mute_led(struct hda_codec
*codec
,
3415 const struct hda_fixup
*fix
, int action
)
3417 struct alc_spec
*spec
= codec
->spec
;
3418 const struct dmi_device
*dev
= NULL
;
3420 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
3423 while ((dev
= dmi_find_device(DMI_DEV_TYPE_OEM_STRING
, NULL
, dev
))) {
3425 if (sscanf(dev
->name
, "HP_Mute_LED_%d_%x", &pol
, &pin
) != 2)
3427 if (pin
< 0x0a || pin
>= 0x10)
3429 spec
->mute_led_polarity
= pol
;
3430 spec
->mute_led_nid
= pin
- 0x0a + 0x18;
3431 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3432 spec
->gen
.vmaster_mute_enum
= 1;
3433 codec
->power_filter
= led_power_filter
;
3435 "Detected mute LED for %x:%d\n", spec
->mute_led_nid
,
3436 spec
->mute_led_polarity
);
3441 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec
*codec
,
3442 const struct hda_fixup
*fix
, int action
)
3444 struct alc_spec
*spec
= codec
->spec
;
3445 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3446 spec
->mute_led_polarity
= 0;
3447 spec
->mute_led_nid
= 0x18;
3448 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3449 spec
->gen
.vmaster_mute_enum
= 1;
3450 codec
->power_filter
= led_power_filter
;
3454 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec
*codec
,
3455 const struct hda_fixup
*fix
, int action
)
3457 struct alc_spec
*spec
= codec
->spec
;
3458 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3459 spec
->mute_led_polarity
= 0;
3460 spec
->mute_led_nid
= 0x19;
3461 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_mic_mute_hook
;
3462 spec
->gen
.vmaster_mute_enum
= 1;
3463 codec
->power_filter
= led_power_filter
;
3467 /* turn on/off mute LED per vmaster hook */
3468 static void alc269_fixup_hp_gpio_mute_hook(void *private_data
, int enabled
)
3470 struct hda_codec
*codec
= private_data
;
3471 struct alc_spec
*spec
= codec
->spec
;
3472 unsigned int oldval
= spec
->gpio_led
;
3475 spec
->gpio_led
&= ~0x08;
3477 spec
->gpio_led
|= 0x08;
3478 if (spec
->gpio_led
!= oldval
)
3479 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
3483 /* turn on/off mic-mute LED per capture hook */
3484 static void alc269_fixup_hp_gpio_mic_mute_hook(struct hda_codec
*codec
,
3485 struct snd_kcontrol
*kcontrol
,
3486 struct snd_ctl_elem_value
*ucontrol
)
3488 struct alc_spec
*spec
= codec
->spec
;
3489 unsigned int oldval
= spec
->gpio_led
;
3494 if (ucontrol
->value
.integer
.value
[0] ||
3495 ucontrol
->value
.integer
.value
[1])
3496 spec
->gpio_led
&= ~0x10;
3498 spec
->gpio_led
|= 0x10;
3499 if (spec
->gpio_led
!= oldval
)
3500 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
3504 static void alc269_fixup_hp_gpio_led(struct hda_codec
*codec
,
3505 const struct hda_fixup
*fix
, int action
)
3507 struct alc_spec
*spec
= codec
->spec
;
3508 static const struct hda_verb gpio_init
[] = {
3509 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x18 },
3510 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x18 },
3514 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3515 spec
->gen
.vmaster_mute
.hook
= alc269_fixup_hp_gpio_mute_hook
;
3516 spec
->gen
.cap_sync_hook
= alc269_fixup_hp_gpio_mic_mute_hook
;
3518 snd_hda_add_verbs(codec
, gpio_init
);
3522 static void alc_headset_mode_unplugged(struct hda_codec
*codec
)
3526 switch (codec
->vendor_id
) {
3528 /* LDO and MISC control */
3529 alc_write_coef_idx(codec
, 0x1b, 0x0c0b);
3530 /* UAJ function set to menual mode */
3531 alc_write_coef_idx(codec
, 0x45, 0xd089);
3532 /* Direct Drive HP Amp control(Set to verb control)*/
3533 val
= alc_read_coefex_idx(codec
, 0x57, 0x05);
3534 alc_write_coefex_idx(codec
, 0x57, 0x05, val
& ~(1<<14));
3535 /* Set MIC2 Vref gate with HP */
3536 alc_write_coef_idx(codec
, 0x06, 0x6104);
3537 /* Direct Drive HP Amp control */
3538 alc_write_coefex_idx(codec
, 0x57, 0x03, 0x8aa6);
3542 alc_write_coef_idx(codec
, 0x1b, 0x0c0b);
3543 alc_write_coef_idx(codec
, 0x45, 0xc429);
3544 val
= alc_read_coef_idx(codec
, 0x35);
3545 alc_write_coef_idx(codec
, 0x35, val
& 0xbfff);
3546 alc_write_coef_idx(codec
, 0x06, 0x2104);
3547 alc_write_coef_idx(codec
, 0x1a, 0x0001);
3548 alc_write_coef_idx(codec
, 0x26, 0x0004);
3549 alc_write_coef_idx(codec
, 0x32, 0x42a3);
3552 alc_write_coef_idx(codec
, 0x76, 0x000e);
3553 alc_write_coef_idx(codec
, 0x6c, 0x2400);
3554 alc_write_coef_idx(codec
, 0x18, 0x7308);
3555 alc_write_coef_idx(codec
, 0x6b, 0xc429);
3558 /* SET Line1 JD to 0 */
3559 val
= alc_read_coef_idx(codec
, 0x10);
3560 alc_write_coef_idx(codec
, 0x10, (val
& ~(7<<8)) | 6<<8);
3561 /* SET charge pump by verb */
3562 val
= alc_read_coefex_idx(codec
, 0x57, 0x05);
3563 alc_write_coefex_idx(codec
, 0x57, 0x05, (val
& ~(1<<15|1<<13)) | 0x0);
3564 /* SET EN_OSW to 1 */
3565 val
= alc_read_coefex_idx(codec
, 0x57, 0x03);
3566 alc_write_coefex_idx(codec
, 0x57, 0x03, (val
& ~(1<<10)) | (1<<10) );
3567 /* Combo JD gating with LINE1-VREFO */
3568 val
= alc_read_coef_idx(codec
, 0x1a);
3569 alc_write_coef_idx(codec
, 0x1a, (val
& ~(1<<3)) | (1<<3));
3570 /* Set to TRS type */
3571 alc_write_coef_idx(codec
, 0x45, 0xc429);
3572 /* Combo Jack auto detect */
3573 val
= alc_read_coef_idx(codec
, 0x4a);
3574 alc_write_coef_idx(codec
, 0x4a, (val
& 0xfff0) | 0x000e);
3577 alc_write_coef_idx(codec
, 0x15, 0x0d40);
3578 alc_write_coef_idx(codec
, 0xb7, 0x802b);
3581 codec_dbg(codec
, "Headset jack set to unplugged mode.\n");
3585 static void alc_headset_mode_mic_in(struct hda_codec
*codec
, hda_nid_t hp_pin
,
3590 switch (codec
->vendor_id
) {
3592 alc_write_coef_idx(codec
, 0x45, 0xc489);
3593 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3594 alc_write_coefex_idx(codec
, 0x57, 0x03, 0x8aa6);
3595 /* Set MIC2 Vref gate to normal */
3596 alc_write_coef_idx(codec
, 0x06, 0x6100);
3597 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3601 alc_write_coef_idx(codec
, 0x45, 0xc429);
3602 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3603 val
= alc_read_coef_idx(codec
, 0x35);
3604 alc_write_coef_idx(codec
, 0x35, val
| 1<<14);
3605 alc_write_coef_idx(codec
, 0x06, 0x2100);
3606 alc_write_coef_idx(codec
, 0x1a, 0x0021);
3607 alc_write_coef_idx(codec
, 0x26, 0x008c);
3608 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3611 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3612 alc_write_coef_idx(codec
, 0x19, 0xa208);
3613 alc_write_coef_idx(codec
, 0x2e, 0xacf0);
3616 /* Set to TRS mode */
3617 alc_write_coef_idx(codec
, 0x45, 0xc429);
3618 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3619 /* SET charge pump by verb */
3620 val
= alc_read_coefex_idx(codec
, 0x57, 0x05);
3621 alc_write_coefex_idx(codec
, 0x57, 0x05, (val
& ~(1<<15|1<<13)) | (1<<15|1<<13));
3622 /* SET EN_OSW to 0 */
3623 val
= alc_read_coefex_idx(codec
, 0x57, 0x03);
3624 alc_write_coefex_idx(codec
, 0x57, 0x03, (val
& ~(1<<10)) | 0x0);
3625 /* Combo JD gating without LINE1-VREFO */
3626 val
= alc_read_coef_idx(codec
, 0x1a);
3627 alc_write_coef_idx(codec
, 0x1a, (val
& ~(1<<3)) | 0x0);
3628 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3631 alc_write_coef_idx(codec
, 0x11, 0x0001);
3632 snd_hda_set_pin_ctl_cache(codec
, hp_pin
, 0);
3633 alc_write_coef_idx(codec
, 0xb7, 0x802b);
3634 alc_write_coef_idx(codec
, 0xb5, 0x1040);
3635 val
= alc_read_coef_idx(codec
, 0xc3);
3636 alc_write_coef_idx(codec
, 0xc3, val
| 1<<12);
3637 snd_hda_set_pin_ctl_cache(codec
, mic_pin
, PIN_VREF50
);
3640 codec_dbg(codec
, "Headset jack set to mic-in mode.\n");
3643 static void alc_headset_mode_default(struct hda_codec
*codec
)
3647 switch (codec
->vendor_id
) {
3649 alc_write_coef_idx(codec
, 0x45, 0xc089);
3650 alc_write_coef_idx(codec
, 0x45, 0xc489);
3651 alc_write_coefex_idx(codec
, 0x57, 0x03, 0x8ea6);
3652 alc_write_coef_idx(codec
, 0x49, 0x0049);
3656 alc_write_coef_idx(codec
, 0x06, 0x2100);
3657 alc_write_coef_idx(codec
, 0x32, 0x4ea3);
3660 alc_write_coef_idx(codec
, 0x76, 0x000e);
3661 alc_write_coef_idx(codec
, 0x6c, 0x2400);
3662 alc_write_coef_idx(codec
, 0x6b, 0xc429);
3663 alc_write_coef_idx(codec
, 0x18, 0x7308);
3666 /* Combo Jack auto detect */
3667 val
= alc_read_coef_idx(codec
, 0x4a);
3668 alc_write_coef_idx(codec
, 0x4a, (val
& 0xfff0) | 0x000e);
3669 /* Set to TRS type */
3670 alc_write_coef_idx(codec
, 0x45, 0xC429);
3671 /* Combo JD gating without LINE1-VREFO */
3672 val
= alc_read_coef_idx(codec
, 0x1a);
3673 alc_write_coef_idx(codec
, 0x1a, (val
& ~(1<<3)) | 0x0);
3676 alc_write_coef_idx(codec
, 0x11, 0x0041);
3677 alc_write_coef_idx(codec
, 0x15, 0x0d40);
3678 alc_write_coef_idx(codec
, 0xb7, 0x802b);
3681 codec_dbg(codec
, "Headset jack set to headphone (default) mode.\n");
3685 static void alc_headset_mode_ctia(struct hda_codec
*codec
)
3689 switch (codec
->vendor_id
) {
3691 /* Set to CTIA type */
3692 alc_write_coef_idx(codec
, 0x45, 0xd489);
3693 alc_write_coef_idx(codec
, 0x1b, 0x0c2b);
3694 alc_write_coefex_idx(codec
, 0x57, 0x03, 0x8ea6);
3698 alc_write_coef_idx(codec
, 0x45, 0xd429);
3699 alc_write_coef_idx(codec
, 0x1b, 0x0c2b);
3700 alc_write_coef_idx(codec
, 0x32, 0x4ea3);
3703 alc_write_coef_idx(codec
, 0x6b, 0xd429);
3704 alc_write_coef_idx(codec
, 0x76, 0x0008);
3705 alc_write_coef_idx(codec
, 0x18, 0x7388);
3708 /* Set to ctia type */
3709 alc_write_coef_idx(codec
, 0x45, 0xd429);
3710 /* SET Line1 JD to 1 */
3711 val
= alc_read_coef_idx(codec
, 0x10);
3712 alc_write_coef_idx(codec
, 0x10, (val
& ~(7<<8)) | 7<<8);
3715 alc_write_coef_idx(codec
, 0x11, 0x0001);
3716 alc_write_coef_idx(codec
, 0x15, 0x0d60);
3717 alc_write_coef_idx(codec
, 0xc3, 0x0000);
3720 codec_dbg(codec
, "Headset jack set to iPhone-style headset mode.\n");
3724 static void alc_headset_mode_omtp(struct hda_codec
*codec
)
3728 switch (codec
->vendor_id
) {
3730 /* Set to OMTP Type */
3731 alc_write_coef_idx(codec
, 0x45, 0xe489);
3732 alc_write_coef_idx(codec
, 0x1b, 0x0c2b);
3733 alc_write_coefex_idx(codec
, 0x57, 0x03, 0x8ea6);
3737 alc_write_coef_idx(codec
, 0x45, 0xe429);
3738 alc_write_coef_idx(codec
, 0x1b, 0x0c2b);
3739 alc_write_coef_idx(codec
, 0x32, 0x4ea3);
3742 alc_write_coef_idx(codec
, 0x6b, 0xe429);
3743 alc_write_coef_idx(codec
, 0x76, 0x0008);
3744 alc_write_coef_idx(codec
, 0x18, 0x7388);
3747 /* Set to omtp type */
3748 alc_write_coef_idx(codec
, 0x45, 0xe429);
3749 /* SET Line1 JD to 1 */
3750 val
= alc_read_coef_idx(codec
, 0x10);
3751 alc_write_coef_idx(codec
, 0x10, (val
& ~(7<<8)) | 7<<8);
3754 alc_write_coef_idx(codec
, 0x11, 0x0001);
3755 alc_write_coef_idx(codec
, 0x15, 0x0d50);
3756 alc_write_coef_idx(codec
, 0xc3, 0x0000);
3759 codec_dbg(codec
, "Headset jack set to Nokia-style headset mode.\n");
3762 static void alc_determine_headset_type(struct hda_codec
*codec
)
3765 bool is_ctia
= false;
3766 struct alc_spec
*spec
= codec
->spec
;
3768 switch (codec
->vendor_id
) {
3770 /* combo jack auto switch control(Check type)*/
3771 alc_write_coef_idx(codec
, 0x45, 0xd089);
3772 /* combo jack auto switch control(Vref conteol) */
3773 alc_write_coef_idx(codec
, 0x49, 0x0149);
3775 val
= alc_read_coef_idx(codec
, 0x46);
3776 is_ctia
= (val
& 0x0070) == 0x0070;
3780 alc_write_coef_idx(codec
, 0x45, 0xd029);
3782 val
= alc_read_coef_idx(codec
, 0x46);
3783 is_ctia
= (val
& 0x0070) == 0x0070;
3786 alc_write_coef_idx(codec
, 0x6b, 0xd429);
3788 val
= alc_read_coef_idx(codec
, 0x6c);
3789 is_ctia
= (val
& 0x001c) == 0x001c;
3792 /* Combo Jack auto detect */
3793 val
= alc_read_coef_idx(codec
, 0x4a);
3794 alc_write_coef_idx(codec
, 0x4a, (val
& 0xfff0) | 0x0008);
3795 /* Set to ctia type */
3796 alc_write_coef_idx(codec
, 0x45, 0xD429);
3798 val
= alc_read_coef_idx(codec
, 0x46);
3799 is_ctia
= (val
& 0x0070) == 0x0070;
3802 alc_write_coef_idx(codec
, 0x11, 0x0001);
3803 alc_write_coef_idx(codec
, 0xb7, 0x802b);
3804 alc_write_coef_idx(codec
, 0x15, 0x0d60);
3805 alc_write_coef_idx(codec
, 0xc3, 0x0c00);
3807 val
= alc_read_coef_idx(codec
, 0xbe);
3808 is_ctia
= (val
& 0x1c02) == 0x1c02;
3812 codec_dbg(codec
, "Headset jack detected iPhone-style headset: %s\n",
3813 is_ctia
? "yes" : "no");
3814 spec
->current_headset_type
= is_ctia
? ALC_HEADSET_TYPE_CTIA
: ALC_HEADSET_TYPE_OMTP
;
3817 static void alc_update_headset_mode(struct hda_codec
*codec
)
3819 struct alc_spec
*spec
= codec
->spec
;
3821 hda_nid_t mux_pin
= spec
->gen
.imux_pins
[spec
->gen
.cur_mux
[0]];
3822 hda_nid_t hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
3824 int new_headset_mode
;
3826 if (!snd_hda_jack_detect(codec
, hp_pin
))
3827 new_headset_mode
= ALC_HEADSET_MODE_UNPLUGGED
;
3828 else if (mux_pin
== spec
->headset_mic_pin
)
3829 new_headset_mode
= ALC_HEADSET_MODE_HEADSET
;
3830 else if (mux_pin
== spec
->headphone_mic_pin
)
3831 new_headset_mode
= ALC_HEADSET_MODE_MIC
;
3833 new_headset_mode
= ALC_HEADSET_MODE_HEADPHONE
;
3835 if (new_headset_mode
== spec
->current_headset_mode
) {
3836 snd_hda_gen_update_outputs(codec
);
3840 switch (new_headset_mode
) {
3841 case ALC_HEADSET_MODE_UNPLUGGED
:
3842 alc_headset_mode_unplugged(codec
);
3843 spec
->gen
.hp_jack_present
= false;
3845 case ALC_HEADSET_MODE_HEADSET
:
3846 if (spec
->current_headset_type
== ALC_HEADSET_TYPE_UNKNOWN
)
3847 alc_determine_headset_type(codec
);
3848 if (spec
->current_headset_type
== ALC_HEADSET_TYPE_CTIA
)
3849 alc_headset_mode_ctia(codec
);
3850 else if (spec
->current_headset_type
== ALC_HEADSET_TYPE_OMTP
)
3851 alc_headset_mode_omtp(codec
);
3852 spec
->gen
.hp_jack_present
= true;
3854 case ALC_HEADSET_MODE_MIC
:
3855 alc_headset_mode_mic_in(codec
, hp_pin
, spec
->headphone_mic_pin
);
3856 spec
->gen
.hp_jack_present
= false;
3858 case ALC_HEADSET_MODE_HEADPHONE
:
3859 alc_headset_mode_default(codec
);
3860 spec
->gen
.hp_jack_present
= true;
3863 if (new_headset_mode
!= ALC_HEADSET_MODE_MIC
) {
3864 snd_hda_set_pin_ctl_cache(codec
, hp_pin
,
3865 AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
);
3866 if (spec
->headphone_mic_pin
)
3867 snd_hda_set_pin_ctl_cache(codec
, spec
->headphone_mic_pin
,
3870 spec
->current_headset_mode
= new_headset_mode
;
3872 snd_hda_gen_update_outputs(codec
);
3875 static void alc_update_headset_mode_hook(struct hda_codec
*codec
,
3876 struct snd_kcontrol
*kcontrol
,
3877 struct snd_ctl_elem_value
*ucontrol
)
3879 alc_update_headset_mode(codec
);
3882 static void alc_update_headset_jack_cb(struct hda_codec
*codec
, struct hda_jack_tbl
*jack
)
3884 struct alc_spec
*spec
= codec
->spec
;
3885 spec
->current_headset_type
= ALC_HEADSET_TYPE_UNKNOWN
;
3886 snd_hda_gen_hp_automute(codec
, jack
);
3889 static void alc_probe_headset_mode(struct hda_codec
*codec
)
3892 struct alc_spec
*spec
= codec
->spec
;
3893 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
3896 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
3897 if (cfg
->inputs
[i
].is_headset_mic
&& !spec
->headset_mic_pin
)
3898 spec
->headset_mic_pin
= cfg
->inputs
[i
].pin
;
3899 if (cfg
->inputs
[i
].is_headphone_mic
&& !spec
->headphone_mic_pin
)
3900 spec
->headphone_mic_pin
= cfg
->inputs
[i
].pin
;
3903 spec
->gen
.cap_sync_hook
= alc_update_headset_mode_hook
;
3904 spec
->gen
.automute_hook
= alc_update_headset_mode
;
3905 spec
->gen
.hp_automute_hook
= alc_update_headset_jack_cb
;
3908 static void alc_fixup_headset_mode(struct hda_codec
*codec
,
3909 const struct hda_fixup
*fix
, int action
)
3911 struct alc_spec
*spec
= codec
->spec
;
3914 case HDA_FIXUP_ACT_PRE_PROBE
:
3915 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
| HDA_PINCFG_HEADPHONE_MIC
;
3917 case HDA_FIXUP_ACT_PROBE
:
3918 alc_probe_headset_mode(codec
);
3920 case HDA_FIXUP_ACT_INIT
:
3921 spec
->current_headset_mode
= 0;
3922 alc_update_headset_mode(codec
);
3927 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec
*codec
,
3928 const struct hda_fixup
*fix
, int action
)
3930 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3931 struct alc_spec
*spec
= codec
->spec
;
3932 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
3935 alc_fixup_headset_mode(codec
, fix
, action
);
3938 static void alc255_set_default_jack_type(struct hda_codec
*codec
)
3940 /* Set to iphone type */
3941 alc_write_coef_idx(codec
, 0x1b, 0x880b);
3942 alc_write_coef_idx(codec
, 0x45, 0xd089);
3943 alc_write_coef_idx(codec
, 0x1b, 0x080b);
3944 alc_write_coef_idx(codec
, 0x46, 0x0004);
3945 alc_write_coef_idx(codec
, 0x1b, 0x0c0b);
3949 static void alc_fixup_headset_mode_alc255(struct hda_codec
*codec
,
3950 const struct hda_fixup
*fix
, int action
)
3952 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3953 alc255_set_default_jack_type(codec
);
3955 alc_fixup_headset_mode(codec
, fix
, action
);
3958 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec
*codec
,
3959 const struct hda_fixup
*fix
, int action
)
3961 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3962 struct alc_spec
*spec
= codec
->spec
;
3963 spec
->parse_flags
|= HDA_PINCFG_HEADSET_MIC
;
3964 alc255_set_default_jack_type(codec
);
3967 alc_fixup_headset_mode(codec
, fix
, action
);
3970 static void alc_fixup_auto_mute_via_amp(struct hda_codec
*codec
,
3971 const struct hda_fixup
*fix
, int action
)
3973 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3974 struct alc_spec
*spec
= codec
->spec
;
3975 spec
->gen
.auto_mute_via_amp
= 1;
3979 static void alc_no_shutup(struct hda_codec
*codec
)
3983 static void alc_fixup_no_shutup(struct hda_codec
*codec
,
3984 const struct hda_fixup
*fix
, int action
)
3986 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3987 struct alc_spec
*spec
= codec
->spec
;
3988 spec
->shutup
= alc_no_shutup
;
3992 static void alc_fixup_disable_aamix(struct hda_codec
*codec
,
3993 const struct hda_fixup
*fix
, int action
)
3995 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3996 struct alc_spec
*spec
= codec
->spec
;
3997 /* Disable AA-loopback as it causes white noise */
3998 spec
->gen
.mixer_nid
= 0;
4002 static unsigned int alc_power_filter_xps13(struct hda_codec
*codec
,
4004 unsigned int power_state
)
4006 struct alc_spec
*spec
= codec
->spec
;
4008 /* Avoid pop noises when headphones are plugged in */
4009 if (spec
->gen
.hp_jack_present
)
4010 if (nid
== codec
->afg
|| nid
== 0x02)
4015 static void alc_fixup_dell_xps13(struct hda_codec
*codec
,
4016 const struct hda_fixup
*fix
, int action
)
4018 if (action
== HDA_FIXUP_ACT_PROBE
) {
4019 struct alc_spec
*spec
= codec
->spec
;
4020 spec
->shutup
= alc_no_shutup
;
4021 codec
->power_filter
= alc_power_filter_xps13
;
4025 static void alc_fixup_headset_mode_alc668(struct hda_codec
*codec
,
4026 const struct hda_fixup
*fix
, int action
)
4028 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4030 alc_write_coef_idx(codec
, 0xc4, 0x8000);
4031 val
= alc_read_coef_idx(codec
, 0xc2);
4032 alc_write_coef_idx(codec
, 0xc2, val
& 0xfe);
4033 snd_hda_set_pin_ctl_cache(codec
, 0x18, 0);
4035 alc_fixup_headset_mode(codec
, fix
, action
);
4038 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
4039 static int find_ext_mic_pin(struct hda_codec
*codec
)
4041 struct alc_spec
*spec
= codec
->spec
;
4042 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
4044 unsigned int defcfg
;
4047 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
4048 if (cfg
->inputs
[i
].type
!= AUTO_PIN_MIC
)
4050 nid
= cfg
->inputs
[i
].pin
;
4051 defcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
4052 if (snd_hda_get_input_pin_attr(defcfg
) == INPUT_PIN_ATTR_INT
)
4060 static void alc271_hp_gate_mic_jack(struct hda_codec
*codec
,
4061 const struct hda_fixup
*fix
,
4064 struct alc_spec
*spec
= codec
->spec
;
4066 if (action
== HDA_FIXUP_ACT_PROBE
) {
4067 int mic_pin
= find_ext_mic_pin(codec
);
4068 int hp_pin
= spec
->gen
.autocfg
.hp_pins
[0];
4070 if (snd_BUG_ON(!mic_pin
|| !hp_pin
))
4072 snd_hda_jack_set_gating_jack(codec
, mic_pin
, hp_pin
);
4076 static void alc269_fixup_limit_int_mic_boost(struct hda_codec
*codec
,
4077 const struct hda_fixup
*fix
,
4080 struct alc_spec
*spec
= codec
->spec
;
4081 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
4084 /* The mic boosts on level 2 and 3 are too noisy
4085 on the internal mic input.
4086 Therefore limit the boost to 0 or 1. */
4088 if (action
!= HDA_FIXUP_ACT_PROBE
)
4091 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
4092 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
4093 unsigned int defcfg
;
4094 if (cfg
->inputs
[i
].type
!= AUTO_PIN_MIC
)
4096 defcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
4097 if (snd_hda_get_input_pin_attr(defcfg
) != INPUT_PIN_ATTR_INT
)
4100 snd_hda_override_amp_caps(codec
, nid
, HDA_INPUT
,
4101 (0x00 << AC_AMPCAP_OFFSET_SHIFT
) |
4102 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
4103 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT
) |
4104 (0 << AC_AMPCAP_MUTE_SHIFT
));
4108 static void alc283_hp_automute_hook(struct hda_codec
*codec
,
4109 struct hda_jack_tbl
*jack
)
4111 struct alc_spec
*spec
= codec
->spec
;
4115 snd_hda_gen_hp_automute(codec
, jack
);
4117 vref
= spec
->gen
.hp_jack_present
? PIN_VREF80
: 0;
4120 snd_hda_codec_write(codec
, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4124 static void alc283_fixup_chromebook(struct hda_codec
*codec
,
4125 const struct hda_fixup
*fix
, int action
)
4127 struct alc_spec
*spec
= codec
->spec
;
4131 case HDA_FIXUP_ACT_PRE_PROBE
:
4132 snd_hda_override_wcaps(codec
, 0x03, 0);
4133 /* Disable AA-loopback as it causes white noise */
4134 spec
->gen
.mixer_nid
= 0;
4136 case HDA_FIXUP_ACT_INIT
:
4137 /* MIC2-VREF control */
4138 /* Set to manual mode */
4139 val
= alc_read_coef_idx(codec
, 0x06);
4140 alc_write_coef_idx(codec
, 0x06, val
& ~0x000c);
4141 /* Enable Line1 input control by verb */
4142 val
= alc_read_coef_idx(codec
, 0x1a);
4143 alc_write_coef_idx(codec
, 0x1a, val
| (1 << 4));
4148 static void alc283_fixup_sense_combo_jack(struct hda_codec
*codec
,
4149 const struct hda_fixup
*fix
, int action
)
4151 struct alc_spec
*spec
= codec
->spec
;
4155 case HDA_FIXUP_ACT_PRE_PROBE
:
4156 spec
->gen
.hp_automute_hook
= alc283_hp_automute_hook
;
4158 case HDA_FIXUP_ACT_INIT
:
4159 /* MIC2-VREF control */
4160 /* Set to manual mode */
4161 val
= alc_read_coef_idx(codec
, 0x06);
4162 alc_write_coef_idx(codec
, 0x06, val
& ~0x000c);
4167 /* mute tablet speaker pin (0x14) via dock plugging in addition */
4168 static void asus_tx300_automute(struct hda_codec
*codec
)
4170 struct alc_spec
*spec
= codec
->spec
;
4171 snd_hda_gen_update_outputs(codec
);
4172 if (snd_hda_jack_detect(codec
, 0x1b))
4173 spec
->gen
.mute_bits
|= (1ULL << 0x14);
4176 static void alc282_fixup_asus_tx300(struct hda_codec
*codec
,
4177 const struct hda_fixup
*fix
, int action
)
4179 struct alc_spec
*spec
= codec
->spec
;
4180 /* TX300 needs to set up GPIO2 for the speaker amp */
4181 static const struct hda_verb gpio2_verbs
[] = {
4182 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x04 },
4183 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x04 },
4184 { 0x01, AC_VERB_SET_GPIO_DATA
, 0x04 },
4187 static const struct hda_pintbl dock_pins
[] = {
4188 { 0x1b, 0x21114000 }, /* dock speaker pin */
4191 struct snd_kcontrol
*kctl
;
4194 case HDA_FIXUP_ACT_PRE_PROBE
:
4195 snd_hda_add_verbs(codec
, gpio2_verbs
);
4196 snd_hda_apply_pincfgs(codec
, dock_pins
);
4197 spec
->gen
.auto_mute_via_amp
= 1;
4198 spec
->gen
.automute_hook
= asus_tx300_automute
;
4199 snd_hda_jack_detect_enable_callback(codec
, 0x1b,
4201 snd_hda_gen_hp_automute
);
4203 case HDA_FIXUP_ACT_BUILD
:
4204 /* this is a bit tricky; give more sane names for the main
4205 * (tablet) speaker and the dock speaker, respectively
4207 kctl
= snd_hda_find_mixer_ctl(codec
, "Speaker Playback Switch");
4209 strcpy(kctl
->id
.name
, "Dock Speaker Playback Switch");
4210 kctl
= snd_hda_find_mixer_ctl(codec
, "Bass Speaker Playback Switch");
4212 strcpy(kctl
->id
.name
, "Speaker Playback Switch");
4217 static void alc290_fixup_mono_speakers(struct hda_codec
*codec
,
4218 const struct hda_fixup
*fix
, int action
)
4220 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4221 /* DAC node 0x03 is giving mono output. We therefore want to
4222 make sure 0x14 (front speaker) and 0x15 (headphones) use the
4223 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
4224 hda_nid_t conn1
[2] = { 0x0c };
4225 snd_hda_override_conn_list(codec
, 0x14, 1, conn1
);
4226 snd_hda_override_conn_list(codec
, 0x15, 1, conn1
);
4230 /* for hda_fixup_thinkpad_acpi() */
4231 #include "thinkpad_helper.c"
4234 ALC269_FIXUP_SONY_VAIO
,
4235 ALC275_FIXUP_SONY_VAIO_GPIO2
,
4236 ALC269_FIXUP_DELL_M101Z
,
4237 ALC269_FIXUP_SKU_IGNORE
,
4238 ALC269_FIXUP_ASUS_G73JW
,
4239 ALC269_FIXUP_LENOVO_EAPD
,
4240 ALC275_FIXUP_SONY_HWEQ
,
4241 ALC275_FIXUP_SONY_DISABLE_AAMIX
,
4243 ALC269_FIXUP_PCM_44K
,
4244 ALC269_FIXUP_STEREO_DMIC
,
4245 ALC269_FIXUP_HEADSET_MIC
,
4246 ALC269_FIXUP_QUANTA_MUTE
,
4247 ALC269_FIXUP_LIFEBOOK
,
4250 ALC269VB_FIXUP_AMIC
,
4251 ALC269VB_FIXUP_DMIC
,
4252 ALC269_FIXUP_HP_MUTE_LED
,
4253 ALC269_FIXUP_HP_MUTE_LED_MIC1
,
4254 ALC269_FIXUP_HP_MUTE_LED_MIC2
,
4255 ALC269_FIXUP_HP_GPIO_LED
,
4256 ALC269_FIXUP_INV_DMIC
,
4257 ALC269_FIXUP_LENOVO_DOCK
,
4258 ALC269_FIXUP_NO_SHUTUP
,
4259 ALC286_FIXUP_SONY_MIC_NO_PRESENCE
,
4260 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
,
4261 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
4262 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
,
4263 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
4264 ALC269_FIXUP_HEADSET_MODE
,
4265 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
,
4266 ALC269_FIXUP_ASUS_X101_FUNC
,
4267 ALC269_FIXUP_ASUS_X101_VERB
,
4268 ALC269_FIXUP_ASUS_X101
,
4269 ALC271_FIXUP_AMIC_MIC2
,
4270 ALC271_FIXUP_HP_GATE_MIC_JACK
,
4271 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
,
4272 ALC269_FIXUP_ACER_AC700
,
4273 ALC269_FIXUP_LIMIT_INT_MIC_BOOST
,
4274 ALC269VB_FIXUP_ASUS_ZENBOOK
,
4275 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
,
4276 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
,
4277 ALC269VB_FIXUP_ORDISSIMO_EVE2
,
4278 ALC283_FIXUP_CHROME_BOOK
,
4279 ALC283_FIXUP_SENSE_COMBO_JACK
,
4280 ALC282_FIXUP_ASUS_TX300
,
4281 ALC283_FIXUP_INT_MIC
,
4282 ALC290_FIXUP_MONO_SPEAKERS
,
4283 ALC290_FIXUP_MONO_SPEAKERS_HSJACK
,
4284 ALC290_FIXUP_SUBWOOFER
,
4285 ALC290_FIXUP_SUBWOOFER_HSJACK
,
4286 ALC269_FIXUP_THINKPAD_ACPI
,
4287 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
4288 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
,
4289 ALC255_FIXUP_HEADSET_MODE
,
4290 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
,
4291 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
,
4292 ALC292_FIXUP_TPT440_DOCK
,
4295 static const struct hda_fixup alc269_fixups
[] = {
4296 [ALC269_FIXUP_SONY_VAIO
] = {
4297 .type
= HDA_FIXUP_PINCTLS
,
4298 .v
.pins
= (const struct hda_pintbl
[]) {
4299 {0x19, PIN_VREFGRD
},
4303 [ALC275_FIXUP_SONY_VAIO_GPIO2
] = {
4304 .type
= HDA_FIXUP_VERBS
,
4305 .v
.verbs
= (const struct hda_verb
[]) {
4306 {0x01, AC_VERB_SET_GPIO_MASK
, 0x04},
4307 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x04},
4308 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
4312 .chain_id
= ALC269_FIXUP_SONY_VAIO
4314 [ALC269_FIXUP_DELL_M101Z
] = {
4315 .type
= HDA_FIXUP_VERBS
,
4316 .v
.verbs
= (const struct hda_verb
[]) {
4317 /* Enables internal speaker */
4318 {0x20, AC_VERB_SET_COEF_INDEX
, 13},
4319 {0x20, AC_VERB_SET_PROC_COEF
, 0x4040},
4323 [ALC269_FIXUP_SKU_IGNORE
] = {
4324 .type
= HDA_FIXUP_FUNC
,
4325 .v
.func
= alc_fixup_sku_ignore
,
4327 [ALC269_FIXUP_ASUS_G73JW
] = {
4328 .type
= HDA_FIXUP_PINS
,
4329 .v
.pins
= (const struct hda_pintbl
[]) {
4330 { 0x17, 0x99130111 }, /* subwoofer */
4334 [ALC269_FIXUP_LENOVO_EAPD
] = {
4335 .type
= HDA_FIXUP_VERBS
,
4336 .v
.verbs
= (const struct hda_verb
[]) {
4337 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
4341 [ALC275_FIXUP_SONY_HWEQ
] = {
4342 .type
= HDA_FIXUP_FUNC
,
4343 .v
.func
= alc269_fixup_hweq
,
4345 .chain_id
= ALC275_FIXUP_SONY_VAIO_GPIO2
4347 [ALC275_FIXUP_SONY_DISABLE_AAMIX
] = {
4348 .type
= HDA_FIXUP_FUNC
,
4349 .v
.func
= alc_fixup_disable_aamix
,
4351 .chain_id
= ALC269_FIXUP_SONY_VAIO
4353 [ALC271_FIXUP_DMIC
] = {
4354 .type
= HDA_FIXUP_FUNC
,
4355 .v
.func
= alc271_fixup_dmic
,
4357 [ALC269_FIXUP_PCM_44K
] = {
4358 .type
= HDA_FIXUP_FUNC
,
4359 .v
.func
= alc269_fixup_pcm_44k
,
4361 .chain_id
= ALC269_FIXUP_QUANTA_MUTE
4363 [ALC269_FIXUP_STEREO_DMIC
] = {
4364 .type
= HDA_FIXUP_FUNC
,
4365 .v
.func
= alc269_fixup_stereo_dmic
,
4367 [ALC269_FIXUP_HEADSET_MIC
] = {
4368 .type
= HDA_FIXUP_FUNC
,
4369 .v
.func
= alc269_fixup_headset_mic
,
4371 [ALC269_FIXUP_QUANTA_MUTE
] = {
4372 .type
= HDA_FIXUP_FUNC
,
4373 .v
.func
= alc269_fixup_quanta_mute
,
4375 [ALC269_FIXUP_LIFEBOOK
] = {
4376 .type
= HDA_FIXUP_PINS
,
4377 .v
.pins
= (const struct hda_pintbl
[]) {
4378 { 0x1a, 0x2101103f }, /* dock line-out */
4379 { 0x1b, 0x23a11040 }, /* dock mic-in */
4383 .chain_id
= ALC269_FIXUP_QUANTA_MUTE
4385 [ALC269_FIXUP_AMIC
] = {
4386 .type
= HDA_FIXUP_PINS
,
4387 .v
.pins
= (const struct hda_pintbl
[]) {
4388 { 0x14, 0x99130110 }, /* speaker */
4389 { 0x15, 0x0121401f }, /* HP out */
4390 { 0x18, 0x01a19c20 }, /* mic */
4391 { 0x19, 0x99a3092f }, /* int-mic */
4395 [ALC269_FIXUP_DMIC
] = {
4396 .type
= HDA_FIXUP_PINS
,
4397 .v
.pins
= (const struct hda_pintbl
[]) {
4398 { 0x12, 0x99a3092f }, /* int-mic */
4399 { 0x14, 0x99130110 }, /* speaker */
4400 { 0x15, 0x0121401f }, /* HP out */
4401 { 0x18, 0x01a19c20 }, /* mic */
4405 [ALC269VB_FIXUP_AMIC
] = {
4406 .type
= HDA_FIXUP_PINS
,
4407 .v
.pins
= (const struct hda_pintbl
[]) {
4408 { 0x14, 0x99130110 }, /* speaker */
4409 { 0x18, 0x01a19c20 }, /* mic */
4410 { 0x19, 0x99a3092f }, /* int-mic */
4411 { 0x21, 0x0121401f }, /* HP out */
4415 [ALC269VB_FIXUP_DMIC
] = {
4416 .type
= HDA_FIXUP_PINS
,
4417 .v
.pins
= (const struct hda_pintbl
[]) {
4418 { 0x12, 0x99a3092f }, /* int-mic */
4419 { 0x14, 0x99130110 }, /* speaker */
4420 { 0x18, 0x01a19c20 }, /* mic */
4421 { 0x21, 0x0121401f }, /* HP out */
4425 [ALC269_FIXUP_HP_MUTE_LED
] = {
4426 .type
= HDA_FIXUP_FUNC
,
4427 .v
.func
= alc269_fixup_hp_mute_led
,
4429 [ALC269_FIXUP_HP_MUTE_LED_MIC1
] = {
4430 .type
= HDA_FIXUP_FUNC
,
4431 .v
.func
= alc269_fixup_hp_mute_led_mic1
,
4433 [ALC269_FIXUP_HP_MUTE_LED_MIC2
] = {
4434 .type
= HDA_FIXUP_FUNC
,
4435 .v
.func
= alc269_fixup_hp_mute_led_mic2
,
4437 [ALC269_FIXUP_HP_GPIO_LED
] = {
4438 .type
= HDA_FIXUP_FUNC
,
4439 .v
.func
= alc269_fixup_hp_gpio_led
,
4441 [ALC269_FIXUP_INV_DMIC
] = {
4442 .type
= HDA_FIXUP_FUNC
,
4443 .v
.func
= alc_fixup_inv_dmic_0x12
,
4445 [ALC269_FIXUP_NO_SHUTUP
] = {
4446 .type
= HDA_FIXUP_FUNC
,
4447 .v
.func
= alc_fixup_no_shutup
,
4449 [ALC269_FIXUP_LENOVO_DOCK
] = {
4450 .type
= HDA_FIXUP_PINS
,
4451 .v
.pins
= (const struct hda_pintbl
[]) {
4452 { 0x19, 0x23a11040 }, /* dock mic */
4453 { 0x1b, 0x2121103f }, /* dock headphone */
4457 .chain_id
= ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
4459 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
] = {
4460 .type
= HDA_FIXUP_FUNC
,
4461 .v
.func
= alc269_fixup_pincfg_no_hp_to_lineout
,
4463 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
4465 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
4466 .type
= HDA_FIXUP_PINS
,
4467 .v
.pins
= (const struct hda_pintbl
[]) {
4468 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4469 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4473 .chain_id
= ALC269_FIXUP_HEADSET_MODE
4475 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
] = {
4476 .type
= HDA_FIXUP_PINS
,
4477 .v
.pins
= (const struct hda_pintbl
[]) {
4478 { 0x16, 0x21014020 }, /* dock line out */
4479 { 0x19, 0x21a19030 }, /* dock mic */
4480 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4484 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4486 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
] = {
4487 .type
= HDA_FIXUP_PINS
,
4488 .v
.pins
= (const struct hda_pintbl
[]) {
4489 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4493 .chain_id
= ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4495 [ALC269_FIXUP_HEADSET_MODE
] = {
4496 .type
= HDA_FIXUP_FUNC
,
4497 .v
.func
= alc_fixup_headset_mode
,
4499 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
] = {
4500 .type
= HDA_FIXUP_FUNC
,
4501 .v
.func
= alc_fixup_headset_mode_no_hp_mic
,
4503 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE
] = {
4504 .type
= HDA_FIXUP_PINS
,
4505 .v
.pins
= (const struct hda_pintbl
[]) {
4506 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4510 .chain_id
= ALC269_FIXUP_HEADSET_MIC
4512 [ALC269_FIXUP_ASUS_X101_FUNC
] = {
4513 .type
= HDA_FIXUP_FUNC
,
4514 .v
.func
= alc269_fixup_x101_headset_mic
,
4516 [ALC269_FIXUP_ASUS_X101_VERB
] = {
4517 .type
= HDA_FIXUP_VERBS
,
4518 .v
.verbs
= (const struct hda_verb
[]) {
4519 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
4520 {0x20, AC_VERB_SET_COEF_INDEX
, 0x08},
4521 {0x20, AC_VERB_SET_PROC_COEF
, 0x0310},
4525 .chain_id
= ALC269_FIXUP_ASUS_X101_FUNC
4527 [ALC269_FIXUP_ASUS_X101
] = {
4528 .type
= HDA_FIXUP_PINS
,
4529 .v
.pins
= (const struct hda_pintbl
[]) {
4530 { 0x18, 0x04a1182c }, /* Headset mic */
4534 .chain_id
= ALC269_FIXUP_ASUS_X101_VERB
4536 [ALC271_FIXUP_AMIC_MIC2
] = {
4537 .type
= HDA_FIXUP_PINS
,
4538 .v
.pins
= (const struct hda_pintbl
[]) {
4539 { 0x14, 0x99130110 }, /* speaker */
4540 { 0x19, 0x01a19c20 }, /* mic */
4541 { 0x1b, 0x99a7012f }, /* int-mic */
4542 { 0x21, 0x0121401f }, /* HP out */
4546 [ALC271_FIXUP_HP_GATE_MIC_JACK
] = {
4547 .type
= HDA_FIXUP_FUNC
,
4548 .v
.func
= alc271_hp_gate_mic_jack
,
4550 .chain_id
= ALC271_FIXUP_AMIC_MIC2
,
4552 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
] = {
4553 .type
= HDA_FIXUP_FUNC
,
4554 .v
.func
= alc269_fixup_limit_int_mic_boost
,
4556 .chain_id
= ALC271_FIXUP_HP_GATE_MIC_JACK
,
4558 [ALC269_FIXUP_ACER_AC700
] = {
4559 .type
= HDA_FIXUP_PINS
,
4560 .v
.pins
= (const struct hda_pintbl
[]) {
4561 { 0x12, 0x99a3092f }, /* int-mic */
4562 { 0x14, 0x99130110 }, /* speaker */
4563 { 0x18, 0x03a11c20 }, /* mic */
4564 { 0x1e, 0x0346101e }, /* SPDIF1 */
4565 { 0x21, 0x0321101f }, /* HP out */
4569 .chain_id
= ALC271_FIXUP_DMIC
,
4571 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST
] = {
4572 .type
= HDA_FIXUP_FUNC
,
4573 .v
.func
= alc269_fixup_limit_int_mic_boost
,
4575 .chain_id
= ALC269_FIXUP_THINKPAD_ACPI
,
4577 [ALC269VB_FIXUP_ASUS_ZENBOOK
] = {
4578 .type
= HDA_FIXUP_FUNC
,
4579 .v
.func
= alc269_fixup_limit_int_mic_boost
,
4581 .chain_id
= ALC269VB_FIXUP_DMIC
,
4583 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
] = {
4584 .type
= HDA_FIXUP_VERBS
,
4585 .v
.verbs
= (const struct hda_verb
[]) {
4586 /* class-D output amp +5dB */
4587 { 0x20, AC_VERB_SET_COEF_INDEX
, 0x12 },
4588 { 0x20, AC_VERB_SET_PROC_COEF
, 0x2800 },
4592 .chain_id
= ALC269VB_FIXUP_ASUS_ZENBOOK
,
4594 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
] = {
4595 .type
= HDA_FIXUP_FUNC
,
4596 .v
.func
= alc269_fixup_limit_int_mic_boost
,
4598 .chain_id
= ALC269_FIXUP_HP_MUTE_LED_MIC1
,
4600 [ALC269VB_FIXUP_ORDISSIMO_EVE2
] = {
4601 .type
= HDA_FIXUP_PINS
,
4602 .v
.pins
= (const struct hda_pintbl
[]) {
4603 { 0x12, 0x99a3092f }, /* int-mic */
4604 { 0x18, 0x03a11d20 }, /* mic */
4605 { 0x19, 0x411111f0 }, /* Unused bogus pin */
4609 [ALC283_FIXUP_CHROME_BOOK
] = {
4610 .type
= HDA_FIXUP_FUNC
,
4611 .v
.func
= alc283_fixup_chromebook
,
4613 [ALC283_FIXUP_SENSE_COMBO_JACK
] = {
4614 .type
= HDA_FIXUP_FUNC
,
4615 .v
.func
= alc283_fixup_sense_combo_jack
,
4617 .chain_id
= ALC283_FIXUP_CHROME_BOOK
,
4619 [ALC282_FIXUP_ASUS_TX300
] = {
4620 .type
= HDA_FIXUP_FUNC
,
4621 .v
.func
= alc282_fixup_asus_tx300
,
4623 [ALC283_FIXUP_INT_MIC
] = {
4624 .type
= HDA_FIXUP_VERBS
,
4625 .v
.verbs
= (const struct hda_verb
[]) {
4626 {0x20, AC_VERB_SET_COEF_INDEX
, 0x1a},
4627 {0x20, AC_VERB_SET_PROC_COEF
, 0x0011},
4631 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
4633 [ALC290_FIXUP_SUBWOOFER_HSJACK
] = {
4634 .type
= HDA_FIXUP_PINS
,
4635 .v
.pins
= (const struct hda_pintbl
[]) {
4636 { 0x17, 0x90170112 }, /* subwoofer */
4640 .chain_id
= ALC290_FIXUP_MONO_SPEAKERS_HSJACK
,
4642 [ALC290_FIXUP_SUBWOOFER
] = {
4643 .type
= HDA_FIXUP_PINS
,
4644 .v
.pins
= (const struct hda_pintbl
[]) {
4645 { 0x17, 0x90170112 }, /* subwoofer */
4649 .chain_id
= ALC290_FIXUP_MONO_SPEAKERS
,
4651 [ALC290_FIXUP_MONO_SPEAKERS
] = {
4652 .type
= HDA_FIXUP_FUNC
,
4653 .v
.func
= alc290_fixup_mono_speakers
,
4655 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK
] = {
4656 .type
= HDA_FIXUP_FUNC
,
4657 .v
.func
= alc290_fixup_mono_speakers
,
4659 .chain_id
= ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
4661 [ALC269_FIXUP_THINKPAD_ACPI
] = {
4662 .type
= HDA_FIXUP_FUNC
,
4663 .v
.func
= hda_fixup_thinkpad_acpi
,
4665 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
4666 .type
= HDA_FIXUP_PINS
,
4667 .v
.pins
= (const struct hda_pintbl
[]) {
4668 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4669 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4673 .chain_id
= ALC255_FIXUP_HEADSET_MODE
4675 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
] = {
4676 .type
= HDA_FIXUP_PINS
,
4677 .v
.pins
= (const struct hda_pintbl
[]) {
4678 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4682 .chain_id
= ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
4684 [ALC255_FIXUP_HEADSET_MODE
] = {
4685 .type
= HDA_FIXUP_FUNC
,
4686 .v
.func
= alc_fixup_headset_mode_alc255
,
4688 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
] = {
4689 .type
= HDA_FIXUP_FUNC
,
4690 .v
.func
= alc_fixup_headset_mode_alc255_no_hp_mic
,
4692 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
] = {
4693 .type
= HDA_FIXUP_PINS
,
4694 .v
.pins
= (const struct hda_pintbl
[]) {
4695 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4696 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4700 .chain_id
= ALC269_FIXUP_HEADSET_MODE
4702 [ALC292_FIXUP_TPT440_DOCK
] = {
4703 .type
= HDA_FIXUP_PINS
,
4704 .v
.pins
= (const struct hda_pintbl
[]) {
4705 { 0x16, 0x21211010 }, /* dock headphone */
4706 { 0x19, 0x21a11010 }, /* dock mic */
4710 .chain_id
= ALC269_FIXUP_LIMIT_INT_MIC_BOOST
4714 static const struct snd_pci_quirk alc269_fixup_tbl
[] = {
4715 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC
),
4716 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC
),
4717 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC
),
4718 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700
),
4719 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK
),
4720 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK
),
4721 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC
),
4722 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572
),
4723 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z
),
4724 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4725 SND_PCI_QUIRK(0x1028, 0x05be, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4726 SND_PCI_QUIRK(0x1028, 0x05c4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4727 SND_PCI_QUIRK(0x1028, 0x05c5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4728 SND_PCI_QUIRK(0x1028, 0x05c6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4729 SND_PCI_QUIRK(0x1028, 0x05c7, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4730 SND_PCI_QUIRK(0x1028, 0x05c8, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4731 SND_PCI_QUIRK(0x1028, 0x05c9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4732 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4733 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4734 SND_PCI_QUIRK(0x1028, 0x05cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4735 SND_PCI_QUIRK(0x1028, 0x05cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4736 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER
),
4737 SND_PCI_QUIRK(0x1028, 0x05de, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4738 SND_PCI_QUIRK(0x1028, 0x05e0, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4739 SND_PCI_QUIRK(0x1028, 0x05e9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4740 SND_PCI_QUIRK(0x1028, 0x05ea, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4741 SND_PCI_QUIRK(0x1028, 0x05eb, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4742 SND_PCI_QUIRK(0x1028, 0x05ec, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4743 SND_PCI_QUIRK(0x1028, 0x05ed, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4744 SND_PCI_QUIRK(0x1028, 0x05ee, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4745 SND_PCI_QUIRK(0x1028, 0x05f3, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4746 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4747 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4748 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4749 SND_PCI_QUIRK(0x1028, 0x05f8, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4750 SND_PCI_QUIRK(0x1028, 0x05f9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4751 SND_PCI_QUIRK(0x1028, 0x05fb, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4752 SND_PCI_QUIRK(0x1028, 0x0606, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4753 SND_PCI_QUIRK(0x1028, 0x0608, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4754 SND_PCI_QUIRK(0x1028, 0x0609, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4755 SND_PCI_QUIRK(0x1028, 0x0613, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4756 SND_PCI_QUIRK(0x1028, 0x0614, "Dell Inspiron 3135", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
),
4757 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK
),
4758 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK
),
4759 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK
),
4760 SND_PCI_QUIRK(0x1028, 0x063f, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
),
4761 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
4762 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
4763 SND_PCI_QUIRK(0x1028, 0x0668, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
),
4764 SND_PCI_QUIRK(0x1028, 0x0669, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE
),
4765 SND_PCI_QUIRK(0x1028, 0x0684, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4766 SND_PCI_QUIRK(0x1028, 0x15cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4767 SND_PCI_QUIRK(0x1028, 0x15cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
),
4768 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
4769 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
),
4770 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2
),
4771 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED
),
4772 SND_PCI_QUIRK(0x103c, 0x1973, "HP Pavilion", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4773 SND_PCI_QUIRK(0x103c, 0x1983, "HP Pavilion", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4774 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED
),
4776 SND_PCI_QUIRK(0x103c, 0x220f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4777 SND_PCI_QUIRK(0x103c, 0x2213, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4778 SND_PCI_QUIRK(0x103c, 0x2266, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4779 SND_PCI_QUIRK(0x103c, 0x2267, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4780 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4781 SND_PCI_QUIRK(0x103c, 0x2269, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4782 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4783 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4784 SND_PCI_QUIRK(0x103c, 0x227a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4785 SND_PCI_QUIRK(0x103c, 0x227b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4786 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4787 SND_PCI_QUIRK(0x103c, 0x22a0, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4788 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4789 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4790 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4791 SND_PCI_QUIRK(0x103c, 0x22c0, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4792 SND_PCI_QUIRK(0x103c, 0x22c1, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4793 SND_PCI_QUIRK(0x103c, 0x22c2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4794 SND_PCI_QUIRK(0x103c, 0x22cd, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4795 SND_PCI_QUIRK(0x103c, 0x22ce, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4796 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4797 SND_PCI_QUIRK(0x103c, 0x22d0, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4799 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4800 SND_PCI_QUIRK(0x103c, 0x2261, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4801 SND_PCI_QUIRK(0x103c, 0x2262, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4802 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4803 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4804 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4805 SND_PCI_QUIRK(0x103c, 0x227d, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4806 SND_PCI_QUIRK(0x103c, 0x227e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4807 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4808 SND_PCI_QUIRK(0x103c, 0x2280, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4809 SND_PCI_QUIRK(0x103c, 0x2281, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4810 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4811 SND_PCI_QUIRK(0x103c, 0x2289, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4812 SND_PCI_QUIRK(0x103c, 0x228a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4813 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4814 SND_PCI_QUIRK(0x103c, 0x228c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4815 SND_PCI_QUIRK(0x103c, 0x228d, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4816 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4817 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4818 SND_PCI_QUIRK(0x103c, 0x22c6, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4819 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4820 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4821 SND_PCI_QUIRK(0x103c, 0x22c3, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4822 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1
),
4823 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED
),
4824 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300
),
4825 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
4826 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
4827 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK
),
4828 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A
),
4829 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC
),
4830 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW
),
4831 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC
),
4832 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
4833 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC
),
4834 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC
),
4835 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC
),
4836 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC
),
4837 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101
),
4838 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE
),
4839 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE
),
4840 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2
),
4841 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
4842 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
4843 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX
),
4844 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO
),
4845 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK
),
4846 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE
),
4847 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE
),
4848 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE
),
4849 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE
),
4850 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE
),
4851 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK
),
4852 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK
),
4853 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK
),
4854 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK
),
4855 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK
),
4856 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK
),
4857 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440_DOCK
),
4858 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK
),
4859 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
4860 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
4861 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
4862 SND_PCI_QUIRK(0x17aa, 0x3978, "IdeaPad Y410P", ALC269_FIXUP_NO_SHUTUP
),
4863 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
4864 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC
),
4865 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
4866 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST
),
4867 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K
),
4868 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD
),
4869 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI
),
4870 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2
), /* Also known as Malata PC-B1303 */
4873 /* Below is a quirk table taken from the old code.
4874 * Basically the device should work as is without the fixup table.
4875 * If BIOS doesn't give a proper info, enable the corresponding
4878 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
4880 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC
),
4881 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC
),
4882 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC
),
4883 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC
),
4884 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC
),
4885 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC
),
4886 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC
),
4887 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC
),
4888 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC
),
4889 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC
),
4890 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC
),
4891 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC
),
4892 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC
),
4893 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC
),
4894 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC
),
4895 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC
),
4896 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC
),
4897 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC
),
4898 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC
),
4899 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC
),
4900 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC
),
4901 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC
),
4902 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC
),
4903 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC
),
4904 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC
),
4905 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC
),
4906 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC
),
4907 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC
),
4908 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC
),
4909 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC
),
4910 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC
),
4911 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC
),
4912 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC
),
4913 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC
),
4914 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC
),
4915 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC
),
4916 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC
),
4917 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC
),
4918 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC
),
4923 static const struct hda_model_fixup alc269_fixup_models
[] = {
4924 {.id
= ALC269_FIXUP_AMIC
, .name
= "laptop-amic"},
4925 {.id
= ALC269_FIXUP_DMIC
, .name
= "laptop-dmic"},
4926 {.id
= ALC269_FIXUP_STEREO_DMIC
, .name
= "alc269-dmic"},
4927 {.id
= ALC271_FIXUP_DMIC
, .name
= "alc271-dmic"},
4928 {.id
= ALC269_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
4929 {.id
= ALC269_FIXUP_HEADSET_MIC
, .name
= "headset-mic"},
4930 {.id
= ALC269_FIXUP_LENOVO_DOCK
, .name
= "lenovo-dock"},
4931 {.id
= ALC269_FIXUP_HP_GPIO_LED
, .name
= "hp-gpio-led"},
4932 {.id
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
, .name
= "dell-headset-multi"},
4933 {.id
= ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
, .name
= "dell-headset-dock"},
4934 {.id
= ALC283_FIXUP_CHROME_BOOK
, .name
= "alc283-dac-wcaps"},
4935 {.id
= ALC283_FIXUP_SENSE_COMBO_JACK
, .name
= "alc283-sense-combo"},
4936 {.id
= ALC292_FIXUP_TPT440_DOCK
, .name
= "tpt440-dock"},
4940 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl
[] = {
4942 .codec
= 0x10ec0255,
4943 .subvendor
= 0x1028,
4944 #ifdef CONFIG_SND_DEBUG_VERBOSE
4947 .pins
= (const struct hda_pintbl
[]) {
4959 .value
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
4962 .codec
= 0x10ec0255,
4963 .subvendor
= 0x1028,
4964 #ifdef CONFIG_SND_DEBUG_VERBOSE
4967 .pins
= (const struct hda_pintbl
[]) {
4979 .value
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
4982 .codec
= 0x10ec0255,
4983 .subvendor
= 0x1028,
4984 #ifdef CONFIG_SND_DEBUG_VERBOSE
4987 .pins
= (const struct hda_pintbl
[]) {
4999 .value
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5002 .codec
= 0x10ec0255,
5003 .subvendor
= 0x1028,
5004 #ifdef CONFIG_SND_DEBUG_VERBOSE
5007 .pins
= (const struct hda_pintbl
[]) {
5019 .value
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5022 .codec
= 0x10ec0255,
5023 .subvendor
= 0x1028,
5024 #ifdef CONFIG_SND_DEBUG_VERBOSE
5027 .pins
= (const struct hda_pintbl
[]) {
5039 .value
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5042 .codec
= 0x10ec0255,
5043 .subvendor
= 0x1028,
5044 #ifdef CONFIG_SND_DEBUG_VERBOSE
5047 .pins
= (const struct hda_pintbl
[]) {
5059 .value
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5062 .codec
= 0x10ec0255,
5063 .subvendor
= 0x1028,
5064 #ifdef CONFIG_SND_DEBUG_VERBOSE
5067 .pins
= (const struct hda_pintbl
[]) {
5079 .value
= ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
,
5082 .codec
= 0x10ec0283,
5083 .subvendor
= 0x1028,
5084 #ifdef CONFIG_SND_DEBUG_VERBOSE
5087 .pins
= (const struct hda_pintbl
[]) {
5099 .value
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
5102 .codec
= 0x10ec0283,
5103 .subvendor
= 0x1028,
5104 #ifdef CONFIG_SND_DEBUG_VERBOSE
5107 .pins
= (const struct hda_pintbl
[]) {
5119 .value
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
5122 .codec
= 0x10ec0292,
5123 .subvendor
= 0x1028,
5124 #ifdef CONFIG_SND_DEBUG_VERBOSE
5127 .pins
= (const struct hda_pintbl
[]) {
5140 .value
= ALC269_FIXUP_DELL3_MIC_NO_PRESENCE
,
5143 .codec
= 0x10ec0293,
5144 .subvendor
= 0x1028,
5145 #ifdef CONFIG_SND_DEBUG_VERBOSE
5148 .pins
= (const struct hda_pintbl
[]) {
5161 .value
= ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
,
5166 static void alc269_fill_coef(struct hda_codec
*codec
)
5168 struct alc_spec
*spec
= codec
->spec
;
5171 if (spec
->codec_variant
!= ALC269_TYPE_ALC269VB
)
5174 if ((alc_get_coef0(codec
) & 0x00ff) < 0x015) {
5175 alc_write_coef_idx(codec
, 0xf, 0x960b);
5176 alc_write_coef_idx(codec
, 0xe, 0x8817);
5179 if ((alc_get_coef0(codec
) & 0x00ff) == 0x016) {
5180 alc_write_coef_idx(codec
, 0xf, 0x960b);
5181 alc_write_coef_idx(codec
, 0xe, 0x8814);
5184 if ((alc_get_coef0(codec
) & 0x00ff) == 0x017) {
5185 val
= alc_read_coef_idx(codec
, 0x04);
5186 /* Power up output pin */
5187 alc_write_coef_idx(codec
, 0x04, val
| (1<<11));
5190 if ((alc_get_coef0(codec
) & 0x00ff) == 0x018) {
5191 val
= alc_read_coef_idx(codec
, 0xd);
5192 if ((val
& 0x0c00) >> 10 != 0x1) {
5193 /* Capless ramp up clock control */
5194 alc_write_coef_idx(codec
, 0xd, val
| (1<<10));
5196 val
= alc_read_coef_idx(codec
, 0x17);
5197 if ((val
& 0x01c0) >> 6 != 0x4) {
5198 /* Class D power on reset */
5199 alc_write_coef_idx(codec
, 0x17, val
| (1<<7));
5203 val
= alc_read_coef_idx(codec
, 0xd); /* Class D */
5204 alc_write_coef_idx(codec
, 0xd, val
| (1<<14));
5206 val
= alc_read_coef_idx(codec
, 0x4); /* HP */
5207 alc_write_coef_idx(codec
, 0x4, val
| (1<<11));
5212 static int patch_alc269(struct hda_codec
*codec
)
5214 struct alc_spec
*spec
;
5217 err
= alc_alloc_spec(codec
, 0x0b);
5222 spec
->gen
.shared_mic_vref_pin
= 0x18;
5224 snd_hda_pick_fixup(codec
, alc269_fixup_models
,
5225 alc269_fixup_tbl
, alc269_fixups
);
5226 snd_hda_pick_pin_fixup(codec
, alc269_pin_fixup_tbl
, alc269_fixups
);
5227 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
5229 alc_auto_parse_customize_define(codec
);
5231 if (has_cdefine_beep(codec
))
5232 spec
->gen
.beep_nid
= 0x01;
5234 switch (codec
->vendor_id
) {
5236 spec
->codec_variant
= ALC269_TYPE_ALC269VA
;
5237 switch (alc_get_coef0(codec
) & 0x00f0) {
5239 if (codec
->bus
->pci
&&
5240 codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
5241 spec
->cdefine
.platform_type
== 1)
5242 err
= alc_codec_rename(codec
, "ALC271X");
5243 spec
->codec_variant
= ALC269_TYPE_ALC269VB
;
5246 if (codec
->bus
->pci
&&
5247 codec
->bus
->pci
->subsystem_vendor
== 0x17aa &&
5248 codec
->bus
->pci
->subsystem_device
== 0x21f3)
5249 err
= alc_codec_rename(codec
, "ALC3202");
5250 spec
->codec_variant
= ALC269_TYPE_ALC269VC
;
5253 spec
->codec_variant
= ALC269_TYPE_ALC269VD
;
5256 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
5260 spec
->init_hook
= alc269_fill_coef
;
5261 alc269_fill_coef(codec
);
5266 spec
->codec_variant
= ALC269_TYPE_ALC280
;
5269 spec
->codec_variant
= ALC269_TYPE_ALC282
;
5270 spec
->shutup
= alc282_shutup
;
5271 spec
->init_hook
= alc282_init
;
5275 spec
->codec_variant
= ALC269_TYPE_ALC283
;
5276 spec
->shutup
= alc283_shutup
;
5277 spec
->init_hook
= alc283_init
;
5281 spec
->codec_variant
= ALC269_TYPE_ALC284
;
5285 spec
->codec_variant
= ALC269_TYPE_ALC285
;
5289 spec
->codec_variant
= ALC269_TYPE_ALC286
;
5292 spec
->codec_variant
= ALC269_TYPE_ALC255
;
5296 if (snd_hda_codec_read(codec
, 0x51, 0, AC_VERB_PARAMETERS
, 0) == 0x10ec5505) {
5297 spec
->has_alc5505_dsp
= 1;
5298 spec
->init_hook
= alc5505_dsp_init
;
5301 /* automatic parse from the BIOS config */
5302 err
= alc269_parse_auto_config(codec
);
5306 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
)
5307 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
5309 codec
->patch_ops
= alc_patch_ops
;
5311 codec
->patch_ops
.suspend
= alc269_suspend
;
5312 codec
->patch_ops
.resume
= alc269_resume
;
5315 spec
->shutup
= alc269_shutup
;
5317 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
5330 static int alc861_parse_auto_config(struct hda_codec
*codec
)
5332 static const hda_nid_t alc861_ignore
[] = { 0x1d, 0 };
5333 static const hda_nid_t alc861_ssids
[] = { 0x0e, 0x0f, 0x0b, 0 };
5334 return alc_parse_auto_config(codec
, alc861_ignore
, alc861_ssids
);
5337 /* Pin config fixes */
5339 ALC861_FIXUP_FSC_AMILO_PI1505
,
5340 ALC861_FIXUP_AMP_VREF_0F
,
5341 ALC861_FIXUP_NO_JACK_DETECT
,
5342 ALC861_FIXUP_ASUS_A6RP
,
5343 ALC660_FIXUP_ASUS_W7J
,
5346 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
5347 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec
*codec
,
5348 const struct hda_fixup
*fix
, int action
)
5350 struct alc_spec
*spec
= codec
->spec
;
5353 if (action
!= HDA_FIXUP_ACT_INIT
)
5355 val
= snd_hda_codec_get_pin_target(codec
, 0x0f);
5356 if (!(val
& (AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
)))
5357 val
|= AC_PINCTL_IN_EN
;
5358 val
|= AC_PINCTL_VREF_50
;
5359 snd_hda_set_pin_ctl(codec
, 0x0f, val
);
5360 spec
->gen
.keep_vref_in_automute
= 1;
5363 /* suppress the jack-detection */
5364 static void alc_fixup_no_jack_detect(struct hda_codec
*codec
,
5365 const struct hda_fixup
*fix
, int action
)
5367 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
5368 codec
->no_jack_detect
= 1;
5371 static const struct hda_fixup alc861_fixups
[] = {
5372 [ALC861_FIXUP_FSC_AMILO_PI1505
] = {
5373 .type
= HDA_FIXUP_PINS
,
5374 .v
.pins
= (const struct hda_pintbl
[]) {
5375 { 0x0b, 0x0221101f }, /* HP */
5376 { 0x0f, 0x90170310 }, /* speaker */
5380 [ALC861_FIXUP_AMP_VREF_0F
] = {
5381 .type
= HDA_FIXUP_FUNC
,
5382 .v
.func
= alc861_fixup_asus_amp_vref_0f
,
5384 [ALC861_FIXUP_NO_JACK_DETECT
] = {
5385 .type
= HDA_FIXUP_FUNC
,
5386 .v
.func
= alc_fixup_no_jack_detect
,
5388 [ALC861_FIXUP_ASUS_A6RP
] = {
5389 .type
= HDA_FIXUP_FUNC
,
5390 .v
.func
= alc861_fixup_asus_amp_vref_0f
,
5392 .chain_id
= ALC861_FIXUP_NO_JACK_DETECT
,
5394 [ALC660_FIXUP_ASUS_W7J
] = {
5395 .type
= HDA_FIXUP_VERBS
,
5396 .v
.verbs
= (const struct hda_verb
[]) {
5397 /* ASUS W7J needs a magic pin setup on unused NID 0x10
5398 * for enabling outputs
5400 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
5406 static const struct snd_pci_quirk alc861_fixup_tbl
[] = {
5407 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J
),
5408 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J
),
5409 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP
),
5410 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F
),
5411 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT
),
5412 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F
),
5413 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F
),
5414 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505
),
5420 static int patch_alc861(struct hda_codec
*codec
)
5422 struct alc_spec
*spec
;
5425 err
= alc_alloc_spec(codec
, 0x15);
5430 spec
->gen
.beep_nid
= 0x23;
5432 snd_hda_pick_fixup(codec
, NULL
, alc861_fixup_tbl
, alc861_fixups
);
5433 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
5435 /* automatic parse from the BIOS config */
5436 err
= alc861_parse_auto_config(codec
);
5440 if (!spec
->gen
.no_analog
)
5441 set_beep_amp(spec
, 0x23, 0, HDA_OUTPUT
);
5443 codec
->patch_ops
= alc_patch_ops
;
5445 spec
->power_hook
= alc_power_eapd
;
5448 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
5462 * In addition, an independent DAC
5464 static int alc861vd_parse_auto_config(struct hda_codec
*codec
)
5466 static const hda_nid_t alc861vd_ignore
[] = { 0x1d, 0 };
5467 static const hda_nid_t alc861vd_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
5468 return alc_parse_auto_config(codec
, alc861vd_ignore
, alc861vd_ssids
);
5472 ALC660VD_FIX_ASUS_GPIO1
,
5473 ALC861VD_FIX_DALLAS
,
5476 /* exclude VREF80 */
5477 static void alc861vd_fixup_dallas(struct hda_codec
*codec
,
5478 const struct hda_fixup
*fix
, int action
)
5480 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
5481 snd_hda_override_pin_caps(codec
, 0x18, 0x00000734);
5482 snd_hda_override_pin_caps(codec
, 0x19, 0x0000073c);
5486 static const struct hda_fixup alc861vd_fixups
[] = {
5487 [ALC660VD_FIX_ASUS_GPIO1
] = {
5488 .type
= HDA_FIXUP_VERBS
,
5489 .v
.verbs
= (const struct hda_verb
[]) {
5491 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
5492 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
5493 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
5497 [ALC861VD_FIX_DALLAS
] = {
5498 .type
= HDA_FIXUP_FUNC
,
5499 .v
.func
= alc861vd_fixup_dallas
,
5503 static const struct snd_pci_quirk alc861vd_fixup_tbl
[] = {
5504 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS
),
5505 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1
),
5506 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS
),
5512 static int patch_alc861vd(struct hda_codec
*codec
)
5514 struct alc_spec
*spec
;
5517 err
= alc_alloc_spec(codec
, 0x0b);
5522 spec
->gen
.beep_nid
= 0x23;
5524 snd_hda_pick_fixup(codec
, NULL
, alc861vd_fixup_tbl
, alc861vd_fixups
);
5525 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
5527 /* automatic parse from the BIOS config */
5528 err
= alc861vd_parse_auto_config(codec
);
5532 if (!spec
->gen
.no_analog
)
5533 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
5535 codec
->patch_ops
= alc_patch_ops
;
5537 spec
->shutup
= alc_eapd_shutup
;
5539 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
5551 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
5552 * configuration. Each pin widget can choose any input DACs and a mixer.
5553 * Each ADC is connected from a mixer of all inputs. This makes possible
5554 * 6-channel independent captures.
5556 * In addition, an independent DAC for the multi-playback (not used in this
5561 * BIOS auto configuration
5564 static int alc662_parse_auto_config(struct hda_codec
*codec
)
5566 static const hda_nid_t alc662_ignore
[] = { 0x1d, 0 };
5567 static const hda_nid_t alc663_ssids
[] = { 0x15, 0x1b, 0x14, 0x21 };
5568 static const hda_nid_t alc662_ssids
[] = { 0x15, 0x1b, 0x14, 0 };
5569 const hda_nid_t
*ssids
;
5571 if (codec
->vendor_id
== 0x10ec0272 || codec
->vendor_id
== 0x10ec0663 ||
5572 codec
->vendor_id
== 0x10ec0665 || codec
->vendor_id
== 0x10ec0670 ||
5573 codec
->vendor_id
== 0x10ec0671)
5574 ssids
= alc663_ssids
;
5576 ssids
= alc662_ssids
;
5577 return alc_parse_auto_config(codec
, alc662_ignore
, ssids
);
5580 static void alc272_fixup_mario(struct hda_codec
*codec
,
5581 const struct hda_fixup
*fix
, int action
)
5583 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
5585 if (snd_hda_override_amp_caps(codec
, 0x2, HDA_OUTPUT
,
5586 (0x3b << AC_AMPCAP_OFFSET_SHIFT
) |
5587 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT
) |
5588 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
5589 (0 << AC_AMPCAP_MUTE_SHIFT
)))
5590 codec_warn(codec
, "failed to override amp caps for NID 0x2\n");
5593 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps
[] = {
5595 .map
= { SNDRV_CHMAP_FL
, SNDRV_CHMAP_FR
} },
5597 .map
= { SNDRV_CHMAP_FL
, SNDRV_CHMAP_FR
,
5598 SNDRV_CHMAP_NA
, SNDRV_CHMAP_LFE
} }, /* LFE only on right */
5602 /* override the 2.1 chmap */
5603 static void alc_fixup_bass_chmap(struct hda_codec
*codec
,
5604 const struct hda_fixup
*fix
, int action
)
5606 if (action
== HDA_FIXUP_ACT_BUILD
) {
5607 struct alc_spec
*spec
= codec
->spec
;
5608 spec
->gen
.pcm_rec
[0].stream
[0].chmap
= asus_pcm_2_1_chmaps
;
5612 /* turn on/off mute LED per vmaster hook */
5613 static void alc662_led_gpio1_mute_hook(void *private_data
, int enabled
)
5615 struct hda_codec
*codec
= private_data
;
5616 struct alc_spec
*spec
= codec
->spec
;
5617 unsigned int oldval
= spec
->gpio_led
;
5620 spec
->gpio_led
&= ~0x01;
5622 spec
->gpio_led
|= 0x01;
5623 if (spec
->gpio_led
!= oldval
)
5624 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
,
5628 /* avoid D3 for keeping GPIO up */
5629 static unsigned int gpio_led_power_filter(struct hda_codec
*codec
,
5631 unsigned int power_state
)
5633 struct alc_spec
*spec
= codec
->spec
;
5634 if (nid
== codec
->afg
&& power_state
== AC_PWRST_D3
&& spec
->gpio_led
)
5639 static void alc662_fixup_led_gpio1(struct hda_codec
*codec
,
5640 const struct hda_fixup
*fix
, int action
)
5642 struct alc_spec
*spec
= codec
->spec
;
5643 static const struct hda_verb gpio_init
[] = {
5644 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x01 },
5645 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01 },
5649 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
5650 spec
->gen
.vmaster_mute
.hook
= alc662_led_gpio1_mute_hook
;
5652 snd_hda_add_verbs(codec
, gpio_init
);
5653 codec
->power_filter
= gpio_led_power_filter
;
5658 ALC662_FIXUP_ASPIRE
,
5659 ALC662_FIXUP_LED_GPIO1
,
5660 ALC662_FIXUP_IDEAPAD
,
5662 ALC662_FIXUP_CZC_P10T
,
5663 ALC662_FIXUP_SKU_IGNORE
,
5664 ALC662_FIXUP_HP_RP5800
,
5665 ALC662_FIXUP_ASUS_MODE1
,
5666 ALC662_FIXUP_ASUS_MODE2
,
5667 ALC662_FIXUP_ASUS_MODE3
,
5668 ALC662_FIXUP_ASUS_MODE4
,
5669 ALC662_FIXUP_ASUS_MODE5
,
5670 ALC662_FIXUP_ASUS_MODE6
,
5671 ALC662_FIXUP_ASUS_MODE7
,
5672 ALC662_FIXUP_ASUS_MODE8
,
5673 ALC662_FIXUP_NO_JACK_DETECT
,
5674 ALC662_FIXUP_ZOTAC_Z68
,
5675 ALC662_FIXUP_INV_DMIC
,
5676 ALC668_FIXUP_DELL_MIC_NO_PRESENCE
,
5677 ALC668_FIXUP_HEADSET_MODE
,
5678 ALC662_FIXUP_BASS_MODE4_CHMAP
,
5679 ALC662_FIXUP_BASS_16
,
5680 ALC662_FIXUP_BASS_1A
,
5681 ALC662_FIXUP_BASS_CHMAP
,
5682 ALC668_FIXUP_AUTO_MUTE
,
5683 ALC668_FIXUP_DELL_DISABLE_AAMIX
,
5684 ALC668_FIXUP_DELL_XPS13
,
5687 static const struct hda_fixup alc662_fixups
[] = {
5688 [ALC662_FIXUP_ASPIRE
] = {
5689 .type
= HDA_FIXUP_PINS
,
5690 .v
.pins
= (const struct hda_pintbl
[]) {
5691 { 0x15, 0x99130112 }, /* subwoofer */
5695 [ALC662_FIXUP_LED_GPIO1
] = {
5696 .type
= HDA_FIXUP_FUNC
,
5697 .v
.func
= alc662_fixup_led_gpio1
,
5699 [ALC662_FIXUP_IDEAPAD
] = {
5700 .type
= HDA_FIXUP_PINS
,
5701 .v
.pins
= (const struct hda_pintbl
[]) {
5702 { 0x17, 0x99130112 }, /* subwoofer */
5706 .chain_id
= ALC662_FIXUP_LED_GPIO1
,
5708 [ALC272_FIXUP_MARIO
] = {
5709 .type
= HDA_FIXUP_FUNC
,
5710 .v
.func
= alc272_fixup_mario
,
5712 [ALC662_FIXUP_CZC_P10T
] = {
5713 .type
= HDA_FIXUP_VERBS
,
5714 .v
.verbs
= (const struct hda_verb
[]) {
5715 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
5719 [ALC662_FIXUP_SKU_IGNORE
] = {
5720 .type
= HDA_FIXUP_FUNC
,
5721 .v
.func
= alc_fixup_sku_ignore
,
5723 [ALC662_FIXUP_HP_RP5800
] = {
5724 .type
= HDA_FIXUP_PINS
,
5725 .v
.pins
= (const struct hda_pintbl
[]) {
5726 { 0x14, 0x0221201f }, /* HP out */
5730 .chain_id
= ALC662_FIXUP_SKU_IGNORE
5732 [ALC662_FIXUP_ASUS_MODE1
] = {
5733 .type
= HDA_FIXUP_PINS
,
5734 .v
.pins
= (const struct hda_pintbl
[]) {
5735 { 0x14, 0x99130110 }, /* speaker */
5736 { 0x18, 0x01a19c20 }, /* mic */
5737 { 0x19, 0x99a3092f }, /* int-mic */
5738 { 0x21, 0x0121401f }, /* HP out */
5742 .chain_id
= ALC662_FIXUP_SKU_IGNORE
5744 [ALC662_FIXUP_ASUS_MODE2
] = {
5745 .type
= HDA_FIXUP_PINS
,
5746 .v
.pins
= (const struct hda_pintbl
[]) {
5747 { 0x14, 0x99130110 }, /* speaker */
5748 { 0x18, 0x01a19820 }, /* mic */
5749 { 0x19, 0x99a3092f }, /* int-mic */
5750 { 0x1b, 0x0121401f }, /* HP out */
5754 .chain_id
= ALC662_FIXUP_SKU_IGNORE
5756 [ALC662_FIXUP_ASUS_MODE3
] = {
5757 .type
= HDA_FIXUP_PINS
,
5758 .v
.pins
= (const struct hda_pintbl
[]) {
5759 { 0x14, 0x99130110 }, /* speaker */
5760 { 0x15, 0x0121441f }, /* HP */
5761 { 0x18, 0x01a19840 }, /* mic */
5762 { 0x19, 0x99a3094f }, /* int-mic */
5763 { 0x21, 0x01211420 }, /* HP2 */
5767 .chain_id
= ALC662_FIXUP_SKU_IGNORE
5769 [ALC662_FIXUP_ASUS_MODE4
] = {
5770 .type
= HDA_FIXUP_PINS
,
5771 .v
.pins
= (const struct hda_pintbl
[]) {
5772 { 0x14, 0x99130110 }, /* speaker */
5773 { 0x16, 0x99130111 }, /* speaker */
5774 { 0x18, 0x01a19840 }, /* mic */
5775 { 0x19, 0x99a3094f }, /* int-mic */
5776 { 0x21, 0x0121441f }, /* HP */
5780 .chain_id
= ALC662_FIXUP_SKU_IGNORE
5782 [ALC662_FIXUP_ASUS_MODE5
] = {
5783 .type
= HDA_FIXUP_PINS
,
5784 .v
.pins
= (const struct hda_pintbl
[]) {
5785 { 0x14, 0x99130110 }, /* speaker */
5786 { 0x15, 0x0121441f }, /* HP */
5787 { 0x16, 0x99130111 }, /* speaker */
5788 { 0x18, 0x01a19840 }, /* mic */
5789 { 0x19, 0x99a3094f }, /* int-mic */
5793 .chain_id
= ALC662_FIXUP_SKU_IGNORE
5795 [ALC662_FIXUP_ASUS_MODE6
] = {
5796 .type
= HDA_FIXUP_PINS
,
5797 .v
.pins
= (const struct hda_pintbl
[]) {
5798 { 0x14, 0x99130110 }, /* speaker */
5799 { 0x15, 0x01211420 }, /* HP2 */
5800 { 0x18, 0x01a19840 }, /* mic */
5801 { 0x19, 0x99a3094f }, /* int-mic */
5802 { 0x1b, 0x0121441f }, /* HP */
5806 .chain_id
= ALC662_FIXUP_SKU_IGNORE
5808 [ALC662_FIXUP_ASUS_MODE7
] = {
5809 .type
= HDA_FIXUP_PINS
,
5810 .v
.pins
= (const struct hda_pintbl
[]) {
5811 { 0x14, 0x99130110 }, /* speaker */
5812 { 0x17, 0x99130111 }, /* speaker */
5813 { 0x18, 0x01a19840 }, /* mic */
5814 { 0x19, 0x99a3094f }, /* int-mic */
5815 { 0x1b, 0x01214020 }, /* HP */
5816 { 0x21, 0x0121401f }, /* HP */
5820 .chain_id
= ALC662_FIXUP_SKU_IGNORE
5822 [ALC662_FIXUP_ASUS_MODE8
] = {
5823 .type
= HDA_FIXUP_PINS
,
5824 .v
.pins
= (const struct hda_pintbl
[]) {
5825 { 0x14, 0x99130110 }, /* speaker */
5826 { 0x12, 0x99a30970 }, /* int-mic */
5827 { 0x15, 0x01214020 }, /* HP */
5828 { 0x17, 0x99130111 }, /* speaker */
5829 { 0x18, 0x01a19840 }, /* mic */
5830 { 0x21, 0x0121401f }, /* HP */
5834 .chain_id
= ALC662_FIXUP_SKU_IGNORE
5836 [ALC662_FIXUP_NO_JACK_DETECT
] = {
5837 .type
= HDA_FIXUP_FUNC
,
5838 .v
.func
= alc_fixup_no_jack_detect
,
5840 [ALC662_FIXUP_ZOTAC_Z68
] = {
5841 .type
= HDA_FIXUP_PINS
,
5842 .v
.pins
= (const struct hda_pintbl
[]) {
5843 { 0x1b, 0x02214020 }, /* Front HP */
5847 [ALC662_FIXUP_INV_DMIC
] = {
5848 .type
= HDA_FIXUP_FUNC
,
5849 .v
.func
= alc_fixup_inv_dmic_0x12
,
5851 [ALC668_FIXUP_DELL_XPS13
] = {
5852 .type
= HDA_FIXUP_FUNC
,
5853 .v
.func
= alc_fixup_dell_xps13
,
5855 .chain_id
= ALC668_FIXUP_DELL_DISABLE_AAMIX
5857 [ALC668_FIXUP_DELL_DISABLE_AAMIX
] = {
5858 .type
= HDA_FIXUP_FUNC
,
5859 .v
.func
= alc_fixup_disable_aamix
,
5861 .chain_id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
5863 [ALC668_FIXUP_AUTO_MUTE
] = {
5864 .type
= HDA_FIXUP_FUNC
,
5865 .v
.func
= alc_fixup_auto_mute_via_amp
,
5867 .chain_id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
5869 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE
] = {
5870 .type
= HDA_FIXUP_PINS
,
5871 .v
.pins
= (const struct hda_pintbl
[]) {
5872 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
5873 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
5877 .chain_id
= ALC668_FIXUP_HEADSET_MODE
5879 [ALC668_FIXUP_HEADSET_MODE
] = {
5880 .type
= HDA_FIXUP_FUNC
,
5881 .v
.func
= alc_fixup_headset_mode_alc668
,
5883 [ALC662_FIXUP_BASS_MODE4_CHMAP
] = {
5884 .type
= HDA_FIXUP_FUNC
,
5885 .v
.func
= alc_fixup_bass_chmap
,
5887 .chain_id
= ALC662_FIXUP_ASUS_MODE4
5889 [ALC662_FIXUP_BASS_16
] = {
5890 .type
= HDA_FIXUP_PINS
,
5891 .v
.pins
= (const struct hda_pintbl
[]) {
5892 {0x16, 0x80106111}, /* bass speaker */
5896 .chain_id
= ALC662_FIXUP_BASS_CHMAP
,
5898 [ALC662_FIXUP_BASS_1A
] = {
5899 .type
= HDA_FIXUP_PINS
,
5900 .v
.pins
= (const struct hda_pintbl
[]) {
5901 {0x1a, 0x80106111}, /* bass speaker */
5905 .chain_id
= ALC662_FIXUP_BASS_CHMAP
,
5907 [ALC662_FIXUP_BASS_CHMAP
] = {
5908 .type
= HDA_FIXUP_FUNC
,
5909 .v
.func
= alc_fixup_bass_chmap
,
5913 static const struct snd_pci_quirk alc662_fixup_tbl
[] = {
5914 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2
),
5915 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC
),
5916 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE
),
5917 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE
),
5918 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC
),
5919 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC
),
5920 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE
),
5921 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
5922 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
5923 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13
),
5924 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
5925 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
5926 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
5927 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE
),
5928 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800
),
5929 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_BASS_1A
),
5930 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP
),
5931 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16
),
5932 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16
),
5933 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP
),
5934 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT
),
5935 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2
),
5936 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD
),
5937 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD
),
5938 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD
),
5939 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68
),
5940 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T
),
5943 /* Below is a quirk table taken from the old code.
5944 * Basically the device should work as is without the fixup table.
5945 * If BIOS doesn't give a proper info, enable the corresponding
5948 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1
),
5949 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3
),
5950 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1
),
5951 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3
),
5952 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
5953 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
5954 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
5955 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1
),
5956 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1
),
5957 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
5958 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7
),
5959 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7
),
5960 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8
),
5961 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3
),
5962 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1
),
5963 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
5964 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2
),
5965 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1
),
5966 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
5967 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
5968 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
5969 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
5970 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1
),
5971 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3
),
5972 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2
),
5973 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
5974 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5
),
5975 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6
),
5976 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
5977 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1
),
5978 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
5979 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
5980 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3
),
5981 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3
),
5982 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1
),
5983 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1
),
5984 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1
),
5985 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1
),
5986 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1
),
5987 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2
),
5988 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2
),
5989 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1
),
5990 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
5991 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3
),
5992 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1
),
5993 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1
),
5994 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1
),
5995 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2
),
5996 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1
),
5997 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4
),
6002 static const struct hda_model_fixup alc662_fixup_models
[] = {
6003 {.id
= ALC272_FIXUP_MARIO
, .name
= "mario"},
6004 {.id
= ALC662_FIXUP_ASUS_MODE1
, .name
= "asus-mode1"},
6005 {.id
= ALC662_FIXUP_ASUS_MODE2
, .name
= "asus-mode2"},
6006 {.id
= ALC662_FIXUP_ASUS_MODE3
, .name
= "asus-mode3"},
6007 {.id
= ALC662_FIXUP_ASUS_MODE4
, .name
= "asus-mode4"},
6008 {.id
= ALC662_FIXUP_ASUS_MODE5
, .name
= "asus-mode5"},
6009 {.id
= ALC662_FIXUP_ASUS_MODE6
, .name
= "asus-mode6"},
6010 {.id
= ALC662_FIXUP_ASUS_MODE7
, .name
= "asus-mode7"},
6011 {.id
= ALC662_FIXUP_ASUS_MODE8
, .name
= "asus-mode8"},
6012 {.id
= ALC662_FIXUP_INV_DMIC
, .name
= "inv-dmic"},
6013 {.id
= ALC668_FIXUP_DELL_MIC_NO_PRESENCE
, .name
= "dell-headset-multi"},
6017 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl
[] = {
6019 .codec
= 0x10ec0668,
6020 .subvendor
= 0x1028,
6021 #ifdef CONFIG_SND_DEBUG_VERBOSE
6024 .pins
= (const struct hda_pintbl
[]) {
6037 .value
= ALC668_FIXUP_AUTO_MUTE
,
6040 .codec
= 0x10ec0668,
6041 .subvendor
= 0x1028,
6042 #ifdef CONFIG_SND_DEBUG_VERBOSE
6045 .pins
= (const struct hda_pintbl
[]) {
6058 .value
= ALC668_FIXUP_AUTO_MUTE
,
6061 .codec
= 0x10ec0668,
6062 .subvendor
= 0x1028,
6063 #ifdef CONFIG_SND_DEBUG_VERBOSE
6066 .pins
= (const struct hda_pintbl
[]) {
6079 .value
= ALC668_FIXUP_AUTO_MUTE
,
6082 .codec
= 0x10ec0668,
6083 .subvendor
= 0x1028,
6084 #ifdef CONFIG_SND_DEBUG_VERBOSE
6087 .pins
= (const struct hda_pintbl
[]) {
6100 .value
= ALC668_FIXUP_AUTO_MUTE
,
6105 static void alc662_fill_coef(struct hda_codec
*codec
)
6109 coef
= alc_get_coef0(codec
);
6111 switch (codec
->vendor_id
) {
6113 if ((coef
& 0x00f0) == 0x0030) {
6114 val
= alc_read_coef_idx(codec
, 0x4); /* EAPD Ctrl */
6115 alc_write_coef_idx(codec
, 0x4, val
& ~(1<<10));
6125 val
= alc_read_coef_idx(codec
, 0xd); /* EAPD Ctrl */
6126 alc_write_coef_idx(codec
, 0xd, val
| (1<<14));
6133 static int patch_alc662(struct hda_codec
*codec
)
6135 struct alc_spec
*spec
;
6138 err
= alc_alloc_spec(codec
, 0x0b);
6144 /* handle multiple HPs as is */
6145 spec
->parse_flags
= HDA_PINCFG_NO_HP_FIXUP
;
6147 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
6149 spec
->init_hook
= alc662_fill_coef
;
6150 alc662_fill_coef(codec
);
6152 snd_hda_pick_fixup(codec
, alc662_fixup_models
,
6153 alc662_fixup_tbl
, alc662_fixups
);
6154 snd_hda_pick_pin_fixup(codec
, alc662_pin_fixup_tbl
, alc662_fixups
);
6155 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
6157 alc_auto_parse_customize_define(codec
);
6159 if (has_cdefine_beep(codec
))
6160 spec
->gen
.beep_nid
= 0x01;
6162 if ((alc_get_coef0(codec
) & (1 << 14)) &&
6163 codec
->bus
->pci
&& codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
6164 spec
->cdefine
.platform_type
== 1) {
6165 err
= alc_codec_rename(codec
, "ALC272X");
6170 /* automatic parse from the BIOS config */
6171 err
= alc662_parse_auto_config(codec
);
6175 if (!spec
->gen
.no_analog
&& spec
->gen
.beep_nid
) {
6176 switch (codec
->vendor_id
) {
6178 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
6184 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
6187 set_beep_amp(spec
, 0x0b, 0x03, HDA_INPUT
);
6192 codec
->patch_ops
= alc_patch_ops
;
6193 spec
->shutup
= alc_eapd_shutup
;
6195 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
6208 static int alc680_parse_auto_config(struct hda_codec
*codec
)
6210 return alc_parse_auto_config(codec
, NULL
, NULL
);
6215 static int patch_alc680(struct hda_codec
*codec
)
6219 /* ALC680 has no aa-loopback mixer */
6220 err
= alc_alloc_spec(codec
, 0);
6224 /* automatic parse from the BIOS config */
6225 err
= alc680_parse_auto_config(codec
);
6231 codec
->patch_ops
= alc_patch_ops
;
6239 static const struct hda_codec_preset snd_hda_preset_realtek
[] = {
6240 { .id
= 0x10ec0221, .name
= "ALC221", .patch
= patch_alc269
},
6241 { .id
= 0x10ec0231, .name
= "ALC231", .patch
= patch_alc269
},
6242 { .id
= 0x10ec0233, .name
= "ALC233", .patch
= patch_alc269
},
6243 { .id
= 0x10ec0235, .name
= "ALC233", .patch
= patch_alc269
},
6244 { .id
= 0x10ec0255, .name
= "ALC255", .patch
= patch_alc269
},
6245 { .id
= 0x10ec0260, .name
= "ALC260", .patch
= patch_alc260
},
6246 { .id
= 0x10ec0262, .name
= "ALC262", .patch
= patch_alc262
},
6247 { .id
= 0x10ec0267, .name
= "ALC267", .patch
= patch_alc268
},
6248 { .id
= 0x10ec0268, .name
= "ALC268", .patch
= patch_alc268
},
6249 { .id
= 0x10ec0269, .name
= "ALC269", .patch
= patch_alc269
},
6250 { .id
= 0x10ec0270, .name
= "ALC270", .patch
= patch_alc269
},
6251 { .id
= 0x10ec0272, .name
= "ALC272", .patch
= patch_alc662
},
6252 { .id
= 0x10ec0275, .name
= "ALC275", .patch
= patch_alc269
},
6253 { .id
= 0x10ec0276, .name
= "ALC276", .patch
= patch_alc269
},
6254 { .id
= 0x10ec0280, .name
= "ALC280", .patch
= patch_alc269
},
6255 { .id
= 0x10ec0282, .name
= "ALC282", .patch
= patch_alc269
},
6256 { .id
= 0x10ec0283, .name
= "ALC283", .patch
= patch_alc269
},
6257 { .id
= 0x10ec0284, .name
= "ALC284", .patch
= patch_alc269
},
6258 { .id
= 0x10ec0285, .name
= "ALC285", .patch
= patch_alc269
},
6259 { .id
= 0x10ec0286, .name
= "ALC286", .patch
= patch_alc269
},
6260 { .id
= 0x10ec0288, .name
= "ALC288", .patch
= patch_alc269
},
6261 { .id
= 0x10ec0290, .name
= "ALC290", .patch
= patch_alc269
},
6262 { .id
= 0x10ec0292, .name
= "ALC292", .patch
= patch_alc269
},
6263 { .id
= 0x10ec0293, .name
= "ALC293", .patch
= patch_alc269
},
6264 { .id
= 0x10ec0861, .rev
= 0x100340, .name
= "ALC660",
6265 .patch
= patch_alc861
},
6266 { .id
= 0x10ec0660, .name
= "ALC660-VD", .patch
= patch_alc861vd
},
6267 { .id
= 0x10ec0861, .name
= "ALC861", .patch
= patch_alc861
},
6268 { .id
= 0x10ec0862, .name
= "ALC861-VD", .patch
= patch_alc861vd
},
6269 { .id
= 0x10ec0662, .rev
= 0x100002, .name
= "ALC662 rev2",
6270 .patch
= patch_alc882
},
6271 { .id
= 0x10ec0662, .rev
= 0x100101, .name
= "ALC662 rev1",
6272 .patch
= patch_alc662
},
6273 { .id
= 0x10ec0662, .rev
= 0x100300, .name
= "ALC662 rev3",
6274 .patch
= patch_alc662
},
6275 { .id
= 0x10ec0663, .name
= "ALC663", .patch
= patch_alc662
},
6276 { .id
= 0x10ec0665, .name
= "ALC665", .patch
= patch_alc662
},
6277 { .id
= 0x10ec0668, .name
= "ALC668", .patch
= patch_alc662
},
6278 { .id
= 0x10ec0670, .name
= "ALC670", .patch
= patch_alc662
},
6279 { .id
= 0x10ec0671, .name
= "ALC671", .patch
= patch_alc662
},
6280 { .id
= 0x10ec0680, .name
= "ALC680", .patch
= patch_alc680
},
6281 { .id
= 0x10ec0867, .name
= "ALC891", .patch
= patch_alc882
},
6282 { .id
= 0x10ec0880, .name
= "ALC880", .patch
= patch_alc880
},
6283 { .id
= 0x10ec0882, .name
= "ALC882", .patch
= patch_alc882
},
6284 { .id
= 0x10ec0883, .name
= "ALC883", .patch
= patch_alc882
},
6285 { .id
= 0x10ec0885, .rev
= 0x100101, .name
= "ALC889A",
6286 .patch
= patch_alc882
},
6287 { .id
= 0x10ec0885, .rev
= 0x100103, .name
= "ALC889A",
6288 .patch
= patch_alc882
},
6289 { .id
= 0x10ec0885, .name
= "ALC885", .patch
= patch_alc882
},
6290 { .id
= 0x10ec0887, .name
= "ALC887", .patch
= patch_alc882
},
6291 { .id
= 0x10ec0888, .rev
= 0x100101, .name
= "ALC1200",
6292 .patch
= patch_alc882
},
6293 { .id
= 0x10ec0888, .name
= "ALC888", .patch
= patch_alc882
},
6294 { .id
= 0x10ec0889, .name
= "ALC889", .patch
= patch_alc882
},
6295 { .id
= 0x10ec0892, .name
= "ALC892", .patch
= patch_alc662
},
6296 { .id
= 0x10ec0899, .name
= "ALC898", .patch
= patch_alc882
},
6297 { .id
= 0x10ec0900, .name
= "ALC1150", .patch
= patch_alc882
},
6301 MODULE_ALIAS("snd-hda-codec-id:10ec*");
6303 MODULE_LICENSE("GPL");
6304 MODULE_DESCRIPTION("Realtek HD-audio codec");
6306 static struct hda_codec_preset_list realtek_list
= {
6307 .preset
= snd_hda_preset_realtek
,
6308 .owner
= THIS_MODULE
,
6311 static int __init
patch_realtek_init(void)
6313 return snd_hda_add_codec_preset(&realtek_list
);
6316 static void __exit
patch_realtek_exit(void)
6318 snd_hda_delete_codec_preset(&realtek_list
);
6321 module_init(patch_realtek_init
)
6322 module_exit(patch_realtek_exit
)