2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for SigmaTel STAC92xx
6 * Copyright (c) 2005 Embedded Alley Solutions, Inc.
7 * Matt Porter <mporter@embeddedalley.com>
9 * Based on patch_cmedia.c and patch_realtek.c
10 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
12 * This driver is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This driver is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/slab.h>
30 #include <linux/pci.h>
31 #include <linux/dmi.h>
32 #include <linux/module.h>
33 #include <sound/core.h>
34 #include <sound/jack.h>
35 #include <sound/tlv.h>
36 #include "hda_codec.h"
37 #include "hda_local.h"
38 #include "hda_auto_parser.h"
41 #include "hda_generic.h"
78 STAC_92HD73XX_NO_JD
, /* no jack-detection */
86 STAC_92HD89XX_HP_FRONT_JACK
,
87 STAC_92HD89XX_HP_Z1_G2_RIGHT_MIC_JACK
,
88 STAC_92HD73XX_ASUS_MOBO
,
94 STAC_92HD83XXX_PWR_REF
,
96 STAC_DELL_VOSTRO_3500
,
97 STAC_92HD83XXX_HP_cNB11_INTQUAD
,
100 STAC_92HD83XXX_HP_LED
,
101 STAC_92HD83XXX_HP_INV_LED
,
102 STAC_92HD83XXX_HP_MIC_LED
,
104 STAC_92HD83XXX_HEADSET_JACK
,
108 STAC_92HD83XXX_MODELS
121 STAC_92HD71BXX_NO_DMIC
,
122 STAC_92HD71BXX_NO_SMUX
,
123 STAC_92HD71BXX_MODELS
153 STAC_922X_INTEL_MAC_GPIO
,
158 STAC_D965_REF_NO_JD
, /* no jack-detection */
167 STAC_DELL_BIOS_SPDIF
,
178 struct sigmatel_spec
{
179 struct hda_gen_spec gen
;
181 unsigned int eapd_switch
: 1;
182 unsigned int linear_tone_beep
:1;
183 unsigned int headset_jack
:1; /* 4-pin headset jack (hp + mono mic) */
184 unsigned int volknob_init
:1; /* special volume-knob initialization */
185 unsigned int powerdown_adcs
:1;
186 unsigned int have_spdif_mux
:1;
189 unsigned int eapd_mask
;
190 unsigned int gpio_mask
;
191 unsigned int gpio_dir
;
192 unsigned int gpio_data
;
193 unsigned int gpio_mute
;
194 unsigned int gpio_led
;
195 unsigned int gpio_led_polarity
;
196 unsigned int vref_mute_led_nid
; /* pin NID for mute-LED vref control */
197 unsigned int vref_led
;
198 int default_polarity
;
200 unsigned int mic_mute_led_gpio
; /* capture mute LED GPIO */
201 unsigned int mic_enabled
; /* current mic mute state (bitmask) */
204 unsigned int stream_delay
;
206 /* analog loopback */
207 const struct snd_kcontrol_new
*aloopback_ctl
;
208 unsigned int aloopback
;
209 unsigned char aloopback_mask
;
210 unsigned char aloopback_shift
;
212 /* power management */
213 unsigned int power_map_bits
;
214 unsigned int num_pwrs
;
215 const hda_nid_t
*pwr_nids
;
216 unsigned int active_adcs
;
219 hda_nid_t anabeep_nid
;
222 const char * const *spdif_labels
;
223 struct hda_input_mux spdif_mux
;
224 unsigned int cur_smux
[2];
227 #define AC_VERB_IDT_SET_POWER_MAP 0x7ec
228 #define AC_VERB_IDT_GET_POWER_MAP 0xfec
230 static const hda_nid_t stac92hd73xx_pwr_nids
[8] = {
231 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
235 static const hda_nid_t stac92hd83xxx_pwr_nids
[7] = {
236 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
240 static const hda_nid_t stac92hd71bxx_pwr_nids
[3] = {
248 static void stac_playback_pcm_hook(struct hda_pcm_stream
*hinfo
,
249 struct hda_codec
*codec
,
250 struct snd_pcm_substream
*substream
,
253 struct sigmatel_spec
*spec
= codec
->spec
;
254 if (action
== HDA_GEN_PCM_ACT_OPEN
&& spec
->stream_delay
)
255 msleep(spec
->stream_delay
);
258 static void stac_capture_pcm_hook(struct hda_pcm_stream
*hinfo
,
259 struct hda_codec
*codec
,
260 struct snd_pcm_substream
*substream
,
263 struct sigmatel_spec
*spec
= codec
->spec
;
266 if (!spec
->powerdown_adcs
)
269 for (i
= 0; i
< spec
->gen
.num_all_adcs
; i
++) {
270 if (spec
->gen
.all_adcs
[i
] == hinfo
->nid
) {
277 case HDA_GEN_PCM_ACT_OPEN
:
279 snd_hda_codec_write(codec
, hinfo
->nid
, 0,
280 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
281 spec
->active_adcs
|= (1 << idx
);
283 case HDA_GEN_PCM_ACT_CLOSE
:
284 snd_hda_codec_write(codec
, hinfo
->nid
, 0,
285 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
286 spec
->active_adcs
&= ~(1 << idx
);
292 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
293 * funky external mute control using GPIO pins.
296 static void stac_gpio_set(struct hda_codec
*codec
, unsigned int mask
,
297 unsigned int dir_mask
, unsigned int data
)
299 unsigned int gpiostate
, gpiomask
, gpiodir
;
301 snd_printdd("%s msk %x dir %x gpio %x\n", __func__
, mask
, dir_mask
, data
);
303 gpiostate
= snd_hda_codec_read(codec
, codec
->afg
, 0,
304 AC_VERB_GET_GPIO_DATA
, 0);
305 gpiostate
= (gpiostate
& ~dir_mask
) | (data
& dir_mask
);
307 gpiomask
= snd_hda_codec_read(codec
, codec
->afg
, 0,
308 AC_VERB_GET_GPIO_MASK
, 0);
311 gpiodir
= snd_hda_codec_read(codec
, codec
->afg
, 0,
312 AC_VERB_GET_GPIO_DIRECTION
, 0);
315 /* Configure GPIOx as CMOS */
316 snd_hda_codec_write(codec
, codec
->afg
, 0, 0x7e7, 0);
318 snd_hda_codec_write(codec
, codec
->afg
, 0,
319 AC_VERB_SET_GPIO_MASK
, gpiomask
);
320 snd_hda_codec_read(codec
, codec
->afg
, 0,
321 AC_VERB_SET_GPIO_DIRECTION
, gpiodir
); /* sync */
325 snd_hda_codec_read(codec
, codec
->afg
, 0,
326 AC_VERB_SET_GPIO_DATA
, gpiostate
); /* sync */
329 /* hook for controlling mic-mute LED GPIO */
330 static void stac_capture_led_hook(struct hda_codec
*codec
,
331 struct snd_kcontrol
*kcontrol
,
332 struct snd_ctl_elem_value
*ucontrol
)
334 struct sigmatel_spec
*spec
= codec
->spec
;
336 bool cur_mute
, prev_mute
;
338 if (!kcontrol
|| !ucontrol
)
341 mask
= 1U << snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
342 prev_mute
= !spec
->mic_enabled
;
343 if (ucontrol
->value
.integer
.value
[0] ||
344 ucontrol
->value
.integer
.value
[1])
345 spec
->mic_enabled
|= mask
;
347 spec
->mic_enabled
&= ~mask
;
348 cur_mute
= !spec
->mic_enabled
;
349 if (cur_mute
!= prev_mute
) {
351 spec
->gpio_data
|= spec
->mic_mute_led_gpio
;
353 spec
->gpio_data
&= ~spec
->mic_mute_led_gpio
;
354 stac_gpio_set(codec
, spec
->gpio_mask
,
355 spec
->gpio_dir
, spec
->gpio_data
);
359 static int stac_vrefout_set(struct hda_codec
*codec
,
360 hda_nid_t nid
, unsigned int new_vref
)
364 snd_printdd("%s, nid %x ctl %x\n", __func__
, nid
, new_vref
);
365 pinctl
= snd_hda_codec_read(codec
, nid
, 0,
366 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
372 pinctl
&= ~AC_PINCTL_VREFEN
;
373 pinctl
|= (new_vref
& AC_PINCTL_VREFEN
);
375 error
= snd_hda_set_pin_ctl_cache(codec
, nid
, pinctl
);
382 /* update mute-LED accoring to the master switch */
383 static void stac_update_led_status(struct hda_codec
*codec
, int enabled
)
385 struct sigmatel_spec
*spec
= codec
->spec
;
386 int muted
= !enabled
;
391 /* LED state is inverted on these systems */
392 if (spec
->gpio_led_polarity
)
395 if (!spec
->vref_mute_led_nid
) {
397 spec
->gpio_data
|= spec
->gpio_led
;
399 spec
->gpio_data
&= ~spec
->gpio_led
;
400 stac_gpio_set(codec
, spec
->gpio_mask
,
401 spec
->gpio_dir
, spec
->gpio_data
);
403 spec
->vref_led
= muted
? AC_PINCTL_VREF_50
: AC_PINCTL_VREF_GRD
;
404 stac_vrefout_set(codec
, spec
->vref_mute_led_nid
,
409 /* vmaster hook to update mute LED */
410 static void stac_vmaster_hook(void *private_data
, int val
)
412 stac_update_led_status(private_data
, val
);
415 /* automute hook to handle GPIO mute and EAPD updates */
416 static void stac_update_outputs(struct hda_codec
*codec
)
418 struct sigmatel_spec
*spec
= codec
->spec
;
421 spec
->gen
.master_mute
=
422 !(snd_hda_codec_read(codec
, codec
->afg
, 0,
423 AC_VERB_GET_GPIO_DATA
, 0) & spec
->gpio_mute
);
425 snd_hda_gen_update_outputs(codec
);
427 if (spec
->eapd_mask
&& spec
->eapd_switch
) {
428 unsigned int val
= spec
->gpio_data
;
429 if (spec
->gen
.speaker_muted
)
430 val
&= ~spec
->eapd_mask
;
432 val
|= spec
->eapd_mask
;
433 if (spec
->gpio_data
!= val
) {
434 spec
->gpio_data
= val
;
435 stac_gpio_set(codec
, spec
->gpio_mask
, spec
->gpio_dir
,
441 static void stac_toggle_power_map(struct hda_codec
*codec
, hda_nid_t nid
,
442 bool enable
, bool do_write
)
444 struct sigmatel_spec
*spec
= codec
->spec
;
445 unsigned int idx
, val
;
447 for (idx
= 0; idx
< spec
->num_pwrs
; idx
++) {
448 if (spec
->pwr_nids
[idx
] == nid
)
451 if (idx
>= spec
->num_pwrs
)
456 val
= spec
->power_map_bits
;
462 /* power down unused output ports */
463 if (val
!= spec
->power_map_bits
) {
464 spec
->power_map_bits
= val
;
466 snd_hda_codec_write(codec
, codec
->afg
, 0,
467 AC_VERB_IDT_SET_POWER_MAP
, val
);
471 /* update power bit per jack plug/unplug */
472 static void jack_update_power(struct hda_codec
*codec
,
473 struct hda_jack_tbl
*jack
)
475 struct sigmatel_spec
*spec
= codec
->spec
;
481 if (jack
&& jack
->nid
) {
482 stac_toggle_power_map(codec
, jack
->nid
,
483 snd_hda_jack_detect(codec
, jack
->nid
),
488 /* update all jacks */
489 for (i
= 0; i
< spec
->num_pwrs
; i
++) {
490 hda_nid_t nid
= spec
->pwr_nids
[i
];
491 jack
= snd_hda_jack_tbl_get(codec
, nid
);
492 if (!jack
|| !jack
->action
)
494 if (jack
->action
== STAC_PWR_EVENT
||
495 jack
->action
<= HDA_GEN_LAST_EVENT
)
496 stac_toggle_power_map(codec
, nid
,
497 snd_hda_jack_detect(codec
, nid
),
501 snd_hda_codec_write(codec
, codec
->afg
, 0, AC_VERB_IDT_SET_POWER_MAP
,
502 spec
->power_map_bits
);
505 static void stac_hp_automute(struct hda_codec
*codec
,
506 struct hda_jack_tbl
*jack
)
508 snd_hda_gen_hp_automute(codec
, jack
);
509 jack_update_power(codec
, jack
);
512 static void stac_line_automute(struct hda_codec
*codec
,
513 struct hda_jack_tbl
*jack
)
515 snd_hda_gen_line_automute(codec
, jack
);
516 jack_update_power(codec
, jack
);
519 static void stac_mic_autoswitch(struct hda_codec
*codec
,
520 struct hda_jack_tbl
*jack
)
522 snd_hda_gen_mic_autoswitch(codec
, jack
);
523 jack_update_power(codec
, jack
);
526 static void stac_vref_event(struct hda_codec
*codec
, struct hda_jack_tbl
*event
)
530 data
= snd_hda_codec_read(codec
, codec
->afg
, 0,
531 AC_VERB_GET_GPIO_DATA
, 0);
532 /* toggle VREF state based on GPIOx status */
533 snd_hda_codec_write(codec
, codec
->afg
, 0, 0x7e0,
534 !!(data
& (1 << event
->private_data
)));
537 /* initialize the power map and enable the power event to jacks that
538 * haven't been assigned to automute
540 static void stac_init_power_map(struct hda_codec
*codec
)
542 struct sigmatel_spec
*spec
= codec
->spec
;
545 for (i
= 0; i
< spec
->num_pwrs
; i
++) {
546 hda_nid_t nid
= spec
->pwr_nids
[i
];
547 unsigned int def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
548 def_conf
= get_defcfg_connect(def_conf
);
549 if (snd_hda_jack_tbl_get(codec
, nid
))
551 if (def_conf
== AC_JACK_PORT_COMPLEX
&&
552 spec
->vref_mute_led_nid
!= nid
&&
553 is_jack_detectable(codec
, nid
)) {
554 snd_hda_jack_detect_enable_callback(codec
, nid
,
558 if (def_conf
== AC_JACK_PORT_NONE
)
559 stac_toggle_power_map(codec
, nid
, false, false);
561 stac_toggle_power_map(codec
, nid
, true, false);
569 static inline bool get_int_hint(struct hda_codec
*codec
, const char *key
,
572 return !snd_hda_get_int_hint(codec
, key
, valp
);
575 /* override some hints from the hwdep entry */
576 static void stac_store_hints(struct hda_codec
*codec
)
578 struct sigmatel_spec
*spec
= codec
->spec
;
581 if (get_int_hint(codec
, "gpio_mask", &spec
->gpio_mask
)) {
582 spec
->eapd_mask
= spec
->gpio_dir
= spec
->gpio_data
=
585 if (get_int_hint(codec
, "gpio_dir", &spec
->gpio_dir
))
586 spec
->gpio_dir
&= spec
->gpio_mask
;
587 if (get_int_hint(codec
, "gpio_data", &spec
->gpio_data
))
588 spec
->gpio_data
&= spec
->gpio_mask
;
589 if (get_int_hint(codec
, "eapd_mask", &spec
->eapd_mask
))
590 spec
->eapd_mask
&= spec
->gpio_mask
;
591 if (get_int_hint(codec
, "gpio_mute", &spec
->gpio_mute
))
592 spec
->gpio_mute
&= spec
->gpio_mask
;
593 val
= snd_hda_get_bool_hint(codec
, "eapd_switch");
595 spec
->eapd_switch
= val
;
602 #define stac_aloopback_info snd_ctl_boolean_mono_info
604 static int stac_aloopback_get(struct snd_kcontrol
*kcontrol
,
605 struct snd_ctl_elem_value
*ucontrol
)
607 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
608 unsigned int idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
609 struct sigmatel_spec
*spec
= codec
->spec
;
611 ucontrol
->value
.integer
.value
[0] = !!(spec
->aloopback
&
612 (spec
->aloopback_mask
<< idx
));
616 static int stac_aloopback_put(struct snd_kcontrol
*kcontrol
,
617 struct snd_ctl_elem_value
*ucontrol
)
619 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
620 struct sigmatel_spec
*spec
= codec
->spec
;
621 unsigned int idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
622 unsigned int dac_mode
;
623 unsigned int val
, idx_val
;
625 idx_val
= spec
->aloopback_mask
<< idx
;
626 if (ucontrol
->value
.integer
.value
[0])
627 val
= spec
->aloopback
| idx_val
;
629 val
= spec
->aloopback
& ~idx_val
;
630 if (spec
->aloopback
== val
)
633 spec
->aloopback
= val
;
635 /* Only return the bits defined by the shift value of the
636 * first two bytes of the mask
638 dac_mode
= snd_hda_codec_read(codec
, codec
->afg
, 0,
639 kcontrol
->private_value
& 0xFFFF, 0x0);
640 dac_mode
>>= spec
->aloopback_shift
;
642 if (spec
->aloopback
& idx_val
) {
643 snd_hda_power_up(codec
);
646 snd_hda_power_down(codec
);
647 dac_mode
&= ~idx_val
;
650 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
651 kcontrol
->private_value
>> 16, dac_mode
);
656 #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
658 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
659 .name = "Analog Loopback", \
661 .info = stac_aloopback_info, \
662 .get = stac_aloopback_get, \
663 .put = stac_aloopback_put, \
664 .private_value = verb_read | (verb_write << 16), \
668 * Mute LED handling on HP laptops
671 /* check whether it's a HP laptop with a docking port */
672 static bool hp_bnb2011_with_dock(struct hda_codec
*codec
)
674 if (codec
->vendor_id
!= 0x111d7605 &&
675 codec
->vendor_id
!= 0x111d76d1)
678 switch (codec
->subsystem_id
) {
712 static bool hp_blike_system(u32 subsystem_id
)
714 switch (subsystem_id
) {
741 static void set_hp_led_gpio(struct hda_codec
*codec
)
743 struct sigmatel_spec
*spec
= codec
->spec
;
749 gpio
= snd_hda_param_read(codec
, codec
->afg
, AC_PAR_GPIO_CAP
);
750 gpio
&= AC_GPIO_IO_COUNT
;
752 spec
->gpio_led
= 0x08; /* GPIO 3 */
754 spec
->gpio_led
= 0x01; /* GPIO 0 */
758 * This method searches for the mute LED GPIO configuration
759 * provided as OEM string in SMBIOS. The format of that string
760 * is HP_Mute_LED_P_G or HP_Mute_LED_P
761 * where P can be 0 or 1 and defines mute LED GPIO control state (low/high)
762 * that corresponds to the NOT muted state of the master volume
763 * and G is the index of the GPIO to use as the mute LED control (0..9)
764 * If _G portion is missing it is assigned based on the codec ID
766 * So, HP B-series like systems may have HP_Mute_LED_0 (current models)
767 * or HP_Mute_LED_0_3 (future models) OEM SMBIOS strings
770 * The dv-series laptops don't seem to have the HP_Mute_LED* strings in
771 * SMBIOS - at least the ones I have seen do not have them - which include
772 * my own system (HP Pavilion dv6-1110ax) and my cousin's
773 * HP Pavilion dv9500t CTO.
774 * Need more information on whether it is true across the entire series.
777 static int find_mute_led_cfg(struct hda_codec
*codec
, int default_polarity
)
779 struct sigmatel_spec
*spec
= codec
->spec
;
780 const struct dmi_device
*dev
= NULL
;
782 if (get_int_hint(codec
, "gpio_led", &spec
->gpio_led
)) {
783 get_int_hint(codec
, "gpio_led_polarity",
784 &spec
->gpio_led_polarity
);
788 while ((dev
= dmi_find_device(DMI_DEV_TYPE_OEM_STRING
, NULL
, dev
))) {
789 if (sscanf(dev
->name
, "HP_Mute_LED_%d_%x",
790 &spec
->gpio_led_polarity
,
791 &spec
->gpio_led
) == 2) {
792 unsigned int max_gpio
;
793 max_gpio
= snd_hda_param_read(codec
, codec
->afg
,
795 max_gpio
&= AC_GPIO_IO_COUNT
;
796 if (spec
->gpio_led
< max_gpio
)
797 spec
->gpio_led
= 1 << spec
->gpio_led
;
799 spec
->vref_mute_led_nid
= spec
->gpio_led
;
802 if (sscanf(dev
->name
, "HP_Mute_LED_%d",
803 &spec
->gpio_led_polarity
) == 1) {
804 set_hp_led_gpio(codec
);
807 /* BIOS bug: unfilled OEM string */
808 if (strstr(dev
->name
, "HP_Mute_LED_P_G")) {
809 set_hp_led_gpio(codec
);
810 if (default_polarity
>= 0)
811 spec
->gpio_led_polarity
= default_polarity
;
813 spec
->gpio_led_polarity
= 1;
819 * Fallback case - if we don't find the DMI strings,
820 * we statically set the GPIO - if not a B-series system
821 * and default polarity is provided
823 if (!hp_blike_system(codec
->subsystem_id
) &&
824 (default_polarity
== 0 || default_polarity
== 1)) {
825 set_hp_led_gpio(codec
);
826 spec
->gpio_led_polarity
= default_polarity
;
832 /* check whether a built-in speaker is included in parsed pins */
833 static bool has_builtin_speaker(struct hda_codec
*codec
)
835 struct sigmatel_spec
*spec
= codec
->spec
;
839 if (spec
->gen
.autocfg
.line_out_type
== AUTO_PIN_SPEAKER_OUT
) {
840 nid_pin
= spec
->gen
.autocfg
.line_out_pins
;
841 nids
= spec
->gen
.autocfg
.line_outs
;
843 nid_pin
= spec
->gen
.autocfg
.speaker_pins
;
844 nids
= spec
->gen
.autocfg
.speaker_outs
;
847 for (i
= 0; i
< nids
; i
++) {
848 unsigned int def_conf
= snd_hda_codec_get_pincfg(codec
, nid_pin
[i
]);
849 if (snd_hda_get_input_pin_attr(def_conf
) == INPUT_PIN_ATTR_INT
)
859 /* create PC beep volume controls */
860 static int stac_auto_create_beep_ctls(struct hda_codec
*codec
,
863 struct sigmatel_spec
*spec
= codec
->spec
;
864 u32 caps
= query_amp_caps(codec
, nid
, HDA_OUTPUT
);
865 struct snd_kcontrol_new
*knew
;
866 static struct snd_kcontrol_new abeep_mute_ctl
=
867 HDA_CODEC_MUTE(NULL
, 0, 0, 0);
868 static struct snd_kcontrol_new dbeep_mute_ctl
=
869 HDA_CODEC_MUTE_BEEP(NULL
, 0, 0, 0);
870 static struct snd_kcontrol_new beep_vol_ctl
=
871 HDA_CODEC_VOLUME(NULL
, 0, 0, 0);
873 /* check for mute support for the the amp */
874 if ((caps
& AC_AMPCAP_MUTE
) >> AC_AMPCAP_MUTE_SHIFT
) {
875 const struct snd_kcontrol_new
*temp
;
876 if (spec
->anabeep_nid
== nid
)
877 temp
= &abeep_mute_ctl
;
879 temp
= &dbeep_mute_ctl
;
880 knew
= snd_hda_gen_add_kctl(&spec
->gen
,
881 "Beep Playback Switch", temp
);
884 knew
->private_value
=
885 HDA_COMPOSE_AMP_VAL(nid
, 1, 0, HDA_OUTPUT
);
888 /* check to see if there is volume support for the amp */
889 if ((caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
) {
890 knew
= snd_hda_gen_add_kctl(&spec
->gen
,
891 "Beep Playback Volume",
895 knew
->private_value
=
896 HDA_COMPOSE_AMP_VAL(nid
, 1, 0, HDA_OUTPUT
);
901 #ifdef CONFIG_SND_HDA_INPUT_BEEP
902 #define stac_dig_beep_switch_info snd_ctl_boolean_mono_info
904 static int stac_dig_beep_switch_get(struct snd_kcontrol
*kcontrol
,
905 struct snd_ctl_elem_value
*ucontrol
)
907 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
908 ucontrol
->value
.integer
.value
[0] = codec
->beep
->enabled
;
912 static int stac_dig_beep_switch_put(struct snd_kcontrol
*kcontrol
,
913 struct snd_ctl_elem_value
*ucontrol
)
915 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
916 return snd_hda_enable_beep_device(codec
, ucontrol
->value
.integer
.value
[0]);
919 static const struct snd_kcontrol_new stac_dig_beep_ctrl
= {
920 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
921 .name
= "Beep Playback Switch",
922 .info
= stac_dig_beep_switch_info
,
923 .get
= stac_dig_beep_switch_get
,
924 .put
= stac_dig_beep_switch_put
,
927 static int stac_beep_switch_ctl(struct hda_codec
*codec
)
929 struct sigmatel_spec
*spec
= codec
->spec
;
931 if (!snd_hda_gen_add_kctl(&spec
->gen
, NULL
, &stac_dig_beep_ctrl
))
938 * SPDIF-out mux controls
941 static int stac_smux_enum_info(struct snd_kcontrol
*kcontrol
,
942 struct snd_ctl_elem_info
*uinfo
)
944 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
945 struct sigmatel_spec
*spec
= codec
->spec
;
946 return snd_hda_input_mux_info(&spec
->spdif_mux
, uinfo
);
949 static int stac_smux_enum_get(struct snd_kcontrol
*kcontrol
,
950 struct snd_ctl_elem_value
*ucontrol
)
952 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
953 struct sigmatel_spec
*spec
= codec
->spec
;
954 unsigned int smux_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
956 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_smux
[smux_idx
];
960 static int stac_smux_enum_put(struct snd_kcontrol
*kcontrol
,
961 struct snd_ctl_elem_value
*ucontrol
)
963 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
964 struct sigmatel_spec
*spec
= codec
->spec
;
965 unsigned int smux_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
967 return snd_hda_input_mux_put(codec
, &spec
->spdif_mux
, ucontrol
,
968 spec
->gen
.autocfg
.dig_out_pins
[smux_idx
],
969 &spec
->cur_smux
[smux_idx
]);
972 static struct snd_kcontrol_new stac_smux_mixer
= {
973 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
974 .name
= "IEC958 Playback Source",
975 /* count set later */
976 .info
= stac_smux_enum_info
,
977 .get
= stac_smux_enum_get
,
978 .put
= stac_smux_enum_put
,
981 static const char * const stac_spdif_labels
[] = {
982 "Digital Playback", "Analog Mux 1", "Analog Mux 2", NULL
985 static int stac_create_spdif_mux_ctls(struct hda_codec
*codec
)
987 struct sigmatel_spec
*spec
= codec
->spec
;
988 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
989 const char * const *labels
= spec
->spdif_labels
;
990 struct snd_kcontrol_new
*kctl
;
993 if (cfg
->dig_outs
< 1)
996 num_cons
= snd_hda_get_num_conns(codec
, cfg
->dig_out_pins
[0]);
1001 labels
= stac_spdif_labels
;
1002 for (i
= 0; i
< num_cons
; i
++) {
1003 if (snd_BUG_ON(!labels
[i
]))
1005 snd_hda_add_imux_item(&spec
->spdif_mux
, labels
[i
], i
, NULL
);
1008 kctl
= snd_hda_gen_add_kctl(&spec
->gen
, NULL
, &stac_smux_mixer
);
1011 kctl
->count
= cfg
->dig_outs
;
1019 static const struct hda_verb stac9200_core_init
[] = {
1020 /* set dac0mux for dac converter */
1021 { 0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
1025 static const struct hda_verb stac9200_eapd_init
[] = {
1026 /* set dac0mux for dac converter */
1027 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
1028 {0x08, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
1032 static const struct hda_verb dell_eq_core_init
[] = {
1033 /* set master volume to max value without distortion
1034 * and direct control */
1035 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xec},
1039 static const struct hda_verb stac92hd73xx_core_init
[] = {
1040 /* set master volume and direct control */
1041 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
1045 static const struct hda_verb stac92hd83xxx_core_init
[] = {
1046 /* power state controls amps */
1047 { 0x01, AC_VERB_SET_EAPD
, 1 << 2},
1051 static const struct hda_verb stac92hd83xxx_hp_zephyr_init
[] = {
1052 { 0x22, 0x785, 0x43 },
1053 { 0x22, 0x782, 0xe0 },
1054 { 0x22, 0x795, 0x00 },
1058 static const struct hda_verb stac92hd71bxx_core_init
[] = {
1059 /* set master volume and direct control */
1060 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
1064 static const struct hda_verb stac92hd71bxx_unmute_core_init
[] = {
1065 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
1066 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1067 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1068 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1072 static const struct hda_verb stac925x_core_init
[] = {
1073 /* set dac0mux for dac converter */
1074 { 0x06, AC_VERB_SET_CONNECT_SEL
, 0x00},
1075 /* mute the master volume */
1076 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1080 static const struct hda_verb stac922x_core_init
[] = {
1081 /* set master volume and direct control */
1082 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
1086 static const struct hda_verb d965_core_init
[] = {
1087 /* unmute node 0x1b */
1088 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
1089 /* select node 0x03 as DAC */
1090 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x01},
1094 static const struct hda_verb dell_3st_core_init
[] = {
1095 /* don't set delta bit */
1096 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0x7f},
1097 /* unmute node 0x1b */
1098 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
1099 /* select node 0x03 as DAC */
1100 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0x01},
1104 static const struct hda_verb stac927x_core_init
[] = {
1105 /* set master volume and direct control */
1106 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
1107 /* enable analog pc beep path */
1108 { 0x01, AC_VERB_SET_DIGI_CONVERT_2
, 1 << 5},
1112 static const struct hda_verb stac927x_volknob_core_init
[] = {
1113 /* don't set delta bit */
1114 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0x7f},
1115 /* enable analog pc beep path */
1116 {0x01, AC_VERB_SET_DIGI_CONVERT_2
, 1 << 5},
1120 static const struct hda_verb stac9205_core_init
[] = {
1121 /* set master volume and direct control */
1122 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
1123 /* enable analog pc beep path */
1124 { 0x01, AC_VERB_SET_DIGI_CONVERT_2
, 1 << 5},
1128 static const struct snd_kcontrol_new stac92hd73xx_6ch_loopback
=
1129 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3);
1131 static const struct snd_kcontrol_new stac92hd73xx_8ch_loopback
=
1132 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4);
1134 static const struct snd_kcontrol_new stac92hd73xx_10ch_loopback
=
1135 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5);
1137 static const struct snd_kcontrol_new stac92hd71bxx_loopback
=
1138 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2);
1140 static const struct snd_kcontrol_new stac9205_loopback
=
1141 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1);
1143 static const struct snd_kcontrol_new stac927x_loopback
=
1144 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1);
1146 static const struct hda_pintbl ref9200_pin_configs
[] = {
1147 { 0x08, 0x01c47010 },
1148 { 0x09, 0x01447010 },
1149 { 0x0d, 0x0221401f },
1150 { 0x0e, 0x01114010 },
1151 { 0x0f, 0x02a19020 },
1152 { 0x10, 0x01a19021 },
1153 { 0x11, 0x90100140 },
1154 { 0x12, 0x01813122 },
1158 static const struct hda_pintbl gateway9200_m4_pin_configs
[] = {
1159 { 0x08, 0x400000fe },
1160 { 0x09, 0x404500f4 },
1161 { 0x0d, 0x400100f0 },
1162 { 0x0e, 0x90110010 },
1163 { 0x0f, 0x400100f1 },
1164 { 0x10, 0x02a1902e },
1165 { 0x11, 0x500000f2 },
1166 { 0x12, 0x500000f3 },
1170 static const struct hda_pintbl gateway9200_m4_2_pin_configs
[] = {
1171 { 0x08, 0x400000fe },
1172 { 0x09, 0x404500f4 },
1173 { 0x0d, 0x400100f0 },
1174 { 0x0e, 0x90110010 },
1175 { 0x0f, 0x400100f1 },
1176 { 0x10, 0x02a1902e },
1177 { 0x11, 0x500000f2 },
1178 { 0x12, 0x500000f3 },
1183 STAC 9200 pin configs for
1188 static const struct hda_pintbl dell9200_d21_pin_configs
[] = {
1189 { 0x08, 0x400001f0 },
1190 { 0x09, 0x400001f1 },
1191 { 0x0d, 0x02214030 },
1192 { 0x0e, 0x01014010 },
1193 { 0x0f, 0x02a19020 },
1194 { 0x10, 0x01a19021 },
1195 { 0x11, 0x90100140 },
1196 { 0x12, 0x01813122 },
1201 STAC 9200 pin configs for
1205 static const struct hda_pintbl dell9200_d22_pin_configs
[] = {
1206 { 0x08, 0x400001f0 },
1207 { 0x09, 0x400001f1 },
1208 { 0x0d, 0x0221401f },
1209 { 0x0e, 0x01014010 },
1210 { 0x0f, 0x01813020 },
1211 { 0x10, 0x02a19021 },
1212 { 0x11, 0x90100140 },
1213 { 0x12, 0x400001f2 },
1218 STAC 9200 pin configs for
1219 102801C4 (Dell Dimension E310)
1226 static const struct hda_pintbl dell9200_d23_pin_configs
[] = {
1227 { 0x08, 0x400001f0 },
1228 { 0x09, 0x400001f1 },
1229 { 0x0d, 0x0221401f },
1230 { 0x0e, 0x01014010 },
1231 { 0x0f, 0x01813020 },
1232 { 0x10, 0x01a19021 },
1233 { 0x11, 0x90100140 },
1234 { 0x12, 0x400001f2 },
1240 STAC 9200-32 pin configs for
1241 102801B5 (Dell Inspiron 630m)
1242 102801D8 (Dell Inspiron 640m)
1244 static const struct hda_pintbl dell9200_m21_pin_configs
[] = {
1245 { 0x08, 0x40c003fa },
1246 { 0x09, 0x03441340 },
1247 { 0x0d, 0x0321121f },
1248 { 0x0e, 0x90170310 },
1249 { 0x0f, 0x408003fb },
1250 { 0x10, 0x03a11020 },
1251 { 0x11, 0x401003fc },
1252 { 0x12, 0x403003fd },
1257 STAC 9200-32 pin configs for
1258 102801C2 (Dell Latitude D620)
1260 102801CC (Dell Latitude D820)
1264 static const struct hda_pintbl dell9200_m22_pin_configs
[] = {
1265 { 0x08, 0x40c003fa },
1266 { 0x09, 0x0144131f },
1267 { 0x0d, 0x0321121f },
1268 { 0x0e, 0x90170310 },
1269 { 0x0f, 0x90a70321 },
1270 { 0x10, 0x03a11020 },
1271 { 0x11, 0x401003fb },
1272 { 0x12, 0x40f000fc },
1277 STAC 9200-32 pin configs for
1278 102801CE (Dell XPS M1710)
1279 102801CF (Dell Precision M90)
1281 static const struct hda_pintbl dell9200_m23_pin_configs
[] = {
1282 { 0x08, 0x40c003fa },
1283 { 0x09, 0x01441340 },
1284 { 0x0d, 0x0421421f },
1285 { 0x0e, 0x90170310 },
1286 { 0x0f, 0x408003fb },
1287 { 0x10, 0x04a1102e },
1288 { 0x11, 0x90170311 },
1289 { 0x12, 0x403003fc },
1294 STAC 9200-32 pin configs for
1297 102801CB (Dell Latitude 120L)
1300 static const struct hda_pintbl dell9200_m24_pin_configs
[] = {
1301 { 0x08, 0x40c003fa },
1302 { 0x09, 0x404003fb },
1303 { 0x0d, 0x0321121f },
1304 { 0x0e, 0x90170310 },
1305 { 0x0f, 0x408003fc },
1306 { 0x10, 0x03a11020 },
1307 { 0x11, 0x401003fd },
1308 { 0x12, 0x403003fe },
1313 STAC 9200-32 pin configs for
1314 102801BD (Dell Inspiron E1505n)
1318 static const struct hda_pintbl dell9200_m25_pin_configs
[] = {
1319 { 0x08, 0x40c003fa },
1320 { 0x09, 0x01441340 },
1321 { 0x0d, 0x0421121f },
1322 { 0x0e, 0x90170310 },
1323 { 0x0f, 0x408003fb },
1324 { 0x10, 0x04a11020 },
1325 { 0x11, 0x401003fc },
1326 { 0x12, 0x403003fd },
1331 STAC 9200-32 pin configs for
1332 102801F5 (Dell Inspiron 1501)
1335 static const struct hda_pintbl dell9200_m26_pin_configs
[] = {
1336 { 0x08, 0x40c003fa },
1337 { 0x09, 0x404003fb },
1338 { 0x0d, 0x0421121f },
1339 { 0x0e, 0x90170310 },
1340 { 0x0f, 0x408003fc },
1341 { 0x10, 0x04a11020 },
1342 { 0x11, 0x401003fd },
1343 { 0x12, 0x403003fe },
1349 102801CD (Dell Inspiron E1705/9400)
1351 static const struct hda_pintbl dell9200_m27_pin_configs
[] = {
1352 { 0x08, 0x40c003fa },
1353 { 0x09, 0x01441340 },
1354 { 0x0d, 0x0421121f },
1355 { 0x0e, 0x90170310 },
1356 { 0x0f, 0x90170310 },
1357 { 0x10, 0x04a11020 },
1358 { 0x11, 0x90170310 },
1359 { 0x12, 0x40f003fc },
1363 static const struct hda_pintbl oqo9200_pin_configs
[] = {
1364 { 0x08, 0x40c000f0 },
1365 { 0x09, 0x404000f1 },
1366 { 0x0d, 0x0221121f },
1367 { 0x0e, 0x02211210 },
1368 { 0x0f, 0x90170111 },
1369 { 0x10, 0x90a70120 },
1370 { 0x11, 0x400000f2 },
1371 { 0x12, 0x400000f3 },
1376 static void stac9200_fixup_panasonic(struct hda_codec
*codec
,
1377 const struct hda_fixup
*fix
, int action
)
1379 struct sigmatel_spec
*spec
= codec
->spec
;
1381 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
1382 spec
->gpio_mask
= spec
->gpio_dir
= 0x09;
1383 spec
->gpio_data
= 0x00;
1384 /* CF-74 has no headphone detection, and the driver should *NOT*
1385 * do detection and HP/speaker toggle because the hardware does it.
1387 spec
->gen
.suppress_auto_mute
= 1;
1392 static const struct hda_fixup stac9200_fixups
[] = {
1394 .type
= HDA_FIXUP_PINS
,
1395 .v
.pins
= ref9200_pin_configs
,
1398 .type
= HDA_FIXUP_PINS
,
1399 .v
.pins
= oqo9200_pin_configs
,
1401 .chain_id
= STAC_9200_EAPD_INIT
,
1403 [STAC_9200_DELL_D21
] = {
1404 .type
= HDA_FIXUP_PINS
,
1405 .v
.pins
= dell9200_d21_pin_configs
,
1407 [STAC_9200_DELL_D22
] = {
1408 .type
= HDA_FIXUP_PINS
,
1409 .v
.pins
= dell9200_d22_pin_configs
,
1411 [STAC_9200_DELL_D23
] = {
1412 .type
= HDA_FIXUP_PINS
,
1413 .v
.pins
= dell9200_d23_pin_configs
,
1415 [STAC_9200_DELL_M21
] = {
1416 .type
= HDA_FIXUP_PINS
,
1417 .v
.pins
= dell9200_m21_pin_configs
,
1419 [STAC_9200_DELL_M22
] = {
1420 .type
= HDA_FIXUP_PINS
,
1421 .v
.pins
= dell9200_m22_pin_configs
,
1423 [STAC_9200_DELL_M23
] = {
1424 .type
= HDA_FIXUP_PINS
,
1425 .v
.pins
= dell9200_m23_pin_configs
,
1427 [STAC_9200_DELL_M24
] = {
1428 .type
= HDA_FIXUP_PINS
,
1429 .v
.pins
= dell9200_m24_pin_configs
,
1431 [STAC_9200_DELL_M25
] = {
1432 .type
= HDA_FIXUP_PINS
,
1433 .v
.pins
= dell9200_m25_pin_configs
,
1435 [STAC_9200_DELL_M26
] = {
1436 .type
= HDA_FIXUP_PINS
,
1437 .v
.pins
= dell9200_m26_pin_configs
,
1439 [STAC_9200_DELL_M27
] = {
1440 .type
= HDA_FIXUP_PINS
,
1441 .v
.pins
= dell9200_m27_pin_configs
,
1444 .type
= HDA_FIXUP_PINS
,
1445 .v
.pins
= gateway9200_m4_pin_configs
,
1447 .chain_id
= STAC_9200_EAPD_INIT
,
1449 [STAC_9200_M4_2
] = {
1450 .type
= HDA_FIXUP_PINS
,
1451 .v
.pins
= gateway9200_m4_2_pin_configs
,
1453 .chain_id
= STAC_9200_EAPD_INIT
,
1455 [STAC_9200_PANASONIC
] = {
1456 .type
= HDA_FIXUP_FUNC
,
1457 .v
.func
= stac9200_fixup_panasonic
,
1459 [STAC_9200_EAPD_INIT
] = {
1460 .type
= HDA_FIXUP_VERBS
,
1461 .v
.verbs
= (const struct hda_verb
[]) {
1462 {0x08, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
1468 static const struct hda_model_fixup stac9200_models
[] = {
1469 { .id
= STAC_REF
, .name
= "ref" },
1470 { .id
= STAC_9200_OQO
, .name
= "oqo" },
1471 { .id
= STAC_9200_DELL_D21
, .name
= "dell-d21" },
1472 { .id
= STAC_9200_DELL_D22
, .name
= "dell-d22" },
1473 { .id
= STAC_9200_DELL_D23
, .name
= "dell-d23" },
1474 { .id
= STAC_9200_DELL_M21
, .name
= "dell-m21" },
1475 { .id
= STAC_9200_DELL_M22
, .name
= "dell-m22" },
1476 { .id
= STAC_9200_DELL_M23
, .name
= "dell-m23" },
1477 { .id
= STAC_9200_DELL_M24
, .name
= "dell-m24" },
1478 { .id
= STAC_9200_DELL_M25
, .name
= "dell-m25" },
1479 { .id
= STAC_9200_DELL_M26
, .name
= "dell-m26" },
1480 { .id
= STAC_9200_DELL_M27
, .name
= "dell-m27" },
1481 { .id
= STAC_9200_M4
, .name
= "gateway-m4" },
1482 { .id
= STAC_9200_M4_2
, .name
= "gateway-m4-2" },
1483 { .id
= STAC_9200_PANASONIC
, .name
= "panasonic" },
1487 static const struct snd_pci_quirk stac9200_fixup_tbl
[] = {
1488 /* SigmaTel reference board */
1489 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1490 "DFI LanParty", STAC_REF
),
1491 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1492 "DFI LanParty", STAC_REF
),
1493 /* Dell laptops have BIOS problem */
1494 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01a8,
1495 "unknown Dell", STAC_9200_DELL_D21
),
1496 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01b5,
1497 "Dell Inspiron 630m", STAC_9200_DELL_M21
),
1498 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01bd,
1499 "Dell Inspiron E1505n", STAC_9200_DELL_M25
),
1500 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c0,
1501 "unknown Dell", STAC_9200_DELL_D22
),
1502 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c1,
1503 "unknown Dell", STAC_9200_DELL_D22
),
1504 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c2,
1505 "Dell Latitude D620", STAC_9200_DELL_M22
),
1506 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c5,
1507 "unknown Dell", STAC_9200_DELL_D23
),
1508 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c7,
1509 "unknown Dell", STAC_9200_DELL_D23
),
1510 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c8,
1511 "unknown Dell", STAC_9200_DELL_M22
),
1512 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c9,
1513 "unknown Dell", STAC_9200_DELL_M24
),
1514 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ca,
1515 "unknown Dell", STAC_9200_DELL_M24
),
1516 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cb,
1517 "Dell Latitude 120L", STAC_9200_DELL_M24
),
1518 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cc,
1519 "Dell Latitude D820", STAC_9200_DELL_M22
),
1520 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cd,
1521 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27
),
1522 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ce,
1523 "Dell XPS M1710", STAC_9200_DELL_M23
),
1524 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cf,
1525 "Dell Precision M90", STAC_9200_DELL_M23
),
1526 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d3,
1527 "unknown Dell", STAC_9200_DELL_M22
),
1528 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d4,
1529 "unknown Dell", STAC_9200_DELL_M22
),
1530 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d6,
1531 "unknown Dell", STAC_9200_DELL_M22
),
1532 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d8,
1533 "Dell Inspiron 640m", STAC_9200_DELL_M21
),
1534 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d9,
1535 "unknown Dell", STAC_9200_DELL_D23
),
1536 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01da,
1537 "unknown Dell", STAC_9200_DELL_D23
),
1538 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01de,
1539 "unknown Dell", STAC_9200_DELL_D21
),
1540 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01e3,
1541 "unknown Dell", STAC_9200_DELL_D23
),
1542 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01e8,
1543 "unknown Dell", STAC_9200_DELL_D21
),
1544 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ee,
1545 "unknown Dell", STAC_9200_DELL_M25
),
1546 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ef,
1547 "unknown Dell", STAC_9200_DELL_M25
),
1548 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f5,
1549 "Dell Inspiron 1501", STAC_9200_DELL_M26
),
1550 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f6,
1551 "unknown Dell", STAC_9200_DELL_M26
),
1553 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC
),
1554 /* Gateway machines needs EAPD to be set on resume */
1555 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4
),
1556 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2
),
1557 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2
),
1559 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO
),
1563 static const struct hda_pintbl ref925x_pin_configs
[] = {
1564 { 0x07, 0x40c003f0 },
1565 { 0x08, 0x424503f2 },
1566 { 0x0a, 0x01813022 },
1567 { 0x0b, 0x02a19021 },
1568 { 0x0c, 0x90a70320 },
1569 { 0x0d, 0x02214210 },
1570 { 0x10, 0x01019020 },
1571 { 0x11, 0x9033032e },
1575 static const struct hda_pintbl stac925xM1_pin_configs
[] = {
1576 { 0x07, 0x40c003f4 },
1577 { 0x08, 0x424503f2 },
1578 { 0x0a, 0x400000f3 },
1579 { 0x0b, 0x02a19020 },
1580 { 0x0c, 0x40a000f0 },
1581 { 0x0d, 0x90100210 },
1582 { 0x10, 0x400003f1 },
1583 { 0x11, 0x9033032e },
1587 static const struct hda_pintbl stac925xM1_2_pin_configs
[] = {
1588 { 0x07, 0x40c003f4 },
1589 { 0x08, 0x424503f2 },
1590 { 0x0a, 0x400000f3 },
1591 { 0x0b, 0x02a19020 },
1592 { 0x0c, 0x40a000f0 },
1593 { 0x0d, 0x90100210 },
1594 { 0x10, 0x400003f1 },
1595 { 0x11, 0x9033032e },
1599 static const struct hda_pintbl stac925xM2_pin_configs
[] = {
1600 { 0x07, 0x40c003f4 },
1601 { 0x08, 0x424503f2 },
1602 { 0x0a, 0x400000f3 },
1603 { 0x0b, 0x02a19020 },
1604 { 0x0c, 0x40a000f0 },
1605 { 0x0d, 0x90100210 },
1606 { 0x10, 0x400003f1 },
1607 { 0x11, 0x9033032e },
1611 static const struct hda_pintbl stac925xM2_2_pin_configs
[] = {
1612 { 0x07, 0x40c003f4 },
1613 { 0x08, 0x424503f2 },
1614 { 0x0a, 0x400000f3 },
1615 { 0x0b, 0x02a19020 },
1616 { 0x0c, 0x40a000f0 },
1617 { 0x0d, 0x90100210 },
1618 { 0x10, 0x400003f1 },
1619 { 0x11, 0x9033032e },
1623 static const struct hda_pintbl stac925xM3_pin_configs
[] = {
1624 { 0x07, 0x40c003f4 },
1625 { 0x08, 0x424503f2 },
1626 { 0x0a, 0x400000f3 },
1627 { 0x0b, 0x02a19020 },
1628 { 0x0c, 0x40a000f0 },
1629 { 0x0d, 0x90100210 },
1630 { 0x10, 0x400003f1 },
1631 { 0x11, 0x503303f3 },
1635 static const struct hda_pintbl stac925xM5_pin_configs
[] = {
1636 { 0x07, 0x40c003f4 },
1637 { 0x08, 0x424503f2 },
1638 { 0x0a, 0x400000f3 },
1639 { 0x0b, 0x02a19020 },
1640 { 0x0c, 0x40a000f0 },
1641 { 0x0d, 0x90100210 },
1642 { 0x10, 0x400003f1 },
1643 { 0x11, 0x9033032e },
1647 static const struct hda_pintbl stac925xM6_pin_configs
[] = {
1648 { 0x07, 0x40c003f4 },
1649 { 0x08, 0x424503f2 },
1650 { 0x0a, 0x400000f3 },
1651 { 0x0b, 0x02a19020 },
1652 { 0x0c, 0x40a000f0 },
1653 { 0x0d, 0x90100210 },
1654 { 0x10, 0x400003f1 },
1655 { 0x11, 0x90330320 },
1659 static const struct hda_fixup stac925x_fixups
[] = {
1661 .type
= HDA_FIXUP_PINS
,
1662 .v
.pins
= ref925x_pin_configs
,
1665 .type
= HDA_FIXUP_PINS
,
1666 .v
.pins
= stac925xM1_pin_configs
,
1669 .type
= HDA_FIXUP_PINS
,
1670 .v
.pins
= stac925xM1_2_pin_configs
,
1673 .type
= HDA_FIXUP_PINS
,
1674 .v
.pins
= stac925xM2_pin_configs
,
1677 .type
= HDA_FIXUP_PINS
,
1678 .v
.pins
= stac925xM2_2_pin_configs
,
1681 .type
= HDA_FIXUP_PINS
,
1682 .v
.pins
= stac925xM3_pin_configs
,
1685 .type
= HDA_FIXUP_PINS
,
1686 .v
.pins
= stac925xM5_pin_configs
,
1689 .type
= HDA_FIXUP_PINS
,
1690 .v
.pins
= stac925xM6_pin_configs
,
1694 static const struct hda_model_fixup stac925x_models
[] = {
1695 { .id
= STAC_REF
, .name
= "ref" },
1696 { .id
= STAC_M1
, .name
= "m1" },
1697 { .id
= STAC_M1_2
, .name
= "m1-2" },
1698 { .id
= STAC_M2
, .name
= "m2" },
1699 { .id
= STAC_M2_2
, .name
= "m2-2" },
1700 { .id
= STAC_M3
, .name
= "m3" },
1701 { .id
= STAC_M5
, .name
= "m5" },
1702 { .id
= STAC_M6
, .name
= "m6" },
1706 static const struct snd_pci_quirk stac925x_fixup_tbl
[] = {
1707 /* SigmaTel reference board */
1708 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668, "DFI LanParty", STAC_REF
),
1709 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101, "DFI LanParty", STAC_REF
),
1710 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF
),
1712 /* Default table for unknown ID */
1713 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2
),
1715 /* gateway machines are checked via codec ssid */
1716 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2
),
1717 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5
),
1718 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1
),
1719 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2
),
1720 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2
),
1721 /* Not sure about the brand name for those */
1722 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1
),
1723 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3
),
1724 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6
),
1725 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2
),
1729 static const struct hda_pintbl ref92hd73xx_pin_configs
[] = {
1730 { 0x0a, 0x02214030 },
1731 { 0x0b, 0x02a19040 },
1732 { 0x0c, 0x01a19020 },
1733 { 0x0d, 0x02214030 },
1734 { 0x0e, 0x0181302e },
1735 { 0x0f, 0x01014010 },
1736 { 0x10, 0x01014020 },
1737 { 0x11, 0x01014030 },
1738 { 0x12, 0x02319040 },
1739 { 0x13, 0x90a000f0 },
1740 { 0x14, 0x90a000f0 },
1741 { 0x22, 0x01452050 },
1742 { 0x23, 0x01452050 },
1746 static const struct hda_pintbl dell_m6_pin_configs
[] = {
1747 { 0x0a, 0x0321101f },
1748 { 0x0b, 0x4f00000f },
1749 { 0x0c, 0x4f0000f0 },
1750 { 0x0d, 0x90170110 },
1751 { 0x0e, 0x03a11020 },
1752 { 0x0f, 0x0321101f },
1753 { 0x10, 0x4f0000f0 },
1754 { 0x11, 0x4f0000f0 },
1755 { 0x12, 0x4f0000f0 },
1756 { 0x13, 0x90a60160 },
1757 { 0x14, 0x4f0000f0 },
1758 { 0x22, 0x4f0000f0 },
1759 { 0x23, 0x4f0000f0 },
1763 static const struct hda_pintbl alienware_m17x_pin_configs
[] = {
1764 { 0x0a, 0x0321101f },
1765 { 0x0b, 0x0321101f },
1766 { 0x0c, 0x03a11020 },
1767 { 0x0d, 0x03014020 },
1768 { 0x0e, 0x90170110 },
1769 { 0x0f, 0x4f0000f0 },
1770 { 0x10, 0x4f0000f0 },
1771 { 0x11, 0x4f0000f0 },
1772 { 0x12, 0x4f0000f0 },
1773 { 0x13, 0x90a60160 },
1774 { 0x14, 0x4f0000f0 },
1775 { 0x22, 0x4f0000f0 },
1776 { 0x23, 0x904601b0 },
1780 static const struct hda_pintbl intel_dg45id_pin_configs
[] = {
1781 { 0x0a, 0x02214230 },
1782 { 0x0b, 0x02A19240 },
1783 { 0x0c, 0x01013214 },
1784 { 0x0d, 0x01014210 },
1785 { 0x0e, 0x01A19250 },
1786 { 0x0f, 0x01011212 },
1787 { 0x10, 0x01016211 },
1791 static const struct hda_pintbl stac92hd89xx_hp_front_jack_pin_configs
[] = {
1792 { 0x0a, 0x02214030 },
1793 { 0x0b, 0x02A19010 },
1797 static const struct hda_pintbl stac92hd89xx_hp_z1_g2_right_mic_jack_pin_configs
[] = {
1798 { 0x0e, 0x400000f0 },
1802 static void stac92hd73xx_fixup_ref(struct hda_codec
*codec
,
1803 const struct hda_fixup
*fix
, int action
)
1805 struct sigmatel_spec
*spec
= codec
->spec
;
1807 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
1810 snd_hda_apply_pincfgs(codec
, ref92hd73xx_pin_configs
);
1811 spec
->gpio_mask
= spec
->gpio_dir
= spec
->gpio_data
= 0;
1814 static void stac92hd73xx_fixup_dell(struct hda_codec
*codec
)
1816 struct sigmatel_spec
*spec
= codec
->spec
;
1818 snd_hda_apply_pincfgs(codec
, dell_m6_pin_configs
);
1819 spec
->eapd_switch
= 0;
1822 static void stac92hd73xx_fixup_dell_eq(struct hda_codec
*codec
,
1823 const struct hda_fixup
*fix
, int action
)
1825 struct sigmatel_spec
*spec
= codec
->spec
;
1827 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
1830 stac92hd73xx_fixup_dell(codec
);
1831 snd_hda_add_verbs(codec
, dell_eq_core_init
);
1832 spec
->volknob_init
= 1;
1836 static void stac92hd73xx_fixup_dell_m6_amic(struct hda_codec
*codec
,
1837 const struct hda_fixup
*fix
, int action
)
1839 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
1842 stac92hd73xx_fixup_dell(codec
);
1843 snd_hda_codec_set_pincfg(codec
, 0x0b, 0x90A70170);
1847 static void stac92hd73xx_fixup_dell_m6_dmic(struct hda_codec
*codec
,
1848 const struct hda_fixup
*fix
, int action
)
1850 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
1853 stac92hd73xx_fixup_dell(codec
);
1854 snd_hda_codec_set_pincfg(codec
, 0x13, 0x90A60160);
1858 static void stac92hd73xx_fixup_dell_m6_both(struct hda_codec
*codec
,
1859 const struct hda_fixup
*fix
, int action
)
1861 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
1864 stac92hd73xx_fixup_dell(codec
);
1865 snd_hda_codec_set_pincfg(codec
, 0x0b, 0x90A70170);
1866 snd_hda_codec_set_pincfg(codec
, 0x13, 0x90A60160);
1869 static void stac92hd73xx_fixup_alienware_m17x(struct hda_codec
*codec
,
1870 const struct hda_fixup
*fix
, int action
)
1872 struct sigmatel_spec
*spec
= codec
->spec
;
1874 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
1877 snd_hda_apply_pincfgs(codec
, alienware_m17x_pin_configs
);
1878 spec
->eapd_switch
= 0;
1881 static void stac92hd73xx_fixup_no_jd(struct hda_codec
*codec
,
1882 const struct hda_fixup
*fix
, int action
)
1884 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
1885 codec
->no_jack_detect
= 1;
1888 static const struct hda_fixup stac92hd73xx_fixups
[] = {
1889 [STAC_92HD73XX_REF
] = {
1890 .type
= HDA_FIXUP_FUNC
,
1891 .v
.func
= stac92hd73xx_fixup_ref
,
1893 [STAC_DELL_M6_AMIC
] = {
1894 .type
= HDA_FIXUP_FUNC
,
1895 .v
.func
= stac92hd73xx_fixup_dell_m6_amic
,
1897 [STAC_DELL_M6_DMIC
] = {
1898 .type
= HDA_FIXUP_FUNC
,
1899 .v
.func
= stac92hd73xx_fixup_dell_m6_dmic
,
1901 [STAC_DELL_M6_BOTH
] = {
1902 .type
= HDA_FIXUP_FUNC
,
1903 .v
.func
= stac92hd73xx_fixup_dell_m6_both
,
1906 .type
= HDA_FIXUP_FUNC
,
1907 .v
.func
= stac92hd73xx_fixup_dell_eq
,
1909 [STAC_ALIENWARE_M17X
] = {
1910 .type
= HDA_FIXUP_FUNC
,
1911 .v
.func
= stac92hd73xx_fixup_alienware_m17x
,
1913 [STAC_92HD73XX_INTEL
] = {
1914 .type
= HDA_FIXUP_PINS
,
1915 .v
.pins
= intel_dg45id_pin_configs
,
1917 [STAC_92HD73XX_NO_JD
] = {
1918 .type
= HDA_FIXUP_FUNC
,
1919 .v
.func
= stac92hd73xx_fixup_no_jd
,
1921 [STAC_92HD89XX_HP_FRONT_JACK
] = {
1922 .type
= HDA_FIXUP_PINS
,
1923 .v
.pins
= stac92hd89xx_hp_front_jack_pin_configs
,
1925 [STAC_92HD89XX_HP_Z1_G2_RIGHT_MIC_JACK
] = {
1926 .type
= HDA_FIXUP_PINS
,
1927 .v
.pins
= stac92hd89xx_hp_z1_g2_right_mic_jack_pin_configs
,
1929 [STAC_92HD73XX_ASUS_MOBO
] = {
1930 .type
= HDA_FIXUP_PINS
,
1931 .v
.pins
= (const struct hda_pintbl
[]) {
1932 /* enable 5.1 and SPDIF out */
1933 { 0x0c, 0x01014411 },
1934 { 0x0d, 0x01014410 },
1935 { 0x0e, 0x01014412 },
1936 { 0x22, 0x014b1180 },
1942 static const struct hda_model_fixup stac92hd73xx_models
[] = {
1943 { .id
= STAC_92HD73XX_NO_JD
, .name
= "no-jd" },
1944 { .id
= STAC_92HD73XX_REF
, .name
= "ref" },
1945 { .id
= STAC_92HD73XX_INTEL
, .name
= "intel" },
1946 { .id
= STAC_DELL_M6_AMIC
, .name
= "dell-m6-amic" },
1947 { .id
= STAC_DELL_M6_DMIC
, .name
= "dell-m6-dmic" },
1948 { .id
= STAC_DELL_M6_BOTH
, .name
= "dell-m6" },
1949 { .id
= STAC_DELL_EQ
, .name
= "dell-eq" },
1950 { .id
= STAC_ALIENWARE_M17X
, .name
= "alienware" },
1951 { .id
= STAC_92HD73XX_ASUS_MOBO
, .name
= "asus-mobo" },
1955 static const struct snd_pci_quirk stac92hd73xx_fixup_tbl
[] = {
1956 /* SigmaTel reference board */
1957 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1958 "DFI LanParty", STAC_92HD73XX_REF
),
1959 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1960 "DFI LanParty", STAC_92HD73XX_REF
),
1961 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5002,
1962 "Intel DG45ID", STAC_92HD73XX_INTEL
),
1963 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5003,
1964 "Intel DG45FC", STAC_92HD73XX_INTEL
),
1965 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0254,
1966 "Dell Studio 1535", STAC_DELL_M6_DMIC
),
1967 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0255,
1968 "unknown Dell", STAC_DELL_M6_DMIC
),
1969 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0256,
1970 "unknown Dell", STAC_DELL_M6_BOTH
),
1971 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0257,
1972 "unknown Dell", STAC_DELL_M6_BOTH
),
1973 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x025e,
1974 "unknown Dell", STAC_DELL_M6_AMIC
),
1975 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x025f,
1976 "unknown Dell", STAC_DELL_M6_AMIC
),
1977 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0271,
1978 "unknown Dell", STAC_DELL_M6_DMIC
),
1979 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0272,
1980 "unknown Dell", STAC_DELL_M6_DMIC
),
1981 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x029f,
1982 "Dell Studio 1537", STAC_DELL_M6_DMIC
),
1983 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02a0,
1984 "Dell Studio 17", STAC_DELL_M6_DMIC
),
1985 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02be,
1986 "Dell Studio 1555", STAC_DELL_M6_DMIC
),
1987 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02bd,
1988 "Dell Studio 1557", STAC_DELL_M6_DMIC
),
1989 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02fe,
1990 "Dell Studio XPS 1645", STAC_DELL_M6_DMIC
),
1991 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0413,
1992 "Dell Studio 1558", STAC_DELL_M6_DMIC
),
1993 /* codec SSID matching */
1994 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02a1,
1995 "Alienware M17x", STAC_ALIENWARE_M17X
),
1996 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x043a,
1997 "Alienware M17x", STAC_ALIENWARE_M17X
),
1998 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0490,
1999 "Alienware M17x R3", STAC_DELL_EQ
),
2000 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1927,
2001 "HP Z1 G2", STAC_92HD89XX_HP_Z1_G2_RIGHT_MIC_JACK
),
2002 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2b17,
2003 "unknown HP", STAC_92HD89XX_HP_FRONT_JACK
),
2004 SND_PCI_QUIRK(PCI_VENDOR_ID_ASUSTEK
, 0x83f8, "ASUS AT4NM10",
2005 STAC_92HD73XX_ASUS_MOBO
),
2009 static const struct hda_pintbl ref92hd83xxx_pin_configs
[] = {
2010 { 0x0a, 0x02214030 },
2011 { 0x0b, 0x02211010 },
2012 { 0x0c, 0x02a19020 },
2013 { 0x0d, 0x02170130 },
2014 { 0x0e, 0x01014050 },
2015 { 0x0f, 0x01819040 },
2016 { 0x10, 0x01014020 },
2017 { 0x11, 0x90a3014e },
2018 { 0x1f, 0x01451160 },
2019 { 0x20, 0x98560170 },
2023 static const struct hda_pintbl dell_s14_pin_configs
[] = {
2024 { 0x0a, 0x0221403f },
2025 { 0x0b, 0x0221101f },
2026 { 0x0c, 0x02a19020 },
2027 { 0x0d, 0x90170110 },
2028 { 0x0e, 0x40f000f0 },
2029 { 0x0f, 0x40f000f0 },
2030 { 0x10, 0x40f000f0 },
2031 { 0x11, 0x90a60160 },
2032 { 0x1f, 0x40f000f0 },
2033 { 0x20, 0x40f000f0 },
2037 static const struct hda_pintbl dell_vostro_3500_pin_configs
[] = {
2038 { 0x0a, 0x02a11020 },
2039 { 0x0b, 0x0221101f },
2040 { 0x0c, 0x400000f0 },
2041 { 0x0d, 0x90170110 },
2042 { 0x0e, 0x400000f1 },
2043 { 0x0f, 0x400000f2 },
2044 { 0x10, 0x400000f3 },
2045 { 0x11, 0x90a60160 },
2046 { 0x1f, 0x400000f4 },
2047 { 0x20, 0x400000f5 },
2051 static const struct hda_pintbl hp_dv7_4000_pin_configs
[] = {
2052 { 0x0a, 0x03a12050 },
2053 { 0x0b, 0x0321201f },
2054 { 0x0c, 0x40f000f0 },
2055 { 0x0d, 0x90170110 },
2056 { 0x0e, 0x40f000f0 },
2057 { 0x0f, 0x40f000f0 },
2058 { 0x10, 0x90170110 },
2059 { 0x11, 0xd5a30140 },
2060 { 0x1f, 0x40f000f0 },
2061 { 0x20, 0x40f000f0 },
2065 static const struct hda_pintbl hp_zephyr_pin_configs
[] = {
2066 { 0x0a, 0x01813050 },
2067 { 0x0b, 0x0421201f },
2068 { 0x0c, 0x04a1205e },
2069 { 0x0d, 0x96130310 },
2070 { 0x0e, 0x96130310 },
2071 { 0x0f, 0x0101401f },
2072 { 0x10, 0x1111611f },
2073 { 0x11, 0xd5a30130 },
2077 static const struct hda_pintbl hp_cNB11_intquad_pin_configs
[] = {
2078 { 0x0a, 0x40f000f0 },
2079 { 0x0b, 0x0221101f },
2080 { 0x0c, 0x02a11020 },
2081 { 0x0d, 0x92170110 },
2082 { 0x0e, 0x40f000f0 },
2083 { 0x0f, 0x92170110 },
2084 { 0x10, 0x40f000f0 },
2085 { 0x11, 0xd5a30130 },
2086 { 0x1f, 0x40f000f0 },
2087 { 0x20, 0x40f000f0 },
2091 static void stac92hd83xxx_fixup_hp(struct hda_codec
*codec
,
2092 const struct hda_fixup
*fix
, int action
)
2094 struct sigmatel_spec
*spec
= codec
->spec
;
2096 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
2099 if (hp_bnb2011_with_dock(codec
)) {
2100 snd_hda_codec_set_pincfg(codec
, 0xa, 0x2101201f);
2101 snd_hda_codec_set_pincfg(codec
, 0xf, 0x2181205e);
2104 if (find_mute_led_cfg(codec
, spec
->default_polarity
))
2105 snd_printd("mute LED gpio %d polarity %d\n",
2107 spec
->gpio_led_polarity
);
2110 static void stac92hd83xxx_fixup_hp_zephyr(struct hda_codec
*codec
,
2111 const struct hda_fixup
*fix
, int action
)
2113 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
2116 snd_hda_apply_pincfgs(codec
, hp_zephyr_pin_configs
);
2117 snd_hda_add_verbs(codec
, stac92hd83xxx_hp_zephyr_init
);
2120 static void stac92hd83xxx_fixup_hp_led(struct hda_codec
*codec
,
2121 const struct hda_fixup
*fix
, int action
)
2123 struct sigmatel_spec
*spec
= codec
->spec
;
2125 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
2126 spec
->default_polarity
= 0;
2129 static void stac92hd83xxx_fixup_hp_inv_led(struct hda_codec
*codec
,
2130 const struct hda_fixup
*fix
, int action
)
2132 struct sigmatel_spec
*spec
= codec
->spec
;
2134 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
2135 spec
->default_polarity
= 1;
2138 static void stac92hd83xxx_fixup_hp_mic_led(struct hda_codec
*codec
,
2139 const struct hda_fixup
*fix
, int action
)
2141 struct sigmatel_spec
*spec
= codec
->spec
;
2143 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
2144 spec
->mic_mute_led_gpio
= 0x08; /* GPIO3 */
2147 static void stac92hd83xxx_fixup_hp_led_gpio10(struct hda_codec
*codec
,
2148 const struct hda_fixup
*fix
, int action
)
2150 struct sigmatel_spec
*spec
= codec
->spec
;
2152 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
2153 spec
->gpio_led
= 0x10; /* GPIO4 */
2154 spec
->default_polarity
= 0;
2158 static void stac92hd83xxx_fixup_headset_jack(struct hda_codec
*codec
,
2159 const struct hda_fixup
*fix
, int action
)
2161 struct sigmatel_spec
*spec
= codec
->spec
;
2163 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
2164 spec
->headset_jack
= 1;
2167 static const struct hda_verb hp_bnb13_eq_verbs
[] = {
2169 { 0x22, 0x7A6, 0x3E },
2170 { 0x22, 0x7A7, 0x68 },
2171 { 0x22, 0x7A8, 0x17 },
2172 { 0x22, 0x7A9, 0x3E },
2173 { 0x22, 0x7AA, 0x68 },
2174 { 0x22, 0x7AB, 0x17 },
2175 { 0x22, 0x7AC, 0x00 },
2176 { 0x22, 0x7AD, 0x80 },
2177 { 0x22, 0x7A6, 0x83 },
2178 { 0x22, 0x7A7, 0x2F },
2179 { 0x22, 0x7A8, 0xD1 },
2180 { 0x22, 0x7A9, 0x83 },
2181 { 0x22, 0x7AA, 0x2F },
2182 { 0x22, 0x7AB, 0xD1 },
2183 { 0x22, 0x7AC, 0x01 },
2184 { 0x22, 0x7AD, 0x80 },
2185 { 0x22, 0x7A6, 0x3E },
2186 { 0x22, 0x7A7, 0x68 },
2187 { 0x22, 0x7A8, 0x17 },
2188 { 0x22, 0x7A9, 0x3E },
2189 { 0x22, 0x7AA, 0x68 },
2190 { 0x22, 0x7AB, 0x17 },
2191 { 0x22, 0x7AC, 0x02 },
2192 { 0x22, 0x7AD, 0x80 },
2193 { 0x22, 0x7A6, 0x7C },
2194 { 0x22, 0x7A7, 0xC6 },
2195 { 0x22, 0x7A8, 0x0C },
2196 { 0x22, 0x7A9, 0x7C },
2197 { 0x22, 0x7AA, 0xC6 },
2198 { 0x22, 0x7AB, 0x0C },
2199 { 0x22, 0x7AC, 0x03 },
2200 { 0x22, 0x7AD, 0x80 },
2201 { 0x22, 0x7A6, 0xC3 },
2202 { 0x22, 0x7A7, 0x25 },
2203 { 0x22, 0x7A8, 0xAF },
2204 { 0x22, 0x7A9, 0xC3 },
2205 { 0x22, 0x7AA, 0x25 },
2206 { 0x22, 0x7AB, 0xAF },
2207 { 0x22, 0x7AC, 0x04 },
2208 { 0x22, 0x7AD, 0x80 },
2209 { 0x22, 0x7A6, 0x3E },
2210 { 0x22, 0x7A7, 0x85 },
2211 { 0x22, 0x7A8, 0x73 },
2212 { 0x22, 0x7A9, 0x3E },
2213 { 0x22, 0x7AA, 0x85 },
2214 { 0x22, 0x7AB, 0x73 },
2215 { 0x22, 0x7AC, 0x05 },
2216 { 0x22, 0x7AD, 0x80 },
2217 { 0x22, 0x7A6, 0x85 },
2218 { 0x22, 0x7A7, 0x39 },
2219 { 0x22, 0x7A8, 0xC7 },
2220 { 0x22, 0x7A9, 0x85 },
2221 { 0x22, 0x7AA, 0x39 },
2222 { 0x22, 0x7AB, 0xC7 },
2223 { 0x22, 0x7AC, 0x06 },
2224 { 0x22, 0x7AD, 0x80 },
2225 { 0x22, 0x7A6, 0x3C },
2226 { 0x22, 0x7A7, 0x90 },
2227 { 0x22, 0x7A8, 0xB0 },
2228 { 0x22, 0x7A9, 0x3C },
2229 { 0x22, 0x7AA, 0x90 },
2230 { 0x22, 0x7AB, 0xB0 },
2231 { 0x22, 0x7AC, 0x07 },
2232 { 0x22, 0x7AD, 0x80 },
2233 { 0x22, 0x7A6, 0x7A },
2234 { 0x22, 0x7A7, 0xC6 },
2235 { 0x22, 0x7A8, 0x39 },
2236 { 0x22, 0x7A9, 0x7A },
2237 { 0x22, 0x7AA, 0xC6 },
2238 { 0x22, 0x7AB, 0x39 },
2239 { 0x22, 0x7AC, 0x08 },
2240 { 0x22, 0x7AD, 0x80 },
2241 { 0x22, 0x7A6, 0xC4 },
2242 { 0x22, 0x7A7, 0xE9 },
2243 { 0x22, 0x7A8, 0xDC },
2244 { 0x22, 0x7A9, 0xC4 },
2245 { 0x22, 0x7AA, 0xE9 },
2246 { 0x22, 0x7AB, 0xDC },
2247 { 0x22, 0x7AC, 0x09 },
2248 { 0x22, 0x7AD, 0x80 },
2249 { 0x22, 0x7A6, 0x3D },
2250 { 0x22, 0x7A7, 0xE1 },
2251 { 0x22, 0x7A8, 0x0D },
2252 { 0x22, 0x7A9, 0x3D },
2253 { 0x22, 0x7AA, 0xE1 },
2254 { 0x22, 0x7AB, 0x0D },
2255 { 0x22, 0x7AC, 0x0A },
2256 { 0x22, 0x7AD, 0x80 },
2257 { 0x22, 0x7A6, 0x89 },
2258 { 0x22, 0x7A7, 0xB6 },
2259 { 0x22, 0x7A8, 0xEB },
2260 { 0x22, 0x7A9, 0x89 },
2261 { 0x22, 0x7AA, 0xB6 },
2262 { 0x22, 0x7AB, 0xEB },
2263 { 0x22, 0x7AC, 0x0B },
2264 { 0x22, 0x7AD, 0x80 },
2265 { 0x22, 0x7A6, 0x39 },
2266 { 0x22, 0x7A7, 0x9D },
2267 { 0x22, 0x7A8, 0xFE },
2268 { 0x22, 0x7A9, 0x39 },
2269 { 0x22, 0x7AA, 0x9D },
2270 { 0x22, 0x7AB, 0xFE },
2271 { 0x22, 0x7AC, 0x0C },
2272 { 0x22, 0x7AD, 0x80 },
2273 { 0x22, 0x7A6, 0x76 },
2274 { 0x22, 0x7A7, 0x49 },
2275 { 0x22, 0x7A8, 0x15 },
2276 { 0x22, 0x7A9, 0x76 },
2277 { 0x22, 0x7AA, 0x49 },
2278 { 0x22, 0x7AB, 0x15 },
2279 { 0x22, 0x7AC, 0x0D },
2280 { 0x22, 0x7AD, 0x80 },
2281 { 0x22, 0x7A6, 0xC8 },
2282 { 0x22, 0x7A7, 0x80 },
2283 { 0x22, 0x7A8, 0xF5 },
2284 { 0x22, 0x7A9, 0xC8 },
2285 { 0x22, 0x7AA, 0x80 },
2286 { 0x22, 0x7AB, 0xF5 },
2287 { 0x22, 0x7AC, 0x0E },
2288 { 0x22, 0x7AD, 0x80 },
2289 { 0x22, 0x7A6, 0x40 },
2290 { 0x22, 0x7A7, 0x00 },
2291 { 0x22, 0x7A8, 0x00 },
2292 { 0x22, 0x7A9, 0x40 },
2293 { 0x22, 0x7AA, 0x00 },
2294 { 0x22, 0x7AB, 0x00 },
2295 { 0x22, 0x7AC, 0x0F },
2296 { 0x22, 0x7AD, 0x80 },
2297 { 0x22, 0x7A6, 0x90 },
2298 { 0x22, 0x7A7, 0x68 },
2299 { 0x22, 0x7A8, 0xF1 },
2300 { 0x22, 0x7A9, 0x90 },
2301 { 0x22, 0x7AA, 0x68 },
2302 { 0x22, 0x7AB, 0xF1 },
2303 { 0x22, 0x7AC, 0x10 },
2304 { 0x22, 0x7AD, 0x80 },
2305 { 0x22, 0x7A6, 0x34 },
2306 { 0x22, 0x7A7, 0x47 },
2307 { 0x22, 0x7A8, 0x6C },
2308 { 0x22, 0x7A9, 0x34 },
2309 { 0x22, 0x7AA, 0x47 },
2310 { 0x22, 0x7AB, 0x6C },
2311 { 0x22, 0x7AC, 0x11 },
2312 { 0x22, 0x7AD, 0x80 },
2313 { 0x22, 0x7A6, 0x6F },
2314 { 0x22, 0x7A7, 0x97 },
2315 { 0x22, 0x7A8, 0x0F },
2316 { 0x22, 0x7A9, 0x6F },
2317 { 0x22, 0x7AA, 0x97 },
2318 { 0x22, 0x7AB, 0x0F },
2319 { 0x22, 0x7AC, 0x12 },
2320 { 0x22, 0x7AD, 0x80 },
2321 { 0x22, 0x7A6, 0xCB },
2322 { 0x22, 0x7A7, 0xB8 },
2323 { 0x22, 0x7A8, 0x94 },
2324 { 0x22, 0x7A9, 0xCB },
2325 { 0x22, 0x7AA, 0xB8 },
2326 { 0x22, 0x7AB, 0x94 },
2327 { 0x22, 0x7AC, 0x13 },
2328 { 0x22, 0x7AD, 0x80 },
2329 { 0x22, 0x7A6, 0x40 },
2330 { 0x22, 0x7A7, 0x00 },
2331 { 0x22, 0x7A8, 0x00 },
2332 { 0x22, 0x7A9, 0x40 },
2333 { 0x22, 0x7AA, 0x00 },
2334 { 0x22, 0x7AB, 0x00 },
2335 { 0x22, 0x7AC, 0x14 },
2336 { 0x22, 0x7AD, 0x80 },
2337 { 0x22, 0x7A6, 0x95 },
2338 { 0x22, 0x7A7, 0x76 },
2339 { 0x22, 0x7A8, 0x5B },
2340 { 0x22, 0x7A9, 0x95 },
2341 { 0x22, 0x7AA, 0x76 },
2342 { 0x22, 0x7AB, 0x5B },
2343 { 0x22, 0x7AC, 0x15 },
2344 { 0x22, 0x7AD, 0x80 },
2345 { 0x22, 0x7A6, 0x31 },
2346 { 0x22, 0x7A7, 0xAC },
2347 { 0x22, 0x7A8, 0x31 },
2348 { 0x22, 0x7A9, 0x31 },
2349 { 0x22, 0x7AA, 0xAC },
2350 { 0x22, 0x7AB, 0x31 },
2351 { 0x22, 0x7AC, 0x16 },
2352 { 0x22, 0x7AD, 0x80 },
2353 { 0x22, 0x7A6, 0x6A },
2354 { 0x22, 0x7A7, 0x89 },
2355 { 0x22, 0x7A8, 0xA5 },
2356 { 0x22, 0x7A9, 0x6A },
2357 { 0x22, 0x7AA, 0x89 },
2358 { 0x22, 0x7AB, 0xA5 },
2359 { 0x22, 0x7AC, 0x17 },
2360 { 0x22, 0x7AD, 0x80 },
2361 { 0x22, 0x7A6, 0xCE },
2362 { 0x22, 0x7A7, 0x53 },
2363 { 0x22, 0x7A8, 0xCF },
2364 { 0x22, 0x7A9, 0xCE },
2365 { 0x22, 0x7AA, 0x53 },
2366 { 0x22, 0x7AB, 0xCF },
2367 { 0x22, 0x7AC, 0x18 },
2368 { 0x22, 0x7AD, 0x80 },
2369 { 0x22, 0x7A6, 0x40 },
2370 { 0x22, 0x7A7, 0x00 },
2371 { 0x22, 0x7A8, 0x00 },
2372 { 0x22, 0x7A9, 0x40 },
2373 { 0x22, 0x7AA, 0x00 },
2374 { 0x22, 0x7AB, 0x00 },
2375 { 0x22, 0x7AC, 0x19 },
2376 { 0x22, 0x7AD, 0x80 },
2378 { 0x22, 0x7A6, 0x3E },
2379 { 0x22, 0x7A7, 0x88 },
2380 { 0x22, 0x7A8, 0xDC },
2381 { 0x22, 0x7A9, 0x3E },
2382 { 0x22, 0x7AA, 0x88 },
2383 { 0x22, 0x7AB, 0xDC },
2384 { 0x22, 0x7AC, 0x1A },
2385 { 0x22, 0x7AD, 0x80 },
2386 { 0x22, 0x7A6, 0x82 },
2387 { 0x22, 0x7A7, 0xEE },
2388 { 0x22, 0x7A8, 0x46 },
2389 { 0x22, 0x7A9, 0x82 },
2390 { 0x22, 0x7AA, 0xEE },
2391 { 0x22, 0x7AB, 0x46 },
2392 { 0x22, 0x7AC, 0x1B },
2393 { 0x22, 0x7AD, 0x80 },
2394 { 0x22, 0x7A6, 0x3E },
2395 { 0x22, 0x7A7, 0x88 },
2396 { 0x22, 0x7A8, 0xDC },
2397 { 0x22, 0x7A9, 0x3E },
2398 { 0x22, 0x7AA, 0x88 },
2399 { 0x22, 0x7AB, 0xDC },
2400 { 0x22, 0x7AC, 0x1C },
2401 { 0x22, 0x7AD, 0x80 },
2402 { 0x22, 0x7A6, 0x7D },
2403 { 0x22, 0x7A7, 0x09 },
2404 { 0x22, 0x7A8, 0x28 },
2405 { 0x22, 0x7A9, 0x7D },
2406 { 0x22, 0x7AA, 0x09 },
2407 { 0x22, 0x7AB, 0x28 },
2408 { 0x22, 0x7AC, 0x1D },
2409 { 0x22, 0x7AD, 0x80 },
2410 { 0x22, 0x7A6, 0xC2 },
2411 { 0x22, 0x7A7, 0xE5 },
2412 { 0x22, 0x7A8, 0xB4 },
2413 { 0x22, 0x7A9, 0xC2 },
2414 { 0x22, 0x7AA, 0xE5 },
2415 { 0x22, 0x7AB, 0xB4 },
2416 { 0x22, 0x7AC, 0x1E },
2417 { 0x22, 0x7AD, 0x80 },
2418 { 0x22, 0x7A6, 0x3E },
2419 { 0x22, 0x7A7, 0xA3 },
2420 { 0x22, 0x7A8, 0x1F },
2421 { 0x22, 0x7A9, 0x3E },
2422 { 0x22, 0x7AA, 0xA3 },
2423 { 0x22, 0x7AB, 0x1F },
2424 { 0x22, 0x7AC, 0x1F },
2425 { 0x22, 0x7AD, 0x80 },
2426 { 0x22, 0x7A6, 0x84 },
2427 { 0x22, 0x7A7, 0xCA },
2428 { 0x22, 0x7A8, 0xF1 },
2429 { 0x22, 0x7A9, 0x84 },
2430 { 0x22, 0x7AA, 0xCA },
2431 { 0x22, 0x7AB, 0xF1 },
2432 { 0x22, 0x7AC, 0x20 },
2433 { 0x22, 0x7AD, 0x80 },
2434 { 0x22, 0x7A6, 0x3C },
2435 { 0x22, 0x7A7, 0xD5 },
2436 { 0x22, 0x7A8, 0x9C },
2437 { 0x22, 0x7A9, 0x3C },
2438 { 0x22, 0x7AA, 0xD5 },
2439 { 0x22, 0x7AB, 0x9C },
2440 { 0x22, 0x7AC, 0x21 },
2441 { 0x22, 0x7AD, 0x80 },
2442 { 0x22, 0x7A6, 0x7B },
2443 { 0x22, 0x7A7, 0x35 },
2444 { 0x22, 0x7A8, 0x0F },
2445 { 0x22, 0x7A9, 0x7B },
2446 { 0x22, 0x7AA, 0x35 },
2447 { 0x22, 0x7AB, 0x0F },
2448 { 0x22, 0x7AC, 0x22 },
2449 { 0x22, 0x7AD, 0x80 },
2450 { 0x22, 0x7A6, 0xC4 },
2451 { 0x22, 0x7A7, 0x87 },
2452 { 0x22, 0x7A8, 0x45 },
2453 { 0x22, 0x7A9, 0xC4 },
2454 { 0x22, 0x7AA, 0x87 },
2455 { 0x22, 0x7AB, 0x45 },
2456 { 0x22, 0x7AC, 0x23 },
2457 { 0x22, 0x7AD, 0x80 },
2458 { 0x22, 0x7A6, 0x3E },
2459 { 0x22, 0x7A7, 0x0A },
2460 { 0x22, 0x7A8, 0x78 },
2461 { 0x22, 0x7A9, 0x3E },
2462 { 0x22, 0x7AA, 0x0A },
2463 { 0x22, 0x7AB, 0x78 },
2464 { 0x22, 0x7AC, 0x24 },
2465 { 0x22, 0x7AD, 0x80 },
2466 { 0x22, 0x7A6, 0x88 },
2467 { 0x22, 0x7A7, 0xE2 },
2468 { 0x22, 0x7A8, 0x05 },
2469 { 0x22, 0x7A9, 0x88 },
2470 { 0x22, 0x7AA, 0xE2 },
2471 { 0x22, 0x7AB, 0x05 },
2472 { 0x22, 0x7AC, 0x25 },
2473 { 0x22, 0x7AD, 0x80 },
2474 { 0x22, 0x7A6, 0x3A },
2475 { 0x22, 0x7A7, 0x1A },
2476 { 0x22, 0x7A8, 0xA3 },
2477 { 0x22, 0x7A9, 0x3A },
2478 { 0x22, 0x7AA, 0x1A },
2479 { 0x22, 0x7AB, 0xA3 },
2480 { 0x22, 0x7AC, 0x26 },
2481 { 0x22, 0x7AD, 0x80 },
2482 { 0x22, 0x7A6, 0x77 },
2483 { 0x22, 0x7A7, 0x1D },
2484 { 0x22, 0x7A8, 0xFB },
2485 { 0x22, 0x7A9, 0x77 },
2486 { 0x22, 0x7AA, 0x1D },
2487 { 0x22, 0x7AB, 0xFB },
2488 { 0x22, 0x7AC, 0x27 },
2489 { 0x22, 0x7AD, 0x80 },
2490 { 0x22, 0x7A6, 0xC7 },
2491 { 0x22, 0x7A7, 0xDA },
2492 { 0x22, 0x7A8, 0xE5 },
2493 { 0x22, 0x7A9, 0xC7 },
2494 { 0x22, 0x7AA, 0xDA },
2495 { 0x22, 0x7AB, 0xE5 },
2496 { 0x22, 0x7AC, 0x28 },
2497 { 0x22, 0x7AD, 0x80 },
2498 { 0x22, 0x7A6, 0x40 },
2499 { 0x22, 0x7A7, 0x00 },
2500 { 0x22, 0x7A8, 0x00 },
2501 { 0x22, 0x7A9, 0x40 },
2502 { 0x22, 0x7AA, 0x00 },
2503 { 0x22, 0x7AB, 0x00 },
2504 { 0x22, 0x7AC, 0x29 },
2505 { 0x22, 0x7AD, 0x80 },
2506 { 0x22, 0x7A6, 0x8E },
2507 { 0x22, 0x7A7, 0xD7 },
2508 { 0x22, 0x7A8, 0x22 },
2509 { 0x22, 0x7A9, 0x8E },
2510 { 0x22, 0x7AA, 0xD7 },
2511 { 0x22, 0x7AB, 0x22 },
2512 { 0x22, 0x7AC, 0x2A },
2513 { 0x22, 0x7AD, 0x80 },
2514 { 0x22, 0x7A6, 0x35 },
2515 { 0x22, 0x7A7, 0x26 },
2516 { 0x22, 0x7A8, 0xC6 },
2517 { 0x22, 0x7A9, 0x35 },
2518 { 0x22, 0x7AA, 0x26 },
2519 { 0x22, 0x7AB, 0xC6 },
2520 { 0x22, 0x7AC, 0x2B },
2521 { 0x22, 0x7AD, 0x80 },
2522 { 0x22, 0x7A6, 0x71 },
2523 { 0x22, 0x7A7, 0x28 },
2524 { 0x22, 0x7A8, 0xDE },
2525 { 0x22, 0x7A9, 0x71 },
2526 { 0x22, 0x7AA, 0x28 },
2527 { 0x22, 0x7AB, 0xDE },
2528 { 0x22, 0x7AC, 0x2C },
2529 { 0x22, 0x7AD, 0x80 },
2530 { 0x22, 0x7A6, 0xCA },
2531 { 0x22, 0x7A7, 0xD9 },
2532 { 0x22, 0x7A8, 0x3A },
2533 { 0x22, 0x7A9, 0xCA },
2534 { 0x22, 0x7AA, 0xD9 },
2535 { 0x22, 0x7AB, 0x3A },
2536 { 0x22, 0x7AC, 0x2D },
2537 { 0x22, 0x7AD, 0x80 },
2538 { 0x22, 0x7A6, 0x40 },
2539 { 0x22, 0x7A7, 0x00 },
2540 { 0x22, 0x7A8, 0x00 },
2541 { 0x22, 0x7A9, 0x40 },
2542 { 0x22, 0x7AA, 0x00 },
2543 { 0x22, 0x7AB, 0x00 },
2544 { 0x22, 0x7AC, 0x2E },
2545 { 0x22, 0x7AD, 0x80 },
2546 { 0x22, 0x7A6, 0x93 },
2547 { 0x22, 0x7A7, 0x5E },
2548 { 0x22, 0x7A8, 0xD8 },
2549 { 0x22, 0x7A9, 0x93 },
2550 { 0x22, 0x7AA, 0x5E },
2551 { 0x22, 0x7AB, 0xD8 },
2552 { 0x22, 0x7AC, 0x2F },
2553 { 0x22, 0x7AD, 0x80 },
2554 { 0x22, 0x7A6, 0x32 },
2555 { 0x22, 0x7A7, 0xB7 },
2556 { 0x22, 0x7A8, 0xB1 },
2557 { 0x22, 0x7A9, 0x32 },
2558 { 0x22, 0x7AA, 0xB7 },
2559 { 0x22, 0x7AB, 0xB1 },
2560 { 0x22, 0x7AC, 0x30 },
2561 { 0x22, 0x7AD, 0x80 },
2562 { 0x22, 0x7A6, 0x6C },
2563 { 0x22, 0x7A7, 0xA1 },
2564 { 0x22, 0x7A8, 0x28 },
2565 { 0x22, 0x7A9, 0x6C },
2566 { 0x22, 0x7AA, 0xA1 },
2567 { 0x22, 0x7AB, 0x28 },
2568 { 0x22, 0x7AC, 0x31 },
2569 { 0x22, 0x7AD, 0x80 },
2570 { 0x22, 0x7A6, 0xCD },
2571 { 0x22, 0x7A7, 0x48 },
2572 { 0x22, 0x7A8, 0x4F },
2573 { 0x22, 0x7A9, 0xCD },
2574 { 0x22, 0x7AA, 0x48 },
2575 { 0x22, 0x7AB, 0x4F },
2576 { 0x22, 0x7AC, 0x32 },
2577 { 0x22, 0x7AD, 0x80 },
2578 { 0x22, 0x7A6, 0x40 },
2579 { 0x22, 0x7A7, 0x00 },
2580 { 0x22, 0x7A8, 0x00 },
2581 { 0x22, 0x7A9, 0x40 },
2582 { 0x22, 0x7AA, 0x00 },
2583 { 0x22, 0x7AB, 0x00 },
2584 { 0x22, 0x7AC, 0x33 },
2585 { 0x22, 0x7AD, 0x80 },
2587 { 0x22, 0x782, 0xC1 },
2588 { 0x22, 0x771, 0x2C },
2589 { 0x22, 0x772, 0x2C },
2590 { 0x22, 0x788, 0x04 },
2591 { 0x01, 0x7B0, 0x08 },
2595 static const struct hda_fixup stac92hd83xxx_fixups
[] = {
2596 [STAC_92HD83XXX_REF
] = {
2597 .type
= HDA_FIXUP_PINS
,
2598 .v
.pins
= ref92hd83xxx_pin_configs
,
2600 [STAC_92HD83XXX_PWR_REF
] = {
2601 .type
= HDA_FIXUP_PINS
,
2602 .v
.pins
= ref92hd83xxx_pin_configs
,
2605 .type
= HDA_FIXUP_PINS
,
2606 .v
.pins
= dell_s14_pin_configs
,
2608 [STAC_DELL_VOSTRO_3500
] = {
2609 .type
= HDA_FIXUP_PINS
,
2610 .v
.pins
= dell_vostro_3500_pin_configs
,
2612 [STAC_92HD83XXX_HP_cNB11_INTQUAD
] = {
2613 .type
= HDA_FIXUP_PINS
,
2614 .v
.pins
= hp_cNB11_intquad_pin_configs
,
2616 .chain_id
= STAC_92HD83XXX_HP
,
2618 [STAC_92HD83XXX_HP
] = {
2619 .type
= HDA_FIXUP_FUNC
,
2620 .v
.func
= stac92hd83xxx_fixup_hp
,
2622 [STAC_HP_DV7_4000
] = {
2623 .type
= HDA_FIXUP_PINS
,
2624 .v
.pins
= hp_dv7_4000_pin_configs
,
2626 .chain_id
= STAC_92HD83XXX_HP
,
2628 [STAC_HP_ZEPHYR
] = {
2629 .type
= HDA_FIXUP_FUNC
,
2630 .v
.func
= stac92hd83xxx_fixup_hp_zephyr
,
2632 .chain_id
= STAC_92HD83XXX_HP
,
2634 [STAC_92HD83XXX_HP_LED
] = {
2635 .type
= HDA_FIXUP_FUNC
,
2636 .v
.func
= stac92hd83xxx_fixup_hp_led
,
2638 .chain_id
= STAC_92HD83XXX_HP
,
2640 [STAC_92HD83XXX_HP_INV_LED
] = {
2641 .type
= HDA_FIXUP_FUNC
,
2642 .v
.func
= stac92hd83xxx_fixup_hp_inv_led
,
2644 .chain_id
= STAC_92HD83XXX_HP
,
2646 [STAC_92HD83XXX_HP_MIC_LED
] = {
2647 .type
= HDA_FIXUP_FUNC
,
2648 .v
.func
= stac92hd83xxx_fixup_hp_mic_led
,
2650 .chain_id
= STAC_92HD83XXX_HP
,
2652 [STAC_HP_LED_GPIO10
] = {
2653 .type
= HDA_FIXUP_FUNC
,
2654 .v
.func
= stac92hd83xxx_fixup_hp_led_gpio10
,
2656 .chain_id
= STAC_92HD83XXX_HP
,
2658 [STAC_92HD83XXX_HEADSET_JACK
] = {
2659 .type
= HDA_FIXUP_FUNC
,
2660 .v
.func
= stac92hd83xxx_fixup_headset_jack
,
2662 [STAC_HP_ENVY_BASS
] = {
2663 .type
= HDA_FIXUP_PINS
,
2664 .v
.pins
= (const struct hda_pintbl
[]) {
2665 { 0x0f, 0x90170111 },
2669 [STAC_HP_BNB13_EQ
] = {
2670 .type
= HDA_FIXUP_VERBS
,
2671 .v
.verbs
= hp_bnb13_eq_verbs
,
2673 .chain_id
= STAC_92HD83XXX_HP_MIC_LED
,
2677 static const struct hda_model_fixup stac92hd83xxx_models
[] = {
2678 { .id
= STAC_92HD83XXX_REF
, .name
= "ref" },
2679 { .id
= STAC_92HD83XXX_PWR_REF
, .name
= "mic-ref" },
2680 { .id
= STAC_DELL_S14
, .name
= "dell-s14" },
2681 { .id
= STAC_DELL_VOSTRO_3500
, .name
= "dell-vostro-3500" },
2682 { .id
= STAC_92HD83XXX_HP_cNB11_INTQUAD
, .name
= "hp_cNB11_intquad" },
2683 { .id
= STAC_HP_DV7_4000
, .name
= "hp-dv7-4000" },
2684 { .id
= STAC_HP_ZEPHYR
, .name
= "hp-zephyr" },
2685 { .id
= STAC_92HD83XXX_HP_LED
, .name
= "hp-led" },
2686 { .id
= STAC_92HD83XXX_HP_INV_LED
, .name
= "hp-inv-led" },
2687 { .id
= STAC_92HD83XXX_HP_MIC_LED
, .name
= "hp-mic-led" },
2688 { .id
= STAC_92HD83XXX_HEADSET_JACK
, .name
= "headset-jack" },
2689 { .id
= STAC_HP_ENVY_BASS
, .name
= "hp-envy-bass" },
2690 { .id
= STAC_HP_BNB13_EQ
, .name
= "hp-bnb13-eq" },
2694 static const struct snd_pci_quirk stac92hd83xxx_fixup_tbl
[] = {
2695 /* SigmaTel reference board */
2696 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
2697 "DFI LanParty", STAC_92HD83XXX_REF
),
2698 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
2699 "DFI LanParty", STAC_92HD83XXX_REF
),
2700 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02ba,
2701 "unknown Dell", STAC_DELL_S14
),
2702 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0532,
2703 "Dell Latitude E6230", STAC_92HD83XXX_HEADSET_JACK
),
2704 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0533,
2705 "Dell Latitude E6330", STAC_92HD83XXX_HEADSET_JACK
),
2706 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0534,
2707 "Dell Latitude E6430", STAC_92HD83XXX_HEADSET_JACK
),
2708 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0535,
2709 "Dell Latitude E6530", STAC_92HD83XXX_HEADSET_JACK
),
2710 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x053c,
2711 "Dell Latitude E5430", STAC_92HD83XXX_HEADSET_JACK
),
2712 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x053d,
2713 "Dell Latitude E5530", STAC_92HD83XXX_HEADSET_JACK
),
2714 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0549,
2715 "Dell Latitude E5430", STAC_92HD83XXX_HEADSET_JACK
),
2716 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x057d,
2717 "Dell Latitude E6430s", STAC_92HD83XXX_HEADSET_JACK
),
2718 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0584,
2719 "Dell Latitude E6430U", STAC_92HD83XXX_HEADSET_JACK
),
2720 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x1028,
2721 "Dell Vostro 3500", STAC_DELL_VOSTRO_3500
),
2722 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1656,
2723 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2724 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1657,
2725 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2726 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1658,
2727 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2728 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1659,
2729 "HP Pavilion dv7", STAC_HP_DV7_4000
),
2730 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x165A,
2731 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2732 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x165B,
2733 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2734 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1888,
2735 "HP Envy Spectre", STAC_HP_ENVY_BASS
),
2736 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1899,
2737 "HP Folio 13", STAC_HP_LED_GPIO10
),
2738 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x18df,
2739 "HP Folio", STAC_HP_BNB13_EQ
),
2740 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x18F8,
2741 "HP bNB13", STAC_HP_BNB13_EQ
),
2742 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1909,
2743 "HP bNB13", STAC_HP_BNB13_EQ
),
2744 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x190A,
2745 "HP bNB13", STAC_HP_BNB13_EQ
),
2746 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1940,
2747 "HP bNB13", STAC_HP_BNB13_EQ
),
2748 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1941,
2749 "HP bNB13", STAC_HP_BNB13_EQ
),
2750 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1942,
2751 "HP bNB13", STAC_HP_BNB13_EQ
),
2752 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1943,
2753 "HP bNB13", STAC_HP_BNB13_EQ
),
2754 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1944,
2755 "HP bNB13", STAC_HP_BNB13_EQ
),
2756 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1945,
2757 "HP bNB13", STAC_HP_BNB13_EQ
),
2758 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1946,
2759 "HP bNB13", STAC_HP_BNB13_EQ
),
2760 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1948,
2761 "HP bNB13", STAC_HP_BNB13_EQ
),
2762 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1949,
2763 "HP bNB13", STAC_HP_BNB13_EQ
),
2764 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x194A,
2765 "HP bNB13", STAC_HP_BNB13_EQ
),
2766 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x194B,
2767 "HP bNB13", STAC_HP_BNB13_EQ
),
2768 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x194C,
2769 "HP bNB13", STAC_HP_BNB13_EQ
),
2770 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x194E,
2771 "HP bNB13", STAC_HP_BNB13_EQ
),
2772 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x194F,
2773 "HP bNB13", STAC_HP_BNB13_EQ
),
2774 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1950,
2775 "HP bNB13", STAC_HP_BNB13_EQ
),
2776 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1951,
2777 "HP bNB13", STAC_HP_BNB13_EQ
),
2778 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x195A,
2779 "HP bNB13", STAC_HP_BNB13_EQ
),
2780 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x195B,
2781 "HP bNB13", STAC_HP_BNB13_EQ
),
2782 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x195C,
2783 "HP bNB13", STAC_HP_BNB13_EQ
),
2784 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x1991,
2785 "HP bNB13", STAC_HP_BNB13_EQ
),
2786 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2103,
2787 "HP bNB13", STAC_HP_BNB13_EQ
),
2788 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2104,
2789 "HP bNB13", STAC_HP_BNB13_EQ
),
2790 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2105,
2791 "HP bNB13", STAC_HP_BNB13_EQ
),
2792 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2106,
2793 "HP bNB13", STAC_HP_BNB13_EQ
),
2794 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2107,
2795 "HP bNB13", STAC_HP_BNB13_EQ
),
2796 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2108,
2797 "HP bNB13", STAC_HP_BNB13_EQ
),
2798 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2109,
2799 "HP bNB13", STAC_HP_BNB13_EQ
),
2800 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x210A,
2801 "HP bNB13", STAC_HP_BNB13_EQ
),
2802 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x210B,
2803 "HP bNB13", STAC_HP_BNB13_EQ
),
2804 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x211C,
2805 "HP bNB13", STAC_HP_BNB13_EQ
),
2806 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x211D,
2807 "HP bNB13", STAC_HP_BNB13_EQ
),
2808 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x211E,
2809 "HP bNB13", STAC_HP_BNB13_EQ
),
2810 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x211F,
2811 "HP bNB13", STAC_HP_BNB13_EQ
),
2812 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2120,
2813 "HP bNB13", STAC_HP_BNB13_EQ
),
2814 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2121,
2815 "HP bNB13", STAC_HP_BNB13_EQ
),
2816 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2122,
2817 "HP bNB13", STAC_HP_BNB13_EQ
),
2818 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2123,
2819 "HP bNB13", STAC_HP_BNB13_EQ
),
2820 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x213E,
2821 "HP bNB13", STAC_HP_BNB13_EQ
),
2822 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x213F,
2823 "HP bNB13", STAC_HP_BNB13_EQ
),
2824 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x2140,
2825 "HP bNB13", STAC_HP_BNB13_EQ
),
2826 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x21B2,
2827 "HP bNB13", STAC_HP_BNB13_EQ
),
2828 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x21B3,
2829 "HP bNB13", STAC_HP_BNB13_EQ
),
2830 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x21B5,
2831 "HP bNB13", STAC_HP_BNB13_EQ
),
2832 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x21B6,
2833 "HP bNB13", STAC_HP_BNB13_EQ
),
2834 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xff00, 0x1900,
2835 "HP", STAC_92HD83XXX_HP_MIC_LED
),
2836 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xff00, 0x2000,
2837 "HP", STAC_92HD83XXX_HP_MIC_LED
),
2838 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xff00, 0x2100,
2839 "HP", STAC_92HD83XXX_HP_MIC_LED
),
2840 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3388,
2841 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2842 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3389,
2843 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2844 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x355B,
2845 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2846 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x355C,
2847 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2848 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x355D,
2849 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2850 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x355E,
2851 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2852 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x355F,
2853 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2854 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3560,
2855 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2856 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x358B,
2857 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2858 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x358C,
2859 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2860 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x358D,
2861 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2862 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3591,
2863 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2864 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3592,
2865 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2866 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3593,
2867 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD
),
2868 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3561,
2869 "HP", STAC_HP_ZEPHYR
),
2870 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3660,
2871 "HP Mini", STAC_92HD83XXX_HP_LED
),
2872 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x144E,
2873 "HP Pavilion dv5", STAC_92HD83XXX_HP_INV_LED
),
2874 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x148a,
2875 "HP Mini", STAC_92HD83XXX_HP_LED
),
2876 SND_PCI_QUIRK_VENDOR(PCI_VENDOR_ID_HP
, "HP", STAC_92HD83XXX_HP
),
2880 /* HP dv7 bass switch - GPIO5 */
2881 #define stac_hp_bass_gpio_info snd_ctl_boolean_mono_info
2882 static int stac_hp_bass_gpio_get(struct snd_kcontrol
*kcontrol
,
2883 struct snd_ctl_elem_value
*ucontrol
)
2885 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2886 struct sigmatel_spec
*spec
= codec
->spec
;
2887 ucontrol
->value
.integer
.value
[0] = !!(spec
->gpio_data
& 0x20);
2891 static int stac_hp_bass_gpio_put(struct snd_kcontrol
*kcontrol
,
2892 struct snd_ctl_elem_value
*ucontrol
)
2894 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2895 struct sigmatel_spec
*spec
= codec
->spec
;
2896 unsigned int gpio_data
;
2898 gpio_data
= (spec
->gpio_data
& ~0x20) |
2899 (ucontrol
->value
.integer
.value
[0] ? 0x20 : 0);
2900 if (gpio_data
== spec
->gpio_data
)
2902 spec
->gpio_data
= gpio_data
;
2903 stac_gpio_set(codec
, spec
->gpio_mask
, spec
->gpio_dir
, spec
->gpio_data
);
2907 static const struct snd_kcontrol_new stac_hp_bass_sw_ctrl
= {
2908 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2909 .info
= stac_hp_bass_gpio_info
,
2910 .get
= stac_hp_bass_gpio_get
,
2911 .put
= stac_hp_bass_gpio_put
,
2914 static int stac_add_hp_bass_switch(struct hda_codec
*codec
)
2916 struct sigmatel_spec
*spec
= codec
->spec
;
2918 if (!snd_hda_gen_add_kctl(&spec
->gen
, "Bass Speaker Playback Switch",
2919 &stac_hp_bass_sw_ctrl
))
2922 spec
->gpio_mask
|= 0x20;
2923 spec
->gpio_dir
|= 0x20;
2924 spec
->gpio_data
|= 0x20;
2928 static const struct hda_pintbl ref92hd71bxx_pin_configs
[] = {
2929 { 0x0a, 0x02214030 },
2930 { 0x0b, 0x02a19040 },
2931 { 0x0c, 0x01a19020 },
2932 { 0x0d, 0x01014010 },
2933 { 0x0e, 0x0181302e },
2934 { 0x0f, 0x01014010 },
2935 { 0x14, 0x01019020 },
2936 { 0x18, 0x90a000f0 },
2937 { 0x19, 0x90a000f0 },
2938 { 0x1e, 0x01452050 },
2939 { 0x1f, 0x01452050 },
2943 static const struct hda_pintbl dell_m4_1_pin_configs
[] = {
2944 { 0x0a, 0x0421101f },
2945 { 0x0b, 0x04a11221 },
2946 { 0x0c, 0x40f000f0 },
2947 { 0x0d, 0x90170110 },
2948 { 0x0e, 0x23a1902e },
2949 { 0x0f, 0x23014250 },
2950 { 0x14, 0x40f000f0 },
2951 { 0x18, 0x90a000f0 },
2952 { 0x19, 0x40f000f0 },
2953 { 0x1e, 0x4f0000f0 },
2954 { 0x1f, 0x4f0000f0 },
2958 static const struct hda_pintbl dell_m4_2_pin_configs
[] = {
2959 { 0x0a, 0x0421101f },
2960 { 0x0b, 0x04a11221 },
2961 { 0x0c, 0x90a70330 },
2962 { 0x0d, 0x90170110 },
2963 { 0x0e, 0x23a1902e },
2964 { 0x0f, 0x23014250 },
2965 { 0x14, 0x40f000f0 },
2966 { 0x18, 0x40f000f0 },
2967 { 0x19, 0x40f000f0 },
2968 { 0x1e, 0x044413b0 },
2969 { 0x1f, 0x044413b0 },
2973 static const struct hda_pintbl dell_m4_3_pin_configs
[] = {
2974 { 0x0a, 0x0421101f },
2975 { 0x0b, 0x04a11221 },
2976 { 0x0c, 0x90a70330 },
2977 { 0x0d, 0x90170110 },
2978 { 0x0e, 0x40f000f0 },
2979 { 0x0f, 0x40f000f0 },
2980 { 0x14, 0x40f000f0 },
2981 { 0x18, 0x90a000f0 },
2982 { 0x19, 0x40f000f0 },
2983 { 0x1e, 0x044413b0 },
2984 { 0x1f, 0x044413b0 },
2988 static void stac92hd71bxx_fixup_ref(struct hda_codec
*codec
,
2989 const struct hda_fixup
*fix
, int action
)
2991 struct sigmatel_spec
*spec
= codec
->spec
;
2993 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
2996 snd_hda_apply_pincfgs(codec
, ref92hd71bxx_pin_configs
);
2997 spec
->gpio_mask
= spec
->gpio_dir
= spec
->gpio_data
= 0;
3000 static void stac92hd71bxx_fixup_hp_m4(struct hda_codec
*codec
,
3001 const struct hda_fixup
*fix
, int action
)
3003 struct sigmatel_spec
*spec
= codec
->spec
;
3004 struct hda_jack_tbl
*jack
;
3006 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
3009 /* Enable VREF power saving on GPIO1 detect */
3010 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
3011 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK
, 0x02);
3012 snd_hda_jack_detect_enable_callback(codec
, codec
->afg
,
3015 jack
= snd_hda_jack_tbl_get(codec
, codec
->afg
);
3017 jack
->private_data
= 0x02;
3019 spec
->gpio_mask
|= 0x02;
3021 /* enable internal microphone */
3022 snd_hda_codec_set_pincfg(codec
, 0x0e, 0x01813040);
3025 static void stac92hd71bxx_fixup_hp_dv4(struct hda_codec
*codec
,
3026 const struct hda_fixup
*fix
, int action
)
3028 struct sigmatel_spec
*spec
= codec
->spec
;
3030 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
3032 spec
->gpio_led
= 0x01;
3035 static void stac92hd71bxx_fixup_hp_dv5(struct hda_codec
*codec
,
3036 const struct hda_fixup
*fix
, int action
)
3041 case HDA_FIXUP_ACT_PRE_PROBE
:
3042 snd_hda_codec_set_pincfg(codec
, 0x0d, 0x90170010);
3045 case HDA_FIXUP_ACT_PROBE
:
3046 /* enable bass on HP dv7 */
3047 cap
= snd_hda_param_read(codec
, 0x1, AC_PAR_GPIO_CAP
);
3048 cap
&= AC_GPIO_IO_COUNT
;
3050 stac_add_hp_bass_switch(codec
);
3055 static void stac92hd71bxx_fixup_hp_hdx(struct hda_codec
*codec
,
3056 const struct hda_fixup
*fix
, int action
)
3058 struct sigmatel_spec
*spec
= codec
->spec
;
3060 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
3062 spec
->gpio_led
= 0x08;
3066 static void stac92hd71bxx_fixup_hp(struct hda_codec
*codec
,
3067 const struct hda_fixup
*fix
, int action
)
3069 struct sigmatel_spec
*spec
= codec
->spec
;
3071 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
3074 if (hp_blike_system(codec
->subsystem_id
)) {
3075 unsigned int pin_cfg
= snd_hda_codec_get_pincfg(codec
, 0x0f);
3076 if (get_defcfg_device(pin_cfg
) == AC_JACK_LINE_OUT
||
3077 get_defcfg_device(pin_cfg
) == AC_JACK_SPEAKER
||
3078 get_defcfg_device(pin_cfg
) == AC_JACK_HP_OUT
) {
3079 /* It was changed in the BIOS to just satisfy MS DTM.
3080 * Lets turn it back into slaved HP
3082 pin_cfg
= (pin_cfg
& (~AC_DEFCFG_DEVICE
))
3083 | (AC_JACK_HP_OUT
<<
3084 AC_DEFCFG_DEVICE_SHIFT
);
3085 pin_cfg
= (pin_cfg
& (~(AC_DEFCFG_DEF_ASSOC
3086 | AC_DEFCFG_SEQUENCE
)))
3088 snd_hda_codec_set_pincfg(codec
, 0x0f, pin_cfg
);
3092 if (find_mute_led_cfg(codec
, 1))
3093 snd_printd("mute LED gpio %d polarity %d\n",
3095 spec
->gpio_led_polarity
);
3099 static const struct hda_fixup stac92hd71bxx_fixups
[] = {
3100 [STAC_92HD71BXX_REF
] = {
3101 .type
= HDA_FIXUP_FUNC
,
3102 .v
.func
= stac92hd71bxx_fixup_ref
,
3104 [STAC_DELL_M4_1
] = {
3105 .type
= HDA_FIXUP_PINS
,
3106 .v
.pins
= dell_m4_1_pin_configs
,
3108 [STAC_DELL_M4_2
] = {
3109 .type
= HDA_FIXUP_PINS
,
3110 .v
.pins
= dell_m4_2_pin_configs
,
3112 [STAC_DELL_M4_3
] = {
3113 .type
= HDA_FIXUP_PINS
,
3114 .v
.pins
= dell_m4_3_pin_configs
,
3117 .type
= HDA_FIXUP_FUNC
,
3118 .v
.func
= stac92hd71bxx_fixup_hp_m4
,
3120 .chain_id
= STAC_92HD71BXX_HP
,
3123 .type
= HDA_FIXUP_FUNC
,
3124 .v
.func
= stac92hd71bxx_fixup_hp_dv4
,
3126 .chain_id
= STAC_HP_DV5
,
3129 .type
= HDA_FIXUP_FUNC
,
3130 .v
.func
= stac92hd71bxx_fixup_hp_dv5
,
3132 .chain_id
= STAC_92HD71BXX_HP
,
3135 .type
= HDA_FIXUP_FUNC
,
3136 .v
.func
= stac92hd71bxx_fixup_hp_hdx
,
3138 .chain_id
= STAC_92HD71BXX_HP
,
3140 [STAC_92HD71BXX_HP
] = {
3141 .type
= HDA_FIXUP_FUNC
,
3142 .v
.func
= stac92hd71bxx_fixup_hp
,
3146 static const struct hda_model_fixup stac92hd71bxx_models
[] = {
3147 { .id
= STAC_92HD71BXX_REF
, .name
= "ref" },
3148 { .id
= STAC_DELL_M4_1
, .name
= "dell-m4-1" },
3149 { .id
= STAC_DELL_M4_2
, .name
= "dell-m4-2" },
3150 { .id
= STAC_DELL_M4_3
, .name
= "dell-m4-3" },
3151 { .id
= STAC_HP_M4
, .name
= "hp-m4" },
3152 { .id
= STAC_HP_DV4
, .name
= "hp-dv4" },
3153 { .id
= STAC_HP_DV5
, .name
= "hp-dv5" },
3154 { .id
= STAC_HP_HDX
, .name
= "hp-hdx" },
3155 { .id
= STAC_HP_DV4
, .name
= "hp-dv4-1222nr" },
3159 static const struct snd_pci_quirk stac92hd71bxx_fixup_tbl
[] = {
3160 /* SigmaTel reference board */
3161 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
3162 "DFI LanParty", STAC_92HD71BXX_REF
),
3163 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
3164 "DFI LanParty", STAC_92HD71BXX_REF
),
3165 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x1720,
3167 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x3080,
3169 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x30f0,
3170 "HP dv4-7", STAC_HP_DV4
),
3171 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x3600,
3172 "HP dv4-7", STAC_HP_DV5
),
3173 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3610,
3174 "HP HDX", STAC_HP_HDX
), /* HDX18 */
3175 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x361a,
3176 "HP mini 1000", STAC_HP_M4
),
3177 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x361b,
3178 "HP HDX", STAC_HP_HDX
), /* HDX16 */
3179 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x3620,
3180 "HP dv6", STAC_HP_DV5
),
3181 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3061,
3182 "HP dv6", STAC_HP_DV5
), /* HP dv6-1110ax */
3183 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x363e,
3184 "HP DV6", STAC_HP_DV5
),
3185 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x7010,
3187 SND_PCI_QUIRK_VENDOR(PCI_VENDOR_ID_HP
, "HP", STAC_92HD71BXX_HP
),
3188 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0233,
3189 "unknown Dell", STAC_DELL_M4_1
),
3190 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0234,
3191 "unknown Dell", STAC_DELL_M4_1
),
3192 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0250,
3193 "unknown Dell", STAC_DELL_M4_1
),
3194 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x024f,
3195 "unknown Dell", STAC_DELL_M4_1
),
3196 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x024d,
3197 "unknown Dell", STAC_DELL_M4_1
),
3198 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0251,
3199 "unknown Dell", STAC_DELL_M4_1
),
3200 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0277,
3201 "unknown Dell", STAC_DELL_M4_1
),
3202 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0263,
3203 "unknown Dell", STAC_DELL_M4_2
),
3204 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0265,
3205 "unknown Dell", STAC_DELL_M4_2
),
3206 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0262,
3207 "unknown Dell", STAC_DELL_M4_2
),
3208 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0264,
3209 "unknown Dell", STAC_DELL_M4_2
),
3210 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02aa,
3211 "unknown Dell", STAC_DELL_M4_3
),
3215 static const struct hda_pintbl ref922x_pin_configs
[] = {
3216 { 0x0a, 0x01014010 },
3217 { 0x0b, 0x01016011 },
3218 { 0x0c, 0x01012012 },
3219 { 0x0d, 0x0221401f },
3220 { 0x0e, 0x01813122 },
3221 { 0x0f, 0x01011014 },
3222 { 0x10, 0x01441030 },
3223 { 0x11, 0x01c41030 },
3224 { 0x15, 0x40000100 },
3225 { 0x1b, 0x40000100 },
3230 STAC 922X pin configs for
3237 static const struct hda_pintbl dell_922x_d81_pin_configs
[] = {
3238 { 0x0a, 0x02214030 },
3239 { 0x0b, 0x01a19021 },
3240 { 0x0c, 0x01111012 },
3241 { 0x0d, 0x01114010 },
3242 { 0x0e, 0x02a19020 },
3243 { 0x0f, 0x01117011 },
3244 { 0x10, 0x400001f0 },
3245 { 0x11, 0x400001f1 },
3246 { 0x15, 0x01813122 },
3247 { 0x1b, 0x400001f2 },
3252 STAC 922X pin configs for
3256 static const struct hda_pintbl dell_922x_d82_pin_configs
[] = {
3257 { 0x0a, 0x02214030 },
3258 { 0x0b, 0x01a19021 },
3259 { 0x0c, 0x01111012 },
3260 { 0x0d, 0x01114010 },
3261 { 0x0e, 0x02a19020 },
3262 { 0x0f, 0x01117011 },
3263 { 0x10, 0x01451140 },
3264 { 0x11, 0x400001f0 },
3265 { 0x15, 0x01813122 },
3266 { 0x1b, 0x400001f1 },
3271 STAC 922X pin configs for
3274 static const struct hda_pintbl dell_922x_m81_pin_configs
[] = {
3275 { 0x0a, 0x0321101f },
3276 { 0x0b, 0x01112024 },
3277 { 0x0c, 0x01111222 },
3278 { 0x0d, 0x91174220 },
3279 { 0x0e, 0x03a11050 },
3280 { 0x0f, 0x01116221 },
3281 { 0x10, 0x90a70330 },
3282 { 0x11, 0x01452340 },
3283 { 0x15, 0x40C003f1 },
3284 { 0x1b, 0x405003f0 },
3289 STAC 9221 A1 pin configs for
3290 102801D7 (Dell XPS M1210)
3292 static const struct hda_pintbl dell_922x_m82_pin_configs
[] = {
3293 { 0x0a, 0x02211211 },
3294 { 0x0b, 0x408103ff },
3295 { 0x0c, 0x02a1123e },
3296 { 0x0d, 0x90100310 },
3297 { 0x0e, 0x408003f1 },
3298 { 0x0f, 0x0221121f },
3299 { 0x10, 0x03451340 },
3300 { 0x11, 0x40c003f2 },
3301 { 0x15, 0x508003f3 },
3302 { 0x1b, 0x405003f4 },
3306 static const struct hda_pintbl d945gtp3_pin_configs
[] = {
3307 { 0x0a, 0x0221401f },
3308 { 0x0b, 0x01a19022 },
3309 { 0x0c, 0x01813021 },
3310 { 0x0d, 0x01014010 },
3311 { 0x0e, 0x40000100 },
3312 { 0x0f, 0x40000100 },
3313 { 0x10, 0x40000100 },
3314 { 0x11, 0x40000100 },
3315 { 0x15, 0x02a19120 },
3316 { 0x1b, 0x40000100 },
3320 static const struct hda_pintbl d945gtp5_pin_configs
[] = {
3321 { 0x0a, 0x0221401f },
3322 { 0x0b, 0x01011012 },
3323 { 0x0c, 0x01813024 },
3324 { 0x0d, 0x01014010 },
3325 { 0x0e, 0x01a19021 },
3326 { 0x0f, 0x01016011 },
3327 { 0x10, 0x01452130 },
3328 { 0x11, 0x40000100 },
3329 { 0x15, 0x02a19320 },
3330 { 0x1b, 0x40000100 },
3334 static const struct hda_pintbl intel_mac_v1_pin_configs
[] = {
3335 { 0x0a, 0x0121e21f },
3336 { 0x0b, 0x400000ff },
3337 { 0x0c, 0x9017e110 },
3338 { 0x0d, 0x400000fd },
3339 { 0x0e, 0x400000fe },
3340 { 0x0f, 0x0181e020 },
3341 { 0x10, 0x1145e030 },
3342 { 0x11, 0x11c5e240 },
3343 { 0x15, 0x400000fc },
3344 { 0x1b, 0x400000fb },
3348 static const struct hda_pintbl intel_mac_v2_pin_configs
[] = {
3349 { 0x0a, 0x0121e21f },
3350 { 0x0b, 0x90a7012e },
3351 { 0x0c, 0x9017e110 },
3352 { 0x0d, 0x400000fd },
3353 { 0x0e, 0x400000fe },
3354 { 0x0f, 0x0181e020 },
3355 { 0x10, 0x1145e230 },
3356 { 0x11, 0x500000fa },
3357 { 0x15, 0x400000fc },
3358 { 0x1b, 0x400000fb },
3362 static const struct hda_pintbl intel_mac_v3_pin_configs
[] = {
3363 { 0x0a, 0x0121e21f },
3364 { 0x0b, 0x90a7012e },
3365 { 0x0c, 0x9017e110 },
3366 { 0x0d, 0x400000fd },
3367 { 0x0e, 0x400000fe },
3368 { 0x0f, 0x0181e020 },
3369 { 0x10, 0x1145e230 },
3370 { 0x11, 0x11c5e240 },
3371 { 0x15, 0x400000fc },
3372 { 0x1b, 0x400000fb },
3376 static const struct hda_pintbl intel_mac_v4_pin_configs
[] = {
3377 { 0x0a, 0x0321e21f },
3378 { 0x0b, 0x03a1e02e },
3379 { 0x0c, 0x9017e110 },
3380 { 0x0d, 0x9017e11f },
3381 { 0x0e, 0x400000fe },
3382 { 0x0f, 0x0381e020 },
3383 { 0x10, 0x1345e230 },
3384 { 0x11, 0x13c5e240 },
3385 { 0x15, 0x400000fc },
3386 { 0x1b, 0x400000fb },
3390 static const struct hda_pintbl intel_mac_v5_pin_configs
[] = {
3391 { 0x0a, 0x0321e21f },
3392 { 0x0b, 0x03a1e02e },
3393 { 0x0c, 0x9017e110 },
3394 { 0x0d, 0x9017e11f },
3395 { 0x0e, 0x400000fe },
3396 { 0x0f, 0x0381e020 },
3397 { 0x10, 0x1345e230 },
3398 { 0x11, 0x13c5e240 },
3399 { 0x15, 0x400000fc },
3400 { 0x1b, 0x400000fb },
3404 static const struct hda_pintbl ecs202_pin_configs
[] = {
3405 { 0x0a, 0x0221401f },
3406 { 0x0b, 0x02a19020 },
3407 { 0x0c, 0x01a19020 },
3408 { 0x0d, 0x01114010 },
3409 { 0x0e, 0x408000f0 },
3410 { 0x0f, 0x01813022 },
3411 { 0x10, 0x074510a0 },
3412 { 0x11, 0x40c400f1 },
3413 { 0x15, 0x9037012e },
3414 { 0x1b, 0x40e000f2 },
3418 /* codec SSIDs for Intel Mac sharing the same PCI SSID 8384:7680 */
3419 static const struct snd_pci_quirk stac922x_intel_mac_fixup_tbl
[] = {
3420 SND_PCI_QUIRK(0x0000, 0x0100, "Mac Mini", STAC_INTEL_MAC_V3
),
3421 SND_PCI_QUIRK(0x106b, 0x0800, "Mac", STAC_INTEL_MAC_V1
),
3422 SND_PCI_QUIRK(0x106b, 0x0600, "Mac", STAC_INTEL_MAC_V2
),
3423 SND_PCI_QUIRK(0x106b, 0x0700, "Mac", STAC_INTEL_MAC_V2
),
3424 SND_PCI_QUIRK(0x106b, 0x0e00, "Mac", STAC_INTEL_MAC_V3
),
3425 SND_PCI_QUIRK(0x106b, 0x0f00, "Mac", STAC_INTEL_MAC_V3
),
3426 SND_PCI_QUIRK(0x106b, 0x1600, "Mac", STAC_INTEL_MAC_V3
),
3427 SND_PCI_QUIRK(0x106b, 0x1700, "Mac", STAC_INTEL_MAC_V3
),
3428 SND_PCI_QUIRK(0x106b, 0x0200, "Mac", STAC_INTEL_MAC_V3
),
3429 SND_PCI_QUIRK(0x106b, 0x1e00, "Mac", STAC_INTEL_MAC_V3
),
3430 SND_PCI_QUIRK(0x106b, 0x1a00, "Mac", STAC_INTEL_MAC_V4
),
3431 SND_PCI_QUIRK(0x106b, 0x0a00, "Mac", STAC_INTEL_MAC_V5
),
3432 SND_PCI_QUIRK(0x106b, 0x2200, "Mac", STAC_INTEL_MAC_V5
),
3436 static const struct hda_fixup stac922x_fixups
[];
3438 /* remap the fixup from codec SSID and apply it */
3439 static void stac922x_fixup_intel_mac_auto(struct hda_codec
*codec
,
3440 const struct hda_fixup
*fix
,
3443 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
3445 snd_hda_pick_fixup(codec
, NULL
, stac922x_intel_mac_fixup_tbl
,
3447 if (codec
->fixup_id
!= STAC_INTEL_MAC_AUTO
)
3448 snd_hda_apply_fixup(codec
, action
);
3451 static void stac922x_fixup_intel_mac_gpio(struct hda_codec
*codec
,
3452 const struct hda_fixup
*fix
,
3455 struct sigmatel_spec
*spec
= codec
->spec
;
3457 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3458 spec
->gpio_mask
= spec
->gpio_dir
= 0x03;
3459 spec
->gpio_data
= 0x03;
3463 static const struct hda_fixup stac922x_fixups
[] = {
3465 .type
= HDA_FIXUP_PINS
,
3466 .v
.pins
= ref922x_pin_configs
,
3469 .type
= HDA_FIXUP_PINS
,
3470 .v
.pins
= d945gtp3_pin_configs
,
3473 .type
= HDA_FIXUP_PINS
,
3474 .v
.pins
= d945gtp5_pin_configs
,
3476 [STAC_INTEL_MAC_AUTO
] = {
3477 .type
= HDA_FIXUP_FUNC
,
3478 .v
.func
= stac922x_fixup_intel_mac_auto
,
3480 [STAC_INTEL_MAC_V1
] = {
3481 .type
= HDA_FIXUP_PINS
,
3482 .v
.pins
= intel_mac_v1_pin_configs
,
3484 .chain_id
= STAC_922X_INTEL_MAC_GPIO
,
3486 [STAC_INTEL_MAC_V2
] = {
3487 .type
= HDA_FIXUP_PINS
,
3488 .v
.pins
= intel_mac_v2_pin_configs
,
3490 .chain_id
= STAC_922X_INTEL_MAC_GPIO
,
3492 [STAC_INTEL_MAC_V3
] = {
3493 .type
= HDA_FIXUP_PINS
,
3494 .v
.pins
= intel_mac_v3_pin_configs
,
3496 .chain_id
= STAC_922X_INTEL_MAC_GPIO
,
3498 [STAC_INTEL_MAC_V4
] = {
3499 .type
= HDA_FIXUP_PINS
,
3500 .v
.pins
= intel_mac_v4_pin_configs
,
3502 .chain_id
= STAC_922X_INTEL_MAC_GPIO
,
3504 [STAC_INTEL_MAC_V5
] = {
3505 .type
= HDA_FIXUP_PINS
,
3506 .v
.pins
= intel_mac_v5_pin_configs
,
3508 .chain_id
= STAC_922X_INTEL_MAC_GPIO
,
3510 [STAC_922X_INTEL_MAC_GPIO
] = {
3511 .type
= HDA_FIXUP_FUNC
,
3512 .v
.func
= stac922x_fixup_intel_mac_gpio
,
3515 .type
= HDA_FIXUP_PINS
,
3516 .v
.pins
= ecs202_pin_configs
,
3518 [STAC_922X_DELL_D81
] = {
3519 .type
= HDA_FIXUP_PINS
,
3520 .v
.pins
= dell_922x_d81_pin_configs
,
3522 [STAC_922X_DELL_D82
] = {
3523 .type
= HDA_FIXUP_PINS
,
3524 .v
.pins
= dell_922x_d82_pin_configs
,
3526 [STAC_922X_DELL_M81
] = {
3527 .type
= HDA_FIXUP_PINS
,
3528 .v
.pins
= dell_922x_m81_pin_configs
,
3530 [STAC_922X_DELL_M82
] = {
3531 .type
= HDA_FIXUP_PINS
,
3532 .v
.pins
= dell_922x_m82_pin_configs
,
3536 static const struct hda_model_fixup stac922x_models
[] = {
3537 { .id
= STAC_D945_REF
, .name
= "ref" },
3538 { .id
= STAC_D945GTP5
, .name
= "5stack" },
3539 { .id
= STAC_D945GTP3
, .name
= "3stack" },
3540 { .id
= STAC_INTEL_MAC_V1
, .name
= "intel-mac-v1" },
3541 { .id
= STAC_INTEL_MAC_V2
, .name
= "intel-mac-v2" },
3542 { .id
= STAC_INTEL_MAC_V3
, .name
= "intel-mac-v3" },
3543 { .id
= STAC_INTEL_MAC_V4
, .name
= "intel-mac-v4" },
3544 { .id
= STAC_INTEL_MAC_V5
, .name
= "intel-mac-v5" },
3545 { .id
= STAC_INTEL_MAC_AUTO
, .name
= "intel-mac-auto" },
3546 { .id
= STAC_ECS_202
, .name
= "ecs202" },
3547 { .id
= STAC_922X_DELL_D81
, .name
= "dell-d81" },
3548 { .id
= STAC_922X_DELL_D82
, .name
= "dell-d82" },
3549 { .id
= STAC_922X_DELL_M81
, .name
= "dell-m81" },
3550 { .id
= STAC_922X_DELL_M82
, .name
= "dell-m82" },
3551 /* for backward compatibility */
3552 { .id
= STAC_INTEL_MAC_V3
, .name
= "macmini" },
3553 { .id
= STAC_INTEL_MAC_V5
, .name
= "macbook" },
3554 { .id
= STAC_INTEL_MAC_V3
, .name
= "macbook-pro-v1" },
3555 { .id
= STAC_INTEL_MAC_V3
, .name
= "macbook-pro" },
3556 { .id
= STAC_INTEL_MAC_V2
, .name
= "imac-intel" },
3557 { .id
= STAC_INTEL_MAC_V3
, .name
= "imac-intel-20" },
3561 static const struct snd_pci_quirk stac922x_fixup_tbl
[] = {
3562 /* SigmaTel reference board */
3563 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
3564 "DFI LanParty", STAC_D945_REF
),
3565 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
3566 "DFI LanParty", STAC_D945_REF
),
3567 /* Intel 945G based systems */
3568 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0101,
3569 "Intel D945G", STAC_D945GTP3
),
3570 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0202,
3571 "Intel D945G", STAC_D945GTP3
),
3572 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0606,
3573 "Intel D945G", STAC_D945GTP3
),
3574 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0601,
3575 "Intel D945G", STAC_D945GTP3
),
3576 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0111,
3577 "Intel D945G", STAC_D945GTP3
),
3578 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1115,
3579 "Intel D945G", STAC_D945GTP3
),
3580 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1116,
3581 "Intel D945G", STAC_D945GTP3
),
3582 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1117,
3583 "Intel D945G", STAC_D945GTP3
),
3584 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1118,
3585 "Intel D945G", STAC_D945GTP3
),
3586 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1119,
3587 "Intel D945G", STAC_D945GTP3
),
3588 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x8826,
3589 "Intel D945G", STAC_D945GTP3
),
3590 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5049,
3591 "Intel D945G", STAC_D945GTP3
),
3592 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5055,
3593 "Intel D945G", STAC_D945GTP3
),
3594 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5048,
3595 "Intel D945G", STAC_D945GTP3
),
3596 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0110,
3597 "Intel D945G", STAC_D945GTP3
),
3598 /* Intel D945G 5-stack systems */
3599 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0404,
3600 "Intel D945G", STAC_D945GTP5
),
3601 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0303,
3602 "Intel D945G", STAC_D945GTP5
),
3603 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0013,
3604 "Intel D945G", STAC_D945GTP5
),
3605 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0417,
3606 "Intel D945G", STAC_D945GTP5
),
3607 /* Intel 945P based systems */
3608 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0b0b,
3609 "Intel D945P", STAC_D945GTP3
),
3610 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0112,
3611 "Intel D945P", STAC_D945GTP3
),
3612 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0d0d,
3613 "Intel D945P", STAC_D945GTP3
),
3614 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0909,
3615 "Intel D945P", STAC_D945GTP3
),
3616 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0505,
3617 "Intel D945P", STAC_D945GTP3
),
3618 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0707,
3619 "Intel D945P", STAC_D945GTP5
),
3621 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0204,
3622 "Intel D945", STAC_D945_REF
),
3625 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
3626 SND_PCI_QUIRK(0x8384, 0x7680, "Mac", STAC_INTEL_MAC_AUTO
),
3629 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01a7,
3630 "unknown Dell", STAC_922X_DELL_D81
),
3631 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01a9,
3632 "unknown Dell", STAC_922X_DELL_D81
),
3633 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ab,
3634 "unknown Dell", STAC_922X_DELL_D81
),
3635 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ac,
3636 "unknown Dell", STAC_922X_DELL_D82
),
3637 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01bf,
3638 "unknown Dell", STAC_922X_DELL_M81
),
3639 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d0,
3640 "unknown Dell", STAC_922X_DELL_D82
),
3641 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d1,
3642 "unknown Dell", STAC_922X_DELL_D81
),
3643 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d2,
3644 "unknown Dell", STAC_922X_DELL_D81
),
3645 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d7,
3646 "Dell XPS M1210", STAC_922X_DELL_M82
),
3647 /* ECS/PC Chips boards */
3648 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
3649 "ECS/PC chips", STAC_ECS_202
),
3653 static const struct hda_pintbl ref927x_pin_configs
[] = {
3654 { 0x0a, 0x02214020 },
3655 { 0x0b, 0x02a19080 },
3656 { 0x0c, 0x0181304e },
3657 { 0x0d, 0x01014010 },
3658 { 0x0e, 0x01a19040 },
3659 { 0x0f, 0x01011012 },
3660 { 0x10, 0x01016011 },
3661 { 0x11, 0x0101201f },
3662 { 0x12, 0x183301f0 },
3663 { 0x13, 0x18a001f0 },
3664 { 0x14, 0x18a001f0 },
3665 { 0x21, 0x01442070 },
3666 { 0x22, 0x01c42190 },
3667 { 0x23, 0x40000100 },
3671 static const struct hda_pintbl d965_3st_pin_configs
[] = {
3672 { 0x0a, 0x0221401f },
3673 { 0x0b, 0x02a19120 },
3674 { 0x0c, 0x40000100 },
3675 { 0x0d, 0x01014011 },
3676 { 0x0e, 0x01a19021 },
3677 { 0x0f, 0x01813024 },
3678 { 0x10, 0x40000100 },
3679 { 0x11, 0x40000100 },
3680 { 0x12, 0x40000100 },
3681 { 0x13, 0x40000100 },
3682 { 0x14, 0x40000100 },
3683 { 0x21, 0x40000100 },
3684 { 0x22, 0x40000100 },
3685 { 0x23, 0x40000100 },
3689 static const struct hda_pintbl d965_5st_pin_configs
[] = {
3690 { 0x0a, 0x02214020 },
3691 { 0x0b, 0x02a19080 },
3692 { 0x0c, 0x0181304e },
3693 { 0x0d, 0x01014010 },
3694 { 0x0e, 0x01a19040 },
3695 { 0x0f, 0x01011012 },
3696 { 0x10, 0x01016011 },
3697 { 0x11, 0x40000100 },
3698 { 0x12, 0x40000100 },
3699 { 0x13, 0x40000100 },
3700 { 0x14, 0x40000100 },
3701 { 0x21, 0x01442070 },
3702 { 0x22, 0x40000100 },
3703 { 0x23, 0x40000100 },
3707 static const struct hda_pintbl d965_5st_no_fp_pin_configs
[] = {
3708 { 0x0a, 0x40000100 },
3709 { 0x0b, 0x40000100 },
3710 { 0x0c, 0x0181304e },
3711 { 0x0d, 0x01014010 },
3712 { 0x0e, 0x01a19040 },
3713 { 0x0f, 0x01011012 },
3714 { 0x10, 0x01016011 },
3715 { 0x11, 0x40000100 },
3716 { 0x12, 0x40000100 },
3717 { 0x13, 0x40000100 },
3718 { 0x14, 0x40000100 },
3719 { 0x21, 0x01442070 },
3720 { 0x22, 0x40000100 },
3721 { 0x23, 0x40000100 },
3725 static const struct hda_pintbl dell_3st_pin_configs
[] = {
3726 { 0x0a, 0x02211230 },
3727 { 0x0b, 0x02a11220 },
3728 { 0x0c, 0x01a19040 },
3729 { 0x0d, 0x01114210 },
3730 { 0x0e, 0x01111212 },
3731 { 0x0f, 0x01116211 },
3732 { 0x10, 0x01813050 },
3733 { 0x11, 0x01112214 },
3734 { 0x12, 0x403003fa },
3735 { 0x13, 0x90a60040 },
3736 { 0x14, 0x90a60040 },
3737 { 0x21, 0x404003fb },
3738 { 0x22, 0x40c003fc },
3739 { 0x23, 0x40000100 },
3743 static void stac927x_fixup_ref_no_jd(struct hda_codec
*codec
,
3744 const struct hda_fixup
*fix
, int action
)
3746 /* no jack detecion for ref-no-jd model */
3747 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
3748 codec
->no_jack_detect
= 1;
3751 static void stac927x_fixup_ref(struct hda_codec
*codec
,
3752 const struct hda_fixup
*fix
, int action
)
3754 struct sigmatel_spec
*spec
= codec
->spec
;
3756 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3757 snd_hda_apply_pincfgs(codec
, ref927x_pin_configs
);
3758 spec
->eapd_mask
= spec
->gpio_mask
= 0;
3759 spec
->gpio_dir
= spec
->gpio_data
= 0;
3763 static void stac927x_fixup_dell_dmic(struct hda_codec
*codec
,
3764 const struct hda_fixup
*fix
, int action
)
3766 struct sigmatel_spec
*spec
= codec
->spec
;
3768 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
3771 if (codec
->subsystem_id
!= 0x1028022f) {
3772 /* GPIO2 High = Enable EAPD */
3773 spec
->eapd_mask
= spec
->gpio_mask
= 0x04;
3774 spec
->gpio_dir
= spec
->gpio_data
= 0x04;
3777 snd_hda_add_verbs(codec
, dell_3st_core_init
);
3778 spec
->volknob_init
= 1;
3781 static void stac927x_fixup_volknob(struct hda_codec
*codec
,
3782 const struct hda_fixup
*fix
, int action
)
3784 struct sigmatel_spec
*spec
= codec
->spec
;
3786 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
3787 snd_hda_add_verbs(codec
, stac927x_volknob_core_init
);
3788 spec
->volknob_init
= 1;
3792 static const struct hda_fixup stac927x_fixups
[] = {
3793 [STAC_D965_REF_NO_JD
] = {
3794 .type
= HDA_FIXUP_FUNC
,
3795 .v
.func
= stac927x_fixup_ref_no_jd
,
3797 .chain_id
= STAC_D965_REF
,
3800 .type
= HDA_FIXUP_FUNC
,
3801 .v
.func
= stac927x_fixup_ref
,
3804 .type
= HDA_FIXUP_PINS
,
3805 .v
.pins
= d965_3st_pin_configs
,
3807 .chain_id
= STAC_D965_VERBS
,
3810 .type
= HDA_FIXUP_PINS
,
3811 .v
.pins
= d965_5st_pin_configs
,
3813 .chain_id
= STAC_D965_VERBS
,
3815 [STAC_D965_VERBS
] = {
3816 .type
= HDA_FIXUP_VERBS
,
3817 .v
.verbs
= d965_core_init
,
3819 [STAC_D965_5ST_NO_FP
] = {
3820 .type
= HDA_FIXUP_PINS
,
3821 .v
.pins
= d965_5st_no_fp_pin_configs
,
3824 .type
= HDA_FIXUP_PINS
,
3825 .v
.pins
= dell_3st_pin_configs
,
3827 .chain_id
= STAC_927X_DELL_DMIC
,
3829 [STAC_DELL_BIOS
] = {
3830 .type
= HDA_FIXUP_PINS
,
3831 .v
.pins
= (const struct hda_pintbl
[]) {
3832 /* correct the front output jack as a hp out */
3833 { 0x0f, 0x0221101f },
3834 /* correct the front input jack as a mic */
3835 { 0x0e, 0x02a79130 },
3839 .chain_id
= STAC_927X_DELL_DMIC
,
3841 [STAC_DELL_BIOS_AMIC
] = {
3842 .type
= HDA_FIXUP_PINS
,
3843 .v
.pins
= (const struct hda_pintbl
[]) {
3844 /* configure the analog microphone on some laptops */
3845 { 0x0c, 0x90a79130 },
3849 .chain_id
= STAC_DELL_BIOS
,
3851 [STAC_DELL_BIOS_SPDIF
] = {
3852 .type
= HDA_FIXUP_PINS
,
3853 .v
.pins
= (const struct hda_pintbl
[]) {
3854 /* correct the device field to SPDIF out */
3855 { 0x21, 0x01442070 },
3859 .chain_id
= STAC_DELL_BIOS
,
3861 [STAC_927X_DELL_DMIC
] = {
3862 .type
= HDA_FIXUP_FUNC
,
3863 .v
.func
= stac927x_fixup_dell_dmic
,
3865 [STAC_927X_VOLKNOB
] = {
3866 .type
= HDA_FIXUP_FUNC
,
3867 .v
.func
= stac927x_fixup_volknob
,
3871 static const struct hda_model_fixup stac927x_models
[] = {
3872 { .id
= STAC_D965_REF_NO_JD
, .name
= "ref-no-jd" },
3873 { .id
= STAC_D965_REF
, .name
= "ref" },
3874 { .id
= STAC_D965_3ST
, .name
= "3stack" },
3875 { .id
= STAC_D965_5ST
, .name
= "5stack" },
3876 { .id
= STAC_D965_5ST_NO_FP
, .name
= "5stack-no-fp" },
3877 { .id
= STAC_DELL_3ST
, .name
= "dell-3stack" },
3878 { .id
= STAC_DELL_BIOS
, .name
= "dell-bios" },
3879 { .id
= STAC_DELL_BIOS_AMIC
, .name
= "dell-bios-amic" },
3880 { .id
= STAC_927X_VOLKNOB
, .name
= "volknob" },
3884 static const struct snd_pci_quirk stac927x_fixup_tbl
[] = {
3885 /* SigmaTel reference board */
3886 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
3887 "DFI LanParty", STAC_D965_REF
),
3888 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
3889 "DFI LanParty", STAC_D965_REF
),
3890 /* Intel 946 based systems */
3891 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x3d01, "Intel D946", STAC_D965_3ST
),
3892 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0xa301, "Intel D946", STAC_D965_3ST
),
3893 /* 965 based 3 stack systems */
3894 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2100,
3895 "Intel D965", STAC_D965_3ST
),
3896 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2000,
3897 "Intel D965", STAC_D965_3ST
),
3898 /* Dell 3 stack systems */
3899 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST
),
3900 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ed, "Dell ", STAC_DELL_3ST
),
3901 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f4, "Dell ", STAC_DELL_3ST
),
3902 /* Dell 3 stack systems with verb table in BIOS */
3903 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS
),
3904 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f7, "Dell XPS M1730", STAC_DELL_BIOS
),
3905 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS
),
3906 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x022e, "Dell ", STAC_DELL_BIOS_SPDIF
),
3907 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS
),
3908 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0242, "Dell ", STAC_DELL_BIOS
),
3909 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0243, "Dell ", STAC_DELL_BIOS
),
3910 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02ff, "Dell ", STAC_DELL_BIOS
),
3911 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS_SPDIF
),
3912 /* 965 based 5 stack systems */
3913 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2300,
3914 "Intel D965", STAC_D965_5ST
),
3915 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2500,
3916 "Intel D965", STAC_D965_5ST
),
3917 /* volume-knob fixes */
3918 SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB
),
3922 static const struct hda_pintbl ref9205_pin_configs
[] = {
3923 { 0x0a, 0x40000100 },
3924 { 0x0b, 0x40000100 },
3925 { 0x0c, 0x01016011 },
3926 { 0x0d, 0x01014010 },
3927 { 0x0e, 0x01813122 },
3928 { 0x0f, 0x01a19021 },
3929 { 0x14, 0x01019020 },
3930 { 0x16, 0x40000100 },
3931 { 0x17, 0x90a000f0 },
3932 { 0x18, 0x90a000f0 },
3933 { 0x21, 0x01441030 },
3934 { 0x22, 0x01c41030 },
3939 STAC 9205 pin configs for
3946 10280228 (Dell Vostro 1500)
3947 10280229 (Dell Vostro 1700)
3949 static const struct hda_pintbl dell_9205_m42_pin_configs
[] = {
3950 { 0x0a, 0x0321101F },
3951 { 0x0b, 0x03A11020 },
3952 { 0x0c, 0x400003FA },
3953 { 0x0d, 0x90170310 },
3954 { 0x0e, 0x400003FB },
3955 { 0x0f, 0x400003FC },
3956 { 0x14, 0x400003FD },
3957 { 0x16, 0x40F000F9 },
3958 { 0x17, 0x90A60330 },
3959 { 0x18, 0x400003FF },
3960 { 0x21, 0x0144131F },
3961 { 0x22, 0x40C003FE },
3966 STAC 9205 pin configs for
3970 102801FF (Dell Precision M4300)
3975 static const struct hda_pintbl dell_9205_m43_pin_configs
[] = {
3976 { 0x0a, 0x0321101f },
3977 { 0x0b, 0x03a11020 },
3978 { 0x0c, 0x90a70330 },
3979 { 0x0d, 0x90170310 },
3980 { 0x0e, 0x400000fe },
3981 { 0x0f, 0x400000ff },
3982 { 0x14, 0x400000fd },
3983 { 0x16, 0x40f000f9 },
3984 { 0x17, 0x400000fa },
3985 { 0x18, 0x400000fc },
3986 { 0x21, 0x0144131f },
3987 { 0x22, 0x40c003f8 },
3988 /* Enable SPDIF in/out */
3989 { 0x1f, 0x01441030 },
3990 { 0x20, 0x1c410030 },
3994 static const struct hda_pintbl dell_9205_m44_pin_configs
[] = {
3995 { 0x0a, 0x0421101f },
3996 { 0x0b, 0x04a11020 },
3997 { 0x0c, 0x400003fa },
3998 { 0x0d, 0x90170310 },
3999 { 0x0e, 0x400003fb },
4000 { 0x0f, 0x400003fc },
4001 { 0x14, 0x400003fd },
4002 { 0x16, 0x400003f9 },
4003 { 0x17, 0x90a60330 },
4004 { 0x18, 0x400003ff },
4005 { 0x21, 0x01441340 },
4006 { 0x22, 0x40c003fe },
4010 static void stac9205_fixup_ref(struct hda_codec
*codec
,
4011 const struct hda_fixup
*fix
, int action
)
4013 struct sigmatel_spec
*spec
= codec
->spec
;
4015 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4016 snd_hda_apply_pincfgs(codec
, ref9205_pin_configs
);
4017 /* SPDIF-In enabled */
4018 spec
->eapd_mask
= spec
->gpio_mask
= spec
->gpio_dir
= 0;
4022 static void stac9205_fixup_dell_m43(struct hda_codec
*codec
,
4023 const struct hda_fixup
*fix
, int action
)
4025 struct sigmatel_spec
*spec
= codec
->spec
;
4026 struct hda_jack_tbl
*jack
;
4028 if (action
== HDA_FIXUP_ACT_PRE_PROBE
) {
4029 snd_hda_apply_pincfgs(codec
, dell_9205_m43_pin_configs
);
4031 /* Enable unsol response for GPIO4/Dock HP connection */
4032 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
4033 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK
, 0x10);
4034 snd_hda_jack_detect_enable_callback(codec
, codec
->afg
,
4037 jack
= snd_hda_jack_tbl_get(codec
, codec
->afg
);
4039 jack
->private_data
= 0x01;
4041 spec
->gpio_dir
= 0x0b;
4042 spec
->eapd_mask
= 0x01;
4043 spec
->gpio_mask
= 0x1b;
4044 spec
->gpio_mute
= 0x10;
4045 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
4048 spec
->gpio_data
= 0x01;
4052 static void stac9205_fixup_eapd(struct hda_codec
*codec
,
4053 const struct hda_fixup
*fix
, int action
)
4055 struct sigmatel_spec
*spec
= codec
->spec
;
4057 if (action
== HDA_FIXUP_ACT_PRE_PROBE
)
4058 spec
->eapd_switch
= 0;
4061 static const struct hda_fixup stac9205_fixups
[] = {
4063 .type
= HDA_FIXUP_FUNC
,
4064 .v
.func
= stac9205_fixup_ref
,
4066 [STAC_9205_DELL_M42
] = {
4067 .type
= HDA_FIXUP_PINS
,
4068 .v
.pins
= dell_9205_m42_pin_configs
,
4070 [STAC_9205_DELL_M43
] = {
4071 .type
= HDA_FIXUP_FUNC
,
4072 .v
.func
= stac9205_fixup_dell_m43
,
4074 [STAC_9205_DELL_M44
] = {
4075 .type
= HDA_FIXUP_PINS
,
4076 .v
.pins
= dell_9205_m44_pin_configs
,
4078 [STAC_9205_EAPD
] = {
4079 .type
= HDA_FIXUP_FUNC
,
4080 .v
.func
= stac9205_fixup_eapd
,
4085 static const struct hda_model_fixup stac9205_models
[] = {
4086 { .id
= STAC_9205_REF
, .name
= "ref" },
4087 { .id
= STAC_9205_DELL_M42
, .name
= "dell-m42" },
4088 { .id
= STAC_9205_DELL_M43
, .name
= "dell-m43" },
4089 { .id
= STAC_9205_DELL_M44
, .name
= "dell-m44" },
4090 { .id
= STAC_9205_EAPD
, .name
= "eapd" },
4094 static const struct snd_pci_quirk stac9205_fixup_tbl
[] = {
4095 /* SigmaTel reference board */
4096 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
4097 "DFI LanParty", STAC_9205_REF
),
4098 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0xfb30,
4099 "SigmaTel", STAC_9205_REF
),
4100 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
4101 "DFI LanParty", STAC_9205_REF
),
4103 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f1,
4104 "unknown Dell", STAC_9205_DELL_M42
),
4105 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f2,
4106 "unknown Dell", STAC_9205_DELL_M42
),
4107 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f8,
4108 "Dell Precision", STAC_9205_DELL_M43
),
4109 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f9,
4110 "Dell Precision", STAC_9205_DELL_M43
),
4111 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fa,
4112 "Dell Precision", STAC_9205_DELL_M43
),
4113 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fc,
4114 "unknown Dell", STAC_9205_DELL_M42
),
4115 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fd,
4116 "unknown Dell", STAC_9205_DELL_M42
),
4117 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fe,
4118 "Dell Precision", STAC_9205_DELL_M43
),
4119 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ff,
4120 "Dell Precision M4300", STAC_9205_DELL_M43
),
4121 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0204,
4122 "unknown Dell", STAC_9205_DELL_M42
),
4123 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0206,
4124 "Dell Precision", STAC_9205_DELL_M43
),
4125 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x021b,
4126 "Dell Precision", STAC_9205_DELL_M43
),
4127 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x021c,
4128 "Dell Precision", STAC_9205_DELL_M43
),
4129 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x021f,
4130 "Dell Inspiron", STAC_9205_DELL_M44
),
4131 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0228,
4132 "Dell Vostro 1500", STAC_9205_DELL_M42
),
4133 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0229,
4134 "Dell Vostro 1700", STAC_9205_DELL_M42
),
4136 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD
),
4137 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD
),
4141 static int stac_parse_auto_config(struct hda_codec
*codec
)
4143 struct sigmatel_spec
*spec
= codec
->spec
;
4147 if (spec
->headset_jack
)
4148 flags
|= HDA_PINCFG_HEADSET_MIC
;
4150 err
= snd_hda_parse_pin_defcfg(codec
, &spec
->gen
.autocfg
, NULL
, flags
);
4155 spec
->gen
.pcm_playback_hook
= stac_playback_pcm_hook
;
4156 spec
->gen
.pcm_capture_hook
= stac_capture_pcm_hook
;
4158 spec
->gen
.automute_hook
= stac_update_outputs
;
4159 spec
->gen
.hp_automute_hook
= stac_hp_automute
;
4160 spec
->gen
.line_automute_hook
= stac_line_automute
;
4161 spec
->gen
.mic_autoswitch_hook
= stac_mic_autoswitch
;
4163 err
= snd_hda_gen_parse_auto_config(codec
, &spec
->gen
.autocfg
);
4167 /* minimum value is actually mute */
4168 spec
->gen
.vmaster_tlv
[3] |= TLV_DB_SCALE_MUTE
;
4170 /* setup analog beep controls */
4171 if (spec
->anabeep_nid
> 0) {
4172 err
= stac_auto_create_beep_ctls(codec
,
4178 /* setup digital beep controls and input device */
4179 #ifdef CONFIG_SND_HDA_INPUT_BEEP
4180 if (spec
->gen
.beep_nid
) {
4181 hda_nid_t nid
= spec
->gen
.beep_nid
;
4184 err
= stac_auto_create_beep_ctls(codec
, nid
);
4188 /* IDT/STAC codecs have linear beep tone parameter */
4189 codec
->beep
->linear_tone
= spec
->linear_tone_beep
;
4190 /* if no beep switch is available, make its own one */
4191 caps
= query_amp_caps(codec
, nid
, HDA_OUTPUT
);
4192 if (!(caps
& AC_AMPCAP_MUTE
)) {
4193 err
= stac_beep_switch_ctl(codec
);
4202 spec
->gen
.vmaster_mute
.hook
= stac_vmaster_hook
;
4204 if (spec
->aloopback_ctl
&&
4205 snd_hda_get_bool_hint(codec
, "loopback") == 1) {
4206 if (!snd_hda_gen_add_kctl(&spec
->gen
, NULL
, spec
->aloopback_ctl
))
4210 if (spec
->have_spdif_mux
) {
4211 err
= stac_create_spdif_mux_ctls(codec
);
4219 static int stac_build_controls(struct hda_codec
*codec
)
4221 int err
= snd_hda_gen_build_controls(codec
);
4225 stac_init_power_map(codec
);
4229 static int stac_init(struct hda_codec
*codec
)
4231 struct sigmatel_spec
*spec
= codec
->spec
;
4234 /* override some hints */
4235 stac_store_hints(codec
);
4238 /* turn on EAPD statically when spec->eapd_switch isn't set.
4239 * otherwise, unsol event will turn it on/off dynamically
4241 if (!spec
->eapd_switch
)
4242 spec
->gpio_data
|= spec
->eapd_mask
;
4243 stac_gpio_set(codec
, spec
->gpio_mask
, spec
->gpio_dir
, spec
->gpio_data
);
4245 snd_hda_gen_init(codec
);
4247 /* sync the power-map */
4249 snd_hda_codec_write(codec
, codec
->afg
, 0,
4250 AC_VERB_IDT_SET_POWER_MAP
,
4251 spec
->power_map_bits
);
4253 /* power down inactive ADCs */
4254 if (spec
->powerdown_adcs
) {
4255 for (i
= 0; i
< spec
->gen
.num_all_adcs
; i
++) {
4256 if (spec
->active_adcs
& (1 << i
))
4258 snd_hda_codec_write(codec
, spec
->gen
.all_adcs
[i
], 0,
4259 AC_VERB_SET_POWER_STATE
,
4267 static void stac_shutup(struct hda_codec
*codec
)
4269 struct sigmatel_spec
*spec
= codec
->spec
;
4271 snd_hda_shutup_pins(codec
);
4273 if (spec
->eapd_mask
)
4274 stac_gpio_set(codec
, spec
->gpio_mask
,
4275 spec
->gpio_dir
, spec
->gpio_data
&
4279 #define stac_free snd_hda_gen_free
4281 #ifdef CONFIG_PROC_FS
4282 static void stac92hd_proc_hook(struct snd_info_buffer
*buffer
,
4283 struct hda_codec
*codec
, hda_nid_t nid
)
4285 if (nid
== codec
->afg
)
4286 snd_iprintf(buffer
, "Power-Map: 0x%02x\n",
4287 snd_hda_codec_read(codec
, nid
, 0,
4288 AC_VERB_IDT_GET_POWER_MAP
, 0));
4291 static void analog_loop_proc_hook(struct snd_info_buffer
*buffer
,
4292 struct hda_codec
*codec
,
4295 snd_iprintf(buffer
, "Analog Loopback: 0x%02x\n",
4296 snd_hda_codec_read(codec
, codec
->afg
, 0, verb
, 0));
4299 /* stac92hd71bxx, stac92hd73xx */
4300 static void stac92hd7x_proc_hook(struct snd_info_buffer
*buffer
,
4301 struct hda_codec
*codec
, hda_nid_t nid
)
4303 stac92hd_proc_hook(buffer
, codec
, nid
);
4304 if (nid
== codec
->afg
)
4305 analog_loop_proc_hook(buffer
, codec
, 0xfa0);
4308 static void stac9205_proc_hook(struct snd_info_buffer
*buffer
,
4309 struct hda_codec
*codec
, hda_nid_t nid
)
4311 if (nid
== codec
->afg
)
4312 analog_loop_proc_hook(buffer
, codec
, 0xfe0);
4315 static void stac927x_proc_hook(struct snd_info_buffer
*buffer
,
4316 struct hda_codec
*codec
, hda_nid_t nid
)
4318 if (nid
== codec
->afg
)
4319 analog_loop_proc_hook(buffer
, codec
, 0xfeb);
4322 #define stac92hd_proc_hook NULL
4323 #define stac92hd7x_proc_hook NULL
4324 #define stac9205_proc_hook NULL
4325 #define stac927x_proc_hook NULL
4329 static int stac_suspend(struct hda_codec
*codec
)
4335 static void stac_set_power_state(struct hda_codec
*codec
, hda_nid_t fg
,
4336 unsigned int power_state
)
4338 unsigned int afg_power_state
= power_state
;
4339 struct sigmatel_spec
*spec
= codec
->spec
;
4341 if (power_state
== AC_PWRST_D3
) {
4342 if (spec
->vref_mute_led_nid
) {
4343 /* with vref-out pin used for mute led control
4344 * codec AFG is prevented from D3 state
4346 afg_power_state
= AC_PWRST_D1
;
4348 /* this delay seems necessary to avoid click noise at power-down */
4351 snd_hda_codec_read(codec
, fg
, 0, AC_VERB_SET_POWER_STATE
,
4353 snd_hda_codec_set_power_to_all(codec
, fg
, power_state
);
4356 #define stac_suspend NULL
4357 #define stac_set_power_state NULL
4358 #endif /* CONFIG_PM */
4360 static const struct hda_codec_ops stac_patch_ops
= {
4361 .build_controls
= stac_build_controls
,
4362 .build_pcms
= snd_hda_gen_build_pcms
,
4365 .unsol_event
= snd_hda_jack_unsol_event
,
4367 .suspend
= stac_suspend
,
4369 .reboot_notify
= stac_shutup
,
4372 static int alloc_stac_spec(struct hda_codec
*codec
)
4374 struct sigmatel_spec
*spec
;
4376 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
4379 snd_hda_gen_spec_init(&spec
->gen
);
4381 codec
->no_trigger_sense
= 1; /* seems common with STAC/IDT codecs */
4385 static int patch_stac9200(struct hda_codec
*codec
)
4387 struct sigmatel_spec
*spec
;
4390 err
= alloc_stac_spec(codec
);
4395 spec
->linear_tone_beep
= 1;
4396 spec
->gen
.own_eapd_ctl
= 1;
4398 codec
->patch_ops
= stac_patch_ops
;
4399 codec
->power_filter
= snd_hda_codec_eapd_power_filter
;
4401 snd_hda_add_verbs(codec
, stac9200_eapd_init
);
4403 snd_hda_pick_fixup(codec
, stac9200_models
, stac9200_fixup_tbl
,
4405 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
4407 err
= stac_parse_auto_config(codec
);
4413 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
4418 static int patch_stac925x(struct hda_codec
*codec
)
4420 struct sigmatel_spec
*spec
;
4423 err
= alloc_stac_spec(codec
);
4428 spec
->linear_tone_beep
= 1;
4429 spec
->gen
.own_eapd_ctl
= 1;
4431 codec
->patch_ops
= stac_patch_ops
;
4433 snd_hda_add_verbs(codec
, stac925x_core_init
);
4435 snd_hda_pick_fixup(codec
, stac925x_models
, stac925x_fixup_tbl
,
4437 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
4439 err
= stac_parse_auto_config(codec
);
4445 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
4450 static int patch_stac92hd73xx(struct hda_codec
*codec
)
4452 struct sigmatel_spec
*spec
;
4456 err
= alloc_stac_spec(codec
);
4461 spec
->linear_tone_beep
= 0;
4462 spec
->gen
.mixer_nid
= 0x1d;
4463 spec
->have_spdif_mux
= 1;
4465 num_dacs
= snd_hda_get_num_conns(codec
, 0x0a) - 1;
4466 if (num_dacs
< 3 || num_dacs
> 5) {
4467 printk(KERN_WARNING
"hda_codec: Could not determine "
4468 "number of channels defaulting to DAC count\n");
4473 case 0x3: /* 6 Channel */
4474 spec
->aloopback_ctl
= &stac92hd73xx_6ch_loopback
;
4476 case 0x4: /* 8 Channel */
4477 spec
->aloopback_ctl
= &stac92hd73xx_8ch_loopback
;
4479 case 0x5: /* 10 Channel */
4480 spec
->aloopback_ctl
= &stac92hd73xx_10ch_loopback
;
4484 spec
->aloopback_mask
= 0x01;
4485 spec
->aloopback_shift
= 8;
4487 spec
->gen
.beep_nid
= 0x1c; /* digital beep */
4489 /* GPIO0 High = Enable EAPD */
4490 spec
->eapd_mask
= spec
->gpio_mask
= spec
->gpio_dir
= 0x1;
4491 spec
->gpio_data
= 0x01;
4493 spec
->eapd_switch
= 1;
4495 spec
->num_pwrs
= ARRAY_SIZE(stac92hd73xx_pwr_nids
);
4496 spec
->pwr_nids
= stac92hd73xx_pwr_nids
;
4498 spec
->gen
.own_eapd_ctl
= 1;
4499 spec
->gen
.power_down_unused
= 1;
4501 codec
->patch_ops
= stac_patch_ops
;
4503 snd_hda_pick_fixup(codec
, stac92hd73xx_models
, stac92hd73xx_fixup_tbl
,
4504 stac92hd73xx_fixups
);
4505 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
4507 if (!spec
->volknob_init
)
4508 snd_hda_add_verbs(codec
, stac92hd73xx_core_init
);
4510 err
= stac_parse_auto_config(codec
);
4516 /* Don't GPIO-mute speakers if there are no internal speakers, because
4517 * the GPIO might be necessary for Headphone
4519 if (spec
->eapd_switch
&& !has_builtin_speaker(codec
))
4520 spec
->eapd_switch
= 0;
4522 codec
->proc_widget_hook
= stac92hd7x_proc_hook
;
4524 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
4529 static void stac_setup_gpio(struct hda_codec
*codec
)
4531 struct sigmatel_spec
*spec
= codec
->spec
;
4533 spec
->gpio_mask
|= spec
->eapd_mask
;
4534 if (spec
->gpio_led
) {
4535 if (!spec
->vref_mute_led_nid
) {
4536 spec
->gpio_mask
|= spec
->gpio_led
;
4537 spec
->gpio_dir
|= spec
->gpio_led
;
4538 spec
->gpio_data
|= spec
->gpio_led
;
4540 codec
->patch_ops
.set_power_state
=
4541 stac_set_power_state
;
4545 if (spec
->mic_mute_led_gpio
) {
4546 spec
->gpio_mask
|= spec
->mic_mute_led_gpio
;
4547 spec
->gpio_dir
|= spec
->mic_mute_led_gpio
;
4548 spec
->mic_enabled
= 0;
4549 spec
->gpio_data
|= spec
->mic_mute_led_gpio
;
4551 spec
->gen
.cap_sync_hook
= stac_capture_led_hook
;
4555 static int patch_stac92hd83xxx(struct hda_codec
*codec
)
4557 struct sigmatel_spec
*spec
;
4560 err
= alloc_stac_spec(codec
);
4564 codec
->epss
= 0; /* longer delay needed for D3 */
4567 spec
->linear_tone_beep
= 0;
4568 spec
->gen
.own_eapd_ctl
= 1;
4569 spec
->gen
.power_down_unused
= 1;
4570 spec
->gen
.mixer_nid
= 0x1b;
4572 spec
->gen
.beep_nid
= 0x21; /* digital beep */
4573 spec
->pwr_nids
= stac92hd83xxx_pwr_nids
;
4574 spec
->num_pwrs
= ARRAY_SIZE(stac92hd83xxx_pwr_nids
);
4575 spec
->default_polarity
= -1; /* no default cfg */
4577 codec
->patch_ops
= stac_patch_ops
;
4579 snd_hda_add_verbs(codec
, stac92hd83xxx_core_init
);
4581 snd_hda_pick_fixup(codec
, stac92hd83xxx_models
, stac92hd83xxx_fixup_tbl
,
4582 stac92hd83xxx_fixups
);
4583 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
4585 stac_setup_gpio(codec
);
4587 err
= stac_parse_auto_config(codec
);
4593 codec
->proc_widget_hook
= stac92hd_proc_hook
;
4595 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
4600 static const hda_nid_t stac92hd95_pwr_nids
[] = {
4601 0x0a, 0x0b, 0x0c, 0x0d
4604 static int patch_stac92hd95(struct hda_codec
*codec
)
4606 struct sigmatel_spec
*spec
;
4609 err
= alloc_stac_spec(codec
);
4613 codec
->epss
= 0; /* longer delay needed for D3 */
4616 spec
->linear_tone_beep
= 0;
4617 spec
->gen
.own_eapd_ctl
= 1;
4618 spec
->gen
.power_down_unused
= 1;
4620 spec
->gen
.beep_nid
= 0x19; /* digital beep */
4621 spec
->pwr_nids
= stac92hd95_pwr_nids
;
4622 spec
->num_pwrs
= ARRAY_SIZE(stac92hd95_pwr_nids
);
4623 spec
->default_polarity
= -1; /* no default cfg */
4625 codec
->patch_ops
= stac_patch_ops
;
4627 err
= stac_parse_auto_config(codec
);
4633 codec
->proc_widget_hook
= stac92hd_proc_hook
;
4638 static int patch_stac92hd71bxx(struct hda_codec
*codec
)
4640 struct sigmatel_spec
*spec
;
4641 const struct hda_verb
*unmute_init
= stac92hd71bxx_unmute_core_init
;
4644 err
= alloc_stac_spec(codec
);
4649 spec
->linear_tone_beep
= 0;
4650 spec
->gen
.own_eapd_ctl
= 1;
4651 spec
->gen
.power_down_unused
= 1;
4652 spec
->gen
.mixer_nid
= 0x17;
4653 spec
->have_spdif_mux
= 1;
4655 codec
->patch_ops
= stac_patch_ops
;
4658 spec
->gpio_mask
= 0x01;
4659 spec
->gpio_dir
= 0x01;
4660 spec
->gpio_data
= 0x01;
4662 switch (codec
->vendor_id
) {
4663 case 0x111d76b6: /* 4 Port without Analog Mixer */
4667 case 0x111d7608: /* 5 Port with Analog Mixer */
4668 if ((codec
->revision_id
& 0xf) == 0 ||
4669 (codec
->revision_id
& 0xf) == 1)
4670 spec
->stream_delay
= 40; /* 40 milliseconds */
4674 snd_hda_codec_set_pincfg(codec
, 0x0f, 0x40f000f0);
4675 snd_hda_codec_set_pincfg(codec
, 0x19, 0x40f000f3);
4677 case 0x111d7603: /* 6 Port with Analog Mixer */
4678 if ((codec
->revision_id
& 0xf) == 1)
4679 spec
->stream_delay
= 40; /* 40 milliseconds */
4684 if (get_wcaps_type(get_wcaps(codec
, 0x28)) == AC_WID_VOL_KNB
)
4685 snd_hda_add_verbs(codec
, stac92hd71bxx_core_init
);
4687 if (get_wcaps(codec
, 0xa) & AC_WCAP_IN_AMP
)
4688 snd_hda_sequence_write_cache(codec
, unmute_init
);
4690 spec
->aloopback_ctl
= &stac92hd71bxx_loopback
;
4691 spec
->aloopback_mask
= 0x50;
4692 spec
->aloopback_shift
= 0;
4694 spec
->powerdown_adcs
= 1;
4695 spec
->gen
.beep_nid
= 0x26; /* digital beep */
4696 spec
->num_pwrs
= ARRAY_SIZE(stac92hd71bxx_pwr_nids
);
4697 spec
->pwr_nids
= stac92hd71bxx_pwr_nids
;
4699 snd_hda_pick_fixup(codec
, stac92hd71bxx_models
, stac92hd71bxx_fixup_tbl
,
4700 stac92hd71bxx_fixups
);
4701 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
4703 stac_setup_gpio(codec
);
4705 err
= stac_parse_auto_config(codec
);
4711 codec
->proc_widget_hook
= stac92hd7x_proc_hook
;
4713 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
4718 static int patch_stac922x(struct hda_codec
*codec
)
4720 struct sigmatel_spec
*spec
;
4723 err
= alloc_stac_spec(codec
);
4728 spec
->linear_tone_beep
= 1;
4729 spec
->gen
.own_eapd_ctl
= 1;
4731 codec
->patch_ops
= stac_patch_ops
;
4733 snd_hda_add_verbs(codec
, stac922x_core_init
);
4735 /* Fix Mux capture level; max to 2 */
4736 snd_hda_override_amp_caps(codec
, 0x12, HDA_OUTPUT
,
4737 (0 << AC_AMPCAP_OFFSET_SHIFT
) |
4738 (2 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
4739 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
4740 (0 << AC_AMPCAP_MUTE_SHIFT
));
4742 snd_hda_pick_fixup(codec
, stac922x_models
, stac922x_fixup_tbl
,
4744 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
4746 err
= stac_parse_auto_config(codec
);
4752 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
4757 static const char * const stac927x_spdif_labels
[] = {
4758 "Digital Playback", "ADAT", "Analog Mux 1",
4759 "Analog Mux 2", "Analog Mux 3", NULL
4762 static int patch_stac927x(struct hda_codec
*codec
)
4764 struct sigmatel_spec
*spec
;
4767 err
= alloc_stac_spec(codec
);
4772 spec
->linear_tone_beep
= 1;
4773 spec
->gen
.own_eapd_ctl
= 1;
4774 spec
->have_spdif_mux
= 1;
4775 spec
->spdif_labels
= stac927x_spdif_labels
;
4777 spec
->gen
.beep_nid
= 0x23; /* digital beep */
4779 /* GPIO0 High = Enable EAPD */
4780 spec
->eapd_mask
= spec
->gpio_mask
= 0x01;
4781 spec
->gpio_dir
= spec
->gpio_data
= 0x01;
4783 spec
->aloopback_ctl
= &stac927x_loopback
;
4784 spec
->aloopback_mask
= 0x40;
4785 spec
->aloopback_shift
= 0;
4786 spec
->eapd_switch
= 1;
4788 codec
->patch_ops
= stac_patch_ops
;
4790 snd_hda_pick_fixup(codec
, stac927x_models
, stac927x_fixup_tbl
,
4792 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
4794 if (!spec
->volknob_init
)
4795 snd_hda_add_verbs(codec
, stac927x_core_init
);
4797 err
= stac_parse_auto_config(codec
);
4803 codec
->proc_widget_hook
= stac927x_proc_hook
;
4807 * The STAC927x seem to require fairly long delays for certain
4808 * command sequences. With too short delays (even if the answer
4809 * is set to RIRB properly), it results in the silence output
4810 * on some hardwares like Dell.
4812 * The below flag enables the longer delay (see get_response
4815 codec
->bus
->needs_damn_long_delay
= 1;
4817 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
4822 static int patch_stac9205(struct hda_codec
*codec
)
4824 struct sigmatel_spec
*spec
;
4827 err
= alloc_stac_spec(codec
);
4832 spec
->linear_tone_beep
= 1;
4833 spec
->gen
.own_eapd_ctl
= 1;
4834 spec
->have_spdif_mux
= 1;
4836 spec
->gen
.beep_nid
= 0x23; /* digital beep */
4838 snd_hda_add_verbs(codec
, stac9205_core_init
);
4839 spec
->aloopback_ctl
= &stac9205_loopback
;
4841 spec
->aloopback_mask
= 0x40;
4842 spec
->aloopback_shift
= 0;
4844 /* GPIO0 High = EAPD */
4845 spec
->eapd_mask
= spec
->gpio_mask
= spec
->gpio_dir
= 0x1;
4846 spec
->gpio_data
= 0x01;
4848 /* Turn on/off EAPD per HP plugging */
4849 spec
->eapd_switch
= 1;
4851 codec
->patch_ops
= stac_patch_ops
;
4853 snd_hda_pick_fixup(codec
, stac9205_models
, stac9205_fixup_tbl
,
4855 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
4857 err
= stac_parse_auto_config(codec
);
4863 codec
->proc_widget_hook
= stac9205_proc_hook
;
4865 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
4874 static const struct hda_verb stac9872_core_init
[] = {
4875 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x1}, /* mic-sel: 0a,0d,14,02 */
4876 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Mic-in -> 0x9 */
4880 static const struct hda_pintbl stac9872_vaio_pin_configs
[] = {
4881 { 0x0a, 0x03211020 },
4882 { 0x0b, 0x411111f0 },
4883 { 0x0c, 0x411111f0 },
4884 { 0x0d, 0x03a15030 },
4885 { 0x0e, 0x411111f0 },
4886 { 0x0f, 0x90170110 },
4887 { 0x11, 0x411111f0 },
4888 { 0x13, 0x411111f0 },
4889 { 0x14, 0x90a7013e },
4893 static const struct hda_model_fixup stac9872_models
[] = {
4894 { .id
= STAC_9872_VAIO
, .name
= "vaio" },
4898 static const struct hda_fixup stac9872_fixups
[] = {
4899 [STAC_9872_VAIO
] = {
4900 .type
= HDA_FIXUP_PINS
,
4901 .v
.pins
= stac9872_vaio_pin_configs
,
4905 static const struct snd_pci_quirk stac9872_fixup_tbl
[] = {
4906 SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0,
4907 "Sony VAIO F/S", STAC_9872_VAIO
),
4911 static int patch_stac9872(struct hda_codec
*codec
)
4913 struct sigmatel_spec
*spec
;
4916 err
= alloc_stac_spec(codec
);
4921 spec
->linear_tone_beep
= 1;
4922 spec
->gen
.own_eapd_ctl
= 1;
4924 codec
->patch_ops
= stac_patch_ops
;
4926 snd_hda_add_verbs(codec
, stac9872_core_init
);
4928 snd_hda_pick_fixup(codec
, stac9872_models
, stac9872_fixup_tbl
,
4930 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
4932 err
= stac_parse_auto_config(codec
);
4938 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
4947 static const struct hda_codec_preset snd_hda_preset_sigmatel
[] = {
4948 { .id
= 0x83847690, .name
= "STAC9200", .patch
= patch_stac9200
},
4949 { .id
= 0x83847882, .name
= "STAC9220 A1", .patch
= patch_stac922x
},
4950 { .id
= 0x83847680, .name
= "STAC9221 A1", .patch
= patch_stac922x
},
4951 { .id
= 0x83847880, .name
= "STAC9220 A2", .patch
= patch_stac922x
},
4952 { .id
= 0x83847681, .name
= "STAC9220D/9223D A2", .patch
= patch_stac922x
},
4953 { .id
= 0x83847682, .name
= "STAC9221 A2", .patch
= patch_stac922x
},
4954 { .id
= 0x83847683, .name
= "STAC9221D A2", .patch
= patch_stac922x
},
4955 { .id
= 0x83847618, .name
= "STAC9227", .patch
= patch_stac927x
},
4956 { .id
= 0x83847619, .name
= "STAC9227", .patch
= patch_stac927x
},
4957 { .id
= 0x83847616, .name
= "STAC9228", .patch
= patch_stac927x
},
4958 { .id
= 0x83847617, .name
= "STAC9228", .patch
= patch_stac927x
},
4959 { .id
= 0x83847614, .name
= "STAC9229", .patch
= patch_stac927x
},
4960 { .id
= 0x83847615, .name
= "STAC9229", .patch
= patch_stac927x
},
4961 { .id
= 0x83847620, .name
= "STAC9274", .patch
= patch_stac927x
},
4962 { .id
= 0x83847621, .name
= "STAC9274D", .patch
= patch_stac927x
},
4963 { .id
= 0x83847622, .name
= "STAC9273X", .patch
= patch_stac927x
},
4964 { .id
= 0x83847623, .name
= "STAC9273D", .patch
= patch_stac927x
},
4965 { .id
= 0x83847624, .name
= "STAC9272X", .patch
= patch_stac927x
},
4966 { .id
= 0x83847625, .name
= "STAC9272D", .patch
= patch_stac927x
},
4967 { .id
= 0x83847626, .name
= "STAC9271X", .patch
= patch_stac927x
},
4968 { .id
= 0x83847627, .name
= "STAC9271D", .patch
= patch_stac927x
},
4969 { .id
= 0x83847628, .name
= "STAC9274X5NH", .patch
= patch_stac927x
},
4970 { .id
= 0x83847629, .name
= "STAC9274D5NH", .patch
= patch_stac927x
},
4971 { .id
= 0x83847632, .name
= "STAC9202", .patch
= patch_stac925x
},
4972 { .id
= 0x83847633, .name
= "STAC9202D", .patch
= patch_stac925x
},
4973 { .id
= 0x83847634, .name
= "STAC9250", .patch
= patch_stac925x
},
4974 { .id
= 0x83847635, .name
= "STAC9250D", .patch
= patch_stac925x
},
4975 { .id
= 0x83847636, .name
= "STAC9251", .patch
= patch_stac925x
},
4976 { .id
= 0x83847637, .name
= "STAC9250D", .patch
= patch_stac925x
},
4977 { .id
= 0x83847645, .name
= "92HD206X", .patch
= patch_stac927x
},
4978 { .id
= 0x83847646, .name
= "92HD206D", .patch
= patch_stac927x
},
4979 /* The following does not take into account .id=0x83847661 when subsys =
4980 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
4981 * currently not fully supported.
4983 { .id
= 0x83847661, .name
= "CXD9872RD/K", .patch
= patch_stac9872
},
4984 { .id
= 0x83847662, .name
= "STAC9872AK", .patch
= patch_stac9872
},
4985 { .id
= 0x83847664, .name
= "CXD9872AKD", .patch
= patch_stac9872
},
4986 { .id
= 0x83847698, .name
= "STAC9205", .patch
= patch_stac9205
},
4987 { .id
= 0x838476a0, .name
= "STAC9205", .patch
= patch_stac9205
},
4988 { .id
= 0x838476a1, .name
= "STAC9205D", .patch
= patch_stac9205
},
4989 { .id
= 0x838476a2, .name
= "STAC9204", .patch
= patch_stac9205
},
4990 { .id
= 0x838476a3, .name
= "STAC9204D", .patch
= patch_stac9205
},
4991 { .id
= 0x838476a4, .name
= "STAC9255", .patch
= patch_stac9205
},
4992 { .id
= 0x838476a5, .name
= "STAC9255D", .patch
= patch_stac9205
},
4993 { .id
= 0x838476a6, .name
= "STAC9254", .patch
= patch_stac9205
},
4994 { .id
= 0x838476a7, .name
= "STAC9254D", .patch
= patch_stac9205
},
4995 { .id
= 0x111d7603, .name
= "92HD75B3X5", .patch
= patch_stac92hd71bxx
},
4996 { .id
= 0x111d7604, .name
= "92HD83C1X5", .patch
= patch_stac92hd83xxx
},
4997 { .id
= 0x111d76d4, .name
= "92HD83C1C5", .patch
= patch_stac92hd83xxx
},
4998 { .id
= 0x111d7605, .name
= "92HD81B1X5", .patch
= patch_stac92hd83xxx
},
4999 { .id
= 0x111d76d5, .name
= "92HD81B1C5", .patch
= patch_stac92hd83xxx
},
5000 { .id
= 0x111d76d1, .name
= "92HD87B1/3", .patch
= patch_stac92hd83xxx
},
5001 { .id
= 0x111d76d9, .name
= "92HD87B2/4", .patch
= patch_stac92hd83xxx
},
5002 { .id
= 0x111d7666, .name
= "92HD88B3", .patch
= patch_stac92hd83xxx
},
5003 { .id
= 0x111d7667, .name
= "92HD88B1", .patch
= patch_stac92hd83xxx
},
5004 { .id
= 0x111d7668, .name
= "92HD88B2", .patch
= patch_stac92hd83xxx
},
5005 { .id
= 0x111d7669, .name
= "92HD88B4", .patch
= patch_stac92hd83xxx
},
5006 { .id
= 0x111d7608, .name
= "92HD75B2X5", .patch
= patch_stac92hd71bxx
},
5007 { .id
= 0x111d7674, .name
= "92HD73D1X5", .patch
= patch_stac92hd73xx
},
5008 { .id
= 0x111d7675, .name
= "92HD73C1X5", .patch
= patch_stac92hd73xx
},
5009 { .id
= 0x111d7676, .name
= "92HD73E1X5", .patch
= patch_stac92hd73xx
},
5010 { .id
= 0x111d7695, .name
= "92HD95", .patch
= patch_stac92hd95
},
5011 { .id
= 0x111d76b0, .name
= "92HD71B8X", .patch
= patch_stac92hd71bxx
},
5012 { .id
= 0x111d76b1, .name
= "92HD71B8X", .patch
= patch_stac92hd71bxx
},
5013 { .id
= 0x111d76b2, .name
= "92HD71B7X", .patch
= patch_stac92hd71bxx
},
5014 { .id
= 0x111d76b3, .name
= "92HD71B7X", .patch
= patch_stac92hd71bxx
},
5015 { .id
= 0x111d76b4, .name
= "92HD71B6X", .patch
= patch_stac92hd71bxx
},
5016 { .id
= 0x111d76b5, .name
= "92HD71B6X", .patch
= patch_stac92hd71bxx
},
5017 { .id
= 0x111d76b6, .name
= "92HD71B5X", .patch
= patch_stac92hd71bxx
},
5018 { .id
= 0x111d76b7, .name
= "92HD71B5X", .patch
= patch_stac92hd71bxx
},
5019 { .id
= 0x111d76c0, .name
= "92HD89C3", .patch
= patch_stac92hd73xx
},
5020 { .id
= 0x111d76c1, .name
= "92HD89C2", .patch
= patch_stac92hd73xx
},
5021 { .id
= 0x111d76c2, .name
= "92HD89C1", .patch
= patch_stac92hd73xx
},
5022 { .id
= 0x111d76c3, .name
= "92HD89B3", .patch
= patch_stac92hd73xx
},
5023 { .id
= 0x111d76c4, .name
= "92HD89B2", .patch
= patch_stac92hd73xx
},
5024 { .id
= 0x111d76c5, .name
= "92HD89B1", .patch
= patch_stac92hd73xx
},
5025 { .id
= 0x111d76c6, .name
= "92HD89E3", .patch
= patch_stac92hd73xx
},
5026 { .id
= 0x111d76c7, .name
= "92HD89E2", .patch
= patch_stac92hd73xx
},
5027 { .id
= 0x111d76c8, .name
= "92HD89E1", .patch
= patch_stac92hd73xx
},
5028 { .id
= 0x111d76c9, .name
= "92HD89D3", .patch
= patch_stac92hd73xx
},
5029 { .id
= 0x111d76ca, .name
= "92HD89D2", .patch
= patch_stac92hd73xx
},
5030 { .id
= 0x111d76cb, .name
= "92HD89D1", .patch
= patch_stac92hd73xx
},
5031 { .id
= 0x111d76cc, .name
= "92HD89F3", .patch
= patch_stac92hd73xx
},
5032 { .id
= 0x111d76cd, .name
= "92HD89F2", .patch
= patch_stac92hd73xx
},
5033 { .id
= 0x111d76ce, .name
= "92HD89F1", .patch
= patch_stac92hd73xx
},
5034 { .id
= 0x111d76df, .name
= "92HD93BXX", .patch
= patch_stac92hd83xxx
},
5035 { .id
= 0x111d76e0, .name
= "92HD91BXX", .patch
= patch_stac92hd83xxx
},
5036 { .id
= 0x111d76e3, .name
= "92HD98BXX", .patch
= patch_stac92hd83xxx
},
5037 { .id
= 0x111d76e5, .name
= "92HD99BXX", .patch
= patch_stac92hd83xxx
},
5038 { .id
= 0x111d76e7, .name
= "92HD90BXX", .patch
= patch_stac92hd83xxx
},
5039 { .id
= 0x111d76e8, .name
= "92HD66B1X5", .patch
= patch_stac92hd83xxx
},
5040 { .id
= 0x111d76e9, .name
= "92HD66B2X5", .patch
= patch_stac92hd83xxx
},
5041 { .id
= 0x111d76ea, .name
= "92HD66B3X5", .patch
= patch_stac92hd83xxx
},
5042 { .id
= 0x111d76eb, .name
= "92HD66C1X5", .patch
= patch_stac92hd83xxx
},
5043 { .id
= 0x111d76ec, .name
= "92HD66C2X5", .patch
= patch_stac92hd83xxx
},
5044 { .id
= 0x111d76ed, .name
= "92HD66C3X5", .patch
= patch_stac92hd83xxx
},
5045 { .id
= 0x111d76ee, .name
= "92HD66B1X3", .patch
= patch_stac92hd83xxx
},
5046 { .id
= 0x111d76ef, .name
= "92HD66B2X3", .patch
= patch_stac92hd83xxx
},
5047 { .id
= 0x111d76f0, .name
= "92HD66B3X3", .patch
= patch_stac92hd83xxx
},
5048 { .id
= 0x111d76f1, .name
= "92HD66C1X3", .patch
= patch_stac92hd83xxx
},
5049 { .id
= 0x111d76f2, .name
= "92HD66C2X3", .patch
= patch_stac92hd83xxx
},
5050 { .id
= 0x111d76f3, .name
= "92HD66C3/65", .patch
= patch_stac92hd83xxx
},
5054 MODULE_ALIAS("snd-hda-codec-id:8384*");
5055 MODULE_ALIAS("snd-hda-codec-id:111d*");
5057 MODULE_LICENSE("GPL");
5058 MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
5060 static struct hda_codec_preset_list sigmatel_list
= {
5061 .preset
= snd_hda_preset_sigmatel
,
5062 .owner
= THIS_MODULE
,
5065 static int __init
patch_sigmatel_init(void)
5067 return snd_hda_add_codec_preset(&sigmatel_list
);
5070 static void __exit
patch_sigmatel_exit(void)
5072 snd_hda_delete_codec_preset(&sigmatel_list
);
5075 module_init(patch_sigmatel_init
)
5076 module_exit(patch_sigmatel_exit
)