Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Universal Interface for Intel High Definition Audio Codec |
| 3 | * |
| 4 | * HD audio interface patch for SigmaTel STAC92xx |
| 5 | * |
| 6 | * Copyright (c) 2005 Embedded Alley Solutions, Inc. |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 7 | * Matt Porter <mporter@embeddedalley.com> |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 8 | * |
| 9 | * Based on patch_cmedia.c and patch_realtek.c |
| 10 | * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de> |
| 11 | * |
| 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. |
| 16 | * |
| 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. |
| 21 | * |
| 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 |
| 25 | */ |
| 26 | |
| 27 | #include <sound/driver.h> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/delay.h> |
| 30 | #include <linux/slab.h> |
| 31 | #include <linux/pci.h> |
| 32 | #include <sound/core.h> |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 33 | #include <sound/asoundef.h> |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 34 | #include "hda_codec.h" |
| 35 | #include "hda_local.h" |
| 36 | |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 37 | #define NUM_CONTROL_ALLOC 32 |
| 38 | #define STAC_HP_EVENT 0x37 |
| 39 | #define STAC_UNSOL_ENABLE (AC_USRSP_EN | STAC_HP_EVENT) |
| 40 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 41 | #define STAC_REF 0 |
| 42 | #define STAC_D945GTP3 1 |
| 43 | #define STAC_D945GTP5 2 |
| 44 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 45 | struct sigmatel_spec { |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 46 | struct snd_kcontrol_new *mixers[4]; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 47 | unsigned int num_mixers; |
| 48 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 49 | int board_config; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 50 | unsigned int surr_switch: 1; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 51 | unsigned int line_switch: 1; |
| 52 | unsigned int mic_switch: 1; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 53 | unsigned int alt_switch: 1; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 54 | unsigned int hp_detect: 1; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 55 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 56 | /* playback */ |
| 57 | struct hda_multi_out multiout; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 58 | hda_nid_t dac_nids[5]; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 59 | |
| 60 | /* capture */ |
| 61 | hda_nid_t *adc_nids; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 62 | unsigned int num_adcs; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 63 | hda_nid_t *mux_nids; |
| 64 | unsigned int num_muxes; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 65 | hda_nid_t dig_in_nid; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 66 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 67 | /* pin widgets */ |
| 68 | hda_nid_t *pin_nids; |
| 69 | unsigned int num_pins; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 70 | unsigned int *pin_configs; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 71 | |
| 72 | /* codec specific stuff */ |
| 73 | struct hda_verb *init; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 74 | struct snd_kcontrol_new *mixer; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 75 | |
| 76 | /* capture source */ |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 77 | struct hda_input_mux *input_mux; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 78 | unsigned int cur_mux[3]; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 79 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 80 | /* i/o switches */ |
| 81 | unsigned int io_switch[2]; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 82 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 83 | struct hda_pcm pcm_rec[2]; /* PCM information */ |
| 84 | |
| 85 | /* dynamic controls and input_mux */ |
| 86 | struct auto_pin_cfg autocfg; |
| 87 | unsigned int num_kctl_alloc, num_kctl_used; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 88 | struct snd_kcontrol_new *kctl_alloc; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 89 | struct hda_input_mux private_imux; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | static hda_nid_t stac9200_adc_nids[1] = { |
| 93 | 0x03, |
| 94 | }; |
| 95 | |
| 96 | static hda_nid_t stac9200_mux_nids[1] = { |
| 97 | 0x0c, |
| 98 | }; |
| 99 | |
| 100 | static hda_nid_t stac9200_dac_nids[1] = { |
| 101 | 0x02, |
| 102 | }; |
| 103 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 104 | static hda_nid_t stac922x_adc_nids[2] = { |
| 105 | 0x06, 0x07, |
| 106 | }; |
| 107 | |
| 108 | static hda_nid_t stac922x_mux_nids[2] = { |
| 109 | 0x12, 0x13, |
| 110 | }; |
| 111 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 112 | static hda_nid_t stac927x_adc_nids[3] = { |
| 113 | 0x07, 0x08, 0x09 |
| 114 | }; |
| 115 | |
| 116 | static hda_nid_t stac927x_mux_nids[3] = { |
| 117 | 0x15, 0x16, 0x17 |
| 118 | }; |
| 119 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 120 | static hda_nid_t stac9200_pin_nids[8] = { |
| 121 | 0x08, 0x09, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | static hda_nid_t stac922x_pin_nids[10] = { |
| 125 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 126 | 0x0f, 0x10, 0x11, 0x15, 0x1b, |
| 127 | }; |
| 128 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 129 | static hda_nid_t stac927x_pin_nids[14] = { |
| 130 | 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, |
| 131 | 0x0f, 0x10, 0x11, 0x12, 0x13, |
| 132 | 0x14, 0x21, 0x22, 0x23, |
| 133 | }; |
| 134 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 135 | static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 136 | { |
| 137 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 138 | struct sigmatel_spec *spec = codec->spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 139 | return snd_hda_input_mux_info(spec->input_mux, uinfo); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 140 | } |
| 141 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 142 | static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 143 | { |
| 144 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 145 | struct sigmatel_spec *spec = codec->spec; |
| 146 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 147 | |
| 148 | ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx]; |
| 149 | return 0; |
| 150 | } |
| 151 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 152 | static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 153 | { |
| 154 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 155 | struct sigmatel_spec *spec = codec->spec; |
| 156 | unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); |
| 157 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 158 | return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 159 | spec->mux_nids[adc_idx], &spec->cur_mux[adc_idx]); |
| 160 | } |
| 161 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 162 | static struct hda_verb stac9200_core_init[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 163 | /* set dac0mux for dac converter */ |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 164 | { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00}, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 165 | {} |
| 166 | }; |
| 167 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 168 | static struct hda_verb stac922x_core_init[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 169 | /* set master volume and direct control */ |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 170 | { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 171 | {} |
| 172 | }; |
| 173 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 174 | static struct hda_verb stac927x_core_init[] = { |
| 175 | /* set master volume and direct control */ |
| 176 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
| 177 | {} |
| 178 | }; |
| 179 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 180 | static struct snd_kcontrol_new stac9200_mixer[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 181 | HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT), |
| 182 | HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT), |
| 183 | { |
| 184 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 185 | .name = "Input Source", |
| 186 | .count = 1, |
| 187 | .info = stac92xx_mux_enum_info, |
| 188 | .get = stac92xx_mux_enum_get, |
| 189 | .put = stac92xx_mux_enum_put, |
| 190 | }, |
| 191 | HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT), |
| 192 | HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT), |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 193 | HDA_CODEC_VOLUME("Capture Mux Volume", 0x0c, 0, HDA_OUTPUT), |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 194 | { } /* end */ |
| 195 | }; |
| 196 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 197 | /* This needs to be generated dynamically based on sequence */ |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 198 | static struct snd_kcontrol_new stac922x_mixer[] = { |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 199 | { |
| 200 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 201 | .name = "Input Source", |
| 202 | .count = 1, |
| 203 | .info = stac92xx_mux_enum_info, |
| 204 | .get = stac92xx_mux_enum_get, |
| 205 | .put = stac92xx_mux_enum_put, |
| 206 | }, |
| 207 | HDA_CODEC_VOLUME("Capture Volume", 0x17, 0x0, HDA_INPUT), |
Takashi Iwai | 0fd1708 | 2006-01-13 18:46:21 +0100 | [diff] [blame] | 208 | HDA_CODEC_MUTE("Capture Switch", 0x17, 0x0, HDA_INPUT), |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 209 | HDA_CODEC_VOLUME("Mux Capture Volume", 0x12, 0x0, HDA_OUTPUT), |
| 210 | { } /* end */ |
| 211 | }; |
| 212 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 213 | static snd_kcontrol_new_t stac927x_mixer[] = { |
| 214 | { |
| 215 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 216 | .name = "Input Source", |
| 217 | .count = 1, |
| 218 | .info = stac92xx_mux_enum_info, |
| 219 | .get = stac92xx_mux_enum_get, |
| 220 | .put = stac92xx_mux_enum_put, |
| 221 | }, |
| 222 | HDA_CODEC_VOLUME("InMux Capture Volume", 0x15, 0x0, HDA_OUTPUT), |
| 223 | HDA_CODEC_VOLUME("InVol Capture Volume", 0x18, 0x0, HDA_INPUT), |
| 224 | HDA_CODEC_MUTE("ADCMux Capture Switch", 0x1b, 0x0, HDA_OUTPUT), |
| 225 | { } /* end */ |
| 226 | }; |
| 227 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 228 | static int stac92xx_build_controls(struct hda_codec *codec) |
| 229 | { |
| 230 | struct sigmatel_spec *spec = codec->spec; |
| 231 | int err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 232 | int i; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 233 | |
| 234 | err = snd_hda_add_new_ctls(codec, spec->mixer); |
| 235 | if (err < 0) |
| 236 | return err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 237 | |
| 238 | for (i = 0; i < spec->num_mixers; i++) { |
| 239 | err = snd_hda_add_new_ctls(codec, spec->mixers[i]); |
| 240 | if (err < 0) |
| 241 | return err; |
| 242 | } |
| 243 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 244 | if (spec->multiout.dig_out_nid) { |
| 245 | err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid); |
| 246 | if (err < 0) |
| 247 | return err; |
| 248 | } |
| 249 | if (spec->dig_in_nid) { |
| 250 | err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid); |
| 251 | if (err < 0) |
| 252 | return err; |
| 253 | } |
| 254 | return 0; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 255 | } |
| 256 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 257 | static unsigned int ref9200_pin_configs[8] = { |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 258 | 0x01c47010, 0x01447010, 0x0221401f, 0x01114010, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 259 | 0x02a19020, 0x01a19021, 0x90100140, 0x01813122, |
| 260 | }; |
| 261 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 262 | static unsigned int *stac9200_brd_tbl[] = { |
| 263 | ref9200_pin_configs, |
| 264 | }; |
| 265 | |
| 266 | static struct hda_board_config stac9200_cfg_tbl[] = { |
| 267 | { .modelname = "ref", |
| 268 | .pci_subvendor = PCI_VENDOR_ID_INTEL, |
| 269 | .pci_subdevice = 0x2668, /* DFI LanParty */ |
| 270 | .config = STAC_REF }, |
| 271 | {} /* terminator */ |
| 272 | }; |
| 273 | |
| 274 | static unsigned int ref922x_pin_configs[10] = { |
| 275 | 0x01014010, 0x01016011, 0x01012012, 0x0221401f, |
| 276 | 0x01813122, 0x01011014, 0x01441030, 0x01c41030, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 277 | 0x40000100, 0x40000100, |
| 278 | }; |
| 279 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 280 | static unsigned int d945gtp3_pin_configs[10] = { |
Matt Porter | 869264c | 2006-01-25 19:20:50 +0100 | [diff] [blame] | 281 | 0x0221401f, 0x01a19022, 0x01813021, 0x01014010, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 282 | 0x40000100, 0x40000100, 0x40000100, 0x40000100, |
| 283 | 0x02a19120, 0x40000100, |
| 284 | }; |
| 285 | |
| 286 | static unsigned int d945gtp5_pin_configs[10] = { |
Matt Porter | 869264c | 2006-01-25 19:20:50 +0100 | [diff] [blame] | 287 | 0x0221401f, 0x01011012, 0x01813024, 0x01014010, |
| 288 | 0x01a19021, 0x01016011, 0x01452130, 0x40000100, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 289 | 0x02a19320, 0x40000100, |
| 290 | }; |
| 291 | |
| 292 | static unsigned int *stac922x_brd_tbl[] = { |
| 293 | ref922x_pin_configs, |
| 294 | d945gtp3_pin_configs, |
| 295 | d945gtp5_pin_configs, |
| 296 | }; |
| 297 | |
| 298 | static struct hda_board_config stac922x_cfg_tbl[] = { |
| 299 | { .modelname = "ref", |
| 300 | .pci_subvendor = PCI_VENDOR_ID_INTEL, |
| 301 | .pci_subdevice = 0x2668, /* DFI LanParty */ |
| 302 | .config = STAC_REF }, /* SigmaTel reference board */ |
| 303 | { .pci_subvendor = PCI_VENDOR_ID_INTEL, |
| 304 | .pci_subdevice = 0x0101, |
| 305 | .config = STAC_D945GTP3 }, /* Intel D945GTP - 3 Stack */ |
| 306 | { .pci_subvendor = PCI_VENDOR_ID_INTEL, |
Takashi Iwai | 353b9e6 | 2006-02-16 18:16:17 +0100 | [diff] [blame] | 307 | .pci_subdevice = 0x0202, |
| 308 | .config = STAC_D945GTP3 }, /* Intel D945GNT - 3 Stack, 9221 A1 */ |
| 309 | { .pci_subvendor = PCI_VENDOR_ID_INTEL, |
| 310 | .pci_subdevice = 0x0b0b, |
| 311 | .config = STAC_D945GTP3 }, /* Intel D945PSN - 3 Stack, 9221 A1 */ |
| 312 | { .pci_subvendor = PCI_VENDOR_ID_INTEL, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 313 | .pci_subdevice = 0x0404, |
| 314 | .config = STAC_D945GTP5 }, /* Intel D945GTP - 5 Stack */ |
| 315 | { .pci_subvendor = PCI_VENDOR_ID_INTEL, |
| 316 | .pci_subdevice = 0x0303, |
| 317 | .config = STAC_D945GTP5 }, /* Intel D945GNT - 5 Stack */ |
| 318 | { .pci_subvendor = PCI_VENDOR_ID_INTEL, |
| 319 | .pci_subdevice = 0x0013, |
| 320 | .config = STAC_D945GTP5 }, /* Intel D955XBK - 5 Stack */ |
Matt Porter | d62c40e | 2006-01-23 15:26:27 +0100 | [diff] [blame] | 321 | { .pci_subvendor = PCI_VENDOR_ID_INTEL, |
| 322 | .pci_subdevice = 0x0417, |
| 323 | .config = STAC_D945GTP5 }, /* Intel D975XBK - 5 Stack */ |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 324 | {} /* terminator */ |
| 325 | }; |
| 326 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 327 | static unsigned int ref927x_pin_configs[14] = { |
| 328 | 0x01813122, 0x01a19021, 0x01014010, 0x01016011, |
| 329 | 0x01012012, 0x01011014, 0x40000100, 0x40000100, |
| 330 | 0x40000100, 0x40000100, 0x40000100, 0x01441030, |
| 331 | 0x01c41030, 0x40000100, |
| 332 | }; |
| 333 | |
| 334 | static unsigned int *stac927x_brd_tbl[] = { |
| 335 | ref927x_pin_configs, |
| 336 | }; |
| 337 | |
| 338 | static struct hda_board_config stac927x_cfg_tbl[] = { |
| 339 | { .modelname = "ref", |
| 340 | .pci_subvendor = PCI_VENDOR_ID_INTEL, |
| 341 | .pci_subdevice = 0x2668, /* DFI LanParty */ |
| 342 | .config = STAC_REF }, /* SigmaTel reference board */ |
| 343 | {} /* terminator */ |
| 344 | }; |
| 345 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 346 | static void stac92xx_set_config_regs(struct hda_codec *codec) |
| 347 | { |
| 348 | int i; |
| 349 | struct sigmatel_spec *spec = codec->spec; |
| 350 | unsigned int pin_cfg; |
| 351 | |
| 352 | for (i=0; i < spec->num_pins; i++) { |
| 353 | snd_hda_codec_write(codec, spec->pin_nids[i], 0, |
| 354 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_0, |
| 355 | spec->pin_configs[i] & 0x000000ff); |
| 356 | snd_hda_codec_write(codec, spec->pin_nids[i], 0, |
| 357 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_1, |
| 358 | (spec->pin_configs[i] & 0x0000ff00) >> 8); |
| 359 | snd_hda_codec_write(codec, spec->pin_nids[i], 0, |
| 360 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_2, |
| 361 | (spec->pin_configs[i] & 0x00ff0000) >> 16); |
| 362 | snd_hda_codec_write(codec, spec->pin_nids[i], 0, |
| 363 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, |
| 364 | spec->pin_configs[i] >> 24); |
| 365 | pin_cfg = snd_hda_codec_read(codec, spec->pin_nids[i], 0, |
| 366 | AC_VERB_GET_CONFIG_DEFAULT, |
| 367 | 0x00); |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 368 | snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x pin config %8.8x\n", spec->pin_nids[i], pin_cfg); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 369 | } |
| 370 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 371 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 372 | /* |
| 373 | * Analog playback callbacks |
| 374 | */ |
| 375 | static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo, |
| 376 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 377 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 378 | { |
| 379 | struct sigmatel_spec *spec = codec->spec; |
| 380 | return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream); |
| 381 | } |
| 382 | |
| 383 | static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 384 | struct hda_codec *codec, |
| 385 | unsigned int stream_tag, |
| 386 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 387 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 388 | { |
| 389 | struct sigmatel_spec *spec = codec->spec; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 390 | return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 394 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 395 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 396 | { |
| 397 | struct sigmatel_spec *spec = codec->spec; |
| 398 | return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout); |
| 399 | } |
| 400 | |
| 401 | /* |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 402 | * Digital playback callbacks |
| 403 | */ |
| 404 | static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo, |
| 405 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 406 | struct snd_pcm_substream *substream) |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 407 | { |
| 408 | struct sigmatel_spec *spec = codec->spec; |
| 409 | return snd_hda_multi_out_dig_open(codec, &spec->multiout); |
| 410 | } |
| 411 | |
| 412 | static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo, |
| 413 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 414 | struct snd_pcm_substream *substream) |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 415 | { |
| 416 | struct sigmatel_spec *spec = codec->spec; |
| 417 | return snd_hda_multi_out_dig_close(codec, &spec->multiout); |
| 418 | } |
| 419 | |
| 420 | |
| 421 | /* |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 422 | * Analog capture callbacks |
| 423 | */ |
| 424 | static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo, |
| 425 | struct hda_codec *codec, |
| 426 | unsigned int stream_tag, |
| 427 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 428 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 429 | { |
| 430 | struct sigmatel_spec *spec = codec->spec; |
| 431 | |
| 432 | snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], |
| 433 | stream_tag, 0, format); |
| 434 | return 0; |
| 435 | } |
| 436 | |
| 437 | static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo, |
| 438 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 439 | struct snd_pcm_substream *substream) |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 440 | { |
| 441 | struct sigmatel_spec *spec = codec->spec; |
| 442 | |
| 443 | snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], 0, 0, 0); |
| 444 | return 0; |
| 445 | } |
| 446 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 447 | static struct hda_pcm_stream stac92xx_pcm_digital_playback = { |
| 448 | .substreams = 1, |
| 449 | .channels_min = 2, |
| 450 | .channels_max = 2, |
| 451 | /* NID is set in stac92xx_build_pcms */ |
| 452 | .ops = { |
| 453 | .open = stac92xx_dig_playback_pcm_open, |
| 454 | .close = stac92xx_dig_playback_pcm_close |
| 455 | }, |
| 456 | }; |
| 457 | |
| 458 | static struct hda_pcm_stream stac92xx_pcm_digital_capture = { |
| 459 | .substreams = 1, |
| 460 | .channels_min = 2, |
| 461 | .channels_max = 2, |
| 462 | /* NID is set in stac92xx_build_pcms */ |
| 463 | }; |
| 464 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 465 | static struct hda_pcm_stream stac92xx_pcm_analog_playback = { |
| 466 | .substreams = 1, |
| 467 | .channels_min = 2, |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 468 | .channels_max = 8, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 469 | .nid = 0x02, /* NID to query formats and rates */ |
| 470 | .ops = { |
| 471 | .open = stac92xx_playback_pcm_open, |
| 472 | .prepare = stac92xx_playback_pcm_prepare, |
| 473 | .cleanup = stac92xx_playback_pcm_cleanup |
| 474 | }, |
| 475 | }; |
| 476 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 477 | static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = { |
| 478 | .substreams = 1, |
| 479 | .channels_min = 2, |
| 480 | .channels_max = 2, |
| 481 | .nid = 0x06, /* NID to query formats and rates */ |
| 482 | .ops = { |
| 483 | .open = stac92xx_playback_pcm_open, |
| 484 | .prepare = stac92xx_playback_pcm_prepare, |
| 485 | .cleanup = stac92xx_playback_pcm_cleanup |
| 486 | }, |
| 487 | }; |
| 488 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 489 | static struct hda_pcm_stream stac92xx_pcm_analog_capture = { |
| 490 | .substreams = 2, |
| 491 | .channels_min = 2, |
| 492 | .channels_max = 2, |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 493 | /* NID is set in stac92xx_build_pcms */ |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 494 | .ops = { |
| 495 | .prepare = stac92xx_capture_pcm_prepare, |
| 496 | .cleanup = stac92xx_capture_pcm_cleanup |
| 497 | }, |
| 498 | }; |
| 499 | |
| 500 | static int stac92xx_build_pcms(struct hda_codec *codec) |
| 501 | { |
| 502 | struct sigmatel_spec *spec = codec->spec; |
| 503 | struct hda_pcm *info = spec->pcm_rec; |
| 504 | |
| 505 | codec->num_pcms = 1; |
| 506 | codec->pcm_info = info; |
| 507 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 508 | info->name = "STAC92xx Analog"; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 509 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 510 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture; |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 511 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0]; |
| 512 | |
| 513 | if (spec->alt_switch) { |
| 514 | codec->num_pcms++; |
| 515 | info++; |
| 516 | info->name = "STAC92xx Analog Alt"; |
| 517 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback; |
| 518 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 519 | |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 520 | if (spec->multiout.dig_out_nid || spec->dig_in_nid) { |
| 521 | codec->num_pcms++; |
| 522 | info++; |
| 523 | info->name = "STAC92xx Digital"; |
| 524 | if (spec->multiout.dig_out_nid) { |
| 525 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback; |
| 526 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid; |
| 527 | } |
| 528 | if (spec->dig_in_nid) { |
| 529 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture; |
| 530 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid; |
| 531 | } |
| 532 | } |
| 533 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 534 | return 0; |
| 535 | } |
| 536 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 537 | static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type) |
| 538 | |
| 539 | { |
| 540 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type); |
| 541 | } |
| 542 | |
| 543 | static int stac92xx_io_switch_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) |
| 544 | { |
| 545 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 546 | uinfo->count = 1; |
| 547 | uinfo->value.integer.min = 0; |
| 548 | uinfo->value.integer.max = 1; |
| 549 | return 0; |
| 550 | } |
| 551 | |
| 552 | static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
| 553 | { |
| 554 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 555 | struct sigmatel_spec *spec = codec->spec; |
| 556 | int io_idx = kcontrol-> private_value & 0xff; |
| 557 | |
| 558 | ucontrol->value.integer.value[0] = spec->io_switch[io_idx]; |
| 559 | return 0; |
| 560 | } |
| 561 | |
| 562 | static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
| 563 | { |
| 564 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 565 | struct sigmatel_spec *spec = codec->spec; |
| 566 | hda_nid_t nid = kcontrol->private_value >> 8; |
| 567 | int io_idx = kcontrol-> private_value & 0xff; |
| 568 | unsigned short val = ucontrol->value.integer.value[0]; |
| 569 | |
| 570 | spec->io_switch[io_idx] = val; |
| 571 | |
| 572 | if (val) |
| 573 | stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN); |
| 574 | else |
| 575 | stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_IN_EN); |
| 576 | |
| 577 | return 1; |
| 578 | } |
| 579 | |
| 580 | #define STAC_CODEC_IO_SWITCH(xname, xpval) \ |
| 581 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 582 | .name = xname, \ |
| 583 | .index = 0, \ |
| 584 | .info = stac92xx_io_switch_info, \ |
| 585 | .get = stac92xx_io_switch_get, \ |
| 586 | .put = stac92xx_io_switch_put, \ |
| 587 | .private_value = xpval, \ |
| 588 | } |
| 589 | |
| 590 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 591 | enum { |
| 592 | STAC_CTL_WIDGET_VOL, |
| 593 | STAC_CTL_WIDGET_MUTE, |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 594 | STAC_CTL_WIDGET_IO_SWITCH, |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 595 | }; |
| 596 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 597 | static struct snd_kcontrol_new stac92xx_control_templates[] = { |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 598 | HDA_CODEC_VOLUME(NULL, 0, 0, 0), |
| 599 | HDA_CODEC_MUTE(NULL, 0, 0, 0), |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 600 | STAC_CODEC_IO_SWITCH(NULL, 0), |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 601 | }; |
| 602 | |
| 603 | /* add dynamic controls */ |
| 604 | static int stac92xx_add_control(struct sigmatel_spec *spec, int type, const char *name, unsigned long val) |
| 605 | { |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 606 | struct snd_kcontrol_new *knew; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 607 | |
| 608 | if (spec->num_kctl_used >= spec->num_kctl_alloc) { |
| 609 | int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC; |
| 610 | |
| 611 | knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */ |
| 612 | if (! knew) |
| 613 | return -ENOMEM; |
| 614 | if (spec->kctl_alloc) { |
| 615 | memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc); |
| 616 | kfree(spec->kctl_alloc); |
| 617 | } |
| 618 | spec->kctl_alloc = knew; |
| 619 | spec->num_kctl_alloc = num; |
| 620 | } |
| 621 | |
| 622 | knew = &spec->kctl_alloc[spec->num_kctl_used]; |
| 623 | *knew = stac92xx_control_templates[type]; |
Takashi Iwai | 82fe0c5 | 2005-06-30 10:54:33 +0200 | [diff] [blame] | 624 | knew->name = kstrdup(name, GFP_KERNEL); |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 625 | if (! knew->name) |
| 626 | return -ENOMEM; |
| 627 | knew->private_value = val; |
| 628 | spec->num_kctl_used++; |
| 629 | return 0; |
| 630 | } |
| 631 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 632 | /* flag inputs as additional dynamic lineouts */ |
| 633 | static int stac92xx_add_dyn_out_pins(struct hda_codec *codec, struct auto_pin_cfg *cfg) |
| 634 | { |
| 635 | struct sigmatel_spec *spec = codec->spec; |
| 636 | |
| 637 | switch (cfg->line_outs) { |
| 638 | case 3: |
| 639 | /* add line-in as side */ |
| 640 | if (cfg->input_pins[AUTO_PIN_LINE]) { |
| 641 | cfg->line_out_pins[3] = cfg->input_pins[AUTO_PIN_LINE]; |
| 642 | spec->line_switch = 1; |
| 643 | cfg->line_outs++; |
| 644 | } |
| 645 | break; |
| 646 | case 2: |
| 647 | /* add line-in as clfe and mic as side */ |
| 648 | if (cfg->input_pins[AUTO_PIN_LINE]) { |
| 649 | cfg->line_out_pins[2] = cfg->input_pins[AUTO_PIN_LINE]; |
| 650 | spec->line_switch = 1; |
| 651 | cfg->line_outs++; |
| 652 | } |
| 653 | if (cfg->input_pins[AUTO_PIN_MIC]) { |
| 654 | cfg->line_out_pins[3] = cfg->input_pins[AUTO_PIN_MIC]; |
| 655 | spec->mic_switch = 1; |
| 656 | cfg->line_outs++; |
| 657 | } |
| 658 | break; |
| 659 | case 1: |
| 660 | /* add line-in as surr and mic as clfe */ |
| 661 | if (cfg->input_pins[AUTO_PIN_LINE]) { |
| 662 | cfg->line_out_pins[1] = cfg->input_pins[AUTO_PIN_LINE]; |
| 663 | spec->line_switch = 1; |
| 664 | cfg->line_outs++; |
| 665 | } |
| 666 | if (cfg->input_pins[AUTO_PIN_MIC]) { |
| 667 | cfg->line_out_pins[2] = cfg->input_pins[AUTO_PIN_MIC]; |
| 668 | spec->mic_switch = 1; |
| 669 | cfg->line_outs++; |
| 670 | } |
| 671 | break; |
| 672 | } |
| 673 | |
| 674 | return 0; |
| 675 | } |
| 676 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 677 | /* |
| 678 | * XXX The line_out pin widget connection list may not be set to the |
| 679 | * desired DAC nid. This is the case on 927x where ports A and B can |
| 680 | * be routed to several DACs. |
| 681 | * |
| 682 | * This requires an analysis of the line-out/hp pin configuration |
| 683 | * to provide a best fit for pin/DAC configurations that are routable. |
| 684 | * For now, 927x DAC4 is not supported and 927x DAC1 output to ports |
| 685 | * A and B is not supported. |
| 686 | */ |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 687 | /* fill in the dac_nids table from the parsed pin configuration */ |
| 688 | static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec, const struct auto_pin_cfg *cfg) |
| 689 | { |
| 690 | struct sigmatel_spec *spec = codec->spec; |
| 691 | hda_nid_t nid; |
| 692 | int i; |
| 693 | |
| 694 | /* check the pins hardwired to audio widget */ |
| 695 | for (i = 0; i < cfg->line_outs; i++) { |
| 696 | nid = cfg->line_out_pins[i]; |
| 697 | spec->multiout.dac_nids[i] = snd_hda_codec_read(codec, nid, 0, |
| 698 | AC_VERB_GET_CONNECT_LIST, 0) & 0xff; |
| 699 | } |
| 700 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 701 | spec->multiout.num_dacs = cfg->line_outs; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 702 | |
| 703 | return 0; |
| 704 | } |
| 705 | |
| 706 | /* add playback controls from the parsed DAC table */ |
| 707 | static int stac92xx_auto_create_multi_out_ctls(struct sigmatel_spec *spec, const struct auto_pin_cfg *cfg) |
| 708 | { |
| 709 | char name[32]; |
| 710 | static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" }; |
| 711 | hda_nid_t nid; |
| 712 | int i, err; |
| 713 | |
| 714 | for (i = 0; i < cfg->line_outs; i++) { |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 715 | if (!spec->multiout.dac_nids[i]) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 716 | continue; |
| 717 | |
| 718 | nid = spec->multiout.dac_nids[i]; |
| 719 | |
| 720 | if (i == 2) { |
| 721 | /* Center/LFE */ |
| 722 | if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, "Center Playback Volume", |
| 723 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0) |
| 724 | return err; |
| 725 | if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, "LFE Playback Volume", |
| 726 | HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0) |
| 727 | return err; |
| 728 | if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, "Center Playback Switch", |
| 729 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0) |
| 730 | return err; |
| 731 | if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, "LFE Playback Switch", |
| 732 | HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0) |
| 733 | return err; |
| 734 | } else { |
| 735 | sprintf(name, "%s Playback Volume", chname[i]); |
| 736 | if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, name, |
| 737 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0) |
| 738 | return err; |
| 739 | sprintf(name, "%s Playback Switch", chname[i]); |
| 740 | if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, name, |
| 741 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0) |
| 742 | return err; |
| 743 | } |
| 744 | } |
| 745 | |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 746 | if (spec->line_switch) |
| 747 | if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH, "Line In as Output Switch", cfg->input_pins[AUTO_PIN_LINE] << 8)) < 0) |
| 748 | return err; |
| 749 | |
| 750 | if (spec->mic_switch) |
| 751 | if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH, "Mic as Output Switch", (cfg->input_pins[AUTO_PIN_MIC] << 8) | 1)) < 0) |
| 752 | return err; |
| 753 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 754 | return 0; |
| 755 | } |
| 756 | |
| 757 | /* add playback controls for HP output */ |
| 758 | static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec, struct auto_pin_cfg *cfg) |
| 759 | { |
| 760 | struct sigmatel_spec *spec = codec->spec; |
| 761 | hda_nid_t pin = cfg->hp_pin; |
| 762 | hda_nid_t nid; |
| 763 | int i, err; |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 764 | unsigned int wid_caps; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 765 | |
| 766 | if (! pin) |
| 767 | return 0; |
| 768 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 769 | wid_caps = get_wcaps(codec, pin); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 770 | if (wid_caps & AC_WCAP_UNSOL_CAP) { |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 771 | /* Enable unsolicited responses on the HP widget */ |
| 772 | snd_hda_codec_write(codec, pin, 0, |
| 773 | AC_VERB_SET_UNSOLICITED_ENABLE, |
| 774 | STAC_UNSOL_ENABLE); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 775 | spec->hp_detect = 1; |
| 776 | } |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 777 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 778 | nid = snd_hda_codec_read(codec, pin, 0, AC_VERB_GET_CONNECT_LIST, 0) & 0xff; |
| 779 | for (i = 0; i < cfg->line_outs; i++) { |
| 780 | if (! spec->multiout.dac_nids[i]) |
| 781 | continue; |
| 782 | if (spec->multiout.dac_nids[i] == nid) |
| 783 | return 0; |
| 784 | } |
| 785 | |
| 786 | spec->multiout.hp_nid = nid; |
| 787 | |
| 788 | /* control HP volume/switch on the output mixer amp */ |
| 789 | if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, "Headphone Playback Volume", |
| 790 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0) |
| 791 | return err; |
| 792 | if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, "Headphone Playback Switch", |
| 793 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0) |
| 794 | return err; |
| 795 | |
| 796 | return 0; |
| 797 | } |
| 798 | |
| 799 | /* create playback/capture controls for input pins */ |
| 800 | static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg) |
| 801 | { |
| 802 | struct sigmatel_spec *spec = codec->spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 803 | struct hda_input_mux *imux = &spec->private_imux; |
| 804 | hda_nid_t con_lst[HDA_MAX_NUM_INPUTS]; |
| 805 | int i, j, k; |
| 806 | |
| 807 | for (i = 0; i < AUTO_PIN_LAST; i++) { |
| 808 | int index = -1; |
| 809 | if (cfg->input_pins[i]) { |
Takashi Iwai | 4a471b7 | 2005-12-07 13:56:29 +0100 | [diff] [blame] | 810 | imux->items[imux->num_items].label = auto_pin_cfg_labels[i]; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 811 | |
| 812 | for (j=0; j<spec->num_muxes; j++) { |
| 813 | int num_cons = snd_hda_get_connections(codec, spec->mux_nids[j], con_lst, HDA_MAX_NUM_INPUTS); |
| 814 | for (k=0; k<num_cons; k++) |
| 815 | if (con_lst[k] == cfg->input_pins[i]) { |
| 816 | index = k; |
| 817 | break; |
| 818 | } |
| 819 | if (index >= 0) |
| 820 | break; |
| 821 | } |
| 822 | imux->items[imux->num_items].index = index; |
| 823 | imux->num_items++; |
| 824 | } |
| 825 | } |
| 826 | |
| 827 | return 0; |
| 828 | } |
| 829 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 830 | static void stac92xx_auto_init_multi_out(struct hda_codec *codec) |
| 831 | { |
| 832 | struct sigmatel_spec *spec = codec->spec; |
| 833 | int i; |
| 834 | |
| 835 | for (i = 0; i < spec->autocfg.line_outs; i++) { |
| 836 | hda_nid_t nid = spec->autocfg.line_out_pins[i]; |
| 837 | stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN); |
| 838 | } |
| 839 | } |
| 840 | |
| 841 | static void stac92xx_auto_init_hp_out(struct hda_codec *codec) |
| 842 | { |
| 843 | struct sigmatel_spec *spec = codec->spec; |
| 844 | hda_nid_t pin; |
| 845 | |
| 846 | pin = spec->autocfg.hp_pin; |
| 847 | if (pin) /* connect to front */ |
| 848 | stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); |
| 849 | } |
| 850 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 851 | static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out, hda_nid_t dig_in) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 852 | { |
| 853 | struct sigmatel_spec *spec = codec->spec; |
| 854 | int err; |
| 855 | |
Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 856 | if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 857 | return err; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 858 | if (! spec->autocfg.line_outs) |
Matt Porter | 869264c | 2006-01-25 19:20:50 +0100 | [diff] [blame] | 859 | return 0; /* can't find valid pin config */ |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 860 | if ((err = stac92xx_add_dyn_out_pins(codec, &spec->autocfg)) < 0) |
| 861 | return err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 862 | if ((err = stac92xx_auto_fill_dac_nids(codec, &spec->autocfg)) < 0) |
| 863 | return err; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 864 | |
| 865 | if ((err = stac92xx_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 || |
| 866 | (err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg)) < 0 || |
| 867 | (err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0) |
| 868 | return err; |
| 869 | |
| 870 | spec->multiout.max_channels = spec->multiout.num_dacs * 2; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 871 | if (spec->multiout.max_channels > 2) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 872 | spec->surr_switch = 1; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 873 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 874 | if (spec->autocfg.dig_out_pin) |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 875 | spec->multiout.dig_out_nid = dig_out; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 876 | if (spec->autocfg.dig_in_pin) |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 877 | spec->dig_in_nid = dig_in; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 878 | |
| 879 | if (spec->kctl_alloc) |
| 880 | spec->mixers[spec->num_mixers++] = spec->kctl_alloc; |
| 881 | |
| 882 | spec->input_mux = &spec->private_imux; |
| 883 | |
| 884 | return 1; |
| 885 | } |
| 886 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 887 | /* add playback controls for HP output */ |
| 888 | static int stac9200_auto_create_hp_ctls(struct hda_codec *codec, |
| 889 | struct auto_pin_cfg *cfg) |
| 890 | { |
| 891 | struct sigmatel_spec *spec = codec->spec; |
| 892 | hda_nid_t pin = cfg->hp_pin; |
| 893 | unsigned int wid_caps; |
| 894 | |
| 895 | if (! pin) |
| 896 | return 0; |
| 897 | |
| 898 | wid_caps = get_wcaps(codec, pin); |
| 899 | if (wid_caps & AC_WCAP_UNSOL_CAP) { |
| 900 | /* Enable unsolicited responses on the HP widget */ |
| 901 | snd_hda_codec_write(codec, pin, 0, |
| 902 | AC_VERB_SET_UNSOLICITED_ENABLE, |
| 903 | STAC_UNSOL_ENABLE); |
| 904 | spec->hp_detect = 1; |
| 905 | } |
| 906 | |
| 907 | return 0; |
| 908 | } |
| 909 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 910 | static int stac9200_parse_auto_config(struct hda_codec *codec) |
| 911 | { |
| 912 | struct sigmatel_spec *spec = codec->spec; |
| 913 | int err; |
| 914 | |
Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 915 | if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 916 | return err; |
| 917 | |
| 918 | if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0) |
| 919 | return err; |
| 920 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 921 | if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0) |
| 922 | return err; |
| 923 | |
| 924 | if (spec->autocfg.dig_out_pin) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 925 | spec->multiout.dig_out_nid = 0x05; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 926 | if (spec->autocfg.dig_in_pin) |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 927 | spec->dig_in_nid = 0x04; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 928 | |
| 929 | if (spec->kctl_alloc) |
| 930 | spec->mixers[spec->num_mixers++] = spec->kctl_alloc; |
| 931 | |
| 932 | spec->input_mux = &spec->private_imux; |
| 933 | |
| 934 | return 1; |
| 935 | } |
| 936 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 937 | static int stac92xx_init(struct hda_codec *codec) |
| 938 | { |
| 939 | struct sigmatel_spec *spec = codec->spec; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 940 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 941 | int i; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 942 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 943 | snd_hda_sequence_write(codec, spec->init); |
| 944 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame^] | 945 | /* set up pins */ |
| 946 | if (spec->hp_detect) { |
| 947 | /* fake event to set up pins */ |
| 948 | codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26); |
| 949 | } else { |
| 950 | stac92xx_auto_init_multi_out(codec); |
| 951 | stac92xx_auto_init_hp_out(codec); |
| 952 | } |
| 953 | for (i = 0; i < AUTO_PIN_LAST; i++) { |
| 954 | if (cfg->input_pins[i]) |
| 955 | stac92xx_auto_set_pinctl(codec, cfg->input_pins[i], |
| 956 | AC_PINCTL_IN_EN); |
| 957 | } |
| 958 | if (cfg->dig_out_pin) |
| 959 | stac92xx_auto_set_pinctl(codec, cfg->dig_out_pin, |
| 960 | AC_PINCTL_OUT_EN); |
| 961 | if (cfg->dig_in_pin) |
| 962 | stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin, |
| 963 | AC_PINCTL_IN_EN); |
| 964 | |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 965 | return 0; |
| 966 | } |
| 967 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 968 | static void stac92xx_free(struct hda_codec *codec) |
| 969 | { |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 970 | struct sigmatel_spec *spec = codec->spec; |
| 971 | int i; |
| 972 | |
| 973 | if (! spec) |
| 974 | return; |
| 975 | |
| 976 | if (spec->kctl_alloc) { |
| 977 | for (i = 0; i < spec->num_kctl_used; i++) |
| 978 | kfree(spec->kctl_alloc[i].name); |
| 979 | kfree(spec->kctl_alloc); |
| 980 | } |
| 981 | |
| 982 | kfree(spec); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 983 | } |
| 984 | |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 985 | static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid, |
| 986 | unsigned int flag) |
| 987 | { |
| 988 | unsigned int pin_ctl = snd_hda_codec_read(codec, nid, |
| 989 | 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00); |
| 990 | snd_hda_codec_write(codec, nid, 0, |
| 991 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 992 | pin_ctl | flag); |
| 993 | } |
| 994 | |
| 995 | static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid, |
| 996 | unsigned int flag) |
| 997 | { |
| 998 | unsigned int pin_ctl = snd_hda_codec_read(codec, nid, |
| 999 | 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00); |
| 1000 | snd_hda_codec_write(codec, nid, 0, |
| 1001 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 1002 | pin_ctl & ~flag); |
| 1003 | } |
| 1004 | |
| 1005 | static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res) |
| 1006 | { |
| 1007 | struct sigmatel_spec *spec = codec->spec; |
| 1008 | struct auto_pin_cfg *cfg = &spec->autocfg; |
| 1009 | int i, presence; |
| 1010 | |
| 1011 | if ((res >> 26) != STAC_HP_EVENT) |
| 1012 | return; |
| 1013 | |
| 1014 | presence = snd_hda_codec_read(codec, cfg->hp_pin, 0, |
| 1015 | AC_VERB_GET_PIN_SENSE, 0x00) >> 31; |
| 1016 | |
| 1017 | if (presence) { |
| 1018 | /* disable lineouts, enable hp */ |
| 1019 | for (i = 0; i < cfg->line_outs; i++) |
| 1020 | stac92xx_reset_pinctl(codec, cfg->line_out_pins[i], |
| 1021 | AC_PINCTL_OUT_EN); |
| 1022 | stac92xx_set_pinctl(codec, cfg->hp_pin, AC_PINCTL_OUT_EN); |
| 1023 | } else { |
| 1024 | /* enable lineouts, disable hp */ |
| 1025 | for (i = 0; i < cfg->line_outs; i++) |
| 1026 | stac92xx_set_pinctl(codec, cfg->line_out_pins[i], |
| 1027 | AC_PINCTL_OUT_EN); |
| 1028 | stac92xx_reset_pinctl(codec, cfg->hp_pin, AC_PINCTL_OUT_EN); |
| 1029 | } |
| 1030 | } |
| 1031 | |
Matt | ff6fdc3 | 2005-06-27 15:06:52 +0200 | [diff] [blame] | 1032 | #ifdef CONFIG_PM |
| 1033 | static int stac92xx_resume(struct hda_codec *codec) |
| 1034 | { |
| 1035 | struct sigmatel_spec *spec = codec->spec; |
| 1036 | int i; |
| 1037 | |
| 1038 | stac92xx_init(codec); |
| 1039 | for (i = 0; i < spec->num_mixers; i++) |
| 1040 | snd_hda_resume_ctls(codec, spec->mixers[i]); |
| 1041 | if (spec->multiout.dig_out_nid) |
| 1042 | snd_hda_resume_spdif_out(codec); |
| 1043 | if (spec->dig_in_nid) |
| 1044 | snd_hda_resume_spdif_in(codec); |
| 1045 | |
| 1046 | return 0; |
| 1047 | } |
| 1048 | #endif |
| 1049 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1050 | static struct hda_codec_ops stac92xx_patch_ops = { |
| 1051 | .build_controls = stac92xx_build_controls, |
| 1052 | .build_pcms = stac92xx_build_pcms, |
| 1053 | .init = stac92xx_init, |
| 1054 | .free = stac92xx_free, |
Matt | 4e55096 | 2005-07-04 17:51:39 +0200 | [diff] [blame] | 1055 | .unsol_event = stac92xx_unsol_event, |
Matt | ff6fdc3 | 2005-06-27 15:06:52 +0200 | [diff] [blame] | 1056 | #ifdef CONFIG_PM |
| 1057 | .resume = stac92xx_resume, |
| 1058 | #endif |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1059 | }; |
| 1060 | |
| 1061 | static int patch_stac9200(struct hda_codec *codec) |
| 1062 | { |
| 1063 | struct sigmatel_spec *spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1064 | int err; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1065 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 1066 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1067 | if (spec == NULL) |
| 1068 | return -ENOMEM; |
| 1069 | |
| 1070 | codec->spec = spec; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1071 | spec->board_config = snd_hda_check_board_config(codec, stac9200_cfg_tbl); |
| 1072 | if (spec->board_config < 0) |
| 1073 | snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9200, using BIOS defaults\n"); |
| 1074 | else { |
| 1075 | spec->num_pins = 8; |
| 1076 | spec->pin_nids = stac9200_pin_nids; |
| 1077 | spec->pin_configs = stac9200_brd_tbl[spec->board_config]; |
| 1078 | stac92xx_set_config_regs(codec); |
| 1079 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1080 | |
| 1081 | spec->multiout.max_channels = 2; |
| 1082 | spec->multiout.num_dacs = 1; |
| 1083 | spec->multiout.dac_nids = stac9200_dac_nids; |
| 1084 | spec->adc_nids = stac9200_adc_nids; |
| 1085 | spec->mux_nids = stac9200_mux_nids; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1086 | spec->num_muxes = 1; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1087 | |
| 1088 | spec->init = stac9200_core_init; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1089 | spec->mixer = stac9200_mixer; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1090 | |
| 1091 | err = stac9200_parse_auto_config(codec); |
| 1092 | if (err < 0) { |
| 1093 | stac92xx_free(codec); |
| 1094 | return err; |
| 1095 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1096 | |
| 1097 | codec->patch_ops = stac92xx_patch_ops; |
| 1098 | |
| 1099 | return 0; |
| 1100 | } |
| 1101 | |
| 1102 | static int patch_stac922x(struct hda_codec *codec) |
| 1103 | { |
| 1104 | struct sigmatel_spec *spec; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1105 | int err; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1106 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 1107 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1108 | if (spec == NULL) |
| 1109 | return -ENOMEM; |
| 1110 | |
| 1111 | codec->spec = spec; |
Matt Porter | 403d194 | 2005-11-29 15:00:51 +0100 | [diff] [blame] | 1112 | spec->board_config = snd_hda_check_board_config(codec, stac922x_cfg_tbl); |
| 1113 | if (spec->board_config < 0) |
| 1114 | snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC922x, using BIOS defaults\n"); |
| 1115 | else { |
| 1116 | spec->num_pins = 10; |
| 1117 | spec->pin_nids = stac922x_pin_nids; |
| 1118 | spec->pin_configs = stac922x_brd_tbl[spec->board_config]; |
| 1119 | stac92xx_set_config_regs(codec); |
| 1120 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1121 | |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1122 | spec->adc_nids = stac922x_adc_nids; |
| 1123 | spec->mux_nids = stac922x_mux_nids; |
Matt | dabbed6 | 2005-06-14 10:19:34 +0200 | [diff] [blame] | 1124 | spec->num_muxes = 2; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1125 | |
| 1126 | spec->init = stac922x_core_init; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1127 | spec->mixer = stac922x_mixer; |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1128 | |
| 1129 | spec->multiout.dac_nids = spec->dac_nids; |
| 1130 | |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 1131 | err = stac92xx_parse_auto_config(codec, 0x08, 0x09); |
| 1132 | if (err < 0) { |
| 1133 | stac92xx_free(codec); |
| 1134 | return err; |
| 1135 | } |
| 1136 | |
| 1137 | codec->patch_ops = stac92xx_patch_ops; |
| 1138 | |
| 1139 | return 0; |
| 1140 | } |
| 1141 | |
| 1142 | static int patch_stac927x(struct hda_codec *codec) |
| 1143 | { |
| 1144 | struct sigmatel_spec *spec; |
| 1145 | int err; |
| 1146 | |
| 1147 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 1148 | if (spec == NULL) |
| 1149 | return -ENOMEM; |
| 1150 | |
| 1151 | codec->spec = spec; |
| 1152 | spec->board_config = snd_hda_check_board_config(codec, stac927x_cfg_tbl); |
| 1153 | if (spec->board_config < 0) |
| 1154 | snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC927x, using BIOS defaults\n"); |
| 1155 | else { |
| 1156 | spec->num_pins = 14; |
| 1157 | spec->pin_nids = stac927x_pin_nids; |
| 1158 | spec->pin_configs = stac927x_brd_tbl[spec->board_config]; |
| 1159 | stac92xx_set_config_regs(codec); |
| 1160 | } |
| 1161 | |
| 1162 | spec->adc_nids = stac927x_adc_nids; |
| 1163 | spec->mux_nids = stac927x_mux_nids; |
| 1164 | spec->num_muxes = 3; |
| 1165 | |
| 1166 | spec->init = stac927x_core_init; |
| 1167 | spec->mixer = stac927x_mixer; |
| 1168 | |
| 1169 | spec->multiout.dac_nids = spec->dac_nids; |
| 1170 | |
| 1171 | err = stac92xx_parse_auto_config(codec, 0x1e, 0x20); |
Matt | c7d4b2f | 2005-06-27 14:59:41 +0200 | [diff] [blame] | 1172 | if (err < 0) { |
| 1173 | stac92xx_free(codec); |
| 1174 | return err; |
| 1175 | } |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1176 | |
| 1177 | codec->patch_ops = stac92xx_patch_ops; |
| 1178 | |
| 1179 | return 0; |
| 1180 | } |
| 1181 | |
| 1182 | /* |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 1183 | * STAC 7661(?) hack |
| 1184 | */ |
| 1185 | |
| 1186 | /* static config for Sony VAIO FE550G */ |
| 1187 | static hda_nid_t vaio_dacs[] = { 0x2 }; |
| 1188 | #define VAIO_HP_DAC 0x5 |
| 1189 | static hda_nid_t vaio_adcs[] = { 0x8 /*,0x6*/ }; |
| 1190 | static hda_nid_t vaio_mux_nids[] = { 0x15 }; |
| 1191 | |
| 1192 | static struct hda_input_mux vaio_mux = { |
| 1193 | .num_items = 2, |
| 1194 | .items = { |
| 1195 | /* { "HP", 0x0 }, |
| 1196 | { "Unknown", 0x1 }, */ |
| 1197 | { "Mic", 0x2 }, |
| 1198 | { "PCM", 0x3 }, |
| 1199 | } |
| 1200 | }; |
| 1201 | |
| 1202 | static struct hda_verb vaio_init[] = { |
| 1203 | {0x0a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP <- 0x2 */ |
| 1204 | {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Speaker <- 0x5 */ |
| 1205 | {0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? (<- 0x2) */ |
| 1206 | {0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD */ |
| 1207 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? */ |
| 1208 | {0x15, AC_VERB_SET_CONNECT_SEL, 0x2}, /* mic-sel: 0a,0d,14,02 */ |
| 1209 | {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* HP */ |
| 1210 | {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* Speaker */ |
| 1211 | {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* capture sw/vol -> 0x8 */ |
| 1212 | {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, /* CD-in -> 0x6 */ |
| 1213 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */ |
| 1214 | {} |
| 1215 | }; |
| 1216 | |
| 1217 | /* bind volumes of both NID 0x02 and 0x05 */ |
| 1218 | static int vaio_master_vol_put(struct snd_kcontrol *kcontrol, |
| 1219 | struct snd_ctl_elem_value *ucontrol) |
| 1220 | { |
| 1221 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1222 | long *valp = ucontrol->value.integer.value; |
| 1223 | int change; |
| 1224 | |
| 1225 | change = snd_hda_codec_amp_update(codec, 0x02, 0, HDA_OUTPUT, 0, |
| 1226 | 0x7f, valp[0] & 0x7f); |
| 1227 | change |= snd_hda_codec_amp_update(codec, 0x02, 1, HDA_OUTPUT, 0, |
| 1228 | 0x7f, valp[1] & 0x7f); |
| 1229 | snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0, |
| 1230 | 0x7f, valp[0] & 0x7f); |
| 1231 | snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0, |
| 1232 | 0x7f, valp[1] & 0x7f); |
| 1233 | return change; |
| 1234 | } |
| 1235 | |
| 1236 | /* bind volumes of both NID 0x02 and 0x05 */ |
| 1237 | static int vaio_master_sw_put(struct snd_kcontrol *kcontrol, |
| 1238 | struct snd_ctl_elem_value *ucontrol) |
| 1239 | { |
| 1240 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1241 | long *valp = ucontrol->value.integer.value; |
| 1242 | int change; |
| 1243 | |
| 1244 | change = snd_hda_codec_amp_update(codec, 0x02, 0, HDA_OUTPUT, 0, |
| 1245 | 0x80, valp[0] & 0x80); |
| 1246 | change |= snd_hda_codec_amp_update(codec, 0x02, 1, HDA_OUTPUT, 0, |
| 1247 | 0x80, valp[1] & 0x80); |
| 1248 | snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0, |
| 1249 | 0x80, valp[0] & 0x80); |
| 1250 | snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0, |
| 1251 | 0x80, valp[1] & 0x80); |
| 1252 | return change; |
| 1253 | } |
| 1254 | |
| 1255 | static struct snd_kcontrol_new vaio_mixer[] = { |
| 1256 | { |
| 1257 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1258 | .name = "Master Playback Volume", |
| 1259 | .info = snd_hda_mixer_amp_volume_info, |
| 1260 | .get = snd_hda_mixer_amp_volume_get, |
| 1261 | .put = vaio_master_vol_put, |
| 1262 | .private_value = HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT), |
| 1263 | }, |
| 1264 | { |
| 1265 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1266 | .name = "Master Playback Switch", |
| 1267 | .info = snd_hda_mixer_amp_switch_info, |
| 1268 | .get = snd_hda_mixer_amp_switch_get, |
| 1269 | .put = vaio_master_sw_put, |
| 1270 | .private_value = HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT), |
| 1271 | }, |
| 1272 | /* HDA_CODEC_VOLUME("CD Capture Volume", 0x07, 0, HDA_INPUT), */ |
| 1273 | HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT), |
| 1274 | HDA_CODEC_MUTE("Capture Switch", 0x09, 0, HDA_INPUT), |
| 1275 | { |
| 1276 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1277 | .name = "Capture Source", |
| 1278 | .count = 1, |
| 1279 | .info = stac92xx_mux_enum_info, |
| 1280 | .get = stac92xx_mux_enum_get, |
| 1281 | .put = stac92xx_mux_enum_put, |
| 1282 | }, |
| 1283 | {} |
| 1284 | }; |
| 1285 | |
| 1286 | static struct hda_codec_ops stac7661_patch_ops = { |
| 1287 | .build_controls = stac92xx_build_controls, |
| 1288 | .build_pcms = stac92xx_build_pcms, |
| 1289 | .init = stac92xx_init, |
| 1290 | .free = stac92xx_free, |
| 1291 | #ifdef CONFIG_PM |
| 1292 | .resume = stac92xx_resume, |
| 1293 | #endif |
| 1294 | }; |
| 1295 | |
| 1296 | enum { STAC7661_VAIO }; |
| 1297 | |
| 1298 | static struct hda_board_config stac7661_cfg_tbl[] = { |
| 1299 | { .modelname = "vaio", .config = STAC7661_VAIO }, |
| 1300 | { .pci_subvendor = 0x104d, .pci_subdevice = 0x81e6, |
| 1301 | .config = STAC7661_VAIO }, |
| 1302 | { .pci_subvendor = 0x104d, .pci_subdevice = 0x81ef, |
| 1303 | .config = STAC7661_VAIO }, |
| 1304 | {} |
| 1305 | }; |
| 1306 | |
| 1307 | static int patch_stac7661(struct hda_codec *codec) |
| 1308 | { |
| 1309 | struct sigmatel_spec *spec; |
| 1310 | int board_config; |
| 1311 | |
| 1312 | board_config = snd_hda_check_board_config(codec, stac7661_cfg_tbl); |
| 1313 | if (board_config < 0) |
| 1314 | /* unknown config, let generic-parser do its job... */ |
| 1315 | return snd_hda_parse_generic_codec(codec); |
| 1316 | |
| 1317 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
| 1318 | if (spec == NULL) |
| 1319 | return -ENOMEM; |
| 1320 | |
| 1321 | codec->spec = spec; |
| 1322 | switch (board_config) { |
| 1323 | case STAC7661_VAIO: |
| 1324 | spec->mixer = vaio_mixer; |
| 1325 | spec->init = vaio_init; |
| 1326 | spec->multiout.max_channels = 2; |
| 1327 | spec->multiout.num_dacs = ARRAY_SIZE(vaio_dacs); |
| 1328 | spec->multiout.dac_nids = vaio_dacs; |
| 1329 | spec->multiout.hp_nid = VAIO_HP_DAC; |
| 1330 | spec->num_adcs = ARRAY_SIZE(vaio_adcs); |
| 1331 | spec->adc_nids = vaio_adcs; |
| 1332 | spec->input_mux = &vaio_mux; |
| 1333 | spec->mux_nids = vaio_mux_nids; |
| 1334 | break; |
| 1335 | } |
| 1336 | |
| 1337 | codec->patch_ops = stac7661_patch_ops; |
| 1338 | return 0; |
| 1339 | } |
| 1340 | |
| 1341 | |
| 1342 | /* |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1343 | * patch entries |
| 1344 | */ |
| 1345 | struct hda_codec_preset snd_hda_preset_sigmatel[] = { |
| 1346 | { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 }, |
| 1347 | { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x }, |
| 1348 | { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x }, |
| 1349 | { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x }, |
| 1350 | { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x }, |
| 1351 | { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x }, |
| 1352 | { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x }, |
Matt Porter | 3cc08dc | 2006-01-23 15:27:49 +0100 | [diff] [blame] | 1353 | { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x }, |
| 1354 | { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x }, |
| 1355 | { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x }, |
| 1356 | { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x }, |
| 1357 | { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x }, |
| 1358 | { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x }, |
| 1359 | { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x }, |
| 1360 | { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x }, |
| 1361 | { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x }, |
| 1362 | { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x }, |
Takashi Iwai | db064e5 | 2006-03-16 16:04:58 +0100 | [diff] [blame] | 1363 | { .id = 0x83847661, .name = "STAC7661", .patch = patch_stac7661 }, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 1364 | {} /* terminator */ |
| 1365 | }; |