pdaudiocf.c 6.5 KB

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