2 * Driver for Sound Core PDAudioCF soundcard
4 * Copyright (c) 2003 by Jaroslav Kysela <perex@perex.cz>
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.
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.
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
21 #include <sound/core.h>
22 #include <linux/slab.h>
23 #include <linux/moduleparam.h>
24 #include <pcmcia/ciscode.h>
25 #include <pcmcia/cisreg.h>
26 #include "pdaudiocf.h"
27 #include <sound/initval.h>
28 #include <linux/init.h>
33 #define CARD_NAME "PDAudio-CF"
35 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
36 MODULE_DESCRIPTION("Sound Core " CARD_NAME
);
37 MODULE_LICENSE("GPL");
38 MODULE_SUPPORTED_DEVICE("{{Sound Core," CARD_NAME
"}}");
40 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
41 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
42 static int enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE_PNP
; /* Enable switches */
44 module_param_array(index
, int, NULL
, 0444);
45 MODULE_PARM_DESC(index
, "Index value for " CARD_NAME
" soundcard.");
46 module_param_array(id
, charp
, NULL
, 0444);
47 MODULE_PARM_DESC(id
, "ID string for " CARD_NAME
" soundcard.");
48 module_param_array(enable
, bool, NULL
, 0444);
49 MODULE_PARM_DESC(enable
, "Enable " CARD_NAME
" soundcard.");
54 static struct snd_card
*card_list
[SNDRV_CARDS
];
59 static int pdacf_config(struct pcmcia_device
*link
);
60 static void snd_pdacf_detach(struct pcmcia_device
*p_dev
);
62 static void pdacf_release(struct pcmcia_device
*link
)
64 pcmcia_disable_device(link
);
70 static int snd_pdacf_free(struct snd_pdacf
*pdacf
)
72 struct pcmcia_device
*link
= pdacf
->p_dev
;
76 card_list
[pdacf
->index
] = NULL
;
83 static int snd_pdacf_dev_free(struct snd_device
*device
)
85 struct snd_pdacf
*chip
= device
->device_data
;
86 return snd_pdacf_free(chip
);
90 * snd_pdacf_attach - attach callback for cs
92 static int snd_pdacf_probe(struct pcmcia_device
*link
)
95 struct snd_pdacf
*pdacf
;
96 struct snd_card
*card
;
97 static struct snd_device_ops ops
= {
98 .dev_free
= snd_pdacf_dev_free
,
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
++) {
107 if (i
>= SNDRV_CARDS
) {
108 snd_printk(KERN_ERR
"pdacf: too many cards found\n");
112 return -ENODEV
; /* disabled explicitly */
114 /* ok, create a card instance */
115 err
= snd_card_create(index
[i
], id
[i
], THIS_MODULE
, 0, &card
);
117 snd_printk(KERN_ERR
"pdacf: cannot create a card instance\n");
121 pdacf
= snd_pdacf_create(card
);
127 err
= snd_device_new(card
, SNDRV_DEV_LOWLEVEL
, pdacf
, &ops
);
134 snd_card_set_dev(card
, &link
->dev
);
142 link
->io
.Attributes1
= IO_DATA_PATH_WIDTH_AUTO
;
143 link
->io
.NumPorts1
= 16;
145 link
->irq
.Attributes
= IRQ_TYPE_EXCLUSIVE
| IRQ_FORCED_PULSE
;
146 // link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
148 link
->irq
.Handler
= pdacf_interrupt
;
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
;
154 return pdacf_config(link
);
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
163 * this function assigns the specified port and irq, boot the card,
164 * create pcm and control instances, and initialize the rest hardware.
166 * returns 0 if successful, or a negative error code.
168 static int snd_pdacf_assign_resources(struct snd_pdacf
*pdacf
, int port
, int irq
)
171 struct snd_card
*card
= pdacf
->card
;
173 snd_printdd(KERN_DEBUG
"pdacf assign resources: port = 0x%x, irq = %d\n", port
, irq
);
176 pdacf
->chip_status
|= PDAUDIOCF_STAT_IS_CONFIGURED
;
178 err
= snd_pdacf_ak4117_create(pdacf
);
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
);
187 err
= snd_pdacf_pcm_new(pdacf
);
191 if ((err
= snd_card_register(card
)) < 0)
199 * snd_pdacf_detach - detach callback for cs
201 static void snd_pdacf_detach(struct pcmcia_device
*link
)
203 struct snd_pdacf
*chip
= link
->priv
;
205 snd_printdd(KERN_DEBUG
"pdacf_detach called\n");
207 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
);
211 snd_card_free_when_closed(chip
->card
);
215 * configuration callback
218 static int pdacf_config(struct pcmcia_device
*link
)
220 struct snd_pdacf
*pdacf
= link
->priv
;
223 snd_printdd(KERN_DEBUG
"pdacf_config called\n");
224 link
->conf
.ConfigIndex
= 0x5;
226 ret
= pcmcia_request_io(link
, &link
->io
);
230 ret
= pcmcia_request_irq(link
, &link
->irq
);
234 ret
= pcmcia_request_configuration(link
, &link
->conf
);
238 if (snd_pdacf_assign_resources(pdacf
, link
->io
.BasePort1
, link
->irq
.AssignedIRQ
) < 0)
241 link
->dev_node
= &pdacf
->node
;
245 pcmcia_disable_device(link
);
251 static int pdacf_suspend(struct pcmcia_device
*link
)
253 struct snd_pdacf
*chip
= link
->priv
;
255 snd_printdd(KERN_DEBUG
"SUSPEND\n");
257 snd_printdd(KERN_DEBUG
"snd_pdacf_suspend calling\n");
258 snd_pdacf_suspend(chip
, PMSG_SUSPEND
);
264 static int pdacf_resume(struct pcmcia_device
*link
)
266 struct snd_pdacf
*chip
= link
->priv
;
268 snd_printdd(KERN_DEBUG
"RESUME\n");
269 if (pcmcia_dev_present(link
)) {
271 snd_printdd(KERN_DEBUG
"calling snd_pdacf_resume\n");
272 snd_pdacf_resume(chip
);
275 snd_printdd(KERN_DEBUG
"resume done!\n");
283 * Module entry points
285 static struct pcmcia_device_id snd_pdacf_ids
[] = {
286 /* this is too general PCMCIA_DEVICE_MANF_CARD(0x015d, 0x4c45), */
287 PCMCIA_DEVICE_PROD_ID12("Core Sound","PDAudio-CF",0x396d19d2,0x71717b49),
290 MODULE_DEVICE_TABLE(pcmcia
, snd_pdacf_ids
);
292 static struct pcmcia_driver pdacf_cs_driver
= {
293 .owner
= THIS_MODULE
,
295 .name
= "snd-pdaudiocf",
297 .probe
= snd_pdacf_probe
,
298 .remove
= snd_pdacf_detach
,
299 .id_table
= snd_pdacf_ids
,
301 .suspend
= pdacf_suspend
,
302 .resume
= pdacf_resume
,
307 static int __init
init_pdacf(void)
309 return pcmcia_register_driver(&pdacf_cs_driver
);
312 static void __exit
exit_pdacf(void)
314 pcmcia_unregister_driver(&pdacf_cs_driver
);
317 module_init(init_pdacf
);
318 module_exit(exit_pdacf
);