blob: 5f5bbea8c39a378a2a3469156f517ae348a2a89b [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
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
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020036MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070037MODULE_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 */
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020060static int pdacf_config(struct pcmcia_device *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
Dominik Brodowskifba395e2006-03-31 17:21:06 +020063static void pdacf_release(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Dominik Brodowskifba395e2006-03-31 17:21:06 +020065 pcmcia_disable_device(link);
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 Brodowskifba395e2006-03-31 17:21:06 +020073 struct pcmcia_device *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 Brodowski15b99ac2006-03-31 17:26:06 +020093static int snd_pdacf_probe(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +010095 int i;
Takashi Iwaidb131542005-11-17 15:07:38 +010096 struct snd_pdacf *pdacf;
97 struct snd_card *card;
98 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 .dev_free = snd_pdacf_dev_free,
100 };
101
102 snd_printdd(KERN_DEBUG "pdacf_attach called\n");
103 /* find an empty slot from the card list */
104 for (i = 0; i < SNDRV_CARDS; i++) {
105 if (! card_list[i])
106 break;
107 }
108 if (i >= SNDRV_CARDS) {
109 snd_printk(KERN_ERR "pdacf: too many cards found\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100110 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112 if (! enable[i])
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100113 return -ENODEV; /* disabled explicitly */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 /* ok, create a card instance */
116 card = snd_card_new(index[i], id[i], THIS_MODULE, 0);
117 if (card == NULL) {
118 snd_printk(KERN_ERR "pdacf: cannot create a card instance\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100119 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121
122 pdacf = snd_pdacf_create(card);
123 if (! pdacf)
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100124 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 if (snd_device_new(card, SNDRV_DEV_LOWLEVEL, pdacf, &ops) < 0) {
127 kfree(pdacf);
128 snd_card_free(card);
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100129 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
Takashi Iwaif78dfac2007-12-17 16:24:04 +0100132 snd_card_set_dev(card, &handle_to_dev(link));
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 pdacf->index = i;
135 card_list[i] = card;
136
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200137 pdacf->p_dev = link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 link->priv = pdacf;
139
140 link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
141 link->io.NumPorts1 = 16;
142
143 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT | IRQ_FORCED_PULSE;
144 // link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
145
146 link->irq.IRQInfo1 = 0 /* | IRQ_LEVEL_ID */;
147 link->irq.Handler = pdacf_interrupt;
148 link->irq.Instance = pdacf;
149 link->conf.Attributes = CONF_ENABLE_IRQ;
150 link->conf.IntType = INT_MEMORY_AND_IO;
151 link->conf.ConfigIndex = 1;
152 link->conf.Present = PRESENT_OPTION;
153
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200154 return pdacf_config(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
157
158/**
159 * snd_pdacf_assign_resources - initialize the hardware and card instance.
160 * @port: i/o port for the card
161 * @irq: irq number for the card
162 *
163 * this function assigns the specified port and irq, boot the card,
164 * create pcm and control instances, and initialize the rest hardware.
165 *
166 * returns 0 if successful, or a negative error code.
167 */
Takashi Iwaidb131542005-11-17 15:07:38 +0100168static int snd_pdacf_assign_resources(struct snd_pdacf *pdacf, int port, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 int err;
Takashi Iwaidb131542005-11-17 15:07:38 +0100171 struct snd_card *card = pdacf->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 snd_printdd(KERN_DEBUG "pdacf assign resources: port = 0x%x, irq = %d\n", port, irq);
174 pdacf->port = port;
175 pdacf->irq = irq;
176 pdacf->chip_status |= PDAUDIOCF_STAT_IS_CONFIGURED;
177
178 err = snd_pdacf_ak4117_create(pdacf);
179 if (err < 0)
180 return err;
181
182 strcpy(card->driver, "PDAudio-CF");
183 sprintf(card->shortname, "Core Sound %s", card->driver);
184 sprintf(card->longname, "%s at 0x%x, irq %i",
185 card->shortname, port, irq);
186
187 err = snd_pdacf_pcm_new(pdacf);
188 if (err < 0)
189 return err;
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if ((err = snd_card_register(card)) < 0)
192 return err;
193
194 return 0;
195}
196
197
198/*
199 * snd_pdacf_detach - detach callback for cs
200 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200201static void snd_pdacf_detach(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Takashi Iwaidb131542005-11-17 15:07:38 +0100203 struct snd_pdacf *chip = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 snd_printdd(KERN_DEBUG "pdacf_detach called\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (chip->chip_status & PDAUDIOCF_STAT_IS_CONFIGURED)
208 snd_pdacf_powerdown(chip);
209 chip->chip_status |= PDAUDIOCF_STAT_IS_STALE; /* to be sure */
210 snd_card_disconnect(chip->card);
Takashi Iwai2b29b132006-06-23 14:38:26 +0200211 snd_card_free_when_closed(chip->card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214/*
215 * configuration callback
216 */
217
218#define CS_CHECK(fn, ret) \
219do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
220
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200221static int pdacf_config(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Takashi Iwaidb131542005-11-17 15:07:38 +0100223 struct snd_pdacf *pdacf = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 int last_fn, last_ret;
225
226 snd_printdd(KERN_DEBUG "pdacf_config called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 link->conf.ConfigIndex = 0x5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200229 CS_CHECK(RequestIO, pcmcia_request_io(link, &link->io));
230 CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq));
231 CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link, &link->conf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 if (snd_pdacf_assign_resources(pdacf, link->io.BasePort1, link->irq.AssignedIRQ) < 0)
234 goto failed;
235
Dominik Brodowskifd238232006-03-05 10:45:09 +0100236 link->dev_node = &pdacf->node;
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239cs_failed:
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200240 cs_error(link, last_fn, last_ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241failed:
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200242 pcmcia_disable_device(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200243 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100246#ifdef CONFIG_PM
247
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200248static int pdacf_suspend(struct pcmcia_device *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Takashi Iwaidb131542005-11-17 15:07:38 +0100250 struct snd_pdacf *chip = link->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100252 snd_printdd(KERN_DEBUG "SUSPEND\n");
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100253 if (chip) {
254 snd_printdd(KERN_DEBUG "snd_pdacf_suspend calling\n");
255 snd_pdacf_suspend(chip, PMSG_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return 0;
259}
260
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200261static int pdacf_resume(struct pcmcia_device *link)
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100262{
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100263 struct snd_pdacf *chip = link->priv;
264
265 snd_printdd(KERN_DEBUG "RESUME\n");
Dominik Brodowski9940ec32006-03-05 11:04:33 +0100266 if (pcmcia_dev_present(link)) {
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100267 if (chip) {
268 snd_printdd(KERN_DEBUG "calling snd_pdacf_resume\n");
269 snd_pdacf_resume(chip);
270 }
271 }
272 snd_printdd(KERN_DEBUG "resume done!\n");
273
274 return 0;
275}
276
277#endif
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279/*
280 * Module entry points
281 */
Dominik Brodowskia4ed3592005-06-27 16:28:42 -0700282static struct pcmcia_device_id snd_pdacf_ids[] = {
Tony Olech44e5e332006-11-29 08:54:51 +0000283 /* this is too general PCMCIA_DEVICE_MANF_CARD(0x015d, 0x4c45), */
284 PCMCIA_DEVICE_PROD_ID12("Core Sound","PDAudio-CF",0x396d19d2,0x71717b49),
Dominik Brodowskia4ed3592005-06-27 16:28:42 -0700285 PCMCIA_DEVICE_NULL
286};
287MODULE_DEVICE_TABLE(pcmcia, snd_pdacf_ids);
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289static struct pcmcia_driver pdacf_cs_driver = {
Dominik Brodowski1e212f32005-07-07 17:59:00 -0700290 .owner = THIS_MODULE,
291 .drv = {
292 .name = "snd-pdaudiocf",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200294 .probe = snd_pdacf_probe,
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100295 .remove = snd_pdacf_detach,
Dominik Brodowskia4ed3592005-06-27 16:28:42 -0700296 .id_table = snd_pdacf_ids,
Dominik Brodowskiefe3cd12006-01-06 00:27:16 +0100297#ifdef CONFIG_PM
298 .suspend = pdacf_suspend,
299 .resume = pdacf_resume,
300#endif
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
304static int __init init_pdacf(void)
305{
306 return pcmcia_register_driver(&pdacf_cs_driver);
307}
308
309static void __exit exit_pdacf(void)
310{
311 pcmcia_unregister_driver(&pdacf_cs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314module_init(init_pdacf);
315module_exit(exit_pdacf);