source: GPL/alsa-kernel/isa/sb/sb8.c@ 1

Last change on this file since 1 was 1, checked in by vladest, 20 years ago

initial import

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