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 <sound/core.h>
32 #include <sound/asoundef.h>
33 #include <sound/jack.h>
34 #include "hda_codec.h"
35 #include "hda_local.h"
79 STAC_92HD73XX_NO_JD, /* no jack-detection */
91 STAC_92HD83XXX_PWR_REF,
106 STAC_92HD71BXX_MODELS
132 STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter
133 * is given, one of the above models will be
134 * chosen according to the subsystem id. */
135 /* for backward compatibility */
152 STAC_D965_REF_NO_JD, /* no jack-detection */
168 struct sigmatel_event {
175 struct sigmatel_jack {
178 struct snd_jack *jack;
181 struct sigmatel_mic_route {
183 unsigned char mux_idx;
184 unsigned char dmux_idx;
187 struct sigmatel_spec {
188 struct snd_kcontrol_new *mixers[4];
189 unsigned int num_mixers;
192 unsigned int eapd_switch: 1;
193 unsigned int surr_switch: 1;
194 unsigned int alt_switch: 1;
195 unsigned int hp_detect: 1;
196 unsigned int spdif_mute: 1;
197 unsigned int check_volume_offset:1;
198 unsigned int auto_mic:1;
201 unsigned int eapd_mask;
202 unsigned int gpio_mask;
203 unsigned int gpio_dir;
204 unsigned int gpio_data;
205 unsigned int gpio_mute;
206 unsigned int gpio_led;
209 unsigned int stream_delay;
211 /* analog loopback */
212 struct snd_kcontrol_new *aloopback_ctl;
213 unsigned char aloopback_mask;
214 unsigned char aloopback_shift;
216 /* power management */
217 unsigned int num_pwrs;
218 unsigned int *pwr_mapping;
223 struct snd_array jacks;
226 struct snd_array events;
229 struct hda_input_mux *mono_mux;
230 struct hda_input_mux *amp_mux;
231 unsigned int cur_mmux;
232 struct hda_multi_out multiout;
233 hda_nid_t dac_nids[5];
234 hda_nid_t hp_dacs[5];
235 hda_nid_t speaker_dacs[5];
241 unsigned int num_adcs;
243 unsigned int num_muxes;
244 hda_nid_t *dmic_nids;
245 unsigned int num_dmics;
246 hda_nid_t *dmux_nids;
247 unsigned int num_dmuxes;
248 hda_nid_t *smux_nids;
249 unsigned int num_smuxes;
251 unsigned long *capvols; /* amp-volume attr: HDA_COMPOSE_AMP_VAL() */
252 unsigned long *capsws; /* amp-mute attr: HDA_COMPOSE_AMP_VAL() */
253 unsigned int num_caps; /* number of capture volume/switch elements */
255 struct sigmatel_mic_route ext_mic;
256 struct sigmatel_mic_route int_mic;
258 const char **spdif_labels;
260 hda_nid_t dig_in_nid;
262 hda_nid_t anabeep_nid;
263 hda_nid_t digbeep_nid;
267 unsigned int num_pins;
269 /* codec specific stuff */
270 struct hda_verb *init;
271 struct snd_kcontrol_new *mixer;
274 struct hda_input_mux *dinput_mux;
275 unsigned int cur_dmux[2];
276 struct hda_input_mux *input_mux;
277 unsigned int cur_mux[3];
278 struct hda_input_mux *sinput_mux;
279 unsigned int cur_smux[2];
280 unsigned int cur_amux;
282 unsigned int num_amps;
283 unsigned int powerdown_adcs;
286 unsigned int io_switch[2];
287 unsigned int clfe_swap;
288 hda_nid_t line_switch; /* shared line-in for input and output */
289 hda_nid_t mic_switch; /* shared mic-in for input and output */
290 hda_nid_t hp_switch; /* NID of HP as line-out */
291 unsigned int aloopback;
293 struct hda_pcm pcm_rec[2]; /* PCM information */
295 /* dynamic controls and input_mux */
296 struct auto_pin_cfg autocfg;
297 struct snd_array kctls;
298 struct hda_input_mux private_dimux;
299 struct hda_input_mux private_imux;
300 struct hda_input_mux private_smux;
301 struct hda_input_mux private_amp_mux;
302 struct hda_input_mux private_mono_mux;
305 static hda_nid_t stac9200_adc_nids[1] = {
309 static hda_nid_t stac9200_mux_nids[1] = {
313 static hda_nid_t stac9200_dac_nids[1] = {
317 static hda_nid_t stac92hd73xx_pwr_nids[8] = {
318 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
322 static hda_nid_t stac92hd73xx_slave_dig_outs[2] = {
326 static hda_nid_t stac92hd73xx_adc_nids[2] = {
330 #define DELL_M6_AMP 2
331 static hda_nid_t stac92hd73xx_amp_nids[3] = {
335 #define STAC92HD73XX_NUM_DMICS 2
336 static hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = {
340 #define STAC92HD73_DAC_COUNT 5
342 static hda_nid_t stac92hd73xx_mux_nids[4] = {
343 0x28, 0x29, 0x2a, 0x2b,
346 static hda_nid_t stac92hd73xx_dmux_nids[2] = {
350 static hda_nid_t stac92hd73xx_smux_nids[2] = {
354 #define STAC92HD73XX_NUM_CAPS 2
355 static unsigned long stac92hd73xx_capvols[] = {
356 HDA_COMPOSE_AMP_VAL(0x20, 3, 0, HDA_OUTPUT),
357 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT),
359 #define stac92hd73xx_capsws stac92hd73xx_capvols
361 #define STAC92HD83XXX_NUM_DMICS 2
362 static hda_nid_t stac92hd83xxx_dmic_nids[STAC92HD83XXX_NUM_DMICS + 1] = {
366 #define STAC92HD83_DAC_COUNT 3
368 static hda_nid_t stac92hd83xxx_dmux_nids[2] = {
372 static hda_nid_t stac92hd83xxx_adc_nids[2] = {
376 static hda_nid_t stac92hd83xxx_pwr_nids[4] = {
380 static hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
384 static unsigned int stac92hd83xxx_pwr_mapping[4] = {
385 0x03, 0x0c, 0x20, 0x40,
388 static hda_nid_t stac92hd83xxx_amp_nids[1] = {
392 #define STAC92HD83XXX_NUM_CAPS 2
393 static unsigned long stac92hd83xxx_capvols[] = {
394 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT),
395 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_OUTPUT),
397 #define stac92hd83xxx_capsws stac92hd83xxx_capvols
399 static hda_nid_t stac92hd71bxx_pwr_nids[3] = {
403 static hda_nid_t stac92hd71bxx_adc_nids[2] = {
407 static hda_nid_t stac92hd71bxx_mux_nids[2] = {
411 static hda_nid_t stac92hd71bxx_dmux_nids[2] = {
415 static hda_nid_t stac92hd71bxx_smux_nids[2] = {
419 #define STAC92HD71BXX_NUM_DMICS 2
420 static hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = {
424 static hda_nid_t stac92hd71bxx_slave_dig_outs[2] = {
428 #define STAC92HD71BXX_NUM_CAPS 2
429 static unsigned long stac92hd71bxx_capvols[] = {
430 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
431 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
433 #define stac92hd71bxx_capsws stac92hd71bxx_capvols
435 static hda_nid_t stac925x_adc_nids[1] = {
439 static hda_nid_t stac925x_mux_nids[1] = {
443 static hda_nid_t stac925x_dac_nids[1] = {
447 #define STAC925X_NUM_DMICS 1
448 static hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = {
452 static hda_nid_t stac925x_dmux_nids[1] = {
456 static unsigned long stac925x_capvols[] = {
457 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT),
459 static unsigned long stac925x_capsws[] = {
460 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
463 static hda_nid_t stac922x_adc_nids[2] = {
467 static hda_nid_t stac922x_mux_nids[2] = {
471 #define STAC922X_NUM_CAPS 2
472 static unsigned long stac922x_capvols[] = {
473 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_INPUT),
474 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
476 #define stac922x_capsws stac922x_capvols
478 static hda_nid_t stac927x_slave_dig_outs[2] = {
482 static hda_nid_t stac927x_adc_nids[3] = {
486 static hda_nid_t stac927x_mux_nids[3] = {
490 static hda_nid_t stac927x_smux_nids[1] = {
494 static hda_nid_t stac927x_dac_nids[6] = {
495 0x02, 0x03, 0x04, 0x05, 0x06, 0
498 static hda_nid_t stac927x_dmux_nids[1] = {
502 #define STAC927X_NUM_DMICS 2
503 static hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = {
507 #define STAC927X_NUM_CAPS 3
508 static unsigned long stac927x_capvols[] = {
509 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
510 HDA_COMPOSE_AMP_VAL(0x19, 3, 0, HDA_INPUT),
511 HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_INPUT),
513 static unsigned long stac927x_capsws[] = {
514 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT),
515 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
516 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
519 static const char *stac927x_spdif_labels[5] = {
520 "Digital Playback", "ADAT", "Analog Mux 1",
521 "Analog Mux 2", "Analog Mux 3"
524 static hda_nid_t stac9205_adc_nids[2] = {
528 static hda_nid_t stac9205_mux_nids[2] = {
532 static hda_nid_t stac9205_dmux_nids[1] = {
536 static hda_nid_t stac9205_smux_nids[1] = {
540 #define STAC9205_NUM_DMICS 2
541 static hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = {
545 #define STAC9205_NUM_CAPS 2
546 static unsigned long stac9205_capvols[] = {
547 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_INPUT),
548 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_INPUT),
550 static unsigned long stac9205_capsws[] = {
551 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
552 HDA_COMPOSE_AMP_VAL(0x1e, 3, 0, HDA_OUTPUT),
555 static hda_nid_t stac9200_pin_nids[8] = {
556 0x08, 0x09, 0x0d, 0x0e,
557 0x0f, 0x10, 0x11, 0x12,
560 static hda_nid_t stac925x_pin_nids[8] = {
561 0x07, 0x08, 0x0a, 0x0b,
562 0x0c, 0x0d, 0x10, 0x11,
565 static hda_nid_t stac922x_pin_nids[10] = {
566 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
567 0x0f, 0x10, 0x11, 0x15, 0x1b,
570 static hda_nid_t stac92hd73xx_pin_nids[13] = {
571 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
572 0x0f, 0x10, 0x11, 0x12, 0x13,
576 static hda_nid_t stac92hd83xxx_pin_nids[10] = {
577 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
578 0x0f, 0x10, 0x11, 0x1f, 0x20,
581 #define STAC92HD71BXX_NUM_PINS 13
582 static hda_nid_t stac92hd71bxx_pin_nids_4port[STAC92HD71BXX_NUM_PINS] = {
583 0x0a, 0x0b, 0x0c, 0x0d, 0x00,
584 0x00, 0x14, 0x18, 0x19, 0x1e,
587 static hda_nid_t stac92hd71bxx_pin_nids_6port[STAC92HD71BXX_NUM_PINS] = {
588 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
589 0x0f, 0x14, 0x18, 0x19, 0x1e,
593 static hda_nid_t stac927x_pin_nids[14] = {
594 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
595 0x0f, 0x10, 0x11, 0x12, 0x13,
596 0x14, 0x21, 0x22, 0x23,
599 static hda_nid_t stac9205_pin_nids[12] = {
600 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
601 0x0f, 0x14, 0x16, 0x17, 0x18,
605 #define stac92xx_amp_volume_info snd_hda_mixer_amp_volume_info
607 static int stac92xx_amp_volume_get(struct snd_kcontrol *kcontrol,
608 struct snd_ctl_elem_value *ucontrol)
610 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
611 struct sigmatel_spec *spec = codec->spec;
612 hda_nid_t nid = spec->amp_nids[spec->cur_amux];
614 kcontrol->private_value ^= get_amp_nid(kcontrol);
615 kcontrol->private_value |= nid;
617 return snd_hda_mixer_amp_volume_get(kcontrol, ucontrol);
620 static int stac92xx_amp_volume_put(struct snd_kcontrol *kcontrol,
621 struct snd_ctl_elem_value *ucontrol)
623 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
624 struct sigmatel_spec *spec = codec->spec;
625 hda_nid_t nid = spec->amp_nids[spec->cur_amux];
627 kcontrol->private_value ^= get_amp_nid(kcontrol);
628 kcontrol->private_value |= nid;
630 return snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
633 static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol,
634 struct snd_ctl_elem_info *uinfo)
636 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
637 struct sigmatel_spec *spec = codec->spec;
638 return snd_hda_input_mux_info(spec->dinput_mux, uinfo);
641 static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol,
642 struct snd_ctl_elem_value *ucontrol)
644 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
645 struct sigmatel_spec *spec = codec->spec;
646 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
648 ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx];
652 static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol,
653 struct snd_ctl_elem_value *ucontrol)
655 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
656 struct sigmatel_spec *spec = codec->spec;
657 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
659 return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol,
660 spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]);
663 static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol,
664 struct snd_ctl_elem_info *uinfo)
666 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
667 struct sigmatel_spec *spec = codec->spec;
668 return snd_hda_input_mux_info(spec->sinput_mux, uinfo);
671 static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol,
672 struct snd_ctl_elem_value *ucontrol)
674 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
675 struct sigmatel_spec *spec = codec->spec;
676 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
678 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
682 static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol,
683 struct snd_ctl_elem_value *ucontrol)
685 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
686 struct sigmatel_spec *spec = codec->spec;
687 struct hda_input_mux *smux = &spec->private_smux;
688 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
692 err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol,
693 spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]);
697 if (spec->spdif_mute) {
699 nid = spec->multiout.dig_out_nid;
701 nid = codec->slave_dig_outs[smux_idx - 1];
702 if (spec->cur_smux[smux_idx] == smux->num_items - 1)
706 /* un/mute SPDIF out */
707 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
713 static unsigned int stac92xx_vref_set(struct hda_codec *codec,
714 hda_nid_t nid, unsigned int new_vref)
718 pincfg = snd_hda_codec_read(codec, nid, 0,
719 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
722 pincfg &= ~(AC_PINCTL_VREFEN | AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
725 if (new_vref == AC_PINCTL_VREF_HIZ)
726 pincfg |= AC_PINCTL_OUT_EN;
728 pincfg |= AC_PINCTL_IN_EN;
730 error = snd_hda_codec_write_cache(codec, nid, 0,
731 AC_VERB_SET_PIN_WIDGET_CONTROL, pincfg);
738 static unsigned int stac92xx_vref_get(struct hda_codec *codec, hda_nid_t nid)
741 vref = snd_hda_codec_read(codec, nid, 0,
742 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
743 vref &= AC_PINCTL_VREFEN;
747 static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
749 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
750 struct sigmatel_spec *spec = codec->spec;
751 return snd_hda_input_mux_info(spec->input_mux, uinfo);
754 static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
756 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
757 struct sigmatel_spec *spec = codec->spec;
758 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
760 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
764 static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
766 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
767 struct sigmatel_spec *spec = codec->spec;
768 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
770 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
771 spec->mux_nids[adc_idx], &spec->cur_mux[adc_idx]);
774 static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol,
775 struct snd_ctl_elem_info *uinfo)
777 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
778 struct sigmatel_spec *spec = codec->spec;
779 return snd_hda_input_mux_info(spec->mono_mux, uinfo);
782 static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol,
783 struct snd_ctl_elem_value *ucontrol)
785 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
786 struct sigmatel_spec *spec = codec->spec;
788 ucontrol->value.enumerated.item[0] = spec->cur_mmux;
792 static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol,
793 struct snd_ctl_elem_value *ucontrol)
795 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
796 struct sigmatel_spec *spec = codec->spec;
798 return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol,
799 spec->mono_nid, &spec->cur_mmux);
802 static int stac92xx_amp_mux_enum_info(struct snd_kcontrol *kcontrol,
803 struct snd_ctl_elem_info *uinfo)
805 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
806 struct sigmatel_spec *spec = codec->spec;
807 return snd_hda_input_mux_info(spec->amp_mux, uinfo);
810 static int stac92xx_amp_mux_enum_get(struct snd_kcontrol *kcontrol,
811 struct snd_ctl_elem_value *ucontrol)
813 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
814 struct sigmatel_spec *spec = codec->spec;
816 ucontrol->value.enumerated.item[0] = spec->cur_amux;
820 static int stac92xx_amp_mux_enum_put(struct snd_kcontrol *kcontrol,
821 struct snd_ctl_elem_value *ucontrol)
823 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
824 struct sigmatel_spec *spec = codec->spec;
825 struct snd_kcontrol *ctl =
826 snd_hda_find_mixer_ctl(codec, "Amp Capture Volume");
830 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE |
831 SNDRV_CTL_EVENT_MASK_INFO, &ctl->id);
833 return snd_hda_input_mux_put(codec, spec->amp_mux, ucontrol,
837 #define stac92xx_aloopback_info snd_ctl_boolean_mono_info
839 static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol,
840 struct snd_ctl_elem_value *ucontrol)
842 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
843 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
844 struct sigmatel_spec *spec = codec->spec;
846 ucontrol->value.integer.value[0] = !!(spec->aloopback &
847 (spec->aloopback_mask << idx));
851 static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol,
852 struct snd_ctl_elem_value *ucontrol)
854 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
855 struct sigmatel_spec *spec = codec->spec;
856 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
857 unsigned int dac_mode;
858 unsigned int val, idx_val;
860 idx_val = spec->aloopback_mask << idx;
861 if (ucontrol->value.integer.value[0])
862 val = spec->aloopback | idx_val;
864 val = spec->aloopback & ~idx_val;
865 if (spec->aloopback == val)
868 spec->aloopback = val;
870 /* Only return the bits defined by the shift value of the
871 * first two bytes of the mask
873 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
874 kcontrol->private_value & 0xFFFF, 0x0);
875 dac_mode >>= spec->aloopback_shift;
877 if (spec->aloopback & idx_val) {
878 snd_hda_power_up(codec);
881 snd_hda_power_down(codec);
882 dac_mode &= ~idx_val;
885 snd_hda_codec_write_cache(codec, codec->afg, 0,
886 kcontrol->private_value >> 16, dac_mode);
891 static struct hda_verb stac9200_core_init[] = {
892 /* set dac0mux for dac converter */
893 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
897 static struct hda_verb stac9200_eapd_init[] = {
898 /* set dac0mux for dac converter */
899 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
900 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
904 static struct hda_verb stac92hd73xx_6ch_core_init[] = {
905 /* set master volume and direct control */
906 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
907 /* setup adcs to point to mixer */
908 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
909 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
910 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
911 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
912 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
913 /* setup import muxs */
914 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
915 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
916 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
917 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
921 static struct hda_verb dell_eq_core_init[] = {
922 /* set master volume to max value without distortion
923 * and direct control */
924 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
925 /* setup adcs to point to mixer */
926 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
927 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
928 /* setup import muxs */
929 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
930 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
931 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
932 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
936 static struct hda_verb dell_m6_core_init[] = {
937 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
938 /* setup adcs to point to mixer */
939 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
940 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
941 /* setup import muxs */
942 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
943 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
944 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
945 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
949 static struct hda_verb stac92hd73xx_8ch_core_init[] = {
950 /* set master volume and direct control */
951 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
952 /* setup adcs to point to mixer */
953 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
954 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
955 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
956 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
957 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
958 /* setup import muxs */
959 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
960 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
961 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
962 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03},
966 static struct hda_verb stac92hd73xx_10ch_core_init[] = {
967 /* set master volume and direct control */
968 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
969 /* dac3 is connected to import3 mux */
970 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb07f},
971 /* setup adcs to point to mixer */
972 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
973 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
974 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
975 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
976 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
977 /* setup import muxs */
978 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
979 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
980 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
981 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03},
985 static struct hda_verb stac92hd83xxx_core_init[] = {
986 { 0xa, AC_VERB_SET_CONNECT_SEL, 0x1},
987 { 0xb, AC_VERB_SET_CONNECT_SEL, 0x1},
988 { 0xd, AC_VERB_SET_CONNECT_SEL, 0x0},
990 /* power state controls amps */
991 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
995 static struct hda_verb stac92hd71bxx_core_init[] = {
996 /* set master volume and direct control */
997 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
1001 static struct hda_verb stac92hd71bxx_unmute_core_init[] = {
1002 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
1003 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1004 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1005 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1009 static struct hda_verb stac925x_core_init[] = {
1010 /* set dac0mux for dac converter */
1011 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
1012 /* mute the master volume */
1013 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1017 static struct hda_verb stac922x_core_init[] = {
1018 /* set master volume and direct control */
1019 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
1023 static struct hda_verb d965_core_init[] = {
1024 /* set master volume and direct control */
1025 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
1026 /* unmute node 0x1b */
1027 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1028 /* select node 0x03 as DAC */
1029 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
1033 static struct hda_verb stac927x_core_init[] = {
1034 /* set master volume and direct control */
1035 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
1036 /* enable analog pc beep path */
1037 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
1041 static struct hda_verb stac9205_core_init[] = {
1042 /* set master volume and direct control */
1043 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
1044 /* enable analog pc beep path */
1045 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
1049 #define STAC_MONO_MUX \
1051 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1052 .name = "Mono Mux", \
1054 .info = stac92xx_mono_mux_enum_info, \
1055 .get = stac92xx_mono_mux_enum_get, \
1056 .put = stac92xx_mono_mux_enum_put, \
1059 #define STAC_AMP_MUX \
1061 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1062 .name = "Amp Selector Capture Switch", \
1064 .info = stac92xx_amp_mux_enum_info, \
1065 .get = stac92xx_amp_mux_enum_get, \
1066 .put = stac92xx_amp_mux_enum_put, \
1069 #define STAC_AMP_VOL(xname, nid, chs, idx, dir) \
1071 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1074 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1075 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1076 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
1077 .info = stac92xx_amp_volume_info, \
1078 .get = stac92xx_amp_volume_get, \
1079 .put = stac92xx_amp_volume_put, \
1080 .tlv = { .c = snd_hda_mixer_amp_tlv }, \
1081 .private_value = HDA_COMPOSE_AMP_VAL(nid, chs, idx, dir) \
1084 #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
1086 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1087 .name = "Analog Loopback", \
1089 .info = stac92xx_aloopback_info, \
1090 .get = stac92xx_aloopback_get, \
1091 .put = stac92xx_aloopback_put, \
1092 .private_value = verb_read | (verb_write << 16), \
1095 #define DC_BIAS(xname, idx, nid) \
1097 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1100 .info = stac92xx_dc_bias_info, \
1101 .get = stac92xx_dc_bias_get, \
1102 .put = stac92xx_dc_bias_put, \
1103 .private_value = nid, \
1106 static struct snd_kcontrol_new stac9200_mixer[] = {
1107 HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT),
1108 HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT),
1109 HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
1110 HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
1114 #define DELL_M6_MIXER 6
1115 static struct snd_kcontrol_new stac92hd73xx_6ch_mixer[] = {
1116 /* start of config #1 */
1117 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1118 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1120 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1121 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1123 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1124 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1126 /* start of config #2 */
1127 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1128 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1130 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1131 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1136 static struct snd_kcontrol_new stac92hd73xx_6ch_loopback[] = {
1137 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
1141 static struct snd_kcontrol_new stac92hd73xx_8ch_loopback[] = {
1142 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
1146 static struct snd_kcontrol_new stac92hd73xx_10ch_loopback[] = {
1147 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
1151 static struct snd_kcontrol_new stac92hd73xx_8ch_mixer[] = {
1152 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1153 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1155 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1156 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1158 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1159 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1161 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1162 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1164 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1165 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1169 static struct snd_kcontrol_new stac92hd73xx_10ch_mixer[] = {
1170 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1171 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1173 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1174 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1176 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1177 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1179 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1180 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1182 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1183 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1188 static struct snd_kcontrol_new stac92hd83xxx_mixer[] = {
1189 HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x1b, 0x3, HDA_INPUT),
1190 HDA_CODEC_MUTE("DAC0 Capture Switch", 0x1b, 0x3, HDA_INPUT),
1192 HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x1b, 0x4, HDA_INPUT),
1193 HDA_CODEC_MUTE("DAC1 Capture Switch", 0x1b, 0x4, HDA_INPUT),
1195 HDA_CODEC_VOLUME("Front Mic Capture Volume", 0x1b, 0x0, HDA_INPUT),
1196 HDA_CODEC_MUTE("Front Mic Capture Switch", 0x1b, 0x0, HDA_INPUT),
1198 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1b, 0x2, HDA_INPUT),
1199 HDA_CODEC_MUTE("Line In Capture Switch", 0x1b, 0x2, HDA_INPUT),
1202 HDA_CODEC_VOLUME("Mic Capture Volume", 0x1b, 0x1, HDA_INPUT),
1203 HDA_CODEC_MUTE("Mic Capture Switch", 0x1b 0x1, HDA_INPUT),
1208 static struct snd_kcontrol_new stac92hd71bxx_analog_mixer[] = {
1209 HDA_CODEC_MUTE("Import0 Mux Capture Switch", 0x17, 0x0, HDA_INPUT),
1210 HDA_CODEC_VOLUME("Import0 Mux Capture Volume", 0x17, 0x0, HDA_INPUT),
1212 HDA_CODEC_MUTE("Import1 Mux Capture Switch", 0x17, 0x1, HDA_INPUT),
1213 HDA_CODEC_VOLUME("Import1 Mux Capture Volume", 0x17, 0x1, HDA_INPUT),
1215 HDA_CODEC_MUTE("DAC0 Capture Switch", 0x17, 0x3, HDA_INPUT),
1216 HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x17, 0x3, HDA_INPUT),
1218 HDA_CODEC_MUTE("DAC1 Capture Switch", 0x17, 0x4, HDA_INPUT),
1219 HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x17, 0x4, HDA_INPUT),
1223 static struct snd_kcontrol_new stac92hd71bxx_loopback[] = {
1224 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2)
1227 static struct snd_kcontrol_new stac925x_mixer[] = {
1228 HDA_CODEC_VOLUME("Master Playback Volume", 0x0e, 0, HDA_OUTPUT),
1229 HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT),
1233 static struct snd_kcontrol_new stac9205_loopback[] = {
1234 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
1238 static struct snd_kcontrol_new stac927x_loopback[] = {
1239 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
1243 static struct snd_kcontrol_new stac_dmux_mixer = {
1244 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1245 .name = "Digital Input Source",
1246 /* count set later */
1247 .info = stac92xx_dmux_enum_info,
1248 .get = stac92xx_dmux_enum_get,
1249 .put = stac92xx_dmux_enum_put,
1252 static struct snd_kcontrol_new stac_smux_mixer = {
1253 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1254 .name = "IEC958 Playback Source",
1255 /* count set later */
1256 .info = stac92xx_smux_enum_info,
1257 .get = stac92xx_smux_enum_get,
1258 .put = stac92xx_smux_enum_put,
1261 static const char *slave_vols[] = {
1262 "Front Playback Volume",
1263 "Surround Playback Volume",
1264 "Center Playback Volume",
1265 "LFE Playback Volume",
1266 "Side Playback Volume",
1267 "Headphone Playback Volume",
1268 "Speaker Playback Volume",
1272 static const char *slave_sws[] = {
1273 "Front Playback Switch",
1274 "Surround Playback Switch",
1275 "Center Playback Switch",
1276 "LFE Playback Switch",
1277 "Side Playback Switch",
1278 "Headphone Playback Switch",
1279 "Speaker Playback Switch",
1280 "IEC958 Playback Switch",
1284 static void stac92xx_free_kctls(struct hda_codec *codec);
1285 static int stac92xx_add_jack(struct hda_codec *codec, hda_nid_t nid, int type);
1287 static int stac92xx_build_controls(struct hda_codec *codec)
1289 struct sigmatel_spec *spec = codec->spec;
1290 struct auto_pin_cfg *cfg = &spec->autocfg;
1296 err = snd_hda_add_new_ctls(codec, spec->mixer);
1301 for (i = 0; i < spec->num_mixers; i++) {
1302 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1306 if (!spec->auto_mic && spec->num_dmuxes > 0) {
1307 stac_dmux_mixer.count = spec->num_dmuxes;
1308 err = snd_hda_ctl_add(codec,
1309 snd_ctl_new1(&stac_dmux_mixer, codec));
1313 if (spec->num_smuxes > 0) {
1314 int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid);
1315 struct hda_input_mux *smux = &spec->private_smux;
1316 /* check for mute support on SPDIF out */
1317 if (wcaps & AC_WCAP_OUT_AMP) {
1318 smux->items[smux->num_items].label = "Off";
1319 smux->items[smux->num_items].index = 0;
1321 spec->spdif_mute = 1;
1323 stac_smux_mixer.count = spec->num_smuxes;
1324 err = snd_hda_ctl_add(codec,
1325 snd_ctl_new1(&stac_smux_mixer, codec));
1330 if (spec->multiout.dig_out_nid) {
1331 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
1334 err = snd_hda_create_spdif_share_sw(codec,
1338 spec->multiout.share_spdif = 1;
1340 if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) {
1341 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1346 /* if we have no master control, let's create it */
1347 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1348 unsigned int vmaster_tlv[4];
1349 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
1350 HDA_OUTPUT, vmaster_tlv);
1351 /* correct volume offset */
1352 vmaster_tlv[2] += vmaster_tlv[3] * spec->volume_offset;
1353 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1354 vmaster_tlv, slave_vols);
1358 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1359 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1365 if (spec->aloopback_ctl &&
1366 snd_hda_get_bool_hint(codec, "loopback") == 1) {
1367 err = snd_hda_add_new_ctls(codec, spec->aloopback_ctl);
1372 stac92xx_free_kctls(codec); /* no longer needed */
1374 /* create jack input elements */
1375 if (spec->hp_detect) {
1376 for (i = 0; i < cfg->hp_outs; i++) {
1377 int type = SND_JACK_HEADPHONE;
1378 nid = cfg->hp_pins[i];
1379 /* jack detection */
1380 if (cfg->hp_outs == i)
1381 type |= SND_JACK_LINEOUT;
1382 err = stac92xx_add_jack(codec, nid, type);
1387 for (i = 0; i < cfg->line_outs; i++) {
1388 err = stac92xx_add_jack(codec, cfg->line_out_pins[i],
1393 for (i = 0; i < AUTO_PIN_LAST; i++) {
1394 nid = cfg->input_pins[i];
1396 err = stac92xx_add_jack(codec, nid,
1397 SND_JACK_MICROPHONE);
1406 static unsigned int ref9200_pin_configs[8] = {
1407 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
1408 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1411 static unsigned int gateway9200_m4_pin_configs[8] = {
1412 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1413 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1415 static unsigned int gateway9200_m4_2_pin_configs[8] = {
1416 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1417 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1421 STAC 9200 pin configs for
1426 static unsigned int dell9200_d21_pin_configs[8] = {
1427 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
1428 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1432 STAC 9200 pin configs for
1436 static unsigned int dell9200_d22_pin_configs[8] = {
1437 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1438 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
1442 STAC 9200 pin configs for
1443 102801C4 (Dell Dimension E310)
1450 static unsigned int dell9200_d23_pin_configs[8] = {
1451 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1452 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
1457 STAC 9200-32 pin configs for
1458 102801B5 (Dell Inspiron 630m)
1459 102801D8 (Dell Inspiron 640m)
1461 static unsigned int dell9200_m21_pin_configs[8] = {
1462 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1463 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
1467 STAC 9200-32 pin configs for
1468 102801C2 (Dell Latitude D620)
1470 102801CC (Dell Latitude D820)
1474 static unsigned int dell9200_m22_pin_configs[8] = {
1475 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
1476 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
1480 STAC 9200-32 pin configs for
1481 102801CE (Dell XPS M1710)
1482 102801CF (Dell Precision M90)
1484 static unsigned int dell9200_m23_pin_configs[8] = {
1485 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1486 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1490 STAC 9200-32 pin configs for
1493 102801CB (Dell Latitude 120L)
1496 static unsigned int dell9200_m24_pin_configs[8] = {
1497 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
1498 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
1502 STAC 9200-32 pin configs for
1503 102801BD (Dell Inspiron E1505n)
1507 static unsigned int dell9200_m25_pin_configs[8] = {
1508 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1509 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
1513 STAC 9200-32 pin configs for
1514 102801F5 (Dell Inspiron 1501)
1517 static unsigned int dell9200_m26_pin_configs[8] = {
1518 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
1519 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
1524 102801CD (Dell Inspiron E1705/9400)
1526 static unsigned int dell9200_m27_pin_configs[8] = {
1527 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1528 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
1531 static unsigned int oqo9200_pin_configs[8] = {
1532 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1533 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1537 static unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = {
1538 [STAC_REF] = ref9200_pin_configs,
1539 [STAC_9200_OQO] = oqo9200_pin_configs,
1540 [STAC_9200_DELL_D21] = dell9200_d21_pin_configs,
1541 [STAC_9200_DELL_D22] = dell9200_d22_pin_configs,
1542 [STAC_9200_DELL_D23] = dell9200_d23_pin_configs,
1543 [STAC_9200_DELL_M21] = dell9200_m21_pin_configs,
1544 [STAC_9200_DELL_M22] = dell9200_m22_pin_configs,
1545 [STAC_9200_DELL_M23] = dell9200_m23_pin_configs,
1546 [STAC_9200_DELL_M24] = dell9200_m24_pin_configs,
1547 [STAC_9200_DELL_M25] = dell9200_m25_pin_configs,
1548 [STAC_9200_DELL_M26] = dell9200_m26_pin_configs,
1549 [STAC_9200_DELL_M27] = dell9200_m27_pin_configs,
1550 [STAC_9200_M4] = gateway9200_m4_pin_configs,
1551 [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs,
1552 [STAC_9200_PANASONIC] = ref9200_pin_configs,
1555 static const char *stac9200_models[STAC_9200_MODELS] = {
1556 [STAC_AUTO] = "auto",
1558 [STAC_9200_OQO] = "oqo",
1559 [STAC_9200_DELL_D21] = "dell-d21",
1560 [STAC_9200_DELL_D22] = "dell-d22",
1561 [STAC_9200_DELL_D23] = "dell-d23",
1562 [STAC_9200_DELL_M21] = "dell-m21",
1563 [STAC_9200_DELL_M22] = "dell-m22",
1564 [STAC_9200_DELL_M23] = "dell-m23",
1565 [STAC_9200_DELL_M24] = "dell-m24",
1566 [STAC_9200_DELL_M25] = "dell-m25",
1567 [STAC_9200_DELL_M26] = "dell-m26",
1568 [STAC_9200_DELL_M27] = "dell-m27",
1569 [STAC_9200_M4] = "gateway-m4",
1570 [STAC_9200_M4_2] = "gateway-m4-2",
1571 [STAC_9200_PANASONIC] = "panasonic",
1574 static struct snd_pci_quirk stac9200_cfg_tbl[] = {
1575 /* SigmaTel reference board */
1576 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1577 "DFI LanParty", STAC_REF),
1578 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1579 "DFI LanParty", STAC_REF),
1580 /* Dell laptops have BIOS problem */
1581 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1582 "unknown Dell", STAC_9200_DELL_D21),
1583 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
1584 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1585 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1586 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1587 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1588 "unknown Dell", STAC_9200_DELL_D22),
1589 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1590 "unknown Dell", STAC_9200_DELL_D22),
1591 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
1592 "Dell Latitude D620", STAC_9200_DELL_M22),
1593 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1594 "unknown Dell", STAC_9200_DELL_D23),
1595 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1596 "unknown Dell", STAC_9200_DELL_D23),
1597 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1598 "unknown Dell", STAC_9200_DELL_M22),
1599 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1600 "unknown Dell", STAC_9200_DELL_M24),
1601 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1602 "unknown Dell", STAC_9200_DELL_M24),
1603 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
1604 "Dell Latitude 120L", STAC_9200_DELL_M24),
1605 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
1606 "Dell Latitude D820", STAC_9200_DELL_M22),
1607 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
1608 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
1609 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
1610 "Dell XPS M1710", STAC_9200_DELL_M23),
1611 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
1612 "Dell Precision M90", STAC_9200_DELL_M23),
1613 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1614 "unknown Dell", STAC_9200_DELL_M22),
1615 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1616 "unknown Dell", STAC_9200_DELL_M22),
1617 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
1618 "unknown Dell", STAC_9200_DELL_M22),
1619 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
1620 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1621 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1622 "unknown Dell", STAC_9200_DELL_D23),
1623 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1624 "unknown Dell", STAC_9200_DELL_D23),
1625 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1626 "unknown Dell", STAC_9200_DELL_D21),
1627 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1628 "unknown Dell", STAC_9200_DELL_D23),
1629 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1630 "unknown Dell", STAC_9200_DELL_D21),
1631 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1632 "unknown Dell", STAC_9200_DELL_M25),
1633 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1634 "unknown Dell", STAC_9200_DELL_M25),
1635 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
1636 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1637 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1638 "unknown Dell", STAC_9200_DELL_M26),
1640 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
1641 /* Gateway machines needs EAPD to be set on resume */
1642 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1643 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1644 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
1646 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
1650 static unsigned int ref925x_pin_configs[8] = {
1651 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
1652 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
1655 static unsigned int stac925xM1_pin_configs[8] = {
1656 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1657 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1660 static unsigned int stac925xM1_2_pin_configs[8] = {
1661 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1662 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1665 static unsigned int stac925xM2_pin_configs[8] = {
1666 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1667 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1670 static unsigned int stac925xM2_2_pin_configs[8] = {
1671 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1672 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1675 static unsigned int stac925xM3_pin_configs[8] = {
1676 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1677 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
1680 static unsigned int stac925xM5_pin_configs[8] = {
1681 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1682 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1685 static unsigned int stac925xM6_pin_configs[8] = {
1686 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1687 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
1690 static unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = {
1691 [STAC_REF] = ref925x_pin_configs,
1692 [STAC_M1] = stac925xM1_pin_configs,
1693 [STAC_M1_2] = stac925xM1_2_pin_configs,
1694 [STAC_M2] = stac925xM2_pin_configs,
1695 [STAC_M2_2] = stac925xM2_2_pin_configs,
1696 [STAC_M3] = stac925xM3_pin_configs,
1697 [STAC_M5] = stac925xM5_pin_configs,
1698 [STAC_M6] = stac925xM6_pin_configs,
1701 static const char *stac925x_models[STAC_925x_MODELS] = {
1702 [STAC_925x_AUTO] = "auto",
1705 [STAC_M1_2] = "m1-2",
1707 [STAC_M2_2] = "m2-2",
1713 static struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = {
1714 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1715 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1716 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1717 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
1718 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
1719 /* Not sure about the brand name for those */
1720 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1721 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1722 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1723 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
1727 static struct snd_pci_quirk stac925x_cfg_tbl[] = {
1728 /* SigmaTel reference board */
1729 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
1730 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
1731 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
1733 /* Default table for unknown ID */
1734 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1739 static unsigned int ref92hd73xx_pin_configs[13] = {
1740 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1741 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1742 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
1746 static unsigned int dell_m6_pin_configs[13] = {
1747 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
1748 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
1749 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1753 static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
1754 [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs,
1755 [STAC_DELL_M6_AMIC] = dell_m6_pin_configs,
1756 [STAC_DELL_M6_DMIC] = dell_m6_pin_configs,
1757 [STAC_DELL_M6_BOTH] = dell_m6_pin_configs,
1758 [STAC_DELL_EQ] = dell_m6_pin_configs,
1761 static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
1762 [STAC_92HD73XX_AUTO] = "auto",
1763 [STAC_92HD73XX_NO_JD] = "no-jd",
1764 [STAC_92HD73XX_REF] = "ref",
1765 [STAC_DELL_M6_AMIC] = "dell-m6-amic",
1766 [STAC_DELL_M6_DMIC] = "dell-m6-dmic",
1767 [STAC_DELL_M6_BOTH] = "dell-m6",
1768 [STAC_DELL_EQ] = "dell-eq",
1771 static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
1772 /* SigmaTel reference board */
1773 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1774 "DFI LanParty", STAC_92HD73XX_REF),
1775 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1776 "DFI LanParty", STAC_92HD73XX_REF),
1777 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
1778 "Dell Studio 1535", STAC_DELL_M6_DMIC),
1779 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
1780 "unknown Dell", STAC_DELL_M6_DMIC),
1781 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
1782 "unknown Dell", STAC_DELL_M6_BOTH),
1783 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
1784 "unknown Dell", STAC_DELL_M6_BOTH),
1785 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
1786 "unknown Dell", STAC_DELL_M6_AMIC),
1787 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
1788 "unknown Dell", STAC_DELL_M6_AMIC),
1789 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
1790 "unknown Dell", STAC_DELL_M6_DMIC),
1791 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
1792 "unknown Dell", STAC_DELL_M6_DMIC),
1793 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
1794 "Dell Studio 1537", STAC_DELL_M6_DMIC),
1795 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
1796 "Dell Studio 17", STAC_DELL_M6_DMIC),
1797 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be,
1798 "Dell Studio 1555", STAC_DELL_M6_DMIC),
1802 static unsigned int ref92hd83xxx_pin_configs[10] = {
1803 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1804 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
1805 0x01451160, 0x98560170,
1808 static unsigned int dell_s14_pin_configs[10] = {
1809 0x02214030, 0x02211010, 0x02a19020, 0x01014050,
1810 0x40f000f0, 0x01819040, 0x40f000f0, 0x90a60160,
1811 0x40f000f0, 0x40f000f0,
1814 static unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = {
1815 [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs,
1816 [STAC_92HD83XXX_PWR_REF] = ref92hd83xxx_pin_configs,
1817 [STAC_DELL_S14] = dell_s14_pin_configs,
1820 static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
1821 [STAC_92HD83XXX_AUTO] = "auto",
1822 [STAC_92HD83XXX_REF] = "ref",
1823 [STAC_92HD83XXX_PWR_REF] = "mic-ref",
1824 [STAC_DELL_S14] = "dell-s14",
1827 static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
1828 /* SigmaTel reference board */
1829 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1830 "DFI LanParty", STAC_92HD83XXX_REF),
1831 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1832 "DFI LanParty", STAC_92HD83XXX_REF),
1833 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
1834 "unknown Dell", STAC_DELL_S14),
1838 static unsigned int ref92hd71bxx_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1839 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
1840 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
1841 0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
1845 static unsigned int dell_m4_1_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1846 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
1847 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
1848 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
1852 static unsigned int dell_m4_2_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1853 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1854 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
1855 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1859 static unsigned int dell_m4_3_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1860 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1861 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
1862 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1866 static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
1867 [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
1868 [STAC_DELL_M4_1] = dell_m4_1_pin_configs,
1869 [STAC_DELL_M4_2] = dell_m4_2_pin_configs,
1870 [STAC_DELL_M4_3] = dell_m4_3_pin_configs,
1871 [STAC_HP_M4] = NULL,
1872 [STAC_HP_DV5] = NULL,
1873 [STAC_HP_HDX] = NULL,
1874 [STAC_HP_DV4_1222NR] = NULL,
1877 static const char *stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
1878 [STAC_92HD71BXX_AUTO] = "auto",
1879 [STAC_92HD71BXX_REF] = "ref",
1880 [STAC_DELL_M4_1] = "dell-m4-1",
1881 [STAC_DELL_M4_2] = "dell-m4-2",
1882 [STAC_DELL_M4_3] = "dell-m4-3",
1883 [STAC_HP_M4] = "hp-m4",
1884 [STAC_HP_DV5] = "hp-dv5",
1885 [STAC_HP_HDX] = "hp-hdx",
1886 [STAC_HP_DV4_1222NR] = "hp-dv4-1222nr",
1889 static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1890 /* SigmaTel reference board */
1891 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1892 "DFI LanParty", STAC_92HD71BXX_REF),
1893 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1894 "DFI LanParty", STAC_92HD71BXX_REF),
1895 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fb,
1896 "HP dv4-1222nr", STAC_HP_DV4_1222NR),
1897 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
1899 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
1900 "HP dv4-7", STAC_HP_DV5),
1901 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
1902 "HP dv4-7", STAC_HP_DV5),
1903 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
1904 "HP HDX", STAC_HP_HDX), /* HDX18 */
1905 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
1906 "HP mini 1000", STAC_HP_M4),
1907 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
1908 "HP HDX", STAC_HP_HDX), /* HDX16 */
1909 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
1911 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
1912 "unknown Dell", STAC_DELL_M4_1),
1913 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
1914 "unknown Dell", STAC_DELL_M4_1),
1915 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
1916 "unknown Dell", STAC_DELL_M4_1),
1917 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
1918 "unknown Dell", STAC_DELL_M4_1),
1919 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
1920 "unknown Dell", STAC_DELL_M4_1),
1921 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
1922 "unknown Dell", STAC_DELL_M4_1),
1923 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
1924 "unknown Dell", STAC_DELL_M4_1),
1925 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
1926 "unknown Dell", STAC_DELL_M4_2),
1927 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
1928 "unknown Dell", STAC_DELL_M4_2),
1929 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
1930 "unknown Dell", STAC_DELL_M4_2),
1931 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
1932 "unknown Dell", STAC_DELL_M4_2),
1933 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
1934 "unknown Dell", STAC_DELL_M4_3),
1938 static unsigned int ref922x_pin_configs[10] = {
1939 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1940 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
1941 0x40000100, 0x40000100,
1945 STAC 922X pin configs for
1952 static unsigned int dell_922x_d81_pin_configs[10] = {
1953 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1954 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1955 0x01813122, 0x400001f2,
1959 STAC 922X pin configs for
1963 static unsigned int dell_922x_d82_pin_configs[10] = {
1964 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1965 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1966 0x01813122, 0x400001f1,
1970 STAC 922X pin configs for
1973 static unsigned int dell_922x_m81_pin_configs[10] = {
1974 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1975 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1976 0x40C003f1, 0x405003f0,
1980 STAC 9221 A1 pin configs for
1981 102801D7 (Dell XPS M1210)
1983 static unsigned int dell_922x_m82_pin_configs[10] = {
1984 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1985 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
1986 0x508003f3, 0x405003f4,
1989 static unsigned int d945gtp3_pin_configs[10] = {
1990 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
1991 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1992 0x02a19120, 0x40000100,
1995 static unsigned int d945gtp5_pin_configs[10] = {
1996 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1997 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
1998 0x02a19320, 0x40000100,
2001 static unsigned int intel_mac_v1_pin_configs[10] = {
2002 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
2003 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
2004 0x400000fc, 0x400000fb,
2007 static unsigned int intel_mac_v2_pin_configs[10] = {
2008 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
2009 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
2010 0x400000fc, 0x400000fb,
2013 static unsigned int intel_mac_v3_pin_configs[10] = {
2014 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
2015 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
2016 0x400000fc, 0x400000fb,
2019 static unsigned int intel_mac_v4_pin_configs[10] = {
2020 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
2021 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
2022 0x400000fc, 0x400000fb,
2025 static unsigned int intel_mac_v5_pin_configs[10] = {
2026 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
2027 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
2028 0x400000fc, 0x400000fb,
2031 static unsigned int ecs202_pin_configs[10] = {
2032 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
2033 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
2034 0x9037012e, 0x40e000f2,
2037 static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
2038 [STAC_D945_REF] = ref922x_pin_configs,
2039 [STAC_D945GTP3] = d945gtp3_pin_configs,
2040 [STAC_D945GTP5] = d945gtp5_pin_configs,
2041 [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
2042 [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
2043 [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
2044 [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
2045 [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
2046 [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
2047 /* for backward compatibility */
2048 [STAC_MACMINI] = intel_mac_v3_pin_configs,
2049 [STAC_MACBOOK] = intel_mac_v5_pin_configs,
2050 [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
2051 [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
2052 [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
2053 [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
2054 [STAC_ECS_202] = ecs202_pin_configs,
2055 [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
2056 [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
2057 [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
2058 [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,
2061 static const char *stac922x_models[STAC_922X_MODELS] = {
2062 [STAC_922X_AUTO] = "auto",
2063 [STAC_D945_REF] = "ref",
2064 [STAC_D945GTP5] = "5stack",
2065 [STAC_D945GTP3] = "3stack",
2066 [STAC_INTEL_MAC_V1] = "intel-mac-v1",
2067 [STAC_INTEL_MAC_V2] = "intel-mac-v2",
2068 [STAC_INTEL_MAC_V3] = "intel-mac-v3",
2069 [STAC_INTEL_MAC_V4] = "intel-mac-v4",
2070 [STAC_INTEL_MAC_V5] = "intel-mac-v5",
2071 [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
2072 /* for backward compatibility */
2073 [STAC_MACMINI] = "macmini",
2074 [STAC_MACBOOK] = "macbook",
2075 [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1",
2076 [STAC_MACBOOK_PRO_V2] = "macbook-pro",
2077 [STAC_IMAC_INTEL] = "imac-intel",
2078 [STAC_IMAC_INTEL_20] = "imac-intel-20",
2079 [STAC_ECS_202] = "ecs202",
2080 [STAC_922X_DELL_D81] = "dell-d81",
2081 [STAC_922X_DELL_D82] = "dell-d82",
2082 [STAC_922X_DELL_M81] = "dell-m81",
2083 [STAC_922X_DELL_M82] = "dell-m82",
2086 static struct snd_pci_quirk stac922x_cfg_tbl[] = {
2087 /* SigmaTel reference board */
2088 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2089 "DFI LanParty", STAC_D945_REF),
2090 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2091 "DFI LanParty", STAC_D945_REF),
2092 /* Intel 945G based systems */
2093 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
2094 "Intel D945G", STAC_D945GTP3),
2095 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
2096 "Intel D945G", STAC_D945GTP3),
2097 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
2098 "Intel D945G", STAC_D945GTP3),
2099 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
2100 "Intel D945G", STAC_D945GTP3),
2101 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
2102 "Intel D945G", STAC_D945GTP3),
2103 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
2104 "Intel D945G", STAC_D945GTP3),
2105 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
2106 "Intel D945G", STAC_D945GTP3),
2107 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
2108 "Intel D945G", STAC_D945GTP3),
2109 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
2110 "Intel D945G", STAC_D945GTP3),
2111 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
2112 "Intel D945G", STAC_D945GTP3),
2113 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
2114 "Intel D945G", STAC_D945GTP3),
2115 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
2116 "Intel D945G", STAC_D945GTP3),
2117 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
2118 "Intel D945G", STAC_D945GTP3),
2119 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
2120 "Intel D945G", STAC_D945GTP3),
2121 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
2122 "Intel D945G", STAC_D945GTP3),
2123 /* Intel D945G 5-stack systems */
2124 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
2125 "Intel D945G", STAC_D945GTP5),
2126 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
2127 "Intel D945G", STAC_D945GTP5),
2128 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
2129 "Intel D945G", STAC_D945GTP5),
2130 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
2131 "Intel D945G", STAC_D945GTP5),
2132 /* Intel 945P based systems */
2133 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
2134 "Intel D945P", STAC_D945GTP3),
2135 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
2136 "Intel D945P", STAC_D945GTP3),
2137 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
2138 "Intel D945P", STAC_D945GTP3),
2139 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
2140 "Intel D945P", STAC_D945GTP3),
2141 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
2142 "Intel D945P", STAC_D945GTP3),
2143 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
2144 "Intel D945P", STAC_D945GTP5),
2146 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
2147 "Intel D945", STAC_D945_REF),
2149 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
2150 SND_PCI_QUIRK(0x8384, 0x7680,
2151 "Mac", STAC_INTEL_MAC_AUTO),
2153 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
2154 "unknown Dell", STAC_922X_DELL_D81),
2155 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
2156 "unknown Dell", STAC_922X_DELL_D81),
2157 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
2158 "unknown Dell", STAC_922X_DELL_D81),
2159 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
2160 "unknown Dell", STAC_922X_DELL_D82),
2161 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
2162 "unknown Dell", STAC_922X_DELL_M81),
2163 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
2164 "unknown Dell", STAC_922X_DELL_D82),
2165 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
2166 "unknown Dell", STAC_922X_DELL_D81),
2167 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
2168 "unknown Dell", STAC_922X_DELL_D81),
2169 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
2170 "Dell XPS M1210", STAC_922X_DELL_M82),
2171 /* ECS/PC Chips boards */
2172 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
2173 "ECS/PC chips", STAC_ECS_202),
2177 static unsigned int ref927x_pin_configs[14] = {
2178 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2179 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
2180 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
2181 0x01c42190, 0x40000100,
2184 static unsigned int d965_3st_pin_configs[14] = {
2185 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
2186 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
2187 0x40000100, 0x40000100, 0x40000100, 0x40000100,
2188 0x40000100, 0x40000100
2191 static unsigned int d965_5st_pin_configs[14] = {
2192 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2193 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2194 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2195 0x40000100, 0x40000100
2198 static unsigned int d965_5st_no_fp_pin_configs[14] = {
2199 0x40000100, 0x40000100, 0x0181304e, 0x01014010,
2200 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2201 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2202 0x40000100, 0x40000100
2205 static unsigned int dell_3st_pin_configs[14] = {
2206 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
2207 0x01111212, 0x01116211, 0x01813050, 0x01112214,
2208 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
2209 0x40c003fc, 0x40000100
2212 static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
2213 [STAC_D965_REF_NO_JD] = ref927x_pin_configs,
2214 [STAC_D965_REF] = ref927x_pin_configs,
2215 [STAC_D965_3ST] = d965_3st_pin_configs,
2216 [STAC_D965_5ST] = d965_5st_pin_configs,
2217 [STAC_D965_5ST_NO_FP] = d965_5st_no_fp_pin_configs,
2218 [STAC_DELL_3ST] = dell_3st_pin_configs,
2219 [STAC_DELL_BIOS] = NULL,
2222 static const char *stac927x_models[STAC_927X_MODELS] = {
2223 [STAC_927X_AUTO] = "auto",
2224 [STAC_D965_REF_NO_JD] = "ref-no-jd",
2225 [STAC_D965_REF] = "ref",
2226 [STAC_D965_3ST] = "3stack",
2227 [STAC_D965_5ST] = "5stack",
2228 [STAC_D965_5ST_NO_FP] = "5stack-no-fp",
2229 [STAC_DELL_3ST] = "dell-3stack",
2230 [STAC_DELL_BIOS] = "dell-bios",
2233 static struct snd_pci_quirk stac927x_cfg_tbl[] = {
2234 /* SigmaTel reference board */
2235 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2236 "DFI LanParty", STAC_D965_REF),
2237 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2238 "DFI LanParty", STAC_D965_REF),
2239 /* Intel 946 based systems */
2240 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
2241 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
2242 /* 965 based 3 stack systems */
2243 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
2244 "Intel D965", STAC_D965_3ST),
2245 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
2246 "Intel D965", STAC_D965_3ST),
2247 /* Dell 3 stack systems */
2248 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_3ST),
2249 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
2250 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
2251 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
2252 /* Dell 3 stack systems with verb table in BIOS */
2253 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
2254 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
2255 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS),
2256 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS),
2257 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
2258 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
2259 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
2260 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
2261 /* 965 based 5 stack systems */
2262 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
2263 "Intel D965", STAC_D965_5ST),
2264 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
2265 "Intel D965", STAC_D965_5ST),
2269 static unsigned int ref9205_pin_configs[12] = {
2270 0x40000100, 0x40000100, 0x01016011, 0x01014010,
2271 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
2272 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
2276 STAC 9205 pin configs for
2283 10280228 (Dell Vostro 1500)
2285 static unsigned int dell_9205_m42_pin_configs[12] = {
2286 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2287 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2288 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2292 STAC 9205 pin configs for
2296 102801FF (Dell Precision M4300)
2301 static unsigned int dell_9205_m43_pin_configs[12] = {
2302 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2303 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2304 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2307 static unsigned int dell_9205_m44_pin_configs[12] = {
2308 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2309 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2310 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2313 static unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
2314 [STAC_9205_REF] = ref9205_pin_configs,
2315 [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
2316 [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
2317 [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
2318 [STAC_9205_EAPD] = NULL,
2321 static const char *stac9205_models[STAC_9205_MODELS] = {
2322 [STAC_9205_AUTO] = "auto",
2323 [STAC_9205_REF] = "ref",
2324 [STAC_9205_DELL_M42] = "dell-m42",
2325 [STAC_9205_DELL_M43] = "dell-m43",
2326 [STAC_9205_DELL_M44] = "dell-m44",
2327 [STAC_9205_EAPD] = "eapd",
2330 static struct snd_pci_quirk stac9205_cfg_tbl[] = {
2331 /* SigmaTel reference board */
2332 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2333 "DFI LanParty", STAC_9205_REF),
2334 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30,
2335 "SigmaTel", STAC_9205_REF),
2336 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2337 "DFI LanParty", STAC_9205_REF),
2339 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
2340 "unknown Dell", STAC_9205_DELL_M42),
2341 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
2342 "unknown Dell", STAC_9205_DELL_M42),
2343 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
2344 "Dell Precision", STAC_9205_DELL_M43),
2345 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
2346 "Dell Precision", STAC_9205_DELL_M43),
2347 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
2348 "Dell Precision", STAC_9205_DELL_M43),
2349 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
2350 "unknown Dell", STAC_9205_DELL_M42),
2351 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
2352 "unknown Dell", STAC_9205_DELL_M42),
2353 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
2354 "Dell Precision", STAC_9205_DELL_M43),
2355 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
2356 "Dell Precision M4300", STAC_9205_DELL_M43),
2357 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
2358 "unknown Dell", STAC_9205_DELL_M42),
2359 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
2360 "Dell Precision", STAC_9205_DELL_M43),
2361 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
2362 "Dell Precision", STAC_9205_DELL_M43),
2363 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
2364 "Dell Precision", STAC_9205_DELL_M43),
2365 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
2366 "Dell Inspiron", STAC_9205_DELL_M44),
2367 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
2368 "Dell Vostro 1500", STAC_9205_DELL_M42),
2370 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD),
2371 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
2375 static void stac92xx_set_config_regs(struct hda_codec *codec,
2376 unsigned int *pincfgs)
2379 struct sigmatel_spec *spec = codec->spec;
2384 for (i = 0; i < spec->num_pins; i++)
2385 if (spec->pin_nids[i] && pincfgs[i])
2386 snd_hda_codec_set_pincfg(codec, spec->pin_nids[i],
2391 * Analog playback callbacks
2393 static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
2394 struct hda_codec *codec,
2395 struct snd_pcm_substream *substream)
2397 struct sigmatel_spec *spec = codec->spec;
2398 if (spec->stream_delay)
2399 msleep(spec->stream_delay);
2400 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2404 static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2405 struct hda_codec *codec,
2406 unsigned int stream_tag,
2407 unsigned int format,
2408 struct snd_pcm_substream *substream)
2410 struct sigmatel_spec *spec = codec->spec;
2411 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
2414 static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2415 struct hda_codec *codec,
2416 struct snd_pcm_substream *substream)
2418 struct sigmatel_spec *spec = codec->spec;
2419 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2423 * Digital playback callbacks
2425 static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2426 struct hda_codec *codec,
2427 struct snd_pcm_substream *substream)
2429 struct sigmatel_spec *spec = codec->spec;
2430 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2433 static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2434 struct hda_codec *codec,
2435 struct snd_pcm_substream *substream)
2437 struct sigmatel_spec *spec = codec->spec;
2438 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2441 static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2442 struct hda_codec *codec,
2443 unsigned int stream_tag,
2444 unsigned int format,
2445 struct snd_pcm_substream *substream)
2447 struct sigmatel_spec *spec = codec->spec;
2448 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2449 stream_tag, format, substream);
2452 static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2453 struct hda_codec *codec,
2454 struct snd_pcm_substream *substream)
2456 struct sigmatel_spec *spec = codec->spec;
2457 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2462 * Analog capture callbacks
2464 static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2465 struct hda_codec *codec,
2466 unsigned int stream_tag,
2467 unsigned int format,
2468 struct snd_pcm_substream *substream)
2470 struct sigmatel_spec *spec = codec->spec;
2471 hda_nid_t nid = spec->adc_nids[substream->number];
2473 if (spec->powerdown_adcs) {
2475 snd_hda_codec_write(codec, nid, 0,
2476 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
2478 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
2482 static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2483 struct hda_codec *codec,
2484 struct snd_pcm_substream *substream)
2486 struct sigmatel_spec *spec = codec->spec;
2487 hda_nid_t nid = spec->adc_nids[substream->number];
2489 snd_hda_codec_cleanup_stream(codec, nid);
2490 if (spec->powerdown_adcs)
2491 snd_hda_codec_write(codec, nid, 0,
2492 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
2496 static struct hda_pcm_stream stac92xx_pcm_digital_playback = {
2500 /* NID is set in stac92xx_build_pcms */
2502 .open = stac92xx_dig_playback_pcm_open,
2503 .close = stac92xx_dig_playback_pcm_close,
2504 .prepare = stac92xx_dig_playback_pcm_prepare,
2505 .cleanup = stac92xx_dig_playback_pcm_cleanup
2509 static struct hda_pcm_stream stac92xx_pcm_digital_capture = {
2513 /* NID is set in stac92xx_build_pcms */
2516 static struct hda_pcm_stream stac92xx_pcm_analog_playback = {
2520 .nid = 0x02, /* NID to query formats and rates */
2522 .open = stac92xx_playback_pcm_open,
2523 .prepare = stac92xx_playback_pcm_prepare,
2524 .cleanup = stac92xx_playback_pcm_cleanup
2528 static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
2532 .nid = 0x06, /* NID to query formats and rates */
2534 .open = stac92xx_playback_pcm_open,
2535 .prepare = stac92xx_playback_pcm_prepare,
2536 .cleanup = stac92xx_playback_pcm_cleanup
2540 static struct hda_pcm_stream stac92xx_pcm_analog_capture = {
2543 /* NID + .substreams is set in stac92xx_build_pcms */
2545 .prepare = stac92xx_capture_pcm_prepare,
2546 .cleanup = stac92xx_capture_pcm_cleanup
2550 static int stac92xx_build_pcms(struct hda_codec *codec)
2552 struct sigmatel_spec *spec = codec->spec;
2553 struct hda_pcm *info = spec->pcm_rec;
2555 codec->num_pcms = 1;
2556 codec->pcm_info = info;
2558 info->name = "STAC92xx Analog";
2559 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
2560 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2561 spec->multiout.dac_nids[0];
2562 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
2563 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2564 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
2566 if (spec->alt_switch) {
2569 info->name = "STAC92xx Analog Alt";
2570 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
2573 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2576 info->name = "STAC92xx Digital";
2577 info->pcm_type = spec->autocfg.dig_out_type[0];
2578 if (spec->multiout.dig_out_nid) {
2579 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
2580 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2582 if (spec->dig_in_nid) {
2583 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
2584 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2591 static unsigned int stac92xx_get_default_vref(struct hda_codec *codec,
2594 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2595 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2596 if (pincap & AC_PINCAP_VREF_100)
2597 return AC_PINCTL_VREF_100;
2598 if (pincap & AC_PINCAP_VREF_80)
2599 return AC_PINCTL_VREF_80;
2600 if (pincap & AC_PINCAP_VREF_50)
2601 return AC_PINCTL_VREF_50;
2602 if (pincap & AC_PINCAP_VREF_GRD)
2603 return AC_PINCTL_VREF_GRD;
2607 static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
2610 snd_hda_codec_write_cache(codec, nid, 0,
2611 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2614 #define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2616 static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
2617 struct snd_ctl_elem_value *ucontrol)
2619 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2620 struct sigmatel_spec *spec = codec->spec;
2622 ucontrol->value.integer.value[0] = !!spec->hp_switch;
2626 static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid);
2628 static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
2629 struct snd_ctl_elem_value *ucontrol)
2631 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2632 struct sigmatel_spec *spec = codec->spec;
2633 int nid = kcontrol->private_value;
2635 spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0;
2637 /* check to be sure that the ports are upto date with
2640 stac_issue_unsol_event(codec, nid);
2645 static int stac92xx_dc_bias_info(struct snd_kcontrol *kcontrol,
2646 struct snd_ctl_elem_info *uinfo)
2649 static char *texts[] = {
2650 "Mic In", "Line In", "Line Out"
2653 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2654 struct sigmatel_spec *spec = codec->spec;
2655 hda_nid_t nid = kcontrol->private_value;
2657 if (nid == spec->mic_switch || nid == spec->line_switch)
2662 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2663 uinfo->value.enumerated.items = i;
2665 if (uinfo->value.enumerated.item >= i)
2666 uinfo->value.enumerated.item = i-1;
2667 strcpy(uinfo->value.enumerated.name,
2668 texts[uinfo->value.enumerated.item]);
2673 static int stac92xx_dc_bias_get(struct snd_kcontrol *kcontrol,
2674 struct snd_ctl_elem_value *ucontrol)
2676 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2677 hda_nid_t nid = kcontrol->private_value;
2678 unsigned int vref = stac92xx_vref_get(codec, nid);
2680 if (vref == stac92xx_get_default_vref(codec, nid))
2681 ucontrol->value.enumerated.item[0] = 0;
2682 else if (vref == AC_PINCTL_VREF_GRD)
2683 ucontrol->value.enumerated.item[0] = 1;
2684 else if (vref == AC_PINCTL_VREF_HIZ)
2685 ucontrol->value.enumerated.item[0] = 2;
2690 static int stac92xx_dc_bias_put(struct snd_kcontrol *kcontrol,
2691 struct snd_ctl_elem_value *ucontrol)
2693 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2694 unsigned int new_vref = 0;
2696 hda_nid_t nid = kcontrol->private_value;
2698 if (ucontrol->value.enumerated.item[0] == 0)
2699 new_vref = stac92xx_get_default_vref(codec, nid);
2700 else if (ucontrol->value.enumerated.item[0] == 1)
2701 new_vref = AC_PINCTL_VREF_GRD;
2702 else if (ucontrol->value.enumerated.item[0] == 2)
2703 new_vref = AC_PINCTL_VREF_HIZ;
2707 if (new_vref != stac92xx_vref_get(codec, nid)) {
2708 error = stac92xx_vref_set(codec, nid, new_vref);
2715 static int stac92xx_io_switch_info(struct snd_kcontrol *kcontrol,
2716 struct snd_ctl_elem_info *uinfo)
2718 static char *texts[2];
2719 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2720 struct sigmatel_spec *spec = codec->spec;
2722 if (kcontrol->private_value == spec->line_switch)
2723 texts[0] = "Line In";
2725 texts[0] = "Mic In";
2726 texts[1] = "Line Out";
2727 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2728 uinfo->value.enumerated.items = 2;
2731 if (uinfo->value.enumerated.item >= 2)
2732 uinfo->value.enumerated.item = 1;
2733 strcpy(uinfo->value.enumerated.name,
2734 texts[uinfo->value.enumerated.item]);
2739 static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2741 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2742 struct sigmatel_spec *spec = codec->spec;
2743 hda_nid_t nid = kcontrol->private_value;
2744 int io_idx = (nid == spec->mic_switch) ? 1 : 0;
2746 ucontrol->value.enumerated.item[0] = spec->io_switch[io_idx];
2750 static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2752 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2753 struct sigmatel_spec *spec = codec->spec;
2754 hda_nid_t nid = kcontrol->private_value;
2755 int io_idx = (nid == spec->mic_switch) ? 1 : 0;
2756 unsigned short val = !!ucontrol->value.enumerated.item[0];
2758 spec->io_switch[io_idx] = val;
2761 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
2763 unsigned int pinctl = AC_PINCTL_IN_EN;
2764 if (io_idx) /* set VREF for mic */
2765 pinctl |= stac92xx_get_default_vref(codec, nid);
2766 stac92xx_auto_set_pinctl(codec, nid, pinctl);
2769 /* check the auto-mute again: we need to mute/unmute the speaker
2770 * appropriately according to the pin direction
2772 if (spec->hp_detect)
2773 stac_issue_unsol_event(codec, nid);
2778 #define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2780 static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
2781 struct snd_ctl_elem_value *ucontrol)
2783 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2784 struct sigmatel_spec *spec = codec->spec;
2786 ucontrol->value.integer.value[0] = spec->clfe_swap;
2790 static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
2791 struct snd_ctl_elem_value *ucontrol)
2793 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2794 struct sigmatel_spec *spec = codec->spec;
2795 hda_nid_t nid = kcontrol->private_value & 0xff;
2796 unsigned int val = !!ucontrol->value.integer.value[0];
2798 if (spec->clfe_swap == val)
2801 spec->clfe_swap = val;
2803 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
2804 spec->clfe_swap ? 0x4 : 0x0);
2809 #define STAC_CODEC_HP_SWITCH(xname) \
2810 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2813 .info = stac92xx_hp_switch_info, \
2814 .get = stac92xx_hp_switch_get, \
2815 .put = stac92xx_hp_switch_put, \
2818 #define STAC_CODEC_IO_SWITCH(xname, xpval) \
2819 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2822 .info = stac92xx_io_switch_info, \
2823 .get = stac92xx_io_switch_get, \
2824 .put = stac92xx_io_switch_put, \
2825 .private_value = xpval, \
2828 #define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2829 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2832 .info = stac92xx_clfe_switch_info, \
2833 .get = stac92xx_clfe_switch_get, \
2834 .put = stac92xx_clfe_switch_put, \
2835 .private_value = xpval, \
2839 STAC_CTL_WIDGET_VOL,
2840 STAC_CTL_WIDGET_MUTE,
2841 STAC_CTL_WIDGET_MONO_MUX,
2842 STAC_CTL_WIDGET_AMP_MUX,
2843 STAC_CTL_WIDGET_AMP_VOL,
2844 STAC_CTL_WIDGET_HP_SWITCH,
2845 STAC_CTL_WIDGET_IO_SWITCH,
2846 STAC_CTL_WIDGET_CLFE_SWITCH,
2847 STAC_CTL_WIDGET_DC_BIAS
2850 static struct snd_kcontrol_new stac92xx_control_templates[] = {
2851 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2852 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2855 STAC_AMP_VOL(NULL, 0, 0, 0, 0),
2856 STAC_CODEC_HP_SWITCH(NULL),
2857 STAC_CODEC_IO_SWITCH(NULL, 0),
2858 STAC_CODEC_CLFE_SWITCH(NULL, 0),
2859 DC_BIAS(NULL, 0, 0),
2862 /* add dynamic controls */
2863 static struct snd_kcontrol_new *
2864 stac_control_new(struct sigmatel_spec *spec,
2865 struct snd_kcontrol_new *ktemp,
2868 struct snd_kcontrol_new *knew;
2870 snd_array_init(&spec->kctls, sizeof(*knew), 32);
2871 knew = snd_array_new(&spec->kctls);
2875 knew->name = kstrdup(name, GFP_KERNEL);
2878 memset(knew, 0, sizeof(*knew));
2879 spec->kctls.alloced--;
2885 static int stac92xx_add_control_temp(struct sigmatel_spec *spec,
2886 struct snd_kcontrol_new *ktemp,
2887 int idx, const char *name,
2890 struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name);
2894 knew->private_value = val;
2898 static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec,
2899 int type, int idx, const char *name,
2902 return stac92xx_add_control_temp(spec,
2903 &stac92xx_control_templates[type],
2908 /* add dynamic controls */
2909 static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type,
2910 const char *name, unsigned long val)
2912 return stac92xx_add_control_idx(spec, type, 0, name, val);
2915 static struct snd_kcontrol_new stac_input_src_temp = {
2916 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2917 .name = "Input Source",
2918 .info = stac92xx_mux_enum_info,
2919 .get = stac92xx_mux_enum_get,
2920 .put = stac92xx_mux_enum_put,
2923 static inline int stac92xx_add_jack_mode_control(struct hda_codec *codec,
2924 hda_nid_t nid, int idx)
2926 int def_conf = snd_hda_codec_get_pincfg(codec, nid);
2928 struct sigmatel_spec *spec = codec->spec;
2931 if (!((get_defcfg_connect(def_conf)) & AC_JACK_PORT_FIXED)) {
2932 if (stac92xx_get_default_vref(codec, nid) == AC_PINCTL_VREF_GRD
2933 && nid == spec->line_switch)
2934 control = STAC_CTL_WIDGET_IO_SWITCH;
2935 else if (snd_hda_query_pin_caps(codec, nid)
2936 & (AC_PINCAP_VREF_GRD << AC_PINCAP_VREF_SHIFT))
2937 control = STAC_CTL_WIDGET_DC_BIAS;
2938 else if (nid == spec->mic_switch)
2939 control = STAC_CTL_WIDGET_IO_SWITCH;
2943 strcpy(name, auto_pin_cfg_labels[idx]);
2944 return stac92xx_add_control(codec->spec, control,
2945 strcat(name, " Jack Mode"), nid);
2951 static int stac92xx_add_input_source(struct sigmatel_spec *spec)
2953 struct snd_kcontrol_new *knew;
2954 struct hda_input_mux *imux = &spec->private_imux;
2957 return 0; /* no need for input source */
2958 if (!spec->num_adcs || imux->num_items <= 1)
2959 return 0; /* no need for input source control */
2960 knew = stac_control_new(spec, &stac_input_src_temp,
2961 stac_input_src_temp.name);
2964 knew->count = spec->num_adcs;
2968 /* check whether the line-input can be used as line-out */
2969 static hda_nid_t check_line_out_switch(struct hda_codec *codec)
2971 struct sigmatel_spec *spec = codec->spec;
2972 struct auto_pin_cfg *cfg = &spec->autocfg;
2974 unsigned int pincap;
2976 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2978 nid = cfg->input_pins[AUTO_PIN_LINE];
2979 pincap = snd_hda_query_pin_caps(codec, nid);
2980 if (pincap & AC_PINCAP_OUT)
2985 /* check whether the mic-input can be used as line-out */
2986 static hda_nid_t check_mic_out_switch(struct hda_codec *codec)
2988 struct sigmatel_spec *spec = codec->spec;
2989 struct auto_pin_cfg *cfg = &spec->autocfg;
2990 unsigned int def_conf, pincap;
2991 unsigned int mic_pin;
2993 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2995 mic_pin = AUTO_PIN_MIC;
2997 hda_nid_t nid = cfg->input_pins[mic_pin];
2998 def_conf = snd_hda_codec_get_pincfg(codec, nid);
2999 /* some laptops have an internal analog microphone
3000 * which can't be used as a output */
3001 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) {
3002 pincap = snd_hda_query_pin_caps(codec, nid);
3003 if (pincap & AC_PINCAP_OUT)
3006 if (mic_pin == AUTO_PIN_MIC)
3007 mic_pin = AUTO_PIN_FRONT_MIC;
3014 static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
3018 for (i = 0; i < spec->multiout.num_dacs; i++) {
3019 if (spec->multiout.dac_nids[i] == nid)
3026 static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
3029 if (is_in_dac_nids(spec, nid))
3031 for (i = 0; i < spec->autocfg.hp_outs; i++)
3032 if (spec->hp_dacs[i] == nid)
3034 for (i = 0; i < spec->autocfg.speaker_outs; i++)
3035 if (spec->speaker_dacs[i] == nid)
3040 static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid)
3042 struct sigmatel_spec *spec = codec->spec;
3044 hda_nid_t conn[HDA_MAX_CONNECTIONS];
3045 unsigned int wcaps, wtype;
3047 conn_len = snd_hda_get_connections(codec, nid, conn,
3048 HDA_MAX_CONNECTIONS);
3049 for (j = 0; j < conn_len; j++) {
3050 wcaps = get_wcaps(codec, conn[j]);
3051 wtype = get_wcaps_type(wcaps);
3052 /* we check only analog outputs */
3053 if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL))
3055 /* if this route has a free DAC, assign it */
3056 if (!check_all_dac_nids(spec, conn[j])) {
3058 /* select this DAC in the pin's input mux */
3059 snd_hda_codec_write_cache(codec, nid, 0,
3060 AC_VERB_SET_CONNECT_SEL, j);
3065 /* if all DACs are already assigned, connect to the primary DAC */
3067 for (j = 0; j < conn_len; j++) {
3068 if (conn[j] == spec->multiout.dac_nids[0]) {
3069 snd_hda_codec_write_cache(codec, nid, 0,
3070 AC_VERB_SET_CONNECT_SEL, j);
3078 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
3079 static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
3082 * Fill in the dac_nids table from the parsed pin configuration
3083 * This function only works when every pin in line_out_pins[]
3084 * contains atleast one DAC in its connection list. Some 92xx
3085 * codecs are not connected directly to a DAC, such as the 9200
3086 * and 9202/925x. For those, dac_nids[] must be hard-coded.
3088 static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec)
3090 struct sigmatel_spec *spec = codec->spec;
3091 struct auto_pin_cfg *cfg = &spec->autocfg;
3095 for (i = 0; i < cfg->line_outs; i++) {
3096 nid = cfg->line_out_pins[i];
3097 dac = get_unassigned_dac(codec, nid);
3099 if (spec->multiout.num_dacs > 0) {
3100 /* we have already working output pins,
3101 * so let's drop the broken ones again
3103 cfg->line_outs = spec->multiout.num_dacs;
3106 /* error out, no available DAC found */
3108 "%s: No available DAC for pin 0x%x\n",
3112 add_spec_dacs(spec, dac);
3115 for (i = 0; i < cfg->hp_outs; i++) {
3116 nid = cfg->hp_pins[i];
3117 dac = get_unassigned_dac(codec, nid);
3119 if (!spec->multiout.hp_nid)
3120 spec->multiout.hp_nid = dac;
3122 add_spec_extra_dacs(spec, dac);
3124 spec->hp_dacs[i] = dac;
3127 for (i = 0; i < cfg->speaker_outs; i++) {
3128 nid = cfg->speaker_pins[i];
3129 dac = get_unassigned_dac(codec, nid);
3131 add_spec_extra_dacs(spec, dac);
3132 spec->speaker_dacs[i] = dac;
3135 /* add line-in as output */
3136 nid = check_line_out_switch(codec);
3138 dac = get_unassigned_dac(codec, nid);
3140 snd_printdd("STAC: Add line-in 0x%x as output %d\n",
3141 nid, cfg->line_outs);
3142 cfg->line_out_pins[cfg->line_outs] = nid;
3144 spec->line_switch = nid;
3145 add_spec_dacs(spec, dac);
3148 /* add mic as output */
3149 nid = check_mic_out_switch(codec);
3151 dac = get_unassigned_dac(codec, nid);
3153 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
3154 nid, cfg->line_outs);
3155 cfg->line_out_pins[cfg->line_outs] = nid;
3157 spec->mic_switch = nid;
3158 add_spec_dacs(spec, dac);
3162 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3163 spec->multiout.num_dacs,
3164 spec->multiout.dac_nids[0],
3165 spec->multiout.dac_nids[1],
3166 spec->multiout.dac_nids[2],
3167 spec->multiout.dac_nids[3],
3168 spec->multiout.dac_nids[4]);
3173 /* create volume control/switch for the given prefx type */
3174 static int create_controls_idx(struct hda_codec *codec, const char *pfx,
3175 int idx, hda_nid_t nid, int chs)
3177 struct sigmatel_spec *spec = codec->spec;
3181 if (!spec->check_volume_offset) {
3182 unsigned int caps, step, nums, db_scale;
3183 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3184 step = (caps & AC_AMPCAP_STEP_SIZE) >>
3185 AC_AMPCAP_STEP_SIZE_SHIFT;
3186 step = (step + 1) * 25; /* in .01dB unit */
3187 nums = (caps & AC_AMPCAP_NUM_STEPS) >>
3188 AC_AMPCAP_NUM_STEPS_SHIFT;
3189 db_scale = nums * step;
3190 /* if dB scale is over -64dB, and finer enough,
3191 * let's reduce it to half
3193 if (db_scale > 6400 && nums >= 0x1f)
3194 spec->volume_offset = nums / 2;
3195 spec->check_volume_offset = 1;
3198 sprintf(name, "%s Playback Volume", pfx);
3199 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, idx, name,
3200 HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT,
3201 spec->volume_offset));
3204 sprintf(name, "%s Playback Switch", pfx);
3205 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_MUTE, idx, name,
3206 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
3212 #define create_controls(codec, pfx, nid, chs) \
3213 create_controls_idx(codec, pfx, 0, nid, chs)
3215 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3217 if (spec->multiout.num_dacs > 4) {
3218 printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid);
3221 spec->multiout.dac_nids[spec->multiout.num_dacs] = nid;
3222 spec->multiout.num_dacs++;
3227 static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3230 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
3231 if (!spec->multiout.extra_out_nid[i]) {
3232 spec->multiout.extra_out_nid[i] = nid;
3236 printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid);
3240 /* Create output controls
3241 * The mixer elements are named depending on the given type (AUTO_PIN_XXX_OUT)
3243 static int create_multi_out_ctls(struct hda_codec *codec, int num_outs,
3244 const hda_nid_t *pins,
3245 const hda_nid_t *dac_nids,
3248 struct sigmatel_spec *spec = codec->spec;
3249 static const char *chname[4] = {
3250 "Front", "Surround", NULL /*CLFE*/, "Side"
3254 unsigned int wid_caps;
3256 for (i = 0; i < num_outs && i < ARRAY_SIZE(chname); i++) {
3257 if (type == AUTO_PIN_HP_OUT && !spec->hp_detect) {
3258 wid_caps = get_wcaps(codec, pins[i]);
3259 if (wid_caps & AC_WCAP_UNSOL_CAP)
3260 spec->hp_detect = 1;
3265 if (type != AUTO_PIN_HP_OUT && i == 2) {
3267 err = create_controls(codec, "Center", nid, 1);
3270 err = create_controls(codec, "LFE", nid, 2);
3274 wid_caps = get_wcaps(codec, nid);
3276 if (wid_caps & AC_WCAP_LR_SWAP) {
3277 err = stac92xx_add_control(spec,
3278 STAC_CTL_WIDGET_CLFE_SWITCH,
3279 "Swap Center/LFE Playback Switch", nid);
3289 case AUTO_PIN_HP_OUT:
3293 case AUTO_PIN_SPEAKER_OUT:
3302 err = create_controls_idx(codec, name, idx, nid, 3);
3310 static int stac92xx_add_capvol_ctls(struct hda_codec *codec, unsigned long vol,
3311 unsigned long sw, int idx)
3314 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx,
3315 "Capture Volume", vol);
3318 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_MUTE, idx,
3319 "Capture Switch", sw);
3325 /* add playback controls from the parsed DAC table */
3326 static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
3327 const struct auto_pin_cfg *cfg)
3329 struct sigmatel_spec *spec = codec->spec;
3334 err = create_multi_out_ctls(codec, cfg->line_outs, cfg->line_out_pins,
3335 spec->multiout.dac_nids,
3336 cfg->line_out_type);
3340 if (cfg->hp_outs > 1 && cfg->line_out_type == AUTO_PIN_LINE_OUT) {
3341 err = stac92xx_add_control(spec,
3342 STAC_CTL_WIDGET_HP_SWITCH,
3343 "Headphone as Line Out Switch",
3344 cfg->hp_pins[cfg->hp_outs - 1]);
3349 for (idx = AUTO_PIN_MIC; idx <= AUTO_PIN_FRONT_LINE; idx++) {
3350 nid = cfg->input_pins[idx];
3352 err = stac92xx_add_jack_mode_control(codec, nid, idx);
3361 /* add playback controls for Speaker and HP outputs */
3362 static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
3363 struct auto_pin_cfg *cfg)
3365 struct sigmatel_spec *spec = codec->spec;
3368 err = create_multi_out_ctls(codec, cfg->hp_outs, cfg->hp_pins,
3369 spec->hp_dacs, AUTO_PIN_HP_OUT);
3373 err = create_multi_out_ctls(codec, cfg->speaker_outs, cfg->speaker_pins,
3374 spec->speaker_dacs, AUTO_PIN_SPEAKER_OUT);
3381 /* labels for mono mux outputs */
3382 static const char *stac92xx_mono_labels[4] = {
3383 "DAC0", "DAC1", "Mixer", "DAC2"
3386 /* create mono mux for mono out on capable codecs */
3387 static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec)
3389 struct sigmatel_spec *spec = codec->spec;
3390 struct hda_input_mux *mono_mux = &spec->private_mono_mux;
3392 hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)];
3394 num_cons = snd_hda_get_connections(codec,
3397 HDA_MAX_NUM_INPUTS);
3398 if (num_cons <= 0 || num_cons > ARRAY_SIZE(stac92xx_mono_labels))
3401 for (i = 0; i < num_cons; i++) {
3402 mono_mux->items[mono_mux->num_items].label =
3403 stac92xx_mono_labels[i];
3404 mono_mux->items[mono_mux->num_items].index = i;
3405 mono_mux->num_items++;
3408 return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX,
3409 "Mono Mux", spec->mono_nid);
3412 /* labels for amp mux outputs */
3413 static const char *stac92xx_amp_labels[3] = {
3414 "Front Microphone", "Microphone", "Line In",
3417 /* create amp out controls mux on capable codecs */
3418 static int stac92xx_auto_create_amp_output_ctls(struct hda_codec *codec)
3420 struct sigmatel_spec *spec = codec->spec;
3421 struct hda_input_mux *amp_mux = &spec->private_amp_mux;
3424 for (i = 0; i < spec->num_amps; i++) {
3425 amp_mux->items[amp_mux->num_items].label =
3426 stac92xx_amp_labels[i];
3427 amp_mux->items[amp_mux->num_items].index = i;
3428 amp_mux->num_items++;
3431 if (spec->num_amps > 1) {
3432 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_MUX,
3433 "Amp Selector Capture Switch", 0);
3437 return stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_VOL,
3438 "Amp Capture Volume",
3439 HDA_COMPOSE_AMP_VAL(spec->amp_nids[0], 3, 0, HDA_INPUT));
3443 /* create PC beep volume controls */
3444 static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec,
3447 struct sigmatel_spec *spec = codec->spec;
3448 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3451 /* check for mute support for the the amp */
3452 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
3453 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3454 "PC Beep Playback Switch",
3455 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3460 /* check to see if there is volume support for the amp */
3461 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3462 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL,
3463 "PC Beep Playback Volume",
3464 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3471 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3472 #define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
3474 static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
3475 struct snd_ctl_elem_value *ucontrol)
3477 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3478 ucontrol->value.integer.value[0] = codec->beep->enabled;
3482 static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
3483 struct snd_ctl_elem_value *ucontrol)
3485 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3486 int enabled = !!ucontrol->value.integer.value[0];
3487 if (codec->beep->enabled != enabled) {
3488 codec->beep->enabled = enabled;
3494 static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = {
3495 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3496 .info = stac92xx_dig_beep_switch_info,
3497 .get = stac92xx_dig_beep_switch_get,
3498 .put = stac92xx_dig_beep_switch_put,
3501 static int stac92xx_beep_switch_ctl(struct hda_codec *codec)
3503 return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl,
3504 0, "PC Beep Playback Switch", 0);
3508 static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec)
3510 struct sigmatel_spec *spec = codec->spec;
3511 int wcaps, nid, i, err = 0;
3513 for (i = 0; i < spec->num_muxes; i++) {
3514 nid = spec->mux_nids[i];
3515 wcaps = get_wcaps(codec, nid);
3517 if (wcaps & AC_WCAP_OUT_AMP) {
3518 err = stac92xx_add_control_idx(spec,
3519 STAC_CTL_WIDGET_VOL, i, "Mux Capture Volume",
3520 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3528 static const char *stac92xx_spdif_labels[3] = {
3529 "Digital Playback", "Analog Mux 1", "Analog Mux 2",
3532 static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec)
3534 struct sigmatel_spec *spec = codec->spec;
3535 struct hda_input_mux *spdif_mux = &spec->private_smux;
3536 const char **labels = spec->spdif_labels;
3538 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
3540 num_cons = snd_hda_get_connections(codec,
3543 HDA_MAX_NUM_INPUTS);
3548 labels = stac92xx_spdif_labels;
3550 for (i = 0; i < num_cons; i++) {
3551 spdif_mux->items[spdif_mux->num_items].label = labels[i];
3552 spdif_mux->items[spdif_mux->num_items].index = i;
3553 spdif_mux->num_items++;
3559 /* labels for dmic mux inputs */
3560 static const char *stac92xx_dmic_labels[5] = {
3561 "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3562 "Digital Mic 3", "Digital Mic 4"
3565 static int get_connection_index(struct hda_codec *codec, hda_nid_t mux,
3568 hda_nid_t conn[HDA_MAX_NUM_INPUTS];
3571 nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
3572 for (i = 0; i < nums; i++)
3578 /* create playback/capture controls for input pins on dmic capable codecs */
3579 static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec,
3580 const struct auto_pin_cfg *cfg)
3582 struct sigmatel_spec *spec = codec->spec;
3583 struct hda_input_mux *dimux = &spec->private_dimux;
3587 dimux->items[dimux->num_items].label = stac92xx_dmic_labels[0];
3588 dimux->items[dimux->num_items].index = 0;
3591 for (i = 0; i < spec->num_dmics; i++) {
3595 unsigned int def_conf;
3597 def_conf = snd_hda_codec_get_pincfg(codec, spec->dmic_nids[i]);
3598 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3601 nid = spec->dmic_nids[i];
3602 index = get_connection_index(codec, spec->dmux_nids[0], nid);
3606 wcaps = get_wcaps(codec, nid) &
3607 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
3610 sprintf(name, "%s Capture Volume",
3611 stac92xx_dmic_labels[dimux->num_items]);
3613 err = stac92xx_add_control(spec,
3614 STAC_CTL_WIDGET_VOL,
3616 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3617 (wcaps & AC_WCAP_OUT_AMP) ?
3618 HDA_OUTPUT : HDA_INPUT));
3623 dimux->items[dimux->num_items].label =
3624 stac92xx_dmic_labels[dimux->num_items];
3625 dimux->items[dimux->num_items].index = index;
3632 static int check_mic_pin(struct hda_codec *codec, hda_nid_t nid,
3633 hda_nid_t *fixed, hda_nid_t *ext)
3639 cfg = snd_hda_codec_get_pincfg(codec, nid);
3640 switch (get_defcfg_connect(cfg)) {
3641 case AC_JACK_PORT_FIXED: