blob: 9f897bca061544eccf42539fb4ddac444f5b1625 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Driver for Sound Core PDAudioCF soundcard
3 *
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * Copyright (c) 2003 by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <sound/core.h>
22#include <linux/slab.h>
23#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <pcmcia/ciscode.h>
25#include <pcmcia/cisreg.h>
26#include "pdaudiocf.h"
27#include <sound/initval.h>
28#include <linux/init.h>
29
30/*
31 */
32
33#define CARD_NAME "PDAudio-CF"
34
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020035MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070036MODULE_DESCRIPTION("Sound Core " CARD_NAME);
37MODULE_LICENSE("GPL");
38MODULE_SUPPORTED_DEVICE("{{Sound Core," CARD_NAME "}}");
39
40static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
41static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
42static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable switches */
43
44module_param_array(index, int, NULL, 0444);
45MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
46module_param_array(id, charp, NULL, 0444);
47MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
48module_param_array(enable, bool, NULL, 0444);
49MODULE_PARM_DESC(enable, "Enable " CARD_NAME " soundcard.");
50
51/*
52 */
53
Takashi Iwaidb131542005-11-17 15:07:38 +010054static struct snd_card *card_list[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * prototypes
58 */
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020059static int pdacf_config(struct pcmcia_device *link);
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +010060static void snd_pdacf_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Dominik Brodowskifba395e2006-03-31 17:21:06 +020062static void pdacf_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Dominik Brodowskifba395e2006-03-31 17:21:06 +020064 pcmcia_disable_device(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67/*
68 * destructor
69 */
Takashi Iwaidb131542005-11-17 15:07:38 +010070static int snd_pdacf_free(struct snd_pdacf *pdacf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Dominik Brodowskifba395e2006-03-31 17:21:06 +020072 struct pcmcia_device *link = pdacf->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 pdacf_release(link);
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 card_list[pdacf->index] = NULL;
77 pdacf->card = NULL;
78
79 kfree(pdacf);
80 return 0;
81}
82
Takashi Iwaidb131542005-11-17 15:07:38 +010083static int snd_pdacf_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Takashi Iwaidb131542005-11-17 15:07:38 +010085 struct snd_pdacf *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return snd_pdacf_free(chip);
87}
88
89/*
90 * snd_pdacf_attach - attach callback for cs
91 */
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020092static int snd_pdacf_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Takashi Iwaibd7dd772008-12-28 16:45:02 +010094 int i, err;
Takashi Iwaidb131542005-11-17 15:07:38 +010095 struct snd_pdacf *pdacf;
96 struct snd_card *card;
97 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 .dev_free = snd_pdacf_dev_free,
99 };
100
101 snd_printdd(KERN_DEBUG "pdacf_attach called\n");
102 /* find an empty slot from the card list */
103 for (i = 0; i < SNDRV_CARDS; i++) {
104 if (! card_list[i])
105 break;
106 }
107 if (i >= SNDRV_CARDS) {
108 snd_printk(KERN_ERR "pdacf: too many cards found\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100109 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111 if (! enable[i])
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100112 return -ENODEV; /* disabled explicitly */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 /* ok, create a card instance */
Takashi Iwaibd7dd772008-12-28 16:45:02 +0100115 err = snd_card_create(index[i], id[i], THIS_MODULE, 0, &card);
116 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 snd_printk(KERN_ERR "pdacf: cannot create a card instance\n");
Takashi Iwaibd7dd772008-12-28 16:45:02 +0100118 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120
121 pdacf = snd_pdacf_create(card);
Takashi Iwaiaa3d75d2008-12-28 16:59:41 +0100122 if (!pdacf) {
123 snd_card_free(card);
Takashi Iwai2fa51102008-12-28 17:03:56 +0100124 return -ENOMEM;
Takashi Iwaiaa3d75d2008-12-28 16:59:41 +0100125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Takashi Iwai2fa51102008-12-28 17:03:56 +0100127 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, pdacf, &ops);
128 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 kfree(pdacf);
130 snd_card_free(card);
Takashi Iwai2fa51102008-12-28 17:03:56 +0100131 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
133
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100134 snd_card_set_dev(card, &link->dev);
Takashi Iwaif78dfac2007-12-17 16:24:04 +0100135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 pdacf->index = i;
137 card_list[i] = card;
138
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200139 pdacf->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 link->priv = pdacf;
141
142 link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
143 link->io.NumPorts1 = 16;
144
Dominik Brodowskia7debe72010-03-07 10:58:29 +0100145 link->conf.Attributes = CONF_ENABLE_IRQ | CONF_ENABLE_PULSE_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 link->conf.IntType = INT_MEMORY_AND_IO;
147 link->conf.ConfigIndex = 1;
148 link->conf.Present = PRESENT_OPTION;
149
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200150 return pdacf_config(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
153
154/**
155 * snd_pdacf_assign_resources - initialize the hardware and card instance.
156 * @port: i/o port for the card
157 * @irq: irq number for the card
158 *
159 * this function assigns the specified port and irq, boot the card,
160 * create pcm and control instances, and initialize the rest hardware.
161 *
162 * returns 0 if successful, or a negative error code.
163 */
Takashi Iwaidb131542005-11-17 15:07:38 +0100164static int snd_pdacf_assign_resources(struct snd_pdacf *pdacf, int port, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 int err;
Takashi Iwaidb131542005-11-17 15:07:38 +0100167 struct snd_card *card = pdacf->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 snd_printdd(KERN_DEBUG "pdacf assign resources: port = 0x%x, irq = %d\n", port, irq);
170 pdacf->port = port;
171 pdacf->irq = irq;
172 pdacf->chip_status |= PDAUDIOCF_STAT_IS_CONFIGURED;
173
174 err = snd_pdacf_ak4117_create(pdacf);
175 if (err < 0)
176 return err;
177
178 strcpy(card->driver, "PDAudio-CF");
179 sprintf(card->shortname, "Core Sound %s", card->driver);
180 sprintf(card->longname, "%s at 0x%x, irq %i",
181 card->shortname, port, irq);
182
183 err = snd_pdacf_pcm_new(pdacf);
184 if (err < 0)
185 return err;
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if ((err = snd_card_register(card)) < 0)
188 return err;
189
190 return 0;
191}
192
193
194/*
195 * snd_pdacf_detach - detach callback for cs
196 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200197static void snd_pdacf_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Takashi Iwaidb131542005-11-17 15:07:38 +0100199 struct snd_pdacf *chip = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 snd_printdd(KERN_DEBUG "pdacf_detach called\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (chip->chip_status & PDAUDIOCF_STAT_IS_CONFIGURED)
204 snd_pdacf_powerdown(chip);
205 chip->chip_status |= PDAUDIOCF_STAT_IS_STALE; /* to be sure */
206 snd_card_disconnect(chip->card);
Takashi Iwai2b29b132006-06-23 14:38:26 +0200207 snd_card_free_when_closed(chip->card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210/*
211 * configuration callback
212 */
213
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200214static int pdacf_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Takashi Iwaidb131542005-11-17 15:07:38 +0100216 struct snd_pdacf *pdacf = link->priv;
Dominik Brodowski7c5af6f2009-10-24 15:55:12 +0200217 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 snd_printdd(KERN_DEBUG "pdacf_config called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 link->conf.ConfigIndex = 0x5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Dominik Brodowski7c5af6f2009-10-24 15:55:12 +0200222 ret = pcmcia_request_io(link, &link->io);
223 if (ret)
224 goto failed;
225
Dominik Brodowskieb141202010-03-07 12:21:16 +0100226 ret = pcmcia_request_exclusive_irq(link, pdacf_interrupt);
Dominik Brodowski7c5af6f2009-10-24 15:55:12 +0200227 if (ret)
228 goto failed;
229
230 ret = pcmcia_request_configuration(link, &link->conf);
231 if (ret)
232 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200234 if (snd_pdacf_assign_resources(pdacf, link->resource[0]->start,
235 link->irq) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 goto failed;
237
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240failed:
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200241 pcmcia_disable_device(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200242 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100245#ifdef CONFIG_PM
246
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200247static int pdacf_suspend(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Takashi Iwaidb131542005-11-17 15:07:38 +0100249 struct snd_pdacf *chip = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100251 snd_printdd(KERN_DEBUG "SUSPEND\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100252 if (chip) {
253 snd_printdd(KERN_DEBUG "snd_pdacf_suspend calling\n");
254 snd_pdacf_suspend(chip, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return 0;
258}
259
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200260static int pdacf_resume(struct pcmcia_device *link)
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100261{
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100262 struct snd_pdacf *chip = link->priv;
263
264 snd_printdd(KERN_DEBUG "RESUME\n");
Dominik Brodowski9940ec32006-03-05 11:04:33 +0100265 if (pcmcia_dev_present(link)) {
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100266 if (chip) {
267 snd_printdd(KERN_DEBUG "calling snd_pdacf_resume\n");
268 snd_pdacf_resume(chip);
269 }
270 }
271 snd_printdd(KERN_DEBUG "resume done!\n");
272
273 return 0;
274}
275
276#endif
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278/*
279 * Module entry points
280 */
Dominik Brodowskia4ed3592005-06-27 16:28:42 -0700281static struct pcmcia_device_id snd_pdacf_ids[] = {
Tony Olech44e5e332006-11-29 08:54:51 +0000282 /* this is too general PCMCIA_DEVICE_MANF_CARD(0x015d, 0x4c45), */
283 PCMCIA_DEVICE_PROD_ID12("Core Sound","PDAudio-CF",0x396d19d2,0x71717b49),
Dominik Brodowskia4ed3592005-06-27 16:28:42 -0700284 PCMCIA_DEVICE_NULL
285};
286MODULE_DEVICE_TABLE(pcmcia, snd_pdacf_ids);
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288static struct pcmcia_driver pdacf_cs_driver = {
Dominik Brodowski1e212f32005-07-07 17:59:00 -0700289 .owner = THIS_MODULE,
290 .drv = {
291 .name = "snd-pdaudiocf",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200293 .probe = snd_pdacf_probe,
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100294 .remove = snd_pdacf_detach,
Dominik Brodowskia4ed3592005-06-27 16:28:42 -0700295 .id_table = snd_pdacf_ids,
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100296#ifdef CONFIG_PM
297 .suspend = pdacf_suspend,
298 .resume = pdacf_resume,
299#endif
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
303static int __init init_pdacf(void)
304{
305 return pcmcia_register_driver(&pdacf_cs_driver);
306}
307
308static void __exit exit_pdacf(void)
309{
310 pcmcia_unregister_driver(&pdacf_cs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313module_init(init_pdacf);
314module_exit(exit_pdacf);