pdaudiocf.c 9.2 KB

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