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