ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / sound / isa / sb / sb8.c
1 /*
2  *  Driver for SoundBlaster 1.0/2.0/Pro soundcards and compatible
3  *  Copyright (c) by Jaroslav Kysela <perex@suse.cz>
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
22 #include <sound/driver.h>
23 #include <linux/init.h>
24 #include <linux/slab.h>
25 #include <linux/ioport.h>
26 #include <sound/core.h>
27 #include <sound/sb.h>
28 #include <sound/opl3.h>
29 #define SNDRV_LEGACY_AUTO_PROBE
30 #define SNDRV_GET_ID
31 #include <sound/initval.h>
32
33 #define chip_t sb_t
34
35 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
36 MODULE_DESCRIPTION("Sound Blaster 1.0/2.0/Pro");
37 MODULE_LICENSE("GPL");
38 MODULE_CLASSES("{sound}");
39 MODULE_DEVICES("{{Creative Labs,SB 1.0/SB 2.0/SB Pro}}");
40
41 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;      /* Index 0-MAX */
42 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;       /* ID for this card */
43 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE;  /* Enable this card */
44 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;     /* 0x220,0x240,0x260 */
45 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;        /* 5,7,9,10 */
46 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;       /* 1,3 */
47
48 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
49 MODULE_PARM_DESC(index, "Index value for Sound Blaster soundcard.");
50 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC);
51 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");
52 MODULE_PARM_DESC(id, "ID string for Sound Blaster soundcard.");
53 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC);
54 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
55 MODULE_PARM_DESC(enable, "Enable Sound Blaster soundcard.");
56 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC);
57 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");
58 MODULE_PARM_DESC(port, "Port # for SB8 driver.");
59 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC);
60 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
61 MODULE_PARM_DESC(irq, "IRQ # for SB8 driver.");
62 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC);
63 MODULE_PARM(dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
64 MODULE_PARM_DESC(dma8, "8-bit DMA # for SB8 driver.");
65 MODULE_PARM_SYNTAX(dma8, SNDRV_DMA8_DESC);
66
67 struct snd_sb8 {
68         struct resource *fm_res;        /* used to block FM i/o region for legacy cards */
69 };
70
71 static snd_card_t *snd_sb8_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR;
72
73 static irqreturn_t snd_sb8_interrupt(int irq, void *dev_id, struct pt_regs *regs)
74 {
75         sb_t *chip = snd_magic_cast(sb_t, dev_id, return IRQ_NONE);
76
77         if (chip->open & SB_OPEN_PCM) {
78                 return snd_sb8dsp_interrupt(chip);
79         } else {
80                 return snd_sb8dsp_midi_interrupt(chip);
81         }
82 }
83
84 static void snd_sb8_free(snd_card_t *card)
85 {
86         struct snd_sb8 *acard = (struct snd_sb8 *)card->private_data;
87
88         if (acard == NULL)
89                 return;
90         if (acard->fm_res) {
91                 release_resource(acard->fm_res);
92                 kfree_nocheck(acard->fm_res);
93         }
94 }
95
96 static int __init snd_sb8_probe(int dev)
97 {
98         sb_t *chip;
99         snd_card_t *card;
100         struct snd_sb8 *acard;
101         opl3_t *opl3;
102         int err;
103
104         card = snd_card_new(index[dev], id[dev], THIS_MODULE,
105                             sizeof(struct snd_sb8));
106         if (card == NULL)
107                 return -ENOMEM;
108         acard = (struct snd_sb8 *)card->private_data;
109         card->private_free = snd_sb8_free;
110
111         /* block the 0x388 port to avoid PnP conflicts */
112         acard->fm_res = request_region(0x388, 4, "SoundBlaster FM");
113
114         if ((err = snd_sbdsp_create(card, port[dev], irq[dev],
115                                     snd_sb8_interrupt,
116                                     dma8[dev],
117                                     -1,
118                                     SB_HW_AUTO,
119                                     &chip)) < 0) {
120                 snd_card_free(card);
121                 return err;
122         }
123         if (chip->hardware >= SB_HW_16) {
124                 snd_card_free(card);
125                 if (chip->hardware == SB_HW_ALS100)
126                         snd_printdd("ALS100 chip detected at 0x%lx, try snd-als100 module\n",
127                                     port[dev]);
128                 else
129                         snd_printdd("SB 16 chip detected at 0x%lx, try snd-sb16 module\n",
130                                     port[dev]);
131                 return -ENODEV;
132         }
133
134         if ((err = snd_sb8dsp_pcm(chip, 0, NULL)) < 0) {
135                 snd_card_free(card);
136                 return err;
137         }
138         if ((err = snd_sbmixer_new(chip)) < 0) {
139                 snd_card_free(card);
140                 return err;
141         }
142         if (chip->hardware == SB_HW_10 || chip->hardware == SB_HW_20) {
143                 if ((err = snd_opl3_create(card, chip->port + 8, 0,
144                                            OPL3_HW_AUTO, 1,
145                                            &opl3)) < 0) {
146                         snd_printk(KERN_ERR "sb8: no OPL device at 0x%lx\n", chip->port + 8);
147                 }
148         } else {
149                 if ((err = snd_opl3_create(card, chip->port, chip->port + 2,
150                                            OPL3_HW_AUTO, 1,
151                                            &opl3)) < 0) {
152                         snd_printk(KERN_ERR "sb8: no OPL device at 0x%lx-0x%lx\n",
153                                    chip->port, chip->port + 2);
154                 }
155         }
156         if (err >= 0) {
157                 if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) {
158                         snd_card_free(card);
159                         return err;
160                 }
161         }
162
163         if ((err = snd_sb8dsp_midi(chip, 0, NULL)) < 0) {
164                 snd_card_free(card);
165                 return err;
166         }
167
168         strcpy(card->driver, chip->hardware == SB_HW_PRO ? "SB Pro" : "SB8");
169         strcpy(card->shortname, chip->name);
170         sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d",
171                 chip->name,
172                 chip->port,
173                 irq[dev], dma8[dev]);
174         if ((err = snd_card_register(card)) < 0) {
175                 snd_card_free(card);
176                 return err;
177         }
178         snd_sb8_cards[dev] = card;
179         return 0;
180 }
181
182 static int __init snd_card_sb8_legacy_auto_probe(unsigned long xport)
183 {
184         static int dev;
185         int res;
186
187         for ( ; dev < SNDRV_CARDS; dev++) {
188                 if (!enable[dev] || port[dev] != SNDRV_AUTO_PORT)
189                         continue;
190                 port[dev] = xport;
191                 res = snd_sb8_probe(dev);
192                 if (res < 0)
193                         port[dev] = SNDRV_AUTO_PORT;
194                 return res;
195         }
196         return -ENODEV;
197 }
198
199 static int __init alsa_card_sb8_init(void)
200 {
201         static unsigned long possible_ports[] = {0x220, 0x240, 0x260, -1};
202         int dev, cards, i;
203
204         for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev]; dev++) {
205                 if (port[dev] == SNDRV_AUTO_PORT)
206                         continue;
207                 if (snd_sb8_probe(dev) >= 0)
208                         cards++;
209         }
210         i = snd_legacy_auto_probe(possible_ports, snd_card_sb8_legacy_auto_probe);
211         if (i > 0)
212                 cards += i;
213
214         if (!cards) {
215 #ifdef MODULE
216                 snd_printk(KERN_ERR "Sound Blaster soundcard not found or device busy\n");
217 #endif
218                 return -ENODEV;
219         }
220         return 0;
221 }
222
223 static void __exit alsa_card_sb8_exit(void)
224 {
225         int idx;
226
227         for (idx = 0; idx < SNDRV_CARDS; idx++)
228                 snd_card_free(snd_sb8_cards[idx]);
229 }
230
231 module_init(alsa_card_sb8_init)
232 module_exit(alsa_card_sb8_exit)
233
234 #ifndef MODULE
235
236 /* format is: snd-sb8=enable,index,id,
237                       port,irq,dma8 */
238
239 static int __init alsa_card_sb8_setup(char *str)
240 {
241         static unsigned __initdata nr_dev = 0;
242
243         if (nr_dev >= SNDRV_CARDS)
244                 return 0;
245         (void)(get_option(&str,&enable[nr_dev]) == 2 &&
246                get_option(&str,&index[nr_dev]) == 2 &&
247                get_id(&str,&id[nr_dev]) == 2 &&
248                get_option_long(&str,&port[nr_dev]) == 2 &&
249                get_option(&str,&irq[nr_dev]) == 2 &&
250                get_option(&str,&dma8[nr_dev]) == 2);
251         nr_dev++;
252         return 1;
253 }
254
255 __setup("snd-sb8=", alsa_card_sb8_setup);
256
257 #endif /* ifndef MODULE */