Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Driver for SoundBlaster 1.0/2.0/Pro soundcards and compatible |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 3 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/init.h> |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 23 | #include <linux/err.h> |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 24 | #include <linux/isa.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/slab.h> |
| 26 | #include <linux/ioport.h> |
| 27 | #include <linux/moduleparam.h> |
| 28 | #include <sound/core.h> |
| 29 | #include <sound/sb.h> |
| 30 | #include <sound/opl3.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <sound/initval.h> |
| 32 | |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 33 | MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | MODULE_DESCRIPTION("Sound Blaster 1.0/2.0/Pro"); |
| 35 | MODULE_LICENSE("GPL"); |
| 36 | MODULE_SUPPORTED_DEVICE("{{Creative Labs,SB 1.0/SB 2.0/SB Pro}}"); |
| 37 | |
| 38 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
| 39 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
| 40 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ |
| 41 | static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */ |
| 42 | static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */ |
| 43 | static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3 */ |
| 44 | |
| 45 | module_param_array(index, int, NULL, 0444); |
| 46 | MODULE_PARM_DESC(index, "Index value for Sound Blaster soundcard."); |
| 47 | module_param_array(id, charp, NULL, 0444); |
| 48 | MODULE_PARM_DESC(id, "ID string for Sound Blaster soundcard."); |
| 49 | module_param_array(enable, bool, NULL, 0444); |
| 50 | MODULE_PARM_DESC(enable, "Enable Sound Blaster soundcard."); |
| 51 | module_param_array(port, long, NULL, 0444); |
| 52 | MODULE_PARM_DESC(port, "Port # for SB8 driver."); |
| 53 | module_param_array(irq, int, NULL, 0444); |
| 54 | MODULE_PARM_DESC(irq, "IRQ # for SB8 driver."); |
| 55 | module_param_array(dma8, int, NULL, 0444); |
| 56 | MODULE_PARM_DESC(dma8, "8-bit DMA # for SB8 driver."); |
| 57 | |
| 58 | struct snd_sb8 { |
| 59 | struct resource *fm_res; /* used to block FM i/o region for legacy cards */ |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 60 | struct snd_sb *chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | }; |
| 62 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 63 | static irqreturn_t snd_sb8_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Takashi Iwai | 029d64b | 2005-11-17 14:34:36 +0100 | [diff] [blame] | 65 | struct snd_sb *chip = dev_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | if (chip->open & SB_OPEN_PCM) { |
| 68 | return snd_sb8dsp_interrupt(chip); |
| 69 | } else { |
| 70 | return snd_sb8dsp_midi_interrupt(chip); |
| 71 | } |
| 72 | } |
| 73 | |
Takashi Iwai | 029d64b | 2005-11-17 14:34:36 +0100 | [diff] [blame] | 74 | static void snd_sb8_free(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | { |
| 76 | struct snd_sb8 *acard = (struct snd_sb8 *)card->private_data; |
| 77 | |
| 78 | if (acard == NULL) |
| 79 | return; |
Takashi Iwai | b1d5776 | 2005-10-10 11:56:31 +0200 | [diff] [blame] | 80 | release_and_free_resource(acard->fm_res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 83 | static int __devinit snd_sb8_match(struct device *pdev, unsigned int dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 85 | if (!enable[dev]) |
| 86 | return 0; |
| 87 | if (irq[dev] == SNDRV_AUTO_IRQ) { |
Takashi Iwai | 0418ff0 | 2008-11-03 08:51:33 +0100 | [diff] [blame] | 88 | dev_err(pdev, "please specify irq\n"); |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 89 | return 0; |
| 90 | } |
| 91 | if (dma8[dev] == SNDRV_AUTO_DMA) { |
Takashi Iwai | 0418ff0 | 2008-11-03 08:51:33 +0100 | [diff] [blame] | 92 | dev_err(pdev, "please specify dma8\n"); |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 93 | return 0; |
| 94 | } |
| 95 | return 1; |
| 96 | } |
| 97 | |
| 98 | static int __devinit snd_sb8_probe(struct device *pdev, unsigned int dev) |
| 99 | { |
Takashi Iwai | 029d64b | 2005-11-17 14:34:36 +0100 | [diff] [blame] | 100 | struct snd_sb *chip; |
| 101 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | struct snd_sb8 *acard; |
Takashi Iwai | 029d64b | 2005-11-17 14:34:36 +0100 | [diff] [blame] | 103 | struct snd_opl3 *opl3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | int err; |
| 105 | |
| 106 | card = snd_card_new(index[dev], id[dev], THIS_MODULE, |
| 107 | sizeof(struct snd_sb8)); |
| 108 | if (card == NULL) |
| 109 | return -ENOMEM; |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 110 | acard = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | card->private_free = snd_sb8_free; |
| 112 | |
| 113 | /* block the 0x388 port to avoid PnP conflicts */ |
| 114 | acard->fm_res = request_region(0x388, 4, "SoundBlaster FM"); |
| 115 | |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 116 | if (port[dev] != SNDRV_AUTO_PORT) { |
| 117 | if ((err = snd_sbdsp_create(card, port[dev], irq[dev], |
| 118 | snd_sb8_interrupt, |
| 119 | dma8[dev], |
| 120 | -1, |
| 121 | SB_HW_AUTO, |
| 122 | &chip)) < 0) |
| 123 | goto _err; |
| 124 | } else { |
| 125 | /* auto-probe legacy ports */ |
| 126 | static unsigned long possible_ports[] = { |
| 127 | 0x220, 0x240, 0x260, |
| 128 | }; |
| 129 | int i; |
| 130 | for (i = 0; i < ARRAY_SIZE(possible_ports); i++) { |
| 131 | err = snd_sbdsp_create(card, possible_ports[i], |
| 132 | irq[dev], |
| 133 | snd_sb8_interrupt, |
| 134 | dma8[dev], |
| 135 | -1, |
| 136 | SB_HW_AUTO, |
| 137 | &chip); |
| 138 | if (err >= 0) { |
| 139 | port[dev] = possible_ports[i]; |
| 140 | break; |
| 141 | } |
| 142 | } |
Takashi Iwai | 42a73df | 2008-12-11 12:12:06 +0100 | [diff] [blame^] | 143 | if (i >= ARRAY_SIZE(possible_ports)) { |
| 144 | err = -EINVAL; |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 145 | goto _err; |
Takashi Iwai | 42a73df | 2008-12-11 12:12:06 +0100 | [diff] [blame^] | 146 | } |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 147 | } |
| 148 | acard->chip = chip; |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | if (chip->hardware >= SB_HW_16) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | if (chip->hardware == SB_HW_ALS100) |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 152 | snd_printk(KERN_WARNING "ALS100 chip detected at 0x%lx, try snd-als100 module\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | port[dev]); |
| 154 | else |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 155 | snd_printk(KERN_WARNING "SB 16 chip detected at 0x%lx, try snd-sb16 module\n", |
| 156 | port[dev]); |
| 157 | err = -ENODEV; |
| 158 | goto _err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 161 | if ((err = snd_sb8dsp_pcm(chip, 0, NULL)) < 0) |
| 162 | goto _err; |
| 163 | |
| 164 | if ((err = snd_sbmixer_new(chip)) < 0) |
| 165 | goto _err; |
| 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | if (chip->hardware == SB_HW_10 || chip->hardware == SB_HW_20) { |
| 168 | if ((err = snd_opl3_create(card, chip->port + 8, 0, |
| 169 | OPL3_HW_AUTO, 1, |
| 170 | &opl3)) < 0) { |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 171 | snd_printk(KERN_WARNING "sb8: no OPL device at 0x%lx\n", chip->port + 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | } else { |
| 174 | if ((err = snd_opl3_create(card, chip->port, chip->port + 2, |
| 175 | OPL3_HW_AUTO, 1, |
| 176 | &opl3)) < 0) { |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 177 | snd_printk(KERN_WARNING "sb8: no OPL device at 0x%lx-0x%lx\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | chip->port, chip->port + 2); |
| 179 | } |
| 180 | } |
| 181 | if (err >= 0) { |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 182 | if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) |
| 183 | goto _err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 186 | if ((err = snd_sb8dsp_midi(chip, 0, NULL)) < 0) |
| 187 | goto _err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
| 189 | strcpy(card->driver, chip->hardware == SB_HW_PRO ? "SB Pro" : "SB8"); |
| 190 | strcpy(card->shortname, chip->name); |
| 191 | sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d", |
| 192 | chip->name, |
| 193 | chip->port, |
| 194 | irq[dev], dma8[dev]); |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 195 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 196 | snd_card_set_dev(card, pdev); |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 197 | |
| 198 | if ((err = snd_card_register(card)) < 0) |
| 199 | goto _err; |
| 200 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 201 | dev_set_drvdata(pdev, card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | return 0; |
Takashi Iwai | 43bcd97 | 2005-09-05 17:19:20 +0200 | [diff] [blame] | 203 | |
| 204 | _err: |
| 205 | snd_card_free(card); |
| 206 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 209 | static int __devexit snd_sb8_remove(struct device *pdev, unsigned int dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 211 | snd_card_free(dev_get_drvdata(pdev)); |
| 212 | dev_set_drvdata(pdev, NULL); |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 213 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 216 | #ifdef CONFIG_PM |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 217 | static int snd_sb8_suspend(struct device *dev, unsigned int n, |
| 218 | pm_message_t state) |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 219 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 220 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 221 | struct snd_sb8 *acard = card->private_data; |
| 222 | struct snd_sb *chip = acard->chip; |
| 223 | |
| 224 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); |
| 225 | snd_pcm_suspend_all(chip->pcm); |
| 226 | snd_sbmixer_suspend(chip); |
| 227 | return 0; |
| 228 | } |
| 229 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 230 | static int snd_sb8_resume(struct device *dev, unsigned int n) |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 231 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 232 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 233 | struct snd_sb8 *acard = card->private_data; |
| 234 | struct snd_sb *chip = acard->chip; |
| 235 | |
| 236 | snd_sbdsp_reset(chip); |
| 237 | snd_sbmixer_resume(chip); |
| 238 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); |
| 239 | return 0; |
| 240 | } |
| 241 | #endif |
| 242 | |
Rene Herman | 83c51c0 | 2007-03-20 11:33:46 +0100 | [diff] [blame] | 243 | #define DEV_NAME "sb8" |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 244 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 245 | static struct isa_driver snd_sb8_driver = { |
| 246 | .match = snd_sb8_match, |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 247 | .probe = snd_sb8_probe, |
Prarit Bhargava | 788c604 | 2007-02-13 13:11:11 +0100 | [diff] [blame] | 248 | .remove = __devexit_p(snd_sb8_remove), |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 249 | #ifdef CONFIG_PM |
| 250 | .suspend = snd_sb8_suspend, |
| 251 | .resume = snd_sb8_resume, |
| 252 | #endif |
| 253 | .driver = { |
Rene Herman | 83c51c0 | 2007-03-20 11:33:46 +0100 | [diff] [blame] | 254 | .name = DEV_NAME |
Takashi Iwai | 67be445 | 2005-11-17 16:55:22 +0100 | [diff] [blame] | 255 | }, |
| 256 | }; |
| 257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | static int __init alsa_card_sb8_init(void) |
| 259 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 260 | return isa_register_driver(&snd_sb8_driver, SNDRV_CARDS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | static void __exit alsa_card_sb8_exit(void) |
| 264 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 265 | isa_unregister_driver(&snd_sb8_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | module_init(alsa_card_sb8_init) |
| 269 | module_exit(alsa_card_sb8_exit) |