pdaudiocf.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  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. #include <sound/driver.h>
  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>
  29. /*
  30. */
  31. #define CARD_NAME "PDAudio-CF"
  32. MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
  33. MODULE_DESCRIPTION("Sound Core " CARD_NAME);
  34. MODULE_LICENSE("GPL");
  35. MODULE_SUPPORTED_DEVICE("{{Sound Core," CARD_NAME "}}");
  36. static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
  37. static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
  38. static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable switches */
  39. module_param_array(index, int, NULL, 0444);
  40. MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
  41. module_param_array(id, charp, NULL, 0444);
  42. MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
  43. module_param_array(enable, bool, NULL, 0444);
  44. MODULE_PARM_DESC(enable, "Enable " CARD_NAME " soundcard.");
  45. /*
  46. */
  47. static struct snd_card *card_list[SNDRV_CARDS];
  48. /*
  49. * prototypes
  50. */
  51. static void pdacf_config(dev_link_t *link);
  52. static void snd_pdacf_detach(struct pcmcia_device *p_dev);
  53. static void pdacf_release(dev_link_t *link)
  54. {
  55. pcmcia_disable_device(link->handle);
  56. }
  57. /*
  58. * destructor
  59. */
  60. static int snd_pdacf_free(struct snd_pdacf *pdacf)
  61. {
  62. dev_link_t *link = pdacf->p_dev;
  63. pdacf_release(link);
  64. card_list[pdacf->index] = NULL;
  65. pdacf->card = NULL;
  66. kfree(pdacf);
  67. return 0;
  68. }
  69. static int snd_pdacf_dev_free(struct snd_device *device)
  70. {
  71. struct snd_pdacf *chip = device->device_data;
  72. return snd_pdacf_free(chip);
  73. }
  74. /*
  75. * snd_pdacf_attach - attach callback for cs
  76. */
  77. static int snd_pdacf_attach(struct pcmcia_device *p_dev)
  78. {
  79. int i;
  80. dev_link_t *link; /* Info for cardmgr */
  81. struct snd_pdacf *pdacf;
  82. struct snd_card *card;
  83. static struct snd_device_ops ops = {
  84. .dev_free = snd_pdacf_dev_free,
  85. };
  86. link = dev_to_instance(p_dev);
  87. snd_printdd(KERN_DEBUG "pdacf_attach called\n");
  88. /* find an empty slot from the card list */
  89. for (i = 0; i < SNDRV_CARDS; i++) {
  90. if (! card_list[i])
  91. break;
  92. }
  93. if (i >= SNDRV_CARDS) {
  94. snd_printk(KERN_ERR "pdacf: too many cards found\n");
  95. return -EINVAL;
  96. }
  97. if (! enable[i])
  98. return -ENODEV; /* disabled explicitly */
  99. /* ok, create a card instance */
  100. card = snd_card_new(index[i], id[i], THIS_MODULE, 0);
  101. if (card == NULL) {
  102. snd_printk(KERN_ERR "pdacf: cannot create a card instance\n");
  103. return -ENOMEM;
  104. }
  105. pdacf = snd_pdacf_create(card);
  106. if (! pdacf)
  107. return -EIO;
  108. if (snd_device_new(card, SNDRV_DEV_LOWLEVEL, pdacf, &ops) < 0) {
  109. kfree(pdacf);
  110. snd_card_free(card);
  111. return -ENODEV;
  112. }
  113. pdacf->index = i;
  114. card_list[i] = card;
  115. pdacf->p_dev = p_dev;
  116. link->priv = pdacf;
  117. link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
  118. link->io.NumPorts1 = 16;
  119. link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT | IRQ_FORCED_PULSE;
  120. // link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
  121. link->irq.IRQInfo1 = 0 /* | IRQ_LEVEL_ID */;
  122. link->irq.Handler = pdacf_interrupt;
  123. link->irq.Instance = pdacf;
  124. link->conf.Attributes = CONF_ENABLE_IRQ;
  125. link->conf.IntType = INT_MEMORY_AND_IO;
  126. link->conf.ConfigIndex = 1;
  127. link->conf.Present = PRESENT_OPTION;
  128. pdacf_config(link);
  129. return 0;
  130. }
  131. /**
  132. * snd_pdacf_assign_resources - initialize the hardware and card instance.
  133. * @port: i/o port for the card
  134. * @irq: irq number for the card
  135. *
  136. * this function assigns the specified port and irq, boot the card,
  137. * create pcm and control instances, and initialize the rest hardware.
  138. *
  139. * returns 0 if successful, or a negative error code.
  140. */
  141. static int snd_pdacf_assign_resources(struct snd_pdacf *pdacf, int port, int irq)
  142. {
  143. int err;
  144. struct snd_card *card = pdacf->card;
  145. snd_printdd(KERN_DEBUG "pdacf assign resources: port = 0x%x, irq = %d\n", port, irq);
  146. pdacf->port = port;
  147. pdacf->irq = irq;
  148. pdacf->chip_status |= PDAUDIOCF_STAT_IS_CONFIGURED;
  149. err = snd_pdacf_ak4117_create(pdacf);
  150. if (err < 0)
  151. return err;
  152. strcpy(card->driver, "PDAudio-CF");
  153. sprintf(card->shortname, "Core Sound %s", card->driver);
  154. sprintf(card->longname, "%s at 0x%x, irq %i",
  155. card->shortname, port, irq);
  156. err = snd_pdacf_pcm_new(pdacf);
  157. if (err < 0)
  158. return err;
  159. if ((err = snd_card_register(card)) < 0)
  160. return err;
  161. return 0;
  162. }
  163. /*
  164. * snd_pdacf_detach - detach callback for cs
  165. */
  166. static void snd_pdacf_detach(struct pcmcia_device *p_dev)
  167. {
  168. dev_link_t *link = dev_to_instance(p_dev);
  169. struct snd_pdacf *chip = link->priv;
  170. snd_printdd(KERN_DEBUG "pdacf_detach called\n");
  171. if (chip->chip_status & PDAUDIOCF_STAT_IS_CONFIGURED)
  172. snd_pdacf_powerdown(chip);
  173. chip->chip_status |= PDAUDIOCF_STAT_IS_STALE; /* to be sure */
  174. snd_card_disconnect(chip->card);
  175. snd_card_free_in_thread(chip->card);
  176. }
  177. /*
  178. * configuration callback
  179. */
  180. #define CS_CHECK(fn, ret) \
  181. do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
  182. static void pdacf_config(dev_link_t *link)
  183. {
  184. client_handle_t handle = link->handle;
  185. struct snd_pdacf *pdacf = link->priv;
  186. tuple_t tuple;
  187. cisparse_t *parse = NULL;
  188. u_short buf[32];
  189. int last_fn, last_ret;
  190. snd_printdd(KERN_DEBUG "pdacf_config called\n");
  191. parse = kmalloc(sizeof(*parse), GFP_KERNEL);
  192. if (! parse) {
  193. snd_printk(KERN_ERR "pdacf_config: cannot allocate\n");
  194. return;
  195. }
  196. tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
  197. tuple.Attributes = 0;
  198. tuple.TupleData = (cisdata_t *)buf;
  199. tuple.TupleDataMax = sizeof(buf);
  200. tuple.TupleOffset = 0;
  201. tuple.DesiredTuple = CISTPL_CONFIG;
  202. CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple));
  203. CS_CHECK(GetTupleData, pcmcia_get_tuple_data(handle, &tuple));
  204. CS_CHECK(ParseTuple, pcmcia_parse_tuple(handle, &tuple, parse));
  205. link->conf.ConfigBase = parse->config.base;
  206. link->conf.ConfigIndex = 0x5;
  207. kfree(parse);
  208. /* Configure card */
  209. link->state |= DEV_CONFIG;
  210. CS_CHECK(RequestIO, pcmcia_request_io(handle, &link->io));
  211. CS_CHECK(RequestIRQ, pcmcia_request_irq(link->handle, &link->irq));
  212. CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link->handle, &link->conf));
  213. if (snd_pdacf_assign_resources(pdacf, link->io.BasePort1, link->irq.AssignedIRQ) < 0)
  214. goto failed;
  215. link->dev_node = &pdacf->node;
  216. link->state &= ~DEV_CONFIG_PENDING;
  217. return;
  218. cs_failed:
  219. cs_error(link->handle, last_fn, last_ret);
  220. failed:
  221. pcmcia_disable_device(link->handle);
  222. }
  223. #ifdef CONFIG_PM
  224. static int pdacf_suspend(struct pcmcia_device *dev)
  225. {
  226. dev_link_t *link = dev_to_instance(dev);
  227. struct snd_pdacf *chip = link->priv;
  228. snd_printdd(KERN_DEBUG "SUSPEND\n");
  229. if (chip) {
  230. snd_printdd(KERN_DEBUG "snd_pdacf_suspend calling\n");
  231. snd_pdacf_suspend(chip, PMSG_SUSPEND);
  232. }
  233. return 0;
  234. }
  235. static int pdacf_resume(struct pcmcia_device *dev)
  236. {
  237. dev_link_t *link = dev_to_instance(dev);
  238. struct snd_pdacf *chip = link->priv;
  239. snd_printdd(KERN_DEBUG "RESUME\n");
  240. if (DEV_OK(link)) {
  241. if (chip) {
  242. snd_printdd(KERN_DEBUG "calling snd_pdacf_resume\n");
  243. snd_pdacf_resume(chip);
  244. }
  245. }
  246. snd_printdd(KERN_DEBUG "resume done!\n");
  247. return 0;
  248. }
  249. #endif
  250. /*
  251. * Module entry points
  252. */
  253. static struct pcmcia_device_id snd_pdacf_ids[] = {
  254. PCMCIA_DEVICE_MANF_CARD(0x015d, 0x4c45),
  255. PCMCIA_DEVICE_NULL
  256. };
  257. MODULE_DEVICE_TABLE(pcmcia, snd_pdacf_ids);
  258. static struct pcmcia_driver pdacf_cs_driver = {
  259. .owner = THIS_MODULE,
  260. .drv = {
  261. .name = "snd-pdaudiocf",
  262. },
  263. .probe = snd_pdacf_attach,
  264. .remove = snd_pdacf_detach,
  265. .id_table = snd_pdacf_ids,
  266. #ifdef CONFIG_PM
  267. .suspend = pdacf_suspend,
  268. .resume = pdacf_resume,
  269. #endif
  270. };
  271. static int __init init_pdacf(void)
  272. {
  273. return pcmcia_register_driver(&pdacf_cs_driver);
  274. }
  275. static void __exit exit_pdacf(void)
  276. {
  277. pcmcia_unregister_driver(&pdacf_cs_driver);
  278. }
  279. module_init(init_pdacf);
  280. module_exit(exit_pdacf);