2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for SigmaTel STAC92xx
6 * Copyright (c) 2005 Embedded Alley Solutions, Inc.
7 * Matt Porter <mporter@embeddedalley.com>
9 * Based on patch_cmedia.c and patch_realtek.c
10 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
12 * This driver is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This driver is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/slab.h>
30 #include <linux/pci.h>
31 #include <linux/dmi.h>
32 #include <sound/core.h>
33 #include <sound/asoundef.h>
34 #include <sound/jack.h>
35 #include "hda_codec.h"
36 #include "hda_local.h"
80 STAC_92HD73XX_NO_JD, /* no jack-detection */
94 STAC_92HD83XXX_PWR_REF,
112 STAC_92HD71BXX_MODELS
138 STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter
139 * is given, one of the above models will be
140 * chosen according to the subsystem id. */
141 /* for backward compatibility */
158 STAC_D965_REF_NO_JD, /* no jack-detection */
175 struct sigmatel_event {
182 struct sigmatel_jack {
185 struct snd_jack *jack;
188 struct sigmatel_mic_route {
191 signed char dmux_idx;
194 struct sigmatel_spec {
195 struct snd_kcontrol_new *mixers[4];
196 unsigned int num_mixers;
199 unsigned int eapd_switch: 1;
200 unsigned int surr_switch: 1;
201 unsigned int alt_switch: 1;
202 unsigned int hp_detect: 1;
203 unsigned int spdif_mute: 1;
204 unsigned int check_volume_offset:1;
205 unsigned int auto_mic:1;
206 unsigned int linear_tone_beep:1;
209 unsigned int eapd_mask;
210 unsigned int gpio_mask;
211 unsigned int gpio_dir;
212 unsigned int gpio_data;
213 unsigned int gpio_mute;
214 unsigned int gpio_led;
215 unsigned int gpio_led_polarity;
218 unsigned int stream_delay;
220 /* analog loopback */
221 struct snd_kcontrol_new *aloopback_ctl;
222 unsigned char aloopback_mask;
223 unsigned char aloopback_shift;
225 /* power management */
226 unsigned int num_pwrs;
227 unsigned int *pwr_mapping;
232 struct snd_array jacks;
235 struct snd_array events;
238 struct hda_input_mux *mono_mux;
239 unsigned int cur_mmux;
240 struct hda_multi_out multiout;
241 hda_nid_t dac_nids[5];
242 hda_nid_t hp_dacs[5];
243 hda_nid_t speaker_dacs[5];
249 unsigned int num_adcs;
251 unsigned int num_muxes;
252 hda_nid_t *dmic_nids;
253 unsigned int num_dmics;
254 hda_nid_t *dmux_nids;
255 unsigned int num_dmuxes;
256 hda_nid_t *smux_nids;
257 unsigned int num_smuxes;
258 unsigned int num_analog_muxes;
260 unsigned long *capvols; /* amp-volume attr: HDA_COMPOSE_AMP_VAL() */
261 unsigned long *capsws; /* amp-mute attr: HDA_COMPOSE_AMP_VAL() */
262 unsigned int num_caps; /* number of capture volume/switch elements */
264 struct sigmatel_mic_route ext_mic;
265 struct sigmatel_mic_route int_mic;
266 struct sigmatel_mic_route dock_mic;
268 const char **spdif_labels;
270 hda_nid_t dig_in_nid;
272 hda_nid_t anabeep_nid;
273 hda_nid_t digbeep_nid;
277 unsigned int num_pins;
279 /* codec specific stuff */
280 struct hda_verb *init;
281 struct snd_kcontrol_new *mixer;
284 struct hda_input_mux *dinput_mux;
285 unsigned int cur_dmux[2];
286 struct hda_input_mux *input_mux;
287 unsigned int cur_mux[3];
288 struct hda_input_mux *sinput_mux;
289 unsigned int cur_smux[2];
290 unsigned int cur_amux;
292 unsigned int powerdown_adcs;
295 unsigned int io_switch[2];
296 unsigned int clfe_swap;
297 hda_nid_t line_switch; /* shared line-in for input and output */
298 hda_nid_t mic_switch; /* shared mic-in for input and output */
299 hda_nid_t hp_switch; /* NID of HP as line-out */
300 unsigned int aloopback;
302 struct hda_pcm pcm_rec[2]; /* PCM information */
304 /* dynamic controls and input_mux */
305 struct auto_pin_cfg autocfg;
306 struct snd_array kctls;
307 struct hda_input_mux private_dimux;
308 struct hda_input_mux private_imux;
309 struct hda_input_mux private_smux;
310 struct hda_input_mux private_mono_mux;
313 static hda_nid_t stac9200_adc_nids[1] = {
317 static hda_nid_t stac9200_mux_nids[1] = {
321 static hda_nid_t stac9200_dac_nids[1] = {
325 static hda_nid_t stac92hd73xx_pwr_nids[8] = {
326 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
330 static hda_nid_t stac92hd73xx_slave_dig_outs[2] = {
334 static hda_nid_t stac92hd73xx_adc_nids[2] = {
338 #define STAC92HD73XX_NUM_DMICS 2
339 static hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = {
343 #define STAC92HD73_DAC_COUNT 5
345 static hda_nid_t stac92hd73xx_mux_nids[2] = {
349 static hda_nid_t stac92hd73xx_dmux_nids[2] = {
353 static hda_nid_t stac92hd73xx_smux_nids[2] = {
357 #define STAC92HD73XX_NUM_CAPS 2
358 static unsigned long stac92hd73xx_capvols[] = {
359 HDA_COMPOSE_AMP_VAL(0x20, 3, 0, HDA_OUTPUT),
360 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT),
362 #define stac92hd73xx_capsws stac92hd73xx_capvols
364 #define STAC92HD83_DAC_COUNT 3
366 static hda_nid_t stac92hd83xxx_mux_nids[2] = {
370 static hda_nid_t stac92hd83xxx_adc_nids[2] = {
374 static hda_nid_t stac92hd83xxx_pwr_nids[4] = {
378 static hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
382 static unsigned int stac92hd83xxx_pwr_mapping[4] = {
383 0x03, 0x0c, 0x20, 0x40,
386 #define STAC92HD83XXX_NUM_DMICS 2
387 static hda_nid_t stac92hd83xxx_dmic_nids[STAC92HD83XXX_NUM_DMICS + 1] = {
391 #define STAC92HD83XXX_NUM_CAPS 2
392 static unsigned long stac92hd83xxx_capvols[] = {
393 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT),
394 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_OUTPUT),
396 #define stac92hd83xxx_capsws stac92hd83xxx_capvols
398 static hda_nid_t stac92hd71bxx_pwr_nids[3] = {
402 static hda_nid_t stac92hd71bxx_adc_nids[2] = {
406 static hda_nid_t stac92hd71bxx_mux_nids[2] = {
410 static hda_nid_t stac92hd71bxx_dmux_nids[2] = {
414 static hda_nid_t stac92hd71bxx_smux_nids[2] = {
418 #define STAC92HD71BXX_NUM_DMICS 2
419 static hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = {
423 static hda_nid_t stac92hd71bxx_slave_dig_outs[2] = {
427 #define STAC92HD71BXX_NUM_CAPS 2
428 static unsigned long stac92hd71bxx_capvols[] = {
429 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
430 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
432 #define stac92hd71bxx_capsws stac92hd71bxx_capvols
434 static hda_nid_t stac925x_adc_nids[1] = {
438 static hda_nid_t stac925x_mux_nids[1] = {
442 static hda_nid_t stac925x_dac_nids[1] = {
446 #define STAC925X_NUM_DMICS 1
447 static hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = {
451 static hda_nid_t stac925x_dmux_nids[1] = {
455 static unsigned long stac925x_capvols[] = {
456 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT),
458 static unsigned long stac925x_capsws[] = {
459 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
462 static hda_nid_t stac922x_adc_nids[2] = {
466 static hda_nid_t stac922x_mux_nids[2] = {
470 #define STAC922X_NUM_CAPS 2
471 static unsigned long stac922x_capvols[] = {
472 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_INPUT),
473 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
475 #define stac922x_capsws stac922x_capvols
477 static hda_nid_t stac927x_slave_dig_outs[2] = {
481 static hda_nid_t stac927x_adc_nids[3] = {
485 static hda_nid_t stac927x_mux_nids[3] = {
489 static hda_nid_t stac927x_smux_nids[1] = {
493 static hda_nid_t stac927x_dac_nids[6] = {
494 0x02, 0x03, 0x04, 0x05, 0x06, 0
497 static hda_nid_t stac927x_dmux_nids[1] = {
501 #define STAC927X_NUM_DMICS 2
502 static hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = {
506 #define STAC927X_NUM_CAPS 3
507 static unsigned long stac927x_capvols[] = {
508 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
509 HDA_COMPOSE_AMP_VAL(0x19, 3, 0, HDA_INPUT),
510 HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_INPUT),
512 static unsigned long stac927x_capsws[] = {
513 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT),
514 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
515 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
518 static const char *stac927x_spdif_labels[5] = {
519 "Digital Playback", "ADAT", "Analog Mux 1",
520 "Analog Mux 2", "Analog Mux 3"
523 static hda_nid_t stac9205_adc_nids[2] = {
527 static hda_nid_t stac9205_mux_nids[2] = {
531 static hda_nid_t stac9205_dmux_nids[1] = {
535 static hda_nid_t stac9205_smux_nids[1] = {
539 #define STAC9205_NUM_DMICS 2
540 static hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = {
544 #define STAC9205_NUM_CAPS 2
545 static unsigned long stac9205_capvols[] = {
546 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_INPUT),
547 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_INPUT),
549 static unsigned long stac9205_capsws[] = {
550 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
551 HDA_COMPOSE_AMP_VAL(0x1e, 3, 0, HDA_OUTPUT),
554 static hda_nid_t stac9200_pin_nids[8] = {
555 0x08, 0x09, 0x0d, 0x0e,
556 0x0f, 0x10, 0x11, 0x12,
559 static hda_nid_t stac925x_pin_nids[8] = {
560 0x07, 0x08, 0x0a, 0x0b,
561 0x0c, 0x0d, 0x10, 0x11,
564 static hda_nid_t stac922x_pin_nids[10] = {
565 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
566 0x0f, 0x10, 0x11, 0x15, 0x1b,
569 static hda_nid_t stac92hd73xx_pin_nids[13] = {
570 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
571 0x0f, 0x10, 0x11, 0x12, 0x13,
575 static hda_nid_t stac92hd83xxx_pin_nids[10] = {
576 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
577 0x0f, 0x10, 0x11, 0x1f, 0x20,
580 static hda_nid_t stac92hd88xxx_pin_nids[10] = {
581 0x0a, 0x0b, 0x0c, 0x0d,
582 0x0f, 0x11, 0x1f, 0x20,
585 #define STAC92HD71BXX_NUM_PINS 13
586 static hda_nid_t stac92hd71bxx_pin_nids_4port[STAC92HD71BXX_NUM_PINS] = {
587 0x0a, 0x0b, 0x0c, 0x0d, 0x00,
588 0x00, 0x14, 0x18, 0x19, 0x1e,
591 static hda_nid_t stac92hd71bxx_pin_nids_6port[STAC92HD71BXX_NUM_PINS] = {
592 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
593 0x0f, 0x14, 0x18, 0x19, 0x1e,
597 static hda_nid_t stac927x_pin_nids[14] = {
598 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
599 0x0f, 0x10, 0x11, 0x12, 0x13,
600 0x14, 0x21, 0x22, 0x23,
603 static hda_nid_t stac9205_pin_nids[12] = {
604 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
605 0x0f, 0x14, 0x16, 0x17, 0x18,
609 static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol,
610 struct snd_ctl_elem_info *uinfo)
612 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
613 struct sigmatel_spec *spec = codec->spec;
614 return snd_hda_input_mux_info(spec->dinput_mux, uinfo);
617 static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol,
618 struct snd_ctl_elem_value *ucontrol)
620 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
621 struct sigmatel_spec *spec = codec->spec;
622 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
624 ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx];
628 static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol,
629 struct snd_ctl_elem_value *ucontrol)
631 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
632 struct sigmatel_spec *spec = codec->spec;
633 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
635 return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol,
636 spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]);
639 static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol,
640 struct snd_ctl_elem_info *uinfo)
642 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
643 struct sigmatel_spec *spec = codec->spec;
644 return snd_hda_input_mux_info(spec->sinput_mux, uinfo);
647 static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol,
648 struct snd_ctl_elem_value *ucontrol)
650 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
651 struct sigmatel_spec *spec = codec->spec;
652 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
654 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
658 static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol,
659 struct snd_ctl_elem_value *ucontrol)
661 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
662 struct sigmatel_spec *spec = codec->spec;
663 struct hda_input_mux *smux = &spec->private_smux;
664 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
668 err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol,
669 spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]);
673 if (spec->spdif_mute) {
675 nid = spec->multiout.dig_out_nid;
677 nid = codec->slave_dig_outs[smux_idx - 1];
678 if (spec->cur_smux[smux_idx] == smux->num_items - 1)
682 /* un/mute SPDIF out */
683 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
689 static unsigned int stac92xx_vref_set(struct hda_codec *codec,
690 hda_nid_t nid, unsigned int new_vref)
694 pincfg = snd_hda_codec_read(codec, nid, 0,
695 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
698 pincfg &= ~(AC_PINCTL_VREFEN | AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
701 if (new_vref == AC_PINCTL_VREF_HIZ)
702 pincfg |= AC_PINCTL_OUT_EN;
704 pincfg |= AC_PINCTL_IN_EN;
706 error = snd_hda_codec_write_cache(codec, nid, 0,
707 AC_VERB_SET_PIN_WIDGET_CONTROL, pincfg);
714 static unsigned int stac92xx_vref_get(struct hda_codec *codec, hda_nid_t nid)
717 vref = snd_hda_codec_read(codec, nid, 0,
718 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
719 vref &= AC_PINCTL_VREFEN;
723 static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
725 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
726 struct sigmatel_spec *spec = codec->spec;
727 return snd_hda_input_mux_info(spec->input_mux, uinfo);
730 static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
732 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
733 struct sigmatel_spec *spec = codec->spec;
734 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
736 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
740 static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
742 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
743 struct sigmatel_spec *spec = codec->spec;
744 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
745 const struct hda_input_mux *imux = spec->input_mux;
746 unsigned int idx, prev_idx;
748 idx = ucontrol->value.enumerated.item[0];
749 if (idx >= imux->num_items)
750 idx = imux->num_items - 1;
751 prev_idx = spec->cur_mux[adc_idx];
754 if (idx < spec->num_analog_muxes) {
755 snd_hda_codec_write_cache(codec, spec->mux_nids[adc_idx], 0,
756 AC_VERB_SET_CONNECT_SEL,
757 imux->items[idx].index);
758 if (prev_idx >= spec->num_analog_muxes) {
759 imux = spec->dinput_mux;
761 snd_hda_codec_write_cache(codec,
762 spec->dmux_nids[adc_idx], 0,
763 AC_VERB_SET_CONNECT_SEL,
764 imux->items[0].index);
767 imux = spec->dinput_mux;
768 snd_hda_codec_write_cache(codec, spec->dmux_nids[adc_idx], 0,
769 AC_VERB_SET_CONNECT_SEL,
770 imux->items[idx - 1].index);
772 spec->cur_mux[adc_idx] = idx;
776 static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol,
777 struct snd_ctl_elem_info *uinfo)
779 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
780 struct sigmatel_spec *spec = codec->spec;
781 return snd_hda_input_mux_info(spec->mono_mux, uinfo);
784 static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol,
785 struct snd_ctl_elem_value *ucontrol)
787 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
788 struct sigmatel_spec *spec = codec->spec;
790 ucontrol->value.enumerated.item[0] = spec->cur_mmux;
794 static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol,
795 struct snd_ctl_elem_value *ucontrol)
797 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
798 struct sigmatel_spec *spec = codec->spec;
800 return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol,
801 spec->mono_nid, &spec->cur_mmux);
804 #define stac92xx_aloopback_info snd_ctl_boolean_mono_info
806 static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol,
807 struct snd_ctl_elem_value *ucontrol)
809 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
810 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
811 struct sigmatel_spec *spec = codec->spec;
813 ucontrol->value.integer.value[0] = !!(spec->aloopback &
814 (spec->aloopback_mask << idx));
818 static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol,
819 struct snd_ctl_elem_value *ucontrol)
821 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
822 struct sigmatel_spec *spec = codec->spec;
823 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
824 unsigned int dac_mode;
825 unsigned int val, idx_val;
827 idx_val = spec->aloopback_mask << idx;
828 if (ucontrol->value.integer.value[0])
829 val = spec->aloopback | idx_val;
831 val = spec->aloopback & ~idx_val;
832 if (spec->aloopback == val)
835 spec->aloopback = val;
837 /* Only return the bits defined by the shift value of the
838 * first two bytes of the mask
840 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
841 kcontrol->private_value & 0xFFFF, 0x0);
842 dac_mode >>= spec->aloopback_shift;
844 if (spec->aloopback & idx_val) {
845 snd_hda_power_up(codec);
848 snd_hda_power_down(codec);
849 dac_mode &= ~idx_val;
852 snd_hda_codec_write_cache(codec, codec->afg, 0,
853 kcontrol->private_value >> 16, dac_mode);
858 static struct hda_verb stac9200_core_init[] = {
859 /* set dac0mux for dac converter */
860 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
864 static struct hda_verb stac9200_eapd_init[] = {
865 /* set dac0mux for dac converter */
866 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
867 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
871 static struct hda_verb dell_eq_core_init[] = {
872 /* set master volume to max value without distortion
873 * and direct control */
874 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
878 static struct hda_verb stac92hd73xx_core_init[] = {
879 /* set master volume and direct control */
880 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
884 static struct hda_verb stac92hd83xxx_core_init[] = {
885 /* power state controls amps */
886 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
890 static struct hda_verb stac92hd71bxx_core_init[] = {
891 /* set master volume and direct control */
892 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
896 static struct hda_verb stac92hd71bxx_unmute_core_init[] = {
897 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
898 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
899 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
900 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
904 static struct hda_verb stac925x_core_init[] = {
905 /* set dac0mux for dac converter */
906 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
907 /* mute the master volume */
908 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
912 static struct hda_verb stac922x_core_init[] = {
913 /* set master volume and direct control */
914 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
918 static struct hda_verb d965_core_init[] = {
919 /* set master volume and direct control */
920 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
921 /* unmute node 0x1b */
922 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
923 /* select node 0x03 as DAC */
924 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
928 static struct hda_verb dell_3st_core_init[] = {
929 /* don't set delta bit */
930 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
931 /* unmute node 0x1b */
932 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
933 /* select node 0x03 as DAC */
934 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
938 static struct hda_verb stac927x_core_init[] = {
939 /* set master volume and direct control */
940 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
941 /* enable analog pc beep path */
942 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
946 static struct hda_verb stac927x_volknob_core_init[] = {
947 /* don't set delta bit */
948 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
949 /* enable analog pc beep path */
950 {0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
954 static struct hda_verb stac9205_core_init[] = {
955 /* set master volume and direct control */
956 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
957 /* enable analog pc beep path */
958 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
962 #define STAC_MONO_MUX \
964 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
965 .name = "Mono Mux", \
967 .info = stac92xx_mono_mux_enum_info, \
968 .get = stac92xx_mono_mux_enum_get, \
969 .put = stac92xx_mono_mux_enum_put, \
972 #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
974 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
975 .name = "Analog Loopback", \
977 .info = stac92xx_aloopback_info, \
978 .get = stac92xx_aloopback_get, \
979 .put = stac92xx_aloopback_put, \
980 .private_value = verb_read | (verb_write << 16), \
983 #define DC_BIAS(xname, idx, nid) \
985 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
988 .info = stac92xx_dc_bias_info, \
989 .get = stac92xx_dc_bias_get, \
990 .put = stac92xx_dc_bias_put, \
991 .private_value = nid, \
994 static struct snd_kcontrol_new stac9200_mixer[] = {
995 HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT),
996 HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT),
997 HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
998 HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
1002 static struct snd_kcontrol_new stac92hd73xx_6ch_loopback[] = {
1003 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
1007 static struct snd_kcontrol_new stac92hd73xx_8ch_loopback[] = {
1008 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
1012 static struct snd_kcontrol_new stac92hd73xx_10ch_loopback[] = {
1013 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
1018 static struct snd_kcontrol_new stac92hd71bxx_loopback[] = {
1019 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2)
1022 static struct snd_kcontrol_new stac925x_mixer[] = {
1023 HDA_CODEC_VOLUME("Master Playback Volume", 0x0e, 0, HDA_OUTPUT),
1024 HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT),
1028 static struct snd_kcontrol_new stac9205_loopback[] = {
1029 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
1033 static struct snd_kcontrol_new stac927x_loopback[] = {
1034 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
1038 static struct snd_kcontrol_new stac_dmux_mixer = {
1039 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1040 .name = "Digital Input Source",
1041 /* count set later */
1042 .info = stac92xx_dmux_enum_info,
1043 .get = stac92xx_dmux_enum_get,
1044 .put = stac92xx_dmux_enum_put,
1047 static struct snd_kcontrol_new stac_smux_mixer = {
1048 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1049 .name = "IEC958 Playback Source",
1050 /* count set later */
1051 .info = stac92xx_smux_enum_info,
1052 .get = stac92xx_smux_enum_get,
1053 .put = stac92xx_smux_enum_put,
1056 static const char *slave_vols[] = {
1057 "Front Playback Volume",
1058 "Surround Playback Volume",
1059 "Center Playback Volume",
1060 "LFE Playback Volume",
1061 "Side Playback Volume",
1062 "Headphone Playback Volume",
1063 "Speaker Playback Volume",
1067 static const char *slave_sws[] = {
1068 "Front Playback Switch",
1069 "Surround Playback Switch",
1070 "Center Playback Switch",
1071 "LFE Playback Switch",
1072 "Side Playback Switch",
1073 "Headphone Playback Switch",
1074 "Speaker Playback Switch",
1075 "IEC958 Playback Switch",
1079 static void stac92xx_free_kctls(struct hda_codec *codec);
1080 static int stac92xx_add_jack(struct hda_codec *codec, hda_nid_t nid, int type);
1082 static int stac92xx_build_controls(struct hda_codec *codec)
1084 struct sigmatel_spec *spec = codec->spec;
1085 struct auto_pin_cfg *cfg = &spec->autocfg;
1091 err = snd_hda_add_new_ctls(codec, spec->mixer);
1096 for (i = 0; i < spec->num_mixers; i++) {
1097 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1101 if (!spec->auto_mic && spec->num_dmuxes > 0 &&
1102 snd_hda_get_bool_hint(codec, "separate_dmux") == 1) {
1103 stac_dmux_mixer.count = spec->num_dmuxes;
1104 err = snd_hda_ctl_add(codec, 0,
1105 snd_ctl_new1(&stac_dmux_mixer, codec));
1109 if (spec->num_smuxes > 0) {
1110 int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid);
1111 struct hda_input_mux *smux = &spec->private_smux;
1112 /* check for mute support on SPDIF out */
1113 if (wcaps & AC_WCAP_OUT_AMP) {
1114 snd_hda_add_imux_item(smux, "Off", 0, NULL);
1115 spec->spdif_mute = 1;
1117 stac_smux_mixer.count = spec->num_smuxes;
1118 err = snd_hda_ctl_add(codec, 0,
1119 snd_ctl_new1(&stac_smux_mixer, codec));
1124 if (spec->multiout.dig_out_nid) {
1125 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
1128 err = snd_hda_create_spdif_share_sw(codec,
1132 spec->multiout.share_spdif = 1;
1134 if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) {
1135 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1140 /* if we have no master control, let's create it */
1141 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1142 unsigned int vmaster_tlv[4];
1143 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
1144 HDA_OUTPUT, vmaster_tlv);
1145 /* correct volume offset */
1146 vmaster_tlv[2] += vmaster_tlv[3] * spec->volume_offset;
1147 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1148 vmaster_tlv, slave_vols);
1152 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1153 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1159 if (spec->aloopback_ctl &&
1160 snd_hda_get_bool_hint(codec, "loopback") == 1) {
1161 err = snd_hda_add_new_ctls(codec, spec->aloopback_ctl);
1166 stac92xx_free_kctls(codec); /* no longer needed */
1168 /* create jack input elements */
1169 if (spec->hp_detect) {
1170 for (i = 0; i < cfg->hp_outs; i++) {
1171 int type = SND_JACK_HEADPHONE;
1172 nid = cfg->hp_pins[i];
1173 /* jack detection */
1174 if (cfg->hp_outs == i)
1175 type |= SND_JACK_LINEOUT;
1176 err = stac92xx_add_jack(codec, nid, type);
1181 for (i = 0; i < cfg->line_outs; i++) {
1182 err = stac92xx_add_jack(codec, cfg->line_out_pins[i],
1187 for (i = 0; i < cfg->num_inputs; i++) {
1188 nid = cfg->inputs[i].pin;
1189 err = stac92xx_add_jack(codec, nid, SND_JACK_MICROPHONE);
1197 static unsigned int ref9200_pin_configs[8] = {
1198 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
1199 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1202 static unsigned int gateway9200_m4_pin_configs[8] = {
1203 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1204 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1206 static unsigned int gateway9200_m4_2_pin_configs[8] = {
1207 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1208 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1212 STAC 9200 pin configs for
1217 static unsigned int dell9200_d21_pin_configs[8] = {
1218 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
1219 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1223 STAC 9200 pin configs for
1227 static unsigned int dell9200_d22_pin_configs[8] = {
1228 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1229 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
1233 STAC 9200 pin configs for
1234 102801C4 (Dell Dimension E310)
1241 static unsigned int dell9200_d23_pin_configs[8] = {
1242 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1243 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
1248 STAC 9200-32 pin configs for
1249 102801B5 (Dell Inspiron 630m)
1250 102801D8 (Dell Inspiron 640m)
1252 static unsigned int dell9200_m21_pin_configs[8] = {
1253 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1254 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
1258 STAC 9200-32 pin configs for
1259 102801C2 (Dell Latitude D620)
1261 102801CC (Dell Latitude D820)
1265 static unsigned int dell9200_m22_pin_configs[8] = {
1266 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
1267 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
1271 STAC 9200-32 pin configs for
1272 102801CE (Dell XPS M1710)
1273 102801CF (Dell Precision M90)
1275 static unsigned int dell9200_m23_pin_configs[8] = {
1276 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1277 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1281 STAC 9200-32 pin configs for
1284 102801CB (Dell Latitude 120L)
1287 static unsigned int dell9200_m24_pin_configs[8] = {
1288 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
1289 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
1293 STAC 9200-32 pin configs for
1294 102801BD (Dell Inspiron E1505n)
1298 static unsigned int dell9200_m25_pin_configs[8] = {
1299 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1300 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
1304 STAC 9200-32 pin configs for
1305 102801F5 (Dell Inspiron 1501)
1308 static unsigned int dell9200_m26_pin_configs[8] = {
1309 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
1310 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
1315 102801CD (Dell Inspiron E1705/9400)
1317 static unsigned int dell9200_m27_pin_configs[8] = {
1318 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1319 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
1322 static unsigned int oqo9200_pin_configs[8] = {
1323 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1324 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1328 static unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = {
1329 [STAC_REF] = ref9200_pin_configs,
1330 [STAC_9200_OQO] = oqo9200_pin_configs,
1331 [STAC_9200_DELL_D21] = dell9200_d21_pin_configs,
1332 [STAC_9200_DELL_D22] = dell9200_d22_pin_configs,
1333 [STAC_9200_DELL_D23] = dell9200_d23_pin_configs,
1334 [STAC_9200_DELL_M21] = dell9200_m21_pin_configs,
1335 [STAC_9200_DELL_M22] = dell9200_m22_pin_configs,
1336 [STAC_9200_DELL_M23] = dell9200_m23_pin_configs,
1337 [STAC_9200_DELL_M24] = dell9200_m24_pin_configs,
1338 [STAC_9200_DELL_M25] = dell9200_m25_pin_configs,
1339 [STAC_9200_DELL_M26] = dell9200_m26_pin_configs,
1340 [STAC_9200_DELL_M27] = dell9200_m27_pin_configs,
1341 [STAC_9200_M4] = gateway9200_m4_pin_configs,
1342 [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs,
1343 [STAC_9200_PANASONIC] = ref9200_pin_configs,
1346 static const char *stac9200_models[STAC_9200_MODELS] = {
1347 [STAC_AUTO] = "auto",
1349 [STAC_9200_OQO] = "oqo",
1350 [STAC_9200_DELL_D21] = "dell-d21",
1351 [STAC_9200_DELL_D22] = "dell-d22",
1352 [STAC_9200_DELL_D23] = "dell-d23",
1353 [STAC_9200_DELL_M21] = "dell-m21",
1354 [STAC_9200_DELL_M22] = "dell-m22",
1355 [STAC_9200_DELL_M23] = "dell-m23",
1356 [STAC_9200_DELL_M24] = "dell-m24",
1357 [STAC_9200_DELL_M25] = "dell-m25",
1358 [STAC_9200_DELL_M26] = "dell-m26",
1359 [STAC_9200_DELL_M27] = "dell-m27",
1360 [STAC_9200_M4] = "gateway-m4",
1361 [STAC_9200_M4_2] = "gateway-m4-2",
1362 [STAC_9200_PANASONIC] = "panasonic",
1365 static struct snd_pci_quirk stac9200_cfg_tbl[] = {
1366 /* SigmaTel reference board */
1367 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1368 "DFI LanParty", STAC_REF),
1369 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1370 "DFI LanParty", STAC_REF),
1371 /* Dell laptops have BIOS problem */
1372 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1373 "unknown Dell", STAC_9200_DELL_D21),
1374 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
1375 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1376 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1377 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1378 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1379 "unknown Dell", STAC_9200_DELL_D22),
1380 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1381 "unknown Dell", STAC_9200_DELL_D22),
1382 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
1383 "Dell Latitude D620", STAC_9200_DELL_M22),
1384 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1385 "unknown Dell", STAC_9200_DELL_D23),
1386 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1387 "unknown Dell", STAC_9200_DELL_D23),
1388 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1389 "unknown Dell", STAC_9200_DELL_M22),
1390 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1391 "unknown Dell", STAC_9200_DELL_M24),
1392 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1393 "unknown Dell", STAC_9200_DELL_M24),
1394 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
1395 "Dell Latitude 120L", STAC_9200_DELL_M24),
1396 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
1397 "Dell Latitude D820", STAC_9200_DELL_M22),
1398 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
1399 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
1400 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
1401 "Dell XPS M1710", STAC_9200_DELL_M23),
1402 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
1403 "Dell Precision M90", STAC_9200_DELL_M23),
1404 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1405 "unknown Dell", STAC_9200_DELL_M22),
1406 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1407 "unknown Dell", STAC_9200_DELL_M22),
1408 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
1409 "unknown Dell", STAC_9200_DELL_M22),
1410 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
1411 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1412 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1413 "unknown Dell", STAC_9200_DELL_D23),
1414 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1415 "unknown Dell", STAC_9200_DELL_D23),
1416 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1417 "unknown Dell", STAC_9200_DELL_D21),
1418 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1419 "unknown Dell", STAC_9200_DELL_D23),
1420 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1421 "unknown Dell", STAC_9200_DELL_D21),
1422 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1423 "unknown Dell", STAC_9200_DELL_M25),
1424 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1425 "unknown Dell", STAC_9200_DELL_M25),
1426 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
1427 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1428 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1429 "unknown Dell", STAC_9200_DELL_M26),
1431 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
1432 /* Gateway machines needs EAPD to be set on resume */
1433 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1434 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1435 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
1437 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
1441 static unsigned int ref925x_pin_configs[8] = {
1442 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
1443 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
1446 static unsigned int stac925xM1_pin_configs[8] = {
1447 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1448 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1451 static unsigned int stac925xM1_2_pin_configs[8] = {
1452 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1453 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1456 static unsigned int stac925xM2_pin_configs[8] = {
1457 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1458 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1461 static unsigned int stac925xM2_2_pin_configs[8] = {
1462 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1463 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1466 static unsigned int stac925xM3_pin_configs[8] = {
1467 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1468 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
1471 static unsigned int stac925xM5_pin_configs[8] = {
1472 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1473 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1476 static unsigned int stac925xM6_pin_configs[8] = {
1477 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1478 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
1481 static unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = {
1482 [STAC_REF] = ref925x_pin_configs,
1483 [STAC_M1] = stac925xM1_pin_configs,
1484 [STAC_M1_2] = stac925xM1_2_pin_configs,
1485 [STAC_M2] = stac925xM2_pin_configs,
1486 [STAC_M2_2] = stac925xM2_2_pin_configs,
1487 [STAC_M3] = stac925xM3_pin_configs,
1488 [STAC_M5] = stac925xM5_pin_configs,
1489 [STAC_M6] = stac925xM6_pin_configs,
1492 static const char *stac925x_models[STAC_925x_MODELS] = {
1493 [STAC_925x_AUTO] = "auto",
1496 [STAC_M1_2] = "m1-2",
1498 [STAC_M2_2] = "m2-2",
1504 static struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = {
1505 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1506 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1507 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1508 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
1509 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
1510 /* Not sure about the brand name for those */
1511 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1512 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1513 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1514 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
1518 static struct snd_pci_quirk stac925x_cfg_tbl[] = {
1519 /* SigmaTel reference board */
1520 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
1521 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
1522 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
1524 /* Default table for unknown ID */
1525 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1530 static unsigned int ref92hd73xx_pin_configs[13] = {
1531 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1532 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1533 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
1537 static unsigned int dell_m6_pin_configs[13] = {
1538 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
1539 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
1540 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1544 static unsigned int alienware_m17x_pin_configs[13] = {
1545 0x0321101f, 0x0321101f, 0x03a11020, 0x03014020,
1546 0x90170110, 0x4f0000f0, 0x4f0000f0, 0x4f0000f0,
1547 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1551 static unsigned int intel_dg45id_pin_configs[13] = {
1552 0x02214230, 0x02A19240, 0x01013214, 0x01014210,
1553 0x01A19250, 0x01011212, 0x01016211
1556 static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
1557 [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs,
1558 [STAC_DELL_M6_AMIC] = dell_m6_pin_configs,
1559 [STAC_DELL_M6_DMIC] = dell_m6_pin_configs,
1560 [STAC_DELL_M6_BOTH] = dell_m6_pin_configs,
1561 [STAC_DELL_EQ] = dell_m6_pin_configs,
1562 [STAC_ALIENWARE_M17X] = alienware_m17x_pin_configs,
1563 [STAC_92HD73XX_INTEL] = intel_dg45id_pin_configs,
1566 static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
1567 [STAC_92HD73XX_AUTO] = "auto",
1568 [STAC_92HD73XX_NO_JD] = "no-jd",
1569 [STAC_92HD73XX_REF] = "ref",
1570 [STAC_92HD73XX_INTEL] = "intel",
1571 [STAC_DELL_M6_AMIC] = "dell-m6-amic",
1572 [STAC_DELL_M6_DMIC] = "dell-m6-dmic",
1573 [STAC_DELL_M6_BOTH] = "dell-m6",
1574 [STAC_DELL_EQ] = "dell-eq",
1575 [STAC_ALIENWARE_M17X] = "alienware",
1578 static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
1579 /* SigmaTel reference board */
1580 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1581 "DFI LanParty", STAC_92HD73XX_REF),
1582 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1583 "DFI LanParty", STAC_92HD73XX_REF),
1584 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002,
1585 "Intel DG45ID", STAC_92HD73XX_INTEL),
1586 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003,
1587 "Intel DG45FC", STAC_92HD73XX_INTEL),
1588 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
1589 "Dell Studio 1535", STAC_DELL_M6_DMIC),
1590 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
1591 "unknown Dell", STAC_DELL_M6_DMIC),
1592 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
1593 "unknown Dell", STAC_DELL_M6_BOTH),
1594 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
1595 "unknown Dell", STAC_DELL_M6_BOTH),
1596 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
1597 "unknown Dell", STAC_DELL_M6_AMIC),
1598 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
1599 "unknown Dell", STAC_DELL_M6_AMIC),
1600 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
1601 "unknown Dell", STAC_DELL_M6_DMIC),
1602 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
1603 "unknown Dell", STAC_DELL_M6_DMIC),
1604 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
1605 "Dell Studio 1537", STAC_DELL_M6_DMIC),
1606 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
1607 "Dell Studio 17", STAC_DELL_M6_DMIC),
1608 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be,
1609 "Dell Studio 1555", STAC_DELL_M6_DMIC),
1610 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd,
1611 "Dell Studio 1557", STAC_DELL_M6_DMIC),
1612 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02fe,
1613 "Dell Studio XPS 1645", STAC_DELL_M6_BOTH),
1614 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0413,
1615 "Dell Studio 1558", STAC_DELL_M6_BOTH),
1619 static struct snd_pci_quirk stac92hd73xx_codec_id_cfg_tbl[] = {
1620 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a1,
1621 "Alienware M17x", STAC_ALIENWARE_M17X),
1625 static unsigned int ref92hd83xxx_pin_configs[10] = {
1626 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1627 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
1628 0x01451160, 0x98560170,
1631 static unsigned int dell_s14_pin_configs[10] = {
1632 0x0221403f, 0x0221101f, 0x02a19020, 0x90170110,
1633 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a60160,
1634 0x40f000f0, 0x40f000f0,
1637 static unsigned int hp_dv7_4000_pin_configs[10] = {
1638 0x03a12050, 0x0321201f, 0x40f000f0, 0x90170110,
1639 0x40f000f0, 0x40f000f0, 0x90170110, 0xd5a30140,
1640 0x40f000f0, 0x40f000f0,
1643 static unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = {
1644 [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs,
1645 [STAC_92HD83XXX_PWR_REF] = ref92hd83xxx_pin_configs,
1646 [STAC_DELL_S14] = dell_s14_pin_configs,
1647 [STAC_HP_DV7_4000] = hp_dv7_4000_pin_configs,
1650 static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
1651 [STAC_92HD83XXX_AUTO] = "auto",
1652 [STAC_92HD83XXX_REF] = "ref",
1653 [STAC_92HD83XXX_PWR_REF] = "mic-ref",
1654 [STAC_DELL_S14] = "dell-s14",
1655 [STAC_92HD83XXX_HP] = "hp",
1656 [STAC_HP_DV7_4000] = "hp-dv7-4000",
1659 static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
1660 /* SigmaTel reference board */
1661 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1662 "DFI LanParty", STAC_92HD83XXX_REF),
1663 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1664 "DFI LanParty", STAC_92HD83XXX_REF),
1665 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
1666 "unknown Dell", STAC_DELL_S14),
1667 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xff00, 0x3600,
1668 "HP", STAC_92HD83XXX_HP),
1672 static unsigned int ref92hd71bxx_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1673 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
1674 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
1675 0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
1679 static unsigned int dell_m4_1_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1680 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
1681 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
1682 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
1686 static unsigned int dell_m4_2_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1687 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1688 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
1689 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1693 static unsigned int dell_m4_3_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1694 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1695 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
1696 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1700 static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
1701 [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
1702 [STAC_DELL_M4_1] = dell_m4_1_pin_configs,
1703 [STAC_DELL_M4_2] = dell_m4_2_pin_configs,
1704 [STAC_DELL_M4_3] = dell_m4_3_pin_configs,
1705 [STAC_HP_M4] = NULL,
1706 [STAC_HP_DV4] = NULL,
1707 [STAC_HP_DV5] = NULL,
1708 [STAC_HP_HDX] = NULL,
1709 [STAC_HP_DV4_1222NR] = NULL,
1712 static const char *stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
1713 [STAC_92HD71BXX_AUTO] = "auto",
1714 [STAC_92HD71BXX_REF] = "ref",
1715 [STAC_DELL_M4_1] = "dell-m4-1",
1716 [STAC_DELL_M4_2] = "dell-m4-2",
1717 [STAC_DELL_M4_3] = "dell-m4-3",
1718 [STAC_HP_M4] = "hp-m4",
1719 [STAC_HP_DV4] = "hp-dv4",
1720 [STAC_HP_DV5] = "hp-dv5",
1721 [STAC_HP_HDX] = "hp-hdx",
1722 [STAC_HP_DV4_1222NR] = "hp-dv4-1222nr",
1725 static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1726 /* SigmaTel reference board */
1727 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1728 "DFI LanParty", STAC_92HD71BXX_REF),
1729 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1730 "DFI LanParty", STAC_92HD71BXX_REF),
1731 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fb,
1732 "HP dv4-1222nr", STAC_HP_DV4_1222NR),
1733 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720,
1735 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
1737 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
1738 "HP dv4-7", STAC_HP_DV4),
1739 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
1740 "HP dv4-7", STAC_HP_DV5),
1741 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
1742 "HP HDX", STAC_HP_HDX), /* HDX18 */
1743 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
1744 "HP mini 1000", STAC_HP_M4),
1745 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
1746 "HP HDX", STAC_HP_HDX), /* HDX16 */
1747 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620,
1748 "HP dv6", STAC_HP_DV5),
1749 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3061,
1750 "HP dv6", STAC_HP_DV5), /* HP dv6-1110ax */
1751 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
1753 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
1754 "unknown Dell", STAC_DELL_M4_1),
1755 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
1756 "unknown Dell", STAC_DELL_M4_1),
1757 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
1758 "unknown Dell", STAC_DELL_M4_1),
1759 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
1760 "unknown Dell", STAC_DELL_M4_1),
1761 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
1762 "unknown Dell", STAC_DELL_M4_1),
1763 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
1764 "unknown Dell", STAC_DELL_M4_1),
1765 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
1766 "unknown Dell", STAC_DELL_M4_1),
1767 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
1768 "unknown Dell", STAC_DELL_M4_2),
1769 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
1770 "unknown Dell", STAC_DELL_M4_2),
1771 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
1772 "unknown Dell", STAC_DELL_M4_2),
1773 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
1774 "unknown Dell", STAC_DELL_M4_2),
1775 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
1776 "unknown Dell", STAC_DELL_M4_3),
1780 static unsigned int ref922x_pin_configs[10] = {
1781 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1782 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
1783 0x40000100, 0x40000100,
1787 STAC 922X pin configs for
1794 static unsigned int dell_922x_d81_pin_configs[10] = {
1795 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1796 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1797 0x01813122, 0x400001f2,
1801 STAC 922X pin configs for
1805 static unsigned int dell_922x_d82_pin_configs[10] = {
1806 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1807 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1808 0x01813122, 0x400001f1,
1812 STAC 922X pin configs for
1815 static unsigned int dell_922x_m81_pin_configs[10] = {
1816 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1817 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1818 0x40C003f1, 0x405003f0,
1822 STAC 9221 A1 pin configs for
1823 102801D7 (Dell XPS M1210)
1825 static unsigned int dell_922x_m82_pin_configs[10] = {
1826 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1827 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
1828 0x508003f3, 0x405003f4,
1831 static unsigned int d945gtp3_pin_configs[10] = {
1832 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
1833 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1834 0x02a19120, 0x40000100,
1837 static unsigned int d945gtp5_pin_configs[10] = {
1838 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1839 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
1840 0x02a19320, 0x40000100,
1843 static unsigned int intel_mac_v1_pin_configs[10] = {
1844 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1845 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
1846 0x400000fc, 0x400000fb,
1849 static unsigned int intel_mac_v2_pin_configs[10] = {
1850 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1851 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
1852 0x400000fc, 0x400000fb,
1855 static unsigned int intel_mac_v3_pin_configs[10] = {
1856 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1857 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1858 0x400000fc, 0x400000fb,
1861 static unsigned int intel_mac_v4_pin_configs[10] = {
1862 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1863 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1864 0x400000fc, 0x400000fb,
1867 static unsigned int intel_mac_v5_pin_configs[10] = {
1868 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1869 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1870 0x400000fc, 0x400000fb,
1873 static unsigned int ecs202_pin_configs[10] = {
1874 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1875 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1876 0x9037012e, 0x40e000f2,
1879 static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
1880 [STAC_D945_REF] = ref922x_pin_configs,
1881 [STAC_D945GTP3] = d945gtp3_pin_configs,
1882 [STAC_D945GTP5] = d945gtp5_pin_configs,
1883 [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
1884 [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
1885 [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
1886 [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
1887 [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
1888 [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
1889 /* for backward compatibility */
1890 [STAC_MACMINI] = intel_mac_v3_pin_configs,
1891 [STAC_MACBOOK] = intel_mac_v5_pin_configs,
1892 [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
1893 [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
1894 [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
1895 [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
1896 [STAC_ECS_202] = ecs202_pin_configs,
1897 [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
1898 [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
1899 [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
1900 [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,
1903 static const char *stac922x_models[STAC_922X_MODELS] = {
1904 [STAC_922X_AUTO] = "auto",
1905 [STAC_D945_REF] = "ref",
1906 [STAC_D945GTP5] = "5stack",
1907 [STAC_D945GTP3] = "3stack",
1908 [STAC_INTEL_MAC_V1] = "intel-mac-v1",
1909 [STAC_INTEL_MAC_V2] = "intel-mac-v2",
1910 [STAC_INTEL_MAC_V3] = "intel-mac-v3",
1911 [STAC_INTEL_MAC_V4] = "intel-mac-v4",
1912 [STAC_INTEL_MAC_V5] = "intel-mac-v5",
1913 [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
1914 /* for backward compatibility */
1915 [STAC_MACMINI] = "macmini",
1916 [STAC_MACBOOK] = "macbook",
1917 [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1",
1918 [STAC_MACBOOK_PRO_V2] = "macbook-pro",
1919 [STAC_IMAC_INTEL] = "imac-intel",
1920 [STAC_IMAC_INTEL_20] = "imac-intel-20",
1921 [STAC_ECS_202] = "ecs202",
1922 [STAC_922X_DELL_D81] = "dell-d81",
1923 [STAC_922X_DELL_D82] = "dell-d82",
1924 [STAC_922X_DELL_M81] = "dell-m81",
1925 [STAC_922X_DELL_M82] = "dell-m82",
1928 static struct snd_pci_quirk stac922x_cfg_tbl[] = {
1929 /* SigmaTel reference board */
1930 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1931 "DFI LanParty", STAC_D945_REF),
1932 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1933 "DFI LanParty", STAC_D945_REF),
1934 /* Intel 945G based systems */
1935 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
1936 "Intel D945G", STAC_D945GTP3),
1937 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
1938 "Intel D945G", STAC_D945GTP3),
1939 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
1940 "Intel D945G", STAC_D945GTP3),
1941 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
1942 "Intel D945G", STAC_D945GTP3),
1943 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
1944 "Intel D945G", STAC_D945GTP3),
1945 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
1946 "Intel D945G", STAC_D945GTP3),
1947 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
1948 "Intel D945G", STAC_D945GTP3),
1949 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
1950 "Intel D945G", STAC_D945GTP3),
1951 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
1952 "Intel D945G", STAC_D945GTP3),
1953 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
1954 "Intel D945G", STAC_D945GTP3),
1955 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
1956 "Intel D945G", STAC_D945GTP3),
1957 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
1958 "Intel D945G", STAC_D945GTP3),
1959 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
1960 "Intel D945G", STAC_D945GTP3),
1961 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
1962 "Intel D945G", STAC_D945GTP3),
1963 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
1964 "Intel D945G", STAC_D945GTP3),
1965 /* Intel D945G 5-stack systems */
1966 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
1967 "Intel D945G", STAC_D945GTP5),
1968 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
1969 "Intel D945G", STAC_D945GTP5),
1970 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
1971 "Intel D945G", STAC_D945GTP5),
1972 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
1973 "Intel D945G", STAC_D945GTP5),
1974 /* Intel 945P based systems */
1975 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
1976 "Intel D945P", STAC_D945GTP3),
1977 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
1978 "Intel D945P", STAC_D945GTP3),
1979 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
1980 "Intel D945P", STAC_D945GTP3),
1981 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
1982 "Intel D945P", STAC_D945GTP3),
1983 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
1984 "Intel D945P", STAC_D945GTP3),
1985 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
1986 "Intel D945P", STAC_D945GTP5),
1988 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
1989 "Intel D945", STAC_D945_REF),
1991 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
1992 SND_PCI_QUIRK(0x8384, 0x7680,
1993 "Mac", STAC_INTEL_MAC_AUTO),
1995 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
1996 "unknown Dell", STAC_922X_DELL_D81),
1997 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
1998 "unknown Dell", STAC_922X_DELL_D81),
1999 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
2000 "unknown Dell", STAC_922X_DELL_D81),
2001 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
2002 "unknown Dell", STAC_922X_DELL_D82),
2003 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
2004 "unknown Dell", STAC_922X_DELL_M81),
2005 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
2006 "unknown Dell", STAC_922X_DELL_D82),
2007 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
2008 "unknown Dell", STAC_922X_DELL_D81),
2009 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
2010 "unknown Dell", STAC_922X_DELL_D81),
2011 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
2012 "Dell XPS M1210", STAC_922X_DELL_M82),
2013 /* ECS/PC Chips boards */
2014 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
2015 "ECS/PC chips", STAC_ECS_202),
2019 static unsigned int ref927x_pin_configs[14] = {
2020 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2021 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
2022 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
2023 0x01c42190, 0x40000100,
2026 static unsigned int d965_3st_pin_configs[14] = {
2027 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
2028 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
2029 0x40000100, 0x40000100, 0x40000100, 0x40000100,
2030 0x40000100, 0x40000100
2033 static unsigned int d965_5st_pin_configs[14] = {
2034 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2035 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2036 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2037 0x40000100, 0x40000100
2040 static unsigned int d965_5st_no_fp_pin_configs[14] = {
2041 0x40000100, 0x40000100, 0x0181304e, 0x01014010,
2042 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2043 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2044 0x40000100, 0x40000100
2047 static unsigned int dell_3st_pin_configs[14] = {
2048 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
2049 0x01111212, 0x01116211, 0x01813050, 0x01112214,
2050 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
2051 0x40c003fc, 0x40000100
2054 static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
2055 [STAC_D965_REF_NO_JD] = ref927x_pin_configs,
2056 [STAC_D965_REF] = ref927x_pin_configs,
2057 [STAC_D965_3ST] = d965_3st_pin_configs,
2058 [STAC_D965_5ST] = d965_5st_pin_configs,
2059 [STAC_D965_5ST_NO_FP] = d965_5st_no_fp_pin_configs,
2060 [STAC_DELL_3ST] = dell_3st_pin_configs,
2061 [STAC_DELL_BIOS] = NULL,
2062 [STAC_927X_VOLKNOB] = NULL,
2065 static const char *stac927x_models[STAC_927X_MODELS] = {
2066 [STAC_927X_AUTO] = "auto",
2067 [STAC_D965_REF_NO_JD] = "ref-no-jd",
2068 [STAC_D965_REF] = "ref",
2069 [STAC_D965_3ST] = "3stack",
2070 [STAC_D965_5ST] = "5stack",
2071 [STAC_D965_5ST_NO_FP] = "5stack-no-fp",
2072 [STAC_DELL_3ST] = "dell-3stack",
2073 [STAC_DELL_BIOS] = "dell-bios",
2074 [STAC_927X_VOLKNOB] = "volknob",
2077 static struct snd_pci_quirk stac927x_cfg_tbl[] = {
2078 /* SigmaTel reference board */
2079 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2080 "DFI LanParty", STAC_D965_REF),
2081 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2082 "DFI LanParty", STAC_D965_REF),
2083 /* Intel 946 based systems */
2084 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
2085 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
2086 /* 965 based 3 stack systems */
2087 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
2088 "Intel D965", STAC_D965_3ST),
2089 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
2090 "Intel D965", STAC_D965_3ST),
2091 /* Dell 3 stack systems */
2092 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
2093 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
2094 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
2095 /* Dell 3 stack systems with verb table in BIOS */
2096 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
2097 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_BIOS),
2098 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
2099 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS),
2100 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS),
2101 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
2102 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
2103 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
2104 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
2105 /* 965 based 5 stack systems */
2106 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
2107 "Intel D965", STAC_D965_5ST),
2108 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
2109 "Intel D965", STAC_D965_5ST),
2110 /* volume-knob fixes */
2111 SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB),
2115 static unsigned int ref9205_pin_configs[12] = {
2116 0x40000100, 0x40000100, 0x01016011, 0x01014010,
2117 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
2118 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
2122 STAC 9205 pin configs for
2129 10280228 (Dell Vostro 1500)
2130 10280229 (Dell Vostro 1700)
2132 static unsigned int dell_9205_m42_pin_configs[12] = {
2133 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2134 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2135 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2139 STAC 9205 pin configs for
2143 102801FF (Dell Precision M4300)
2148 static unsigned int dell_9205_m43_pin_configs[12] = {
2149 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2150 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2151 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2154 static unsigned int dell_9205_m44_pin_configs[12] = {
2155 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2156 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2157 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2160 static unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
2161 [STAC_9205_REF] = ref9205_pin_configs,
2162 [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
2163 [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
2164 [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
2165 [STAC_9205_EAPD] = NULL,
2168 static const char *stac9205_models[STAC_9205_MODELS] = {
2169 [STAC_9205_AUTO] = "auto",
2170 [STAC_9205_REF] = "ref",
2171 [STAC_9205_DELL_M42] = "dell-m42",
2172 [STAC_9205_DELL_M43] = "dell-m43",
2173 [STAC_9205_DELL_M44] = "dell-m44",
2174 [STAC_9205_EAPD] = "eapd",
2177 static struct snd_pci_quirk stac9205_cfg_tbl[] = {
2178 /* SigmaTel reference board */
2179 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2180 "DFI LanParty", STAC_9205_REF),
2181 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30,
2182 "SigmaTel", STAC_9205_REF),
2183 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2184 "DFI LanParty", STAC_9205_REF),
2186 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
2187 "unknown Dell", STAC_9205_DELL_M42),
2188 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
2189 "unknown Dell", STAC_9205_DELL_M42),
2190 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
2191 "Dell Precision", STAC_9205_DELL_M43),
2192 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
2193 "Dell Precision", STAC_9205_DELL_M43),
2194 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
2195 "Dell Precision", STAC_9205_DELL_M43),
2196 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
2197 "unknown Dell", STAC_9205_DELL_M42),
2198 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
2199 "unknown Dell", STAC_9205_DELL_M42),
2200 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
2201 "Dell Precision", STAC_9205_DELL_M43),
2202 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
2203 "Dell Precision M4300", STAC_9205_DELL_M43),
2204 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
2205 "unknown Dell", STAC_9205_DELL_M42),
2206 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
2207 "Dell Precision", STAC_9205_DELL_M43),
2208 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
2209 "Dell Precision", STAC_9205_DELL_M43),
2210 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
2211 "Dell Precision", STAC_9205_DELL_M43),
2212 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
2213 "Dell Inspiron", STAC_9205_DELL_M44),
2214 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
2215 "Dell Vostro 1500", STAC_9205_DELL_M42),
2216 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0229,
2217 "Dell Vostro 1700", STAC_9205_DELL_M42),
2219 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD),
2220 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
2224 static void stac92xx_set_config_regs(struct hda_codec *codec,
2225 unsigned int *pincfgs)
2228 struct sigmatel_spec *spec = codec->spec;
2233 for (i = 0; i < spec->num_pins; i++)
2234 if (spec->pin_nids[i] && pincfgs[i])
2235 snd_hda_codec_set_pincfg(codec, spec->pin_nids[i],
2240 * Analog playback callbacks
2242 static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
2243 struct hda_codec *codec,
2244 struct snd_pcm_substream *substream)
2246 struct sigmatel_spec *spec = codec->spec;
2247 if (spec->stream_delay)
2248 msleep(spec->stream_delay);
2249 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2253 static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2254 struct hda_codec *codec,
2255 unsigned int stream_tag,
2256 unsigned int format,
2257 struct snd_pcm_substream *substream)
2259 struct sigmatel_spec *spec = codec->spec;
2260 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
2263 static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2264 struct hda_codec *codec,
2265 struct snd_pcm_substream *substream)
2267 struct sigmatel_spec *spec = codec->spec;
2268 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2272 * Digital playback callbacks
2274 static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2275 struct hda_codec *codec,
2276 struct snd_pcm_substream *substream)
2278 struct sigmatel_spec *spec = codec->spec;
2279 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2282 static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2283 struct hda_codec *codec,
2284 struct snd_pcm_substream *substream)
2286 struct sigmatel_spec *spec = codec->spec;
2287 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2290 static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2291 struct hda_codec *codec,
2292 unsigned int stream_tag,
2293 unsigned int format,
2294 struct snd_pcm_substream *substream)
2296 struct sigmatel_spec *spec = codec->spec;
2297 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2298 stream_tag, format, substream);
2301 static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2302 struct hda_codec *codec,
2303 struct snd_pcm_substream *substream)
2305 struct sigmatel_spec *spec = codec->spec;
2306 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2311 * Analog capture callbacks
2313 static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2314 struct hda_codec *codec,
2315 unsigned int stream_tag,
2316 unsigned int format,
2317 struct snd_pcm_substream *substream)
2319 struct sigmatel_spec *spec = codec->spec;
2320 hda_nid_t nid = spec->adc_nids[substream->number];
2322 if (spec->powerdown_adcs) {
2324 snd_hda_codec_write(codec, nid, 0,
2325 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
2327 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
2331 static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2332 struct hda_codec *codec,
2333 struct snd_pcm_substream *substream)
2335 struct sigmatel_spec *spec = codec->spec;
2336 hda_nid_t nid = spec->adc_nids[substream->number];
2338 snd_hda_codec_cleanup_stream(codec, nid);
2339 if (spec->powerdown_adcs)
2340 snd_hda_codec_write(codec, nid, 0,
2341 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
2345 static struct hda_pcm_stream stac92xx_pcm_digital_playback = {
2349 /* NID is set in stac92xx_build_pcms */
2351 .open = stac92xx_dig_playback_pcm_open,
2352 .close = stac92xx_dig_playback_pcm_close,
2353 .prepare = stac92xx_dig_playback_pcm_prepare,
2354 .cleanup = stac92xx_dig_playback_pcm_cleanup
2358 static struct hda_pcm_stream stac92xx_pcm_digital_capture = {
2362 /* NID is set in stac92xx_build_pcms */
2365 static struct hda_pcm_stream stac92xx_pcm_analog_playback = {
2369 .nid = 0x02, /* NID to query formats and rates */
2371 .open = stac92xx_playback_pcm_open,
2372 .prepare = stac92xx_playback_pcm_prepare,
2373 .cleanup = stac92xx_playback_pcm_cleanup
2377 static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
2381 .nid = 0x06, /* NID to query formats and rates */
2383 .open = stac92xx_playback_pcm_open,
2384 .prepare = stac92xx_playback_pcm_prepare,
2385 .cleanup = stac92xx_playback_pcm_cleanup
2389 static struct hda_pcm_stream stac92xx_pcm_analog_capture = {
2392 /* NID + .substreams is set in stac92xx_build_pcms */
2394 .prepare = stac92xx_capture_pcm_prepare,
2395 .cleanup = stac92xx_capture_pcm_cleanup
2399 static int stac92xx_build_pcms(struct hda_codec *codec)
2401 struct sigmatel_spec *spec = codec->spec;
2402 struct hda_pcm *info = spec->pcm_rec;
2404 codec->num_pcms = 1;
2405 codec->pcm_info = info;
2407 info->name = "STAC92xx Analog";
2408 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
2409 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2410 spec->multiout.dac_nids[0];
2411 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
2412 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2413 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
2415 if (spec->alt_switch) {
2418 info->name = "STAC92xx Analog Alt";
2419 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
2422 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2425 info->name = "STAC92xx Digital";
2426 info->pcm_type = spec->autocfg.dig_out_type[0];
2427 if (spec->multiout.dig_out_nid) {
2428 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
2429 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2431 if (spec->dig_in_nid) {
2432 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
2433 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2440 static unsigned int stac92xx_get_default_vref(struct hda_codec *codec,
2443 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2444 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2445 if (pincap & AC_PINCAP_VREF_100)
2446 return AC_PINCTL_VREF_100;
2447 if (pincap & AC_PINCAP_VREF_80)
2448 return AC_PINCTL_VREF_80;
2449 if (pincap & AC_PINCAP_VREF_50)
2450 return AC_PINCTL_VREF_50;
2451 if (pincap & AC_PINCAP_VREF_GRD)
2452 return AC_PINCTL_VREF_GRD;
2456 static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
2459 snd_hda_codec_write_cache(codec, nid, 0,
2460 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2463 #define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2465 static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
2466 struct snd_ctl_elem_value *ucontrol)
2468 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2469 struct sigmatel_spec *spec = codec->spec;
2471 ucontrol->value.integer.value[0] = !!spec->hp_switch;
2475 static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid);
2477 static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
2478 struct snd_ctl_elem_value *ucontrol)
2480 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2481 struct sigmatel_spec *spec = codec->spec;
2482 int nid = kcontrol->private_value;
2484 spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0;
2486 /* check to be sure that the ports are upto date with
2489 stac_issue_unsol_event(codec, nid);
2494 static int stac92xx_dc_bias_info(struct snd_kcontrol *kcontrol,
2495 struct snd_ctl_elem_info *uinfo)
2498 static char *texts[] = {
2499 "Mic In", "Line In", "Line Out"
2502 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2503 struct sigmatel_spec *spec = codec->spec;
2504 hda_nid_t nid = kcontrol->private_value;
2506 if (nid == spec->mic_switch || nid == spec->line_switch)
2511 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2512 uinfo->value.enumerated.items = i;
2514 if (uinfo->value.enumerated.item >= i)
2515 uinfo->value.enumerated.item = i-1;
2516 strcpy(uinfo->value.enumerated.name,
2517 texts[uinfo->value.enumerated.item]);
2522 static int stac92xx_dc_bias_get(struct snd_kcontrol *kcontrol,
2523 struct snd_ctl_elem_value *ucontrol)
2525 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2526 hda_nid_t nid = kcontrol->private_value;
2527 unsigned int vref = stac92xx_vref_get(codec, nid);
2529 if (vref == stac92xx_get_default_vref(codec, nid))
2530 ucontrol->value.enumerated.item[0] = 0;
2531 else if (vref == AC_PINCTL_VREF_GRD)
2532 ucontrol->value.enumerated.item[0] = 1;
2533 else if (vref == AC_PINCTL_VREF_HIZ)
2534 ucontrol->value.enumerated.item[0] = 2;
2539 static int stac92xx_dc_bias_put(struct snd_kcontrol *kcontrol,
2540 struct snd_ctl_elem_value *ucontrol)
2542 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2543 unsigned int new_vref = 0;
2545 hda_nid_t nid = kcontrol->private_value;
2547 if (ucontrol->value.enumerated.item[0] == 0)
2548 new_vref = stac92xx_get_default_vref(codec, nid);
2549 else if (ucontrol->value.enumerated.item[0] == 1)
2550 new_vref = AC_PINCTL_VREF_GRD;
2551 else if (ucontrol->value.enumerated.item[0] == 2)
2552 new_vref = AC_PINCTL_VREF_HIZ;
2556 if (new_vref != stac92xx_vref_get(codec, nid)) {
2557 error = stac92xx_vref_set(codec, nid, new_vref);
2564 static int stac92xx_io_switch_info(struct snd_kcontrol *kcontrol,
2565 struct snd_ctl_elem_info *uinfo)
2567 static char *texts[2];
2568 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2569 struct sigmatel_spec *spec = codec->spec;
2571 if (kcontrol->private_value == spec->line_switch)
2572 texts[0] = "Line In";
2574 texts[0] = "Mic In";
2575 texts[1] = "Line Out";
2576 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2577 uinfo->value.enumerated.items = 2;
2580 if (uinfo->value.enumerated.item >= 2)
2581 uinfo->value.enumerated.item = 1;
2582 strcpy(uinfo->value.enumerated.name,
2583 texts[uinfo->value.enumerated.item]);
2588 static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2590 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2591 struct sigmatel_spec *spec = codec->spec;
2592 hda_nid_t nid = kcontrol->private_value;
2593 int io_idx = (nid == spec->mic_switch) ? 1 : 0;
2595 ucontrol->value.enumerated.item[0] = spec->io_switch[io_idx];
2599 static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2601 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2602 struct sigmatel_spec *spec = codec->spec;
2603 hda_nid_t nid = kcontrol->private_value;
2604 int io_idx = (nid == spec->mic_switch) ? 1 : 0;
2605 unsigned short val = !!ucontrol->value.enumerated.item[0];
2607 spec->io_switch[io_idx] = val;
2610 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
2612 unsigned int pinctl = AC_PINCTL_IN_EN;
2613 if (io_idx) /* set VREF for mic */
2614 pinctl |= stac92xx_get_default_vref(codec, nid);
2615 stac92xx_auto_set_pinctl(codec, nid, pinctl);
2618 /* check the auto-mute again: we need to mute/unmute the speaker
2619 * appropriately according to the pin direction
2621 if (spec->hp_detect)
2622 stac_issue_unsol_event(codec, nid);
2627 #define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2629 static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
2630 struct snd_ctl_elem_value *ucontrol)
2632 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2633 struct sigmatel_spec *spec = codec->spec;
2635 ucontrol->value.integer.value[0] = spec->clfe_swap;
2639 static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
2640 struct snd_ctl_elem_value *ucontrol)
2642 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2643 struct sigmatel_spec *spec = codec->spec;
2644 hda_nid_t nid = kcontrol->private_value & 0xff;
2645 unsigned int val = !!ucontrol->value.integer.value[0];
2647 if (spec->clfe_swap == val)
2650 spec->clfe_swap = val;
2652 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
2653 spec->clfe_swap ? 0x4 : 0x0);
2658 #define STAC_CODEC_HP_SWITCH(xname) \
2659 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2662 .info = stac92xx_hp_switch_info, \
2663 .get = stac92xx_hp_switch_get, \
2664 .put = stac92xx_hp_switch_put, \
2667 #define STAC_CODEC_IO_SWITCH(xname, xpval) \
2668 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2671 .info = stac92xx_io_switch_info, \
2672 .get = stac92xx_io_switch_get, \
2673 .put = stac92xx_io_switch_put, \
2674 .private_value = xpval, \
2677 #define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2678 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2681 .info = stac92xx_clfe_switch_info, \
2682 .get = stac92xx_clfe_switch_get, \
2683 .put = stac92xx_clfe_switch_put, \
2684 .private_value = xpval, \
2688 STAC_CTL_WIDGET_VOL,
2689 STAC_CTL_WIDGET_MUTE,
2690 STAC_CTL_WIDGET_MUTE_BEEP,
2691 STAC_CTL_WIDGET_MONO_MUX,
2692 STAC_CTL_WIDGET_HP_SWITCH,
2693 STAC_CTL_WIDGET_IO_SWITCH,
2694 STAC_CTL_WIDGET_CLFE_SWITCH,
2695 STAC_CTL_WIDGET_DC_BIAS
2698 static struct snd_kcontrol_new stac92xx_control_templates[] = {
2699 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2700 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2701 HDA_CODEC_MUTE_BEEP(NULL, 0, 0, 0),
2703 STAC_CODEC_HP_SWITCH(NULL),
2704 STAC_CODEC_IO_SWITCH(NULL, 0),
2705 STAC_CODEC_CLFE_SWITCH(NULL, 0),
2706 DC_BIAS(NULL, 0, 0),
2709 /* add dynamic controls */
2710 static struct snd_kcontrol_new *
2711 stac_control_new(struct sigmatel_spec *spec,
2712 struct snd_kcontrol_new *ktemp,
2714 unsigned int subdev)
2716 struct snd_kcontrol_new *knew;
2718 snd_array_init(&spec->kctls, sizeof(*knew), 32);
2719 knew = snd_array_new(&spec->kctls);
2723 knew->name = kstrdup(name, GFP_KERNEL);
2726 memset(knew, 0, sizeof(*knew));
2727 spec->kctls.alloced--;
2730 knew->subdevice = subdev;
2734 static int stac92xx_add_control_temp(struct sigmatel_spec *spec,
2735 struct snd_kcontrol_new *ktemp,
2736 int idx, const char *name,
2739 struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name,
2740 HDA_SUBDEV_AMP_FLAG);
2744 knew->private_value = val;
2748 static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec,
2749 int type, int idx, const char *name,
2752 return stac92xx_add_control_temp(spec,
2753 &stac92xx_control_templates[type],
2758 /* add dynamic controls */
2759 static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type,
2760 const char *name, unsigned long val)
2762 return stac92xx_add_control_idx(spec, type, 0, name, val);
2765 static struct snd_kcontrol_new stac_input_src_temp = {
2766 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2767 .name = "Input Source",
2768 .info = stac92xx_mux_enum_info,
2769 .get = stac92xx_mux_enum_get,
2770 .put = stac92xx_mux_enum_put,
2773 static inline int stac92xx_add_jack_mode_control(struct hda_codec *codec,
2774 hda_nid_t nid, int idx)
2776 int def_conf = snd_hda_codec_get_pincfg(codec, nid);
2778 struct sigmatel_spec *spec = codec->spec;
2781 if (snd_hda_get_input_pin_attr(def_conf) != INPUT_PIN_ATTR_INT) {
2782 if (stac92xx_get_default_vref(codec, nid) == AC_PINCTL_VREF_GRD
2783 && nid == spec->line_switch)
2784 control = STAC_CTL_WIDGET_IO_SWITCH;
2785 else if (snd_hda_query_pin_caps(codec, nid)
2786 & (AC_PINCAP_VREF_GRD << AC_PINCAP_VREF_SHIFT))
2787 control = STAC_CTL_WIDGET_DC_BIAS;
2788 else if (nid == spec->mic_switch)
2789 control = STAC_CTL_WIDGET_IO_SWITCH;
2793 strcpy(name, hda_get_input_pin_label(codec, nid, 1));
2794 return stac92xx_add_control(codec->spec, control,
2795 strcat(name, " Jack Mode"), nid);
2801 static int stac92xx_add_input_source(struct sigmatel_spec *spec)
2803 struct snd_kcontrol_new *knew;
2804 struct hda_input_mux *imux = &spec->private_imux;
2807 return 0; /* no need for input source */
2808 if (!spec->num_adcs || imux->num_items <= 1)
2809 return 0; /* no need for input source control */
2810 knew = stac_control_new(spec, &stac_input_src_temp,
2811 stac_input_src_temp.name, 0);
2814 knew->count = spec->num_adcs;
2818 /* check whether the line-input can be used as line-out */
2819 static hda_nid_t check_line_out_switch(struct hda_codec *codec)
2821 struct sigmatel_spec *spec = codec->spec;
2822 struct auto_pin_cfg *cfg = &spec->autocfg;
2824 unsigned int pincap;
2827 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2829 for (i = 0; i < cfg->num_inputs; i++) {
2830 if (cfg->inputs[i].type == AUTO_PIN_LINE_IN) {
2831 nid = cfg->inputs[i].pin;
2832 pincap = snd_hda_query_pin_caps(codec, nid);
2833 if (pincap & AC_PINCAP_OUT)
2840 static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid);
2842 /* check whether the mic-input can be used as line-out */
2843 static hda_nid_t check_mic_out_switch(struct hda_codec *codec, hda_nid_t *dac)
2845 struct sigmatel_spec *spec = codec->spec;
2846 struct auto_pin_cfg *cfg = &spec->autocfg;
2847 unsigned int def_conf, pincap;
2851 if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2853 for (i = 0; i < cfg->num_inputs; i++) {
2854 hda_nid_t nid = cfg->inputs[i].pin;
2855 if (cfg->inputs[i].type != AUTO_PIN_MIC)
2857 def_conf = snd_hda_codec_get_pincfg(codec, nid);
2858 /* some laptops have an internal analog microphone
2859 * which can't be used as a output */
2860 if (snd_hda_get_input_pin_attr(def_conf) != INPUT_PIN_ATTR_INT) {
2861 pincap = snd_hda_query_pin_caps(codec, nid);
2862 if (pincap & AC_PINCAP_OUT) {
2863 *dac = get_unassigned_dac(codec, nid);
2872 static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2876 for (i = 0; i < spec->multiout.num_dacs; i++) {
2877 if (spec->multiout.dac_nids[i] == nid)
2884 static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2887 if (is_in_dac_nids(spec, nid))
2889 for (i = 0; i < spec->autocfg.hp_outs; i++)
2890 if (spec->hp_dacs[i] == nid)
2892 for (i = 0; i < spec->autocfg.speaker_outs; i++)
2893 if (spec->speaker_dacs[i] == nid)
2898 static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid)
2900 struct sigmatel_spec *spec = codec->spec;
2902 hda_nid_t conn[HDA_MAX_CONNECTIONS];
2903 unsigned int wcaps, wtype;
2905 conn_len = snd_hda_get_connections(codec, nid, conn,
2906 HDA_MAX_CONNECTIONS);
2907 /* 92HD88: trace back up the link of nids to find the DAC */
2908 while (conn_len == 1 && (get_wcaps_type(get_wcaps(codec, conn[0]))
2909 != AC_WID_AUD_OUT)) {
2911 conn_len = snd_hda_get_connections(codec, nid, conn,
2912 HDA_MAX_CONNECTIONS);
2914 for (j = 0; j < conn_len; j++) {
2915 wcaps = get_wcaps(codec, conn[j]);
2916 wtype = get_wcaps_type(wcaps);
2917 /* we check only analog outputs */
2918 if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL))
2920 /* if this route has a free DAC, assign it */
2921 if (!check_all_dac_nids(spec, conn[j])) {
2923 /* select this DAC in the pin's input mux */
2924 snd_hda_codec_write_cache(codec, nid, 0,
2925 AC_VERB_SET_CONNECT_SEL, j);
2930 /* if all DACs are already assigned, connect to the primary DAC */
2932 for (j = 0; j < conn_len; j++) {
2933 if (conn[j] == spec->multiout.dac_nids[0]) {
2934 snd_hda_codec_write_cache(codec, nid, 0,
2935 AC_VERB_SET_CONNECT_SEL, j);
2943 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2944 static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
2947 * Fill in the dac_nids table from the parsed pin configuration
2948 * This function only works when every pin in line_out_pins[]
2949 * contains atleast one DAC in its connection list. Some 92xx
2950 * codecs are not connected directly to a DAC, such as the 9200
2951 * and 9202/925x. For those, dac_nids[] must be hard-coded.
2953 static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec)
2955 struct sigmatel_spec *spec = codec->spec;
2956 struct auto_pin_cfg *cfg = &spec->autocfg;
2960 for (i = 0; i < cfg->line_outs; i++) {
2961 nid = cfg->line_out_pins[i];
2962 dac = get_unassigned_dac(codec, nid);
2964 if (spec->multiout.num_dacs > 0) {
2965 /* we have already working output pins,
2966 * so let's drop the broken ones again
2968 cfg->line_outs = spec->multiout.num_dacs;
2971 /* error out, no available DAC found */
2973 "%s: No available DAC for pin 0x%x\n",
2977 add_spec_dacs(spec, dac);
2980 for (i = 0; i < cfg->hp_outs; i++) {
2981 nid = cfg->hp_pins[i];
2982 dac = get_unassigned_dac(codec, nid);
2984 if (!spec->multiout.hp_nid)
2985 spec->multiout.hp_nid = dac;
2987 add_spec_extra_dacs(spec, dac);
2989 spec->hp_dacs[i] = dac;
2992 for (i = 0; i < cfg->speaker_outs; i++) {
2993 nid = cfg->speaker_pins[i];
2994 dac = get_unassigned_dac(codec, nid);
2996 add_spec_extra_dacs(spec, dac);
2997 spec->speaker_dacs[i] = dac;
3000 /* add line-in as output */
3001 nid = check_line_out_switch(codec);
3003 dac = get_unassigned_dac(codec, nid);
3005 snd_printdd("STAC: Add line-in 0x%x as output %d\n",
3006 nid, cfg->line_outs);
3007 cfg->line_out_pins[cfg->line_outs] = nid;
3009 spec->line_switch = nid;
3010 add_spec_dacs(spec, dac);
3013 /* add mic as output */
3014 nid = check_mic_out_switch(codec, &dac);
3016 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
3017 nid, cfg->line_outs);
3018 cfg->line_out_pins[cfg->line_outs] = nid;
3020 spec->mic_switch = nid;
3021 add_spec_dacs(spec, dac);
3024 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3025 spec->multiout.num_dacs,
3026 spec->multiout.dac_nids[0],
3027 spec->multiout.dac_nids[1],
3028 spec->multiout.dac_nids[2],
3029 spec->multiout.dac_nids[3],
3030 spec->multiout.dac_nids[4]);
3035 /* create volume control/switch for the given prefx type */
3036 static int create_controls_idx(struct hda_codec *codec, const char *pfx,
3037 int idx, hda_nid_t nid, int chs)
3039 struct sigmatel_spec *spec = codec->spec;
3043 if (!spec->check_volume_offset) {
3044 unsigned int caps, step, nums, db_scale;
3045 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3046 step = (caps & AC_AMPCAP_STEP_SIZE) >>
3047 AC_AMPCAP_STEP_SIZE_SHIFT;
3048 step = (step + 1) * 25; /* in .01dB unit */
3049 nums = (caps & AC_AMPCAP_NUM_STEPS) >>
3050 AC_AMPCAP_NUM_STEPS_SHIFT;
3051 db_scale = nums * step;
3052 /* if dB scale is over -64dB, and finer enough,
3053 * let's reduce it to half
3055 if (db_scale > 6400 && nums >= 0x1f)
3056 spec->volume_offset = nums / 2;
3057 spec->check_volume_offset = 1;
3060 sprintf(name, "%s Playback Volume", pfx);
3061 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, idx, name,
3062 HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT,
3063 spec->volume_offset));
3066 sprintf(name, "%s Playback Switch", pfx);
3067 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_MUTE, idx, name,
3068 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
3074 #define create_controls(codec, pfx, nid, chs) \
3075 create_controls_idx(codec, pfx, 0, nid, chs)
3077 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3079 if (spec->multiout.num_dacs > 4) {
3080 printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid);
3083 spec->multiout.dac_nids[spec->multiout.num_dacs] = nid;
3084 spec->multiout.num_dacs++;
3089 static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3092 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
3093 if (!spec->multiout.extra_out_nid[i]) {
3094 spec->multiout.extra_out_nid[i] = nid;
3098 printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid);
3102 /* Create output controls
3103 * The mixer elements are named depending on the given type (AUTO_PIN_XXX_OUT)
3105 static int create_multi_out_ctls(struct hda_codec *codec, int num_outs,
3106 const hda_nid_t *pins,
3107 const hda_nid_t *dac_nids,
3110 struct sigmatel_spec *spec = codec->spec;
3111 static const char *chname[4] = {
3112 "Front", "Surround", NULL /*CLFE*/, "Side"
3116 unsigned int wid_caps;
3118 for (i = 0; i < num_outs && i < ARRAY_SIZE(chname); i++) {
3119 if (type == AUTO_PIN_HP_OUT && !spec->hp_detect) {
3120 wid_caps = get_wcaps(codec, pins[i]);
3121 if (wid_caps & AC_WCAP_UNSOL_CAP)
3122 spec->hp_detect = 1;
3127 if (type != AUTO_PIN_HP_OUT && i == 2) {
3129 err = create_controls(codec, "Center", nid, 1);
3132 err = create_controls(codec, "LFE", nid, 2);
3136 wid_caps = get_wcaps(codec, nid);
3138 if (wid_caps & AC_WCAP_LR_SWAP) {
3139 err = stac92xx_add_control(spec,
3140 STAC_CTL_WIDGET_CLFE_SWITCH,
3141 "Swap Center/LFE Playback Switch", nid);
3151 case AUTO_PIN_HP_OUT:
3155 case AUTO_PIN_SPEAKER_OUT:
3164 err = create_controls_idx(codec, name, idx, nid, 3);
3172 static int stac92xx_add_capvol_ctls(struct hda_codec *codec, unsigned long vol,
3173 unsigned long sw, int idx)
3176 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx,
3177 "Capture Volume", vol);
3180 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_MUTE, idx,
3181 "Capture Switch", sw);
3187 /* add playback controls from the parsed DAC table */
3188 static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
3189 const struct auto_pin_cfg *cfg)
3191 struct sigmatel_spec *spec = codec->spec;
3196 err = create_multi_out_ctls(codec, cfg->line_outs, cfg->line_out_pins,
3197 spec->multiout.dac_nids,
3198 cfg->line_out_type);
3202 if (cfg->hp_outs > 1 && cfg->line_out_type == AUTO_PIN_LINE_OUT) {
3203 err = stac92xx_add_control(spec,
3204 STAC_CTL_WIDGET_HP_SWITCH,
3205 "Headphone as Line Out Switch",
3206 cfg->hp_pins[cfg->hp_outs - 1]);
3211 for (idx = 0; idx < cfg->num_inputs; idx++) {
3212 if (cfg->inputs[idx].type > AUTO_PIN_LINE_IN)
3214 nid = cfg->inputs[idx].pin;
3215 err = stac92xx_add_jack_mode_control(codec, nid, idx);
3223 /* add playback controls for Speaker and HP outputs */
3224 static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
3225 struct auto_pin_cfg *cfg)
3227 struct sigmatel_spec *spec = codec->spec;
3230 err = create_multi_out_ctls(codec, cfg->hp_outs, cfg->hp_pins,
3231 spec->hp_dacs, AUTO_PIN_HP_OUT);
3235 err = create_multi_out_ctls(codec, cfg->speaker_outs, cfg->speaker_pins,
3236 spec->speaker_dacs, AUTO_PIN_SPEAKER_OUT);
3243 /* labels for mono mux outputs */
3244 static const char *stac92xx_mono_labels[4] = {
3245 "DAC0", "DAC1", "Mixer", "DAC2"
3248 /* create mono mux for mono out on capable codecs */
3249 static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec)
3251 struct sigmatel_spec *spec = codec->spec;
3252 struct hda_input_mux *mono_mux = &spec->private_mono_mux;
3254 hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)];
3256 num_cons = snd_hda_get_connections(codec,
3259 HDA_MAX_NUM_INPUTS);
3260 if (num_cons <= 0 || num_cons > ARRAY_SIZE(stac92xx_mono_labels))
3263 for (i = 0; i < num_cons; i++)
3264 snd_hda_add_imux_item(mono_mux, stac92xx_mono_labels[i], i,
3267 return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX,
3268 "Mono Mux", spec->mono_nid);
3271 /* create PC beep volume controls */
3272 static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec,
3275 struct sigmatel_spec *spec = codec->spec;
3276 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3277 int err, type = STAC_CTL_WIDGET_MUTE_BEEP;
3279 if (spec->anabeep_nid == nid)
3280 type = STAC_CTL_WIDGET_MUTE;
3282 /* check for mute support for the the amp */
3283 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
3284 err = stac92xx_add_control(spec, type,
3285 "Beep Playback Switch",
3286 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3291 /* check to see if there is volume support for the amp */
3292 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3293 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL,
3294 "Beep Playback Volume",
3295 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3302 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3303 #define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
3305 static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
3306 struct snd_ctl_elem_value *ucontrol)
3308 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3309 ucontrol->value.integer.value[0] = codec->beep->enabled;
3313 static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
3314 struct snd_ctl_elem_value *ucontrol)
3316 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3317 return snd_hda_enable_beep_device(codec, ucontrol->value.integer.value[0]);
3320 static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = {
3321 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3322 .info = stac92xx_dig_beep_switch_info,
3323 .get = stac92xx_dig_beep_switch_get,
3324 .put = stac92xx_dig_beep_switch_put,
3327 static int stac92xx_beep_switch_ctl(struct hda_codec *codec)
3329 return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl,
3330 0, "Beep Playback Switch", 0);
3334 static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec)
3336 struct sigmatel_spec *spec = codec->spec;
3339 for (i = 0; i < spec->num_muxes; i++) {
3344 nid = spec->mux_nids[i];
3345 wcaps = get_wcaps(codec, nid);
3346 if (!(wcaps & AC_WCAP_OUT_AMP))
3349 /* check whether already the same control was created as
3350 * normal Capture Volume.
3352 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3353 for (j = 0; j < spec->num_caps; j++) {
3354 if (spec->capvols[j] == val)
3357 if (j < spec->num_caps)
3360 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, i,
3361 "Mux Capture Volume", val);
3368 static const char *stac92xx_spdif_labels[3] = {
3369 "Digital Playback", "Analog Mux 1", "Analog Mux 2",
3372 static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec)
3374 struct sigmatel_spec *spec = codec->spec;
3375 struct hda_input_mux *spdif_mux = &spec->private_smux;
3376 const char **labels = spec->spdif_labels;
3378 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
3380 num_cons = snd_hda_get_connections(codec,
3383 HDA_MAX_NUM_INPUTS);
3388 labels = stac92xx_spdif_labels;
3390 for (i = 0; i < num_cons; i++)
3391 snd_hda_add_imux_item(spdif_mux, labels[i], i, NULL);
3396 /* labels for dmic mux inputs */
3397 static const char *stac92xx_dmic_labels[5] = {
3398 "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3399 "Digital Mic 3", "Digital Mic 4"
3402 static int get_connection_index(struct hda_codec *codec, hda_nid_t mux,
3405 hda_nid_t conn[HDA_MAX_NUM_INPUTS];
3408 nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
3409 for (i = 0; i < nums; i++)
3415 /* create a volume assigned to the given pin (only if supported) */
3416 /* return 1 if the volume control is created */
3417 static int create_elem_capture_vol(struct hda_codec *codec, hda_nid_t nid,
3418 const char *label, int idx, int direction)
3420 unsigned int caps, nums;
3424 if (direction == HDA_OUTPUT)
3425 caps = AC_WCAP_OUT_AMP;
3427 caps = AC_WCAP_IN_AMP;
3428 if (!(get_wcaps(codec, nid) & caps))
3430 caps = query_amp_caps(codec, nid, direction);
3431 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
3434 snprintf(name, sizeof(name), "%s Capture Volume", label);
3435 err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx, name,
3436 HDA_COMPOSE_AMP_VAL(nid, 3, 0, direction));
3442 /* create playback/capture controls for input pins on dmic capable codecs */
3443 static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec,
3444 const struct auto_pin_cfg *cfg)
3446 struct sigmatel_spec *spec = codec->spec;
3447 struct hda_input_mux *imux = &spec->private_imux;
3448 struct hda_input_mux *dimux = &spec->private_dimux;
3450 unsigned int def_conf;
3452 snd_hda_add_imux_item(dimux, stac92xx_dmic_labels[0], 0, NULL);
3454 for (i = 0; i < spec->num_dmics; i++) {
3456 int index, type_idx;
3459 nid = spec->dmic_nids[i];
3460 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
3462 def_conf = snd_hda_codec_get_pincfg(codec, nid);
3463 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3466 index = get_connection_index(codec, spec->dmux_nids[0], nid);
3470 label = hda_get_input_pin_label(codec, nid, 1);
3471 snd_hda_add_imux_item(dimux, label, index, &type_idx);
3473 err = create_elem_capture_vol(codec, nid, label, type_idx,
3478 err = create_elem_capture_vol(codec, nid, label,
3479 type_idx, HDA_OUTPUT);
3484 if (snd_hda_get_bool_hint(codec, "separate_dmux") != 1)
3485 snd_hda_add_imux_item(imux, label, index, NULL);
3491 static int check_mic_pin(struct hda_codec *codec, hda_nid_t nid,
3492 hda_nid_t *fixed, hda_nid_t *ext, hda_nid_t *dock)
3498 cfg = snd_hda_codec_get_pincfg(codec, nid);
3499 switch (snd_hda_get_input_pin_attr(cfg)) {
3500 case INPUT_PIN_ATTR_INT:
3502 return 1; /* already occupied */
3505 case INPUT_PIN_ATTR_UNUSED:
3507 case INPUT_PIN_ATTR_DOCK:
3509 return 1; /* already occupied */
3514 return 1; /* already occupied */
3521 static int set_mic_route(struct hda_codec *codec,
3522 struct sigmatel_mic_route *mic,
3525 struct sigmatel_spec *spec = codec->spec;
3526 struct auto_pin_cfg *cfg = &spec->autocfg;
3532 for (i = 0; i < cfg->num_inputs; i++) {
3533 if (pin == cfg->inputs[i].pin)
3536 if (i < cfg->num_inputs && cfg->inputs[i].type == AUTO_PIN_MIC) {
3538 i = get_connection_index(codec, spec->mux_nids[0], pin);
3543 if (spec->dmux_nids)
3544 mic->dmux_idx = get_connection_index(codec,
3547 } else if (spec->dmux_nids) {
3549 i = get_connection_index(codec, spec->dmux_nids[0], pin);
3555 mic->mux_idx = get_connection_index(codec,
3557 spec->dmux_nids[0]);
3562 /* return non-zero if the device is for automatic mic switch */
3563 static int stac_check_auto_mic(struct hda_codec *codec)
3565 struct sigmatel_spec *spec = codec->spec;
3566 struct auto_pin_cfg *cfg = &spec->autocfg;
3567 hda_nid_t fixed, ext, dock;
3570 for (i = 0; i < cfg->num_inputs; i++) {
3571 if (cfg->inputs[i].type >= AUTO_PIN_LINE_IN)
3572 return 0; /* must be exclusively mics */
3574 fixed = ext = dock = 0;
3575 for (i = 0; i < cfg->num_inputs; i++)
3576 if (check_mic_pin(codec, cfg->inputs[i].pin,
3577 &fixed, &ext, &dock))
3579 for (i = 0; i < spec->num_dmics; i++)
3580 if (check_mic_pin(codec, spec->dmic_nids[i],
3581 &fixed, &ext, &dock))
3583 if (!fixed && !ext && !dock)
3584 return 0; /* no input to switch */
3585 if (!(get_wcaps(codec, ext) & AC_WCAP_UNSOL_CAP))
3586 return 0; /* no unsol support */
3587 if (set_mic_route(codec, &spec->ext_mic, ext) ||
3588 set_mic_route(codec, &spec->int_mic, fixed) ||
3589 set_mic_route(codec, &spec->dock_mic, dock))
3590 return 0; /* something is wrong */
3594 /* create playback/capture controls for input pins */
3595 static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
3597 struct sigmatel_spec *spec = codec->spec;
3598 struct hda_input_mux *imux = &spec->private_imux;
3602 for (i = 0; i < cfg->num_inputs; i++) {
3603 hda_nid_t nid = cfg->inputs[i].pin;
3604 int index, err, type_idx;
3607 for (j = 0; j < spec->num_muxes; j++) {
3608 index = get_connection_index(codec, spec->mux_nids[j],
3616 label = hda_get_autocfg_input_label(codec, cfg, i);
3617 snd_hda_add_imux_item(imux, label, index, &type_idx);
3619 err = create_elem_capture_vol(codec, nid,
3625 spec->num_analog_muxes = imux->num_items;
3627 if (imux->num_items) {
3629 * Set the current input for the muxes.
3630 * The STAC9221 has two input muxes with identical source
3631 * NID lists. Hopefully this won't get confused.
3633 for (i = 0; i < spec->num_muxes; i++) {
3634 snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0,
3635 AC_VERB_SET_CONNECT_SEL,
3636 imux->items[0].index);
3643 static void stac92xx_auto_init_multi_out(struct hda_codec *codec)
3645 struct sigmatel_spec *spec = codec->spec;
3648 for (i = 0; i < spec->autocfg.line_outs; i++) {
3649 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3650 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3654 static void stac92xx_auto_init_hp_out(struct hda_codec *codec)
3656 struct sigmatel_spec *spec = codec->spec;
3659 for (i = 0; i < spec->autocfg.hp_outs; i++) {
3661 pin = spec->autocfg.hp_pins[i];
3662 if (pin) /* connect to front */
3663 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3665 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
3667 pin = spec->autocfg.speaker_pins[i];
3668 if (pin) /* connect to front */
3669 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN);
3673 static int is_dual_headphones(struct hda_codec *codec)
3675 struct sigmatel_spec *spec = codec->spec;
3678 if (spec->autocfg.line_out_type != AUTO_PIN_SPEAKER_OUT ||
3679 spec->autocfg.hp_outs <= 1)
3682 for (i = 0; i < spec->autocfg.hp_outs; i++) {
3683 hda_nid_t nid = spec->autocfg.hp_pins[i];
3684 unsigned int cfg = snd_hda_codec_get_pincfg(codec, nid);
3685 if (get_defcfg_location(cfg) & AC_JACK_LOC_SEPARATE)
3689 return (valid_hps > 1);
3693 static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out, hda_nid_t dig_in)
3695 struct sigmatel_spec *spec = codec->spec;
3699 if ((err = snd_hda_parse_pin_def_config(codec,
3701 spec->dmic_nids)) < 0)
3703 if (! spec->autocfg.line_outs)
3704 return 0; /* can't find valid pin config */
3706 /* If we have no real line-out pin and multiple hp-outs, HPs should
3707 * be set up as multi-channel outputs.
3709 if (is_dual_headphones(codec)) {
3710 /* Copy hp_outs to line_outs, backup line_outs in
3711 * speaker_outs so that the following routines can handle
3712 * HP pins as primary outputs.
3714 snd_printdd("stac92xx: Enabling multi-HPs workaround\n");
3715 memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins,
3716 sizeof(spec->autocfg.line_out_pins));
3717 spec->autocfg.speaker_outs = spec->autocfg.line_outs;
3718 memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins,
3719 sizeof(spec->autocfg.hp_pins));
3720 spec->autocfg.line_outs = spec->autocfg.hp_outs;
3721 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3722 spec->autocfg.hp_outs = 0;
3725 if (spec->autocfg.mono_out_pin) {
3726 int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) &
3727 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
3728 u32 caps = query_amp_caps(codec,
3729 spec->autocfg.mono_out_pin, dir);
3730 hda_nid_t conn_list[1];
3732 /* get the mixer node and then the mono mux if it exists */
3733 if (snd_hda_get_connections(codec,
3734 spec->autocfg.mono_out_pin, conn_list, 1) &&
3735 snd_hda_get_connections(codec, conn_list[0],
3736 conn_list, 1) > 0) {
3738 int wcaps = get_wcaps(codec, conn_list[0]);
3739 int wid_type = get_wcaps_type(wcaps);
3740 /* LR swap check, some stac925x have a mux that
3741 * changes the DACs output path instead of the
3744 if (wid_type == AC_WID_AUD_SEL &&
3745 !(wcaps & AC_WCAP_LR_SWAP))
3746 spec->mono_nid = conn_list[0];
3749 hda_nid_t nid = spec->autocfg.mono_out_pin;
3751 /* most mono outs have a least a mute/unmute switch */
3752 dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT;
3753 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3754 "Mono Playback Switch",
3755 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3758 /* check for volume support for the amp */
3759 if ((caps & AC_AMPCAP_NUM_STEPS)
3760 >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3761 err = stac92xx_add_control(spec,
3762 STAC_CTL_WIDGET_VOL,
3763 "Mono Playback Volume",
3764 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3770 stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin,
3774 if (!spec->multiout.num_dacs) {
3775 err = stac92xx_auto_fill_dac_nids(codec);
3778 err = stac92xx_auto_create_multi_out_ctls(codec,
3784 /* setup analog beep controls */
3785 if (spec->anabeep_nid > 0) {
3786 err = stac92xx_auto_create_beep_ctls(codec,
3792 /* setup digital beep controls and input device */
3793 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3794 if (spec->digbeep_nid > 0) {
3795 hda_nid_t nid = spec->digbeep_nid;
3798 err = stac92xx_auto_create_beep_ctls(codec, nid);