Pull sysfs into test branch
[deliverable/linux.git] / sound / isa / dt019x.c
CommitLineData
1da177e4
LT
1
2/*
3 dt019x.c - driver for Diamond Technologies DT-0197H based soundcards.
4 Copyright (C) 1999, 2002 by Massimo Piccioni <dafastidio@libero.it>
5
6 Generalised for soundcards based on DT-0196 and ALS-007 chips
7 by Jonathan Woithe <jwoithe@physics.adelaide.edu.au>: June 2002.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22*/
23
24#include <sound/driver.h>
25#include <linux/init.h>
26#include <linux/sched.h>
27#include <linux/wait.h>
28#include <linux/pnp.h>
29#include <linux/moduleparam.h>
30#include <sound/core.h>
31#include <sound/initval.h>
32#include <sound/mpu401.h>
33#include <sound/opl3.h>
34#include <sound/sb.h>
35
36#define PFX "dt019x: "
37
38MODULE_AUTHOR("Massimo Piccioni <dafastidio@libero.it>");
39MODULE_DESCRIPTION("Diamond Technologies DT-019X / Avance Logic ALS-007");
40MODULE_LICENSE("GPL");
41MODULE_SUPPORTED_DEVICE("{{Diamond Technologies DT-019X},"
42 "{Avance Logic ALS-007}}");
43
44static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
45static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
46static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */
47static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */
48static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */
49static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */
50static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */
51static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */
52static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */
53
54module_param_array(index, int, NULL, 0444);
55MODULE_PARM_DESC(index, "Index value for DT-019X based soundcard.");
56module_param_array(id, charp, NULL, 0444);
57MODULE_PARM_DESC(id, "ID string for DT-019X based soundcard.");
58module_param_array(enable, bool, NULL, 0444);
59MODULE_PARM_DESC(enable, "Enable DT-019X based soundcard.");
60module_param_array(port, long, NULL, 0444);
61MODULE_PARM_DESC(port, "Port # for dt019x driver.");
62module_param_array(mpu_port, long, NULL, 0444);
63MODULE_PARM_DESC(mpu_port, "MPU-401 port # for dt019x driver.");
64module_param_array(fm_port, long, NULL, 0444);
65MODULE_PARM_DESC(fm_port, "FM port # for dt019x driver.");
66module_param_array(irq, int, NULL, 0444);
67MODULE_PARM_DESC(irq, "IRQ # for dt019x driver.");
68module_param_array(mpu_irq, int, NULL, 0444);
69MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for dt019x driver.");
70module_param_array(dma8, int, NULL, 0444);
71MODULE_PARM_DESC(dma8, "8-bit DMA # for dt019x driver.");
72
73struct snd_card_dt019x {
74 struct pnp_dev *dev;
75 struct pnp_dev *devmpu;
76 struct pnp_dev *devopl;
e2fa2135 77 struct snd_sb *chip;
1da177e4
LT
78};
79
80static struct pnp_card_device_id snd_dt019x_pnpids[] = {
81 /* DT197A30 */
82 { .id = "RWB1688", .devs = { { "@@@0001" }, { "@X@0001" }, { "@H@0001" }, } },
83 /* DT0196 / ALS-007 */
84 { .id = "ALS0007", .devs = { { "@@@0001" }, { "@X@0001" }, { "@H@0001" }, } },
85 { .id = "", }
86};
87
88MODULE_DEVICE_TABLE(pnp_card, snd_dt019x_pnpids);
89
90
91#define DRIVER_NAME "snd-card-dt019x"
92
93
94static int __devinit snd_card_dt019x_pnp(int dev, struct snd_card_dt019x *acard,
95 struct pnp_card_link *card,
96 const struct pnp_card_device_id *pid)
97{
98 struct pnp_dev *pdev;
99 struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL);
100 int err;
101
102 if (!cfg)
103 return -ENOMEM;
104
105 acard->dev = pnp_request_card_device(card, pid->devs[0].id, NULL);
106 if (acard->dev == NULL) {
107 kfree (cfg);
108 return -ENODEV;
109 }
110 acard->devmpu = pnp_request_card_device(card, pid->devs[1].id, NULL);
111 acard->devopl = pnp_request_card_device(card, pid->devs[2].id, NULL);
112
113 pdev = acard->dev;
114 pnp_init_resource_table(cfg);
115
116 if (port[dev] != SNDRV_AUTO_PORT)
117 pnp_resource_change(&cfg->port_resource[0], port[dev], 16);
118 if (dma8[dev] != SNDRV_AUTO_DMA)
119 pnp_resource_change(&cfg->dma_resource[0], dma8[dev], 1);
120 if (irq[dev] != SNDRV_AUTO_IRQ)
121 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
122
123 if ((pnp_manual_config_dev(pdev, cfg, 0)) < 0)
124 snd_printk(KERN_ERR PFX "DT-019X AUDIO the requested resources are invalid, using auto config\n");
125 err = pnp_activate_dev(pdev);
126 if (err < 0) {
127 snd_printk(KERN_ERR PFX "DT-019X AUDIO pnp configure failure\n");
128 kfree(cfg);
129 return err;
130 }
131
132 port[dev] = pnp_port_start(pdev, 0);
133 dma8[dev] = pnp_dma(pdev, 0);
134 irq[dev] = pnp_irq(pdev, 0);
135 snd_printdd("dt019x: found audio interface: port=0x%lx, irq=0x%x, dma=0x%x\n",
136 port[dev],irq[dev],dma8[dev]);
137
138 pdev = acard->devmpu;
139
140 if (pdev != NULL) {
141 pnp_init_resource_table(cfg);
142 if (mpu_port[dev] != SNDRV_AUTO_PORT)
143 pnp_resource_change(&cfg->port_resource[0], mpu_port[dev], 2);
144 if (mpu_irq[dev] != SNDRV_AUTO_IRQ)
145 pnp_resource_change(&cfg->irq_resource[0], mpu_irq[dev], 1);
146 if ((pnp_manual_config_dev(pdev, cfg, 0)) < 0)
147 snd_printk(KERN_ERR PFX "DT-019X MPU401 the requested resources are invalid, using auto config\n");
148 err = pnp_activate_dev(pdev);
149 if (err < 0) {
150 pnp_release_card_device(pdev);
151 snd_printk(KERN_ERR PFX "DT-019X MPU401 pnp configure failure, skipping\n");
152 goto __mpu_error;
153 }
154 mpu_port[dev] = pnp_port_start(pdev, 0);
155 mpu_irq[dev] = pnp_irq(pdev, 0);
156 snd_printdd("dt019x: found MPU-401: port=0x%lx, irq=0x%x\n",
157 mpu_port[dev],mpu_irq[dev]);
158 } else {
159 __mpu_error:
160 acard->devmpu = NULL;
161 mpu_port[dev] = -1;
162 }
163
164 pdev = acard->devopl;
165 if (pdev != NULL) {
166 pnp_init_resource_table(cfg);
167 if (fm_port[dev] != SNDRV_AUTO_PORT)
168 pnp_resource_change(&cfg->port_resource[0], fm_port[dev], 4);
169 if ((pnp_manual_config_dev(pdev, cfg, 0)) < 0)
170 snd_printk(KERN_ERR PFX "DT-019X OPL3 the requested resources are invalid, using auto config\n");
171 err = pnp_activate_dev(pdev);
172 if (err < 0) {
173 pnp_release_card_device(pdev);
174 snd_printk(KERN_ERR PFX "DT-019X OPL3 pnp configure failure, skipping\n");
175 goto __fm_error;
176 }
177 fm_port[dev] = pnp_port_start(pdev, 0);
178 snd_printdd("dt019x: found OPL3 synth: port=0x%lx\n",fm_port[dev]);
179 } else {
180 __fm_error:
181 acard->devopl = NULL;
182 fm_port[dev] = -1;
183 }
184
185 kfree(cfg);
186 return 0;
187}
188
189static int __devinit snd_card_dt019x_probe(int dev, struct pnp_card_link *pcard, const struct pnp_card_device_id *pid)
190{
191 int error;
11ff5c62
TI
192 struct snd_sb *chip;
193 struct snd_card *card;
1da177e4 194 struct snd_card_dt019x *acard;
11ff5c62 195 struct snd_opl3 *opl3;
1da177e4
LT
196
197 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE,
198 sizeof(struct snd_card_dt019x))) == NULL)
199 return -ENOMEM;
e2fa2135 200 acard = card->private_data;
1da177e4
LT
201
202 snd_card_set_dev(card, &pcard->card->dev);
203 if ((error = snd_card_dt019x_pnp(dev, acard, pcard, pid))) {
204 snd_card_free(card);
205 return error;
206 }
207
208 if ((error = snd_sbdsp_create(card, port[dev],
209 irq[dev],
210 snd_sb16dsp_interrupt,
211 dma8[dev],
212 -1,
213 SB_HW_DT019X,
214 &chip)) < 0) {
215 snd_card_free(card);
216 return error;
217 }
e2fa2135 218 acard->chip = chip;
1da177e4
LT
219
220 strcpy(card->driver, "DT-019X");
221 strcpy(card->shortname, "Diamond Tech. DT-019X");
222 sprintf(card->longname, "%s, %s at 0x%lx, irq %d, dma %d",
223 card->shortname, chip->name, chip->port,
224 irq[dev], dma8[dev]);
225
226 if ((error = snd_sb16dsp_pcm(chip, 0, NULL)) < 0) {
227 snd_card_free(card);
228 return error;
229 }
230 if ((error = snd_sbmixer_new(chip)) < 0) {
231 snd_card_free(card);
232 return error;
233 }
234
235 if (mpu_port[dev] > 0 && mpu_port[dev] != SNDRV_AUTO_PORT) {
236 if (mpu_irq[dev] == SNDRV_AUTO_IRQ)
237 mpu_irq[dev] = -1;
238 if (snd_mpu401_uart_new(card, 0,
239/* MPU401_HW_SB,*/
240 MPU401_HW_MPU401,
241 mpu_port[dev], 0,
242 mpu_irq[dev],
65ca68b3 243 mpu_irq[dev] >= 0 ? IRQF_DISABLED : 0,
1da177e4
LT
244 NULL) < 0)
245 snd_printk(KERN_ERR PFX "no MPU-401 device at 0x%lx ?\n", mpu_port[dev]);
246 }
247
248 if (fm_port[dev] > 0 && fm_port[dev] != SNDRV_AUTO_PORT) {
249 if (snd_opl3_create(card,
250 fm_port[dev],
251 fm_port[dev] + 2,
252 OPL3_HW_AUTO, 0, &opl3) < 0) {
253 snd_printk(KERN_ERR PFX "no OPL device at 0x%lx-0x%lx ?\n",
254 fm_port[dev], fm_port[dev] + 2);
255 } else {
256 if ((error = snd_opl3_timer_new(opl3, 0, 1)) < 0) {
257 snd_card_free(card);
258 return error;
259 }
260 if ((error = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) {
261 snd_card_free(card);
262 return error;
263 }
264 }
265 }
266
267 if ((error = snd_card_register(card)) < 0) {
268 snd_card_free(card);
269 return error;
270 }
271 pnp_set_card_drvdata(pcard, card);
272 return 0;
273}
274
6736a658
BH
275static unsigned int __devinitdata dt019x_devices;
276
1da177e4
LT
277static int __devinit snd_dt019x_pnp_probe(struct pnp_card_link *card,
278 const struct pnp_card_device_id *pid)
279{
280 static int dev;
281 int res;
282
283 for ( ; dev < SNDRV_CARDS; dev++) {
284 if (!enable[dev])
285 continue;
286 res = snd_card_dt019x_probe(dev, card, pid);
287 if (res < 0)
288 return res;
289 dev++;
6736a658 290 dt019x_devices++;
1da177e4
LT
291 return 0;
292 }
293 return -ENODEV;
294}
295
296static void __devexit snd_dt019x_pnp_remove(struct pnp_card_link * pcard)
297{
e2fa2135
TI
298 snd_card_free(pnp_get_card_drvdata(pcard));
299 pnp_set_card_drvdata(pcard, NULL);
300}
301
302#ifdef CONFIG_PM
303static int snd_dt019x_pnp_suspend(struct pnp_card_link *pcard, pm_message_t state)
304{
305 struct snd_card *card = pnp_get_card_drvdata(pcard);
306 struct snd_card_dt019x *acard = card->private_data;
307 struct snd_sb *chip = acard->chip;
308
309 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
310 snd_pcm_suspend_all(chip->pcm);
311 snd_sbmixer_suspend(chip);
312 return 0;
313}
314
315static int snd_dt019x_pnp_resume(struct pnp_card_link *pcard)
316{
317 struct snd_card *card = pnp_get_card_drvdata(pcard);
318 struct snd_card_dt019x *acard = card->private_data;
319 struct snd_sb *chip = acard->chip;
320
321 snd_sbdsp_reset(chip);
322 snd_sbmixer_resume(chip);
323 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
324 return 0;
1da177e4 325}
e2fa2135 326#endif
1da177e4
LT
327
328static struct pnp_card_driver dt019x_pnpc_driver = {
329 .flags = PNP_DRIVER_RES_DISABLE,
330 .name = "dt019x",
331 .id_table = snd_dt019x_pnpids,
332 .probe = snd_dt019x_pnp_probe,
333 .remove = __devexit_p(snd_dt019x_pnp_remove),
e2fa2135
TI
334#ifdef CONFIG_PM
335 .suspend = snd_dt019x_pnp_suspend,
336 .resume = snd_dt019x_pnp_resume,
337#endif
1da177e4
LT
338};
339
340static int __init alsa_card_dt019x_init(void)
341{
6736a658
BH
342 int err;
343
344 err = pnp_register_card_driver(&dt019x_pnpc_driver);
345 if (err)
346 return err;
1da177e4 347
6736a658 348 if (!dt019x_devices) {
1da177e4 349 pnp_unregister_card_driver(&dt019x_pnpc_driver);
e2fa2135 350#ifdef MODULE
1da177e4 351 snd_printk(KERN_ERR "no DT-019X / ALS-007 based soundcards found\n");
1da177e4 352#endif
e2fa2135
TI
353 return -ENODEV;
354 }
355 return 0;
1da177e4
LT
356}
357
358static void __exit alsa_card_dt019x_exit(void)
359{
360 pnp_unregister_card_driver(&dt019x_pnpc_driver);
361}
362
363module_init(alsa_card_dt019x_init)
364module_exit(alsa_card_dt019x_exit)
This page took 0.178353 seconds and 5 git commands to generate.