pdaudiocf.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. /*
  2. * Driver for Sound Core PDAudioCF soundcard
  3. *
  4. * Copyright (c) 2003 by Jaroslav Kysela <perex@perex.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. #include <sound/core.h>
  21. #include <linux/slab.h>
  22. #include <linux/moduleparam.h>
  23. #include <pcmcia/ciscode.h>
  24. #include <pcmcia/cisreg.h>
  25. #include "pdaudiocf.h"
  26. #include <sound/initval.h>
  27. #include <linux/init.h>
  28. /*
  29. */
  30. #define CARD_NAME "PDAudio-CF"
  31. MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
  32. MODULE_DESCRIPTION("Sound Core " CARD_NAME);
  33. MODULE_LICENSE("GPL");
  34. MODULE_SUPPORTED_DEVICE("{{Sound Core," CARD_NAME "}}");
  35. static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
  36. static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
  37. static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable switches */
  38. module_param_array(index, int, NULL, 0444);
  39. MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
  40. module_param_array(id, charp, NULL, 0444);
  41. MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
  42. module_param_array(enable, bool, NULL, 0444);
  43. MODULE_PARM_DESC(enable, "Enable " CARD_NAME " soundcard.");
  44. /*
  45. */
  46. static struct snd_card *card_list[SNDRV_CARDS];
  47. /*
  48. * prototypes
  49. */
  50. static int pdacf_config(struct pcmcia_device *link);
  51. static void snd_pdacf_detach(struct pcmcia_device *p_dev);
  52. static void pdacf_release(struct pcmcia_device *link)
  53. {
  54. pcmcia_disable_device(link);
  55. }
  56. /*
  57. * destructor
  58. */
  59. static int snd_pdacf_free(struct snd_pdacf *pdacf)
  60. {
  61. struct pcmcia_device *link = pdacf->p_dev;
  62. pdacf_release(link);
  63. card_list[pdacf->index] = NULL;
  64. pdacf->card = NULL;
  65. kfree(pdacf);
  66. return 0;
  67. }
  68. static int snd_pdacf_dev_free(struct snd_device *device)
  69. {
  70. struct snd_pdacf *chip = device->device_data;
  71. return snd_pdacf_free(chip);
  72. }
  73. /*
  74. * snd_pdacf_attach - attach callback for cs
  75. */
  76. static int snd_pdacf_probe(struct pcmcia_device *link)
  77. {
  78. int i, err;
  79. struct snd_pdacf *pdacf;
  80. struct snd_card *card;
  81. static struct snd_device_ops ops = {
  82. .dev_free = snd_pdacf_dev_free,
  83. };
  84. snd_printdd(KERN_DEBUG "pdacf_attach called\n");
  85. /* find an empty slot from the card list */
  86. for (i = 0; i < SNDRV_CARDS; i++) {
  87. if (! card_list[i])
  88. break;
  89. }
  90. if (i >= SNDRV_CARDS) {
  91. snd_printk(KERN_ERR "pdacf: too many cards found\n");
  92. return -EINVAL;
  93. }
  94. if (! enable[i])
  95. return -ENODEV; /* disabled explicitly */
  96. /* ok, create a card instance */
  97. err = snd_card_create(index[i], id[i], THIS_MODULE, 0, &card);
  98. if (err < 0) {
  99. snd_printk(KERN_ERR "pdacf: cannot create a card instance\n");
  100. return err;
  101. }
  102. pdacf = snd_pdacf_create(card);
  103. if (!pdacf) {
  104. snd_card_free(card);
  105. return -ENOMEM;
  106. }
  107. err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, pdacf, &ops);
  108. if (err < 0) {
  109. kfree(pdacf);
  110. snd_card_free(card);
  111. return err;
  112. }
  113. snd_card_set_dev(card, &link->dev);
  114. pdacf->index = i;
  115. card_list[i] = card;
  116. pdacf->p_dev = link;
  117. link->priv = pdacf;
  118. link->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO;
  119. link->resource[0]->end = 16;
  120. link->config_flags = CONF_ENABLE_IRQ | CONF_ENABLE_PULSE_IRQ;
  121. link->config_index = 1;
  122. link->config_regs = PRESENT_OPTION;
  123. return pdacf_config(link);
  124. }
  125. /**
  126. * snd_pdacf_assign_resources - initialize the hardware and card instance.
  127. * @port: i/o port for the card
  128. * @irq: irq number for the card
  129. *
  130. * this function assigns the specified port and irq, boot the card,
  131. * create pcm and control instances, and initialize the rest hardware.
  132. *
  133. * returns 0 if successful, or a negative error code.
  134. */
  135. static int snd_pdacf_assign_resources(struct snd_pdacf *pdacf, int port, int irq)
  136. {
  137. int err;
  138. struct snd_card *card = pdacf->card;
  139. snd_printdd(KERN_DEBUG "pdacf assign resources: port = 0x%x, irq = %d\n", port, irq);
  140. pdacf->port = port;
  141. pdacf->irq = irq;
  142. pdacf->chip_status |= PDAUDIOCF_STAT_IS_CONFIGURED;
  143. err = snd_pdacf_ak4117_create(pdacf);
  144. if (err < 0)
  145. return err;
  146. strcpy(card->driver, "PDAudio-CF");
  147. sprintf(card->shortname, "Core Sound %s", card->driver);
  148. sprintf(card->longname, "%s at 0x%x, irq %i",
  149. card->shortname, port, irq);
  150. err = snd_pdacf_pcm_new(pdacf);
  151. if (err < 0)
  152. return err;
  153. if ((err = snd_card_register(card)) < 0)
  154. return err;
  155. return 0;
  156. }
  157. /*
  158. * snd_pdacf_detach - detach callback for cs
  159. */
  160. static void snd_pdacf_detach(struct pcmcia_device *link)
  161. {
  162. struct snd_pdacf *chip = link->priv;
  163. snd_printdd(KERN_DEBUG "pdacf_detach called\n");
  164. if (chip->chip_status & PDAUDIOCF_STAT_IS_CONFIGURED)
  165. snd_pdacf_powerdown(chip);
  166. chip->chip_status |= PDAUDIOCF_STAT_IS_STALE; /* to be sure */
  167. snd_card_disconnect(chip->card);
  168. snd_card_free_when_closed(chip->card);
  169. }
  170. /*
  171. * configuration callback
  172. */
  173. static int pdacf_config(struct pcmcia_device *link)
  174. {
  175. struct snd_pdacf *pdacf = link->priv;
  176. int ret;
  177. snd_printdd(KERN_DEBUG "pdacf_config called\n");
  178. link->config_index = 0x5;
  179. link->config_flags |= CONF_ENABLE_IRQ | CONF_ENABLE_PULSE_IRQ;
  180. ret = pcmcia_request_io(link);
  181. if (ret)
  182. goto failed;
  183. ret = pcmcia_request_exclusive_irq(link, pdacf_interrupt);
  184. if (ret)
  185. goto failed;
  186. ret = pcmcia_enable_device(link);
  187. if (ret)
  188. goto failed;
  189. if (snd_pdacf_assign_resources(pdacf, link->resource[0]->start,
  190. link->irq) < 0)
  191. goto failed;
  192. return 0;
  193. failed:
  194. pcmcia_disable_device(link);
  195. return -ENODEV;
  196. }
  197. #ifdef CONFIG_PM
  198. static int pdacf_suspend(struct pcmcia_device *link)
  199. {
  200. struct snd_pdacf *chip = link->priv;
  201. snd_printdd(KERN_DEBUG "SUSPEND\n");
  202. if (chip) {
  203. snd_printdd(KERN_DEBUG "snd_pdacf_suspend calling\n");
  204. snd_pdacf_suspend(chip, PMSG_SUSPEND);
  205. }
  206. return 0;
  207. }
  208. static int pdacf_resume(struct pcmcia_device *link)
  209. {
  210. struct snd_pdacf *chip = link->priv;
  211. snd_printdd(KERN_DEBUG "RESUME\n");
  212. if (pcmcia_dev_present(link)) {
  213. if (chip) {
  214. snd_printdd(KERN_DEBUG "calling snd_pdacf_resume\n");
  215. snd_pdacf_resume(chip);
  216. }
  217. }
  218. snd_printdd(KERN_DEBUG "resume done!\n");
  219. return 0;
  220. }
  221. #endif
  222. /*
  223. * Module entry points
  224. */
  225. static const struct pcmcia_device_id snd_pdacf_ids[] = {
  226. /* this is too general PCMCIA_DEVICE_MANF_CARD(0x015d, 0x4c45), */
  227. PCMCIA_DEVICE_PROD_ID12("Core Sound","PDAudio-CF",0x396d19d2,0x71717b49),
  228. PCMCIA_DEVICE_NULL
  229. };
  230. MODULE_DEVICE_TABLE(pcmcia, snd_pdacf_ids);
  231. static struct pcmcia_driver pdacf_cs_driver = {
  232. .owner = THIS_MODULE,
  233. .name = "snd-pdaudiocf",
  234. .probe = snd_pdacf_probe,
  235. .remove = snd_pdacf_detach,
  236. .id_table = snd_pdacf_ids,
  237. #ifdef CONFIG_PM
  238. .suspend = pdacf_suspend,
  239. .resume = pdacf_resume,
  240. #endif
  241. };
  242. static int __init init_pdacf(void)
  243. {
  244. return pcmcia_register_driver(&pdacf_cs_driver);
  245. }
  246. static void __exit exit_pdacf(void)
  247. {
  248. pcmcia_unregister_driver(&pdacf_cs_driver);
  249. }
  250. module_init(init_pdacf);
  251. module_exit(exit_pdacf);