blob: d4d65b84265a8dd972d6904b65ead1be6b3b2a98 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/*
3 card-es968.c - driver for ESS AudioDrive ES968 based soundcards.
4 Copyright (C) 1999 by Massimo Piccioni <dafastidio@libero.it>
5
6 Thanks to Pierfrancesco 'qM2' Passerini.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21*/
22
23#include <sound/driver.h>
24#include <linux/init.h>
25#include <linux/time.h>
26#include <linux/pnp.h>
27#include <linux/moduleparam.h>
28#include <sound/core.h>
29#include <sound/initval.h>
30#include <sound/sb.h>
31
32#define PFX "es968: "
33
34MODULE_AUTHOR("Massimo Piccioni <dafastidio@libero.it>");
35MODULE_DESCRIPTION("ESS AudioDrive ES968");
36MODULE_LICENSE("GPL");
37MODULE_SUPPORTED_DEVICE("{{ESS,AudioDrive ES968}}");
38
39static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
40static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
41static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */
42static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */
43static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */
44static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */
45
46module_param_array(index, int, NULL, 0444);
47MODULE_PARM_DESC(index, "Index value for es968 based soundcard.");
48module_param_array(id, charp, NULL, 0444);
49MODULE_PARM_DESC(id, "ID string for es968 based soundcard.");
50module_param_array(enable, bool, NULL, 0444);
51MODULE_PARM_DESC(enable, "Enable es968 based soundcard.");
52module_param_array(port, long, NULL, 0444);
53MODULE_PARM_DESC(port, "Port # for es968 driver.");
54module_param_array(irq, int, NULL, 0444);
55MODULE_PARM_DESC(irq, "IRQ # for es968 driver.");
56module_param_array(dma8, int, NULL, 0444);
57MODULE_PARM_DESC(dma8, "8-bit DMA # for es968 driver.");
58
59struct snd_card_es968 {
60 struct pnp_dev *dev;
Takashi Iwai7a8fef12005-11-17 16:56:11 +010061 struct snd_sb *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
64static struct pnp_card_device_id snd_es968_pnpids[] = {
65 { .id = "ESS0968", .devs = { { "@@@0968" }, } },
66 { .id = "", } /* end */
67};
68
69MODULE_DEVICE_TABLE(pnp_card, snd_es968_pnpids);
70
71#define DRIVER_NAME "snd-card-es968"
72
73static irqreturn_t snd_card_es968_interrupt(int irq, void *dev_id,
74 struct pt_regs *regs)
75{
Takashi Iwai029d64b2005-11-17 14:34:36 +010076 struct snd_sb *chip = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 if (chip->open & SB_OPEN_PCM) {
79 return snd_sb8dsp_interrupt(chip);
80 } else {
81 return snd_sb8dsp_midi_interrupt(chip);
82 }
83}
84
85static int __devinit snd_card_es968_pnp(int dev, struct snd_card_es968 *acard,
86 struct pnp_card_link *card,
87 const struct pnp_card_device_id *id)
88{
89 struct pnp_dev *pdev;
90 struct pnp_resource_table *cfg = kmalloc(sizeof(*cfg), GFP_KERNEL);
91 int err;
92 if (!cfg)
93 return -ENOMEM;
94 acard->dev = pnp_request_card_device(card, id->devs[0].id, NULL);
95 if (acard->dev == NULL) {
96 kfree(cfg);
97 return -ENODEV;
98 }
99
100 pdev = acard->dev;
101
102 pnp_init_resource_table(cfg);
103
104 /* override resources */
105 if (port[dev] != SNDRV_AUTO_PORT)
106 pnp_resource_change(&cfg->port_resource[0], port[dev], 16);
107 if (dma8[dev] != SNDRV_AUTO_DMA)
108 pnp_resource_change(&cfg->dma_resource[0], dma8[dev], 1);
109 if (irq[dev] != SNDRV_AUTO_IRQ)
110 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
111 if ((pnp_manual_config_dev(pdev, cfg, 0)) < 0)
112 snd_printk(KERN_ERR PFX "AUDIO the requested resources are invalid, using auto config\n");
113 err = pnp_activate_dev(pdev);
114 if (err < 0) {
115 snd_printk(KERN_ERR PFX "AUDIO pnp configure failure\n");
116 kfree(cfg);
117 return err;
118 }
119 port[dev] = pnp_port_start(pdev, 0);
120 dma8[dev] = pnp_dma(pdev, 1);
121 irq[dev] = pnp_irq(pdev, 0);
122
123 kfree(cfg);
124 return 0;
125}
126
Bjorn Helgaas6a3a3a02006-03-27 01:17:14 -0800127static int __devinit snd_card_es968_probe(int dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct pnp_card_link *pcard,
129 const struct pnp_card_device_id *pid)
130{
131 int error;
Takashi Iwai029d64b2005-11-17 14:34:36 +0100132 struct snd_sb *chip;
133 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 struct snd_card_es968 *acard;
135
136 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE,
137 sizeof(struct snd_card_es968))) == NULL)
138 return -ENOMEM;
Takashi Iwai7a8fef12005-11-17 16:56:11 +0100139 acard = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if ((error = snd_card_es968_pnp(dev, acard, pcard, pid))) {
141 snd_card_free(card);
142 return error;
143 }
144 snd_card_set_dev(card, &pcard->card->dev);
145
146 if ((error = snd_sbdsp_create(card, port[dev],
147 irq[dev],
148 snd_card_es968_interrupt,
149 dma8[dev],
150 -1,
151 SB_HW_AUTO, &chip)) < 0) {
152 snd_card_free(card);
153 return error;
154 }
Takashi Iwai7a8fef12005-11-17 16:56:11 +0100155 acard->chip = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 if ((error = snd_sb8dsp_pcm(chip, 0, NULL)) < 0) {
158 snd_card_free(card);
159 return error;
160 }
161
162 if ((error = snd_sbmixer_new(chip)) < 0) {
163 snd_card_free(card);
164 return error;
165 }
166
167 if ((error = snd_sb8dsp_midi(chip, 0, NULL)) < 0) {
168 snd_card_free(card);
169 return error;
170 }
171
172 strcpy(card->driver, "ES968");
173 strcpy(card->shortname, "ESS ES968");
174 sprintf(card->longname, "%s soundcard, %s at 0x%lx, irq %d, dma %d",
175 card->shortname, chip->name, chip->port, irq[dev], dma8[dev]);
176
177 if ((error = snd_card_register(card)) < 0) {
178 snd_card_free(card);
179 return error;
180 }
181 pnp_set_card_drvdata(pcard, card);
182 return 0;
183}
184
Bjorn Helgaas6a3a3a02006-03-27 01:17:14 -0800185static unsigned int __devinitdata es968_devices;
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187static int __devinit snd_es968_pnp_detect(struct pnp_card_link *card,
188 const struct pnp_card_device_id *id)
189{
190 static int dev;
191 int res;
192
193 for ( ; dev < SNDRV_CARDS; dev++) {
194 if (!enable[dev])
195 continue;
196 res = snd_card_es968_probe(dev, card, id);
197 if (res < 0)
198 return res;
199 dev++;
Bjorn Helgaas6a3a3a02006-03-27 01:17:14 -0800200 es968_devices++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return 0;
202 }
203 return -ENODEV;
204}
205
206static void __devexit snd_es968_pnp_remove(struct pnp_card_link * pcard)
207{
Takashi Iwai7a8fef12005-11-17 16:56:11 +0100208 snd_card_free(pnp_get_card_drvdata(pcard));
209 pnp_set_card_drvdata(pcard, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
Takashi Iwai7a8fef12005-11-17 16:56:11 +0100212#ifdef CONFIG_PM
213static int snd_es968_pnp_suspend(struct pnp_card_link *pcard, pm_message_t state)
214{
215 struct snd_card *card = pnp_get_card_drvdata(pcard);
216 struct snd_card_es968 *acard = card->private_data;
217 struct snd_sb *chip = acard->chip;
218
219 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
220 snd_pcm_suspend_all(chip->pcm);
221 snd_sbmixer_suspend(chip);
222 return 0;
223}
224
225static int snd_es968_pnp_resume(struct pnp_card_link *pcard)
226{
227 struct snd_card *card = pnp_get_card_drvdata(pcard);
228 struct snd_card_es968 *acard = card->private_data;
229 struct snd_sb *chip = acard->chip;
230
231 snd_sbdsp_reset(chip);
232 snd_sbmixer_resume(chip);
233 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
234 return 0;
235}
236#endif
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238static struct pnp_card_driver es968_pnpc_driver = {
239 .flags = PNP_DRIVER_RES_DISABLE,
240 .name = "es968",
241 .id_table = snd_es968_pnpids,
242 .probe = snd_es968_pnp_detect,
243 .remove = __devexit_p(snd_es968_pnp_remove),
Takashi Iwai7a8fef12005-11-17 16:56:11 +0100244#ifdef CONFIG_PM
245 .suspend = snd_es968_pnp_suspend,
246 .resume = snd_es968_pnp_resume,
247#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248};
249
250static int __init alsa_card_es968_init(void)
251{
Bjorn Helgaas6a3a3a02006-03-27 01:17:14 -0800252 int err = pnp_register_card_driver(&es968_pnpc_driver);
253 if (err)
254 return err;
255
256 if (!es968_devices) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 pnp_unregister_card_driver(&es968_pnpc_driver);
Takashi Iwai7a8fef12005-11-17 16:56:11 +0100258#ifdef MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 snd_printk(KERN_ERR "no ES968 based soundcards found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#endif
Takashi Iwai7a8fef12005-11-17 16:56:11 +0100261 return -ENODEV;
262 }
263 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266static void __exit alsa_card_es968_exit(void)
267{
268 pnp_unregister_card_driver(&es968_pnpc_driver);
269}
270
271module_init(alsa_card_es968_init)
272module_exit(alsa_card_es968_exit)