Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Driver for C-Media's CMI8330 soundcards. |
| 3 | * Copyright (c) by George Talusan <gstalusan@uwaterloo.ca> |
| 4 | * http://www.undergrad.math.uwaterloo.ca/~gstalusa |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * NOTES |
| 24 | * |
| 25 | * The extended registers contain mixer settings which are largely |
| 26 | * untapped for the time being. |
| 27 | * |
| 28 | * MPU401 and SPDIF are not supported yet. I don't have the hardware |
| 29 | * to aid in coding and testing, so I won't bother. |
| 30 | * |
| 31 | * To quickly load the module, |
| 32 | * |
| 33 | * modprobe -a snd-cmi8330 sbport=0x220 sbirq=5 sbdma8=1 |
| 34 | * sbdma16=5 wssport=0x530 wssirq=11 wssdma=0 |
| 35 | * |
| 36 | * This card has two mixers and two PCM devices. I've cheesed it such |
| 37 | * that recording and playback can be done through the same device. |
| 38 | * The driver "magically" routes the capturing to the AD1848 codec, |
| 39 | * and playback to the SB16 codec. This allows for full-duplex mode |
| 40 | * to some extent. |
| 41 | * The utilities in alsa-utils are aware of both devices, so passing |
| 42 | * the appropriate parameters to amixer and alsactl will give you |
| 43 | * full control over both mixers. |
| 44 | */ |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <linux/init.h> |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 47 | #include <linux/err.h> |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 48 | #include <linux/isa.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <linux/slab.h> |
| 50 | #include <linux/pnp.h> |
| 51 | #include <linux/moduleparam.h> |
| 52 | #include <sound/core.h> |
Krzysztof Helt | 760fc6b8 | 2008-07-31 21:10:47 +0200 | [diff] [blame] | 53 | #include <sound/wss.h> |
Krzysztof Helt | 48972cc | 2009-01-21 08:18:16 +0100 | [diff] [blame^] | 54 | #include <sound/opl3.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #include <sound/sb.h> |
| 56 | #include <sound/initval.h> |
| 57 | |
| 58 | /* |
| 59 | */ |
| 60 | /* #define ENABLE_SB_MIXER */ |
| 61 | #define PLAYBACK_ON_SB |
| 62 | |
| 63 | /* |
| 64 | */ |
| 65 | MODULE_AUTHOR("George Talusan <gstalusan@uwaterloo.ca>"); |
| 66 | MODULE_DESCRIPTION("C-Media CMI8330"); |
| 67 | MODULE_LICENSE("GPL"); |
| 68 | MODULE_SUPPORTED_DEVICE("{{C-Media,CMI8330,isapnp:{CMI0001,@@@0001,@X@0001}}}"); |
| 69 | |
| 70 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; |
| 71 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; |
| 72 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; |
| 73 | #ifdef CONFIG_PNP |
| 74 | static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; |
| 75 | #endif |
| 76 | static long sbport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; |
| 77 | static int sbirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; |
| 78 | static int sbdma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; |
| 79 | static int sbdma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; |
| 80 | static long wssport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; |
| 81 | static int wssirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; |
| 82 | static int wssdma[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; |
Krzysztof Helt | 48972cc | 2009-01-21 08:18:16 +0100 | [diff] [blame^] | 83 | static long fmport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | module_param_array(index, int, NULL, 0444); |
| 86 | MODULE_PARM_DESC(index, "Index value for CMI8330 soundcard."); |
| 87 | module_param_array(id, charp, NULL, 0444); |
| 88 | MODULE_PARM_DESC(id, "ID string for CMI8330 soundcard."); |
| 89 | module_param_array(enable, bool, NULL, 0444); |
| 90 | MODULE_PARM_DESC(enable, "Enable CMI8330 soundcard."); |
| 91 | #ifdef CONFIG_PNP |
| 92 | module_param_array(isapnp, bool, NULL, 0444); |
| 93 | MODULE_PARM_DESC(isapnp, "PnP detection for specified soundcard."); |
| 94 | #endif |
| 95 | |
| 96 | module_param_array(sbport, long, NULL, 0444); |
| 97 | MODULE_PARM_DESC(sbport, "Port # for CMI8330 SB driver."); |
| 98 | module_param_array(sbirq, int, NULL, 0444); |
| 99 | MODULE_PARM_DESC(sbirq, "IRQ # for CMI8330 SB driver."); |
| 100 | module_param_array(sbdma8, int, NULL, 0444); |
| 101 | MODULE_PARM_DESC(sbdma8, "DMA8 for CMI8330 SB driver."); |
| 102 | module_param_array(sbdma16, int, NULL, 0444); |
| 103 | MODULE_PARM_DESC(sbdma16, "DMA16 for CMI8330 SB driver."); |
| 104 | |
| 105 | module_param_array(wssport, long, NULL, 0444); |
| 106 | MODULE_PARM_DESC(wssport, "Port # for CMI8330 WSS driver."); |
| 107 | module_param_array(wssirq, int, NULL, 0444); |
| 108 | MODULE_PARM_DESC(wssirq, "IRQ # for CMI8330 WSS driver."); |
| 109 | module_param_array(wssdma, int, NULL, 0444); |
| 110 | MODULE_PARM_DESC(wssdma, "DMA for CMI8330 WSS driver."); |
| 111 | |
Krzysztof Helt | 48972cc | 2009-01-21 08:18:16 +0100 | [diff] [blame^] | 112 | module_param_array(fmport, long, NULL, 0444); |
| 113 | MODULE_PARM_DESC(fmport, "FM port # for CMI8330 driver."); |
Takashi Iwai | 59b1b34 | 2006-01-04 15:06:44 +0100 | [diff] [blame] | 114 | #ifdef CONFIG_PNP |
Rene Herman | 609d769 | 2007-05-15 11:42:56 +0200 | [diff] [blame] | 115 | static int isa_registered; |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 116 | static int pnp_registered; |
Takashi Iwai | 59b1b34 | 2006-01-04 15:06:44 +0100 | [diff] [blame] | 117 | #endif |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | #define CMI8330_RMUX3D 16 |
| 120 | #define CMI8330_MUTEMUX 17 |
| 121 | #define CMI8330_OUTPUTVOL 18 |
| 122 | #define CMI8330_MASTVOL 19 |
| 123 | #define CMI8330_LINVOL 20 |
| 124 | #define CMI8330_CDINVOL 21 |
| 125 | #define CMI8330_WAVVOL 22 |
| 126 | #define CMI8330_RECMUX 23 |
| 127 | #define CMI8330_WAVGAIN 24 |
| 128 | #define CMI8330_LINGAIN 25 |
| 129 | #define CMI8330_CDINGAIN 26 |
| 130 | |
| 131 | static unsigned char snd_cmi8330_image[((CMI8330_CDINGAIN)-16) + 1] = |
| 132 | { |
| 133 | 0x40, /* 16 - recording mux (SB-mixer-enabled) */ |
| 134 | #ifdef ENABLE_SB_MIXER |
| 135 | 0x40, /* 17 - mute mux (Mode2) */ |
| 136 | #else |
| 137 | 0x0, /* 17 - mute mux */ |
| 138 | #endif |
| 139 | 0x0, /* 18 - vol */ |
| 140 | 0x0, /* 19 - master volume */ |
| 141 | 0x0, /* 20 - line-in volume */ |
| 142 | 0x0, /* 21 - cd-in volume */ |
| 143 | 0x0, /* 22 - wave volume */ |
| 144 | 0x0, /* 23 - mute/rec mux */ |
| 145 | 0x0, /* 24 - wave rec gain */ |
| 146 | 0x0, /* 25 - line-in rec gain */ |
| 147 | 0x0 /* 26 - cd-in rec gain */ |
| 148 | }; |
| 149 | |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 150 | typedef int (*snd_pcm_open_callback_t)(struct snd_pcm_substream *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | struct snd_cmi8330 { |
| 153 | #ifdef CONFIG_PNP |
| 154 | struct pnp_dev *cap; |
| 155 | struct pnp_dev *play; |
| 156 | #endif |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 157 | struct snd_card *card; |
Krzysztof Helt | 241b3ee | 2008-07-31 21:04:37 +0200 | [diff] [blame] | 158 | struct snd_wss *wss; |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 159 | struct snd_sb *sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 161 | struct snd_pcm *pcm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | struct snd_cmi8330_stream { |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 163 | struct snd_pcm_ops ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | snd_pcm_open_callback_t open; |
| 165 | void *private_data; /* sb or wss */ |
| 166 | } streams[2]; |
| 167 | }; |
| 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | #ifdef CONFIG_PNP |
| 170 | |
| 171 | static struct pnp_card_device_id snd_cmi8330_pnpids[] = { |
| 172 | { .id = "CMI0001", .devs = { { "@@@0001" }, { "@X@0001" } } }, |
| 173 | { .id = "" } |
| 174 | }; |
| 175 | |
| 176 | MODULE_DEVICE_TABLE(pnp_card, snd_cmi8330_pnpids); |
| 177 | |
| 178 | #endif |
| 179 | |
| 180 | |
Krzysztof Helt | 0c5e3e9 | 2008-07-31 21:06:46 +0200 | [diff] [blame] | 181 | static struct snd_kcontrol_new snd_cmi8330_controls[] __devinitdata = { |
| 182 | WSS_DOUBLE("Master Playback Volume", 0, |
| 183 | CMI8330_MASTVOL, CMI8330_MASTVOL, 4, 0, 15, 0), |
| 184 | WSS_SINGLE("Loud Playback Switch", 0, |
| 185 | CMI8330_MUTEMUX, 6, 1, 1), |
| 186 | WSS_DOUBLE("PCM Playback Switch", 0, |
Krzysztof Helt | 760fc6b8 | 2008-07-31 21:10:47 +0200 | [diff] [blame] | 187 | CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 7, 7, 1, 1), |
Krzysztof Helt | 0c5e3e9 | 2008-07-31 21:06:46 +0200 | [diff] [blame] | 188 | WSS_DOUBLE("PCM Playback Volume", 0, |
Krzysztof Helt | 760fc6b8 | 2008-07-31 21:10:47 +0200 | [diff] [blame] | 189 | CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 63, 1), |
Krzysztof Helt | 0c5e3e9 | 2008-07-31 21:06:46 +0200 | [diff] [blame] | 190 | WSS_DOUBLE("Line Playback Switch", 0, |
| 191 | CMI8330_MUTEMUX, CMI8330_MUTEMUX, 4, 3, 1, 0), |
| 192 | WSS_DOUBLE("Line Playback Volume", 0, |
| 193 | CMI8330_LINVOL, CMI8330_LINVOL, 4, 0, 15, 0), |
| 194 | WSS_DOUBLE("Line Capture Switch", 0, |
| 195 | CMI8330_RMUX3D, CMI8330_RMUX3D, 2, 1, 1, 0), |
| 196 | WSS_DOUBLE("Line Capture Volume", 0, |
| 197 | CMI8330_LINGAIN, CMI8330_LINGAIN, 4, 0, 15, 0), |
| 198 | WSS_DOUBLE("CD Playback Switch", 0, |
| 199 | CMI8330_MUTEMUX, CMI8330_MUTEMUX, 2, 1, 1, 0), |
| 200 | WSS_DOUBLE("CD Capture Switch", 0, |
| 201 | CMI8330_RMUX3D, CMI8330_RMUX3D, 4, 3, 1, 0), |
| 202 | WSS_DOUBLE("CD Playback Volume", 0, |
| 203 | CMI8330_CDINVOL, CMI8330_CDINVOL, 4, 0, 15, 0), |
| 204 | WSS_DOUBLE("CD Capture Volume", 0, |
| 205 | CMI8330_CDINGAIN, CMI8330_CDINGAIN, 4, 0, 15, 0), |
| 206 | WSS_SINGLE("Mic Playback Switch", 0, |
| 207 | CMI8330_MUTEMUX, 0, 1, 0), |
| 208 | WSS_SINGLE("Mic Playback Volume", 0, |
| 209 | CMI8330_OUTPUTVOL, 0, 7, 0), |
| 210 | WSS_SINGLE("Mic Capture Switch", 0, |
| 211 | CMI8330_RMUX3D, 0, 1, 0), |
| 212 | WSS_SINGLE("Mic Capture Volume", 0, |
| 213 | CMI8330_OUTPUTVOL, 5, 7, 0), |
| 214 | WSS_DOUBLE("Wavetable Playback Switch", 0, |
| 215 | CMI8330_RECMUX, CMI8330_RECMUX, 1, 0, 1, 0), |
| 216 | WSS_DOUBLE("Wavetable Playback Volume", 0, |
| 217 | CMI8330_WAVVOL, CMI8330_WAVVOL, 4, 0, 15, 0), |
| 218 | WSS_DOUBLE("Wavetable Capture Switch", 0, |
| 219 | CMI8330_RECMUX, CMI8330_RECMUX, 5, 4, 1, 0), |
| 220 | WSS_DOUBLE("Wavetable Capture Volume", 0, |
| 221 | CMI8330_WAVGAIN, CMI8330_WAVGAIN, 4, 0, 15, 0), |
| 222 | WSS_SINGLE("3D Control - Switch", 0, |
| 223 | CMI8330_RMUX3D, 5, 1, 1), |
| 224 | WSS_SINGLE("PC Speaker Playback Volume", 0, |
| 225 | CMI8330_OUTPUTVOL, 3, 3, 0), |
Krzysztof Helt | 48972cc | 2009-01-21 08:18:16 +0100 | [diff] [blame^] | 226 | WSS_DOUBLE("FM Playback Switch", 0, |
| 227 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), |
| 228 | WSS_DOUBLE("FM Playback Volume", 0, |
| 229 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1), |
Krzysztof Helt | 0c5e3e9 | 2008-07-31 21:06:46 +0200 | [diff] [blame] | 230 | WSS_SINGLE(SNDRV_CTL_NAME_IEC958("Input ", CAPTURE, SWITCH), 0, |
| 231 | CMI8330_RMUX3D, 7, 1, 1), |
| 232 | WSS_SINGLE(SNDRV_CTL_NAME_IEC958("Input ", PLAYBACK, SWITCH), 0, |
| 233 | CMI8330_MUTEMUX, 7, 1, 1), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | }; |
| 235 | |
| 236 | #ifdef ENABLE_SB_MIXER |
Bjorn Helgaas | 07d58ad | 2006-03-27 01:17:11 -0800 | [diff] [blame] | 237 | static struct sbmix_elem cmi8330_sb_mixers[] __devinitdata = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | SB_DOUBLE("SB Master Playback Volume", SB_DSP4_MASTER_DEV, (SB_DSP4_MASTER_DEV + 1), 3, 3, 31), |
| 239 | SB_DOUBLE("Tone Control - Bass", SB_DSP4_BASS_DEV, (SB_DSP4_BASS_DEV + 1), 4, 4, 15), |
| 240 | SB_DOUBLE("Tone Control - Treble", SB_DSP4_TREBLE_DEV, (SB_DSP4_TREBLE_DEV + 1), 4, 4, 15), |
| 241 | SB_DOUBLE("SB PCM Playback Volume", SB_DSP4_PCM_DEV, (SB_DSP4_PCM_DEV + 1), 3, 3, 31), |
| 242 | SB_DOUBLE("SB Synth Playback Volume", SB_DSP4_SYNTH_DEV, (SB_DSP4_SYNTH_DEV + 1), 3, 3, 31), |
| 243 | SB_DOUBLE("SB CD Playback Switch", SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, 2, 1, 1), |
| 244 | SB_DOUBLE("SB CD Playback Volume", SB_DSP4_CD_DEV, (SB_DSP4_CD_DEV + 1), 3, 3, 31), |
| 245 | SB_DOUBLE("SB Line Playback Switch", SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, 4, 3, 1), |
| 246 | SB_DOUBLE("SB Line Playback Volume", SB_DSP4_LINE_DEV, (SB_DSP4_LINE_DEV + 1), 3, 3, 31), |
| 247 | SB_SINGLE("SB Mic Playback Switch", SB_DSP4_OUTPUT_SW, 0, 1), |
| 248 | SB_SINGLE("SB Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31), |
| 249 | SB_SINGLE("SB PC Speaker Volume", SB_DSP4_SPEAKER_DEV, 6, 3), |
| 250 | SB_DOUBLE("SB Capture Volume", SB_DSP4_IGAIN_DEV, (SB_DSP4_IGAIN_DEV + 1), 6, 6, 3), |
| 251 | SB_DOUBLE("SB Playback Volume", SB_DSP4_OGAIN_DEV, (SB_DSP4_OGAIN_DEV + 1), 6, 6, 3), |
| 252 | SB_SINGLE("SB Mic Auto Gain", SB_DSP4_MIC_AGC, 0, 1), |
| 253 | }; |
| 254 | |
Bjorn Helgaas | 07d58ad | 2006-03-27 01:17:11 -0800 | [diff] [blame] | 255 | static unsigned char cmi8330_sb_init_values[][2] __devinitdata = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | { SB_DSP4_MASTER_DEV + 0, 0 }, |
| 257 | { SB_DSP4_MASTER_DEV + 1, 0 }, |
| 258 | { SB_DSP4_PCM_DEV + 0, 0 }, |
| 259 | { SB_DSP4_PCM_DEV + 1, 0 }, |
| 260 | { SB_DSP4_SYNTH_DEV + 0, 0 }, |
| 261 | { SB_DSP4_SYNTH_DEV + 1, 0 }, |
| 262 | { SB_DSP4_INPUT_LEFT, 0 }, |
| 263 | { SB_DSP4_INPUT_RIGHT, 0 }, |
| 264 | { SB_DSP4_OUTPUT_SW, 0 }, |
| 265 | { SB_DSP4_SPEAKER_DEV, 0 }, |
| 266 | }; |
| 267 | |
| 268 | |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 269 | static int __devinit cmi8330_add_sb_mixers(struct snd_sb *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | { |
| 271 | int idx, err; |
| 272 | unsigned long flags; |
| 273 | |
| 274 | spin_lock_irqsave(&chip->mixer_lock, flags); |
| 275 | snd_sbmixer_write(chip, 0x00, 0x00); /* mixer reset */ |
| 276 | spin_unlock_irqrestore(&chip->mixer_lock, flags); |
| 277 | |
| 278 | /* mute and zero volume channels */ |
| 279 | for (idx = 0; idx < ARRAY_SIZE(cmi8330_sb_init_values); idx++) { |
| 280 | spin_lock_irqsave(&chip->mixer_lock, flags); |
| 281 | snd_sbmixer_write(chip, cmi8330_sb_init_values[idx][0], |
| 282 | cmi8330_sb_init_values[idx][1]); |
| 283 | spin_unlock_irqrestore(&chip->mixer_lock, flags); |
| 284 | } |
| 285 | |
| 286 | for (idx = 0; idx < ARRAY_SIZE(cmi8330_sb_mixers); idx++) { |
| 287 | if ((err = snd_sbmixer_add_ctl_elem(chip, &cmi8330_sb_mixers[idx])) < 0) |
| 288 | return err; |
| 289 | } |
| 290 | return 0; |
| 291 | } |
| 292 | #endif |
| 293 | |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 294 | static int __devinit snd_cmi8330_mixer(struct snd_card *card, struct snd_cmi8330 *acard) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | { |
| 296 | unsigned int idx; |
| 297 | int err; |
| 298 | |
| 299 | strcpy(card->mixername, "CMI8330/C3D"); |
| 300 | |
| 301 | for (idx = 0; idx < ARRAY_SIZE(snd_cmi8330_controls); idx++) { |
Krzysztof Helt | 0c5e3e9 | 2008-07-31 21:06:46 +0200 | [diff] [blame] | 302 | err = snd_ctl_add(card, |
| 303 | snd_ctl_new1(&snd_cmi8330_controls[idx], |
| 304 | acard->wss)); |
| 305 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | return err; |
| 307 | } |
| 308 | |
| 309 | #ifdef ENABLE_SB_MIXER |
| 310 | if ((err = cmi8330_add_sb_mixers(acard->sb)) < 0) |
| 311 | return err; |
| 312 | #endif |
| 313 | return 0; |
| 314 | } |
| 315 | |
| 316 | #ifdef CONFIG_PNP |
| 317 | static int __devinit snd_cmi8330_pnp(int dev, struct snd_cmi8330 *acard, |
| 318 | struct pnp_card_link *card, |
| 319 | const struct pnp_card_device_id *id) |
| 320 | { |
| 321 | struct pnp_dev *pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | int err; |
| 323 | |
| 324 | acard->cap = pnp_request_card_device(card, id->devs[0].id, NULL); |
Rene Herman | 109c53f84 | 2007-11-30 17:59:25 +0100 | [diff] [blame] | 325 | if (acard->cap == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | return -EBUSY; |
Rene Herman | 109c53f84 | 2007-11-30 17:59:25 +0100 | [diff] [blame] | 327 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | acard->play = pnp_request_card_device(card, id->devs[1].id, NULL); |
Rene Herman | 109c53f84 | 2007-11-30 17:59:25 +0100 | [diff] [blame] | 329 | if (acard->play == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
| 332 | pdev = acard->cap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | err = pnp_activate_dev(pdev); |
| 335 | if (err < 0) { |
| 336 | snd_printk(KERN_ERR "CMI8330/C3D (AD1848) PnP configure failure\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | return -EBUSY; |
| 338 | } |
| 339 | wssport[dev] = pnp_port_start(pdev, 0); |
| 340 | wssdma[dev] = pnp_dma(pdev, 0); |
| 341 | wssirq[dev] = pnp_irq(pdev, 0); |
Krzysztof Helt | 48972cc | 2009-01-21 08:18:16 +0100 | [diff] [blame^] | 342 | fmport[dev] = pnp_port_start(pdev, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
| 344 | /* allocate SB16 resources */ |
| 345 | pdev = acard->play; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | err = pnp_activate_dev(pdev); |
| 348 | if (err < 0) { |
| 349 | snd_printk(KERN_ERR "CMI8330/C3D (SB16) PnP configure failure\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | return -EBUSY; |
| 351 | } |
| 352 | sbport[dev] = pnp_port_start(pdev, 0); |
| 353 | sbdma8[dev] = pnp_dma(pdev, 0); |
| 354 | sbdma16[dev] = pnp_dma(pdev, 1); |
| 355 | sbirq[dev] = pnp_irq(pdev, 0); |
| 356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | return 0; |
| 358 | } |
| 359 | #endif |
| 360 | |
| 361 | /* |
| 362 | * PCM interface |
| 363 | * |
| 364 | * since we call the different chip interfaces for playback and capture |
| 365 | * directions, we need a trick. |
| 366 | * |
| 367 | * - copy the ops for each direction into a local record. |
| 368 | * - replace the open callback with the new one, which replaces the |
| 369 | * substream->private_data with the corresponding chip instance |
| 370 | * and calls again the original open callback of the chip. |
| 371 | * |
| 372 | */ |
| 373 | |
| 374 | #ifdef PLAYBACK_ON_SB |
| 375 | #define CMI_SB_STREAM SNDRV_PCM_STREAM_PLAYBACK |
| 376 | #define CMI_AD_STREAM SNDRV_PCM_STREAM_CAPTURE |
| 377 | #else |
| 378 | #define CMI_SB_STREAM SNDRV_PCM_STREAM_CAPTURE |
| 379 | #define CMI_AD_STREAM SNDRV_PCM_STREAM_PLAYBACK |
| 380 | #endif |
| 381 | |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 382 | static int snd_cmi8330_playback_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | { |
| 384 | struct snd_cmi8330 *chip = snd_pcm_substream_chip(substream); |
| 385 | |
| 386 | /* replace the private_data and call the original open callback */ |
| 387 | substream->private_data = chip->streams[SNDRV_PCM_STREAM_PLAYBACK].private_data; |
| 388 | return chip->streams[SNDRV_PCM_STREAM_PLAYBACK].open(substream); |
| 389 | } |
| 390 | |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 391 | static int snd_cmi8330_capture_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | { |
| 393 | struct snd_cmi8330 *chip = snd_pcm_substream_chip(substream); |
| 394 | |
| 395 | /* replace the private_data and call the original open callback */ |
| 396 | substream->private_data = chip->streams[SNDRV_PCM_STREAM_CAPTURE].private_data; |
| 397 | return chip->streams[SNDRV_PCM_STREAM_CAPTURE].open(substream); |
| 398 | } |
| 399 | |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 400 | static int __devinit snd_cmi8330_pcm(struct snd_card *card, struct snd_cmi8330 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | { |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 402 | struct snd_pcm *pcm; |
| 403 | const struct snd_pcm_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | int err; |
| 405 | static snd_pcm_open_callback_t cmi_open_callbacks[2] = { |
| 406 | snd_cmi8330_playback_open, |
| 407 | snd_cmi8330_capture_open |
| 408 | }; |
| 409 | |
| 410 | if ((err = snd_pcm_new(card, "CMI8330", 0, 1, 1, &pcm)) < 0) |
| 411 | return err; |
| 412 | strcpy(pcm->name, "CMI8330"); |
| 413 | pcm->private_data = chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
| 415 | /* SB16 */ |
| 416 | ops = snd_sb16dsp_get_pcm_ops(CMI_SB_STREAM); |
| 417 | chip->streams[CMI_SB_STREAM].ops = *ops; |
| 418 | chip->streams[CMI_SB_STREAM].open = ops->open; |
| 419 | chip->streams[CMI_SB_STREAM].ops.open = cmi_open_callbacks[CMI_SB_STREAM]; |
| 420 | chip->streams[CMI_SB_STREAM].private_data = chip->sb; |
| 421 | |
| 422 | /* AD1848 */ |
Krzysztof Helt | ead893c | 2008-07-31 21:09:32 +0200 | [diff] [blame] | 423 | ops = snd_wss_get_pcm_ops(CMI_AD_STREAM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | chip->streams[CMI_AD_STREAM].ops = *ops; |
| 425 | chip->streams[CMI_AD_STREAM].open = ops->open; |
| 426 | chip->streams[CMI_AD_STREAM].ops.open = cmi_open_callbacks[CMI_AD_STREAM]; |
| 427 | chip->streams[CMI_AD_STREAM].private_data = chip->wss; |
| 428 | |
| 429 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &chip->streams[SNDRV_PCM_STREAM_PLAYBACK].ops); |
| 430 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &chip->streams[SNDRV_PCM_STREAM_CAPTURE].ops); |
| 431 | |
| 432 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, |
| 433 | snd_dma_isa_data(), |
| 434 | 64*1024, 128*1024); |
| 435 | chip->pcm = pcm; |
| 436 | |
| 437 | return 0; |
| 438 | } |
| 439 | |
| 440 | |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 441 | #ifdef CONFIG_PM |
| 442 | static int snd_cmi8330_suspend(struct snd_card *card) |
| 443 | { |
| 444 | struct snd_cmi8330 *acard = card->private_data; |
| 445 | |
| 446 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); |
| 447 | snd_pcm_suspend_all(acard->pcm); |
| 448 | acard->wss->suspend(acard->wss); |
| 449 | snd_sbmixer_suspend(acard->sb); |
| 450 | return 0; |
| 451 | } |
| 452 | |
| 453 | static int snd_cmi8330_resume(struct snd_card *card) |
| 454 | { |
| 455 | struct snd_cmi8330 *acard = card->private_data; |
| 456 | |
| 457 | snd_sbdsp_reset(acard->sb); |
| 458 | snd_sbmixer_suspend(acard->sb); |
| 459 | acard->wss->resume(acard->wss); |
| 460 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); |
| 461 | return 0; |
| 462 | } |
| 463 | #endif |
| 464 | |
| 465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | /* |
| 467 | */ |
| 468 | |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 469 | #ifdef CONFIG_PNP |
| 470 | #define is_isapnp_selected(dev) isapnp[dev] |
| 471 | #else |
| 472 | #define is_isapnp_selected(dev) 0 |
| 473 | #endif |
| 474 | |
| 475 | #define PFX "cmi8330: " |
| 476 | |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 477 | static struct snd_card *snd_cmi8330_card_new(int dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { |
Takashi Iwai | e356170 | 2005-11-17 14:41:02 +0100 | [diff] [blame] | 479 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | struct snd_cmi8330 *acard; |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | card = snd_card_new(index[dev], id[dev], THIS_MODULE, |
| 483 | sizeof(struct snd_cmi8330)); |
| 484 | if (card == NULL) { |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 485 | snd_printk(KERN_ERR PFX "could not get a new card\n"); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 486 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | } |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 488 | acard = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | acard->card = card; |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 490 | return card; |
| 491 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 493 | static int __devinit snd_cmi8330_probe(struct snd_card *card, int dev) |
| 494 | { |
| 495 | struct snd_cmi8330 *acard; |
| 496 | int i, err; |
Krzysztof Helt | 48972cc | 2009-01-21 08:18:16 +0100 | [diff] [blame^] | 497 | struct snd_opl3 *opl3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 499 | acard = card->private_data; |
Krzysztof Helt | 760fc6b8 | 2008-07-31 21:10:47 +0200 | [diff] [blame] | 500 | err = snd_wss_create(card, wssport[dev] + 4, -1, |
| 501 | wssirq[dev], |
| 502 | wssdma[dev], -1, |
| 503 | WSS_HW_DETECT, 0, &acard->wss); |
| 504 | if (err < 0) { |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 505 | snd_printk(KERN_ERR PFX "(AD1848) device busy??\n"); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 506 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | } |
Krzysztof Helt | ece11c9 | 2008-07-31 21:05:44 +0200 | [diff] [blame] | 508 | if (acard->wss->hardware != WSS_HW_CMI8330) { |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 509 | snd_printk(KERN_ERR PFX "(AD1848) not found during probe\n"); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 510 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | } |
| 512 | |
| 513 | if ((err = snd_sbdsp_create(card, sbport[dev], |
| 514 | sbirq[dev], |
| 515 | snd_sb16dsp_interrupt, |
| 516 | sbdma8[dev], |
| 517 | sbdma16[dev], |
| 518 | SB_HW_AUTO, &acard->sb)) < 0) { |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 519 | snd_printk(KERN_ERR PFX "(SB16) device busy??\n"); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 520 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | } |
| 522 | if (acard->sb->hardware != SB_HW_16) { |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 523 | snd_printk(KERN_ERR PFX "(SB16) not found during probe\n"); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 524 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | } |
| 526 | |
Krzysztof Helt | 760fc6b8 | 2008-07-31 21:10:47 +0200 | [diff] [blame] | 527 | snd_wss_out(acard->wss, CS4231_MISC_INFO, 0x40); /* switch on MODE2 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | for (i = CMI8330_RMUX3D; i <= CMI8330_CDINGAIN; i++) |
Krzysztof Helt | 760fc6b8 | 2008-07-31 21:10:47 +0200 | [diff] [blame] | 529 | snd_wss_out(acard->wss, i, |
| 530 | snd_cmi8330_image[i - CMI8330_RMUX3D]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
| 532 | if ((err = snd_cmi8330_mixer(card, acard)) < 0) { |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 533 | snd_printk(KERN_ERR PFX "failed to create mixers\n"); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 534 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | if ((err = snd_cmi8330_pcm(card, acard)) < 0) { |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 538 | snd_printk(KERN_ERR PFX "failed to create pcms\n"); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 539 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | } |
Krzysztof Helt | 48972cc | 2009-01-21 08:18:16 +0100 | [diff] [blame^] | 541 | if (fmport[dev] != SNDRV_AUTO_PORT) { |
| 542 | if (snd_opl3_create(card, |
| 543 | fmport[dev], fmport[dev] + 2, |
| 544 | OPL3_HW_AUTO, 0, &opl3) < 0) { |
| 545 | snd_printk(KERN_ERR PFX |
| 546 | "no OPL device at 0x%lx-0x%lx ?\n", |
| 547 | fmport[dev], fmport[dev] + 2); |
| 548 | } else { |
| 549 | err = snd_opl3_timer_new(opl3, 0, 1); |
| 550 | if (err < 0) |
| 551 | return err; |
| 552 | |
| 553 | err = snd_opl3_hwdep_new(opl3, 0, 1, NULL); |
| 554 | if (err < 0) |
| 555 | return err; |
| 556 | } |
| 557 | } |
| 558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
| 560 | strcpy(card->driver, "CMI8330/C3D"); |
| 561 | strcpy(card->shortname, "C-Media CMI8330/C3D"); |
| 562 | sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d", |
| 563 | card->shortname, |
| 564 | acard->wss->port, |
| 565 | wssirq[dev], |
| 566 | wssdma[dev]); |
| 567 | |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 568 | return snd_card_register(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | } |
| 570 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 571 | static int __devinit snd_cmi8330_isa_match(struct device *pdev, |
| 572 | unsigned int dev) |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 573 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 574 | if (!enable[dev] || is_isapnp_selected(dev)) |
| 575 | return 0; |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 576 | if (wssport[dev] == SNDRV_AUTO_PORT) { |
| 577 | snd_printk(KERN_ERR PFX "specify wssport\n"); |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 578 | return 0; |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 579 | } |
| 580 | if (sbport[dev] == SNDRV_AUTO_PORT) { |
| 581 | snd_printk(KERN_ERR PFX "specify sbport\n"); |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 582 | return 0; |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 583 | } |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 584 | return 1; |
| 585 | } |
| 586 | |
| 587 | static int __devinit snd_cmi8330_isa_probe(struct device *pdev, |
| 588 | unsigned int dev) |
| 589 | { |
| 590 | struct snd_card *card; |
| 591 | int err; |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 592 | |
| 593 | card = snd_cmi8330_card_new(dev); |
| 594 | if (! card) |
| 595 | return -ENOMEM; |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 596 | snd_card_set_dev(card, pdev); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 597 | if ((err = snd_cmi8330_probe(card, dev)) < 0) { |
| 598 | snd_card_free(card); |
| 599 | return err; |
| 600 | } |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 601 | dev_set_drvdata(pdev, card); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 602 | return 0; |
| 603 | } |
| 604 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 605 | static int __devexit snd_cmi8330_isa_remove(struct device *devptr, |
| 606 | unsigned int dev) |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 607 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 608 | snd_card_free(dev_get_drvdata(devptr)); |
| 609 | dev_set_drvdata(devptr, NULL); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 610 | return 0; |
| 611 | } |
| 612 | |
| 613 | #ifdef CONFIG_PM |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 614 | static int snd_cmi8330_isa_suspend(struct device *dev, unsigned int n, |
| 615 | pm_message_t state) |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 616 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 617 | return snd_cmi8330_suspend(dev_get_drvdata(dev)); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 618 | } |
| 619 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 620 | static int snd_cmi8330_isa_resume(struct device *dev, unsigned int n) |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 621 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 622 | return snd_cmi8330_resume(dev_get_drvdata(dev)); |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 623 | } |
| 624 | #endif |
| 625 | |
Rene Herman | 83c51c0 | 2007-03-20 11:33:46 +0100 | [diff] [blame] | 626 | #define DEV_NAME "cmi8330" |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 627 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 628 | static struct isa_driver snd_cmi8330_driver = { |
| 629 | .match = snd_cmi8330_isa_match, |
| 630 | .probe = snd_cmi8330_isa_probe, |
| 631 | .remove = __devexit_p(snd_cmi8330_isa_remove), |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 632 | #ifdef CONFIG_PM |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 633 | .suspend = snd_cmi8330_isa_suspend, |
| 634 | .resume = snd_cmi8330_isa_resume, |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 635 | #endif |
| 636 | .driver = { |
Rene Herman | 83c51c0 | 2007-03-20 11:33:46 +0100 | [diff] [blame] | 637 | .name = DEV_NAME |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 638 | }, |
| 639 | }; |
| 640 | |
| 641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | #ifdef CONFIG_PNP |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 643 | static int __devinit snd_cmi8330_pnp_detect(struct pnp_card_link *pcard, |
| 644 | const struct pnp_card_device_id *pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | { |
| 646 | static int dev; |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 647 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | int res; |
| 649 | |
| 650 | for ( ; dev < SNDRV_CARDS; dev++) { |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 651 | if (enable[dev] && isapnp[dev]) |
| 652 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | } |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 654 | if (dev >= SNDRV_CARDS) |
| 655 | return -ENODEV; |
| 656 | |
| 657 | card = snd_cmi8330_card_new(dev); |
| 658 | if (! card) |
| 659 | return -ENOMEM; |
| 660 | if ((res = snd_cmi8330_pnp(dev, card->private_data, pcard, pid)) < 0) { |
| 661 | snd_printk(KERN_ERR PFX "PnP detection failed\n"); |
| 662 | snd_card_free(card); |
| 663 | return res; |
| 664 | } |
| 665 | snd_card_set_dev(card, &pcard->card->dev); |
| 666 | if ((res = snd_cmi8330_probe(card, dev)) < 0) { |
| 667 | snd_card_free(card); |
| 668 | return res; |
| 669 | } |
| 670 | pnp_set_card_drvdata(pcard, card); |
| 671 | dev++; |
| 672 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | static void __devexit snd_cmi8330_pnp_remove(struct pnp_card_link * pcard) |
| 676 | { |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 677 | snd_card_free(pnp_get_card_drvdata(pcard)); |
| 678 | pnp_set_card_drvdata(pcard, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | } |
| 680 | |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 681 | #ifdef CONFIG_PM |
| 682 | static int snd_cmi8330_pnp_suspend(struct pnp_card_link *pcard, pm_message_t state) |
| 683 | { |
| 684 | return snd_cmi8330_suspend(pnp_get_card_drvdata(pcard)); |
| 685 | } |
| 686 | |
| 687 | static int snd_cmi8330_pnp_resume(struct pnp_card_link *pcard) |
| 688 | { |
| 689 | return snd_cmi8330_resume(pnp_get_card_drvdata(pcard)); |
| 690 | } |
| 691 | #endif |
| 692 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | static struct pnp_card_driver cmi8330_pnpc_driver = { |
| 694 | .flags = PNP_DRIVER_RES_DISABLE, |
| 695 | .name = "cmi8330", |
| 696 | .id_table = snd_cmi8330_pnpids, |
| 697 | .probe = snd_cmi8330_pnp_detect, |
| 698 | .remove = __devexit_p(snd_cmi8330_pnp_remove), |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 699 | #ifdef CONFIG_PM |
| 700 | .suspend = snd_cmi8330_pnp_suspend, |
| 701 | .resume = snd_cmi8330_pnp_resume, |
| 702 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | }; |
| 704 | #endif /* CONFIG_PNP */ |
| 705 | |
| 706 | static int __init alsa_card_cmi8330_init(void) |
| 707 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 708 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 710 | err = isa_register_driver(&snd_cmi8330_driver, SNDRV_CARDS); |
Takashi Iwai | 59b1b34 | 2006-01-04 15:06:44 +0100 | [diff] [blame] | 711 | #ifdef CONFIG_PNP |
Rene Herman | 609d769 | 2007-05-15 11:42:56 +0200 | [diff] [blame] | 712 | if (!err) |
| 713 | isa_registered = 1; |
| 714 | |
Takashi Iwai | acdcbc1 | 2005-11-17 17:11:35 +0100 | [diff] [blame] | 715 | err = pnp_register_card_driver(&cmi8330_pnpc_driver); |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 716 | if (!err) |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 717 | pnp_registered = 1; |
Rene Herman | 609d769 | 2007-05-15 11:42:56 +0200 | [diff] [blame] | 718 | |
| 719 | if (isa_registered) |
| 720 | err = 0; |
Takashi Iwai | 59b1b34 | 2006-01-04 15:06:44 +0100 | [diff] [blame] | 721 | #endif |
Rene Herman | 609d769 | 2007-05-15 11:42:56 +0200 | [diff] [blame] | 722 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | } |
| 724 | |
| 725 | static void __exit alsa_card_cmi8330_exit(void) |
| 726 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 727 | #ifdef CONFIG_PNP |
| 728 | if (pnp_registered) |
| 729 | pnp_unregister_card_driver(&cmi8330_pnpc_driver); |
Rene Herman | 609d769 | 2007-05-15 11:42:56 +0200 | [diff] [blame] | 730 | |
| 731 | if (isa_registered) |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 732 | #endif |
Rene Herman | 609d769 | 2007-05-15 11:42:56 +0200 | [diff] [blame] | 733 | isa_unregister_driver(&snd_cmi8330_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | module_init(alsa_card_cmi8330_init) |
| 737 | module_exit(alsa_card_cmi8330_exit) |