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 <sound/core.h>
33 #include <sound/asoundef.h>
34 #include <sound/jack.h>
35 #include <sound/tlv.h>
36 #include "hda_codec.h"
37 #include "hda_local.h"
81 STAC_92HD73XX_NO_JD, /* no jack-detection */
95 STAC_92HD83XXX_PWR_REF,
98 STAC_92HD83XXX_HP_cNB11_INTQUAD,
100 STAC_92HD83XXX_MODELS
114 STAC_92HD71BXX_MODELS
140 STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter
141 * is given, one of the above models will be
142 * chosen according to the subsystem id. */
143 /* for backward compatibility */
160 STAC_D965_REF_NO_JD, /* no jack-detection */
177 struct sigmatel_event {
184 struct sigmatel_mic_route {
187 signed char dmux_idx;
190 #define MAX_PINS_NUM 16
191 #define MAX_ADCS_NUM 4
192 #define MAX_DMICS_NUM 4
194 struct sigmatel_spec {
195 struct snd_kcontrol_new *mixers[4];
196 unsigned int num_mixers;
199 unsigned int eapd_switch: 1;
200 unsigned int surr_switch: 1;
201 unsigned int alt_switch: 1;
202 unsigned int hp_detect: 1;
203 unsigned int spdif_mute: 1;
204 unsigned int check_volume_offset:1;
205 unsigned int auto_mic:1;
206 unsigned int linear_tone_beep:1;
209 unsigned int eapd_mask;
210 unsigned int gpio_mask;
211 unsigned int gpio_dir;
212 unsigned int gpio_data;
213 unsigned int gpio_mute;
214 unsigned int gpio_led;
215 unsigned int gpio_led_polarity;
216 unsigned int vref_led;
219 unsigned int stream_delay;
221 /* analog loopback */
222 const struct snd_kcontrol_new *aloopback_ctl;
223 unsigned char aloopback_mask;
224 unsigned char aloopback_shift;
226 /* power management */
227 unsigned int num_pwrs;
228 const unsigned int *pwr_mapping;
229 const hda_nid_t *pwr_nids;
230 const hda_nid_t *dac_list;
233 struct snd_array events;
236 struct hda_input_mux *mono_mux;
237 unsigned int cur_mmux;
238 struct hda_multi_out multiout;
239 hda_nid_t dac_nids[5];
240 hda_nid_t hp_dacs[5];
241 hda_nid_t speaker_dacs[5];
246 const hda_nid_t *adc_nids;
247 unsigned int num_adcs;
248 const hda_nid_t *mux_nids;
249 unsigned int num_muxes;
250 const hda_nid_t *dmic_nids;
251 unsigned int num_dmics;
252 const hda_nid_t *dmux_nids;
253 unsigned int num_dmuxes;
254 const hda_nid_t *smux_nids;
255 unsigned int num_smuxes;
256 unsigned int num_analog_muxes;
258 const unsigned long *capvols; /* amp-volume attr: HDA_COMPOSE_AMP_VAL() */
259 const unsigned long *capsws; /* amp-mute attr: HDA_COMPOSE_AMP_VAL() */
260 unsigned int num_caps; /* number of capture volume/switch elements */
262 struct sigmatel_mic_route ext_mic;
263 struct sigmatel_mic_route int_mic;
264 struct sigmatel_mic_route dock_mic;
266 const char * const *spdif_labels;
268 hda_nid_t dig_in_nid;
270 hda_nid_t anabeep_nid;
271 hda_nid_t digbeep_nid;
274 const hda_nid_t *pin_nids;
275 unsigned int num_pins;
277 /* codec specific stuff */
278 const struct hda_verb *init;
279 const struct snd_kcontrol_new *mixer;
282 struct hda_input_mux *dinput_mux;
283 unsigned int cur_dmux[2];
284 struct hda_input_mux *input_mux;
285 unsigned int cur_mux[3];
286 struct hda_input_mux *sinput_mux;
287 unsigned int cur_smux[2];
288 unsigned int cur_amux;
290 unsigned int powerdown_adcs;
293 unsigned int io_switch[2];
294 unsigned int clfe_swap;
295 hda_nid_t line_switch; /* shared line-in for input and output */
296 hda_nid_t mic_switch; /* shared mic-in for input and output */
297 hda_nid_t hp_switch; /* NID of HP as line-out */
298 unsigned int aloopback;
300 struct hda_pcm pcm_rec[2]; /* PCM information */
302 /* dynamic controls and input_mux */
303 struct auto_pin_cfg autocfg;
304 struct snd_array kctls;
305 struct hda_input_mux private_dimux;
306 struct hda_input_mux private_imux;
307 struct hda_input_mux private_smux;
308 struct hda_input_mux private_mono_mux;
311 unsigned auto_pin_cnt;
312 hda_nid_t auto_pin_nids[MAX_PINS_NUM];
313 unsigned auto_adc_cnt;
314 hda_nid_t auto_adc_nids[MAX_ADCS_NUM];
315 hda_nid_t auto_mux_nids[MAX_ADCS_NUM];
316 hda_nid_t auto_dmux_nids[MAX_ADCS_NUM];
317 unsigned long auto_capvols[MAX_ADCS_NUM];
318 unsigned auto_dmic_cnt;
319 hda_nid_t auto_dmic_nids[MAX_DMICS_NUM];
322 static const hda_nid_t stac9200_adc_nids[1] = {
326 static const hda_nid_t stac9200_mux_nids[1] = {
330 static const hda_nid_t stac9200_dac_nids[1] = {
334 static const hda_nid_t stac92hd73xx_pwr_nids[8] = {
335 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
339 static const hda_nid_t stac92hd73xx_slave_dig_outs[2] = {
343 static const hda_nid_t stac92hd73xx_adc_nids[2] = {
347 #define STAC92HD73XX_NUM_DMICS 2
348 static const hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = {
352 #define STAC92HD73_DAC_COUNT 5
354 static const hda_nid_t stac92hd73xx_mux_nids[2] = {
358 static const hda_nid_t stac92hd73xx_dmux_nids[2] = {
362 static const hda_nid_t stac92hd73xx_smux_nids[2] = {
366 #define STAC92HD73XX_NUM_CAPS 2
367 static const unsigned long stac92hd73xx_capvols[] = {
368 HDA_COMPOSE_AMP_VAL(0x20, 3, 0, HDA_OUTPUT),
369 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT),
371 #define stac92hd73xx_capsws stac92hd73xx_capvols
373 #define STAC92HD83_DAC_COUNT 3
375 static const hda_nid_t stac92hd83xxx_pwr_nids[4] = {
379 static const hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
383 static const unsigned int stac92hd83xxx_pwr_mapping[4] = {
384 0x03, 0x0c, 0x20, 0x40,
387 static const hda_nid_t stac92hd83xxx_dmic_nids[] = {
391 static const hda_nid_t stac92hd71bxx_pwr_nids[3] = {
395 static const hda_nid_t stac92hd71bxx_adc_nids[2] = {
399 static const hda_nid_t stac92hd71bxx_mux_nids[2] = {
403 static const hda_nid_t stac92hd71bxx_dmux_nids[2] = {
407 static const hda_nid_t stac92hd71bxx_smux_nids[2] = {
411 #define STAC92HD71BXX_NUM_DMICS 2
412 static const hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = {
416 static const hda_nid_t stac92hd71bxx_dmic_5port_nids[STAC92HD71BXX_NUM_DMICS] = {
420 static const hda_nid_t stac92hd71bxx_slave_dig_outs[2] = {
424 #define STAC92HD71BXX_NUM_CAPS 2
425 static const unsigned long stac92hd71bxx_capvols[] = {
426 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
427 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
429 #define stac92hd71bxx_capsws stac92hd71bxx_capvols
431 static const hda_nid_t stac925x_adc_nids[1] = {
435 static const hda_nid_t stac925x_mux_nids[1] = {
439 static const hda_nid_t stac925x_dac_nids[1] = {
443 #define STAC925X_NUM_DMICS 1
444 static const hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = {
448 static const hda_nid_t stac925x_dmux_nids[1] = {
452 static const unsigned long stac925x_capvols[] = {
453 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT),
455 static const unsigned long stac925x_capsws[] = {
456 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
459 static const hda_nid_t stac922x_adc_nids[2] = {
463 static const hda_nid_t stac922x_mux_nids[2] = {
467 #define STAC922X_NUM_CAPS 2
468 static const unsigned long stac922x_capvols[] = {
469 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_INPUT),
470 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
472 #define stac922x_capsws stac922x_capvols
474 static const hda_nid_t stac927x_slave_dig_outs[2] = {
478 static const hda_nid_t stac927x_adc_nids[3] = {
482 static const hda_nid_t stac927x_mux_nids[3] = {
486 static const hda_nid_t stac927x_smux_nids[1] = {
490 static const hda_nid_t stac927x_dac_nids[6] = {
491 0x02, 0x03, 0x04, 0x05, 0x06, 0
494 static const hda_nid_t stac927x_dmux_nids[1] = {
498 #define STAC927X_NUM_DMICS 2
499 static const hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = {
503 #define STAC927X_NUM_CAPS 3
504 static const unsigned long stac927x_capvols[] = {
505 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
506 HDA_COMPOSE_AMP_VAL(0x19, 3, 0, HDA_INPUT),
507 HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_INPUT),
509 static const unsigned long stac927x_capsws[] = {
510 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT),
511 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
512 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
515 static const char * const stac927x_spdif_labels[5] = {
516 "Digital Playback", "ADAT", "Analog Mux 1",
517 "Analog Mux 2", "Analog Mux 3"
520 static const hda_nid_t stac9205_adc_nids[2] = {
524 static const hda_nid_t stac9205_mux_nids[2] = {
528 static const hda_nid_t stac9205_dmux_nids[1] = {
532 static const hda_nid_t stac9205_smux_nids[1] = {
536 #define STAC9205_NUM_DMICS 2
537 static const hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = {
541 #define STAC9205_NUM_CAPS 2
542 static const unsigned long stac9205_capvols[] = {
543 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_INPUT),
544 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_INPUT),
546 static const unsigned long stac9205_capsws[] = {
547 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
548 HDA_COMPOSE_AMP_VAL(0x1e, 3, 0, HDA_OUTPUT),
551 static const hda_nid_t stac9200_pin_nids[8] = {
552 0x08, 0x09, 0x0d, 0x0e,
553 0x0f, 0x10, 0x11, 0x12,
556 static const hda_nid_t stac925x_pin_nids[8] = {
557 0x07, 0x08, 0x0a, 0x0b,
558 0x0c, 0x0d, 0x10, 0x11,
561 static const hda_nid_t stac922x_pin_nids[10] = {
562 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
563 0x0f, 0x10, 0x11, 0x15, 0x1b,
566 static const hda_nid_t stac92hd73xx_pin_nids[13] = {
567 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
568 0x0f, 0x10, 0x11, 0x12, 0x13,
572 #define STAC92HD71BXX_NUM_PINS 13
573 static const hda_nid_t stac92hd71bxx_pin_nids_4port[STAC92HD71BXX_NUM_PINS] = {
574 0x0a, 0x0b, 0x0c, 0x0d, 0x00,
575 0x00, 0x14, 0x18, 0x19, 0x1e,
578 static const hda_nid_t stac92hd71bxx_pin_nids_6port[STAC92HD71BXX_NUM_PINS] = {
579 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
580 0x0f, 0x14, 0x18, 0x19, 0x1e,
584 static const hda_nid_t stac927x_pin_nids[14] = {
585 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
586 0x0f, 0x10, 0x11, 0x12, 0x13,
587 0x14, 0x21, 0x22, 0x23,
590 static const hda_nid_t stac9205_pin_nids[12] = {
591 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
592 0x0f, 0x14, 0x16, 0x17, 0x18,
596 static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol,
597 struct snd_ctl_elem_info *uinfo)
599 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
600 struct sigmatel_spec *spec = codec->spec;
601 return snd_hda_input_mux_info(spec->dinput_mux, uinfo);
604 static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol,
605 struct snd_ctl_elem_value *ucontrol)
607 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
608 struct sigmatel_spec *spec = codec->spec;
609 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
611 ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx];
615 static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol,
616 struct snd_ctl_elem_value *ucontrol)
618 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
619 struct sigmatel_spec *spec = codec->spec;
620 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
622 return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol,
623 spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]);
626 static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol,
627 struct snd_ctl_elem_info *uinfo)
629 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
630 struct sigmatel_spec *spec = codec->spec;
631 return snd_hda_input_mux_info(spec->sinput_mux, uinfo);
634 static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol,
635 struct snd_ctl_elem_value *ucontrol)
637 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
638 struct sigmatel_spec *spec = codec->spec;
639 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
641 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
645 static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol,
646 struct snd_ctl_elem_value *ucontrol)
648 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
649 struct sigmatel_spec *spec = codec->spec;
650 struct hda_input_mux *smux = &spec->private_smux;
651 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
655 err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol,
656 spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]);
660 if (spec->spdif_mute) {
662 nid = spec->multiout.dig_out_nid;
664 nid = codec->slave_dig_outs[smux_idx - 1];
665 if (spec->cur_smux[smux_idx] == smux->num_items - 1)
669 /* un/mute SPDIF out */
670 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
676 #ifdef CONFIG_SND_HDA_POWER_SAVE
677 static int stac_vrefout_set(struct hda_codec *codec,
678 hda_nid_t nid, unsigned int new_vref)
682 snd_printdd("%s, nid %x ctl %x\n", __func__, nid, new_vref);
683 pinctl = snd_hda_codec_read(codec, nid, 0,
684 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
690 pinctl &= ~AC_PINCTL_VREFEN;
691 pinctl |= (new_vref & AC_PINCTL_VREFEN);
693 error = snd_hda_codec_write_cache(codec, nid, 0,
694 AC_VERB_SET_PIN_WIDGET_CONTROL, pinctl);
702 static unsigned int stac92xx_vref_set(struct hda_codec *codec,
703 hda_nid_t nid, unsigned int new_vref)
707 pincfg = snd_hda_codec_read(codec, nid, 0,
708 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
711 pincfg &= ~(AC_PINCTL_VREFEN | AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
714 if (new_vref == AC_PINCTL_VREF_HIZ)
715 pincfg |= AC_PINCTL_OUT_EN;
717 pincfg |= AC_PINCTL_IN_EN;
719 error = snd_hda_codec_write_cache(codec, nid, 0,
720 AC_VERB_SET_PIN_WIDGET_CONTROL, pincfg);
727 static unsigned int stac92xx_vref_get(struct hda_codec *codec, hda_nid_t nid)
730 vref = snd_hda_codec_read(codec, nid, 0,
731 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
732 vref &= AC_PINCTL_VREFEN;
736 static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
738 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
739 struct sigmatel_spec *spec = codec->spec;
740 return snd_hda_input_mux_info(spec->input_mux, uinfo);
743 static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
745 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
746 struct sigmatel_spec *spec = codec->spec;
747 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
749 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
753 static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
755 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
756 struct sigmatel_spec *spec = codec->spec;
757 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
758 const struct hda_input_mux *imux = spec->input_mux;
759 unsigned int idx, prev_idx, didx;
761 idx = ucontrol->value.enumerated.item[0];
762 if (idx >= imux->num_items)
763 idx = imux->num_items - 1;
764 prev_idx = spec->cur_mux[adc_idx];
767 if (idx < spec->num_analog_muxes) {
768 snd_hda_codec_write_cache(codec, spec->mux_nids[adc_idx], 0,
769 AC_VERB_SET_CONNECT_SEL,
770 imux->items[idx].index);
771 if (prev_idx >= spec->num_analog_muxes &&
772 spec->mux_nids[adc_idx] != spec->dmux_nids[adc_idx]) {
773 imux = spec->dinput_mux;
775 snd_hda_codec_write_cache(codec,
776 spec->dmux_nids[adc_idx], 0,
777 AC_VERB_SET_CONNECT_SEL,
778 imux->items[0].index);
781 imux = spec->dinput_mux;
782 /* first dimux item is hardcoded to select analog imux,
785 didx = idx - spec->num_analog_muxes + 1;
786 snd_hda_codec_write_cache(codec, spec->dmux_nids[adc_idx], 0,
787 AC_VERB_SET_CONNECT_SEL,
788 imux->items[didx].index);
790 spec->cur_mux[adc_idx] = idx;
794 static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol,
795 struct snd_ctl_elem_info *uinfo)
797 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
798 struct sigmatel_spec *spec = codec->spec;
799 return snd_hda_input_mux_info(spec->mono_mux, uinfo);
802 static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol,
803 struct snd_ctl_elem_value *ucontrol)
805 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
806 struct sigmatel_spec *spec = codec->spec;
808 ucontrol->value.enumerated.item[0] = spec->cur_mmux;
812 static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol,
813 struct snd_ctl_elem_value *ucontrol)
815 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
816 struct sigmatel_spec *spec = codec->spec;
818 return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol,
819 spec->mono_nid, &spec->cur_mmux);
822 #define stac92xx_aloopback_info snd_ctl_boolean_mono_info
824 static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol,
825 struct snd_ctl_elem_value *ucontrol)
827 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
828 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
829 struct sigmatel_spec *spec = codec->spec;
831 ucontrol->value.integer.value[0] = !!(spec->aloopback &
832 (spec->aloopback_mask << idx));
836 static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol,
837 struct snd_ctl_elem_value *ucontrol)
839 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
840 struct sigmatel_spec *spec = codec->spec;
841 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
842 unsigned int dac_mode;
843 unsigned int val, idx_val;
845 idx_val = spec->aloopback_mask << idx;
846 if (ucontrol->value.integer.value[0])
847 val = spec->aloopback | idx_val;
849 val = spec->aloopback & ~idx_val;
850 if (spec->aloopback == val)
853 spec->aloopback = val;
855 /* Only return the bits defined by the shift value of the
856 * first two bytes of the mask
858 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
859 kcontrol->private_value & 0xFFFF, 0x0);
860 dac_mode >>= spec->aloopback_shift;
862 if (spec->aloopback & idx_val) {
863 snd_hda_power_up(codec);
866 snd_hda_power_down(codec);
867 dac_mode &= ~idx_val;
870 snd_hda_codec_write_cache(codec, codec->afg, 0,
871 kcontrol->private_value >> 16, dac_mode);
876 static const struct hda_verb stac9200_core_init[] = {
877 /* set dac0mux for dac converter */
878 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
882 static const struct hda_verb stac9200_eapd_init[] = {
883 /* set dac0mux for dac converter */
884 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
885 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
889 static const struct hda_verb dell_eq_core_init[] = {
890 /* set master volume to max value without distortion
891 * and direct control */
892 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
896 static const struct hda_verb stac92hd73xx_core_init[] = {
897 /* set master volume and direct control */
898 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
902 static const struct hda_verb stac92hd83xxx_core_init[] = {
903 /* power state controls amps */
904 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
908 static const struct hda_verb stac92hd71bxx_core_init[] = {
909 /* set master volume and direct control */
910 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
914 static const struct hda_verb stac92hd71bxx_unmute_core_init[] = {
915 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
916 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
917 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
918 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
922 static const struct hda_verb stac925x_core_init[] = {
923 /* set dac0mux for dac converter */
924 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
925 /* mute the master volume */
926 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
930 static const struct hda_verb stac922x_core_init[] = {
931 /* set master volume and direct control */
932 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
936 static const struct hda_verb d965_core_init[] = {
937 /* set master volume and direct control */
938 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
939 /* unmute node 0x1b */
940 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
941 /* select node 0x03 as DAC */
942 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
946 static const struct hda_verb dell_3st_core_init[] = {
947 /* don't set delta bit */
948 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
949 /* unmute node 0x1b */
950 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
951 /* select node 0x03 as DAC */
952 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
956 static const struct hda_verb stac927x_core_init[] = {
957 /* set master volume and direct control */
958 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
959 /* enable analog pc beep path */
960 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
964 static const struct hda_verb stac927x_volknob_core_init[] = {
965 /* don't set delta bit */
966 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
967 /* enable analog pc beep path */
968 {0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
972 static const struct hda_verb stac9205_core_init[] = {
973 /* set master volume and direct control */
974 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
975 /* enable analog pc beep path */
976 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
980 #define STAC_MONO_MUX \
982 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
983 .name = "Mono Mux", \
985 .info = stac92xx_mono_mux_enum_info, \
986 .get = stac92xx_mono_mux_enum_get, \
987 .put = stac92xx_mono_mux_enum_put, \
990 #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
992 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
993 .name = "Analog Loopback", \
995 .info = stac92xx_aloopback_info, \
996 .get = stac92xx_aloopback_get, \
997 .put = stac92xx_aloopback_put, \
998 .private_value = verb_read | (verb_write << 16), \
1001 #define DC_BIAS(xname, idx, nid) \
1003 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1006 .info = stac92xx_dc_bias_info, \
1007 .get = stac92xx_dc_bias_get, \
1008 .put = stac92xx_dc_bias_put, \
1009 .private_value = nid, \
1012 static const struct snd_kcontrol_new stac9200_mixer[] = {
1013 HDA_CODEC_VOLUME_MIN_MUTE("Master Playback Volume", 0xb, 0, HDA_OUTPUT),
1014 HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT),
1015 HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
1016 HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
1020 static const struct snd_kcontrol_new stac92hd73xx_6ch_loopback[] = {
1021 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
1025 static const struct snd_kcontrol_new stac92hd73xx_8ch_loopback[] = {
1026 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
1030 static const struct snd_kcontrol_new stac92hd73xx_10ch_loopback[] = {
1031 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
1036 static const struct snd_kcontrol_new stac92hd71bxx_loopback[] = {
1037 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2)
1040 static const struct snd_kcontrol_new stac925x_mixer[] = {
1041 HDA_CODEC_VOLUME_MIN_MUTE("Master Playback Volume", 0xe, 0, HDA_OUTPUT),
1042 HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT),
1046 static const struct snd_kcontrol_new stac9205_loopback[] = {
1047 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
1051 static const struct snd_kcontrol_new stac927x_loopback[] = {
1052 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
1056 static struct snd_kcontrol_new stac_dmux_mixer = {
1057 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1058 .name = "Digital Input Source",
1059 /* count set later */
1060 .info = stac92xx_dmux_enum_info,
1061 .get = stac92xx_dmux_enum_get,
1062 .put = stac92xx_dmux_enum_put,
1065 static struct snd_kcontrol_new stac_smux_mixer = {
1066 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1067 .name = "IEC958 Playback Source",
1068 /* count set later */
1069 .info = stac92xx_smux_enum_info,
1070 .get = stac92xx_smux_enum_get,
1071 .put = stac92xx_smux_enum_put,
1074 static const char * const slave_vols[] = {
1075 "Front Playback Volume",
1076 "Surround Playback Volume",
1077 "Center Playback Volume",
1078 "LFE Playback Volume",
1079 "Side Playback Volume",
1080 "Headphone Playback Volume",
1081 "Speaker Playback Volume",
1085 static const char * const slave_sws[] = {
1086 "Front Playback Switch",
1087 "Surround Playback Switch",
1088 "Center Playback Switch",
1089 "LFE Playback Switch",
1090 "Side Playback Switch",
1091 "Headphone Playback Switch",
1092 "Speaker Playback Switch",
1093 "IEC958 Playback Switch",
1097 static void stac92xx_free_kctls(struct hda_codec *codec);
1098 static int stac92xx_add_jack(struct hda_codec *codec, hda_nid_t nid, int type);
1100 static int stac92xx_build_controls(struct hda_codec *codec)
1102 struct sigmatel_spec *spec = codec->spec;
1103 struct auto_pin_cfg *cfg = &spec->autocfg;
1109 err = snd_hda_add_new_ctls(codec, spec->mixer);
1114 for (i = 0; i < spec->num_mixers; i++) {
1115 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1119 if (!spec->auto_mic && spec->num_dmuxes > 0 &&
1120 snd_hda_get_bool_hint(codec, "separate_dmux") == 1) {
1121 stac_dmux_mixer.count = spec->num_dmuxes;
1122 err = snd_hda_ctl_add(codec, 0,
1123 snd_ctl_new1(&stac_dmux_mixer, codec));
1127 if (spec->num_smuxes > 0) {
1128 int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid);
1129 struct hda_input_mux *smux = &spec->private_smux;
1130 /* check for mute support on SPDIF out */
1131 if (wcaps & AC_WCAP_OUT_AMP) {
1132 snd_hda_add_imux_item(smux, "Off", 0, NULL);
1133 spec->spdif_mute = 1;
1135 stac_smux_mixer.count = spec->num_smuxes;
1136 err = snd_hda_ctl_add(codec, 0,
1137 snd_ctl_new1(&stac_smux_mixer, codec));
1142 if (spec->multiout.dig_out_nid) {
1143 err = snd_hda_create_spdif_out_ctls(codec,
1144 spec->multiout.dig_out_nid,
1145 spec->multiout.dig_out_nid);
1148 err = snd_hda_create_spdif_share_sw(codec,
1152 spec->multiout.share_spdif = 1;
1154 if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) {
1155 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1160 /* if we have no master control, let's create it */
1161 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1162 unsigned int vmaster_tlv[4];
1163 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
1164 HDA_OUTPUT, vmaster_tlv);
1165 /* correct volume offset */
1166 vmaster_tlv[2] += vmaster_tlv[3] * spec->volume_offset;
1167 /* minimum value is actually mute */
1168 vmaster_tlv[3] |= TLV_DB_SCALE_MUTE;
1169 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1170 vmaster_tlv, slave_vols);
1174 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1175 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1181 if (spec->aloopback_ctl &&
1182 snd_hda_get_bool_hint(codec, "loopback") == 1) {
1183 err = snd_hda_add_new_ctls(codec, spec->aloopback_ctl);
1188 stac92xx_free_kctls(codec); /* no longer needed */
1190 /* create jack input elements */
1191 if (spec->hp_detect) {
1192 for (i = 0; i < cfg->hp_outs; i++) {
1193 int type = SND_JACK_HEADPHONE;
1194 nid = cfg->hp_pins[i];
1195 /* jack detection */
1196 if (cfg->hp_outs == i)
1197 type |= SND_JACK_LINEOUT;
1198 err = stac92xx_add_jack(codec, nid, type);
1203 for (i = 0; i < cfg->line_outs; i++) {
1204 err = stac92xx_add_jack(codec, cfg->line_out_pins[i],
1209 for (i = 0; i < cfg->num_inputs; i++) {
1210 nid = cfg->inputs[i].pin;
1211 err = stac92xx_add_jack(codec, nid, SND_JACK_MICROPHONE);
1219 static const unsigned int ref9200_pin_configs[8] = {
1220 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
1221 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1224 static const unsigned int gateway9200_m4_pin_configs[8] = {
1225 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1226 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1228 static const unsigned int gateway9200_m4_2_pin_configs[8] = {
1229 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1230 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1234 STAC 9200 pin configs for
1239 static const unsigned int dell9200_d21_pin_configs[8] = {
1240 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
1241 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1245 STAC 9200 pin configs for
1249 static const unsigned int dell9200_d22_pin_configs[8] = {
1250 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1251 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
1255 STAC 9200 pin configs for
1256 102801C4 (Dell Dimension E310)
1263 static const unsigned int dell9200_d23_pin_configs[8] = {
1264 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1265 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
1270 STAC 9200-32 pin configs for
1271 102801B5 (Dell Inspiron 630m)
1272 102801D8 (Dell Inspiron 640m)
1274 static const unsigned int dell9200_m21_pin_configs[8] = {
1275 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1276 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
1280 STAC 9200-32 pin configs for
1281 102801C2 (Dell Latitude D620)
1283 102801CC (Dell Latitude D820)
1287 static const unsigned int dell9200_m22_pin_configs[8] = {
1288 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
1289 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
1293 STAC 9200-32 pin configs for
1294 102801CE (Dell XPS M1710)
1295 102801CF (Dell Precision M90)
1297 static const unsigned int dell9200_m23_pin_configs[8] = {
1298 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1299 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1303 STAC 9200-32 pin configs for
1306 102801CB (Dell Latitude 120L)
1309 static const unsigned int dell9200_m24_pin_configs[8] = {
1310 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
1311 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
1315 STAC 9200-32 pin configs for
1316 102801BD (Dell Inspiron E1505n)
1320 static const unsigned int dell9200_m25_pin_configs[8] = {
1321 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1322 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
1326 STAC 9200-32 pin configs for
1327 102801F5 (Dell Inspiron 1501)
1330 static const unsigned int dell9200_m26_pin_configs[8] = {
1331 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
1332 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
1337 102801CD (Dell Inspiron E1705/9400)
1339 static const unsigned int dell9200_m27_pin_configs[8] = {
1340 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1341 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
1344 static const unsigned int oqo9200_pin_configs[8] = {
1345 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1346 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1350 static const unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = {
1351 [STAC_REF] = ref9200_pin_configs,
1352 [STAC_9200_OQO] = oqo9200_pin_configs,
1353 [STAC_9200_DELL_D21] = dell9200_d21_pin_configs,
1354 [STAC_9200_DELL_D22] = dell9200_d22_pin_configs,
1355 [STAC_9200_DELL_D23] = dell9200_d23_pin_configs,
1356 [STAC_9200_DELL_M21] = dell9200_m21_pin_configs,
1357 [STAC_9200_DELL_M22] = dell9200_m22_pin_configs,
1358 [STAC_9200_DELL_M23] = dell9200_m23_pin_configs,
1359 [STAC_9200_DELL_M24] = dell9200_m24_pin_configs,
1360 [STAC_9200_DELL_M25] = dell9200_m25_pin_configs,
1361 [STAC_9200_DELL_M26] = dell9200_m26_pin_configs,
1362 [STAC_9200_DELL_M27] = dell9200_m27_pin_configs,
1363 [STAC_9200_M4] = gateway9200_m4_pin_configs,
1364 [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs,
1365 [STAC_9200_PANASONIC] = ref9200_pin_configs,
1368 static const char * const stac9200_models[STAC_9200_MODELS] = {
1369 [STAC_AUTO] = "auto",
1371 [STAC_9200_OQO] = "oqo",
1372 [STAC_9200_DELL_D21] = "dell-d21",
1373 [STAC_9200_DELL_D22] = "dell-d22",
1374 [STAC_9200_DELL_D23] = "dell-d23",
1375 [STAC_9200_DELL_M21] = "dell-m21",
1376 [STAC_9200_DELL_M22] = "dell-m22",
1377 [STAC_9200_DELL_M23] = "dell-m23",
1378 [STAC_9200_DELL_M24] = "dell-m24",
1379 [STAC_9200_DELL_M25] = "dell-m25",
1380 [STAC_9200_DELL_M26] = "dell-m26",
1381 [STAC_9200_DELL_M27] = "dell-m27",
1382 [STAC_9200_M4] = "gateway-m4",
1383 [STAC_9200_M4_2] = "gateway-m4-2",
1384 [STAC_9200_PANASONIC] = "panasonic",
1387 static const struct snd_pci_quirk stac9200_cfg_tbl[] = {
1388 /* SigmaTel reference board */
1389 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1390 "DFI LanParty", STAC_REF),
1391 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1392 "DFI LanParty", STAC_REF),
1393 /* Dell laptops have BIOS problem */
1394 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1395 "unknown Dell", STAC_9200_DELL_D21),
1396 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
1397 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1398 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1399 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1400 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1401 "unknown Dell", STAC_9200_DELL_D22),
1402 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1403 "unknown Dell", STAC_9200_DELL_D22),
1404 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
1405 "Dell Latitude D620", STAC_9200_DELL_M22),
1406 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1407 "unknown Dell", STAC_9200_DELL_D23),
1408 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1409 "unknown Dell", STAC_9200_DELL_D23),
1410 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1411 "unknown Dell", STAC_9200_DELL_M22),
1412 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1413 "unknown Dell", STAC_9200_DELL_M24),
1414 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1415 "unknown Dell", STAC_9200_DELL_M24),
1416 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
1417 "Dell Latitude 120L", STAC_9200_DELL_M24),
1418 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
1419 "Dell Latitude D820", STAC_9200_DELL_M22),
1420 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
1421 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
1422 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
1423 "Dell XPS M1710", STAC_9200_DELL_M23),
1424 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
1425 "Dell Precision M90", STAC_9200_DELL_M23),
1426 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1427 "unknown Dell", STAC_9200_DELL_M22),
1428 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1429 "unknown Dell", STAC_9200_DELL_M22),
1430 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
1431 "unknown Dell", STAC_9200_DELL_M22),
1432 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
1433 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1434 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1435 "unknown Dell", STAC_9200_DELL_D23),
1436 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1437 "unknown Dell", STAC_9200_DELL_D23),
1438 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1439 "unknown Dell", STAC_9200_DELL_D21),
1440 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1441 "unknown Dell", STAC_9200_DELL_D23),
1442 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1443 "unknown Dell", STAC_9200_DELL_D21),
1444 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1445 "unknown Dell", STAC_9200_DELL_M25),
1446 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1447 "unknown Dell", STAC_9200_DELL_M25),
1448 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
1449 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1450 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1451 "unknown Dell", STAC_9200_DELL_M26),
1453 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
1454 /* Gateway machines needs EAPD to be set on resume */
1455 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1456 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1457 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
1459 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
1463 static const unsigned int ref925x_pin_configs[8] = {
1464 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
1465 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
1468 static const unsigned int stac925xM1_pin_configs[8] = {
1469 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1470 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1473 static const unsigned int stac925xM1_2_pin_configs[8] = {
1474 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1475 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1478 static const unsigned int stac925xM2_pin_configs[8] = {
1479 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1480 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1483 static const unsigned int stac925xM2_2_pin_configs[8] = {
1484 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1485 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1488 static const unsigned int stac925xM3_pin_configs[8] = {
1489 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1490 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
1493 static const unsigned int stac925xM5_pin_configs[8] = {
1494 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1495 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1498 static const unsigned int stac925xM6_pin_configs[8] = {
1499 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1500 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
1503 static const unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = {
1504 [STAC_REF] = ref925x_pin_configs,
1505 [STAC_M1] = stac925xM1_pin_configs,
1506 [STAC_M1_2] = stac925xM1_2_pin_configs,
1507 [STAC_M2] = stac925xM2_pin_configs,
1508 [STAC_M2_2] = stac925xM2_2_pin_configs,
1509 [STAC_M3] = stac925xM3_pin_configs,
1510 [STAC_M5] = stac925xM5_pin_configs,
1511 [STAC_M6] = stac925xM6_pin_configs,
1514 static const char * const stac925x_models[STAC_925x_MODELS] = {
1515 [STAC_925x_AUTO] = "auto",
1518 [STAC_M1_2] = "m1-2",
1520 [STAC_M2_2] = "m2-2",
1526 static const struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = {
1527 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1528 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1529 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1530 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
1531 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
1532 /* Not sure about the brand name for those */
1533 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1534 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1535 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1536 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
1540 static const struct snd_pci_quirk stac925x_cfg_tbl[] = {
1541 /* SigmaTel reference board */
1542 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
1543 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
1544 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
1546 /* Default table for unknown ID */
1547 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1552 static const unsigned int ref92hd73xx_pin_configs[13] = {
1553 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1554 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1555 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
1559 static const unsigned int dell_m6_pin_configs[13] = {
1560 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
1561 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
1562 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1566 static const unsigned int alienware_m17x_pin_configs[13] = {
1567 0x0321101f, 0x0321101f, 0x03a11020, 0x03014020,
1568 0x90170110, 0x4f0000f0, 0x4f0000f0, 0x4f0000f0,
1569 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1573 static const unsigned int intel_dg45id_pin_configs[13] = {
1574 0x02214230, 0x02A19240, 0x01013214, 0x01014210,
1575 0x01A19250, 0x01011212, 0x01016211
1578 static const unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
1579 [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs,
1580 [STAC_DELL_M6_AMIC] = dell_m6_pin_configs,
1581 [STAC_DELL_M6_DMIC] = dell_m6_pin_configs,
1582 [STAC_DELL_M6_BOTH] = dell_m6_pin_configs,
1583 [STAC_DELL_EQ] = dell_m6_pin_configs,
1584 [STAC_ALIENWARE_M17X] = alienware_m17x_pin_configs,
1585 [STAC_92HD73XX_INTEL] = intel_dg45id_pin_configs,
1588 static const char * const stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
1589 [STAC_92HD73XX_AUTO] = "auto",
1590 [STAC_92HD73XX_NO_JD] = "no-jd",
1591 [STAC_92HD73XX_REF] = "ref",
1592 [STAC_92HD73XX_INTEL] = "intel",
1593 [STAC_DELL_M6_AMIC] = "dell-m6-amic",
1594 [STAC_DELL_M6_DMIC] = "dell-m6-dmic",
1595 [STAC_DELL_M6_BOTH] = "dell-m6",
1596 [STAC_DELL_EQ] = "dell-eq",
1597 [STAC_ALIENWARE_M17X] = "alienware",
1600 static const struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
1601 /* SigmaTel reference board */
1602 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1603 "DFI LanParty", STAC_92HD73XX_REF),
1604 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1605 "DFI LanParty", STAC_92HD73XX_REF),
1606 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002,
1607 "Intel DG45ID", STAC_92HD73XX_INTEL),
1608 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003,
1609 "Intel DG45FC", STAC_92HD73XX_INTEL),
1610 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
1611 "Dell Studio 1535", STAC_DELL_M6_DMIC),
1612 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
1613 "unknown Dell", STAC_DELL_M6_DMIC),
1614 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
1615 "unknown Dell", STAC_DELL_M6_BOTH),
1616 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
1617 "unknown Dell", STAC_DELL_M6_BOTH),
1618 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
1619 "unknown Dell", STAC_DELL_M6_AMIC),
1620 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
1621 "unknown Dell", STAC_DELL_M6_AMIC),
1622 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
1623 "unknown Dell", STAC_DELL_M6_DMIC),
1624 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
1625 "unknown Dell", STAC_DELL_M6_DMIC),
1626 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
1627 "Dell Studio 1537", STAC_DELL_M6_DMIC),
1628 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
1629 "Dell Studio 17", STAC_DELL_M6_DMIC),
1630 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be,
1631 "Dell Studio 1555", STAC_DELL_M6_DMIC),
1632 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd,
1633 "Dell Studio 1557", STAC_DELL_M6_DMIC),
1634 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02fe,
1635 "Dell Studio XPS 1645", STAC_DELL_M6_BOTH),
1636 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0413,
1637 "Dell Studio 1558", STAC_DELL_M6_DMIC),
1641 static const struct snd_pci_quirk stac92hd73xx_codec_id_cfg_tbl[] = {
1642 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a1,
1643 "Alienware M17x", STAC_ALIENWARE_M17X),
1644 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x043a,
1645 "Alienware M17x", STAC_ALIENWARE_M17X),
1649 static const unsigned int ref92hd83xxx_pin_configs[10] = {
1650 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1651 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
1652 0x01451160, 0x98560170,
1655 static const unsigned int dell_s14_pin_configs[10] = {
1656 0x0221403f, 0x0221101f, 0x02a19020, 0x90170110,
1657 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a60160,
1658 0x40f000f0, 0x40f000f0,
1661 static const unsigned int hp_dv7_4000_pin_configs[10] = {
1662 0x03a12050, 0x0321201f, 0x40f000f0, 0x90170110,
1663 0x40f000f0, 0x40f000f0, 0x90170110, 0xd5a30140,
1664 0x40f000f0, 0x40f000f0,
1667 static const unsigned int hp_cNB11_intquad_pin_configs[10] = {
1668 0x40f000f0, 0x0221101f, 0x02a11020, 0x92170110,
1669 0x40f000f0, 0x92170110, 0x40f000f0, 0xd5a30130,
1670 0x40f000f0, 0x40f000f0,
1673 static const unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = {
1674 [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs,
1675 [STAC_92HD83XXX_PWR_REF] = ref92hd83xxx_pin_configs,
1676 [STAC_DELL_S14] = dell_s14_pin_configs,
1677 [STAC_92HD83XXX_HP_cNB11_INTQUAD] = hp_cNB11_intquad_pin_configs,
1678 [STAC_HP_DV7_4000] = hp_dv7_4000_pin_configs,
1681 static const char * const stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
1682 [STAC_92HD83XXX_AUTO] = "auto",
1683 [STAC_92HD83XXX_REF] = "ref",
1684 [STAC_92HD83XXX_PWR_REF] = "mic-ref",
1685 [STAC_DELL_S14] = "dell-s14",
1686 [STAC_92HD83XXX_HP] = "hp",
1687 [STAC_92HD83XXX_HP_cNB11_INTQUAD] = "hp_cNB11_intquad",
1688 [STAC_HP_DV7_4000] = "hp-dv7-4000",
1691 static const struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
1692 /* SigmaTel reference board */
1693 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1694 "DFI LanParty", STAC_92HD83XXX_REF),
1695 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1696 "DFI LanParty", STAC_92HD83XXX_REF),
1697 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
1698 "unknown Dell", STAC_DELL_S14),
1699 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xff00, 0x3600,
1700 "HP", STAC_92HD83XXX_HP),
1701 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1656,
1702 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1703 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1657,
1704 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1705 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1658,
1706 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1707 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1659,
1708 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1709 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165A,
1710 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1711 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165B,
1712 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1713 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3388,
1714 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1715 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3389,
1716 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1717 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355B,
1718 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1719 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355C,
1720 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1721 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355D,
1722 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1723 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355E,
1724 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1725 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355F,
1726 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1727 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3560,
1728 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1729 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358B,
1730 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1731 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358C,
1732 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1733 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358D,
1734 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1735 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3591,
1736 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1737 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3592,
1738 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1739 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3593,
1740 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1744 static const unsigned int ref92hd71bxx_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1745 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
1746 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
1747 0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
1751 static const unsigned int dell_m4_1_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1752 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
1753 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
1754 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
1758 static const unsigned int dell_m4_2_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1759 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1760 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
1761 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1765 static const unsigned int dell_m4_3_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1766 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1767 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
1768 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1772 static const unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
1773 [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
1774 [STAC_DELL_M4_1] = dell_m4_1_pin_configs,
1775 [STAC_DELL_M4_2] = dell_m4_2_pin_configs,
1776 [STAC_DELL_M4_3] = dell_m4_3_pin_configs,
1777 [STAC_HP_M4] = NULL,
1778 [STAC_HP_DV4] = NULL,
1779 [STAC_HP_DV5] = NULL,
1780 [STAC_HP_HDX] = NULL,
1781 [STAC_HP_DV4_1222NR] = NULL,
1784 static const char * const stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
1785 [STAC_92HD71BXX_AUTO] = "auto",
1786 [STAC_92HD71BXX_REF] = "ref",
1787 [STAC_DELL_M4_1] = "dell-m4-1",
1788 [STAC_DELL_M4_2] = "dell-m4-2",
1789 [STAC_DELL_M4_3] = "dell-m4-3",
1790 [STAC_HP_M4] = "hp-m4",
1791 [STAC_HP_DV4] = "hp-dv4",
1792 [STAC_HP_DV5] = "hp-dv5",
1793 [STAC_HP_HDX] = "hp-hdx",
1794 [STAC_HP_DV4_1222NR] = "hp-dv4-1222nr",
1797 static const struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1798 /* SigmaTel reference board */
1799 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1800 "DFI LanParty", STAC_92HD71BXX_REF),
1801 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1802 "DFI LanParty", STAC_92HD71BXX_REF),
1803 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fb,
1804 "HP dv4-1222nr", STAC_HP_DV4_1222NR),
1805 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720,
1807 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
1809 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
1810 "HP dv4-7", STAC_HP_DV4),
1811 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
1812 "HP dv4-7", STAC_HP_DV5),
1813 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
1814 "HP HDX", STAC_HP_HDX), /* HDX18 */
1815 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
1816 "HP mini 1000", STAC_HP_M4),
1817 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
1818 "HP HDX", STAC_HP_HDX), /* HDX16 */
1819 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620,
1820 "HP dv6", STAC_HP_DV5),
1821 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3061,
1822 "HP dv6", STAC_HP_DV5), /* HP dv6-1110ax */
1823 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x363e,
1824 "HP DV6", STAC_HP_DV5),
1825 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
1827 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
1828 "unknown Dell", STAC_DELL_M4_1),
1829 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
1830 "unknown Dell", STAC_DELL_M4_1),
1831 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
1832 "unknown Dell", STAC_DELL_M4_1),
1833 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
1834 "unknown Dell", STAC_DELL_M4_1),
1835 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
1836 "unknown Dell", STAC_DELL_M4_1),
1837 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
1838 "unknown Dell", STAC_DELL_M4_1),
1839 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
1840 "unknown Dell", STAC_DELL_M4_1),
1841 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
1842 "unknown Dell", STAC_DELL_M4_2),
1843 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
1844 "unknown Dell", STAC_DELL_M4_2),
1845 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
1846 "unknown Dell", STAC_DELL_M4_2),
1847 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
1848 "unknown Dell", STAC_DELL_M4_2),
1849 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
1850 "unknown Dell", STAC_DELL_M4_3),
1854 static const unsigned int ref922x_pin_configs[10] = {
1855 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1856 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
1857 0x40000100, 0x40000100,
1861 STAC 922X pin configs for
1868 static const unsigned int dell_922x_d81_pin_configs[10] = {
1869 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1870 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1871 0x01813122, 0x400001f2,
1875 STAC 922X pin configs for
1879 static const unsigned int dell_922x_d82_pin_configs[10] = {
1880 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1881 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1882 0x01813122, 0x400001f1,
1886 STAC 922X pin configs for
1889 static const unsigned int dell_922x_m81_pin_configs[10] = {
1890 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1891 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1892 0x40C003f1, 0x405003f0,
1896 STAC 9221 A1 pin configs for
1897 102801D7 (Dell XPS M1210)
1899 static const unsigned int dell_922x_m82_pin_configs[10] = {
1900 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1901 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
1902 0x508003f3, 0x405003f4,
1905 static const unsigned int d945gtp3_pin_configs[10] = {
1906 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
1907 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1908 0x02a19120, 0x40000100,
1911 static const unsigned int d945gtp5_pin_configs[10] = {
1912 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1913 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
1914 0x02a19320, 0x40000100,
1917 static const unsigned int intel_mac_v1_pin_configs[10] = {
1918 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1919 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
1920 0x400000fc, 0x400000fb,
1923 static const unsigned int intel_mac_v2_pin_configs[10] = {
1924 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1925 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
1926 0x400000fc, 0x400000fb,
1929 static const unsigned int intel_mac_v3_pin_configs[10] = {
1930 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1931 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1932 0x400000fc, 0x400000fb,
1935 static const unsigned int intel_mac_v4_pin_configs[10] = {
1936 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1937 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1938 0x400000fc, 0x400000fb,
1941 static const unsigned int intel_mac_v5_pin_configs[10] = {
1942 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1943 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1944 0x400000fc, 0x400000fb,
1947 static const unsigned int ecs202_pin_configs[10] = {
1948 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1949 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1950 0x9037012e, 0x40e000f2,
1953 static const unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
1954 [STAC_D945_REF] = ref922x_pin_configs,
1955 [STAC_D945GTP3] = d945gtp3_pin_configs,
1956 [STAC_D945GTP5] = d945gtp5_pin_configs,
1957 [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
1958 [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
1959 [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
1960 [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
1961 [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
1962 [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
1963 /* for backward compatibility */
1964 [STAC_MACMINI] = intel_mac_v3_pin_configs,
1965 [STAC_MACBOOK] = intel_mac_v5_pin_configs,
1966 [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
1967 [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
1968 [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
1969 [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
1970 [STAC_ECS_202] = ecs202_pin_configs,
1971 [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
1972 [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
1973 [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
1974 [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,
1977 static const char * const stac922x_models[STAC_922X_MODELS] = {
1978 [STAC_922X_AUTO] = "auto",
1979 [STAC_D945_REF] = "ref",
1980 [STAC_D945GTP5] = "5stack",
1981 [STAC_D945GTP3] = "3stack",
1982 [STAC_INTEL_MAC_V1] = "intel-mac-v1",
1983 [STAC_INTEL_MAC_V2] = "intel-mac-v2",
1984 [STAC_INTEL_MAC_V3] = "intel-mac-v3",
1985 [STAC_INTEL_MAC_V4] = "intel-mac-v4",
1986 [STAC_INTEL_MAC_V5] = "intel-mac-v5",
1987 [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
1988 /* for backward compatibility */
1989 [STAC_MACMINI] = "macmini",
1990 [STAC_MACBOOK] = "macbook",
1991 [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1",
1992 [STAC_MACBOOK_PRO_V2] = "macbook-pro",
1993 [STAC_IMAC_INTEL] = "imac-intel",
1994 [STAC_IMAC_INTEL_20] = "imac-intel-20",
1995 [STAC_ECS_202] = "ecs202",
1996 [STAC_922X_DELL_D81] = "dell-d81",
1997 [STAC_922X_DELL_D82] = "dell-d82",
1998 [STAC_922X_DELL_M81] = "dell-m81",
1999 [STAC_922X_DELL_M82] = "dell-m82",
2002 static const struct snd_pci_quirk stac922x_cfg_tbl[] = {
2003 /* SigmaTel reference board */
2004 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2005 "DFI LanParty", STAC_D945_REF),
2006 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2007 "DFI LanParty", STAC_D945_REF),
2008 /* Intel 945G based systems */
2009 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
2010 "Intel D945G", STAC_D945GTP3),
2011 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
2012 "Intel D945G", STAC_D945GTP3),
2013 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
2014 "Intel D945G", STAC_D945GTP3),
2015 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
2016 "Intel D945G", STAC_D945GTP3),
2017 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
2018 "Intel D945G", STAC_D945GTP3),
2019 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
2020 "Intel D945G", STAC_D945GTP3),
2021 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
2022 "Intel D945G", STAC_D945GTP3),
2023 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
2024 "Intel D945G", STAC_D945GTP3),
2025 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
2026 "Intel D945G", STAC_D945GTP3),
2027 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
2028 "Intel D945G", STAC_D945GTP3),
2029 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
2030 "Intel D945G", STAC_D945GTP3),
2031 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
2032 "Intel D945G", STAC_D945GTP3),
2033 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
2034 "Intel D945G", STAC_D945GTP3),
2035 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
2036 "Intel D945G", STAC_D945GTP3),
2037 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
2038 "Intel D945G", STAC_D945GTP3),
2039 /* Intel D945G 5-stack systems */
2040 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
2041 "Intel D945G", STAC_D945GTP5),
2042 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
2043 "Intel D945G", STAC_D945GTP5),
2044 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
2045 "Intel D945G", STAC_D945GTP5),
2046 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
2047 "Intel D945G", STAC_D945GTP5),
2048 /* Intel 945P based systems */
2049 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
2050 "Intel D945P", STAC_D945GTP3),
2051 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
2052 "Intel D945P", STAC_D945GTP3),
2053 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
2054 "Intel D945P", STAC_D945GTP3),
2055 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
2056 "Intel D945P", STAC_D945GTP3),
2057 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
2058 "Intel D945P", STAC_D945GTP3),
2059 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
2060 "Intel D945P", STAC_D945GTP5),
2062 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
2063 "Intel D945", STAC_D945_REF),
2065 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
2066 SND_PCI_QUIRK(0x8384, 0x7680,
2067 "Mac", STAC_INTEL_MAC_AUTO),
2069 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
2070 "unknown Dell", STAC_922X_DELL_D81),
2071 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
2072 "unknown Dell", STAC_922X_DELL_D81),
2073 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
2074 "unknown Dell", STAC_922X_DELL_D81),
2075 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
2076 "unknown Dell", STAC_922X_DELL_D82),
2077 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
2078 "unknown Dell", STAC_922X_DELL_M81),
2079 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
2080 "unknown Dell", STAC_922X_DELL_D82),
2081 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
2082 "unknown Dell", STAC_922X_DELL_D81),
2083 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
2084 "unknown Dell", STAC_922X_DELL_D81),
2085 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
2086 "Dell XPS M1210", STAC_922X_DELL_M82),
2087 /* ECS/PC Chips boards */
2088 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
2089 "ECS/PC chips", STAC_ECS_202),
2093 static const unsigned int ref927x_pin_configs[14] = {
2094 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2095 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
2096 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
2097 0x01c42190, 0x40000100,
2100 static const unsigned int d965_3st_pin_configs[14] = {
2101 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
2102 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
2103 0x40000100, 0x40000100, 0x40000100, 0x40000100,
2104 0x40000100, 0x40000100
2107 static const unsigned int d965_5st_pin_configs[14] = {
2108 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2109 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2110 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2111 0x40000100, 0x40000100
2114 static const unsigned int d965_5st_no_fp_pin_configs[14] = {
2115 0x40000100, 0x40000100, 0x0181304e, 0x01014010,
2116 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2117 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2118 0x40000100, 0x40000100
2121 static const unsigned int dell_3st_pin_configs[14] = {
2122 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
2123 0x01111212, 0x01116211, 0x01813050, 0x01112214,
2124 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
2125 0x40c003fc, 0x40000100
2128 static const unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
2129 [STAC_D965_REF_NO_JD] = ref927x_pin_configs,
2130 [STAC_D965_REF] = ref927x_pin_configs,
2131 [STAC_D965_3ST] = d965_3st_pin_configs,
2132 [STAC_D965_5ST] = d965_5st_pin_configs,
2133 [STAC_D965_5ST_NO_FP] = d965_5st_no_fp_pin_configs,
2134 [STAC_DELL_3ST] = dell_3st_pin_configs,
2135 [STAC_DELL_BIOS] = NULL,
2136 [STAC_927X_VOLKNOB] = NULL,
2139 static const char * const stac927x_models[STAC_927X_MODELS] = {
2140 [STAC_927X_AUTO] = "auto",
2141 [STAC_D965_REF_NO_JD] = "ref-no-jd",
2142 [STAC_D965_REF] = "ref",
2143 [STAC_D965_3ST] = "3stack",
2144 [STAC_D965_5ST] = "5stack",
2145 [STAC_D965_5ST_NO_FP] = "5stack-no-fp",
2146 [STAC_DELL_3ST] = "dell-3stack",
2147 [STAC_DELL_BIOS] = "dell-bios",
2148 [STAC_927X_VOLKNOB] = "volknob",
2151 static const struct snd_pci_quirk stac927x_cfg_tbl[] = {
2152 /* SigmaTel reference board */
2153 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2154 "DFI LanParty", STAC_D965_REF),
2155 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2156 "DFI LanParty", STAC_D965_REF),
2157 /* Intel 946 based systems */
2158 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
2159 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
2160 /* 965 based 3 stack systems */
2161 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
2162 "Intel D965", STAC_D965_3ST),
2163 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
2164 "Intel D965", STAC_D965_3ST),
2165 /* Dell 3 stack systems */
2166 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
2167 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
2168 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
2169 /* Dell 3 stack systems with verb table in BIOS */
2170 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
2171 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_BIOS),
2172 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
2173 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS),
2174 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS),
2175 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
2176 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
2177 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
2178 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
2179 /* 965 based 5 stack systems */
2180 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
2181 "Intel D965", STAC_D965_5ST),
2182 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
2183 "Intel D965", STAC_D965_5ST),
2184 /* volume-knob fixes */
2185 SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB),
2189 static const unsigned int ref9205_pin_configs[12] = {
2190 0x40000100, 0x40000100, 0x01016011, 0x01014010,
2191 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
2192 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
2196 STAC 9205 pin configs for
2203 10280228 (Dell Vostro 1500)
2204 10280229 (Dell Vostro 1700)
2206 static const unsigned int dell_9205_m42_pin_configs[12] = {
2207 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2208 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2209 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2213 STAC 9205 pin configs for
2217 102801FF (Dell Precision M4300)
2222 static const unsigned int dell_9205_m43_pin_configs[12] = {
2223 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2224 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2225 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2228 static const unsigned int dell_9205_m44_pin_configs[12] = {
2229 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2230 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2231 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2234 static const unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
2235 [STAC_9205_REF] = ref9205_pin_configs,
2236 [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
2237 [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
2238 [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
2239 [STAC_9205_EAPD] = NULL,
2242 static const char * const stac9205_models[STAC_9205_MODELS] = {
2243 [STAC_9205_AUTO] = "auto",
2244 [STAC_9205_REF] = "ref",
2245 [STAC_9205_DELL_M42] = "dell-m42",
2246 [STAC_9205_DELL_M43] = "dell-m43",
2247 [STAC_9205_DELL_M44] = "dell-m44",
2248 [STAC_9205_EAPD] = "eapd",
2251 static const struct snd_pci_quirk stac9205_cfg_tbl[] = {
2252 /* SigmaTel reference board */
2253 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2254 "DFI LanParty", STAC_9205_REF),
2255 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30,
2256 "SigmaTel", STAC_9205_REF),
2257 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2258 "DFI LanParty", STAC_9205_REF),
2260 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
2261 "unknown Dell", STAC_9205_DELL_M42),
2262 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
2263 "unknown Dell", STAC_9205_DELL_M42),
2264 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
2265 "Dell Precision", STAC_9205_DELL_M43),
2266 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
2267 "Dell Precision", STAC_9205_DELL_M43),
2268 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
2269 "Dell Precision", STAC_9205_DELL_M43),
2270 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
2271 "unknown Dell", STAC_9205_DELL_M42),
2272 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
2273 "unknown Dell", STAC_9205_DELL_M42),
2274 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
2275 "Dell Precision", STAC_9205_DELL_M43),
2276 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
2277 "Dell Precision M4300", STAC_9205_DELL_M43),
2278 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
2279 "unknown Dell", STAC_9205_DELL_M42),
2280 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
2281 "Dell Precision", STAC_9205_DELL_M43),
2282 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
2283 "Dell Precision", STAC_9205_DELL_M43),
2284 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
2285 "Dell Precision", STAC_9205_DELL_M43),
2286 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
2287 "Dell Inspiron", STAC_9205_DELL_M44),
2288 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
2289 "Dell Vostro 1500", STAC_9205_DELL_M42),
2290 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0229,
2291 "Dell Vostro 1700", STAC_9205_DELL_M42),
2293 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD),
2294 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
2298 static void stac92xx_set_config_regs(struct hda_codec *codec,
2299 const unsigned int *pincfgs)
2302 struct sigmatel_spec *spec = codec->spec;
2307 for (i = 0; i < spec->num_pins; i++)
2308 if (spec->pin_nids[i] && pincfgs[i])
2309 snd_hda_codec_set_pincfg(codec, spec->pin_nids[i],
2314 * Analog playback callbacks
2316 static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
2317 struct hda_codec *codec,
2318 struct snd_pcm_substream *substream)
2320 struct sigmatel_spec *spec = codec->spec;
2321 if (spec->stream_delay)
2322 msleep(spec->stream_delay);
2323 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2327 static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2328 struct hda_codec *codec,
2329 unsigned int stream_tag,
2330 unsigned int format,
2331 struct snd_pcm_substream *substream)
2333 struct sigmatel_spec *spec = codec->spec;
2334 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
2337 static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2338 struct hda_codec *codec,
2339 struct snd_pcm_substream *substream)
2341 struct sigmatel_spec *spec = codec->spec;
2342 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2346 * Digital playback callbacks
2348 static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2349 struct hda_codec *codec,
2350 struct snd_pcm_substream *substream)
2352 struct sigmatel_spec *spec = codec->spec;
2353 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2356 static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2357 struct hda_codec *codec,
2358 struct snd_pcm_substream *substream)
2360 struct sigmatel_spec *spec = codec->spec;
2361 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2364 static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2365 struct hda_codec *codec,
2366 unsigned int stream_tag,
2367 unsigned int format,
2368 struct snd_pcm_substream *substream)
2370 struct sigmatel_spec *spec = codec->spec;
2371 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2372 stream_tag, format, substream);
2375 static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2376 struct hda_codec *codec,
2377 struct snd_pcm_substream *substream)
2379 struct sigmatel_spec *spec = codec->spec;
2380 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2385 * Analog capture callbacks
2387 static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2388 struct hda_codec *codec,
2389 unsigned int stream_tag,
2390 unsigned int format,
2391 struct snd_pcm_substream *substream)
2393 struct sigmatel_spec *spec = codec->spec;
2394 hda_nid_t nid = spec->adc_nids[substream->number];
2396 if (spec->powerdown_adcs) {
2398 snd_hda_codec_write(codec, nid, 0,
2399 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
2401 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
2405 static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2406 struct hda_codec *codec,
2407 struct snd_pcm_substream *substream)
2409 struct sigmatel_spec *spec = codec->spec;
2410 hda_nid_t nid = spec->adc_nids[substream->number];
2412 snd_hda_codec_cleanup_stream(codec, nid);
2413 if (spec->powerdown_adcs)
2414 snd_hda_codec_write(codec, nid, 0,
2415 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
2419 static const struct hda_pcm_stream stac92xx_pcm_digital_playback = {
2423 /* NID is set in stac92xx_build_pcms */
2425 .open = stac92xx_dig_playback_pcm_open,
2426 .close = stac92xx_dig_playback_pcm_close,
2427 .prepare = stac92xx_dig_playback_pcm_prepare,
2428 .cleanup = stac92xx_dig_playback_pcm_cleanup
2432 static const struct hda_pcm_stream stac92xx_pcm_digital_capture = {
2436 /* NID is set in stac92xx_build_pcms */
2439 static const struct hda_pcm_stream stac92xx_pcm_analog_playback = {
2443 .nid = 0x02, /* NID to query formats and rates */
2445 .open = stac92xx_playback_pcm_open,
2446 .prepare = stac92xx_playback_pcm_prepare,
2447 .cleanup = stac92xx_playback_pcm_cleanup
2451 static const struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
2455 .nid = 0x06, /* NID to query formats and rates */
2457 .open = stac92xx_playback_pcm_open,
2458 .prepare = stac92xx_playback_pcm_prepare,
2459 .cleanup = stac92xx_playback_pcm_cleanup
2463 static const struct hda_pcm_stream stac92xx_pcm_analog_capture = {
2466 /* NID + .substreams is set in stac92xx_build_pcms */
2468 .prepare = stac92xx_capture_pcm_prepare,
2469 .cleanup = stac92xx_capture_pcm_cleanup
2473 static int stac92xx_build_pcms(struct hda_codec *codec)
2475 struct sigmatel_spec *spec = codec->spec;
2476 struct hda_pcm *info = spec->pcm_rec;
2478 codec->num_pcms = 1;
2479 codec->pcm_info = info;
2481 info->name = "STAC92xx Analog";
2482 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
2483 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2484 spec->multiout.dac_nids[0];
2485 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
2486 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2487 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
2489 if (spec->alt_switch) {
2492 info->name = "STAC92xx Analog Alt";
2493 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
2496 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2499 info->name = "STAC92xx Digital";
2500 info->pcm_type = spec->autocfg.dig_out_type[0];
2501 if (spec->multiout.dig_out_nid) {
2502 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
2503 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2505 if (spec->dig_in_nid) {
2506 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
2507 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2514 static unsigned int stac92xx_get_default_vref(struct hda_codec *codec,
2517 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2518 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2519 if (pincap & AC_PINCAP_VREF_100)
2520 return AC_PINCTL_VREF_100;
2521 if (pincap & AC_PINCAP_VREF_80)
2522 return AC_PINCTL_VREF_80;
2523 if (pincap & AC_PINCAP_VREF_50)
2524 return AC_PINCTL_VREF_50;
2525 if (pincap & AC_PINCAP_VREF_GRD)
2526 return AC_PINCTL_VREF_GRD;
2530 static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
2533 snd_hda_codec_write_cache(codec, nid, 0,
2534 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2537 #define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2539 static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
2540 struct snd_ctl_elem_value *ucontrol)
2542 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2543 struct sigmatel_spec *spec = codec->spec;
2545 ucontrol->value.integer.value[0] = !!spec->hp_switch;
2549 static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid);
2551 static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
2552 struct snd_ctl_elem_value *ucontrol)
2554 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2555 struct sigmatel_spec *spec = codec->spec;
2556 int nid = kcontrol->private_value;
2558 spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0;
2560 /* check to be sure that the ports are up to date with
2563 stac_issue_unsol_event(codec, nid);
2568 static int stac92xx_dc_bias_info(struct snd_kcontrol *kcontrol,
2569 struct snd_ctl_elem_info *uinfo)
2572 static const char * const texts[] = {
2573 "Mic In", "Line In", "Line Out"
2576 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2577 struct sigmatel_spec *spec = codec->spec;
2578 hda_nid_t nid = kcontrol->private_value;
2580 if (nid == spec->mic_switch || nid == spec->line_switch)
2585 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2586 uinfo->value.enumerated.items = i;
2588 if (uinfo->value.enumerated.item >= i)
2589 uinfo->value.enumerated.item = i-1;
2590 strcpy(uinfo->value.enumerated.name,
2591 texts[uinfo->value.enumerated.item]);
2596 static int stac92xx_dc_bias_get(struct snd_kcontrol *kcontrol,
2597 struct snd_ctl_elem_value *ucontrol)
2599 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2600 hda_nid_t nid = kcontrol->private_value;
2601 unsigned int vref = stac92xx_vref_get(codec, nid);
2603 if (vref == stac92xx_get_default_vref(codec, nid))
2604 ucontrol->value.enumerated.item[0] = 0;
2605 else if (vref == AC_PINCTL_VREF_GRD)
2606 ucontrol->value.enumerated.item[0] = 1;
2607 else if (vref == AC_PINCTL_VREF_HIZ)
2608 ucontrol->value.enumerated.item[0] = 2;
2613 static int stac92xx_dc_bias_put(struct snd_kcontrol *kcontrol,
2614 struct snd_ctl_elem_value *ucontrol)
2616 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2617 unsigned int new_vref = 0;
2619 hda_nid_t nid = kcontrol->private_value;
2621 if (ucontrol->value.enumerated.item[0] == 0)
2622 new_vref = stac92xx_get_default_vref(codec, nid);
2623 else if (ucontrol->value.enumerated.item[0] == 1)
2624 new_vref = AC_PINCTL_VREF_GRD;
2625 else if (ucontrol->value.enumerated.item[0] == 2)
2626 new_vref = AC_PINCTL_VREF_HIZ;
2630 if (new_vref != stac92xx_vref_get(codec, nid)) {
2631 error = stac92xx_vref_set(codec, nid, new_vref);
2638 static int stac92xx_io_switch_info(struct snd_kcontrol *kcontrol,
2639 struct snd_ctl_elem_info *uinfo)
2642 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2643 struct sigmatel_spec *spec = codec->spec;
2645 if (kcontrol->private_value == spec->line_switch)
2646 texts[0] = "Line In";
2648 texts[0] = "Mic In";
2649 texts[1] = "Line Out";
2650 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2651 uinfo->value.enumerated.items = 2;
2654 if (uinfo->value.enumerated.item >= 2)
2655 uinfo->value.enumerated.item = 1;
2656 strcpy(uinfo->value.enumerated.name,
2657 texts[uinfo->value.enumerated.item]);
2662 static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2664 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2665 struct sigmatel_spec *spec = codec->spec;
2666 hda_nid_t nid = kcontrol->private_value;
2667 int io_idx = (nid == spec->mic_switch) ? 1 : 0;
2669 ucontrol->value.enumerated.item[0] = spec->io_switch[io_idx];
2673 static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2675 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2676 struct sigmatel_spec *spec = codec->spec;
2677 hda_nid_t nid = kcontrol->private_value;
2678 int io_idx = (nid == spec->mic_switch) ? 1 : 0;
2679 unsigned short val = !!ucontrol->value.enumerated.item[0];
2681 spec->io_switch[io_idx] = val;
2684 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
2686 unsigned int pinctl = AC_PINCTL_IN_EN;
2687 if (io_idx) /* set VREF for mic */
2688 pinctl |= stac92xx_get_default_vref(codec, nid);
2689 stac92xx_auto_set_pinctl(codec, nid, pinctl);
2692 /* check the auto-mute again: we need to mute/unmute the speaker
2693 * appropriately according to the pin direction
2695 if (spec->hp_detect)
2696 stac_issue_unsol_event(codec, nid);
2701 #define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2703 static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
2704 struct snd_ctl_elem_value *ucontrol)
2706 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2707 struct sigmatel_spec *spec = codec->spec;
2709 ucontrol->value.integer.value[0] = spec->clfe_swap;
2713 static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
2714 struct snd_ctl_elem_value *ucontrol)
2716 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2717 struct sigmatel_spec *spec = codec->spec;
2718 hda_nid_t nid = kcontrol->private_value & 0xff;
2719 unsigned int val = !!ucontrol->value.integer.value[0];
2721 if (spec->clfe_swap == val)
2724 spec->clfe_swap = val;
2726 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
2727 spec->clfe_swap ? 0x4 : 0x0);
2732 #define STAC_CODEC_HP_SWITCH(xname) \
2733 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2736 .info = stac92xx_hp_switch_info, \
2737 .get = stac92xx_hp_switch_get, \
2738 .put = stac92xx_hp_switch_put, \
2741 #define STAC_CODEC_IO_SWITCH(xname, xpval) \
2742 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2745 .info = stac92xx_io_switch_info, \
2746 .get = stac92xx_io_switch_get, \
2747 .put = stac92xx_io_switch_put, \
2748 .private_value = xpval, \
2751 #define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2752 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2755 .info = stac92xx_clfe_switch_info, \
2756 .get = stac92xx_clfe_switch_get, \
2757 .put = stac92xx_clfe_switch_put, \
2758 .private_value = xpval, \
2762 STAC_CTL_WIDGET_VOL,
2763 STAC_CTL_WIDGET_MUTE,
2764 STAC_CTL_WIDGET_MUTE_BEEP,
2765 STAC_CTL_WIDGET_MONO_MUX,
2766 STAC_CTL_WIDGET_HP_SWITCH,
2767 STAC_CTL_WIDGET_IO_SWITCH,
2768 STAC_CTL_WIDGET_CLFE_SWITCH,
2769 STAC_CTL_WIDGET_DC_BIAS
2772 static const struct snd_kcontrol_new stac92xx_control_templates[] = {
2773 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2774 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2775 HDA_CODEC_MUTE_BEEP(NULL, 0, 0, 0),
2777 STAC_CODEC_HP_SWITCH(NULL),
2778 STAC_CODEC_IO_SWITCH(NULL, 0),
2779 STAC_CODEC_CLFE_SWITCH(NULL, 0),
2780 DC_BIAS(NULL, 0, 0),
2783 /* add dynamic controls */
2784 static struct snd_kcontrol_new *
2785 stac_control_new(struct sigmatel_spec *spec,
2786 const struct snd_kcontrol_new *ktemp,
2788 unsigned int subdev)
2790 struct snd_kcontrol_new *knew;
2792 snd_array_init(&spec->kctls, sizeof(*knew), 32);
2793 knew = snd_array_new(&spec->kctls);
2797 knew->name = kstrdup(name, GFP_KERNEL);
2800 memset(knew, 0, sizeof(*knew));
2801 spec->kctls.alloced--;
2804 knew->subdevice = subdev;
2808 static int stac92xx_add_control_temp(struct sigmatel_spec *spec,
2809 const struct snd_kcontrol_new *ktemp,
2810 int idx, const char *name,
2813 struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name,
2814 HDA_SUBDEV_AMP_FLAG);
2818 knew->private_value = val;
2822 static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec,
2823 int type, int idx, const char *name,
2826 return stac92xx_add_control_temp(spec,
2827 &stac92xx_control_templates[type],
2832 /* add dynamic controls */
2833 static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type,
2834 const char *name, unsigned long val)
2836 return stac92xx_add_control_idx(spec, type, 0, name, val);
2839 static const struct snd_kcontrol_new stac_input_src_temp = {
2840 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2841 .name = "Input Source",
2842 .info = stac92xx_mux_enum_info,
2843 .get = stac92xx_mux_enum_get,
2844 .put = stac92xx_mux_enum_put,
2847 static inline int stac92xx_add_jack_mode_control(struct hda_codec *codec,
2848 hda_nid_t nid, int idx)
2850 int def_conf = snd_hda_codec_get_pincfg(codec, nid);
2852 struct sigmatel_spec *spec = codec->spec;
2855 if (snd_hda_get_input_pin_attr(def_conf) != INPUT_PIN_ATTR_INT) {
2856 if (stac92xx_get_default_vref(codec, nid) == AC_PINCTL_VREF_GRD
2857 && nid == spec->line_switch)
2858 control = STAC_CTL_WIDGET_IO_SWITCH;
2859 else if (snd_hda_query_pin_caps(codec, nid)
2860 & (AC_PINCAP_VREF_GRD << AC_PINCAP_VREF_SHIFT))
2861 control = STAC_CTL_WIDGET_DC_BIAS;
2862 else if (nid == spec->mic_switch)
2863 control = STAC_CTL_WIDGET_IO_SWITCH;
2867 strcpy(name, hda_get_input_pin_label(codec, nid, 1));
2868 return stac92xx_add_control(codec->spec, control,
2869 strcat(name, " Jack Mode"), nid);
2875 static int stac92xx_add_input_source(struct sigmatel_spec *spec)
2877 struct snd_kcontrol_new *knew;
2878 struct hda_input_mux *imux = &spec->private_imux;
2881 return 0; /* no need for input source */
2882 if (!spec->num_adcs || imux->num_items <= 1)
2883 return 0; /* no need for input source control */
2884 knew = stac_control_new(spec, &stac_input_src_temp,
2885 stac_input_src_temp.name, 0);
2888 knew->count = spec->num_adcs;
2892 /* check whether the line-input can be used as line-out */
2893 static hda_nid_t check_line_out_switch(struct hda_codec *codec)
2895 struct sigmatel_spec *spec = codec->spec;
2896 struct auto_pin_cfg *cfg = &spec->autocfg;
2898 unsigned int pincap;
2901 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2903 for (i = 0; i < cfg->num_inputs; i++) {
2904 if (cfg->inputs[i].type == AUTO_PIN_LINE_IN) {
2905 nid = cfg->inputs[i].pin;
2906 pincap = snd_hda_query_pin_caps(codec, nid);
2907 if (pincap & AC_PINCAP_OUT)
2914 static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid);
2916 /* check whether the mic-input can be used as line-out */
2917 static hda_nid_t check_mic_out_switch(struct hda_codec *codec, hda_nid_t *dac)
2919 struct sigmatel_spec *spec = codec->spec;
2920 struct auto_pin_cfg *cfg = &spec->autocfg;
2921 unsigned int def_conf, pincap;
2925 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2927 for (i = 0; i < cfg->num_inputs; i++) {
2928 hda_nid_t nid = cfg->inputs[i].pin;
2929 if (cfg->inputs[i].type != AUTO_PIN_MIC)
2931 def_conf = snd_hda_codec_get_pincfg(codec, nid);
2932 /* some laptops have an internal analog microphone
2933 * which can't be used as a output */
2934 if (snd_hda_get_input_pin_attr(def_conf) != INPUT_PIN_ATTR_INT) {
2935 pincap = snd_hda_query_pin_caps(codec, nid);
2936 if (pincap & AC_PINCAP_OUT) {
2937 *dac = get_unassigned_dac(codec, nid);
2946 static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2950 for (i = 0; i < spec->multiout.num_dacs; i++) {
2951 if (spec->multiout.dac_nids[i] == nid)
2958 static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2961 if (is_in_dac_nids(spec, nid))
2963 for (i = 0; i < spec->autocfg.hp_outs; i++)
2964 if (spec->hp_dacs[i] == nid)
2966 for (i = 0; i < spec->autocfg.speaker_outs; i++)
2967 if (spec->speaker_dacs[i] == nid)
2972 static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid)
2974 struct sigmatel_spec *spec = codec->spec;
2976 hda_nid_t conn[HDA_MAX_CONNECTIONS];
2977 unsigned int wcaps, wtype;
2979 conn_len = snd_hda_get_connections(codec, nid, conn,
2980 HDA_MAX_CONNECTIONS);
2981 /* 92HD88: trace back up the link of nids to find the DAC */
2982 while (conn_len == 1 && (get_wcaps_type(get_wcaps(codec, conn[0]))
2983 != AC_WID_AUD_OUT)) {
2985 conn_len = snd_hda_get_connections(codec, nid, conn,
2986 HDA_MAX_CONNECTIONS);
2988 for (j = 0; j < conn_len; j++) {
2989 wcaps = get_wcaps(codec, conn[j]);
2990 wtype = get_wcaps_type(wcaps);
2991 /* we check only analog outputs */
2992 if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL))
2994 /* if this route has a free DAC, assign it */
2995 if (!check_all_dac_nids(spec, conn[j])) {
2997 /* select this DAC in the pin's input mux */
2998 snd_hda_codec_write_cache(codec, nid, 0,
2999 AC_VERB_SET_CONNECT_SEL, j);
3004 /* if all DACs are already assigned, connect to the primary DAC */
3006 for (j = 0; j < conn_len; j++) {
3007 if (conn[j] == spec->multiout.dac_nids[0]) {
3008 snd_hda_codec_write_cache(codec, nid, 0,
3009 AC_VERB_SET_CONNECT_SEL, j);
3017 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
3018 static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
3021 * Fill in the dac_nids table from the parsed pin configuration
3022 * This function only works when every pin in line_out_pins[]
3023 * contains atleast one DAC in its connection list. Some 92xx
3024 * codecs are not connected directly to a DAC, such as the 9200
3025 * and 9202/925x. For those, dac_nids[] must be hard-coded.
3027 static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec)
3029 struct sigmatel_spec *spec = codec->spec;
3030 struct auto_pin_cfg *cfg = &spec->autocfg;
3034 for (i = 0; i < cfg->line_outs; i++) {
3035 nid = cfg->line_out_pins[i];
3036 dac = get_unassigned_dac(codec, nid);
3038 if (spec->multiout.num_dacs > 0) {
3039 /* we have already working output pins,
3040 * so let's drop the broken ones again
3042 cfg->line_outs = spec->multiout.num_dacs;
3045 /* error out, no available DAC found */
3047 "%s: No available DAC for pin 0x%x\n",
3051 add_spec_dacs(spec, dac);
3054 for (i = 0; i < cfg->hp_outs; i++) {
3055 nid = cfg->hp_pins[i];
3056 dac = get_unassigned_dac(codec, nid);
3058 if (!spec->multiout.hp_nid)
3059 spec->multiout.hp_nid = dac;
3061 add_spec_extra_dacs(spec, dac);
3063 spec->hp_dacs[i] = dac;
3066 for (i = 0; i < cfg->speaker_outs; i++) {
3067 nid = cfg->speaker_pins[i];
3068 dac = get_unassigned_dac(codec, nid);
3070 add_spec_extra_dacs(spec, dac);
3071 spec->speaker_dacs[i] = dac;
3074 /* add line-in as output */
3075 nid = check_line_out_switch(codec);
3077 dac = get_unassigned_dac(codec, nid);
3079 snd_printdd("STAC: Add line-in 0x%x as output %d\n",
3080 nid, cfg->line_outs);
3081 cfg->line_out_pins[cfg->line_outs] = nid;
3083 spec->line_switch = nid;
3084 add_spec_dacs(spec, dac);
3087 /* add mic as output */
3088 nid = check_mic_out_switch(codec, &dac);
3090 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
3091 nid, cfg->line_outs);
3092 cfg->line_out_pins[cfg->line_outs] = nid;
3094 spec->mic_switch = nid;
3095 add_spec_dacs(spec, dac);
3098 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3099 spec->multiout.num_dacs,
3100 spec->multiout.dac_nids[0],
3101 spec->multiout.dac_nids[1],
3102 spec->multiout.dac_nids[2],
3103 spec->multiout.dac_nids[3],
3104 spec->multiout.dac_nids[4]);
3109 /* create volume control/switch for the given prefx type */
3110 static int create_controls_idx(struct hda_codec *codec, const char *pfx,
3111 int idx, hda_nid_t nid, int chs)
3113 struct sigmatel_spec *spec = codec->spec;
3117 if (!spec->check_volume_offset) {
3118 unsigned int caps, step, nums, db_scale;
3119 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3120 step = (caps & AC_AMPCAP_STEP_SIZE) >>
3121 AC_AMPCAP_STEP_SIZE_SHIFT;
3122 step = (step + 1) * 25; /* in .01dB unit */
3123 nums = (caps & AC_AMPCAP_NUM_STEPS) >>
3124 AC_AMPCAP_NUM_STEPS_SHIFT;
3125 db_scale = nums * step;
3126 /* if dB scale is over -64dB, and finer enough,
3127 * let's reduce it to half
3129 if (db_scale > 6400 && nums >= 0x1f)
3130 spec->volume_offset = nums / 2;
3131 spec->check_volume_offset = 1;
3134 sprintf(name, "%s Playback Volume", pfx);
3135 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, idx, name,
3136 HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT,
3137 spec->volume_offset));
3140 sprintf(name, "%s Playback Switch", pfx);
3141 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_MUTE, idx, name,
3142 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
3148 #define create_controls(codec, pfx, nid, chs) \
3149 create_controls_idx(codec, pfx, 0, nid, chs)
3151 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)