2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for SigmaTel STAC92xx
6 * Copyright (c) 2005 Embedded Alley Solutions, Inc.
7 * Matt Porter <mporter@embeddedalley.com>
9 * Based on patch_cmedia.c and patch_realtek.c
10 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
12 * This driver is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This driver is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/slab.h>
30 #include <linux/pci.h>
31 #include <sound/core.h>
32 #include <sound/asoundef.h>
33 #include "hda_codec.h"
34 #include "hda_local.h"
35 #include "hda_patch.h"
38 #define NUM_CONTROL_ALLOC 32
39 #define STAC_PWR_EVENT 0x20
40 #define STAC_HP_EVENT 0x30
41 #define STAC_VREF_EVENT 0x40
105 STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter
106 * is given, one of the above models will be
107 * chosen according to the subsystem id. */
108 /* for backward compatibility */
132 struct sigmatel_spec {
133 struct snd_kcontrol_new *mixers[4];
134 unsigned int num_mixers;
137 unsigned int surr_switch: 1;
138 unsigned int line_switch: 1;
139 unsigned int mic_switch: 1;
140 unsigned int alt_switch: 1;
141 unsigned int hp_detect: 1;
142 unsigned int spdif_mute: 1;
145 unsigned int eapd_mask;
146 unsigned int gpio_mask;
147 unsigned int gpio_dir;
148 unsigned int gpio_data;
149 unsigned int gpio_mute;
152 unsigned int stream_delay;
154 /* analog loopback */
155 unsigned char aloopback_mask;
156 unsigned char aloopback_shift;
158 /* power management */
159 unsigned int num_pwrs;
160 unsigned int *pwr_mapping;
165 struct hda_input_mux *mono_mux;
166 struct hda_input_mux *amp_mux;
167 unsigned int cur_mmux;
168 struct hda_multi_out multiout;
169 hda_nid_t dac_nids[5];
173 unsigned int num_adcs;
175 unsigned int num_muxes;
176 hda_nid_t *dmic_nids;
177 unsigned int num_dmics;
178 hda_nid_t *dmux_nids;
179 unsigned int num_dmuxes;
180 hda_nid_t *smux_nids;
181 unsigned int num_smuxes;
182 const char **spdif_labels;
184 hda_nid_t dig_in_nid;
186 hda_nid_t anabeep_nid;
187 hda_nid_t digbeep_nid;
191 unsigned int num_pins;
192 unsigned int *pin_configs;
193 unsigned int *bios_pin_configs;
195 /* codec specific stuff */
196 struct hda_verb *init;
197 struct snd_kcontrol_new *mixer;
200 struct hda_input_mux *dinput_mux;
201 unsigned int cur_dmux[2];
202 struct hda_input_mux *input_mux;
203 unsigned int cur_mux[3];
204 struct hda_input_mux *sinput_mux;
205 unsigned int cur_smux[2];
206 unsigned int cur_amux;
208 unsigned int num_amps;
209 unsigned int powerdown_adcs;
212 unsigned int io_switch[2];
213 unsigned int clfe_swap;
214 unsigned int hp_switch;
215 unsigned int aloopback;
217 struct hda_pcm pcm_rec[2]; /* PCM information */
219 /* dynamic controls and input_mux */
220 struct auto_pin_cfg autocfg;
221 unsigned int num_kctl_alloc, num_kctl_used;
222 struct snd_kcontrol_new *kctl_alloc;
223 struct hda_input_mux private_dimux;
224 struct hda_input_mux private_imux;
225 struct hda_input_mux private_smux;
226 struct hda_input_mux private_amp_mux;
227 struct hda_input_mux private_mono_mux;
230 static hda_nid_t stac9200_adc_nids[1] = {
234 static hda_nid_t stac9200_mux_nids[1] = {
238 static hda_nid_t stac9200_dac_nids[1] = {
242 static hda_nid_t stac92hd73xx_pwr_nids[8] = {
243 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
247 static hda_nid_t stac92hd73xx_slave_dig_outs[2] = {
251 static hda_nid_t stac92hd73xx_adc_nids[2] = {
255 #define DELL_M6_AMP 2
256 static hda_nid_t stac92hd73xx_amp_nids[3] = {
260 #define STAC92HD73XX_NUM_DMICS 2
261 static hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = {
265 #define STAC92HD73_DAC_COUNT 5
266 static hda_nid_t stac92hd73xx_dac_nids[STAC92HD73_DAC_COUNT] = {
267 0x15, 0x16, 0x17, 0x18, 0x19,
270 static hda_nid_t stac92hd73xx_mux_nids[4] = {
271 0x28, 0x29, 0x2a, 0x2b,
274 static hda_nid_t stac92hd73xx_dmux_nids[2] = {
278 static hda_nid_t stac92hd73xx_smux_nids[2] = {
282 #define STAC92HD83XXX_NUM_DMICS 2
283 static hda_nid_t stac92hd83xxx_dmic_nids[STAC92HD83XXX_NUM_DMICS + 1] = {
287 #define STAC92HD81_DAC_COUNT 2
288 #define STAC92HD83_DAC_COUNT 3
289 static hda_nid_t stac92hd83xxx_dac_nids[STAC92HD73_DAC_COUNT] = {
293 static hda_nid_t stac92hd83xxx_dmux_nids[2] = {
297 static hda_nid_t stac92hd83xxx_adc_nids[2] = {
301 static hda_nid_t stac92hd83xxx_pwr_nids[4] = {
305 static hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
309 static unsigned int stac92hd83xxx_pwr_mapping[4] = {
310 0x03, 0x0c, 0x10, 0x40,
313 static hda_nid_t stac92hd71bxx_pwr_nids[3] = {
317 static hda_nid_t stac92hd71bxx_adc_nids[2] = {
321 static hda_nid_t stac92hd71bxx_mux_nids[2] = {
325 static hda_nid_t stac92hd71bxx_dmux_nids[1] = {
329 static hda_nid_t stac92hd71bxx_smux_nids[2] = {
333 static hda_nid_t stac92hd71bxx_dac_nids[1] = {
337 #define STAC92HD71BXX_NUM_DMICS 2
338 static hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = {
342 static hda_nid_t stac92hd71bxx_slave_dig_outs[2] = {
346 static hda_nid_t stac925x_adc_nids[1] = {
350 static hda_nid_t stac925x_mux_nids[1] = {
354 static hda_nid_t stac925x_dac_nids[1] = {
358 #define STAC925X_NUM_DMICS 1
359 static hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = {
363 static hda_nid_t stac925x_dmux_nids[1] = {
367 static hda_nid_t stac922x_adc_nids[2] = {
371 static hda_nid_t stac922x_mux_nids[2] = {
375 static hda_nid_t stac927x_adc_nids[3] = {
379 static hda_nid_t stac927x_mux_nids[3] = {
383 static hda_nid_t stac927x_smux_nids[1] = {
387 static hda_nid_t stac927x_dac_nids[6] = {
388 0x02, 0x03, 0x04, 0x05, 0x06, 0
391 static hda_nid_t stac927x_dmux_nids[1] = {
395 #define STAC927X_NUM_DMICS 2
396 static hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = {
400 static const char *stac927x_spdif_labels[5] = {
401 "Digital Playback", "ADAT", "Analog Mux 1",
402 "Analog Mux 2", "Analog Mux 3"
405 static hda_nid_t stac9205_adc_nids[2] = {
409 static hda_nid_t stac9205_mux_nids[2] = {
413 static hda_nid_t stac9205_dmux_nids[1] = {
417 static hda_nid_t stac9205_smux_nids[1] = {
421 #define STAC9205_NUM_DMICS 2
422 static hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = {
426 static hda_nid_t stac9200_pin_nids[8] = {
427 0x08, 0x09, 0x0d, 0x0e,
428 0x0f, 0x10, 0x11, 0x12,
431 static hda_nid_t stac925x_pin_nids[8] = {
432 0x07, 0x08, 0x0a, 0x0b,
433 0x0c, 0x0d, 0x10, 0x11,
436 static hda_nid_t stac922x_pin_nids[10] = {
437 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
438 0x0f, 0x10, 0x11, 0x15, 0x1b,
441 static hda_nid_t stac92hd73xx_pin_nids[13] = {
442 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
443 0x0f, 0x10, 0x11, 0x12, 0x13,
447 static hda_nid_t stac92hd83xxx_pin_nids[14] = {
448 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
449 0x0f, 0x10, 0x11, 0x12, 0x13,
450 0x1d, 0x1e, 0x1f, 0x20
452 static hda_nid_t stac92hd71bxx_pin_nids[11] = {
453 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
454 0x0f, 0x14, 0x18, 0x19, 0x1e,
458 static hda_nid_t stac927x_pin_nids[14] = {
459 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
460 0x0f, 0x10, 0x11, 0x12, 0x13,
461 0x14, 0x21, 0x22, 0x23,
464 static hda_nid_t stac9205_pin_nids[12] = {
465 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
466 0x0f, 0x14, 0x16, 0x17, 0x18,
470 #define stac92xx_amp_volume_info snd_hda_mixer_amp_volume_info
472 static int stac92xx_amp_volume_get(struct snd_kcontrol *kcontrol,
473 struct snd_ctl_elem_value *ucontrol)
475 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
476 struct sigmatel_spec *spec = codec->spec;
477 hda_nid_t nid = spec->amp_nids[spec->cur_amux];
479 kcontrol->private_value ^= get_amp_nid(kcontrol);
480 kcontrol->private_value |= nid;
482 return snd_hda_mixer_amp_volume_get(kcontrol, ucontrol);
485 static int stac92xx_amp_volume_put(struct snd_kcontrol *kcontrol,
486 struct snd_ctl_elem_value *ucontrol)
488 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
489 struct sigmatel_spec *spec = codec->spec;
490 hda_nid_t nid = spec->amp_nids[spec->cur_amux];
492 kcontrol->private_value ^= get_amp_nid(kcontrol);
493 kcontrol->private_value |= nid;
495 return snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
498 static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol,
499 struct snd_ctl_elem_info *uinfo)
501 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
502 struct sigmatel_spec *spec = codec->spec;
503 return snd_hda_input_mux_info(spec->dinput_mux, uinfo);
506 static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol,
507 struct snd_ctl_elem_value *ucontrol)
509 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
510 struct sigmatel_spec *spec = codec->spec;
511 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
513 ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx];
517 static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol,
518 struct snd_ctl_elem_value *ucontrol)
520 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
521 struct sigmatel_spec *spec = codec->spec;
522 unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
524 return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol,
525 spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]);
528 static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol,
529 struct snd_ctl_elem_info *uinfo)
531 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
532 struct sigmatel_spec *spec = codec->spec;
533 return snd_hda_input_mux_info(spec->sinput_mux, uinfo);
536 static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol,
537 struct snd_ctl_elem_value *ucontrol)
539 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
540 struct sigmatel_spec *spec = codec->spec;
541 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
543 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
547 static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol,
548 struct snd_ctl_elem_value *ucontrol)
550 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
551 struct sigmatel_spec *spec = codec->spec;
552 struct hda_input_mux *smux = &spec->private_smux;
553 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
557 err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol,
558 spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]);
562 if (spec->spdif_mute) {
564 nid = spec->multiout.dig_out_nid;
566 nid = codec->slave_dig_outs[smux_idx - 1];
567 if (spec->cur_smux[smux_idx] == smux->num_items - 1)
570 nid = spec->multiout.dig_out_nid;
572 nid = codec->slave_dig_outs[smux_idx - 1];
573 /* un/mute SPDIF out */
574 snd_hda_codec_write_cache(codec, nid, 0,
575 AC_VERB_SET_AMP_GAIN_MUTE, val);
580 static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
582 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
583 struct sigmatel_spec *spec = codec->spec;
584 return snd_hda_input_mux_info(spec->input_mux, uinfo);
587 static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
589 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
590 struct sigmatel_spec *spec = codec->spec;
591 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
593 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
597 static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
599 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
600 struct sigmatel_spec *spec = codec->spec;
601 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
603 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
604 spec->mux_nids[adc_idx], &spec->cur_mux[adc_idx]);
607 static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol,
608 struct snd_ctl_elem_info *uinfo)
610 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
611 struct sigmatel_spec *spec = codec->spec;
612 return snd_hda_input_mux_info(spec->mono_mux, uinfo);
615 static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol,
616 struct snd_ctl_elem_value *ucontrol)
618 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
619 struct sigmatel_spec *spec = codec->spec;
621 ucontrol->value.enumerated.item[0] = spec->cur_mmux;
625 static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol,
626 struct snd_ctl_elem_value *ucontrol)
628 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
629 struct sigmatel_spec *spec = codec->spec;
631 return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol,
632 spec->mono_nid, &spec->cur_mmux);
635 static int stac92xx_amp_mux_enum_info(struct snd_kcontrol *kcontrol,
636 struct snd_ctl_elem_info *uinfo)
638 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
639 struct sigmatel_spec *spec = codec->spec;
640 return snd_hda_input_mux_info(spec->amp_mux, uinfo);
643 static int stac92xx_amp_mux_enum_get(struct snd_kcontrol *kcontrol,
644 struct snd_ctl_elem_value *ucontrol)
646 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
647 struct sigmatel_spec *spec = codec->spec;
649 ucontrol->value.enumerated.item[0] = spec->cur_amux;
653 static int stac92xx_amp_mux_enum_put(struct snd_kcontrol *kcontrol,
654 struct snd_ctl_elem_value *ucontrol)
656 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
657 struct sigmatel_spec *spec = codec->spec;
658 struct snd_kcontrol *ctl =
659 snd_hda_find_mixer_ctl(codec, "Amp Capture Volume");
663 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE |
664 SNDRV_CTL_EVENT_MASK_INFO, &ctl->id);
666 return snd_hda_input_mux_put(codec, spec->amp_mux, ucontrol,
670 #define stac92xx_aloopback_info snd_ctl_boolean_mono_info
672 static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol,
673 struct snd_ctl_elem_value *ucontrol)
675 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
676 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
677 struct sigmatel_spec *spec = codec->spec;
679 ucontrol->value.integer.value[0] = !!(spec->aloopback &
680 (spec->aloopback_mask << idx));
684 static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol,
685 struct snd_ctl_elem_value *ucontrol)
687 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
688 struct sigmatel_spec *spec = codec->spec;
689 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
690 unsigned int dac_mode;
691 unsigned int val, idx_val;
693 idx_val = spec->aloopback_mask << idx;
694 if (ucontrol->value.integer.value[0])
695 val = spec->aloopback | idx_val;
697 val = spec->aloopback & ~idx_val;
698 if (spec->aloopback == val)
701 spec->aloopback = val;
703 /* Only return the bits defined by the shift value of the
704 * first two bytes of the mask
706 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
707 kcontrol->private_value & 0xFFFF, 0x0);
708 dac_mode >>= spec->aloopback_shift;
710 if (spec->aloopback & idx_val) {
711 snd_hda_power_up(codec);
714 snd_hda_power_down(codec);
715 dac_mode &= ~idx_val;
718 snd_hda_codec_write_cache(codec, codec->afg, 0,
719 kcontrol->private_value >> 16, dac_mode);
724 static struct hda_verb stac9200_core_init[] = {
725 /* set dac0mux for dac converter */
726 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
730 static struct hda_verb stac9200_eapd_init[] = {
731 /* set dac0mux for dac converter */
732 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
733 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
737 static struct hda_verb stac92hd73xx_6ch_core_init[] = {
738 /* set master volume and direct control */
739 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
740 /* setup audio connections */
741 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00},
742 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x01},
743 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x02},
744 /* setup adcs to point to mixer */
745 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
746 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
747 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
748 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
749 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
750 /* setup import muxs */
751 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
752 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
753 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
754 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
758 static struct hda_verb dell_eq_core_init[] = {
759 /* set master volume to max value without distortion
760 * and direct control */
761 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
762 /* setup audio connections */
763 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
764 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x02},
765 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x01},
766 /* setup adcs to point to mixer */
767 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
768 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
769 /* setup import muxs */
770 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
771 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
772 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
773 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
777 static struct hda_verb dell_m6_core_init[] = {
778 /* set master volume to max value without distortion
779 * and direct control */
780 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
781 /* setup audio connections */
782 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
783 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x01},
784 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x02},
785 /* setup adcs to point to mixer */
786 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
787 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
788 /* setup import muxs */
789 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
790 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
791 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
792 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x00},
796 static struct hda_verb stac92hd73xx_8ch_core_init[] = {
797 /* set master volume and direct control */
798 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
799 /* setup audio connections */
800 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00},
801 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x01},
802 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x02},
803 /* connect hp ports to dac3 */
804 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x03},
805 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x03},
806 /* setup adcs to point to mixer */
807 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
808 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
809 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
810 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
811 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
812 /* setup import muxs */
813 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
814 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
815 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
816 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03},
820 static struct hda_verb stac92hd73xx_10ch_core_init[] = {
821 /* set master volume and direct control */
822 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
823 /* setup audio connections */
824 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
825 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x01 },
826 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x02 },
827 /* dac3 is connected to import3 mux */
828 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb07f},
829 /* connect hp ports to dac4 */
830 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x04},
831 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x04},
832 /* setup adcs to point to mixer */
833 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b},
834 { 0x21, AC_VERB_SET_CONNECT_SEL, 0x0b},
835 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
836 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
837 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
838 /* setup import muxs */
839 { 0x28, AC_VERB_SET_CONNECT_SEL, 0x01},
840 { 0x29, AC_VERB_SET_CONNECT_SEL, 0x01},
841 { 0x2a, AC_VERB_SET_CONNECT_SEL, 0x01},
842 { 0x2b, AC_VERB_SET_CONNECT_SEL, 0x03},
846 static struct hda_verb stac92hd83xxx_core_init[] = {
847 /* start of config #1 */
848 { 0xe, AC_VERB_SET_CONNECT_SEL, 0x3},
850 /* start of config #2 */
851 { 0xa, AC_VERB_SET_CONNECT_SEL, 0x0},
852 { 0xb, AC_VERB_SET_CONNECT_SEL, 0x0},
853 { 0xd, AC_VERB_SET_CONNECT_SEL, 0x1},
855 /* power state controls amps */
856 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
859 static struct hda_verb stac92hd71bxx_core_init[] = {
860 /* set master volume and direct control */
861 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
862 /* connect headphone jack to dac1 */
863 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x01},
864 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, /* Speaker */
865 /* unmute right and left channels for nodes 0x0a, 0xd, 0x0f */
866 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
867 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
868 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
871 #define HD_DISABLE_PORTF 3
872 static struct hda_verb stac92hd71bxx_analog_core_init[] = {
873 /* start of config #1 */
875 /* connect port 0f to audio mixer */
876 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x2},
877 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, /* Speaker */
878 /* unmute right and left channels for node 0x0f */
879 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
880 /* start of config #2 */
882 /* set master volume and direct control */
883 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
884 /* connect headphone jack to dac1 */
885 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x01},
886 /* connect port 0d to audio mixer */
887 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x2},
888 /* unmute dac0 input in audio mixer */
889 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, 0x701f},
890 /* unmute right and left channels for nodes 0x0a, 0xd */
891 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
892 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
896 static struct hda_verb stac925x_core_init[] = {
897 /* set dac0mux for dac converter */
898 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
902 static struct hda_verb stac922x_core_init[] = {
903 /* set master volume and direct control */
904 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
908 static struct hda_verb d965_core_init[] = {
909 /* set master volume and direct control */
910 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
911 /* unmute node 0x1b */
912 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
913 /* select node 0x03 as DAC */
914 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
918 static struct hda_verb stac927x_core_init[] = {
919 /* set master volume and direct control */
920 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
921 /* enable analog pc beep path */
922 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
926 static struct hda_verb stac9205_core_init[] = {
927 /* set master volume and direct control */
928 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
929 /* enable analog pc beep path */
930 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
934 #define STAC_MONO_MUX \
936 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
937 .name = "Mono Mux", \
939 .info = stac92xx_mono_mux_enum_info, \
940 .get = stac92xx_mono_mux_enum_get, \
941 .put = stac92xx_mono_mux_enum_put, \
944 #define STAC_AMP_MUX \
946 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
947 .name = "Amp Selector Capture Switch", \
949 .info = stac92xx_amp_mux_enum_info, \
950 .get = stac92xx_amp_mux_enum_get, \
951 .put = stac92xx_amp_mux_enum_put, \
954 #define STAC_AMP_VOL(xname, nid, chs, idx, dir) \
956 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
959 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
960 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
961 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
962 .info = stac92xx_amp_volume_info, \
963 .get = stac92xx_amp_volume_get, \
964 .put = stac92xx_amp_volume_put, \
965 .tlv = { .c = snd_hda_mixer_amp_tlv }, \
966 .private_value = HDA_COMPOSE_AMP_VAL(nid, chs, idx, dir) \
969 #define STAC_INPUT_SOURCE(cnt) \
971 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
972 .name = "Input Source", \
974 .info = stac92xx_mux_enum_info, \
975 .get = stac92xx_mux_enum_get, \
976 .put = stac92xx_mux_enum_put, \
979 #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
981 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
982 .name = "Analog Loopback", \
984 .info = stac92xx_aloopback_info, \
985 .get = stac92xx_aloopback_get, \
986 .put = stac92xx_aloopback_put, \
987 .private_value = verb_read | (verb_write << 16), \
990 static struct snd_kcontrol_new stac9200_mixer[] = {
991 HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT),
992 HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT),
993 STAC_INPUT_SOURCE(1),
994 HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
995 HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
999 #define DELL_M6_MIXER 6
1000 static struct snd_kcontrol_new stac92hd73xx_6ch_mixer[] = {
1001 /* start of config #1 */
1002 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1003 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1005 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1006 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1008 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1009 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1011 /* start of config #2 */
1012 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1013 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1015 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1016 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1018 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
1020 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1021 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1023 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1024 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1029 static struct snd_kcontrol_new stac92hd73xx_8ch_mixer[] = {
1030 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
1032 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1033 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1035 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1036 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1038 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1039 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1041 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1042 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1044 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1045 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1047 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1048 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1050 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1051 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1055 static struct snd_kcontrol_new stac92hd73xx_10ch_mixer[] = {
1056 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
1058 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x20, 0x0, HDA_OUTPUT),
1059 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x20, 0x0, HDA_OUTPUT),
1061 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x21, 0x0, HDA_OUTPUT),
1062 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x21, 0x0, HDA_OUTPUT),
1064 HDA_CODEC_VOLUME("Front Mic Mixer Capture Volume", 0x1d, 0, HDA_INPUT),
1065 HDA_CODEC_MUTE("Front Mic Mixer Capture Switch", 0x1d, 0, HDA_INPUT),
1067 HDA_CODEC_VOLUME("Mic Mixer Capture Volume", 0x1d, 0x1, HDA_INPUT),
1068 HDA_CODEC_MUTE("Mic Mixer Capture Switch", 0x1d, 0x1, HDA_INPUT),
1070 HDA_CODEC_VOLUME("Line In Mixer Capture Volume", 0x1d, 0x2, HDA_INPUT),
1071 HDA_CODEC_MUTE("Line In Mixer Capture Switch", 0x1d, 0x2, HDA_INPUT),
1073 HDA_CODEC_VOLUME("DAC Mixer Capture Volume", 0x1d, 0x3, HDA_INPUT),
1074 HDA_CODEC_MUTE("DAC Mixer Capture Switch", 0x1d, 0x3, HDA_INPUT),
1076 HDA_CODEC_VOLUME("CD Mixer Capture Volume", 0x1d, 0x4, HDA_INPUT),
1077 HDA_CODEC_MUTE("CD Mixer Capture Switch", 0x1d, 0x4, HDA_INPUT),
1082 static struct snd_kcontrol_new stac92hd83xxx_mixer[] = {
1083 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x17, 0x0, HDA_OUTPUT),
1084 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x17, 0x0, HDA_OUTPUT),
1086 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x18, 0x0, HDA_OUTPUT),
1087 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_OUTPUT),
1089 HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x1b, 0, HDA_INPUT),
1090 HDA_CODEC_MUTE("DAC0 Capture Switch", 0x1b, 0, HDA_INPUT),
1092 HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x1b, 0x1, HDA_INPUT),
1093 HDA_CODEC_MUTE("DAC1 Capture Switch", 0x1b, 0x1, HDA_INPUT),
1095 HDA_CODEC_VOLUME("Front Mic Capture Volume", 0x1b, 0x2, HDA_INPUT),
1096 HDA_CODEC_MUTE("Front Mic Capture Switch", 0x1b, 0x2, HDA_INPUT),
1098 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1b, 0x3, HDA_INPUT),
1099 HDA_CODEC_MUTE("Line In Capture Switch", 0x1b, 0x3, HDA_INPUT),
1102 HDA_CODEC_VOLUME("Mic Capture Volume", 0x1b, 0x4, HDA_INPUT),
1103 HDA_CODEC_MUTE("Mic Capture Switch", 0x1b 0x4, HDA_INPUT),
1108 static struct snd_kcontrol_new stac92hd71bxx_analog_mixer[] = {
1109 STAC_INPUT_SOURCE(2),
1111 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1c, 0x0, HDA_OUTPUT),
1112 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1c, 0x0, HDA_OUTPUT),
1114 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1d, 0x0, HDA_OUTPUT),
1115 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1d, 0x0, HDA_OUTPUT),
1116 /* analog pc-beep replaced with digital beep support */
1118 HDA_CODEC_VOLUME("PC Beep Volume", 0x17, 0x2, HDA_INPUT),
1119 HDA_CODEC_MUTE("PC Beep Switch", 0x17, 0x2, HDA_INPUT),
1122 HDA_CODEC_MUTE("Analog Loopback 1", 0x17, 0x3, HDA_INPUT),
1123 HDA_CODEC_MUTE("Analog Loopback 2", 0x17, 0x4, HDA_INPUT),
1127 static struct snd_kcontrol_new stac92hd71bxx_mixer[] = {
1128 STAC_INPUT_SOURCE(2),
1129 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2),
1131 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1c, 0x0, HDA_OUTPUT),
1132 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1c, 0x0, HDA_OUTPUT),
1134 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1d, 0x0, HDA_OUTPUT),
1135 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1d, 0x0, HDA_OUTPUT),
1139 static struct snd_kcontrol_new stac925x_mixer[] = {
1140 STAC_INPUT_SOURCE(1),
1141 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_OUTPUT),
1142 HDA_CODEC_MUTE("Capture Switch", 0x14, 0, HDA_OUTPUT),
1146 static struct snd_kcontrol_new stac9205_mixer[] = {
1147 STAC_INPUT_SOURCE(2),
1148 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
1150 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x1b, 0x0, HDA_INPUT),
1151 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1d, 0x0, HDA_OUTPUT),
1153 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x1c, 0x0, HDA_INPUT),
1154 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1e, 0x0, HDA_OUTPUT),
1158 /* This needs to be generated dynamically based on sequence */
1159 static struct snd_kcontrol_new stac922x_mixer[] = {
1160 STAC_INPUT_SOURCE(2),
1161 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x17, 0x0, HDA_INPUT),
1162 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x17, 0x0, HDA_INPUT),
1164 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x18, 0x0, HDA_INPUT),
1165 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_INPUT),
1170 static struct snd_kcontrol_new stac927x_mixer[] = {
1171 STAC_INPUT_SOURCE(3),
1172 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
1174 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x0, 0x18, 0x0, HDA_INPUT),
1175 HDA_CODEC_MUTE_IDX("Capture Switch", 0x0, 0x1b, 0x0, HDA_OUTPUT),
1177 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x1, 0x19, 0x0, HDA_INPUT),
1178 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x1c, 0x0, HDA_OUTPUT),
1180 HDA_CODEC_VOLUME_IDX("Capture Volume", 0x2, 0x1A, 0x0, HDA_INPUT),
1181 HDA_CODEC_MUTE_IDX("Capture Switch", 0x2, 0x1d, 0x0, HDA_OUTPUT),
1185 static struct snd_kcontrol_new stac_dmux_mixer = {
1186 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1187 .name = "Digital Input Source",
1188 /* count set later */
1189 .info = stac92xx_dmux_enum_info,
1190 .get = stac92xx_dmux_enum_get,
1191 .put = stac92xx_dmux_enum_put,
1194 static struct snd_kcontrol_new stac_smux_mixer = {
1195 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1196 .name = "IEC958 Playback Source",
1197 /* count set later */
1198 .info = stac92xx_smux_enum_info,
1199 .get = stac92xx_smux_enum_get,
1200 .put = stac92xx_smux_enum_put,
1203 static const char *slave_vols[] = {
1204 "Front Playback Volume",
1205 "Surround Playback Volume",
1206 "Center Playback Volume",
1207 "LFE Playback Volume",
1208 "Side Playback Volume",
1209 "Headphone Playback Volume",
1210 "Headphone Playback Volume",
1211 "Speaker Playback Volume",
1212 "External Speaker Playback Volume",
1213 "Speaker2 Playback Volume",
1217 static const char *slave_sws[] = {
1218 "Front Playback Switch",
1219 "Surround Playback Switch",
1220 "Center Playback Switch",
1221 "LFE Playback Switch",
1222 "Side Playback Switch",
1223 "Headphone Playback Switch",
1224 "Headphone Playback Switch",
1225 "Speaker Playback Switch",
1226 "External Speaker Playback Switch",
1227 "Speaker2 Playback Switch",
1228 "IEC958 Playback Switch",
1232 static int stac92xx_build_controls(struct hda_codec *codec)
1234 struct sigmatel_spec *spec = codec->spec;
1238 err = snd_hda_add_new_ctls(codec, spec->mixer);
1242 for (i = 0; i < spec->num_mixers; i++) {
1243 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1247 if (spec->num_dmuxes > 0) {
1248 stac_dmux_mixer.count = spec->num_dmuxes;
1249 err = snd_ctl_add(codec->bus->card,
1250 snd_ctl_new1(&stac_dmux_mixer, codec));
1254 if (spec->num_smuxes > 0) {
1255 int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid);
1256 struct hda_input_mux *smux = &spec->private_smux;
1257 /* check for mute support on SPDIF out */
1258 if (wcaps & AC_WCAP_OUT_AMP) {
1259 smux->items[smux->num_items].label = "Off";
1260 smux->items[smux->num_items].index = 0;
1262 spec->spdif_mute = 1;
1264 stac_smux_mixer.count = spec->num_smuxes;
1265 err = snd_ctl_add(codec->bus->card,
1266 snd_ctl_new1(&stac_smux_mixer, codec));
1271 if (spec->multiout.dig_out_nid) {
1272 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
1275 err = snd_hda_create_spdif_share_sw(codec,
1279 spec->multiout.share_spdif = 1;
1281 if (spec->dig_in_nid && (!spec->gpio_dir & 0x01)) {
1282 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1287 /* if we have no master control, let's create it */
1288 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1289 unsigned int vmaster_tlv[4];
1290 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
1291 HDA_OUTPUT, vmaster_tlv);
1292 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1293 vmaster_tlv, slave_vols);
1297 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1298 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1307 static unsigned int ref9200_pin_configs[8] = {
1308 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
1309 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1313 STAC 9200 pin configs for
1318 static unsigned int dell9200_d21_pin_configs[8] = {
1319 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
1320 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1324 STAC 9200 pin configs for
1328 static unsigned int dell9200_d22_pin_configs[8] = {
1329 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1330 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
1334 STAC 9200 pin configs for
1335 102801C4 (Dell Dimension E310)
1342 static unsigned int dell9200_d23_pin_configs[8] = {
1343 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1344 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
1349 STAC 9200-32 pin configs for
1350 102801B5 (Dell Inspiron 630m)
1351 102801D8 (Dell Inspiron 640m)
1353 static unsigned int dell9200_m21_pin_configs[8] = {
1354 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1355 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
1359 STAC 9200-32 pin configs for
1360 102801C2 (Dell Latitude D620)
1362 102801CC (Dell Latitude D820)
1366 static unsigned int dell9200_m22_pin_configs[8] = {
1367 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
1368 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
1372 STAC 9200-32 pin configs for
1373 102801CE (Dell XPS M1710)
1374 102801CF (Dell Precision M90)
1376 static unsigned int dell9200_m23_pin_configs[8] = {
1377 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1378 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1382 STAC 9200-32 pin configs for
1385 102801CB (Dell Latitude 120L)
1388 static unsigned int dell9200_m24_pin_configs[8] = {
1389 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
1390 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
1394 STAC 9200-32 pin configs for
1395 102801BD (Dell Inspiron E1505n)
1399 static unsigned int dell9200_m25_pin_configs[8] = {
1400 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1401 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
1405 STAC 9200-32 pin configs for
1406 102801F5 (Dell Inspiron 1501)
1409 static unsigned int dell9200_m26_pin_configs[8] = {
1410 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
1411 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
1416 102801CD (Dell Inspiron E1705/9400)
1418 static unsigned int dell9200_m27_pin_configs[8] = {
1419 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1420 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
1423 static unsigned int oqo9200_pin_configs[8] = {
1424 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1425 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1429 static unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = {
1430 [STAC_REF] = ref9200_pin_configs,
1431 [STAC_9200_OQO] = oqo9200_pin_configs,
1432 [STAC_9200_DELL_D21] = dell9200_d21_pin_configs,
1433 [STAC_9200_DELL_D22] = dell9200_d22_pin_configs,
1434 [STAC_9200_DELL_D23] = dell9200_d23_pin_configs,
1435 [STAC_9200_DELL_M21] = dell9200_m21_pin_configs,
1436 [STAC_9200_DELL_M22] = dell9200_m22_pin_configs,
1437 [STAC_9200_DELL_M23] = dell9200_m23_pin_configs,
1438 [STAC_9200_DELL_M24] = dell9200_m24_pin_configs,
1439 [STAC_9200_DELL_M25] = dell9200_m25_pin_configs,
1440 [STAC_9200_DELL_M26] = dell9200_m26_pin_configs,
1441 [STAC_9200_DELL_M27] = dell9200_m27_pin_configs,
1442 [STAC_9200_PANASONIC] = ref9200_pin_configs,
1445 static const char *stac9200_models[STAC_9200_MODELS] = {
1447 [STAC_9200_OQO] = "oqo",
1448 [STAC_9200_DELL_D21] = "dell-d21",
1449 [STAC_9200_DELL_D22] = "dell-d22",
1450 [STAC_9200_DELL_D23] = "dell-d23",
1451 [STAC_9200_DELL_M21] = "dell-m21",
1452 [STAC_9200_DELL_M22] = "dell-m22",
1453 [STAC_9200_DELL_M23] = "dell-m23",
1454 [STAC_9200_DELL_M24] = "dell-m24",
1455 [STAC_9200_DELL_M25] = "dell-m25",
1456 [STAC_9200_DELL_M26] = "dell-m26",
1457 [STAC_9200_DELL_M27] = "dell-m27",
1458 [STAC_9200_GATEWAY] = "gateway",
1459 [STAC_9200_PANASONIC] = "panasonic",
1462 static struct snd_pci_quirk stac9200_cfg_tbl[] = {
1463 /* SigmaTel reference board */
1464 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1465 "DFI LanParty", STAC_REF),
1466 /* Dell laptops have BIOS problem */
1467 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1468 "unknown Dell", STAC_9200_DELL_D21),
1469 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
1470 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1471 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1472 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1473 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1474 "unknown Dell", STAC_9200_DELL_D22),
1475 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1476 "unknown Dell", STAC_9200_DELL_D22),
1477 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
1478 "Dell Latitude D620", STAC_9200_DELL_M22),
1479 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1480 "unknown Dell", STAC_9200_DELL_D23),
1481 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1482 "unknown Dell", STAC_9200_DELL_D23),
1483 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1484 "unknown Dell", STAC_9200_DELL_M22),
1485 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1486 "unknown Dell", STAC_9200_DELL_M24),
1487 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1488 "unknown Dell", STAC_9200_DELL_M24),
1489 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
1490 "Dell Latitude 120L", STAC_9200_DELL_M24),
1491 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
1492 "Dell Latitude D820", STAC_9200_DELL_M22),
1493 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
1494 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
1495 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
1496 "Dell XPS M1710", STAC_9200_DELL_M23),
1497 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
1498 "Dell Precision M90", STAC_9200_DELL_M23),
1499 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1500 "unknown Dell", STAC_9200_DELL_M22),
1501 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1502 "unknown Dell", STAC_9200_DELL_M22),
1503 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
1504 "unknown Dell", STAC_9200_DELL_M22),
1505 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
1506 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1507 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1508 "unknown Dell", STAC_9200_DELL_D23),
1509 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1510 "unknown Dell", STAC_9200_DELL_D23),
1511 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1512 "unknown Dell", STAC_9200_DELL_D21),
1513 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1514 "unknown Dell", STAC_9200_DELL_D23),
1515 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1516 "unknown Dell", STAC_9200_DELL_D21),
1517 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1518 "unknown Dell", STAC_9200_DELL_M25),
1519 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1520 "unknown Dell", STAC_9200_DELL_M25),
1521 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
1522 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1523 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1524 "unknown Dell", STAC_9200_DELL_M26),
1526 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
1527 /* Gateway machines needs EAPD to be set on resume */
1528 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_GATEWAY),
1529 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*",
1531 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707",
1534 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
1538 static unsigned int ref925x_pin_configs[8] = {
1539 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
1540 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
1543 static unsigned int stac925x_MA6_pin_configs[8] = {
1544 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
1545 0x90a70320, 0x90100211, 0x400003f1, 0x9033032e,
1548 static unsigned int stac925x_PA6_pin_configs[8] = {
1549 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
1550 0x50a103f0, 0x90100211, 0x400003f1, 0x9033032e,
1553 static unsigned int stac925xM2_2_pin_configs[8] = {
1554 0x40c003f3, 0x424503f2, 0x04180011, 0x02a19020,
1555 0x50a103f0, 0x90100212, 0x400003f1, 0x9033032e,
1558 static unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = {
1559 [STAC_REF] = ref925x_pin_configs,
1560 [STAC_M2_2] = stac925xM2_2_pin_configs,
1561 [STAC_MA6] = stac925x_MA6_pin_configs,
1562 [STAC_PA6] = stac925x_PA6_pin_configs,
1565 static const char *stac925x_models[STAC_925x_MODELS] = {
1567 [STAC_M2_2] = "m2-2",
1572 static struct snd_pci_quirk stac925x_cfg_tbl[] = {
1573 /* SigmaTel reference board */
1574 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
1575 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
1576 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_REF),
1577 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_REF),
1578 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_MA6),
1579 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_PA6),
1580 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway MX6453", STAC_M2_2),
1584 static unsigned int ref92hd73xx_pin_configs[13] = {
1585 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1586 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1587 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
1591 static unsigned int dell_m6_pin_configs[13] = {
1592 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
1593 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
1594 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1598 static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
1599 [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs,
1600 [STAC_DELL_M6] = dell_m6_pin_configs,
1603 static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
1604 [STAC_92HD73XX_REF] = "ref",
1605 [STAC_DELL_M6] = "dell-m6",
1608 static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
1609 /* SigmaTel reference board */
1610 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1611 "DFI LanParty", STAC_92HD73XX_REF),
1612 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
1613 "unknown Dell", STAC_DELL_M6),
1614 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
1615 "unknown Dell", STAC_DELL_M6),
1616 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
1617 "unknown Dell", STAC_DELL_M6),
1618 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
1619 "unknown Dell", STAC_DELL_M6),
1620 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
1621 "unknown Dell", STAC_DELL_M6),
1622 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
1623 "unknown Dell", STAC_DELL_M6),
1624 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
1625 "unknown Dell", STAC_DELL_M6),
1629 static unsigned int ref92hd83xxx_pin_configs[14] = {
1630 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1631 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
1632 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x40f000f0,
1633 0x01451160, 0x98560170,
1636 static unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = {
1637 [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs,
1640 static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
1641 [STAC_92HD83XXX_REF] = "ref",
1644 static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
1645 /* SigmaTel reference board */
1646 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1647 "DFI LanParty", STAC_92HD71BXX_REF),
1650 static unsigned int ref92hd71bxx_pin_configs[11] = {
1651 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
1652 0x0181302e, 0x01114010, 0x01019020, 0x90a000f0,
1653 0x90a000f0, 0x01452050, 0x01452050,
1656 static unsigned int dell_m4_1_pin_configs[11] = {
1657 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
1658 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
1659 0x40f000f0, 0x4f0000f0, 0x4f0000f0,
1662 static unsigned int dell_m4_2_pin_configs[11] = {
1663 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1664 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
1665 0x40f000f0, 0x044413b0, 0x044413b0,
1668 static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
1669 [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
1670 [STAC_DELL_M4_1] = dell_m4_1_pin_configs,
1671 [STAC_DELL_M4_2] = dell_m4_2_pin_configs,
1672 [STAC_HP_M4] = NULL,
1675 static const char *stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
1676 [STAC_92HD71BXX_REF] = "ref",
1677 [STAC_DELL_M4_1] = "dell-m4-1",
1678 [STAC_DELL_M4_2] = "dell-m4-2",
1679 [STAC_HP_M4] = "hp-m4",
1682 static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1683 /* SigmaTel reference board */
1684 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1685 "DFI LanParty", STAC_92HD71BXX_REF),
1686 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
1687 "unknown HP", STAC_HP_M4),
1688 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
1689 "unknown Dell", STAC_DELL_M4_1),
1690 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
1691 "unknown Dell", STAC_DELL_M4_1),
1692 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
1693 "unknown Dell", STAC_DELL_M4_1),
1694 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
1695 "unknown Dell", STAC_DELL_M4_1),
1696 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
1697 "unknown Dell", STAC_DELL_M4_1),
1698 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
1699 "unknown Dell", STAC_DELL_M4_1),
1700 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
1701 "unknown Dell", STAC_DELL_M4_1),
1702 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
1703 "unknown Dell", STAC_DELL_M4_2),
1704 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
1705 "unknown Dell", STAC_DELL_M4_2),
1706 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
1707 "unknown Dell", STAC_DELL_M4_2),
1708 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
1709 "unknown Dell", STAC_DELL_M4_2),
1713 static unsigned int ref922x_pin_configs[10] = {
1714 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1715 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
1716 0x40000100, 0x40000100,
1720 STAC 922X pin configs for
1727 static unsigned int dell_922x_d81_pin_configs[10] = {
1728 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1729 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1730 0x01813122, 0x400001f2,
1734 STAC 922X pin configs for
1738 static unsigned int dell_922x_d82_pin_configs[10] = {
1739 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1740 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1741 0x01813122, 0x400001f1,
1745 STAC 922X pin configs for
1748 static unsigned int dell_922x_m81_pin_configs[10] = {
1749 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1750 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1751 0x40C003f1, 0x405003f0,
1755 STAC 9221 A1 pin configs for
1756 102801D7 (Dell XPS M1210)
1758 static unsigned int dell_922x_m82_pin_configs[10] = {
1759 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1760 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
1761 0x508003f3, 0x405003f4,
1764 static unsigned int d945gtp3_pin_configs[10] = {
1765 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
1766 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1767 0x02a19120, 0x40000100,
1770 static unsigned int d945gtp5_pin_configs[10] = {
1771 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1772 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
1773 0x02a19320, 0x40000100,
1776 static unsigned int intel_mac_v1_pin_configs[10] = {
1777 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1778 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
1779 0x400000fc, 0x400000fb,
1782 static unsigned int intel_mac_v2_pin_configs[10] = {
1783 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1784 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
1785 0x400000fc, 0x400000fb,
1788 static unsigned int intel_mac_v3_pin_configs[10] = {
1789 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1790 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1791 0x400000fc, 0x400000fb,
1794 static unsigned int intel_mac_v4_pin_configs[10] = {
1795 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1796 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1797 0x400000fc, 0x400000fb,
1800 static unsigned int intel_mac_v5_pin_configs[10] = {
1801 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1802 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1803 0x400000fc, 0x400000fb,
1806 static unsigned int ecs202_pin_configs[10] = {
1807 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1808 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1809 0x9037012e, 0x40e000f2,
1812 static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
1813 [STAC_D945_REF] = ref922x_pin_configs,
1814 [STAC_D945GTP3] = d945gtp3_pin_configs,
1815 [STAC_D945GTP5] = d945gtp5_pin_configs,
1816 [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
1817 [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
1818 [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
1819 [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
1820 [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
1821 [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
1822 /* for backward compatibility */
1823 [STAC_MACMINI] = intel_mac_v3_pin_configs,
1824 [STAC_MACBOOK] = intel_mac_v5_pin_configs,
1825 [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
1826 [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
1827 [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
1828 [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
1829 [STAC_ECS_202] = ecs202_pin_configs,
1830 [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
1831 [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
1832 [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
1833 [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,
1836 static const char *stac922x_models[STAC_922X_MODELS] = {
1837 [STAC_D945_REF] = "ref",
1838 [STAC_D945GTP5] = "5stack",
1839 [STAC_D945GTP3] = "3stack",
1840 [STAC_INTEL_MAC_V1] = "intel-mac-v1",
1841 [STAC_INTEL_MAC_V2] = "intel-mac-v2",
1842 [STAC_INTEL_MAC_V3] = "intel-mac-v3",
1843 [STAC_INTEL_MAC_V4] = "intel-mac-v4",
1844 [STAC_INTEL_MAC_V5] = "intel-mac-v5",
1845 [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
1846 /* for backward compatibility */
1847 [STAC_MACMINI] = "macmini",
1848 [STAC_MACBOOK] = "macbook",
1849 [STAC_MACBOOK_PRO_V1] = "macbook-pro-v1",
1850 [STAC_MACBOOK_PRO_V2] = "macbook-pro",
1851 [STAC_IMAC_INTEL] = "imac-intel",
1852 [STAC_IMAC_INTEL_20] = "imac-intel-20",
1853 [STAC_ECS_202] = "ecs202",
1854 [STAC_922X_DELL_D81] = "dell-d81",
1855 [STAC_922X_DELL_D82] = "dell-d82",
1856 [STAC_922X_DELL_M81] = "dell-m81",
1857 [STAC_922X_DELL_M82] = "dell-m82",
1860 static struct snd_pci_quirk stac922x_cfg_tbl[] = {
1861 /* SigmaTel reference board */
1862 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1863 "DFI LanParty", STAC_D945_REF),
1864 /* Intel 945G based systems */
1865 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
1866 "Intel D945G", STAC_D945GTP3),
1867 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
1868 "Intel D945G", STAC_D945GTP3),
1869 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
1870 "Intel D945G", STAC_D945GTP3),
1871 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
1872 "Intel D945G", STAC_D945GTP3),
1873 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
1874 "Intel D945G", STAC_D945GTP3),
1875 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
1876 "Intel D945G", STAC_D945GTP3),
1877 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
1878 "Intel D945G", STAC_D945GTP3),
1879 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
1880 "Intel D945G", STAC_D945GTP3),
1881 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
1882 "Intel D945G", STAC_D945GTP3),
1883 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
1884 "Intel D945G", STAC_D945GTP3),
1885 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
1886 "Intel D945G", STAC_D945GTP3),
1887 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
1888 "Intel D945G", STAC_D945GTP3),
1889 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
1890 "Intel D945G", STAC_D945GTP3),
1891 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
1892 "Intel D945G", STAC_D945GTP3),
1893 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
1894 "Intel D945G", STAC_D945GTP3),
1895 /* Intel D945G 5-stack systems */
1896 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
1897 "Intel D945G", STAC_D945GTP5),
1898 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
1899 "Intel D945G", STAC_D945GTP5),
1900 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
1901 "Intel D945G", STAC_D945GTP5),
1902 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
1903 "Intel D945G", STAC_D945GTP5),
1904 /* Intel 945P based systems */
1905 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
1906 "Intel D945P", STAC_D945GTP3),
1907 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
1908 "Intel D945P", STAC_D945GTP3),
1909 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
1910 "Intel D945P", STAC_D945GTP3),
1911 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
1912 "Intel D945P", STAC_D945GTP3),
1913 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
1914 "Intel D945P", STAC_D945GTP3),
1915 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
1916 "Intel D945P", STAC_D945GTP5),
1918 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
1919 SND_PCI_QUIRK(0x8384, 0x7680,
1920 "Mac", STAC_INTEL_MAC_AUTO),
1922 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
1923 "unknown Dell", STAC_922X_DELL_D81),
1924 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
1925 "unknown Dell", STAC_922X_DELL_D81),
1926 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
1927 "unknown Dell", STAC_922X_DELL_D81),
1928 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
1929 "unknown Dell", STAC_922X_DELL_D82),
1930 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
1931 "unknown Dell", STAC_922X_DELL_M81),
1932 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
1933 "unknown Dell", STAC_922X_DELL_D82),
1934 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
1935 "unknown Dell", STAC_922X_DELL_D81),
1936 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
1937 "unknown Dell", STAC_922X_DELL_D81),
1938 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
1939 "Dell XPS M1210", STAC_922X_DELL_M82),
1940 /* ECS/PC Chips boards */
1941 SND_PCI_QUIRK(0x1019, 0x2144,
1942 "ECS/PC chips", STAC_ECS_202),
1943 SND_PCI_QUIRK(0x1019, 0x2608,
1944 "ECS/PC chips", STAC_ECS_202),
1945 SND_PCI_QUIRK(0x1019, 0x2633,
1946 "ECS/PC chips P17G/1333", STAC_ECS_202),
1947 SND_PCI_QUIRK(0x1019, 0x2811,
1948 "ECS/PC chips", STAC_ECS_202),
1949 SND_PCI_QUIRK(0x1019, 0x2812,
1950 "ECS/PC chips", STAC_ECS_202),
1951 SND_PCI_QUIRK(0x1019, 0x2813,
1952 "ECS/PC chips", STAC_ECS_202),
1953 SND_PCI_QUIRK(0x1019, 0x2814,
1954 "ECS/PC chips", STAC_ECS_202),
1955 SND_PCI_QUIRK(0x1019, 0x2815,
1956 "ECS/PC chips", STAC_ECS_202),
1957 SND_PCI_QUIRK(0x1019, 0x2816,
1958 "ECS/PC chips", STAC_ECS_202),
1959 SND_PCI_QUIRK(0x1019, 0x2817,
1960 "ECS/PC chips", STAC_ECS_202),
1961 SND_PCI_QUIRK(0x1019, 0x2818,
1962 "ECS/PC chips", STAC_ECS_202),
1963 SND_PCI_QUIRK(0x1019, 0x2819,
1964 "ECS/PC chips", STAC_ECS_202),
1965 SND_PCI_QUIRK(0x1019, 0x2820,
1966 "ECS/PC chips", STAC_ECS_202),
1970 static unsigned int ref927x_pin_configs[14] = {
1971 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
1972 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
1973 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
1974 0x01c42190, 0x40000100,
1977 static unsigned int d965_3st_pin_configs[14] = {
1978 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
1979 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
1980 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1981 0x40000100, 0x40000100
1984 static unsigned int d965_5st_pin_configs[14] = {
1985 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
1986 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
1987 0x40000100, 0x40000100, 0x40000100, 0x01442070,
1988 0x40000100, 0x40000100
1991 static unsigned int dell_3st_pin_configs[14] = {
1992 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
1993 0x01111212, 0x01116211, 0x01813050, 0x01112214,
1994 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
1995 0x40c003fc, 0x40000100
1998 static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
1999 [STAC_D965_REF] = ref927x_pin_configs,
2000 [STAC_D965_3ST] = d965_3st_pin_configs,
2001 [STAC_D965_5ST] = d965_5st_pin_configs,
2002 [STAC_DELL_3ST] = dell_3st_pin_configs,
2003 [STAC_DELL_BIOS] = NULL,
2006 static const char *stac927x_models[STAC_927X_MODELS] = {
2007 [STAC_D965_REF] = "ref",
2008 [STAC_D965_3ST] = "3stack",
2009 [STAC_D965_5ST] = "5stack",
2010 [STAC_DELL_3ST] = "dell-3stack",
2011 [STAC_DELL_BIOS] = "dell-bios",
2014 static struct snd_pci_quirk stac927x_cfg_tbl[] = {
2015 /* SigmaTel reference board */
2016 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2017 "DFI LanParty", STAC_D965_REF),
2018 /* Intel 946 based systems */
2019 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
2020 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
2021 /* 965 based 3 stack systems */
2022 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2116, "Intel D965", STAC_D965_3ST),
2023 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2115, "Intel D965", STAC_D965_3ST),
2024 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2114, "Intel D965", STAC_D965_3ST),
2025 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2113, "Intel D965", STAC_D965_3ST),
2026 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2112, "Intel D965", STAC_D965_3ST),
2027 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2111, "Intel D965", STAC_D965_3ST),
2028 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2110, "Intel D965", STAC_D965_3ST),
2029 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2009, "Intel D965", STAC_D965_3ST),
2030 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2008, "Intel D965", STAC_D965_3ST),
2031 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2007, "Intel D965", STAC_D965_3ST),
2032 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2006, "Intel D965", STAC_D965_3ST),
2033 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2005, "Intel D965", STAC_D965_3ST),
2034 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2004, "Intel D965", STAC_D965_3ST),
2035 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2003, "Intel D965", STAC_D965_3ST),
2036 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2002, "Intel D965", STAC_D965_3ST),
2037 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2001, "Intel D965", STAC_D965_3ST),
2038 /* Dell 3 stack systems */
2039 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_3ST),
2040 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
2041 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
2042 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
2043 /* Dell 3 stack systems with verb table in BIOS */
2044 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
2045 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
2046 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS),
2047 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_3ST),
2048 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
2049 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
2050 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
2051 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
2052 /* 965 based 5 stack systems */
2053 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2301, "Intel D965", STAC_D965_5ST),
2054 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2302, "Intel D965", STAC_D965_5ST),
2055 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2303, "Intel D965", STAC_D965_5ST),
2056 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2304, "Intel D965", STAC_D965_5ST),
2057 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2305, "Intel D965", STAC_D965_5ST),
2058 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2501, "Intel D965", STAC_D965_5ST),
2059 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2502, "Intel D965", STAC_D965_5ST),
2060 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2503, "Intel D965", STAC_D965_5ST),
2061 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2504, "Intel D965", STAC_D965_5ST),
2065 static unsigned int ref9205_pin_configs[12] = {
2066 0x40000100, 0x40000100, 0x01016011, 0x01014010,
2067 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
2068 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
2072 STAC 9205 pin configs for
2079 10280228 (Dell Vostro 1500)
2081 static unsigned int dell_9205_m42_pin_configs[12] = {
2082 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2083 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2084 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2088 STAC 9205 pin configs for
2092 102801FF (Dell Precision M4300)
2097 static unsigned int dell_9205_m43_pin_configs[12] = {
2098 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2099 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2100 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2103 static unsigned int dell_9205_m44_pin_configs[12] = {
2104 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2105 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2106 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2109 static unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
2110 [STAC_9205_REF] = ref9205_pin_configs,
2111 [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
2112 [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
2113 [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
2116 static const char *stac9205_models[STAC_9205_MODELS] = {
2117 [STAC_9205_REF] = "ref",
2118 [STAC_9205_DELL_M42] = "dell-m42",
2119 [STAC_9205_DELL_M43] = "dell-m43",
2120 [STAC_9205_DELL_M44] = "dell-m44",
2123 static struct snd_pci_quirk stac9205_cfg_tbl[] = {
2124 /* SigmaTel reference board */
2125 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2126 "DFI LanParty", STAC_9205_REF),
2127 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
2128 "unknown Dell", STAC_9205_DELL_M42),
2129 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
2130 "unknown Dell", STAC_9205_DELL_M42),
2131 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
2132 "Dell Precision", STAC_9205_DELL_M43),
2133 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
2134 "Dell Precision", STAC_9205_DELL_M43),
2135 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
2136 "Dell Precision", STAC_9205_DELL_M43),
2137 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
2138 "unknown Dell", STAC_9205_DELL_M42),
2139 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
2140 "unknown Dell", STAC_9205_DELL_M42),
2141 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
2142 "Dell Precision", STAC_9205_DELL_M43),
2143 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
2144 "Dell Precision M4300", STAC_9205_DELL_M43),
2145 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
2146 "unknown Dell", STAC_9205_DELL_M42),
2147 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
2148 "Dell Precision", STAC_9205_DELL_M43),
2149 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
2150 "Dell Precision", STAC_9205_DELL_M43),
2151 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
2152 "Dell Precision", STAC_9205_DELL_M43),
2153 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
2154 "Dell Inspiron", STAC_9205_DELL_M44),
2155 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
2156 "Dell Vostro 1500", STAC_9205_DELL_M42),
2160 static int stac92xx_save_bios_config_regs(struct hda_codec *codec)
2163 struct sigmatel_spec *spec = codec->spec;
2165 if (! spec->bios_pin_configs) {
2166 spec->bios_pin_configs = kcalloc(spec->num_pins,
2167 sizeof(*spec->bios_pin_configs), GFP_KERNEL);
2168 if (! spec->bios_pin_configs)
2172 for (i = 0; i < spec->num_pins; i++) {
2173 hda_nid_t nid = spec->pin_nids[i];
2174 unsigned int pin_cfg;
2176 pin_cfg = snd_hda_codec_read(codec, nid, 0,
2177 AC_VERB_GET_CONFIG_DEFAULT, 0x00);
2178 snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x bios pin config %8.8x\n",
2180 spec->bios_pin_configs[i] = pin_cfg;
2186 static void stac92xx_set_config_reg(struct hda_codec *codec,
2187 hda_nid_t pin_nid, unsigned int pin_config)
2190 snd_hda_codec_write(codec, pin_nid, 0,
2191 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0,
2192 pin_config & 0x000000ff);
2193 snd_hda_codec_write(codec, pin_nid, 0,
2194 AC_VERB_SET_CONFIG_DEFAULT_BYTES_1,
2195 (pin_config & 0x0000ff00) >> 8);
2196 snd_hda_codec_write(codec, pin_nid, 0,
2197 AC_VERB_SET_CONFIG_DEFAULT_BYTES_2,
2198 (pin_config & 0x00ff0000) >> 16);
2199 snd_hda_codec_write(codec, pin_nid, 0,
2200 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3,
2202 i = snd_hda_codec_read(codec, pin_nid, 0,
2203 AC_VERB_GET_CONFIG_DEFAULT,
2205 snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x pin config %8.8x\n",
2209 static void stac92xx_set_config_regs(struct hda_codec *codec)
2212 struct sigmatel_spec *spec = codec->spec;
2214 if (!spec->pin_configs)
2217 for (i = 0; i < spec->num_pins; i++)
2218 stac92xx_set_config_reg(codec, spec->pin_nids[i],
2219 spec->pin_configs[i]);
2223 * Analog playback callbacks
2225 static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
2226 struct hda_codec *codec,
2227 struct snd_pcm_substream *substream)
2229 struct sigmatel_spec *spec = codec->spec;
2230 if (spec->stream_delay)
2231 msleep(spec->stream_delay);
2232 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2236 static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2237 struct hda_codec *codec,
2238 unsigned int stream_tag,
2239 unsigned int format,
2240 struct snd_pcm_substream *substream)
2242 struct sigmatel_spec *spec = codec->spec;
2243 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
2246 static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2247 struct hda_codec *codec,
2248 struct snd_pcm_substream *substream)
2250 struct sigmatel_spec *spec = codec->spec;
2251 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2255 * Digital playback callbacks
2257 static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2258 struct hda_codec *codec,
2259 struct snd_pcm_substream *substream)
2261 struct sigmatel_spec *spec = codec->spec;
2262 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2265 static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2266 struct hda_codec *codec,
2267 struct snd_pcm_substream *substream)
2269 struct sigmatel_spec *spec = codec->spec;
2270 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2273 static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2274 struct hda_codec *codec,
2275 unsigned int stream_tag,
2276 unsigned int format,
2277 struct snd_pcm_substream *substream)
2279 struct sigmatel_spec *spec = codec->spec;
2280 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2281 stream_tag, format, substream);
2286 * Analog capture callbacks
2288 static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2289 struct hda_codec *codec,
2290 unsigned int stream_tag,
2291 unsigned int format,
2292 struct snd_pcm_substream *substream)
2294 struct sigmatel_spec *spec = codec->spec;
2295 hda_nid_t nid = spec->adc_nids[substream->number];
2297 if (spec->powerdown_adcs) {
2299 snd_hda_codec_write_cache(codec, nid, 0,
2300 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
2302 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
2306 static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2307 struct hda_codec *codec,
2308 struct snd_pcm_substream *substream)
2310 struct sigmatel_spec *spec = codec->spec;
2311 hda_nid_t nid = spec->adc_nids[substream->number];
2313 snd_hda_codec_cleanup_stream(codec, nid);
2314 if (spec->powerdown_adcs)
2315 snd_hda_codec_write_cache(codec, nid, 0,
2316 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
2320 static struct hda_pcm_stream stac92xx_pcm_digital_playback = {
2324 /* NID is set in stac92xx_build_pcms */
2326 .open = stac92xx_dig_playback_pcm_open,
2327 .close = stac92xx_dig_playback_pcm_close,
2328 .prepare = stac92xx_dig_playback_pcm_prepare
2332 static struct hda_pcm_stream stac92xx_pcm_digital_capture = {
2336 /* NID is set in stac92xx_build_pcms */
2339 static struct hda_pcm_stream stac92xx_pcm_analog_playback = {
2343 .nid = 0x02, /* NID to query formats and rates */
2345 .open = stac92xx_playback_pcm_open,
2346 .prepare = stac92xx_playback_pcm_prepare,
2347 .cleanup = stac92xx_playback_pcm_cleanup
2351 static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
2355 .nid = 0x06, /* NID to query formats and rates */
2357 .open = stac92xx_playback_pcm_open,
2358 .prepare = stac92xx_playback_pcm_prepare,
2359 .cleanup = stac92xx_playback_pcm_cleanup
2363 static struct hda_pcm_stream stac92xx_pcm_analog_capture = {
2366 /* NID + .substreams is set in stac92xx_build_pcms */
2368 .prepare = stac92xx_capture_pcm_prepare,
2369 .cleanup = stac92xx_capture_pcm_cleanup
2373 static int stac92xx_build_pcms(struct hda_codec *codec)
2375 struct sigmatel_spec *spec = codec->spec;
2376 struct hda_pcm *info = spec->pcm_rec;
2378 codec->num_pcms = 1;
2379 codec->pcm_info = info;
2381 info->name = "STAC92xx Analog";
2382 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
2383 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
2384 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2385 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
2387 if (spec->alt_switch) {
2390 info->name = "STAC92xx Analog Alt";
2391 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
2394 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2397 info->name = "STAC92xx Digital";
2398 info->pcm_type = HDA_PCM_TYPE_SPDIF;
2399 if (spec->multiout.dig_out_nid) {
2400 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
2401 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2403 if (spec->dig_in_nid) {
2404 info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
2405 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2412 static unsigned int stac92xx_get_vref(struct hda_codec *codec, hda_nid_t nid)
2414 unsigned int pincap = snd_hda_param_read(codec, nid,
2416 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2417 if (pincap & AC_PINCAP_VREF_100)
2418 return AC_PINCTL_VREF_100;
2419 if (pincap & AC_PINCAP_VREF_80)
2420 return AC_PINCTL_VREF_80;
2421 if (pincap & AC_PINCAP_VREF_50)
2422 return AC_PINCTL_VREF_50;
2423 if (pincap & AC_PINCAP_VREF_GRD)
2424 return AC_PINCTL_VREF_GRD;
2428 static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
2431 snd_hda_codec_write_cache(codec, nid, 0,
2432 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2435 #define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2437 static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
2438 struct snd_ctl_elem_value *ucontrol)
2440 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2441 struct sigmatel_spec *spec = codec->spec;
2443 ucontrol->value.integer.value[0] = spec->hp_switch;
2447 static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
2448 struct snd_ctl_elem_value *ucontrol)
2450 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2451 struct sigmatel_spec *spec = codec->spec;
2453 spec->hp_switch = ucontrol->value.integer.value[0];
2455 /* check to be sure that the ports are upto date with
2458 codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26);
2463 #define stac92xx_io_switch_info snd_ctl_boolean_mono_info
2465 static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2467 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2468 struct sigmatel_spec *spec = codec->spec;
2469 int io_idx = kcontrol-> private_value & 0xff;
2471 ucontrol->value.integer.value[0] = spec->io_switch[io_idx];
2475 static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2477 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2478 struct sigmatel_spec *spec = codec->spec;
2479 hda_nid_t nid = kcontrol->private_value >> 8;
2480 int io_idx = kcontrol-> private_value & 0xff;
2481 unsigned short val = !!ucontrol->value.integer.value[0];
2483 spec->io_switch[io_idx] = val;
2486 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
2488 unsigned int pinctl = AC_PINCTL_IN_EN;
2489 if (io_idx) /* set VREF for mic */
2490 pinctl |= stac92xx_get_vref(codec, nid);
2491 stac92xx_auto_set_pinctl(codec, nid, pinctl);
2494 /* check the auto-mute again: we need to mute/unmute the speaker
2495 * appropriately according to the pin direction
2497 if (spec->hp_detect)
2498 codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26);
2503 #define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2505 static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
2506 struct snd_ctl_elem_value *ucontrol)
2508 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2509 struct sigmatel_spec *spec = codec->spec;
2511 ucontrol->value.integer.value[0] = spec->clfe_swap;
2515 static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
2516 struct snd_ctl_elem_value *ucontrol)
2518 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2519 struct sigmatel_spec *spec = codec->spec;
2520 hda_nid_t nid = kcontrol->private_value & 0xff;
2521 unsigned int val = !!ucontrol->value.integer.value[0];
2523 if (spec->clfe_swap == val)
2526 spec->clfe_swap = val;
2528 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
2529 spec->clfe_swap ? 0x4 : 0x0);
2534 #define STAC_CODEC_HP_SWITCH(xname) \
2535 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2538 .info = stac92xx_hp_switch_info, \
2539 .get = stac92xx_hp_switch_get, \
2540 .put = stac92xx_hp_switch_put, \
2543 #define STAC_CODEC_IO_SWITCH(xname, xpval) \
2544 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2547 .info = stac92xx_io_switch_info, \
2548 .get = stac92xx_io_switch_get, \
2549 .put = stac92xx_io_switch_put, \
2550 .private_value = xpval, \
2553 #define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2554 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2557 .info = stac92xx_clfe_switch_info, \
2558 .get = stac92xx_clfe_switch_get, \
2559 .put = stac92xx_clfe_switch_put, \
2560 .private_value = xpval, \
2564 STAC_CTL_WIDGET_VOL,
2565 STAC_CTL_WIDGET_MUTE,
2566 STAC_CTL_WIDGET_MONO_MUX,
2567 STAC_CTL_WIDGET_AMP_MUX,
2568 STAC_CTL_WIDGET_AMP_VOL,
2569 STAC_CTL_WIDGET_HP_SWITCH,
2570 STAC_CTL_WIDGET_IO_SWITCH,
2571 STAC_CTL_WIDGET_CLFE_SWITCH
2574 static struct snd_kcontrol_new stac92xx_control_templates[] = {
2575 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2576 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2579 STAC_AMP_VOL(NULL, 0, 0, 0, 0),
2580 STAC_CODEC_HP_SWITCH(NULL),
2581 STAC_CODEC_IO_SWITCH(NULL, 0),
2582 STAC_CODEC_CLFE_SWITCH(NULL, 0),
2585 /* add dynamic controls */
2586 static int stac92xx_add_control_idx(struct sigmatel_spec *spec, int type,
2587 int idx, const char *name, unsigned long val)
2589 struct snd_kcontrol_new *knew;
2591 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2592 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2594 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
2597 if (spec->kctl_alloc) {
2598 memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
2599 kfree(spec->kctl_alloc);
2601 spec->kctl_alloc = knew;
2602 spec->num_kctl_alloc = num;
2605 knew = &spec->kctl_alloc[spec->num_kctl_used];
2606 *knew = stac92xx_control_templates[type];
2608 knew->name = kstrdup(name, GFP_KERNEL);
2611 knew->private_value = val;
2612 spec->num_kctl_used++;
2617 /* add dynamic controls */
2618 static int stac92xx_add_control(struct sigmatel_spec *spec, int type,
2619 const char *name, unsigned long val)
2621 return stac92xx_add_control_idx(spec, type, 0, name, val);
2624 /* flag inputs as additional dynamic lineouts */
2625 static int stac92xx_add_dyn_out_pins(struct hda_codec *codec, struct auto_pin_cfg *cfg)
2627 struct sigmatel_spec *spec = codec->spec;
2628 unsigned int wcaps, wtype;
2629 int i, num_dacs = 0;
2631 /* use the wcaps cache to count all DACs available for line-outs */
2632 for (i = 0; i < codec->num_nodes; i++) {
2633 wcaps = codec->wcaps[i];
2634 wtype = (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
2636 if (wtype == AC_WID_AUD_OUT && !(wcaps & AC_WCAP_DIGITAL))
2640 snd_printdd("%s: total dac count=%d\n", __func__, num_dacs);
2642 switch (cfg->line_outs) {
2644 /* add line-in as side */
2645 if (cfg->input_pins[AUTO_PIN_LINE] && num_dacs > 3) {
2646 cfg->line_out_pins[cfg->line_outs] =
2647 cfg->input_pins[AUTO_PIN_LINE];
2648 spec->line_switch = 1;
2653 /* add line-in as clfe and mic as side */
2654 if (cfg->input_pins[AUTO_PIN_LINE] && num_dacs > 2) {
2655 cfg->line_out_pins[cfg->line_outs] =
2656 cfg->input_pins[AUTO_PIN_LINE];
2657 spec->line_switch = 1;
2660 if (cfg->input_pins[AUTO_PIN_MIC] && num_dacs > 3) {
2661 cfg->line_out_pins[cfg->line_outs] =
2662 cfg->input_pins[AUTO_PIN_MIC];
2663 spec->mic_switch = 1;
2668 /* add line-in as surr and mic as clfe */
2669 if (cfg->input_pins[AUTO_PIN_LINE] && num_dacs > 1) {
2670 cfg->line_out_pins[cfg->line_outs] =
2671 cfg->input_pins[AUTO_PIN_LINE];
2672 spec->line_switch = 1;
2675 if (cfg->input_pins[AUTO_PIN_MIC] && num_dacs > 2) {
2676 cfg->line_out_pins[cfg->line_outs] =
2677 cfg->input_pins[AUTO_PIN_MIC];
2678 spec->mic_switch = 1;
2688 static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2692 for (i = 0; i < spec->multiout.num_dacs; i++) {
2693 if (spec->multiout.dac_nids[i] == nid)
2701 * Fill in the dac_nids table from the parsed pin configuration
2702 * This function only works when every pin in line_out_pins[]
2703 * contains atleast one DAC in its connection list. Some 92xx
2704 * codecs are not connected directly to a DAC, such as the 9200
2705 * and 9202/925x. For those, dac_nids[] must be hard-coded.
2707 static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec,
2708 struct auto_pin_cfg *cfg)
2710 struct sigmatel_spec *spec = codec->spec;
2711 int i, j, conn_len = 0;
2712 hda_nid_t nid, conn[HDA_MAX_CONNECTIONS];
2713 unsigned int wcaps, wtype;
2715 for (i = 0; i < cfg->line_outs; i++) {
2716 nid = cfg->line_out_pins[i];
2717 conn_len = snd_hda_get_connections(codec, nid, conn,
2718 HDA_MAX_CONNECTIONS);
2719 for (j = 0; j < conn_len; j++) {
2720 wcaps = snd_hda_param_read(codec, conn[j],
2721 AC_PAR_AUDIO_WIDGET_CAP);
2722 wtype = (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
2723 if (wtype != AC_WID_AUD_OUT ||
2724 (wcaps & AC_WCAP_DIGITAL))
2726 /* conn[j] is a DAC routed to this line-out */
2727 if (!is_in_dac_nids(spec, conn[j]))
2731 if (j == conn_len) {
2732 if (spec->multiout.num_dacs > 0) {
2733 /* we have already working output pins,
2734 * so let's drop the broken ones again
2736 cfg->line_outs = spec->multiout.num_dacs;
2739 /* error out, no available DAC found */
2741 "%s: No available DAC for pin 0x%x\n",
2746 spec->multiout.dac_nids[i] = conn[j];
2747 spec->multiout.num_dacs++;
2749 /* select this DAC in the pin's input mux */
2750 snd_hda_codec_write_cache(codec, nid, 0,
2751 AC_VERB_SET_CONNECT_SEL, j);
2756 snd_printd("dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2757 spec->multiout.num_dacs,
2758 spec->multiout.dac_nids[0],
2759 spec->multiout.dac_nids[1],
2760 spec->multiout.dac_nids[2],
2761 spec->multiout.dac_nids[3],
2762 spec->multiout.dac_nids[4]);
2766 /* create volume control/switch for the given prefx type */
2767 static int create_controls(struct sigmatel_spec *spec, const char *pfx, hda_nid_t nid, int chs)
2772 sprintf(name, "%s Playback Volume", pfx);
2773 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, name,
2774 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
2777 sprintf(name, "%s Playback Switch", pfx);
2778 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, name,
2779 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
2785 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
2787 if (!spec->multiout.hp_nid)
2788 spec->multiout.hp_nid = nid;
2789 else if (spec->multiout.num_dacs > 4) {
2790 printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid);
2793 spec->multiout.dac_nids[spec->multiout.num_dacs] = nid;
2794 spec->multiout.num_dacs++;
2799 static int check_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2801 if (is_in_dac_nids(spec, nid))
2803 if (spec->multiout.hp_nid == nid)
2808 /* add playback controls from the parsed DAC table */
2809 static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
2810 const struct auto_pin_cfg *cfg)
2812 static const char *chname[4] = {
2813 "Front", "Surround", NULL /*CLFE*/, "Side"
2818 struct sigmatel_spec *spec = codec->spec;
2819 unsigned int wid_caps, pincap;
2822 for (i = 0; i < cfg->line_outs && i < spec->multiout.num_dacs; i++) {
2823 if (!spec->multiout.dac_nids[i])
2826 nid = spec->multiout.dac_nids[i];
2830 err = create_controls(spec, "Center", nid, 1);
2833 err = create_controls(spec, "LFE", nid, 2);
2837 wid_caps = get_wcaps(codec, nid);
2839 if (wid_caps & AC_WCAP_LR_SWAP) {
2840 err = stac92xx_add_control(spec,
2841 STAC_CTL_WIDGET_CLFE_SWITCH,
2842 "Swap Center/LFE Playback Switch", nid);
2849 err = create_controls(spec, chname[i], nid, 3);
2855 if ((spec->multiout.num_dacs - cfg->line_outs) > 0 &&
2856 cfg->hp_outs && !spec->multiout.hp_nid)
2857 spec->multiout.hp_nid = nid;
2859 if (cfg->hp_outs > 1) {
2860 err = stac92xx_add_control(spec,
2861 STAC_CTL_WIDGET_HP_SWITCH,
2862 "Headphone as Line Out Switch", 0);
2867 if (spec->line_switch) {
2868 nid = cfg->input_pins[AUTO_PIN_LINE];
2869 pincap = snd_hda_param_read(codec, nid,
2871 if (pincap & AC_PINCAP_OUT) {
2872 err = stac92xx_add_control(spec,
2873 STAC_CTL_WIDGET_IO_SWITCH,
2874 "Line In as Output Switch", nid << 8);
2880 if (spec->mic_switch) {
2881 unsigned int def_conf;
2882 unsigned int mic_pin = AUTO_PIN_MIC;
2884 nid = cfg->input_pins[mic_pin];
2885 def_conf = snd_hda_codec_read(codec, nid, 0,
2886 AC_VERB_GET_CONFIG_DEFAULT, 0);
2887 /* some laptops have an internal analog microphone
2888 * which can't be used as a output */
2889 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) {
2890 pincap = snd_hda_param_read(codec, nid,
2892 if (pincap & AC_PINCAP_OUT) {
2893 err = stac92xx_add_control(spec,
2894 STAC_CTL_WIDGET_IO_SWITCH,
2895 "Mic as Output Switch", (nid << 8) | 1);
2896 nid = snd_hda_codec_read(codec, nid, 0,
2897 AC_VERB_GET_CONNECT_LIST, 0) & 0xff;
2898 if (!check_in_dac_nids(spec, nid))
2899 add_spec_dacs(spec, nid);
2903 } else if (mic_pin == AUTO_PIN_MIC) {
2904 mic_pin = AUTO_PIN_FRONT_MIC;
2912 /* add playback controls for Speaker and HP outputs */
2913 static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
2914 struct auto_pin_cfg *cfg)
2916 struct sigmatel_spec *spec = codec->spec;
2918 int i, old_num_dacs, err;
2920 old_num_dacs = spec->multiout.num_dacs;
2921 for (i = 0; i < cfg->hp_outs; i++) {
2922 unsigned int wid_caps = get_wcaps(codec, cfg->hp_pins[i]);
2923 if (wid_caps & AC_WCAP_UNSOL_CAP)
2924 spec->hp_detect = 1;
2925 nid = snd_hda_codec_read(codec, cfg->hp_pins[i], 0,
2926 AC_VERB_GET_CONNECT_LIST, 0) & 0xff;
2927 if (check_in_dac_nids(spec, nid))
2931 add_spec_dacs(spec, nid);
2933 for (i = 0; i < cfg->speaker_outs; i++) {
2934 nid = snd_hda_codec_read(codec, cfg->speaker_pins[i], 0,
2935 AC_VERB_GET_CONNECT_LIST, 0) & 0xff;
2936 if (check_in_dac_nids(spec, nid))
2940 add_spec_dacs(spec, nid);
2942 for (i = 0; i < cfg->line_outs; i++) {
2943 nid = snd_hda_codec_read(codec, cfg->line_out_pins[i], 0,
2944 AC_VERB_GET_CONNECT_LIST, 0) & 0xff;
2945 if (check_in_dac_nids(spec, nid))
2949 add_spec_dacs(spec, nid);
2951 for (i = old_num_dacs; i < spec->multiout.num_dacs; i++) {
2952 static const char *pfxs[] = {
2953 "Speaker", "External Speaker", "Speaker2",
2955 err = create_controls(spec, pfxs[i - old_num_dacs],
2956 spec->multiout.dac_nids[i], 3);
2960 if (spec->multiout.hp_nid) {
2961 err = create_controls(spec, "Headphone",
2962 spec->multiout.hp_nid, 3);
2970 /* labels for mono mux outputs */
2971 static const char *stac92xx_mono_labels[4] = {
2972 "DAC0", "DAC1", "Mixer", "DAC2"
2975 /* create mono mux for mono out on capable codecs */
2976 static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec)
2978 struct sigmatel_spec *spec = codec->spec;
2979 struct hda_input_mux *mono_mux = &spec->private_mono_mux;
2981 hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)];
2983 num_cons = snd_hda_get_connections(codec,
2986 HDA_MAX_NUM_INPUTS);
2987 if (!num_cons || num_cons > ARRAY_SIZE(stac92xx_mono_labels))
2990 for (i = 0; i < num_cons; i++) {
2991 mono_mux->items[mono_mux->num_items].label =
2992 stac92xx_mono_labels[i];
2993 mono_mux->items[mono_mux->num_items].index = i;
2994 mono_mux->num_items++;
2997 return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX,
2998 "Mono Mux", spec->mono_nid);
3001 /* labels for amp mux outputs */
3002 static const char *stac92xx_amp_labels[3] = {
3003 "Front Microphone", "Microphone", "Line In"
3006 /* create amp out controls mux on capable codecs */
3007 static int stac92xx_auto_create_amp_output_ctls(struct hda_codec *codec)
3009 struct sigmatel_spec *spec = codec->spec;
3010 struct hda_input_mux *amp_mux = &spec->private_amp_mux;
3013 for (i = 0; i < spec->num_amps; i++) {
3014 amp_mux->items[amp_mux->num_items].label =
3015 stac92xx_amp_labels[i];
3016 amp_mux->items[amp_mux->num_items].index = i;
3017 amp_mux->num_items++;
3020 if (spec->num_amps > 1) {
3021 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_MUX,
3022 "Amp Selector Capture Switch", 0);
3026 return stac92xx_add_control(spec, STAC_CTL_WIDGET_AMP_VOL,
3027 "Amp Capture Volume",
3028 HDA_COMPOSE_AMP_VAL(spec->amp_nids[0], 3, 0, HDA_INPUT));
3032 /* create PC beep volume controls */
3033 static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec,
3036 struct sigmatel_spec *spec = codec->spec;
3037 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3040 /* check for mute support for the the amp */
3041 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
3042 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3043 "PC Beep Playback Switch",
3044 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3049 /* check to see if there is volume support for the amp */
3050 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3051 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL,
3052 "PC Beep Playback Volume",
3053 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3060 static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec)
3062 struct sigmatel_spec *spec = codec->spec;
3063 int wcaps, nid, i, err = 0;
3065 for (i = 0; i < spec->num_muxes; i++) {
3066 nid = spec->mux_nids[i];
3067 wcaps = get_wcaps(codec, nid);
3069 if (wcaps & AC_WCAP_OUT_AMP) {
3070 err = stac92xx_add_control_idx(spec,
3071 STAC_CTL_WIDGET_VOL, i, "Mux Capture Volume",
3072 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3080 static const char *stac92xx_spdif_labels[3] = {
3081 "Digital Playback", "Analog Mux 1", "Analog Mux 2",
3084 static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec)
3086 struct sigmatel_spec *spec = codec->spec;
3087 struct hda_input_mux *spdif_mux = &spec->private_smux;
3088 const char **labels = spec->spdif_labels;
3090 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
3092 num_cons = snd_hda_get_connections(codec,
3095 HDA_MAX_NUM_INPUTS);
3100 labels = stac92xx_spdif_labels;
3102 for (i = 0; i < num_cons; i++) {
3103 spdif_mux->items[spdif_mux->num_items].label = labels[i];
3104 spdif_mux->items[spdif_mux->num_items].index = i;
3105 spdif_mux->num_items++;
3111 /* labels for dmic mux inputs */
3112 static const char *stac92xx_dmic_labels[5] = {
3113 "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3114 "Digital Mic 3", "Digital Mic 4"
3117 /* create playback/capture controls for input pins on dmic capable codecs */
3118 static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec,
3119 const struct auto_pin_cfg *cfg)
3121 struct sigmatel_spec *spec = codec->spec;
3122 struct hda_input_mux *dimux = &spec->private_dimux;
3123 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
3127 dimux->items[dimux->num_items].label = stac92xx_dmic_labels[0];
3128 dimux->items[dimux->num_items].index = 0;
3131 for (i = 0; i < spec->num_dmics; i++) {
3136 unsigned int def_conf;
3138 def_conf = snd_hda_codec_read(codec,
3141 AC_VERB_GET_CONFIG_DEFAULT,
3143 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3146 nid = spec->dmic_nids[i];
3147 num_cons = snd_hda_get_connections(codec,
3150 HDA_MAX_NUM_INPUTS);
3151 for (j = 0; j < num_cons; j++)
3152 if (con_lst[j] == nid) {
3158 wcaps = get_wcaps(codec, nid) &
3159 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
3162 sprintf(name, "%s Capture Volume",
3163 stac92xx_dmic_labels[dimux->num_items]);
3165 err = stac92xx_add_control(spec,
3166 STAC_CTL_WIDGET_VOL,
3168 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3169 (wcaps & AC_WCAP_OUT_AMP) ?
3170 HDA_OUTPUT : HDA_INPUT));
3175 dimux->items[dimux->num_items].label =
3176 stac92xx_dmic_labels[dimux->num_items];
3177 dimux->items[dimux->num_items].index = index;
3184 /* create playback/capture controls for input pins */
3185 static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
3187 struct sigmatel_spec *spec = codec->spec;
3188 struct hda_input_mux *imux = &spec->private_imux;
3189 hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
3192 for (i = 0; i < AUTO_PIN_LAST; i++) {
3195 if (!cfg->input_pins[i])
3198 for (j = 0; j < spec->num_muxes; j++) {
3200 num_cons = snd_hda_get_connections(codec,
3203 HDA_MAX_NUM_INPUTS);
3204 for (k = 0; k < num_cons; k++)
3205 if (con_lst[k] == cfg->input_pins[i]) {
3212 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
3213 imux->items[imux->num_items].index = index;
3217 if (imux->num_items) {
3219 * Set the current input for the muxes.
3220 * The STAC9221 has two input muxes with identical source
3221 * NID lists. Hopefully this won't get confused.
3223 for (i = 0; i < spec->num_muxes; i++) {
3224 snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0,
3225 AC_VERB_SET_CONNECT_SEL,
3226 imux->items[0].index);
3233 static void stac92xx_auto_init_multi_out(struct hda_codec *codec)
3235 struct sigmatel_spec *spec = codec->spec;
3238 for (i = 0; i < spec->autocfg.line_outs; i++) {
3239 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3240 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3244 static void stac92xx_auto_init_hp_out(struct hda_codec *codec)
3246 struct sigmatel_spec *spec = codec->spec;
3249 for (i = 0; i < spec->autocfg.hp_outs; i++) {
3251 pin = spec->autocfg.hp_pins[i];
3252 if (pin) /* connect to front */
3253 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3255 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
3257 pin = spec->autocfg.speaker_pins[i];
3258 if (pin) /* connect to front */
3259 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN);
3263 static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out, hda_nid_t dig_in)
3265 struct sigmatel_spec *spec = codec->spec;
3267 int hp_speaker_swap = 0;
3269 if ((err = snd_hda_parse_pin_def_config(codec,
3271 spec->dmic_nids)) < 0)
3273 if (! spec->autocfg.line_outs)
3274 return 0; /* can't find valid pin config */
3276 /* If we have no real line-out pin and multiple hp-outs, HPs should
3277 * be set up as multi-channel outputs.
3279 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT &&
3280 spec->autocfg.hp_outs > 1) {
3281 /* Copy hp_outs to line_outs, backup line_outs in
3282 * speaker_outs so that the following routines can handle
3283 * HP pins as primary outputs.
3285 memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins,
3286 sizeof(spec->autocfg.line_out_pins));
3287 spec->autocfg.speaker_outs = spec->autocfg.line_outs;
3288 memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins,
3289 sizeof(spec->autocfg.hp_pins));
3290 spec->autocfg.line_outs = spec->autocfg.hp_outs;
3291 hp_speaker_swap = 1;
3293 if (spec->autocfg.mono_out_pin) {
3294 int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) &
3295 (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
3296 u32 caps = query_amp_caps(codec,
3297 spec->autocfg.mono_out_pin, dir);
3298 hda_nid_t conn_list[1];
3300 /* get the mixer node and then the mono mux if it exists */
3301 if (snd_hda_get_connections(codec,
3302 spec->autocfg.mono_out_pin, conn_list, 1) &&
3303 snd_hda_get_connections(codec, conn_list[0],
3306 int wcaps = get_wcaps(codec, conn_list[0]);
3307 int wid_type = (wcaps & AC_WCAP_TYPE)
3308 >> AC_WCAP_TYPE_SHIFT;
3309 /* LR swap check, some stac925x have a mux that
3310 * changes the DACs output path instead of the
3313 if (wid_type == AC_WID_AUD_SEL &&
3314 !(wcaps & AC_WCAP_LR_SWAP))
3315 spec->mono_nid = conn_list[0];
3318 hda_nid_t nid = spec->autocfg.mono_out_pin;
3320 /* most mono outs have a least a mute/unmute switch */
3321 dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT;
3322 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3323 "Mono Playback Switch",
3324 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3327 /* check for volume support for the amp */
3328 if ((caps & AC_AMPCAP_NUM_STEPS)
3329 >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3330 err = stac92xx_add_control(spec,
3331 STAC_CTL_WIDGET_VOL,
3332 "Mono Playback Volume",
3333 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3339 stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin,
3343 if ((err = stac92xx_add_dyn_out_pins(codec, &spec->autocfg)) < 0)
3345 if (spec->multiout.num_dacs == 0)
3346 if ((err = stac92xx_auto_fill_dac_nids(codec, &spec->autocfg)) < 0)
3349 err = stac92xx_auto_create_multi_out_ctls(codec, &spec->autocfg);
3354 /* setup analog beep controls */
3355 if (spec->anabeep_nid > 0) {
3356 err = stac92xx_auto_create_beep_ctls(codec,
3362 /* setup digital beep controls and input device */
3363 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3364 if (spec->digbeep_nid > 0) {
3365 hda_nid_t nid = spec->digbeep_nid;
3367 err = stac92xx_auto_create_beep_ctls(codec, nid);
3370 err = snd_hda_attach_beep_device(codec, nid);
3376 if (hp_speaker_swap == 1) {
3377 /* Restore the hp_outs and line_outs */
3378 memcpy(spec->autocfg.hp_pins, spec->autocfg.line_out_pins,
3379 sizeof(spec->autocfg.line_out_pins));
3380 spec->autocfg.hp_outs = spec->autocfg.line_outs;
3381 memcpy(spec->autocfg.line_out_pins, spec->autocfg.speaker_pins,
3382 sizeof(spec->autocfg.speaker_pins));
3383 spec->autocfg.line_outs = spec->autocfg.speaker_outs;
3384 memset(spec->autocfg.speaker_pins, 0,
3385 sizeof(spec->autocfg.speaker_pins));
3386 spec->autocfg.speaker_outs = 0;
3389 err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg);
3394 err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg);
3399 if (spec->mono_nid > 0) {
3400 err = stac92xx_auto_create_mono_output_ctls(codec);
3404 if (spec->num_amps > 0) {
3405 err = stac92xx_auto_create_amp_output_ctls(codec);
3409 if (spec->num_dmics > 0 && !spec->dinput_mux)
3410 if ((err = stac92xx_auto_create_dmic_input_ctls(codec,
3411 &spec->autocfg)) < 0)
3413 if (spec->num_muxes > 0) {
3414 err = stac92xx_auto_create_mux_input_ctls(codec);
3418 if (spec->num_smuxes > 0) {
3419 err = stac92xx_auto_create_spdif_mux_ctls(codec);
3424 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3425 if (spec->multiout.max_channels > 2)
3426 spec->surr_switch = 1;
3428 if (spec->autocfg.dig_out_pin)
3429 spec->multiout.dig_out_nid = dig_out;
3430 if (dig_in && spec->autocfg.dig_in_pin)
3431 spec->dig_in_nid = dig_in;
3433 if (spec->kctl_alloc)
3434 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3436 spec->input_mux = &spec->private_imux;
3437 spec->dinput_mux = &spec->private_dimux;
3438 spec->sinput_mux = &spec->private_smux;
3439 spec->mono_mux = &spec->private_mono_mux;
3440 spec->amp_mux = &spec->private_amp_mux;
3444 /* add playback controls for HP output */
3445 static int stac9200_auto_create_hp_ctls(struct hda_codec *codec,
3446 struct auto_pin_cfg *cfg)
3448 struct sigmatel_spec *spec = codec->spec;
3449 hda_nid_t pin = cfg->hp_pins[0];
3450 unsigned int wid_caps;
3455 wid_caps = get_wcaps(codec, pin);
3456 if (wid_caps & AC_WCAP_UNSOL_CAP)
3457 spec->hp_detect = 1;
3462 /* add playback controls for LFE output */
3463 static int stac9200_auto_create_lfe_ctls(struct hda_codec *codec,
3464 struct auto_pin_cfg *cfg)
3466 struct sigmatel_spec *spec = codec->spec;
3468 hda_nid_t lfe_pin = 0x0;
3472 * search speaker outs and line outs for a mono speaker pin
3473 * with an amp. If one is found, add LFE controls
3476 for (i = 0; i < spec->autocfg.speaker_outs && lfe_pin == 0x0; i++) {
3477 hda_nid_t pin = spec->autocfg.speaker_pins[i];
3478 unsigned int wcaps = get_wcaps(codec, pin);
3479 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3480 if (wcaps == AC_WCAP_OUT_AMP)
3481 /* found a mono speaker with an amp, must be lfe */
3485 /* if speaker_outs is 0, then speakers may be in line_outs */
3486 if (lfe_pin == 0 && spec->autocfg.speaker_outs == 0) {
3487 for (i = 0; i < spec->autocfg.line_outs && lfe_pin == 0x0; i++) {
3488 hda_nid_t pin = spec->autocfg.line_out_pins[i];
3489 unsigned int defcfg;
3490 defcfg = snd_hda_codec_read(codec, pin, 0,
3491 AC_VERB_GET_CONFIG_DEFAULT,
3493 if (get_defcfg_device(defcfg) == AC_JACK_SPEAKER) {
3494 unsigned int wcaps = get_wcaps(codec, pin);
3495 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
3496 if (wcaps == AC_WCAP_OUT_AMP)
3497 /* found a mono speaker with an amp,
3505 err = create_controls(spec, "LFE", lfe_pin, 1);
3513 static int stac9200_parse_auto_config(struct hda_codec *codec)
3515 struct sigmatel_spec *spec = codec->spec;
3518 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
3521 if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0)
3524 if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0)
3527 if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0)
3530 if (spec->autocfg.dig_out_pin)
3531 spec->multiout.dig_out_nid = 0x05;
3532 if (spec->autocfg.dig_in_pin)
3533 spec->dig_in_nid = 0x04;
3535 if (spec->kctl_alloc)
3536 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3538 spec->input_mux = &spec->private_imux;
3539 spec->dinput_mux = &spec->private_dimux;
3545 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
3546 * funky external mute control using GPIO pins.
3549 static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
3550 unsigned int dir_mask, unsigned int data)
3552 unsigned int gpiostate, gpiomask, gpiodir;
3554 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
3555 AC_VERB_GET_GPIO_DATA, 0);
3556 gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
3558 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
3559 AC_VERB_GET_GPIO_MASK, 0);
3562 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
3563 AC_VERB_GET_GPIO_DIRECTION, 0);
3564 gpiodir |= dir_mask;
3566 /* Configure GPIOx as CMOS */
3567 snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
3569 snd_hda_codec_write(codec, codec->afg, 0,
3570 AC_VERB_SET_GPIO_MASK, gpiomask);
3571 snd_hda_codec_read(codec, codec->afg, 0,
3572 AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
3576 snd_hda_codec_read(codec, codec->afg, 0,
3577 AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
3580 static void enable_pin_detect(struct hda_codec *codec, hda_nid_t nid,
3583 if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP)
3584 snd_hda_codec_write_cache(codec, nid, 0,
3585 AC_VERB_SET_UNSOLICITED_ENABLE,
3586 (AC_USRSP_EN | event));
3589 static int is_nid_hp_pin(struct auto_pin_cfg *cfg, hda_nid_t nid)
3592 for (i = 0; i < cfg->hp_outs; i++)
3593 if (cfg->hp_pins[i] == nid)
3594 return 1; /* nid is a HP-Out */
3596 return 0; /* nid is not a HP-Out */
3599 static void stac92xx_power_down(struct hda_codec *codec)
3601 struct sigmatel_spec *spec = codec->spec;
3603 /* power down inactive DACs */
3605 for (dac = spec->dac_list; *dac; dac++)
3606 if (!is_in_dac_nids(spec, *dac) &&
3607 spec->multiout.hp_nid != *dac)
3608 snd_hda_codec_write_cache(codec, *dac, 0,
3609 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
3612 static int stac92xx_init(struct hda_codec *codec)
3614 struct sigmatel_spec *spec = codec->spec;
3615 struct auto_pin_cfg *cfg = &spec->autocfg;
3618 snd_hda_sequence_write(codec, spec->init);
3620 /* power down adcs initially */
3621 if (spec->powerdown_adcs)
3622 for (i = 0; i < spec->num_adcs; i++)
3623 snd_hda_codec_write_cache(codec,
3624 spec->adc_nids[i], 0,
3625 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
3627 if (spec->hp_detect) {
3628 /* Enable unsolicited responses on the HP widget */
3629 for (i = 0; i < cfg->hp_outs; i++)
3630 enable_pin_detect(codec, cfg->hp_pins[i],
3632 /* force to enable the first line-out; the others are set up
3635 stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0],
3637 stac92xx_auto_init_hp_out(codec);
3638 /* fake event to set up pins */
3639 codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26);
3641 stac92xx_auto_init_multi_out(codec);
3642 stac92xx_auto_init_hp_out(codec);
3644 for (i = 0; i < AUTO_PIN_LAST; i++) {
3645 hda_nid_t nid = cfg->input_pins[i];
3647 unsigned int pinctl = snd_hda_codec_read(codec, nid,
3648 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3649 /* if PINCTL already set then skip */
3650 if (pinctl & AC_PINCAP_IN)
3652 pinctl = AC_PINCTL_IN_EN;
3653 if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC)
3654 pinctl |= stac92xx_get_vref(codec, nid);
3655 stac92xx_auto_set_pinctl(codec, nid, pinctl);
3658 for (i = 0; i < spec->num_dmics; i++)
3659 stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i],
3661 for (i = 0; i < spec->num_pwrs; i++) {
3662 int event = is_nid_hp_pin(cfg, spec->pwr_nids[i])
3663 ? STAC_HP_EVENT : STAC_PWR_EVENT;
3664 int pinctl = snd_hda_codec_read(codec, spec->pwr_nids[i],
3665 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3666 int def_conf = snd_hda_codec_read(codec, spec->pwr_nids[i],
3667 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
3668 def_conf = get_defcfg_connect(def_conf);
3669 /* outputs are only ports capable of power management
3670 * any attempts on powering down a input port cause the
3671 * referenced VREF to act quirky.
3673 if (pinctl & AC_PINCTL_IN_EN)
3675 /* skip any ports that don't have jacks since presence
3676 * detection is useless */
3677 if (def_conf && def_conf != AC_JACK_PORT_FIXED)
3679 enable_pin_detect(codec, spec->pwr_nids[i], event | i);
3680 codec->patch_ops.unsol_event(codec, (event | i) << 26);
3683 stac92xx_power_down(codec);
3684 if (cfg->dig_out_pin)
3685 stac92xx_auto_set_pinctl(codec, cfg->dig_out_pin,
3687 if (cfg->dig_in_pin)
3688 stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin,
3691 stac_gpio_set(codec, spec->gpio_mask,
3692 spec->gpio_dir, spec->gpio_data);
3697 static void stac92xx_free(struct hda_codec *codec)
3699 struct sigmatel_spec *spec = codec->spec;
3705 if (spec->kctl_alloc) {
3706 for (i = 0; i < spec->num_kctl_used; i++)
3707 kfree(spec->kctl_alloc[i].name);
3708 kfree(spec->kctl_alloc);
3711 if (spec->bios_pin_configs)
3712 kfree(spec->bios_pin_configs);
3715 snd_hda_detach_beep_device(codec);
3718 static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid,
3721 unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
3722 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
3724 if (pin_ctl & AC_PINCTL_IN_EN) {
3726 * we need to check the current set-up direction of
3727 * shared input pins since they can be switched via
3728 * "xxx as Output" mixer switch
3730 struct sigmatel_spec *spec = codec->spec;
3731 struct auto_pin_cfg *cfg = &spec->autocfg;
3732 if ((nid == cfg->input_pins[AUTO_PIN_LINE] &&
3733 spec->line_switch) ||
3734 (nid == cfg->input_pins[AUTO_PIN_MIC] &&
3739 /* if setting pin direction bits, clear the current
3740 direction bits first */
3741 if (flag & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))
3742 pin_ctl &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
3744 snd_hda_codec_write_cache(codec, nid, 0,
3745 AC_VERB_SET_PIN_WIDGET_CONTROL,
3749 static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid,
3752 unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
3753 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
3754 snd_hda_codec_write_cache(codec, nid, 0,
3755 AC_VERB_SET_PIN_WIDGET_CONTROL,
3759 static int get_hp_pin_presence(struct hda_codec *codec, hda_nid_t nid)
3763 if (snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0x00)
3765 unsigned int pinctl;
3766 pinctl = snd_hda_codec_read(codec, nid, 0,
3767 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3768 if (pinctl & AC_PINCTL_IN_EN)
3769 return 0; /* mic- or line-input */
3771 return 1; /* HP-output */
3776 static void stac92xx_hp_detect(struct hda_codec *codec, unsigned int res)
3778 struct sigmatel_spec *spec = codec->spec;
3779 struct auto_pin_cfg *cfg = &spec->autocfg;
3780 int nid = cfg->hp_pins[cfg->hp_outs - 1];
3784 if (spec->gpio_mute)
3785 presence = !(snd_hda_codec_read(codec, codec->afg, 0,
3786 AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
3788 for (i = 0; i < cfg->hp_outs; i++) {
3791 if (spec->hp_switch && cfg->hp_pins[i] == nid)
3793 presence = get_hp_pin_presence(codec, cfg->hp_pins[i]);
3797 /* disable lineouts, enable hp */
3798 if (spec->hp_switch)
3799 stac92xx_reset_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3800 for (i = 0; i < cfg->line_outs; i++)
3801 stac92xx_reset_pinctl(codec, cfg->line_out_pins[i],
3803 for (i = 0; i < cfg->speaker_outs; i++)
3804 stac92xx_reset_pinctl(codec, cfg->speaker_pins[i],
3806 if (spec->eapd_mask)
3807 stac_gpio_set(codec, spec->gpio_mask,
3808 spec->gpio_dir, spec->gpio_data &
3811 /* enable lineouts, disable hp */
3812 if (spec->hp_switch)
3813 stac92xx_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3814 for (i = 0; i < cfg->line_outs; i++)
3815 stac92xx_set_pinctl(codec, cfg->line_out_pins[i],
3817 for (i = 0; i < cfg->speaker_outs; i++)
3818 stac92xx_set_pinctl(codec, cfg->speaker_pins[i],
3820 if (spec->eapd_mask)
3821 stac_gpio_set(codec, spec->gpio_mask,
3822 spec->gpio_dir, spec->gpio_data |
3825 if (!spec->hp_switch && cfg->hp_outs > 1 && presence)
3826 stac92xx_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3829 static void stac92xx_pin_sense(struct hda_codec *codec, int idx)
3831 struct sigmatel_spec *spec = codec->spec;
3832 hda_nid_t nid = spec->pwr_nids[idx];
3834 val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0)
3836 presence = get_hp_pin_presence(codec, nid);
3838 /* several codecs have two power down bits */
3839 if (spec->pwr_mapping)
3840 idx = spec->pwr_mapping[idx];
3849 /* power down unused output ports */
3850 snd_hda_codec_write(codec, codec->afg, 0, 0x7ec, val);
3853 static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res)
3855 struct sigmatel_spec *spec = codec->spec;
3856 int idx = res >> 26 & 0x0f;
3858 switch ((res >> 26) & 0x70) {
3860 stac92xx_hp_detect(codec, res);
3862 case STAC_PWR_EVENT:
3863 if (spec->num_pwrs > 0)
3864 stac92xx_pin_sense(codec, idx);
3866 case STAC_VREF_EVENT: {
3867 int data = snd_hda_codec_read(codec, codec->afg, 0,
3868 AC_VERB_GET_GPIO_DATA, 0);
3869 /* toggle VREF state based on GPIOx status */
3870 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
3871 !!(data & (1 << idx)));
3877 #ifdef SND_HDA_NEEDS_RESUME
3878 static int stac92xx_resume(struct hda_codec *codec)
3880 struct sigmatel_spec *spec = codec->spec;
3882 stac92xx_set_config_regs(codec);
3883 snd_hda_sequence_write(codec, spec->init);
3884 stac_gpio_set(codec, spec->gpio_mask,
3885 spec->gpio_dir, spec->gpio_data);
3886 snd_hda_codec_resume_amp(codec);
3887 snd_hda_codec_resume_cache(codec);
3888 /* power down inactive DACs */
3890 stac92xx_power_down(codec);
3891 /* invoke unsolicited event to reset the HP state */
3892 if (spec->hp_detect)
3893 codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26);
3898 static struct hda_codec_ops stac92xx_patch_ops = {
3899 .build_controls = stac92xx_build_controls,
3900 .build_pcms = stac92xx_build_pcms,
3901 .init = stac92xx_init,
3902 .free = stac92xx_free,
3903 .unsol_event = stac92xx_unsol_event,
3904 #ifdef SND_HDA_NEEDS_RESUME
3905 .resume = stac92xx_resume,
3909 static int patch_stac9200(struct hda_codec *codec)
3911 struct sigmatel_spec *spec;
3914 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3919 spec->num_pins = ARRAY_SIZE(stac9200_pin_nids);
3920 spec->pin_nids = stac9200_pin_nids;
3921 spec->board_config = snd_hda_check_board_config(codec, STAC_9200_MODELS,
3924 if (spec->board_config < 0) {
3925 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9200, using BIOS defaults\n");
3926 err = stac92xx_save_bios_config_regs(codec);
3928 stac92xx_free(codec);
3931 spec->pin_configs = spec->bios_pin_configs;
3933 spec->pin_configs = stac9200_brd_tbl[spec->board_config];
3934 stac92xx_set_config_regs(codec);
3937 spec->multiout.max_channels = 2;
3938 spec->multiout.num_dacs = 1;
3939 spec->multiout.dac_nids = stac9200_dac_nids;
3940 spec->adc_nids = stac9200_adc_nids;
3941 spec->mux_nids = stac9200_mux_nids;
3942 spec->num_muxes = 1;
3943 spec->num_dmics = 0;
3947 if (spec->board_config == STAC_9200_GATEWAY ||
3948 spec->board_config == STAC_9200_OQO)
3949 spec->init = stac9200_eapd_init;
3951 spec->init = stac9200_core_init;
3952 spec->mixer = stac9200_mixer;
3954 if (spec->board_config == STAC_9200_PANASONIC) {
3955 spec->gpio_mask = spec->gpio_dir = 0x09;
3956 spec->gpio_data = 0x00;
3959 err = stac9200_parse_auto_config(codec);
3961 stac92xx_free(codec);
3965 codec->patch_ops = stac92xx_patch_ops;
3970 static int patch_stac925x(struct hda_codec *codec)
3972 struct sigmatel_spec *spec;
3975 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3980 spec->num_pins = ARRAY_SIZE(stac925x_pin_nids);
3981 spec->pin_nids = stac925x_pin_nids;
3982 spec->board_config = snd_hda_check_board_config(codec, STAC_925x_MODELS,
3986 if (spec->board_config < 0) {
3987 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC925x,"
3988 "using BIOS defaults\n");
3989 err = stac92xx_save_bios_config_regs(codec);
3991 stac92xx_free(codec);
3994 spec->pin_configs = spec->bios_pin_configs;
3995 } else if (stac925x_brd_tbl[spec->board_config] != NULL){
3996 spec->pin_configs = stac925x_brd_tbl[spec->board_config];
3997 stac92xx_set_config_regs(codec);
4000 spec->multiout.max_channels = 2;
4001 spec->multiout.num_dacs = 1;
4002 spec->multiout.dac_nids = stac925x_dac_nids;
4003 spec->adc_nids = stac925x_adc_nids;
4004 spec->mux_nids = stac925x_mux_nids;
4005 spec->num_muxes = 1;
4008 switch (codec->vendor_id) {
4009 case 0x83847632: /* STAC9202 */
4010 case 0x83847633: /* STAC9202D */
4011 case 0x83847636: /* STAC9251 */
4012 case 0x83847637: /* STAC9251D */
4013 spec->num_dmics = STAC925X_NUM_DMICS;
4014 spec->dmic_nids = stac925x_dmic_nids;
4015 spec->num_dmuxes = ARRAY_SIZE(stac925x_dmux_nids);
4016 spec->dmux_nids = stac925x_dmux_nids;
4019 spec->num_dmics = 0;
4023 spec->init = stac925x_core_init;
4024 spec->mixer = stac925x_mixer;
4026 err = stac92xx_parse_auto_config(codec, 0x8, 0x7);
4028 if (spec->board_config < 0) {
4029 printk(KERN_WARNING "hda_codec: No auto-config is "
4030 "available, default to model=ref\n");
4031 spec->board_config = STAC_925x_REF;
4037 stac92xx_free(codec);
4041 codec->patch_ops = stac92xx_patch_ops;
4046 static struct hda_input_mux stac92hd73xx_dmux = {
4049 { "Analog Inputs", 0x0b },
4050 { "Digital Mic 1", 0x09 },
4051 { "Digital Mic 2", 0x0a },
4056 static int patch_stac92hd73xx(struct hda_codec *codec)
4058 struct sigmatel_spec *spec;
4059 hda_nid_t conn[STAC92HD73_DAC_COUNT + 2];
4062 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4067 codec->slave_dig_outs = stac92hd73xx_slave_dig_outs;
4068 spec->num_pins = ARRAY_SIZE(stac92hd73xx_pin_nids);
4069 spec->pin_nids = stac92hd73xx_pin_nids;
4070 spec->board_config = snd_hda_check_board_config(codec,
4071 STAC_92HD73XX_MODELS,
4072 stac92hd73xx_models,
4073 stac92hd73xx_cfg_tbl);
4075 if (spec->board_config < 0) {
4076 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4077 " STAC92HD73XX, using BIOS defaults\n");
4078 err = stac92xx_save_bios_config_regs(codec);
4080 stac92xx_free(codec);
4083 spec->pin_configs = spec->bios_pin_configs;
4085 spec->pin_configs = stac92hd73xx_brd_tbl[spec->board_config];
4086 stac92xx_set_config_regs(codec);
4089 spec->multiout.num_dacs = snd_hda_get_connections(codec, 0x0a,
4090 conn, STAC92HD73_DAC_COUNT + 2) - 1;
4092 if (spec->multiout.num_dacs < 0) {
4093 printk(KERN_WARNING "hda_codec: Could not determine "
4094 "number of channels defaulting to DAC count\n");
4095 spec->multiout.num_dacs = STAC92HD73_DAC_COUNT;
4098 switch (spec->multiout.num_dacs) {
4099 case 0x3: /* 6 Channel */
4100 spec->mixer = stac92hd73xx_6ch_mixer;
4101 spec->init = stac92hd73xx_6ch_core_init;
4103 case 0x4: /* 8 Channel */
4104 spec->mixer = stac92hd73xx_8ch_mixer;
4105 spec->init = stac92hd73xx_8ch_core_init;
4107 case 0x5: /* 10 Channel */
4108 spec->mixer = stac92hd73xx_10ch_mixer;
4109 spec->init = stac92hd73xx_10ch_core_init;
4112 spec->multiout.dac_nids = stac92hd73xx_dac_nids;
4113 spec->aloopback_mask = 0x01;
4114 spec->aloopback_shift = 8;
4116 spec->digbeep_nid = 0x1c;
4117 spec->mux_nids = stac92hd73xx_mux_nids;
4118 spec->adc_nids = stac92hd73xx_adc_nids;
4119 spec->dmic_nids = stac92hd73xx_dmic_nids;
4120 spec->dmux_nids = stac92hd73xx_dmux_nids;
4121 spec->smux_nids = stac92hd73xx_smux_nids;
4122 spec->amp_nids = stac92hd73xx_amp_nids;
4123 spec->num_amps = ARRAY_SIZE(stac92hd73xx_amp_nids);
4125 spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids);
4126 spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids);
4127 spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids);
4128 memcpy(&spec->private_dimux, &stac92hd73xx_dmux,
4129 sizeof(stac92hd73xx_dmux));
4131 switch (spec->board_config) {
4133 spec->init = dell_eq_core_init;
4134 spec->num_smuxes = 0;
4135 spec->mixer = &stac92hd73xx_6ch_mixer[DELL_M6_MIXER];
4136 spec->amp_nids = &stac92hd73xx_amp_nids[DELL_M6_AMP];
4138 switch (codec->subsystem_id) {
4139 case 0x1028025e: /* Analog Mics */
4141 stac92xx_set_config_reg(codec, 0x0b, 0x90A70170);
4142 spec->num_dmics = 0;
4143 spec->private_dimux.num_items = 1;
4145 case 0x10280271: /* Digital Mics */
4147 spec->init = dell_m6_core_init;
4151 stac92xx_set_config_reg(codec, 0x13, 0x90A60160);
4152 spec->num_dmics = 1;
4153 spec->private_dimux.num_items = 2;
4155 case 0x10280256: /* Both */
4157 stac92xx_set_config_reg(codec, 0x0b, 0x90A70170);
4158 stac92xx_set_config_reg(codec, 0x13, 0x90A60160);
4159 spec->num_dmics = 1;
4160 spec->private_dimux.num_items = 2;
4165 spec->num_dmics = STAC92HD73XX_NUM_DMICS;
4166 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
4168 if (spec->board_config > STAC_92HD73XX_REF) {
4169 /* GPIO0 High = Enable EAPD */
4170 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
4171 spec->gpio_data = 0x01;
4173 spec->dinput_mux = &spec->private_dimux;
4175 spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
4176 spec->pwr_nids = stac92hd73xx_pwr_nids;
4178 err = stac92xx_parse_auto_config(codec, 0x25, 0x27);
4181 if (spec->board_config < 0) {
4182 printk(KERN_WARNING "hda_codec: No auto-config is "
4183 "available, default to model=ref\n");
4184 spec->board_config = STAC_92HD73XX_REF;
4191 stac92xx_free(codec);
4195 codec->patch_ops = stac92xx_patch_ops;
4200 static struct hda_input_mux stac92hd83xxx_dmux = {
4203 { "Analog Inputs", 0x03 },
4204 { "Digital Mic 1", 0x04 },
4205 { "Digital Mic 2", 0x05 },
4209 static int patch_stac92hd83xxx(struct hda_codec *codec)
4211 struct sigmatel_spec *spec;
4214 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4219 codec->slave_dig_outs = stac92hd83xxx_slave_dig_outs;
4220 spec->mono_nid = 0x19;
4221 spec->digbeep_nid = 0x21;
4222 spec->dmic_nids = stac92hd83xxx_dmic_nids;
4223 spec->dmux_nids = stac92hd83xxx_dmux_nids;
4224 spec->adc_nids = stac92hd83xxx_adc_nids;
4225 spec->pwr_nids = stac92hd83xxx_pwr_nids;
4226 spec->pwr_mapping = stac92hd83xxx_pwr_mapping;
4227 spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
4228 spec->multiout.dac_nids = stac92hd83xxx_dac_nids;
4230 spec->init = stac92hd83xxx_core_init;
4231 switch (codec->vendor_id) {
4233 spec->multiout.num_dacs = STAC92HD81_DAC_COUNT;
4237 spec->init++; /* switch to config #2 */
4238 spec->multiout.num_dacs = STAC92HD83_DAC_COUNT;
4241 spec->mixer = stac92hd83xxx_mixer;
4242 spec->num_pins = ARRAY_SIZE(stac92hd83xxx_pin_nids);
4243 spec->num_dmuxes = ARRAY_SIZE(stac92hd83xxx_dmux_nids);
4244 spec->num_adcs = ARRAY_SIZE(stac92hd83xxx_adc_nids);
4245 spec->num_dmics = STAC92HD83XXX_NUM_DMICS;
4246 spec->dinput_mux = &stac92hd83xxx_dmux;
4247 spec->pin_nids = stac92hd83xxx_pin_nids;
4248 spec->board_config = snd_hda_check_board_config(codec,
4249 STAC_92HD83XXX_MODELS,
4250 stac92hd83xxx_models,
4251 stac92hd83xxx_cfg_tbl);
4253 if (spec->board_config < 0) {
4254 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4255 " STAC92HD83XXX, using BIOS defaults\n");
4256 err = stac92xx_save_bios_config_regs(codec);
4258 stac92xx_free(codec);
4261 spec->pin_configs = spec->bios_pin_configs;
4263 spec->pin_configs = stac92hd83xxx_brd_tbl[spec->board_config];
4264 stac92xx_set_config_regs(codec);
4267 err = stac92xx_parse_auto_config(codec, 0x1d, 0);
4269 if (spec->board_config < 0) {
4270 printk(KERN_WARNING "hda_codec: No auto-config is "
4271 "available, default to model=ref\n");
4272 spec->board_config = STAC_92HD83XXX_REF;
4279 stac92xx_free(codec);
4283 codec->patch_ops = stac92xx_patch_ops;
4288 #ifdef SND_HDA_NEEDS_RESUME
4289 static void stac92hd71xx_set_power_state(struct hda_codec *codec, int pwr)
4291 struct sigmatel_spec *spec = codec->spec;
4293 snd_hda_codec_write_cache(codec, codec->afg, 0,
4294 AC_VERB_SET_POWER_STATE, pwr);
4297 for (i = 0; i < spec->num_adcs; i++) {
4298 snd_hda_codec_write_cache(codec,
4299 spec->adc_nids[i], 0,
4300 AC_VERB_SET_POWER_STATE, pwr);
4304 static int stac92hd71xx_resume(struct hda_codec *codec)
4306 stac92hd71xx_set_power_state(codec, AC_PWRST_D0);
4307 return stac92xx_resume(codec);
4310 static int stac92hd71xx_suspend(struct hda_codec *codec, pm_message_t state)
4312 stac92hd71xx_set_power_state(codec, AC_PWRST_D3);
4318 static struct hda_codec_ops stac92hd71bxx_patch_ops = {
4319 .build_controls = stac92xx_build_controls,
4320 .build_pcms = stac92xx_build_pcms,
4321 .init = stac92xx_init,
4322 .free = stac92xx_free,
4323 .unsol_event = stac92xx_unsol_event,
4324 #ifdef SND_HDA_NEEDS_RESUME
4325 .resume = stac92hd71xx_resume,
4326 .suspend = stac92hd71xx_suspend,
4330 static int patch_stac92hd71bxx(struct hda_codec *codec)
4332 struct sigmatel_spec *spec;
4335 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4340 codec->patch_ops = stac92xx_patch_ops;
4341 spec->num_pins = ARRAY_SIZE(stac92hd71bxx_pin_nids);
4342 spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
4343 spec->pin_nids = stac92hd71bxx_pin_nids;
4344 spec->board_config = snd_hda_check_board_config(codec,
4345 STAC_92HD71BXX_MODELS,
4346 stac92hd71bxx_models,
4347 stac92hd71bxx_cfg_tbl);
4349 if (spec->board_config < 0) {
4350 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4351 " STAC92HD71BXX, using BIOS defaults\n");
4352 err = stac92xx_save_bios_config_regs(codec);
4354 stac92xx_free(codec);
4357 spec->pin_configs = spec->bios_pin_configs;
4359 spec->pin_configs = stac92hd71bxx_brd_tbl[spec->board_config];
4360 stac92xx_set_config_regs(codec);
4363 switch (codec->vendor_id) {
4364 case 0x111d76b6: /* 4 Port without Analog Mixer */
4366 case 0x111d76b4: /* 6 Port without Analog Mixer */
4368 spec->mixer = stac92hd71bxx_mixer;
4369 spec->init = stac92hd71bxx_core_init;
4370 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
4372 case 0x111d7608: /* 5 Port with Analog Mixer */
4373 switch (codec->subsystem_id) {
4375 /* Enable VREF power saving on GPIO1 detect */
4376 snd_hda_codec_write(codec, codec->afg, 0,
4377 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
4378 snd_hda_codec_write_cache(codec, codec->afg, 0,
4379 AC_VERB_SET_UNSOLICITED_ENABLE,
4380 (AC_USRSP_EN | STAC_VREF_EVENT | 0x01));
4381 spec->gpio_mask |= 0x02;
4384 if ((codec->revision_id & 0xf) == 0 ||
4385 (codec->revision_id & 0xf) == 1) {
4386 #ifdef SND_HDA_NEEDS_RESUME
4387 codec->patch_ops = stac92hd71bxx_patch_ops;
4389 spec->stream_delay = 40; /* 40 milliseconds */
4392 /* no output amps */
4394 spec->mixer = stac92hd71bxx_analog_mixer;
4397 spec->init = &stac92hd71bxx_analog_core_init[HD_DISABLE_PORTF];
4398 stac92xx_set_config_reg(codec, 0xf, 0x40f000f0);
4400 case 0x111d7603: /* 6 Port with Analog Mixer */
4401 if ((codec->revision_id & 0xf) == 1) {
4402 #ifdef SND_HDA_NEEDS_RESUME
4403 codec->patch_ops = stac92hd71bxx_patch_ops;
4405 spec->stream_delay = 40; /* 40 milliseconds */
4408 /* no output amps */
4412 spec->mixer = stac92hd71bxx_analog_mixer;
4413 spec->init = stac92hd71bxx_analog_core_init;
4414 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
4417 spec->aloopback_mask = 0x20;
4418 spec->aloopback_shift = 0;
4420 if (spec->board_config > STAC_92HD71BXX_REF) {
4422 spec->gpio_mask = 0x01;
4423 spec->gpio_dir = 0x01;
4424 spec->gpio_data = 0x01;
4427 spec->powerdown_adcs = 1;
4428 spec->digbeep_nid = 0x26;
4429 spec->mux_nids = stac92hd71bxx_mux_nids;
4430 spec->adc_nids = stac92hd71bxx_adc_nids;
4431 spec->dmic_nids = stac92hd71bxx_dmic_nids;
4432 spec->dmux_nids = stac92hd71bxx_dmux_nids;
4433 spec->smux_nids = stac92hd71bxx_smux_nids;
4434 spec->pwr_nids = stac92hd71bxx_pwr_nids;
4436 spec->num_muxes = ARRAY_SIZE(stac92hd71bxx_mux_nids);
4437 spec->num_adcs = ARRAY_SIZE(stac92hd71bxx_adc_nids);
4439 switch (spec->board_config) {
4441 spec->num_dmics = 0;
4442 spec->num_smuxes = 0;
4443 spec->num_dmuxes = 0;
4445 /* enable internal microphone */
4446 stac92xx_set_config_reg(codec, 0x0e, 0x01813040);
4447 stac92xx_auto_set_pinctl(codec, 0x0e,
4448 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80);
4451 spec->num_dmics = STAC92HD71BXX_NUM_DMICS;
4452 spec->num_smuxes = ARRAY_SIZE(stac92hd71bxx_smux_nids);
4453 spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
4456 spec->multiout.num_dacs = 1;
4457 spec->multiout.hp_nid = 0x11;
4458 spec->multiout.dac_nids = stac92hd71bxx_dac_nids;
4460 err = stac92xx_parse_auto_config(codec, 0x21, 0x23);
4462 if (spec->board_config < 0) {
4463 printk(KERN_WARNING "hda_codec: No auto-config is "
4464 "available, default to model=ref\n");
4465 spec->board_config = STAC_92HD71BXX_REF;
4472 stac92xx_free(codec);
4479 static int patch_stac922x(struct hda_codec *codec)
4481 struct sigmatel_spec *spec;
4484 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4489 spec->num_pins = ARRAY_SIZE(stac922x_pin_nids);
4490 spec->pin_nids = stac922x_pin_nids;
4491 spec->board_config = snd_hda_check_board_config(codec, STAC_922X_MODELS,
4494 if (spec->board_config == STAC_INTEL_MAC_AUTO) {
4495 spec->gpio_mask = spec->gpio_dir = 0x03;
4496 spec->gpio_data = 0x03;
4497 /* Intel Macs have all same PCI SSID, so we need to check
4498 * codec SSID to distinguish the exact models
4500 printk(KERN_INFO "hda_codec: STAC922x, Apple subsys_id=%x\n", codec->subsystem_id);
4501 switch (codec->subsystem_id) {
4504 spec->board_config = STAC_INTEL_MAC_V1;
4508 spec->board_config = STAC_INTEL_MAC_V2;
4516 spec->board_config = STAC_INTEL_MAC_V3;
4520 spec->board_config = STAC_INTEL_MAC_V4;
4524 spec->board_config = STAC_INTEL_MAC_V5;
4527 spec->board_config = STAC_INTEL_MAC_V3;
4533 if (spec->board_config < 0) {
4534 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC922x, "
4535 "using BIOS defaults\n");
4536 err = stac92xx_save_bios_config_regs(codec);
4538 stac92xx_free(codec);
4541 spec->pin_configs = spec->bios_pin_configs;
4542 } else if (stac922x_brd_tbl[spec->board_config] != NULL) {
4543 spec->pin_configs = stac922x_brd_tbl[spec->board_config];
4544 stac92xx_set_config_regs(codec);
4547 spec->adc_nids = stac922x_adc_nids;
4548 spec->mux_nids = stac922x_mux_nids;
4549 spec->num_muxes = ARRAY_SIZE(stac922x_mux_nids);
4550 spec->num_adcs = ARRAY_SIZE(stac922x_adc_nids);
4551 spec->num_dmics = 0;
4554 spec->init = stac922x_core_init;
4555 spec->mixer = stac922x_mixer;
4557 spec->multiout.dac_nids = spec->dac_nids;
4559 err = stac92xx_parse_auto_config(codec, 0x08, 0x09);
4561 if (spec->board_config < 0) {
4562 printk(KERN_WARNING "hda_codec: No auto-config is "
4563 "available, default to model=ref\n");
4564 spec->board_config = STAC_D945_REF;
4570 stac92xx_free(codec);
4574 codec->patch_ops = stac92xx_patch_ops;
4576 /* Fix Mux capture level; max to 2 */
4577 snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
4578 (0 << AC_AMPCAP_OFFSET_SHIFT) |
4579 (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
4580 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4581 (0 << AC_AMPCAP_MUTE_SHIFT));
4586 static int patch_stac927x(struct hda_codec *codec)
4588 struct sigmatel_spec *spec;
4591 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4596 spec->num_pins = ARRAY_SIZE(stac927x_pin_nids);
4597 spec->pin_nids = stac927x_pin_nids;
4598 spec->board_config = snd_hda_check_board_config(codec, STAC_927X_MODELS,
4602 if (spec->board_config < 0 || !stac927x_brd_tbl[spec->board_config]) {
4603 if (spec->board_config < 0)
4604 snd_printdd(KERN_INFO "hda_codec: Unknown model for"
4605 "STAC927x, using BIOS defaults\n");
4606 err = stac92xx_save_bios_config_regs(codec);
4608 stac92xx_free(codec);
4611 spec->pin_configs = spec->bios_pin_configs;
4613 spec->pin_configs = stac927x_brd_tbl[spec->board_config];
4614 stac92xx_set_config_regs(codec);
4617 spec->digbeep_nid = 0x23;
4618 spec->adc_nids = stac927x_adc_nids;
4619 spec->num_adcs = ARRAY_SIZE(stac927x_adc_nids);
4620 spec->mux_nids = stac927x_mux_nids;
4621 spec->num_muxes = ARRAY_SIZE(stac927x_mux_nids);
4622 spec->smux_nids = stac927x_smux_nids;
4623 spec->num_smuxes = ARRAY_SIZE(stac927x_smux_nids);
4624 spec->spdif_labels = stac927x_spdif_labels;
4625 spec->dac_list = stac927x_dac_nids;
4626 spec->multiout.dac_nids = spec->dac_nids;
4628 switch (spec->board_config) {
4631 /* GPIO0 High = Enable EAPD */
4632 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x01;
4633 spec->gpio_data = 0x01;
4634 spec->num_dmics = 0;
4636 spec->init = d965_core_init;
4637 spec->mixer = stac927x_mixer;
4639 case STAC_DELL_BIOS:
4640 switch (codec->subsystem_id) {
4643 /* correct the device field to SPDIF out */
4644 stac92xx_set_config_reg(codec, 0x21, 0x01442070);
4647 /* configure the analog microphone on some laptops */
4648 stac92xx_set_config_reg(codec, 0x0c, 0x90a79130);
4649 /* correct the front output jack as a hp out */
4650 stac92xx_set_config_reg(codec, 0x0f, 0x0227011f);
4651 /* correct the front input jack as a mic */
4652 stac92xx_set_config_reg(codec, 0x0e, 0x02a79130);
4655 /* GPIO2 High = Enable EAPD */
4656 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x04;
4657 spec->gpio_data = 0x04;
4658 spec->dmic_nids = stac927x_dmic_nids;
4659 spec->num_dmics = STAC927X_NUM_DMICS;
4661 spec->init = d965_core_init;
4662 spec->mixer = stac927x_mixer;
4663 spec->dmux_nids = stac927x_dmux_nids;
4664 spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids);
4667 if (spec->board_config > STAC_D965_REF) {
4668 /* GPIO0 High = Enable EAPD */
4669 spec->eapd_mask = spec->gpio_mask = 0x01;
4670 spec->gpio_dir = spec->gpio_data = 0x01;
4672 spec->num_dmics = 0;
4674 spec->init = stac927x_core_init;
4675 spec->mixer = stac927x_mixer;
4679 spec->aloopback_mask = 0x40;
4680 spec->aloopback_shift = 0;
4682 err = stac92xx_parse_auto_config(codec, 0x1e, 0x20);
4684 if (spec->board_config < 0) {
4685 printk(KERN_WARNING "hda_codec: No auto-config is "
4686 "available, default to model=ref\n");
4687 spec->board_config = STAC_D965_REF;
4693 stac92xx_free(codec);
4697 codec->patch_ops = stac92xx_patch_ops;
4701 * The STAC927x seem to require fairly long delays for certain
4702 * command sequences. With too short delays (even if the answer
4703 * is set to RIRB properly), it results in the silence output
4704 * on some hardwares like Dell.
4706 * The below flag enables the longer delay (see get_response
4709 codec->bus->needs_damn_long_delay = 1;
4714 static int patch_stac9205(struct hda_codec *codec)
4716 struct sigmatel_spec *spec;
4719 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4724 spec->num_pins = ARRAY_SIZE(stac9205_pin_nids);
4725 spec->pin_nids = stac9205_pin_nids;
4726 spec->board_config = snd_hda_check_board_config(codec, STAC_9205_MODELS,
4730 if (spec->board_config < 0) {
4731 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9205, using BIOS defaults\n");
4732 err = stac92xx_save_bios_config_regs(codec);
4734 stac92xx_free(codec);
4737 spec->pin_configs = spec->bios_pin_configs;
4739 spec->pin_configs = stac9205_brd_tbl[spec->board_config];
4740 stac92xx_set_config_regs(codec);
4743 spec->digbeep_nid = 0x23;
4744 spec->adc_nids = stac9205_adc_nids;
4745 spec->num_adcs = ARRAY_SIZE(stac9205_adc_nids);
4746 spec->mux_nids = stac9205_mux_nids;
4747 spec->num_muxes = ARRAY_SIZE(stac9205_mux_nids);
4748 spec->smux_nids = stac9205_smux_nids;
4749 spec->num_smuxes = ARRAY_SIZE(stac9205_smux_nids);
4750 spec->dmic_nids = stac9205_dmic_nids;
4751 spec->num_dmics = STAC9205_NUM_DMICS;
4752 spec->dmux_nids = stac9205_dmux_nids;
4753 spec->num_dmuxes = ARRAY_SIZE(stac9205_dmux_nids);
4756 spec->init = stac9205_core_init;
4757 spec->mixer = stac9205_mixer;
4759 spec->aloopback_mask = 0x40;
4760 spec->aloopback_shift = 0;
4761 spec->multiout.dac_nids = spec->dac_nids;
4763 switch (spec->board_config){
4764 case STAC_9205_DELL_M43:
4765 /* Enable SPDIF in/out */
4766 stac92xx_set_config_reg(codec, 0x1f, 0x01441030);
4767 stac92xx_set_config_reg(codec, 0x20, 0x1c410030);
4769 /* Enable unsol response for GPIO4/Dock HP connection */
4770 snd_hda_codec_write(codec, codec->afg, 0,
4771 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
4772 snd_hda_codec_write_cache(codec, codec->afg, 0,
4773 AC_VERB_SET_UNSOLICITED_ENABLE,
4774 (AC_USRSP_EN | STAC_HP_EVENT));
4776 spec->gpio_dir = 0x0b;
4777 spec->eapd_mask = 0x01;
4778 spec->gpio_mask = 0x1b;
4779 spec->gpio_mute = 0x10;
4780 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
4783 spec->gpio_data = 0x01;
4786 /* SPDIF-In enabled */
4789 /* GPIO0 High = EAPD */
4790 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
4791 spec->gpio_data = 0x01;
4795 err = stac92xx_parse_auto_config(codec, 0x1f, 0x20);
4797 if (spec->board_config < 0) {
4798 printk(KERN_WARNING "hda_codec: No auto-config is "
4799 "available, default to model=ref\n");
4800 spec->board_config = STAC_9205_REF;
4806 stac92xx_free(codec);
4810 codec->patch_ops = stac92xx_patch_ops;
4819 /* static config for Sony VAIO FE550G and Sony VAIO AR */
4820 static hda_nid_t vaio_dacs[] = { 0x2 };
4821 #define VAIO_HP_DAC 0x5
4822 static hda_nid_t vaio_adcs[] = { 0x8 /*,0x6*/ };
4823 static hda_nid_t vaio_mux_nids[] = { 0x15 };
4825 static struct hda_input_mux vaio_mux = {
4828 /* { "HP", 0x0 }, */
4829 { "Mic Jack", 0x1 },
4830 { "Internal Mic", 0x2 },
4835 static struct hda_verb vaio_init[] = {
4836 {0x0a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP <- 0x2 */
4837 {0x0a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | STAC_HP_EVENT},
4838 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Speaker <- 0x5 */
4839 {0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? (<- 0x2) */
4840 {0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD */
4841 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? */
4842 {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
4843 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* HP */
4844 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* Speaker */
4845 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* capture sw/vol -> 0x8 */
4846 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, /* CD-in -> 0x6 */
4847 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
4851 static struct hda_verb vaio_ar_init[] = {
4852 {0x0a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP <- 0x2 */
4853 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Speaker <- 0x5 */
4854 {0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? (<- 0x2) */
4855 {0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD */
4856 /* {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },*/ /* Optical Out */
4857 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? */
4858 {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
4859 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* HP */
4860 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* Speaker */
4861 /* {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},*/ /* Optical Out */
4862 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* capture sw/vol -> 0x8 */
4863 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, /* CD-in -> 0x6 */
4864 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
4868 /* bind volumes of both NID 0x02 and 0x05 */
4869 static struct hda_bind_ctls vaio_bind_master_vol = {
4870 .ops = &snd_hda_bind_vol,
4872 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
4873 HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT),
4878 /* bind volumes of both NID 0x02 and 0x05 */
4879 static struct hda_bind_ctls vaio_bind_master_sw = {
4880 .ops = &snd_hda_bind_sw,
4882 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
4883 HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT),
4888 static struct snd_kcontrol_new vaio_mixer[] = {
4889 HDA_BIND_VOL("Master Playback Volume", &vaio_bind_master_vol),
4890 HDA_BIND_SW("Master Playback Switch", &vaio_bind_master_sw),
4891 /* HDA_CODEC_VOLUME("CD Capture Volume", 0x07, 0, HDA_INPUT), */
4892 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT),
4893 HDA_CODEC_MUTE("Capture Switch", 0x09, 0, HDA_INPUT),
4895 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4896 .name = "Capture Source",
4898 .info = stac92xx_mux_enum_info,
4899 .get = stac92xx_mux_enum_get,
4900 .put = stac92xx_mux_enum_put,
4905 static struct snd_kcontrol_new vaio_ar_mixer[] = {
4906 HDA_BIND_VOL("Master Playback Volume", &vaio_bind_master_vol),
4907 HDA_BIND_SW("Master Playback Switch", &vaio_bind_master_sw),
4908 /* HDA_CODEC_VOLUME("CD Capture Volume", 0x07, 0, HDA_INPUT), */
4909 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT),
4910 HDA_CODEC_MUTE("Capture Switch", 0x09, 0, HDA_INPUT),
4911 /*HDA_CODEC_MUTE("Optical Out Switch", 0x10, 0, HDA_OUTPUT),
4912 HDA_CODEC_VOLUME("Optical Out Volume", 0x10, 0, HDA_OUTPUT),*/
4914 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4915 .name = "Capture Source",
4917 .info = stac92xx_mux_enum_info,
4918 .get = stac92xx_mux_enum_get,
4919 .put = stac92xx_mux_enum_put,
4924 static struct hda_codec_ops stac9872_patch_ops = {
4925 .build_controls = stac92xx_build_controls,
4926 .build_pcms = stac92xx_build_pcms,
4927 .init = stac92xx_init,
4928 .free = stac92xx_free,
4929 #ifdef SND_HDA_NEEDS_RESUME
4930 .resume = stac92xx_resume,
4934 static int stac9872_vaio_init(struct hda_codec *codec)
4938 err = stac92xx_init(codec);
4941 if (codec->patch_ops.unsol_event)
4942 codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26);
4946 static void stac9872_vaio_hp_detect(struct hda_codec *codec, unsigned int res)
4948 if (get_hp_pin_presence(codec, 0x0a)) {
4949 stac92xx_reset_pinctl(codec, 0x0f, AC_PINCTL_OUT_EN);
4950 stac92xx_set_pinctl(codec, 0x0a, AC_PINCTL_OUT_EN);
4952 stac92xx_reset_pinctl(codec, 0x0a, AC_PINCTL_OUT_EN);
4953 stac92xx_set_pinctl(codec, 0x0f, AC_PINCTL_OUT_EN);
4957 static void stac9872_vaio_unsol_event(struct hda_codec *codec, unsigned int res)
4959 switch (res >> 26) {
4961 stac9872_vaio_hp_detect(codec, res);
4966 static struct hda_codec_ops stac9872_vaio_patch_ops = {
4967 .build_controls = stac92xx_build_controls,
4968 .build_pcms = stac92xx_build_pcms,
4969 .init = stac9872_vaio_init,
4970 .free = stac92xx_free,
4971 .unsol_event = stac9872_vaio_unsol_event,
4973 .resume = stac92xx_resume,
4977 enum { /* FE and SZ series. id=0x83847661 and subsys=0x104D0700 or 104D1000. */
4979 /* Unknown. id=0x83847662 and subsys=0x104D1200 or 104D1000. */
4981 /* Unknown. id=0x83847661 and subsys=0x104D1200. */
4983 /* AR Series. id=0x83847664 and subsys=104D1300 */
4988 static const char *stac9872_models[STAC_9872_MODELS] = {
4989 [CXD9872RD_VAIO] = "vaio",
4990 [CXD9872AKD_VAIO] = "vaio-ar",
4993 static struct snd_pci_quirk stac9872_cfg_tbl[] = {
4994 SND_PCI_QUIRK(0x104d, 0x81e6, "Sony VAIO F/S", CXD9872RD_VAIO),
4995 SND_PCI_QUIRK(0x104d, 0x81ef, "Sony VAIO F/S", CXD9872RD_VAIO),
4996 SND_PCI_QUIRK(0x104d, 0x81fd, "Sony VAIO AR", CXD9872AKD_VAIO),
4997 SND_PCI_QUIRK(0x104d, 0x8205, "Sony VAIO AR", CXD9872AKD_VAIO),
5001 static int patch_stac9872(struct hda_codec *codec)
5003 struct sigmatel_spec *spec;
5006 board_config = snd_hda_check_board_config(codec, STAC_9872_MODELS,
5009 if (board_config < 0)
5010 /* unknown config, let generic-parser do its job... */
5011 return snd_hda_parse_generic_codec(codec);
5013 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5018 switch (board_config) {
5019 case CXD9872RD_VAIO:
5020 case STAC9872AK_VAIO:
5021 case STAC9872K_VAIO:
5022 spec->mixer = vaio_mixer;
5023 spec->init = vaio_init;
5024 spec->multiout.max_channels = 2;
5025 spec->multiout.num_dacs = ARRAY_SIZE(vaio_dacs);
5026 spec->multiout.dac_nids = vaio_dacs;
5027 spec->multiout.hp_nid = VAIO_HP_DAC;
5028 spec->num_adcs = ARRAY_SIZE(vaio_adcs);
5029 spec->adc_nids = vaio_adcs;
5031 spec->input_mux = &vaio_mux;
5032 spec->mux_nids = vaio_mux_nids;
5033 codec->patch_ops = stac9872_vaio_patch_ops;
5036 case CXD9872AKD_VAIO:
5037 spec->mixer = vaio_ar_mixer;
5038 spec->init = vaio_ar_init;
5039 spec->multiout.max_channels = 2;
5040 spec->multiout.num_dacs = ARRAY_SIZE(vaio_dacs);
5041 spec->multiout.dac_nids = vaio_dacs;
5042 spec->multiout.hp_nid = VAIO_HP_DAC;
5043 spec->num_adcs = ARRAY_SIZE(vaio_adcs);
5045 spec->adc_nids = vaio_adcs;
5046 spec->input_mux = &vaio_mux;
5047 spec->mux_nids = vaio_mux_nids;
5048 codec->patch_ops = stac9872_patch_ops;
5059 struct hda_codec_preset snd_hda_preset_sigmatel[] = {
5060 { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
5061 { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
5062 { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
5063 { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
5064 { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
5065 { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
5066 { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
5067 { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
5068 { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
5069 { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
5070 { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
5071 { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
5072 { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
5073 { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
5074 { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
5075 { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
5076 { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
5077 { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
5078 { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
5079 { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
5080 { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
5081 { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
5082 { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
5083 { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x },
5084 { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
5085 { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
5086 { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
5087 { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
5088 { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
5089 { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
5090 { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
5091 /* The following does not take into account .id=0x83847661 when subsys =
5092 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
5093 * currently not fully supported.
5095 { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
5096 { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
5097 { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
5098 { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
5099 { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
5100 { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
5101 { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
5102 { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
5103 { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
5104 { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
5105 { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
5106 { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
5107 { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
5108 { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
5109 { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
5110 { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
5111 { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
5112 { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
5113 { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
5114 { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
5115 { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
5116 { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
5117 { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
5118 { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
5119 { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
5120 { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },