Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #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 | |
| 36 | MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>"); |
| 37 | MODULE_DESCRIPTION("Sound Core " CARD_NAME); |
| 38 | MODULE_LICENSE("GPL"); |
| 39 | MODULE_SUPPORTED_DEVICE("{{Sound Core," CARD_NAME "}}"); |
| 40 | |
| 41 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
| 42 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
| 43 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable switches */ |
| 44 | |
| 45 | module_param_array(index, int, NULL, 0444); |
| 46 | MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard."); |
| 47 | module_param_array(id, charp, NULL, 0444); |
| 48 | MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard."); |
| 49 | module_param_array(enable, bool, NULL, 0444); |
| 50 | MODULE_PARM_DESC(enable, "Enable " CARD_NAME " soundcard."); |
| 51 | |
| 52 | /* |
| 53 | */ |
| 54 | |
Takashi Iwai | db13154 | 2005-11-17 15:07:38 +0100 | [diff] [blame] | 55 | static struct snd_card *card_list[SNDRV_CARDS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | /* |
| 58 | * prototypes |
| 59 | */ |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 60 | static int pdacf_config(struct pcmcia_device *link); |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 61 | static void snd_pdacf_detach(struct pcmcia_device *p_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 63 | static void pdacf_release(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 65 | pcmcia_disable_device(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | /* |
| 69 | * destructor |
| 70 | */ |
Takashi Iwai | db13154 | 2005-11-17 15:07:38 +0100 | [diff] [blame] | 71 | static int snd_pdacf_free(struct snd_pdacf *pdacf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 73 | struct pcmcia_device *link = pdacf->p_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | pdacf_release(link); |
| 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | card_list[pdacf->index] = NULL; |
| 78 | pdacf->card = NULL; |
| 79 | |
| 80 | kfree(pdacf); |
| 81 | return 0; |
| 82 | } |
| 83 | |
Takashi Iwai | db13154 | 2005-11-17 15:07:38 +0100 | [diff] [blame] | 84 | static int snd_pdacf_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | { |
Takashi Iwai | db13154 | 2005-11-17 15:07:38 +0100 | [diff] [blame] | 86 | struct snd_pdacf *chip = device->device_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | return snd_pdacf_free(chip); |
| 88 | } |
| 89 | |
| 90 | /* |
| 91 | * snd_pdacf_attach - attach callback for cs |
| 92 | */ |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 93 | static int snd_pdacf_probe(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | { |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 95 | int i; |
Takashi Iwai | db13154 | 2005-11-17 15:07:38 +0100 | [diff] [blame] | 96 | struct snd_pdacf *pdacf; |
| 97 | struct snd_card *card; |
| 98 | static struct snd_device_ops ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | .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 Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 110 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } |
| 112 | if (! enable[i]) |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 113 | return -ENODEV; /* disabled explicitly */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
| 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 Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 119 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | pdacf = snd_pdacf_create(card); |
| 123 | if (! pdacf) |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 124 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
| 126 | if (snd_device_new(card, SNDRV_DEV_LOWLEVEL, pdacf, &ops) < 0) { |
| 127 | kfree(pdacf); |
| 128 | snd_card_free(card); |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 129 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | pdacf->index = i; |
| 133 | card_list[i] = card; |
| 134 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 135 | pdacf->p_dev = link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | link->priv = pdacf; |
| 137 | |
| 138 | link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO; |
| 139 | link->io.NumPorts1 = 16; |
| 140 | |
| 141 | link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT | IRQ_FORCED_PULSE; |
| 142 | // link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED; |
| 143 | |
| 144 | link->irq.IRQInfo1 = 0 /* | IRQ_LEVEL_ID */; |
| 145 | link->irq.Handler = pdacf_interrupt; |
| 146 | link->irq.Instance = pdacf; |
| 147 | link->conf.Attributes = CONF_ENABLE_IRQ; |
| 148 | link->conf.IntType = INT_MEMORY_AND_IO; |
| 149 | link->conf.ConfigIndex = 1; |
| 150 | link->conf.Present = PRESENT_OPTION; |
| 151 | |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 152 | return pdacf_config(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | |
| 156 | /** |
| 157 | * snd_pdacf_assign_resources - initialize the hardware and card instance. |
| 158 | * @port: i/o port for the card |
| 159 | * @irq: irq number for the card |
| 160 | * |
| 161 | * this function assigns the specified port and irq, boot the card, |
| 162 | * create pcm and control instances, and initialize the rest hardware. |
| 163 | * |
| 164 | * returns 0 if successful, or a negative error code. |
| 165 | */ |
Takashi Iwai | db13154 | 2005-11-17 15:07:38 +0100 | [diff] [blame] | 166 | static int snd_pdacf_assign_resources(struct snd_pdacf *pdacf, int port, int irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
| 168 | int err; |
Takashi Iwai | db13154 | 2005-11-17 15:07:38 +0100 | [diff] [blame] | 169 | struct snd_card *card = pdacf->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
| 171 | snd_printdd(KERN_DEBUG "pdacf assign resources: port = 0x%x, irq = %d\n", port, irq); |
| 172 | pdacf->port = port; |
| 173 | pdacf->irq = irq; |
| 174 | pdacf->chip_status |= PDAUDIOCF_STAT_IS_CONFIGURED; |
| 175 | |
| 176 | err = snd_pdacf_ak4117_create(pdacf); |
| 177 | if (err < 0) |
| 178 | return err; |
| 179 | |
| 180 | strcpy(card->driver, "PDAudio-CF"); |
| 181 | sprintf(card->shortname, "Core Sound %s", card->driver); |
| 182 | sprintf(card->longname, "%s at 0x%x, irq %i", |
| 183 | card->shortname, port, irq); |
| 184 | |
| 185 | err = snd_pdacf_pcm_new(pdacf); |
| 186 | if (err < 0) |
| 187 | return err; |
| 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | if ((err = snd_card_register(card)) < 0) |
| 190 | return err; |
| 191 | |
| 192 | return 0; |
| 193 | } |
| 194 | |
| 195 | |
| 196 | /* |
| 197 | * snd_pdacf_detach - detach callback for cs |
| 198 | */ |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 199 | static void snd_pdacf_detach(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
Takashi Iwai | db13154 | 2005-11-17 15:07:38 +0100 | [diff] [blame] | 201 | struct snd_pdacf *chip = link->priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
| 203 | snd_printdd(KERN_DEBUG "pdacf_detach called\n"); |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | if (chip->chip_status & PDAUDIOCF_STAT_IS_CONFIGURED) |
| 206 | snd_pdacf_powerdown(chip); |
| 207 | chip->chip_status |= PDAUDIOCF_STAT_IS_STALE; /* to be sure */ |
| 208 | snd_card_disconnect(chip->card); |
Takashi Iwai | 2b29b13 | 2006-06-23 14:38:26 +0200 | [diff] [blame] | 209 | snd_card_free_when_closed(chip->card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | /* |
| 213 | * configuration callback |
| 214 | */ |
| 215 | |
| 216 | #define CS_CHECK(fn, ret) \ |
| 217 | do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0) |
| 218 | |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 219 | static int pdacf_config(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | { |
Takashi Iwai | db13154 | 2005-11-17 15:07:38 +0100 | [diff] [blame] | 221 | struct snd_pdacf *pdacf = link->priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | int last_fn, last_ret; |
| 223 | |
| 224 | snd_printdd(KERN_DEBUG "pdacf_config called\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | link->conf.ConfigIndex = 0x5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 227 | CS_CHECK(RequestIO, pcmcia_request_io(link, &link->io)); |
| 228 | CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq)); |
| 229 | CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link, &link->conf)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | if (snd_pdacf_assign_resources(pdacf, link->io.BasePort1, link->irq.AssignedIRQ) < 0) |
| 232 | goto failed; |
| 233 | |
Dominik Brodowski | fd23823 | 2006-03-05 10:45:09 +0100 | [diff] [blame] | 234 | link->dev_node = &pdacf->node; |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 235 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
| 237 | cs_failed: |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 238 | cs_error(link, last_fn, last_ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | failed: |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 240 | pcmcia_disable_device(link); |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 241 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | } |
| 243 | |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 244 | #ifdef CONFIG_PM |
| 245 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 246 | static int pdacf_suspend(struct pcmcia_device *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { |
Takashi Iwai | db13154 | 2005-11-17 15:07:38 +0100 | [diff] [blame] | 248 | struct snd_pdacf *chip = link->priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 250 | snd_printdd(KERN_DEBUG "SUSPEND\n"); |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 251 | if (chip) { |
| 252 | snd_printdd(KERN_DEBUG "snd_pdacf_suspend calling\n"); |
| 253 | snd_pdacf_suspend(chip, PMSG_SUSPEND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | } |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 255 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | return 0; |
| 257 | } |
| 258 | |
Dominik Brodowski | fba395e | 2006-03-31 17:21:06 +0200 | [diff] [blame] | 259 | static int pdacf_resume(struct pcmcia_device *link) |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 260 | { |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 261 | struct snd_pdacf *chip = link->priv; |
| 262 | |
| 263 | snd_printdd(KERN_DEBUG "RESUME\n"); |
Dominik Brodowski | 9940ec3 | 2006-03-05 11:04:33 +0100 | [diff] [blame] | 264 | if (pcmcia_dev_present(link)) { |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 265 | if (chip) { |
| 266 | snd_printdd(KERN_DEBUG "calling snd_pdacf_resume\n"); |
| 267 | snd_pdacf_resume(chip); |
| 268 | } |
| 269 | } |
| 270 | snd_printdd(KERN_DEBUG "resume done!\n"); |
| 271 | |
| 272 | return 0; |
| 273 | } |
| 274 | |
| 275 | #endif |
| 276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | /* |
| 278 | * Module entry points |
| 279 | */ |
Dominik Brodowski | a4ed359 | 2005-06-27 16:28:42 -0700 | [diff] [blame] | 280 | static struct pcmcia_device_id snd_pdacf_ids[] = { |
Tony Olech | 44e5e33 | 2006-11-29 08:54:51 +0000 | [diff] [blame] | 281 | /* this is too general PCMCIA_DEVICE_MANF_CARD(0x015d, 0x4c45), */ |
| 282 | PCMCIA_DEVICE_PROD_ID12("Core Sound","PDAudio-CF",0x396d19d2,0x71717b49), |
Dominik Brodowski | a4ed359 | 2005-06-27 16:28:42 -0700 | [diff] [blame] | 283 | PCMCIA_DEVICE_NULL |
| 284 | }; |
| 285 | MODULE_DEVICE_TABLE(pcmcia, snd_pdacf_ids); |
| 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | static struct pcmcia_driver pdacf_cs_driver = { |
Dominik Brodowski | 1e212f3 | 2005-07-07 17:59:00 -0700 | [diff] [blame] | 288 | .owner = THIS_MODULE, |
| 289 | .drv = { |
| 290 | .name = "snd-pdaudiocf", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | }, |
Dominik Brodowski | 15b99ac | 2006-03-31 17:26:06 +0200 | [diff] [blame] | 292 | .probe = snd_pdacf_probe, |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 293 | .remove = snd_pdacf_detach, |
Dominik Brodowski | a4ed359 | 2005-06-27 16:28:42 -0700 | [diff] [blame] | 294 | .id_table = snd_pdacf_ids, |
Dominik Brodowski | efe3cd1 | 2006-01-06 00:27:16 +0100 | [diff] [blame] | 295 | #ifdef CONFIG_PM |
| 296 | .suspend = pdacf_suspend, |
| 297 | .resume = pdacf_resume, |
| 298 | #endif |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | }; |
| 301 | |
| 302 | static int __init init_pdacf(void) |
| 303 | { |
| 304 | return pcmcia_register_driver(&pdacf_cs_driver); |
| 305 | } |
| 306 | |
| 307 | static void __exit exit_pdacf(void) |
| 308 | { |
| 309 | pcmcia_unregister_driver(&pdacf_cs_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | module_init(init_pdacf); |
| 313 | module_exit(exit_pdacf); |