1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Universal Interface for Intel High Definition Audio Codec
5 * HD audio interface patch for Realtek ALC codecs
7 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
8 * PeiSen Hou <pshou@realtek.com.tw>
9 * Takashi Iwai <tiwai@suse.de>
10 * Jonathan Woithe <jwoithe@just42.net>
13 #include <linux/init.h>
14 #include <linux/delay.h>
15 #include <linux/slab.h>
16 #include <linux/pci.h>
17 #include <linux/dmi.h>
18 #include <linux/module.h>
19 #include <linux/input.h>
20 #include <sound/core.h>
21 #include <sound/jack.h>
22 #include <sound/hda_codec.h>
23 #include "hda_local.h"
24 #include "hda_auto_parser.h"
26 #include "hda_generic.h"
28 /* keep halting ALC5505 DSP, for power saving */
29 #define HALT_REALTEK_ALC5505
31 /* extra amp-initialization sequence types */
39 ALC_HEADSET_MODE_UNKNOWN,
40 ALC_HEADSET_MODE_UNPLUGGED,
41 ALC_HEADSET_MODE_HEADSET,
43 ALC_HEADSET_MODE_HEADPHONE,
47 ALC_HEADSET_TYPE_UNKNOWN,
48 ALC_HEADSET_TYPE_CTIA,
49 ALC_HEADSET_TYPE_OMTP,
53 ALC_KEY_MICMUTE_INDEX,
56 struct alc_customize_define {
58 unsigned char port_connectivity;
59 unsigned char check_sum;
60 unsigned char customization;
61 unsigned char external_amp;
62 unsigned int enable_pcbeep:1;
63 unsigned int platform_type:1;
65 unsigned int override:1;
66 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
70 struct hda_gen_spec gen; /* must be at head */
72 /* codec parameterization */
73 struct alc_customize_define cdefine;
74 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
77 unsigned int gpio_mask;
78 unsigned int gpio_dir;
79 unsigned int gpio_data;
80 bool gpio_write_delay; /* add a delay before writing gpio_data */
82 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
83 int mute_led_polarity;
84 hda_nid_t mute_led_nid;
85 hda_nid_t cap_mute_led_nid;
87 unsigned int gpio_mute_led_mask;
88 unsigned int gpio_mic_led_mask;
90 hda_nid_t headset_mic_pin;
91 hda_nid_t headphone_mic_pin;
92 int current_headset_mode;
93 int current_headset_type;
96 void (*init_hook)(struct hda_codec *codec);
98 void (*power_hook)(struct hda_codec *codec);
100 void (*shutup)(struct hda_codec *codec);
101 void (*reboot_notify)(struct hda_codec *codec);
104 int codec_variant; /* flag for other variants */
105 unsigned int has_alc5505_dsp:1;
106 unsigned int no_depop_delay:1;
107 unsigned int done_hp_init:1;
108 unsigned int no_shutup_pins:1;
109 unsigned int ultra_low_power:1;
113 unsigned int pll_coef_idx, pll_coef_bit;
115 struct input_dev *kb_dev;
116 u8 alc_mute_keycode_map[1];
120 * COEF access helper functions
123 static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
124 unsigned int coef_idx)
128 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
129 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
133 #define alc_read_coef_idx(codec, coef_idx) \
134 alc_read_coefex_idx(codec, 0x20, coef_idx)
136 static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
137 unsigned int coef_idx, unsigned int coef_val)
139 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
140 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
143 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
144 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
146 static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
147 unsigned int coef_idx, unsigned int mask,
148 unsigned int bits_set)
150 unsigned int val = alc_read_coefex_idx(codec, nid, coef_idx);
153 alc_write_coefex_idx(codec, nid, coef_idx,
154 (val & ~mask) | bits_set);
157 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
158 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
160 /* a special bypass for COEF 0; read the cached value at the second time */
161 static unsigned int alc_get_coef0(struct hda_codec *codec)
163 struct alc_spec *spec = codec->spec;
166 spec->coef0 = alc_read_coef_idx(codec, 0);
170 /* coef writes/updates batch */
178 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
179 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
180 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
181 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
182 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
184 static void alc_process_coef_fw(struct hda_codec *codec,
185 const struct coef_fw *fw)
187 for (; fw->nid; fw++) {
188 if (fw->mask == (unsigned short)-1)
189 alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
191 alc_update_coefex_idx(codec, fw->nid, fw->idx,
197 * GPIO setup tables, used in initialization
200 /* Enable GPIO mask and set output */
201 static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
203 struct alc_spec *spec = codec->spec;
205 spec->gpio_mask |= mask;
206 spec->gpio_dir |= mask;
207 spec->gpio_data |= mask;
210 static void alc_write_gpio_data(struct hda_codec *codec)
212 struct alc_spec *spec = codec->spec;
214 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
218 static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
221 struct alc_spec *spec = codec->spec;
222 unsigned int oldval = spec->gpio_data;
225 spec->gpio_data |= mask;
227 spec->gpio_data &= ~mask;
228 if (oldval != spec->gpio_data)
229 alc_write_gpio_data(codec);
232 static void alc_write_gpio(struct hda_codec *codec)
234 struct alc_spec *spec = codec->spec;
236 if (!spec->gpio_mask)
239 snd_hda_codec_write(codec, codec->core.afg, 0,
240 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
241 snd_hda_codec_write(codec, codec->core.afg, 0,
242 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
243 if (spec->gpio_write_delay)
245 alc_write_gpio_data(codec);
248 static void alc_fixup_gpio(struct hda_codec *codec, int action,
251 if (action == HDA_FIXUP_ACT_PRE_PROBE)
252 alc_setup_gpio(codec, mask);
255 static void alc_fixup_gpio1(struct hda_codec *codec,
256 const struct hda_fixup *fix, int action)
258 alc_fixup_gpio(codec, action, 0x01);
261 static void alc_fixup_gpio2(struct hda_codec *codec,
262 const struct hda_fixup *fix, int action)
264 alc_fixup_gpio(codec, action, 0x02);
267 static void alc_fixup_gpio3(struct hda_codec *codec,
268 const struct hda_fixup *fix, int action)
270 alc_fixup_gpio(codec, action, 0x03);
273 static void alc_fixup_gpio4(struct hda_codec *codec,
274 const struct hda_fixup *fix, int action)
276 alc_fixup_gpio(codec, action, 0x04);
280 * Fix hardware PLL issue
281 * On some codecs, the analog PLL gating control must be off while
282 * the default value is 1.
284 static void alc_fix_pll(struct hda_codec *codec)
286 struct alc_spec *spec = codec->spec;
289 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
290 1 << spec->pll_coef_bit, 0);
293 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
294 unsigned int coef_idx, unsigned int coef_bit)
296 struct alc_spec *spec = codec->spec;
298 spec->pll_coef_idx = coef_idx;
299 spec->pll_coef_bit = coef_bit;
303 /* update the master volume per volume-knob's unsol event */
304 static void alc_update_knob_master(struct hda_codec *codec,
305 struct hda_jack_callback *jack)
308 struct snd_kcontrol *kctl;
309 struct snd_ctl_elem_value *uctl;
311 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
314 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
317 val = snd_hda_codec_read(codec, jack->nid, 0,
318 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
319 val &= HDA_AMP_VOLMASK;
320 uctl->value.integer.value[0] = val;
321 uctl->value.integer.value[1] = val;
322 kctl->put(kctl, uctl);
326 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
328 /* For some reason, the res given from ALC880 is broken.
329 Here we adjust it properly. */
330 snd_hda_jack_unsol_event(codec, res >> 2);
333 /* Change EAPD to verb control */
334 static void alc_fill_eapd_coef(struct hda_codec *codec)
338 coef = alc_get_coef0(codec);
340 switch (codec->core.vendor_id) {
342 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
346 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
349 if ((coef & 0x00f0) == 0x0010)
350 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
351 if ((coef & 0x00f0) == 0x0020)
352 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
353 if ((coef & 0x00f0) == 0x0030)
354 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
360 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
365 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
380 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
384 alc_write_coef_idx(codec, 0x36, 0x5757);
385 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
388 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
391 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
400 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
403 if ((coef & 0x00f0) == 0x0030)
404 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
413 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
416 alc_update_coef_idx(codec, 0x19, 1<<13, 0);
419 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
422 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
425 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
426 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
429 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
435 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
440 /* additional initialization for ALC888 variants */
441 static void alc888_coef_init(struct hda_codec *codec)
443 switch (alc_get_coef0(codec) & 0x00f0) {
448 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
453 /* turn on/off EAPD control (only if available) */
454 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
456 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
458 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
459 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
463 /* turn on/off EAPD controls of the codec */
464 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
466 /* We currently only handle front, HP */
467 static hda_nid_t pins[] = {
468 0x0f, 0x10, 0x14, 0x15, 0x17, 0
471 for (p = pins; *p; p++)
472 set_eapd(codec, *p, on);
475 static int find_ext_mic_pin(struct hda_codec *codec);
477 static void alc_headset_mic_no_shutup(struct hda_codec *codec)
479 const struct hda_pincfg *pin;
480 int mic_pin = find_ext_mic_pin(codec);
483 /* don't shut up pins when unloading the driver; otherwise it breaks
484 * the default pin setup at the next load of the driver
486 if (codec->bus->shutdown)
489 snd_array_for_each(&codec->init_pins, i, pin) {
490 /* use read here for syncing after issuing each verb */
491 if (pin->nid != mic_pin)
492 snd_hda_codec_read(codec, pin->nid, 0,
493 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
496 codec->pins_shutup = 1;
499 static void alc_shutup_pins(struct hda_codec *codec)
501 struct alc_spec *spec = codec->spec;
503 switch (codec->core.vendor_id) {
507 alc_headset_mic_no_shutup(codec);
510 if (!spec->no_shutup_pins)
511 snd_hda_shutup_pins(codec);
516 /* generic shutup callback;
517 * just turning off EAPD and a little pause for avoiding pop-noise
519 static void alc_eapd_shutup(struct hda_codec *codec)
521 struct alc_spec *spec = codec->spec;
523 alc_auto_setup_eapd(codec, false);
524 if (!spec->no_depop_delay)
526 alc_shutup_pins(codec);
529 /* generic EAPD initialization */
530 static void alc_auto_init_amp(struct hda_codec *codec, int type)
532 alc_auto_setup_eapd(codec, true);
533 alc_write_gpio(codec);
535 case ALC_INIT_DEFAULT:
536 switch (codec->core.vendor_id) {
538 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
544 alc_update_coef_idx(codec, 7, 0, 0x2030);
547 alc888_coef_init(codec);
554 /* get a primary headphone pin if available */
555 static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
557 if (spec->gen.autocfg.hp_pins[0])
558 return spec->gen.autocfg.hp_pins[0];
559 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
560 return spec->gen.autocfg.line_out_pins[0];
565 * Realtek SSID verification
568 /* Could be any non-zero and even value. When used as fixup, tells
569 * the driver to ignore any present sku defines.
571 #define ALC_FIXUP_SKU_IGNORE (2)
573 static void alc_fixup_sku_ignore(struct hda_codec *codec,
574 const struct hda_fixup *fix, int action)
576 struct alc_spec *spec = codec->spec;
577 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
578 spec->cdefine.fixup = 1;
579 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
583 static void alc_fixup_no_depop_delay(struct hda_codec *codec,
584 const struct hda_fixup *fix, int action)
586 struct alc_spec *spec = codec->spec;
588 if (action == HDA_FIXUP_ACT_PROBE) {
589 spec->no_depop_delay = 1;
590 codec->depop_delay = 0;
594 static int alc_auto_parse_customize_define(struct hda_codec *codec)
596 unsigned int ass, tmp, i;
598 struct alc_spec *spec = codec->spec;
600 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
602 if (spec->cdefine.fixup) {
603 ass = spec->cdefine.sku_cfg;
604 if (ass == ALC_FIXUP_SKU_IGNORE)
609 if (!codec->bus->pci)
611 ass = codec->core.subsystem_id & 0xffff;
612 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
616 if (codec->core.vendor_id == 0x10ec0260)
618 ass = snd_hda_codec_get_pincfg(codec, nid);
621 codec_info(codec, "%s: SKU not ready 0x%08x\n",
622 codec->core.chip_name, ass);
628 for (i = 1; i < 16; i++) {
632 if (((ass >> 16) & 0xf) != tmp)
635 spec->cdefine.port_connectivity = ass >> 30;
636 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
637 spec->cdefine.check_sum = (ass >> 16) & 0xf;
638 spec->cdefine.customization = ass >> 8;
640 spec->cdefine.sku_cfg = ass;
641 spec->cdefine.external_amp = (ass & 0x38) >> 3;
642 spec->cdefine.platform_type = (ass & 0x4) >> 2;
643 spec->cdefine.swap = (ass & 0x2) >> 1;
644 spec->cdefine.override = ass & 0x1;
646 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
647 nid, spec->cdefine.sku_cfg);
648 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
649 spec->cdefine.port_connectivity);
650 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
651 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
652 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
653 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
654 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
655 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
656 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
661 /* return the position of NID in the list, or -1 if not found */
662 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
665 for (i = 0; i < nums; i++)
670 /* return true if the given NID is found in the list */
671 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
673 return find_idx_in_nid_list(nid, list, nums) >= 0;
676 /* check subsystem ID and set up device-specific initialization;
677 * return 1 if initialized, 0 if invalid SSID
679 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
680 * 31 ~ 16 : Manufacture ID
682 * 7 ~ 0 : Assembly ID
683 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
685 static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
687 unsigned int ass, tmp, i;
689 struct alc_spec *spec = codec->spec;
691 if (spec->cdefine.fixup) {
692 ass = spec->cdefine.sku_cfg;
693 if (ass == ALC_FIXUP_SKU_IGNORE)
698 ass = codec->core.subsystem_id & 0xffff;
699 if (codec->bus->pci &&
700 ass != codec->bus->pci->subsystem_device && (ass & 1))
703 /* invalid SSID, check the special NID pin defcfg instead */
705 * 31~30 : port connectivity
708 * 19~16 : Check sum (15:1)
713 if (codec->core.vendor_id == 0x10ec0260)
715 ass = snd_hda_codec_get_pincfg(codec, nid);
717 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
721 if ((ass >> 30) != 1) /* no physical connection */
726 for (i = 1; i < 16; i++) {
730 if (((ass >> 16) & 0xf) != tmp)
733 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
734 ass & 0xffff, codec->core.vendor_id);
738 * 2 : 0 --> Desktop, 1 --> Laptop
739 * 3~5 : External Amplifier control
742 tmp = (ass & 0x38) >> 3; /* external Amp control */
743 if (spec->init_amp == ALC_INIT_UNDEFINED) {
746 alc_setup_gpio(codec, 0x01);
749 alc_setup_gpio(codec, 0x02);
752 alc_setup_gpio(codec, 0x03);
756 spec->init_amp = ALC_INIT_DEFAULT;
761 /* is laptop or Desktop and enable the function "Mute internal speaker
762 * when the external headphone out jack is plugged"
767 * 10~8 : Jack location
768 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
770 * 15 : 1 --> enable the function "Mute internal speaker
771 * when the external headphone out jack is plugged"
773 if (!alc_get_hp_pin(spec)) {
775 tmp = (ass >> 11) & 0x3; /* HP to chassis */
777 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
778 spec->gen.autocfg.line_outs))
780 spec->gen.autocfg.hp_pins[0] = nid;
785 /* Check the validity of ALC subsystem-id
786 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
787 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
789 if (!alc_subsystem_id(codec, ports)) {
790 struct alc_spec *spec = codec->spec;
792 "realtek: Enable default setup for auto mode as fallback\n");
793 spec->init_amp = ALC_INIT_DEFAULT;
800 static void alc_fixup_inv_dmic(struct hda_codec *codec,
801 const struct hda_fixup *fix, int action)
803 struct alc_spec *spec = codec->spec;
805 spec->gen.inv_dmic_split = 1;
809 static int alc_build_controls(struct hda_codec *codec)
813 err = snd_hda_gen_build_controls(codec);
817 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
826 static void alc_pre_init(struct hda_codec *codec)
828 alc_fill_eapd_coef(codec);
831 #define is_s3_resume(codec) \
832 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
833 #define is_s4_resume(codec) \
834 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
836 static int alc_init(struct hda_codec *codec)
838 struct alc_spec *spec = codec->spec;
840 /* hibernation resume needs the full chip initialization */
841 if (is_s4_resume(codec))
845 spec->init_hook(codec);
847 spec->gen.skip_verbs = 1; /* applied in below */
848 snd_hda_gen_init(codec);
850 alc_auto_init_amp(codec, spec->init_amp);
851 snd_hda_apply_verbs(codec); /* apply verbs here after own init */
853 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
858 static inline void alc_shutup(struct hda_codec *codec)
860 struct alc_spec *spec = codec->spec;
862 if (!snd_hda_get_bool_hint(codec, "shutup"))
863 return; /* disabled explicitly by hints */
865 if (spec && spec->shutup)
868 alc_shutup_pins(codec);
871 static void alc_reboot_notify(struct hda_codec *codec)
873 struct alc_spec *spec = codec->spec;
875 if (spec && spec->reboot_notify)
876 spec->reboot_notify(codec);
881 #define alc_free snd_hda_gen_free
884 static void alc_power_eapd(struct hda_codec *codec)
886 alc_auto_setup_eapd(codec, false);
889 static int alc_suspend(struct hda_codec *codec)
891 struct alc_spec *spec = codec->spec;
893 if (spec && spec->power_hook)
894 spec->power_hook(codec);
900 static int alc_resume(struct hda_codec *codec)
902 struct alc_spec *spec = codec->spec;
904 if (!spec->no_depop_delay)
905 msleep(150); /* to avoid pop noise */
906 codec->patch_ops.init(codec);
907 regcache_sync(codec->core.regmap);
908 hda_call_check_power_status(codec, 0x01);
915 static const struct hda_codec_ops alc_patch_ops = {
916 .build_controls = alc_build_controls,
917 .build_pcms = snd_hda_gen_build_pcms,
920 .unsol_event = snd_hda_jack_unsol_event,
922 .resume = alc_resume,
923 .suspend = alc_suspend,
924 .check_power_status = snd_hda_gen_check_power_status,
926 .reboot_notify = alc_reboot_notify,
930 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
933 * Rename codecs appropriately from COEF value or subvendor id
935 struct alc_codec_rename_table {
936 unsigned int vendor_id;
937 unsigned short coef_mask;
938 unsigned short coef_bits;
942 struct alc_codec_rename_pci_table {
943 unsigned int codec_vendor_id;
944 unsigned short pci_subvendor;
945 unsigned short pci_subdevice;
949 static struct alc_codec_rename_table rename_tbl[] = {
950 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
951 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
952 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
953 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
954 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
955 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
956 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
957 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
958 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
959 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
960 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
961 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
962 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
963 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
964 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
965 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
966 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
970 static struct alc_codec_rename_pci_table rename_pci_tbl[] = {
971 { 0x10ec0280, 0x1028, 0, "ALC3220" },
972 { 0x10ec0282, 0x1028, 0, "ALC3221" },
973 { 0x10ec0283, 0x1028, 0, "ALC3223" },
974 { 0x10ec0288, 0x1028, 0, "ALC3263" },
975 { 0x10ec0292, 0x1028, 0, "ALC3226" },
976 { 0x10ec0293, 0x1028, 0, "ALC3235" },
977 { 0x10ec0255, 0x1028, 0, "ALC3234" },
978 { 0x10ec0668, 0x1028, 0, "ALC3661" },
979 { 0x10ec0275, 0x1028, 0, "ALC3260" },
980 { 0x10ec0899, 0x1028, 0, "ALC3861" },
981 { 0x10ec0298, 0x1028, 0, "ALC3266" },
982 { 0x10ec0236, 0x1028, 0, "ALC3204" },
983 { 0x10ec0256, 0x1028, 0, "ALC3246" },
984 { 0x10ec0225, 0x1028, 0, "ALC3253" },
985 { 0x10ec0295, 0x1028, 0, "ALC3254" },
986 { 0x10ec0299, 0x1028, 0, "ALC3271" },
987 { 0x10ec0670, 0x1025, 0, "ALC669X" },
988 { 0x10ec0676, 0x1025, 0, "ALC679X" },
989 { 0x10ec0282, 0x1043, 0, "ALC3229" },
990 { 0x10ec0233, 0x1043, 0, "ALC3236" },
991 { 0x10ec0280, 0x103c, 0, "ALC3228" },
992 { 0x10ec0282, 0x103c, 0, "ALC3227" },
993 { 0x10ec0286, 0x103c, 0, "ALC3242" },
994 { 0x10ec0290, 0x103c, 0, "ALC3241" },
995 { 0x10ec0668, 0x103c, 0, "ALC3662" },
996 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
997 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
1001 static int alc_codec_rename_from_preset(struct hda_codec *codec)
1003 const struct alc_codec_rename_table *p;
1004 const struct alc_codec_rename_pci_table *q;
1006 for (p = rename_tbl; p->vendor_id; p++) {
1007 if (p->vendor_id != codec->core.vendor_id)
1009 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1010 return alc_codec_rename(codec, p->name);
1013 if (!codec->bus->pci)
1015 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
1016 if (q->codec_vendor_id != codec->core.vendor_id)
1018 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1020 if (!q->pci_subdevice ||
1021 q->pci_subdevice == codec->bus->pci->subsystem_device)
1022 return alc_codec_rename(codec, q->name);
1030 * Digital-beep handlers
1032 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1034 /* additional beep mixers; private_value will be overwritten */
1035 static const struct snd_kcontrol_new alc_beep_mixer[] = {
1036 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1037 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1040 /* set up and create beep controls */
1041 static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1044 struct snd_kcontrol_new *knew;
1045 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1048 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1049 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1050 &alc_beep_mixer[i]);
1053 knew->private_value = beep_amp;
1058 static const struct snd_pci_quirk beep_white_list[] = {
1059 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1060 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1061 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
1062 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1063 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1064 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1065 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
1066 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1067 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1068 /* blacklist -- no beep available */
1069 SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1070 SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1074 static inline int has_cdefine_beep(struct hda_codec *codec)
1076 struct alc_spec *spec = codec->spec;
1077 const struct snd_pci_quirk *q;
1078 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
1081 return spec->cdefine.enable_pcbeep;
1084 #define set_beep_amp(spec, nid, idx, dir) 0
1085 #define has_cdefine_beep(codec) 0
1088 /* parse the BIOS configuration and set up the alc_spec */
1089 /* return 1 if successful, 0 if the proper config is not found,
1090 * or a negative error code
1092 static int alc_parse_auto_config(struct hda_codec *codec,
1093 const hda_nid_t *ignore_nids,
1094 const hda_nid_t *ssid_nids)
1096 struct alc_spec *spec = codec->spec;
1097 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1100 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1106 alc_ssid_check(codec, ssid_nids);
1108 err = snd_hda_gen_parse_auto_config(codec, cfg);
1115 /* common preparation job for alc_spec */
1116 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1118 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1124 snd_hda_gen_spec_init(&spec->gen);
1125 spec->gen.mixer_nid = mixer_nid;
1126 spec->gen.own_eapd_ctl = 1;
1127 codec->single_adc_amp = 1;
1128 /* FIXME: do we need this for all Realtek codec models? */
1129 codec->spdif_status_reset = 1;
1130 codec->patch_ops = alc_patch_ops;
1132 err = alc_codec_rename_from_preset(codec);
1140 static int alc880_parse_auto_config(struct hda_codec *codec)
1142 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1143 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1144 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1153 ALC880_FIXUP_MEDION_RIM,
1155 ALC880_FIXUP_LG_LW25,
1157 ALC880_FIXUP_EAPD_COEF,
1158 ALC880_FIXUP_TCL_S700,
1159 ALC880_FIXUP_VOL_KNOB,
1160 ALC880_FIXUP_FUJITSU,
1162 ALC880_FIXUP_UNIWILL,
1163 ALC880_FIXUP_UNIWILL_DIG,
1165 ALC880_FIXUP_ASUS_W5A,
1166 ALC880_FIXUP_3ST_BASE,
1168 ALC880_FIXUP_3ST_DIG,
1169 ALC880_FIXUP_5ST_BASE,
1171 ALC880_FIXUP_5ST_DIG,
1172 ALC880_FIXUP_6ST_BASE,
1174 ALC880_FIXUP_6ST_DIG,
1175 ALC880_FIXUP_6ST_AUTOMUTE,
1178 /* enable the volume-knob widget support on NID 0x21 */
1179 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1180 const struct hda_fixup *fix, int action)
1182 if (action == HDA_FIXUP_ACT_PROBE)
1183 snd_hda_jack_detect_enable_callback(codec, 0x21,
1184 alc_update_knob_master);
1187 static const struct hda_fixup alc880_fixups[] = {
1188 [ALC880_FIXUP_GPIO1] = {
1189 .type = HDA_FIXUP_FUNC,
1190 .v.func = alc_fixup_gpio1,
1192 [ALC880_FIXUP_GPIO2] = {
1193 .type = HDA_FIXUP_FUNC,
1194 .v.func = alc_fixup_gpio2,
1196 [ALC880_FIXUP_MEDION_RIM] = {
1197 .type = HDA_FIXUP_VERBS,
1198 .v.verbs = (const struct hda_verb[]) {
1199 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1200 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1204 .chain_id = ALC880_FIXUP_GPIO2,
1206 [ALC880_FIXUP_LG] = {
1207 .type = HDA_FIXUP_PINS,
1208 .v.pins = (const struct hda_pintbl[]) {
1209 /* disable bogus unused pins */
1210 { 0x16, 0x411111f0 },
1211 { 0x18, 0x411111f0 },
1212 { 0x1a, 0x411111f0 },
1216 [ALC880_FIXUP_LG_LW25] = {
1217 .type = HDA_FIXUP_PINS,
1218 .v.pins = (const struct hda_pintbl[]) {
1219 { 0x1a, 0x0181344f }, /* line-in */
1220 { 0x1b, 0x0321403f }, /* headphone */
1224 [ALC880_FIXUP_W810] = {
1225 .type = HDA_FIXUP_PINS,
1226 .v.pins = (const struct hda_pintbl[]) {
1227 /* disable bogus unused pins */
1228 { 0x17, 0x411111f0 },
1232 .chain_id = ALC880_FIXUP_GPIO2,
1234 [ALC880_FIXUP_EAPD_COEF] = {
1235 .type = HDA_FIXUP_VERBS,
1236 .v.verbs = (const struct hda_verb[]) {
1237 /* change to EAPD mode */
1238 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1239 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1243 [ALC880_FIXUP_TCL_S700] = {
1244 .type = HDA_FIXUP_VERBS,
1245 .v.verbs = (const struct hda_verb[]) {
1246 /* change to EAPD mode */
1247 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1248 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1252 .chain_id = ALC880_FIXUP_GPIO2,
1254 [ALC880_FIXUP_VOL_KNOB] = {
1255 .type = HDA_FIXUP_FUNC,
1256 .v.func = alc880_fixup_vol_knob,
1258 [ALC880_FIXUP_FUJITSU] = {
1259 /* override all pins as BIOS on old Amilo is broken */
1260 .type = HDA_FIXUP_PINS,
1261 .v.pins = (const struct hda_pintbl[]) {
1262 { 0x14, 0x0121401f }, /* HP */
1263 { 0x15, 0x99030120 }, /* speaker */
1264 { 0x16, 0x99030130 }, /* bass speaker */
1265 { 0x17, 0x411111f0 }, /* N/A */
1266 { 0x18, 0x411111f0 }, /* N/A */
1267 { 0x19, 0x01a19950 }, /* mic-in */
1268 { 0x1a, 0x411111f0 }, /* N/A */
1269 { 0x1b, 0x411111f0 }, /* N/A */
1270 { 0x1c, 0x411111f0 }, /* N/A */
1271 { 0x1d, 0x411111f0 }, /* N/A */
1272 { 0x1e, 0x01454140 }, /* SPDIF out */
1276 .chain_id = ALC880_FIXUP_VOL_KNOB,
1278 [ALC880_FIXUP_F1734] = {
1279 /* almost compatible with FUJITSU, but no bass and SPDIF */
1280 .type = HDA_FIXUP_PINS,
1281 .v.pins = (const struct hda_pintbl[]) {
1282 { 0x14, 0x0121401f }, /* HP */
1283 { 0x15, 0x99030120 }, /* speaker */
1284 { 0x16, 0x411111f0 }, /* N/A */
1285 { 0x17, 0x411111f0 }, /* N/A */
1286 { 0x18, 0x411111f0 }, /* N/A */
1287 { 0x19, 0x01a19950 }, /* mic-in */
1288 { 0x1a, 0x411111f0 }, /* N/A */
1289 { 0x1b, 0x411111f0 }, /* N/A */
1290 { 0x1c, 0x411111f0 }, /* N/A */
1291 { 0x1d, 0x411111f0 }, /* N/A */
1292 { 0x1e, 0x411111f0 }, /* N/A */
1296 .chain_id = ALC880_FIXUP_VOL_KNOB,
1298 [ALC880_FIXUP_UNIWILL] = {
1299 /* need to fix HP and speaker pins to be parsed correctly */
1300 .type = HDA_FIXUP_PINS,
1301 .v.pins = (const struct hda_pintbl[]) {
1302 { 0x14, 0x0121411f }, /* HP */
1303 { 0x15, 0x99030120 }, /* speaker */
1304 { 0x16, 0x99030130 }, /* bass speaker */
1308 [ALC880_FIXUP_UNIWILL_DIG] = {
1309 .type = HDA_FIXUP_PINS,
1310 .v.pins = (const struct hda_pintbl[]) {
1311 /* disable bogus unused pins */
1312 { 0x17, 0x411111f0 },
1313 { 0x19, 0x411111f0 },
1314 { 0x1b, 0x411111f0 },
1315 { 0x1f, 0x411111f0 },
1319 [ALC880_FIXUP_Z71V] = {
1320 .type = HDA_FIXUP_PINS,
1321 .v.pins = (const struct hda_pintbl[]) {
1322 /* set up the whole pins as BIOS is utterly broken */
1323 { 0x14, 0x99030120 }, /* speaker */
1324 { 0x15, 0x0121411f }, /* HP */
1325 { 0x16, 0x411111f0 }, /* N/A */
1326 { 0x17, 0x411111f0 }, /* N/A */
1327 { 0x18, 0x01a19950 }, /* mic-in */
1328 { 0x19, 0x411111f0 }, /* N/A */
1329 { 0x1a, 0x01813031 }, /* line-in */
1330 { 0x1b, 0x411111f0 }, /* N/A */
1331 { 0x1c, 0x411111f0 }, /* N/A */
1332 { 0x1d, 0x411111f0 }, /* N/A */
1333 { 0x1e, 0x0144111e }, /* SPDIF */
1337 [ALC880_FIXUP_ASUS_W5A] = {
1338 .type = HDA_FIXUP_PINS,
1339 .v.pins = (const struct hda_pintbl[]) {
1340 /* set up the whole pins as BIOS is utterly broken */
1341 { 0x14, 0x0121411f }, /* HP */
1342 { 0x15, 0x411111f0 }, /* N/A */
1343 { 0x16, 0x411111f0 }, /* N/A */
1344 { 0x17, 0x411111f0 }, /* N/A */
1345 { 0x18, 0x90a60160 }, /* mic */
1346 { 0x19, 0x411111f0 }, /* N/A */
1347 { 0x1a, 0x411111f0 }, /* N/A */
1348 { 0x1b, 0x411111f0 }, /* N/A */
1349 { 0x1c, 0x411111f0 }, /* N/A */
1350 { 0x1d, 0x411111f0 }, /* N/A */
1351 { 0x1e, 0xb743111e }, /* SPDIF out */
1355 .chain_id = ALC880_FIXUP_GPIO1,
1357 [ALC880_FIXUP_3ST_BASE] = {
1358 .type = HDA_FIXUP_PINS,
1359 .v.pins = (const struct hda_pintbl[]) {
1360 { 0x14, 0x01014010 }, /* line-out */
1361 { 0x15, 0x411111f0 }, /* N/A */
1362 { 0x16, 0x411111f0 }, /* N/A */
1363 { 0x17, 0x411111f0 }, /* N/A */
1364 { 0x18, 0x01a19c30 }, /* mic-in */
1365 { 0x19, 0x0121411f }, /* HP */
1366 { 0x1a, 0x01813031 }, /* line-in */
1367 { 0x1b, 0x02a19c40 }, /* front-mic */
1368 { 0x1c, 0x411111f0 }, /* N/A */
1369 { 0x1d, 0x411111f0 }, /* N/A */
1370 /* 0x1e is filled in below */
1371 { 0x1f, 0x411111f0 }, /* N/A */
1375 [ALC880_FIXUP_3ST] = {
1376 .type = HDA_FIXUP_PINS,
1377 .v.pins = (const struct hda_pintbl[]) {
1378 { 0x1e, 0x411111f0 }, /* N/A */
1382 .chain_id = ALC880_FIXUP_3ST_BASE,
1384 [ALC880_FIXUP_3ST_DIG] = {
1385 .type = HDA_FIXUP_PINS,
1386 .v.pins = (const struct hda_pintbl[]) {
1387 { 0x1e, 0x0144111e }, /* SPDIF */
1391 .chain_id = ALC880_FIXUP_3ST_BASE,
1393 [ALC880_FIXUP_5ST_BASE] = {
1394 .type = HDA_FIXUP_PINS,
1395 .v.pins = (const struct hda_pintbl[]) {
1396 { 0x14, 0x01014010 }, /* front */
1397 { 0x15, 0x411111f0 }, /* N/A */
1398 { 0x16, 0x01011411 }, /* CLFE */
1399 { 0x17, 0x01016412 }, /* surr */
1400 { 0x18, 0x01a19c30 }, /* mic-in */
1401 { 0x19, 0x0121411f }, /* HP */
1402 { 0x1a, 0x01813031 }, /* line-in */
1403 { 0x1b, 0x02a19c40 }, /* front-mic */
1404 { 0x1c, 0x411111f0 }, /* N/A */
1405 { 0x1d, 0x411111f0 }, /* N/A */
1406 /* 0x1e is filled in below */
1407 { 0x1f, 0x411111f0 }, /* N/A */
1411 [ALC880_FIXUP_5ST] = {
1412 .type = HDA_FIXUP_PINS,
1413 .v.pins = (const struct hda_pintbl[]) {
1414 { 0x1e, 0x411111f0 }, /* N/A */
1418 .chain_id = ALC880_FIXUP_5ST_BASE,
1420 [ALC880_FIXUP_5ST_DIG] = {
1421 .type = HDA_FIXUP_PINS,
1422 .v.pins = (const struct hda_pintbl[]) {
1423 { 0x1e, 0x0144111e }, /* SPDIF */
1427 .chain_id = ALC880_FIXUP_5ST_BASE,
1429 [ALC880_FIXUP_6ST_BASE] = {
1430 .type = HDA_FIXUP_PINS,
1431 .v.pins = (const struct hda_pintbl[]) {
1432 { 0x14, 0x01014010 }, /* front */
1433 { 0x15, 0x01016412 }, /* surr */
1434 { 0x16, 0x01011411 }, /* CLFE */
1435 { 0x17, 0x01012414 }, /* side */
1436 { 0x18, 0x01a19c30 }, /* mic-in */
1437 { 0x19, 0x02a19c40 }, /* front-mic */
1438 { 0x1a, 0x01813031 }, /* line-in */
1439 { 0x1b, 0x0121411f }, /* HP */
1440 { 0x1c, 0x411111f0 }, /* N/A */
1441 { 0x1d, 0x411111f0 }, /* N/A */
1442 /* 0x1e is filled in below */
1443 { 0x1f, 0x411111f0 }, /* N/A */
1447 [ALC880_FIXUP_6ST] = {
1448 .type = HDA_FIXUP_PINS,
1449 .v.pins = (const struct hda_pintbl[]) {
1450 { 0x1e, 0x411111f0 }, /* N/A */
1454 .chain_id = ALC880_FIXUP_6ST_BASE,
1456 [ALC880_FIXUP_6ST_DIG] = {
1457 .type = HDA_FIXUP_PINS,
1458 .v.pins = (const struct hda_pintbl[]) {
1459 { 0x1e, 0x0144111e }, /* SPDIF */
1463 .chain_id = ALC880_FIXUP_6ST_BASE,
1465 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1466 .type = HDA_FIXUP_PINS,
1467 .v.pins = (const struct hda_pintbl[]) {
1468 { 0x1b, 0x0121401f }, /* HP with jack detect */
1471 .chained_before = true,
1472 .chain_id = ALC880_FIXUP_6ST_BASE,
1476 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1477 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1478 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
1479 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1480 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1481 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
1482 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1483 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1484 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1485 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1486 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1487 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1488 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1489 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1490 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1491 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
1492 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1493 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1494 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1495 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1496 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1497 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1498 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1499 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1501 /* Below is the copied entries from alc880_quirks.c.
1502 * It's not quite sure whether BIOS sets the correct pin-config table
1503 * on these machines, thus they are kept to be compatible with
1504 * the old static quirks. Once when it's confirmed to work without
1505 * these overrides, it'd be better to remove.
1507 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1508 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1509 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1510 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1511 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1512 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1513 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1514 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1515 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1516 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1517 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1518 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1519 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1520 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1521 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1522 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1523 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1524 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1525 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1526 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1527 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1528 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1529 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1530 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1531 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1532 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1533 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1534 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1535 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1536 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1537 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1538 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1539 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1541 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1542 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1543 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1547 static const struct hda_model_fixup alc880_fixup_models[] = {
1548 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1549 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1550 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1551 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1552 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1553 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1554 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1560 * OK, here we have finally the patch for ALC880
1562 static int patch_alc880(struct hda_codec *codec)
1564 struct alc_spec *spec;
1567 err = alc_alloc_spec(codec, 0x0b);
1572 spec->gen.need_dac_fix = 1;
1573 spec->gen.beep_nid = 0x01;
1575 codec->patch_ops.unsol_event = alc880_unsol_event;
1577 alc_pre_init(codec);
1579 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1581 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1583 /* automatic parse from the BIOS config */
1584 err = alc880_parse_auto_config(codec);
1588 if (!spec->gen.no_analog) {
1589 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1594 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1607 static int alc260_parse_auto_config(struct hda_codec *codec)
1609 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1610 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1611 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1618 ALC260_FIXUP_HP_DC5750,
1619 ALC260_FIXUP_HP_PIN_0F,
1622 ALC260_FIXUP_GPIO1_TOGGLE,
1623 ALC260_FIXUP_REPLACER,
1624 ALC260_FIXUP_HP_B1900,
1626 ALC260_FIXUP_FSC_S7020,
1627 ALC260_FIXUP_FSC_S7020_JWSE,
1628 ALC260_FIXUP_VAIO_PINS,
1631 static void alc260_gpio1_automute(struct hda_codec *codec)
1633 struct alc_spec *spec = codec->spec;
1635 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
1638 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1639 const struct hda_fixup *fix, int action)
1641 struct alc_spec *spec = codec->spec;
1642 if (action == HDA_FIXUP_ACT_PROBE) {
1643 /* although the machine has only one output pin, we need to
1644 * toggle GPIO1 according to the jack state
1646 spec->gen.automute_hook = alc260_gpio1_automute;
1647 spec->gen.detect_hp = 1;
1648 spec->gen.automute_speaker = 1;
1649 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1650 snd_hda_jack_detect_enable_callback(codec, 0x0f,
1651 snd_hda_gen_hp_automute);
1652 alc_setup_gpio(codec, 0x01);
1656 static void alc260_fixup_kn1(struct hda_codec *codec,
1657 const struct hda_fixup *fix, int action)
1659 struct alc_spec *spec = codec->spec;
1660 static const struct hda_pintbl pincfgs[] = {
1661 { 0x0f, 0x02214000 }, /* HP/speaker */
1662 { 0x12, 0x90a60160 }, /* int mic */
1663 { 0x13, 0x02a19000 }, /* ext mic */
1664 { 0x18, 0x01446000 }, /* SPDIF out */
1665 /* disable bogus I/O pins */
1666 { 0x10, 0x411111f0 },
1667 { 0x11, 0x411111f0 },
1668 { 0x14, 0x411111f0 },
1669 { 0x15, 0x411111f0 },
1670 { 0x16, 0x411111f0 },
1671 { 0x17, 0x411111f0 },
1672 { 0x19, 0x411111f0 },
1677 case HDA_FIXUP_ACT_PRE_PROBE:
1678 snd_hda_apply_pincfgs(codec, pincfgs);
1679 spec->init_amp = ALC_INIT_NONE;
1684 static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1685 const struct hda_fixup *fix, int action)
1687 struct alc_spec *spec = codec->spec;
1688 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1689 spec->init_amp = ALC_INIT_NONE;
1692 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1693 const struct hda_fixup *fix, int action)
1695 struct alc_spec *spec = codec->spec;
1696 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1697 spec->gen.add_jack_modes = 1;
1698 spec->gen.hp_mic = 1;
1702 static const struct hda_fixup alc260_fixups[] = {
1703 [ALC260_FIXUP_HP_DC5750] = {
1704 .type = HDA_FIXUP_PINS,
1705 .v.pins = (const struct hda_pintbl[]) {
1706 { 0x11, 0x90130110 }, /* speaker */
1710 [ALC260_FIXUP_HP_PIN_0F] = {
1711 .type = HDA_FIXUP_PINS,
1712 .v.pins = (const struct hda_pintbl[]) {
1713 { 0x0f, 0x01214000 }, /* HP */
1717 [ALC260_FIXUP_COEF] = {
1718 .type = HDA_FIXUP_VERBS,
1719 .v.verbs = (const struct hda_verb[]) {
1720 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1721 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
1725 [ALC260_FIXUP_GPIO1] = {
1726 .type = HDA_FIXUP_FUNC,
1727 .v.func = alc_fixup_gpio1,
1729 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1730 .type = HDA_FIXUP_FUNC,
1731 .v.func = alc260_fixup_gpio1_toggle,
1733 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1735 [ALC260_FIXUP_REPLACER] = {
1736 .type = HDA_FIXUP_VERBS,
1737 .v.verbs = (const struct hda_verb[]) {
1738 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1739 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
1743 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1745 [ALC260_FIXUP_HP_B1900] = {
1746 .type = HDA_FIXUP_FUNC,
1747 .v.func = alc260_fixup_gpio1_toggle,
1749 .chain_id = ALC260_FIXUP_COEF,
1751 [ALC260_FIXUP_KN1] = {
1752 .type = HDA_FIXUP_FUNC,
1753 .v.func = alc260_fixup_kn1,
1755 [ALC260_FIXUP_FSC_S7020] = {
1756 .type = HDA_FIXUP_FUNC,
1757 .v.func = alc260_fixup_fsc_s7020,
1759 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1760 .type = HDA_FIXUP_FUNC,
1761 .v.func = alc260_fixup_fsc_s7020_jwse,
1763 .chain_id = ALC260_FIXUP_FSC_S7020,
1765 [ALC260_FIXUP_VAIO_PINS] = {
1766 .type = HDA_FIXUP_PINS,
1767 .v.pins = (const struct hda_pintbl[]) {
1768 /* Pin configs are missing completely on some VAIOs */
1769 { 0x0f, 0x01211020 },
1770 { 0x10, 0x0001003f },
1771 { 0x11, 0x411111f0 },
1772 { 0x12, 0x01a15930 },
1773 { 0x13, 0x411111f0 },
1774 { 0x14, 0x411111f0 },
1775 { 0x15, 0x411111f0 },
1776 { 0x16, 0x411111f0 },
1777 { 0x17, 0x411111f0 },
1778 { 0x18, 0x411111f0 },
1779 { 0x19, 0x411111f0 },
1785 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1786 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1787 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1788 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1789 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1790 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1791 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
1792 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
1793 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1794 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1795 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1796 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1797 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1801 static const struct hda_model_fixup alc260_fixup_models[] = {
1802 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1803 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1804 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1805 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1811 static int patch_alc260(struct hda_codec *codec)
1813 struct alc_spec *spec;
1816 err = alc_alloc_spec(codec, 0x07);
1821 /* as quite a few machines require HP amp for speaker outputs,
1822 * it's easier to enable it unconditionally; even if it's unneeded,
1823 * it's almost harmless.
1825 spec->gen.prefer_hp_amp = 1;
1826 spec->gen.beep_nid = 0x01;
1828 spec->shutup = alc_eapd_shutup;
1830 alc_pre_init(codec);
1832 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1834 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1836 /* automatic parse from the BIOS config */
1837 err = alc260_parse_auto_config(codec);
1841 if (!spec->gen.no_analog) {
1842 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1847 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1858 * ALC882/883/885/888/889 support
1860 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1861 * configuration. Each pin widget can choose any input DACs and a mixer.
1862 * Each ADC is connected from a mixer of all inputs. This makes possible
1863 * 6-channel independent captures.
1865 * In addition, an independent DAC for the multi-playback (not used in this
1873 ALC882_FIXUP_ABIT_AW9D_MAX,
1874 ALC882_FIXUP_LENOVO_Y530,
1875 ALC882_FIXUP_PB_M5210,
1876 ALC882_FIXUP_ACER_ASPIRE_7736,
1877 ALC882_FIXUP_ASUS_W90V,
1879 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
1880 ALC889_FIXUP_VAIO_TT,
1881 ALC888_FIXUP_EEE1601,
1884 ALC883_FIXUP_ACER_EAPD,
1889 ALC882_FIXUP_ASUS_W2JC,
1890 ALC882_FIXUP_ACER_ASPIRE_4930G,
1891 ALC882_FIXUP_ACER_ASPIRE_8930G,
1892 ALC882_FIXUP_ASPIRE_8930G_VERBS,
1893 ALC885_FIXUP_MACPRO_GPIO,
1894 ALC889_FIXUP_DAC_ROUTE,
1895 ALC889_FIXUP_MBP_VREF,
1896 ALC889_FIXUP_IMAC91_VREF,
1897 ALC889_FIXUP_MBA11_VREF,
1898 ALC889_FIXUP_MBA21_VREF,
1899 ALC889_FIXUP_MP11_VREF,
1900 ALC889_FIXUP_MP41_VREF,
1901 ALC882_FIXUP_INV_DMIC,
1902 ALC882_FIXUP_NO_PRIMARY_HP,
1903 ALC887_FIXUP_ASUS_BASS,
1904 ALC887_FIXUP_BASS_CHMAP,
1905 ALC1220_FIXUP_GB_DUAL_CODECS,
1906 ALC1220_FIXUP_CLEVO_P950,
1907 ALC1220_FIXUP_CLEVO_PB51ED,
1908 ALC1220_FIXUP_CLEVO_PB51ED_PINS,
1911 static void alc889_fixup_coef(struct hda_codec *codec,
1912 const struct hda_fixup *fix, int action)
1914 if (action != HDA_FIXUP_ACT_INIT)
1916 alc_update_coef_idx(codec, 7, 0, 0x2030);
1919 /* set up GPIO at initialization */
1920 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1921 const struct hda_fixup *fix, int action)
1923 struct alc_spec *spec = codec->spec;
1925 spec->gpio_write_delay = true;
1926 alc_fixup_gpio3(codec, fix, action);
1929 /* Fix the connection of some pins for ALC889:
1930 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1931 * work correctly (bko#42740)
1933 static void alc889_fixup_dac_route(struct hda_codec *codec,
1934 const struct hda_fixup *fix, int action)
1936 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1937 /* fake the connections during parsing the tree */
1938 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1939 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1940 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1941 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1942 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1943 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1944 } else if (action == HDA_FIXUP_ACT_PROBE) {
1945 /* restore the connections */
1946 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1947 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1948 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1949 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1950 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
1954 /* Set VREF on HP pin */
1955 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1956 const struct hda_fixup *fix, int action)
1958 struct alc_spec *spec = codec->spec;
1959 static hda_nid_t nids[3] = { 0x14, 0x15, 0x19 };
1962 if (action != HDA_FIXUP_ACT_INIT)
1964 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1965 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1966 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1968 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1969 val |= AC_PINCTL_VREF_80;
1970 snd_hda_set_pin_ctl(codec, nids[i], val);
1971 spec->gen.keep_vref_in_automute = 1;
1976 static void alc889_fixup_mac_pins(struct hda_codec *codec,
1977 const hda_nid_t *nids, int num_nids)
1979 struct alc_spec *spec = codec->spec;
1982 for (i = 0; i < num_nids; i++) {
1984 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1985 val |= AC_PINCTL_VREF_50;
1986 snd_hda_set_pin_ctl(codec, nids[i], val);
1988 spec->gen.keep_vref_in_automute = 1;
1991 /* Set VREF on speaker pins on imac91 */
1992 static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1993 const struct hda_fixup *fix, int action)
1995 static hda_nid_t nids[2] = { 0x18, 0x1a };
1997 if (action == HDA_FIXUP_ACT_INIT)
1998 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2001 /* Set VREF on speaker pins on mba11 */
2002 static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2003 const struct hda_fixup *fix, int action)
2005 static hda_nid_t nids[1] = { 0x18 };
2007 if (action == HDA_FIXUP_ACT_INIT)
2008 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2011 /* Set VREF on speaker pins on mba21 */
2012 static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2013 const struct hda_fixup *fix, int action)
2015 static hda_nid_t nids[2] = { 0x18, 0x19 };
2017 if (action == HDA_FIXUP_ACT_INIT)
2018 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2021 /* Don't take HP output as primary
2022 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2023 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
2025 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
2026 const struct hda_fixup *fix, int action)
2028 struct alc_spec *spec = codec->spec;
2029 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2030 spec->gen.no_primary_hp = 1;
2031 spec->gen.no_multi_io = 1;
2035 static void alc_fixup_bass_chmap(struct hda_codec *codec,
2036 const struct hda_fixup *fix, int action);
2038 /* For dual-codec configuration, we need to disable some features to avoid
2039 * conflicts of kctls and PCM streams
2041 static void alc_fixup_dual_codecs(struct hda_codec *codec,
2042 const struct hda_fixup *fix, int action)
2044 struct alc_spec *spec = codec->spec;
2046 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2048 /* disable vmaster */
2049 spec->gen.suppress_vmaster = 1;
2050 /* auto-mute and auto-mic switch don't work with multiple codecs */
2051 spec->gen.suppress_auto_mute = 1;
2052 spec->gen.suppress_auto_mic = 1;
2053 /* disable aamix as well */
2054 spec->gen.mixer_nid = 0;
2055 /* add location prefix to avoid conflicts */
2056 codec->force_pin_prefix = 1;
2059 static void rename_ctl(struct hda_codec *codec, const char *oldname,
2060 const char *newname)
2062 struct snd_kcontrol *kctl;
2064 kctl = snd_hda_find_mixer_ctl(codec, oldname);
2066 strcpy(kctl->id.name, newname);
2069 static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2070 const struct hda_fixup *fix,
2073 alc_fixup_dual_codecs(codec, fix, action);
2075 case HDA_FIXUP_ACT_PRE_PROBE:
2076 /* override card longname to provide a unique UCM profile */
2077 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2079 case HDA_FIXUP_ACT_BUILD:
2080 /* rename Capture controls depending on the codec */
2081 rename_ctl(codec, "Capture Volume",
2083 "Rear-Panel Capture Volume" :
2084 "Front-Panel Capture Volume");
2085 rename_ctl(codec, "Capture Switch",
2087 "Rear-Panel Capture Switch" :
2088 "Front-Panel Capture Switch");
2093 static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2094 const struct hda_fixup *fix,
2097 hda_nid_t conn1[1] = { 0x0c };
2099 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2102 alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2103 /* We therefore want to make sure 0x14 (front headphone) and
2104 * 0x1b (speakers) use the stereo DAC 0x02
2106 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
2107 snd_hda_override_conn_list(codec, 0x1b, 1, conn1);
2110 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2111 const struct hda_fixup *fix, int action);
2113 static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
2114 const struct hda_fixup *fix,
2117 alc1220_fixup_clevo_p950(codec, fix, action);
2118 alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2121 static const struct hda_fixup alc882_fixups[] = {
2122 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
2123 .type = HDA_FIXUP_PINS,
2124 .v.pins = (const struct hda_pintbl[]) {
2125 { 0x15, 0x01080104 }, /* side */
2126 { 0x16, 0x01011012 }, /* rear */
2127 { 0x17, 0x01016011 }, /* clfe */
2131 [ALC882_FIXUP_LENOVO_Y530] = {
2132 .type = HDA_FIXUP_PINS,
2133 .v.pins = (const struct hda_pintbl[]) {
2134 { 0x15, 0x99130112 }, /* rear int speakers */
2135 { 0x16, 0x99130111 }, /* subwoofer */
2139 [ALC882_FIXUP_PB_M5210] = {
2140 .type = HDA_FIXUP_PINCTLS,
2141 .v.pins = (const struct hda_pintbl[]) {
2142 { 0x19, PIN_VREF50 },
2146 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
2147 .type = HDA_FIXUP_FUNC,
2148 .v.func = alc_fixup_sku_ignore,
2150 [ALC882_FIXUP_ASUS_W90V] = {
2151 .type = HDA_FIXUP_PINS,
2152 .v.pins = (const struct hda_pintbl[]) {
2153 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2157 [ALC889_FIXUP_CD] = {
2158 .type = HDA_FIXUP_PINS,
2159 .v.pins = (const struct hda_pintbl[]) {
2160 { 0x1c, 0x993301f0 }, /* CD */
2164 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2165 .type = HDA_FIXUP_PINS,
2166 .v.pins = (const struct hda_pintbl[]) {
2167 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2171 .chain_id = ALC889_FIXUP_CD,
2173 [ALC889_FIXUP_VAIO_TT] = {
2174 .type = HDA_FIXUP_PINS,
2175 .v.pins = (const struct hda_pintbl[]) {
2176 { 0x17, 0x90170111 }, /* hidden surround speaker */
2180 [ALC888_FIXUP_EEE1601] = {
2181 .type = HDA_FIXUP_VERBS,
2182 .v.verbs = (const struct hda_verb[]) {
2183 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2184 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2188 [ALC882_FIXUP_EAPD] = {
2189 .type = HDA_FIXUP_VERBS,
2190 .v.verbs = (const struct hda_verb[]) {
2191 /* change to EAPD mode */
2192 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2193 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2197 [ALC883_FIXUP_EAPD] = {
2198 .type = HDA_FIXUP_VERBS,
2199 .v.verbs = (const struct hda_verb[]) {
2200 /* change to EAPD mode */
2201 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2202 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2206 [ALC883_FIXUP_ACER_EAPD] = {
2207 .type = HDA_FIXUP_VERBS,
2208 .v.verbs = (const struct hda_verb[]) {
2209 /* eanable EAPD on Acer laptops */
2210 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2211 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2215 [ALC882_FIXUP_GPIO1] = {
2216 .type = HDA_FIXUP_FUNC,
2217 .v.func = alc_fixup_gpio1,
2219 [ALC882_FIXUP_GPIO2] = {
2220 .type = HDA_FIXUP_FUNC,
2221 .v.func = alc_fixup_gpio2,
2223 [ALC882_FIXUP_GPIO3] = {
2224 .type = HDA_FIXUP_FUNC,
2225 .v.func = alc_fixup_gpio3,
2227 [ALC882_FIXUP_ASUS_W2JC] = {
2228 .type = HDA_FIXUP_FUNC,
2229 .v.func = alc_fixup_gpio1,
2231 .chain_id = ALC882_FIXUP_EAPD,
2233 [ALC889_FIXUP_COEF] = {
2234 .type = HDA_FIXUP_FUNC,
2235 .v.func = alc889_fixup_coef,
2237 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2238 .type = HDA_FIXUP_PINS,
2239 .v.pins = (const struct hda_pintbl[]) {
2240 { 0x16, 0x99130111 }, /* CLFE speaker */
2241 { 0x17, 0x99130112 }, /* surround speaker */
2245 .chain_id = ALC882_FIXUP_GPIO1,
2247 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2248 .type = HDA_FIXUP_PINS,
2249 .v.pins = (const struct hda_pintbl[]) {
2250 { 0x16, 0x99130111 }, /* CLFE speaker */
2251 { 0x1b, 0x99130112 }, /* surround speaker */
2255 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2257 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2258 /* additional init verbs for Acer Aspire 8930G */
2259 .type = HDA_FIXUP_VERBS,
2260 .v.verbs = (const struct hda_verb[]) {
2261 /* Enable all DACs */
2262 /* DAC DISABLE/MUTE 1? */
2263 /* setting bits 1-5 disables DAC nids 0x02-0x06
2264 * apparently. Init=0x38 */
2265 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2266 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2267 /* DAC DISABLE/MUTE 2? */
2268 /* some bit here disables the other DACs.
2270 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2271 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2273 * This laptop has a stereo digital microphone.
2274 * The mics are only 1cm apart which makes the stereo
2275 * useless. However, either the mic or the ALC889
2276 * makes the signal become a difference/sum signal
2277 * instead of standard stereo, which is annoying.
2278 * So instead we flip this bit which makes the
2279 * codec replicate the sum signal to both channels,
2280 * turning it into a normal mono mic.
2282 /* DMIC_CONTROL? Init value = 0x0001 */
2283 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2284 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2285 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2286 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2290 .chain_id = ALC882_FIXUP_GPIO1,
2292 [ALC885_FIXUP_MACPRO_GPIO] = {
2293 .type = HDA_FIXUP_FUNC,
2294 .v.func = alc885_fixup_macpro_gpio,
2296 [ALC889_FIXUP_DAC_ROUTE] = {
2297 .type = HDA_FIXUP_FUNC,
2298 .v.func = alc889_fixup_dac_route,
2300 [ALC889_FIXUP_MBP_VREF] = {
2301 .type = HDA_FIXUP_FUNC,
2302 .v.func = alc889_fixup_mbp_vref,
2304 .chain_id = ALC882_FIXUP_GPIO1,
2306 [ALC889_FIXUP_IMAC91_VREF] = {
2307 .type = HDA_FIXUP_FUNC,
2308 .v.func = alc889_fixup_imac91_vref,
2310 .chain_id = ALC882_FIXUP_GPIO1,
2312 [ALC889_FIXUP_MBA11_VREF] = {
2313 .type = HDA_FIXUP_FUNC,
2314 .v.func = alc889_fixup_mba11_vref,
2316 .chain_id = ALC889_FIXUP_MBP_VREF,
2318 [ALC889_FIXUP_MBA21_VREF] = {
2319 .type = HDA_FIXUP_FUNC,
2320 .v.func = alc889_fixup_mba21_vref,
2322 .chain_id = ALC889_FIXUP_MBP_VREF,
2324 [ALC889_FIXUP_MP11_VREF] = {
2325 .type = HDA_FIXUP_FUNC,
2326 .v.func = alc889_fixup_mba11_vref,
2328 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2330 [ALC889_FIXUP_MP41_VREF] = {
2331 .type = HDA_FIXUP_FUNC,
2332 .v.func = alc889_fixup_mbp_vref,
2334 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2336 [ALC882_FIXUP_INV_DMIC] = {
2337 .type = HDA_FIXUP_FUNC,
2338 .v.func = alc_fixup_inv_dmic,
2340 [ALC882_FIXUP_NO_PRIMARY_HP] = {
2341 .type = HDA_FIXUP_FUNC,
2342 .v.func = alc882_fixup_no_primary_hp,
2344 [ALC887_FIXUP_ASUS_BASS] = {
2345 .type = HDA_FIXUP_PINS,
2346 .v.pins = (const struct hda_pintbl[]) {
2347 {0x16, 0x99130130}, /* bass speaker */
2351 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2353 [ALC887_FIXUP_BASS_CHMAP] = {
2354 .type = HDA_FIXUP_FUNC,
2355 .v.func = alc_fixup_bass_chmap,
2357 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2358 .type = HDA_FIXUP_FUNC,
2359 .v.func = alc1220_fixup_gb_dual_codecs,
2361 [ALC1220_FIXUP_CLEVO_P950] = {
2362 .type = HDA_FIXUP_FUNC,
2363 .v.func = alc1220_fixup_clevo_p950,
2365 [ALC1220_FIXUP_CLEVO_PB51ED] = {
2366 .type = HDA_FIXUP_FUNC,
2367 .v.func = alc1220_fixup_clevo_pb51ed,
2369 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
2370 .type = HDA_FIXUP_PINS,
2371 .v.pins = (const struct hda_pintbl[]) {
2372 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2376 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
2380 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2381 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2382 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2383 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2384 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2385 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2386 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2387 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2388 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2389 ALC882_FIXUP_ACER_ASPIRE_4930G),
2390 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2391 ALC882_FIXUP_ACER_ASPIRE_4930G),
2392 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2393 ALC882_FIXUP_ACER_ASPIRE_8930G),
2394 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2395 ALC882_FIXUP_ACER_ASPIRE_8930G),
2396 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2397 ALC882_FIXUP_ACER_ASPIRE_4930G),
2398 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2399 ALC882_FIXUP_ACER_ASPIRE_4930G),
2400 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2401 ALC882_FIXUP_ACER_ASPIRE_4930G),
2402 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2403 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2404 ALC882_FIXUP_ACER_ASPIRE_4930G),
2405 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2406 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2407 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2408 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2409 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2410 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2411 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2412 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2413 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
2414 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2415 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2416 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
2417 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2418 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
2420 /* All Apple entries are in codec SSIDs */
2421 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2422 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2423 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2424 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
2425 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2426 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2427 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2428 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2429 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2430 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
2431 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
2432 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2433 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2434 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2435 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2436 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2437 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2438 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
2439 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2440 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2441 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2442 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
2444 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2445 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
2446 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2447 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2448 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2449 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2450 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2451 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
2452 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2453 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
2454 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2455 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
2456 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2457 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2458 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2459 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2460 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2461 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2465 static const struct hda_model_fixup alc882_fixup_models[] = {
2466 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2467 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2468 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2469 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2470 {.id = ALC889_FIXUP_CD, .name = "cd"},
2471 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2472 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2473 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2474 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2475 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2476 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2477 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2478 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2479 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2480 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
2481 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2482 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2483 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2484 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2485 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2486 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2487 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2488 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2489 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2490 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2491 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
2492 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2493 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2494 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
2495 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
2496 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
2501 * BIOS auto configuration
2503 /* almost identical with ALC880 parser... */
2504 static int alc882_parse_auto_config(struct hda_codec *codec)
2506 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2507 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2508 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2513 static int patch_alc882(struct hda_codec *codec)
2515 struct alc_spec *spec;
2518 err = alc_alloc_spec(codec, 0x0b);
2524 switch (codec->core.vendor_id) {
2531 /* ALC883 and variants */
2532 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2536 alc_pre_init(codec);
2538 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2540 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2542 alc_auto_parse_customize_define(codec);
2544 if (has_cdefine_beep(codec))
2545 spec->gen.beep_nid = 0x01;
2547 /* automatic parse from the BIOS config */
2548 err = alc882_parse_auto_config(codec);
2552 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2553 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2558 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2571 static int alc262_parse_auto_config(struct hda_codec *codec)
2573 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2574 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2575 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2582 ALC262_FIXUP_FSC_H270,
2583 ALC262_FIXUP_FSC_S7110,
2584 ALC262_FIXUP_HP_Z200,
2586 ALC262_FIXUP_LENOVO_3000,
2588 ALC262_FIXUP_BENQ_T31,
2589 ALC262_FIXUP_INV_DMIC,
2590 ALC262_FIXUP_INTEL_BAYLEYBAY,
2593 static const struct hda_fixup alc262_fixups[] = {
2594 [ALC262_FIXUP_FSC_H270] = {
2595 .type = HDA_FIXUP_PINS,
2596 .v.pins = (const struct hda_pintbl[]) {
2597 { 0x14, 0x99130110 }, /* speaker */
2598 { 0x15, 0x0221142f }, /* front HP */
2599 { 0x1b, 0x0121141f }, /* rear HP */
2603 [ALC262_FIXUP_FSC_S7110] = {
2604 .type = HDA_FIXUP_PINS,
2605 .v.pins = (const struct hda_pintbl[]) {
2606 { 0x15, 0x90170110 }, /* speaker */
2610 .chain_id = ALC262_FIXUP_BENQ,
2612 [ALC262_FIXUP_HP_Z200] = {
2613 .type = HDA_FIXUP_PINS,
2614 .v.pins = (const struct hda_pintbl[]) {
2615 { 0x16, 0x99130120 }, /* internal speaker */
2619 [ALC262_FIXUP_TYAN] = {
2620 .type = HDA_FIXUP_PINS,
2621 .v.pins = (const struct hda_pintbl[]) {
2622 { 0x14, 0x1993e1f0 }, /* int AUX */
2626 [ALC262_FIXUP_LENOVO_3000] = {
2627 .type = HDA_FIXUP_PINCTLS,
2628 .v.pins = (const struct hda_pintbl[]) {
2629 { 0x19, PIN_VREF50 },
2633 .chain_id = ALC262_FIXUP_BENQ,
2635 [ALC262_FIXUP_BENQ] = {
2636 .type = HDA_FIXUP_VERBS,
2637 .v.verbs = (const struct hda_verb[]) {
2638 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2639 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2643 [ALC262_FIXUP_BENQ_T31] = {
2644 .type = HDA_FIXUP_VERBS,
2645 .v.verbs = (const struct hda_verb[]) {
2646 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2647 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2651 [ALC262_FIXUP_INV_DMIC] = {
2652 .type = HDA_FIXUP_FUNC,
2653 .v.func = alc_fixup_inv_dmic,
2655 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2656 .type = HDA_FIXUP_FUNC,
2657 .v.func = alc_fixup_no_depop_delay,
2661 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2662 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2663 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2664 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2665 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2666 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
2667 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2668 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2669 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2670 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2671 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2675 static const struct hda_model_fixup alc262_fixup_models[] = {
2676 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2677 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2678 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2679 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2680 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2681 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2682 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2683 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2684 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
2690 static int patch_alc262(struct hda_codec *codec)
2692 struct alc_spec *spec;
2695 err = alc_alloc_spec(codec, 0x0b);
2700 spec->gen.shared_mic_vref_pin = 0x18;
2702 spec->shutup = alc_eapd_shutup;
2705 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2708 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
2710 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2712 alc_pre_init(codec);
2714 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2716 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2718 alc_auto_parse_customize_define(codec);
2720 if (has_cdefine_beep(codec))
2721 spec->gen.beep_nid = 0x01;
2723 /* automatic parse from the BIOS config */
2724 err = alc262_parse_auto_config(codec);
2728 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2729 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2734 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2746 /* bind Beep switches of both NID 0x0f and 0x10 */
2747 static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2748 struct snd_ctl_elem_value *ucontrol)
2750 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2754 mutex_lock(&codec->control_mutex);
2755 pval = kcontrol->private_value;
2756 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2757 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2759 kcontrol->private_value = (pval & ~0xff) | 0x10;
2760 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2762 kcontrol->private_value = pval;
2763 mutex_unlock(&codec->control_mutex);
2767 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2768 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2770 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2771 .name = "Beep Playback Switch",
2772 .subdevice = HDA_SUBDEV_AMP_FLAG,
2773 .info = snd_hda_mixer_amp_switch_info,
2774 .get = snd_hda_mixer_amp_switch_get,
2775 .put = alc268_beep_switch_put,
2776 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
2780 /* set PCBEEP vol = 0, mute connections */
2781 static const struct hda_verb alc268_beep_init_verbs[] = {
2782 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2783 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2784 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2789 ALC268_FIXUP_INV_DMIC,
2790 ALC268_FIXUP_HP_EAPD,
2794 static const struct hda_fixup alc268_fixups[] = {
2795 [ALC268_FIXUP_INV_DMIC] = {
2796 .type = HDA_FIXUP_FUNC,
2797 .v.func = alc_fixup_inv_dmic,
2799 [ALC268_FIXUP_HP_EAPD] = {
2800 .type = HDA_FIXUP_VERBS,
2801 .v.verbs = (const struct hda_verb[]) {
2802 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2806 [ALC268_FIXUP_SPDIF] = {
2807 .type = HDA_FIXUP_PINS,
2808 .v.pins = (const struct hda_pintbl[]) {
2809 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2815 static const struct hda_model_fixup alc268_fixup_models[] = {
2816 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
2817 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2818 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
2822 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2823 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
2824 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
2825 /* below is codec SSID since multiple Toshiba laptops have the
2826 * same PCI SSID 1179:ff00
2828 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
2833 * BIOS auto configuration
2835 static int alc268_parse_auto_config(struct hda_codec *codec)
2837 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2838 return alc_parse_auto_config(codec, NULL, alc268_ssids);
2843 static int patch_alc268(struct hda_codec *codec)
2845 struct alc_spec *spec;
2848 /* ALC268 has no aa-loopback mixer */
2849 err = alc_alloc_spec(codec, 0);
2854 if (has_cdefine_beep(codec))
2855 spec->gen.beep_nid = 0x01;
2857 spec->shutup = alc_eapd_shutup;
2859 alc_pre_init(codec);
2861 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2862 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2864 /* automatic parse from the BIOS config */
2865 err = alc268_parse_auto_config(codec);
2869 if (err > 0 && !spec->gen.no_analog &&
2870 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
2871 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
2872 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
2873 &alc268_beep_mixer[i])) {
2878 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
2879 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2880 /* override the amp caps for beep generator */
2881 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2882 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2883 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2884 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2885 (0 << AC_AMPCAP_MUTE_SHIFT));
2888 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2901 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2902 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2905 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2906 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2909 /* different alc269-variants */
2911 ALC269_TYPE_ALC269VA,
2912 ALC269_TYPE_ALC269VB,
2913 ALC269_TYPE_ALC269VC,
2914 ALC269_TYPE_ALC269VD,
2934 * BIOS auto configuration
2936 static int alc269_parse_auto_config(struct hda_codec *codec)
2938 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
2939 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2940 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2941 struct alc_spec *spec = codec->spec;
2942 const hda_nid_t *ssids;
2944 switch (spec->codec_variant) {
2945 case ALC269_TYPE_ALC269VA:
2946 case ALC269_TYPE_ALC269VC:
2947 case ALC269_TYPE_ALC280:
2948 case ALC269_TYPE_ALC284:
2949 case ALC269_TYPE_ALC293:
2950 ssids = alc269va_ssids;
2952 case ALC269_TYPE_ALC269VB:
2953 case ALC269_TYPE_ALC269VD:
2954 case ALC269_TYPE_ALC282:
2955 case ALC269_TYPE_ALC283:
2956 case ALC269_TYPE_ALC286:
2957 case ALC269_TYPE_ALC298:
2958 case ALC269_TYPE_ALC255:
2959 case ALC269_TYPE_ALC256:
2960 case ALC269_TYPE_ALC257:
2961 case ALC269_TYPE_ALC215:
2962 case ALC269_TYPE_ALC225:
2963 case ALC269_TYPE_ALC294:
2964 case ALC269_TYPE_ALC300:
2965 case ALC269_TYPE_ALC623:
2966 case ALC269_TYPE_ALC700:
2967 ssids = alc269_ssids;
2970 ssids = alc269_ssids;
2974 return alc_parse_auto_config(codec, alc269_ignore, ssids);
2977 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
2979 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
2982 static void alc269_shutup(struct hda_codec *codec)
2984 struct alc_spec *spec = codec->spec;
2986 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2987 alc269vb_toggle_power_output(codec, 0);
2988 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2989 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
2992 alc_shutup_pins(codec);
2995 static struct coef_fw alc282_coefs[] = {
2996 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2997 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
2998 WRITE_COEF(0x07, 0x0200), /* DMIC control */
2999 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3000 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3001 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3002 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3003 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3004 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3005 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3006 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3007 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3008 WRITE_COEF(0x34, 0xa0c0), /* ANC */
3009 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3010 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3011 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3012 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3013 WRITE_COEF(0x63, 0x2902), /* PLL */
3014 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3015 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3016 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3017 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3018 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3019 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3020 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3021 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3022 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3023 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3024 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3028 static void alc282_restore_default_value(struct hda_codec *codec)
3030 alc_process_coef_fw(codec, alc282_coefs);
3033 static void alc282_init(struct hda_codec *codec)
3035 struct alc_spec *spec = codec->spec;
3036 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3040 alc282_restore_default_value(codec);
3044 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3045 coef78 = alc_read_coef_idx(codec, 0x78);
3047 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3048 /* Headphone capless set to high power mode */
3049 alc_write_coef_idx(codec, 0x78, 0x9004);
3054 snd_hda_codec_write(codec, hp_pin, 0,
3055 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3060 snd_hda_codec_write(codec, hp_pin, 0,
3061 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3066 /* Headphone capless set to normal mode */
3067 alc_write_coef_idx(codec, 0x78, coef78);
3070 static void alc282_shutup(struct hda_codec *codec)
3072 struct alc_spec *spec = codec->spec;
3073 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3078 alc269_shutup(codec);
3082 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3083 coef78 = alc_read_coef_idx(codec, 0x78);
3084 alc_write_coef_idx(codec, 0x78, 0x9004);
3089 snd_hda_codec_write(codec, hp_pin, 0,
3090 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3095 if (!spec->no_shutup_pins)
3096 snd_hda_codec_write(codec, hp_pin, 0,
3097 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3102 alc_auto_setup_eapd(codec, false);
3103 alc_shutup_pins(codec);
3104 alc_write_coef_idx(codec, 0x78, coef78);
3107 static struct coef_fw alc283_coefs[] = {
3108 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3109 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3110 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3111 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3112 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3113 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3114 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3115 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3116 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3117 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3118 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3119 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3120 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3121 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3122 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3123 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3124 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3125 WRITE_COEF(0x2e, 0x2902), /* PLL */
3126 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3127 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3128 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3129 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3130 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3131 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3132 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3133 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3134 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3135 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3136 WRITE_COEF(0x49, 0x0), /* test mode */
3137 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3138 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3139 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
3140 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
3144 static void alc283_restore_default_value(struct hda_codec *codec)
3146 alc_process_coef_fw(codec, alc283_coefs);
3149 static void alc283_init(struct hda_codec *codec)
3151 struct alc_spec *spec = codec->spec;
3152 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3155 alc283_restore_default_value(codec);
3161 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3163 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3164 /* Headphone capless set to high power mode */
3165 alc_write_coef_idx(codec, 0x43, 0x9004);
3167 snd_hda_codec_write(codec, hp_pin, 0,
3168 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3173 snd_hda_codec_write(codec, hp_pin, 0,
3174 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3178 /* Index 0x46 Combo jack auto switch control 2 */
3179 /* 3k pull low control for Headset jack. */
3180 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3181 /* Headphone capless set to normal mode */
3182 alc_write_coef_idx(codec, 0x43, 0x9614);
3185 static void alc283_shutup(struct hda_codec *codec)
3187 struct alc_spec *spec = codec->spec;
3188 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3192 alc269_shutup(codec);
3196 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3198 alc_write_coef_idx(codec, 0x43, 0x9004);
3200 /*depop hp during suspend*/
3201 alc_write_coef_idx(codec, 0x06, 0x2100);
3203 snd_hda_codec_write(codec, hp_pin, 0,
3204 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3209 if (!spec->no_shutup_pins)
3210 snd_hda_codec_write(codec, hp_pin, 0,
3211 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3213 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3217 alc_auto_setup_eapd(codec, false);
3218 alc_shutup_pins(codec);
3219 alc_write_coef_idx(codec, 0x43, 0x9614);
3222 static void alc256_init(struct hda_codec *codec)
3224 struct alc_spec *spec = codec->spec;
3225 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3233 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3238 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3239 if (spec->ultra_low_power) {
3240 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3241 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3242 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3243 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3244 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3248 snd_hda_codec_write(codec, hp_pin, 0,
3249 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3251 if (hp_pin_sense || spec->ultra_low_power)
3254 snd_hda_codec_write(codec, hp_pin, 0,
3255 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3257 if (hp_pin_sense || spec->ultra_low_power)
3260 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3261 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3262 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3263 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
3264 alc_update_coef_idx(codec, 0x36, 1 << 13, 1 << 5); /* Switch pcbeep path to Line in path*/
3267 static void alc256_shutup(struct hda_codec *codec)
3269 struct alc_spec *spec = codec->spec;
3270 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3276 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3281 snd_hda_codec_write(codec, hp_pin, 0,
3282 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3284 if (hp_pin_sense || spec->ultra_low_power)
3287 /* 3k pull low control for Headset jack. */
3288 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3289 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3291 if (!spec->no_shutup_pins)
3292 snd_hda_codec_write(codec, hp_pin, 0,
3293 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3295 if (hp_pin_sense || spec->ultra_low_power)
3298 alc_auto_setup_eapd(codec, false);
3299 alc_shutup_pins(codec);
3300 if (spec->ultra_low_power) {
3302 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3303 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3304 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3305 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3306 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3311 static void alc225_init(struct hda_codec *codec)
3313 struct alc_spec *spec = codec->spec;
3314 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3315 bool hp1_pin_sense, hp2_pin_sense;
3321 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3322 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3324 if (hp1_pin_sense || hp2_pin_sense)
3327 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3328 if (spec->ultra_low_power) {
3329 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3330 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3331 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3335 if (hp1_pin_sense || spec->ultra_low_power)
3336 snd_hda_codec_write(codec, hp_pin, 0,
3337 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3339 snd_hda_codec_write(codec, 0x16, 0,
3340 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3342 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3345 if (hp1_pin_sense || spec->ultra_low_power)
3346 snd_hda_codec_write(codec, hp_pin, 0,
3347 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3349 snd_hda_codec_write(codec, 0x16, 0,
3350 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3352 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3355 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3356 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3359 static void alc225_shutup(struct hda_codec *codec)
3361 struct alc_spec *spec = codec->spec;
3362 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3363 bool hp1_pin_sense, hp2_pin_sense;
3367 /* 3k pull low control for Headset jack. */
3368 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3370 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3371 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3373 if (hp1_pin_sense || hp2_pin_sense)
3376 if (hp1_pin_sense || spec->ultra_low_power)
3377 snd_hda_codec_write(codec, hp_pin, 0,
3378 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3380 snd_hda_codec_write(codec, 0x16, 0,
3381 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3383 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3386 if (hp1_pin_sense || spec->ultra_low_power)
3387 snd_hda_codec_write(codec, hp_pin, 0,
3388 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3390 snd_hda_codec_write(codec, 0x16, 0,
3391 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3393 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3396 alc_auto_setup_eapd(codec, false);
3397 alc_shutup_pins(codec);
3398 if (spec->ultra_low_power) {
3400 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3401 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3402 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3403 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3408 static void alc_default_init(struct hda_codec *codec)
3410 struct alc_spec *spec = codec->spec;
3411 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3419 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3424 snd_hda_codec_write(codec, hp_pin, 0,
3425 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3430 snd_hda_codec_write(codec, hp_pin, 0,
3431 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3437 static void alc_default_shutup(struct hda_codec *codec)
3439 struct alc_spec *spec = codec->spec;
3440 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3444 alc269_shutup(codec);
3448 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3453 snd_hda_codec_write(codec, hp_pin, 0,
3454 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3459 if (!spec->no_shutup_pins)
3460 snd_hda_codec_write(codec, hp_pin, 0,
3461 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3466 alc_auto_setup_eapd(codec, false);
3467 alc_shutup_pins(codec);
3470 static void alc294_hp_init(struct hda_codec *codec)
3472 struct alc_spec *spec = codec->spec;
3473 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3479 snd_hda_codec_write(codec, hp_pin, 0,
3480 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3484 if (!spec->no_shutup_pins)
3485 snd_hda_codec_write(codec, hp_pin, 0,
3486 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3488 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3489 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3491 /* Wait for depop procedure finish */
3492 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3493 for (i = 0; i < 20 && val & 0x0080; i++) {
3495 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3497 /* Set HP depop to auto mode */
3498 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3502 static void alc294_init(struct hda_codec *codec)
3504 struct alc_spec *spec = codec->spec;
3506 /* required only at boot or S4 resume time */
3507 if (!spec->done_hp_init ||
3508 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
3509 alc294_hp_init(codec);
3510 spec->done_hp_init = true;
3512 alc_default_init(codec);
3515 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3518 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3519 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3520 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3523 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3527 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3528 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3530 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3535 static void alc5505_dsp_halt(struct hda_codec *codec)
3539 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3540 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3541 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3542 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3543 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3544 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3545 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3546 val = alc5505_coef_get(codec, 0x6220);
3547 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3550 static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3552 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3553 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3554 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3555 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3556 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3557 alc5505_coef_set(codec, 0x880c, 0x00000004);
3560 static void alc5505_dsp_init(struct hda_codec *codec)
3564 alc5505_dsp_halt(codec);
3565 alc5505_dsp_back_from_halt(codec);
3566 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3567 alc5505_coef_set(codec, 0x61b0, 0x5b16);
3568 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
3569 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
3570 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
3571 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
3572 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
3573 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
3574 alc5505_coef_set(codec, 0x61b8, 0x04173302);
3575 alc5505_coef_set(codec, 0x61b8, 0x04163302);
3576 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
3577 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
3578 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
3580 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
3582 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3584 alc5505_coef_set(codec, 0x6220, 0x6002018f);
3586 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
3587 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
3588 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
3589 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
3590 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
3591 alc5505_coef_set(codec, 0x880c, 0x00000003);
3592 alc5505_coef_set(codec, 0x880c, 0x00000010);
3594 #ifdef HALT_REALTEK_ALC5505
3595 alc5505_dsp_halt(codec);
3599 #ifdef HALT_REALTEK_ALC5505
3600 #define alc5505_dsp_suspend(codec) /* NOP */
3601 #define alc5505_dsp_resume(codec) /* NOP */
3603 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
3604 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
3608 static int alc269_suspend(struct hda_codec *codec)
3610 struct alc_spec *spec = codec->spec;
3612 if (spec->has_alc5505_dsp)
3613 alc5505_dsp_suspend(codec);
3614 return alc_suspend(codec);
3617 static int alc269_resume(struct hda_codec *codec)
3619 struct alc_spec *spec = codec->spec;
3621 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3622 alc269vb_toggle_power_output(codec, 0);
3623 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3624 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
3628 codec->patch_ops.init(codec);
3630 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3631 alc269vb_toggle_power_output(codec, 1);
3632 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3633 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
3637 regcache_sync(codec->core.regmap);
3638 hda_call_check_power_status(codec, 0x01);
3640 /* on some machine, the BIOS will clear the codec gpio data when enter
3641 * suspend, and won't restore the data after resume, so we restore it
3644 if (spec->gpio_data)
3645 alc_write_gpio_data(codec);
3647 if (spec->has_alc5505_dsp)
3648 alc5505_dsp_resume(codec);
3652 #endif /* CONFIG_PM */
3654 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
3655 const struct hda_fixup *fix, int action)
3657 struct alc_spec *spec = codec->spec;
3659 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3660 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3663 static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
3664 const struct hda_fixup *fix,
3667 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
3668 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
3670 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
3671 snd_hda_codec_set_pincfg(codec, 0x19,
3672 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
3673 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
3676 static void alc269_fixup_hweq(struct hda_codec *codec,
3677 const struct hda_fixup *fix, int action)
3679 if (action == HDA_FIXUP_ACT_INIT)
3680 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
3683 static void alc269_fixup_headset_mic(struct hda_codec *codec,
3684 const struct hda_fixup *fix, int action)
3686 struct alc_spec *spec = codec->spec;
3688 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3689 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3692 static void alc271_fixup_dmic(struct hda_codec *codec,
3693 const struct hda_fixup *fix, int action)
3695 static const struct hda_verb verbs[] = {
3696 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
3697 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
3702 if (strcmp(codec->core.chip_name, "ALC271X") &&
3703 strcmp(codec->core.chip_name, "ALC269VB"))
3705 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
3706 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
3707 snd_hda_sequence_write(codec, verbs);
3710 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
3711 const struct hda_fixup *fix, int action)
3713 struct alc_spec *spec = codec->spec;
3715 if (action != HDA_FIXUP_ACT_PROBE)
3718 /* Due to a hardware problem on Lenovo Ideadpad, we need to
3719 * fix the sample rate of analog I/O to 44.1kHz
3721 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
3722 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
3725 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
3726 const struct hda_fixup *fix, int action)
3728 /* The digital-mic unit sends PDM (differential signal) instead of
3729 * the standard PCM, thus you can't record a valid mono stream as is.
3730 * Below is a workaround specific to ALC269 to control the dmic
3731 * signal source as mono.
3733 if (action == HDA_FIXUP_ACT_INIT)
3734 alc_update_coef_idx(codec, 0x07, 0, 0x80);
3737 static void alc269_quanta_automute(struct hda_codec *codec)
3739 snd_hda_gen_update_outputs(codec);
3741 alc_write_coef_idx(codec, 0x0c, 0x680);
3742 alc_write_coef_idx(codec, 0x0c, 0x480);
3745 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
3746 const struct hda_fixup *fix, int action)
3748 struct alc_spec *spec = codec->spec;
3749 if (action != HDA_FIXUP_ACT_PROBE)
3751 spec->gen.automute_hook = alc269_quanta_automute;
3754 static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
3755 struct hda_jack_callback *jack)
3757 struct alc_spec *spec = codec->spec;
3760 snd_hda_gen_hp_automute(codec, jack);
3762 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3764 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3767 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3772 * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
3774 struct hda_alc298_mbxinit {
3775 unsigned char value_0x23;
3776 unsigned char value_0x25;
3779 static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
3780 const struct hda_alc298_mbxinit *initval,
3783 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
3784 alc_write_coef_idx(codec, 0x26, 0xb000);
3787 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
3789 snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
3790 alc_write_coef_idx(codec, 0x26, 0xf000);
3791 alc_write_coef_idx(codec, 0x23, initval->value_0x23);
3793 if (initval->value_0x23 != 0x1e)
3794 alc_write_coef_idx(codec, 0x25, initval->value_0x25);
3796 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
3797 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
3800 static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
3801 const struct hda_fixup *fix,
3804 /* Initialization magic */
3805 static const struct hda_alc298_mbxinit dac_init[] = {
3806 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
3807 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
3808 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
3809 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
3810 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
3811 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
3813 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
3814 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
3815 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
3818 const struct hda_alc298_mbxinit *seq;
3820 if (action != HDA_FIXUP_ACT_INIT)
3824 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
3825 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
3826 alc_write_coef_idx(codec, 0x26, 0xf000);
3827 alc_write_coef_idx(codec, 0x22, 0x31);
3828 alc_write_coef_idx(codec, 0x23, 0x0b);
3829 alc_write_coef_idx(codec, 0x25, 0x00);
3830 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
3831 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
3833 for (seq = dac_init; seq->value_0x23; seq++)
3834 alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
3837 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
3838 const struct hda_fixup *fix, int action)
3840 struct alc_spec *spec = codec->spec;
3841 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3842 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3843 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
3848 /* update mute-LED according to the speaker mute state via mic VREF pin */
3849 static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
3851 struct hda_codec *codec = private_data;
3852 struct alc_spec *spec = codec->spec;
3853 unsigned int pinval;
3855 if (spec->mute_led_polarity)
3857 pinval = snd_hda_codec_get_pin_target(codec, spec->mute_led_nid);
3858 pinval &= ~AC_PINCTL_VREFEN;
3859 pinval |= enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80;
3860 if (spec->mute_led_nid) {
3861 /* temporarily power up/down for setting VREF */
3862 snd_hda_power_up_pm(codec);
3863 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
3864 snd_hda_power_down_pm(codec);