blob: b4158201e9e685fc4677a1bb0540b1cfca8c676f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Driver for Sound Core PDAudioCF soundcard
3 *
4 * Copyright (c) 2003 by Jaroslav Kysela <perex@suse.cz>
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#include <sound/driver.h>
22#include <sound/core.h>
23#include <linux/slab.h>
24#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <pcmcia/ciscode.h>
26#include <pcmcia/cisreg.h>
27#include "pdaudiocf.h"
28#include <sound/initval.h>
29#include <linux/init.h>
30
31/*
32 */
33
34#define CARD_NAME "PDAudio-CF"
35
36MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
37MODULE_DESCRIPTION("Sound Core " CARD_NAME);
38MODULE_LICENSE("GPL");
39MODULE_SUPPORTED_DEVICE("{{Sound Core," CARD_NAME "}}");
40
41static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
42static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
43static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable switches */
44
45module_param_array(index, int, NULL, 0444);
46MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
47module_param_array(id, charp, NULL, 0444);
48MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
49module_param_array(enable, bool, NULL, 0444);
50MODULE_PARM_DESC(enable, "Enable " CARD_NAME " soundcard.");
51
52/*
53 */
54
Takashi Iwaidb131542005-11-17 15:07:38 +010055static struct snd_card *card_list[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/*
58 * prototypes
59 */
60static void pdacf_config(dev_link_t *link);
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +010061static void snd_pdacf_detach(struct pcmcia_device *p_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63static void pdacf_release(dev_link_t *link)
64{
Dominik Brodowski5f2a71f2006-01-15 09:32:39 +010065 pcmcia_disable_device(link->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68/*
69 * destructor
70 */
Takashi Iwaidb131542005-11-17 15:07:38 +010071static int snd_pdacf_free(struct snd_pdacf *pdacf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Dominik Brodowskifd238232006-03-05 10:45:09 +010073 dev_link_t *link = pdacf->p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 pdacf_release(link);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 card_list[pdacf->index] = NULL;
78 pdacf->card = NULL;
79
80 kfree(pdacf);
81 return 0;
82}
83
Takashi Iwaidb131542005-11-17 15:07:38 +010084static int snd_pdacf_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Takashi Iwaidb131542005-11-17 15:07:38 +010086 struct snd_pdacf *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return snd_pdacf_free(chip);
88}
89
90/*
91 * snd_pdacf_attach - attach callback for cs
92 */
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +010093static int snd_pdacf_attach(struct pcmcia_device *p_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +010095 int i;
96 dev_link_t *link; /* Info for cardmgr */
Takashi Iwaidb131542005-11-17 15:07:38 +010097 struct snd_pdacf *pdacf;
98 struct snd_card *card;
99 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 .dev_free = snd_pdacf_dev_free,
101 };
102
Dominik Brodowskifd238232006-03-05 10:45:09 +0100103 link = dev_to_instance(p_dev);
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 snd_printdd(KERN_DEBUG "pdacf_attach called\n");
106 /* find an empty slot from the card list */
107 for (i = 0; i < SNDRV_CARDS; i++) {
108 if (! card_list[i])
109 break;
110 }
111 if (i >= SNDRV_CARDS) {
112 snd_printk(KERN_ERR "pdacf: too many cards found\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100113 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115 if (! enable[i])
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100116 return -ENODEV; /* disabled explicitly */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 /* ok, create a card instance */
119 card = snd_card_new(index[i], id[i], THIS_MODULE, 0);
120 if (card == NULL) {
121 snd_printk(KERN_ERR "pdacf: cannot create a card instance\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100122 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124
125 pdacf = snd_pdacf_create(card);
126 if (! pdacf)
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100127 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 if (snd_device_new(card, SNDRV_DEV_LOWLEVEL, pdacf, &ops) < 0) {
130 kfree(pdacf);
131 snd_card_free(card);
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100132 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134
135 pdacf->index = i;
136 card_list[i] = card;
137
Dominik Brodowskifd238232006-03-05 10:45:09 +0100138 pdacf->p_dev = p_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 link->priv = pdacf;
140
141 link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
142 link->io.NumPorts1 = 16;
143
144 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT | IRQ_FORCED_PULSE;
145 // link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
146
147 link->irq.IRQInfo1 = 0 /* | IRQ_LEVEL_ID */;
148 link->irq.Handler = pdacf_interrupt;
149 link->irq.Instance = pdacf;
150 link->conf.Attributes = CONF_ENABLE_IRQ;
151 link->conf.IntType = INT_MEMORY_AND_IO;
152 link->conf.ConfigIndex = 1;
153 link->conf.Present = PRESENT_OPTION;
154
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100155 pdacf_config(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160
161/**
162 * snd_pdacf_assign_resources - initialize the hardware and card instance.
163 * @port: i/o port for the card
164 * @irq: irq number for the card
165 *
166 * this function assigns the specified port and irq, boot the card,
167 * create pcm and control instances, and initialize the rest hardware.
168 *
169 * returns 0 if successful, or a negative error code.
170 */
Takashi Iwaidb131542005-11-17 15:07:38 +0100171static int snd_pdacf_assign_resources(struct snd_pdacf *pdacf, int port, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 int err;
Takashi Iwaidb131542005-11-17 15:07:38 +0100174 struct snd_card *card = pdacf->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 snd_printdd(KERN_DEBUG "pdacf assign resources: port = 0x%x, irq = %d\n", port, irq);
177 pdacf->port = port;
178 pdacf->irq = irq;
179 pdacf->chip_status |= PDAUDIOCF_STAT_IS_CONFIGURED;
180
181 err = snd_pdacf_ak4117_create(pdacf);
182 if (err < 0)
183 return err;
184
185 strcpy(card->driver, "PDAudio-CF");
186 sprintf(card->shortname, "Core Sound %s", card->driver);
187 sprintf(card->longname, "%s at 0x%x, irq %i",
188 card->shortname, port, irq);
189
190 err = snd_pdacf_pcm_new(pdacf);
191 if (err < 0)
192 return err;
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if ((err = snd_card_register(card)) < 0)
195 return err;
196
197 return 0;
198}
199
200
201/*
202 * snd_pdacf_detach - detach callback for cs
203 */
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100204static void snd_pdacf_detach(struct pcmcia_device *p_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100206 dev_link_t *link = dev_to_instance(p_dev);
Takashi Iwaidb131542005-11-17 15:07:38 +0100207 struct snd_pdacf *chip = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 snd_printdd(KERN_DEBUG "pdacf_detach called\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (chip->chip_status & PDAUDIOCF_STAT_IS_CONFIGURED)
212 snd_pdacf_powerdown(chip);
213 chip->chip_status |= PDAUDIOCF_STAT_IS_STALE; /* to be sure */
214 snd_card_disconnect(chip->card);
215 snd_card_free_in_thread(chip->card);
216}
217
218/*
219 * configuration callback
220 */
221
222#define CS_CHECK(fn, ret) \
223do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
224
225static void pdacf_config(dev_link_t *link)
226{
227 client_handle_t handle = link->handle;
Takashi Iwaidb131542005-11-17 15:07:38 +0100228 struct snd_pdacf *pdacf = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 tuple_t tuple;
230 cisparse_t *parse = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 u_short buf[32];
232 int last_fn, last_ret;
233
234 snd_printdd(KERN_DEBUG "pdacf_config called\n");
235 parse = kmalloc(sizeof(*parse), GFP_KERNEL);
236 if (! parse) {
237 snd_printk(KERN_ERR "pdacf_config: cannot allocate\n");
238 return;
239 }
240 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
241 tuple.Attributes = 0;
242 tuple.TupleData = (cisdata_t *)buf;
243 tuple.TupleDataMax = sizeof(buf);
244 tuple.TupleOffset = 0;
245 tuple.DesiredTuple = CISTPL_CONFIG;
246 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple));
247 CS_CHECK(GetTupleData, pcmcia_get_tuple_data(handle, &tuple));
248 CS_CHECK(ParseTuple, pcmcia_parse_tuple(handle, &tuple, parse));
249 link->conf.ConfigBase = parse->config.base;
250 link->conf.ConfigIndex = 0x5;
251 kfree(parse);
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* Configure card */
254 link->state |= DEV_CONFIG;
255
256 CS_CHECK(RequestIO, pcmcia_request_io(handle, &link->io));
257 CS_CHECK(RequestIRQ, pcmcia_request_irq(link->handle, &link->irq));
258 CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link->handle, &link->conf));
259
260 if (snd_pdacf_assign_resources(pdacf, link->io.BasePort1, link->irq.AssignedIRQ) < 0)
261 goto failed;
262
Dominik Brodowskifd238232006-03-05 10:45:09 +0100263 link->dev_node = &pdacf->node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 link->state &= ~DEV_CONFIG_PENDING;
265 return;
266
267cs_failed:
268 cs_error(link->handle, last_fn, last_ret);
269failed:
Dominik Brodowski50db3fd2006-01-15 10:05:19 +0100270 pcmcia_disable_device(link->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100273#ifdef CONFIG_PM
274
275static int pdacf_suspend(struct pcmcia_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100277 dev_link_t *link = dev_to_instance(dev);
Takashi Iwaidb131542005-11-17 15:07:38 +0100278 struct snd_pdacf *chip = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100280 snd_printdd(KERN_DEBUG "SUSPEND\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100281 if (chip) {
282 snd_printdd(KERN_DEBUG "snd_pdacf_suspend calling\n");
283 snd_pdacf_suspend(chip, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return 0;
287}
288
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100289static int pdacf_resume(struct pcmcia_device *dev)
290{
291 dev_link_t *link = dev_to_instance(dev);
292 struct snd_pdacf *chip = link->priv;
293
294 snd_printdd(KERN_DEBUG "RESUME\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100295 if (DEV_OK(link)) {
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100296 if (chip) {
297 snd_printdd(KERN_DEBUG "calling snd_pdacf_resume\n");
298 snd_pdacf_resume(chip);
299 }
300 }
301 snd_printdd(KERN_DEBUG "resume done!\n");
302
303 return 0;
304}
305
306#endif
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/*
309 * Module entry points
310 */
Dominik Brodowskia4ed3592005-06-27 16:28:42 -0700311static struct pcmcia_device_id snd_pdacf_ids[] = {
312 PCMCIA_DEVICE_MANF_CARD(0x015d, 0x4c45),
313 PCMCIA_DEVICE_NULL
314};
315MODULE_DEVICE_TABLE(pcmcia, snd_pdacf_ids);
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317static struct pcmcia_driver pdacf_cs_driver = {
Dominik Brodowski1e212f32005-07-07 17:59:00 -0700318 .owner = THIS_MODULE,
319 .drv = {
320 .name = "snd-pdaudiocf",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 },
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100322 .probe = snd_pdacf_attach,
323 .remove = snd_pdacf_detach,
Dominik Brodowskia4ed3592005-06-27 16:28:42 -0700324 .id_table = snd_pdacf_ids,
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100325#ifdef CONFIG_PM
326 .suspend = pdacf_suspend,
327 .resume = pdacf_resume,
328#endif
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330};
331
332static int __init init_pdacf(void)
333{
334 return pcmcia_register_driver(&pdacf_cs_driver);
335}
336
337static void __exit exit_pdacf(void)
338{
339 pcmcia_unregister_driver(&pdacf_cs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342module_init(init_pdacf);
343module_exit(exit_pdacf);