sb8.c 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. /*
  2. * Driver for SoundBlaster 1.0/2.0/Pro soundcards and compatible
  3. * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
  4. *
  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 <linux/init.h>
  23. #include <linux/err.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/slab.h>
  26. #include <linux/ioport.h>
  27. #include <linux/moduleparam.h>
  28. #include <sound/core.h>
  29. #include <sound/sb.h>
  30. #include <sound/opl3.h>
  31. #include <sound/initval.h>
  32. MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
  33. MODULE_DESCRIPTION("Sound Blaster 1.0/2.0/Pro");
  34. MODULE_LICENSE("GPL");
  35. MODULE_SUPPORTED_DEVICE("{{Creative Labs,SB 1.0/SB 2.0/SB Pro}}");
  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; /* Enable this card */
  39. static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */
  40. static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */
  41. static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3 */
  42. module_param_array(index, int, NULL, 0444);
  43. MODULE_PARM_DESC(index, "Index value for Sound Blaster soundcard.");
  44. module_param_array(id, charp, NULL, 0444);
  45. MODULE_PARM_DESC(id, "ID string for Sound Blaster soundcard.");
  46. module_param_array(enable, bool, NULL, 0444);
  47. MODULE_PARM_DESC(enable, "Enable Sound Blaster soundcard.");
  48. module_param_array(port, long, NULL, 0444);
  49. MODULE_PARM_DESC(port, "Port # for SB8 driver.");
  50. module_param_array(irq, int, NULL, 0444);
  51. MODULE_PARM_DESC(irq, "IRQ # for SB8 driver.");
  52. module_param_array(dma8, int, NULL, 0444);
  53. MODULE_PARM_DESC(dma8, "8-bit DMA # for SB8 driver.");
  54. static struct platform_device *devices[SNDRV_CARDS];
  55. struct snd_sb8 {
  56. struct resource *fm_res; /* used to block FM i/o region for legacy cards */
  57. struct snd_sb *chip;
  58. };
  59. static irqreturn_t snd_sb8_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  60. {
  61. struct snd_sb *chip = dev_id;
  62. if (chip->open & SB_OPEN_PCM) {
  63. return snd_sb8dsp_interrupt(chip);
  64. } else {
  65. return snd_sb8dsp_midi_interrupt(chip);
  66. }
  67. }
  68. static void snd_sb8_free(struct snd_card *card)
  69. {
  70. struct snd_sb8 *acard = (struct snd_sb8 *)card->private_data;
  71. if (acard == NULL)
  72. return;
  73. release_and_free_resource(acard->fm_res);
  74. }
  75. static int __init snd_sb8_probe(struct platform_device *pdev)
  76. {
  77. int dev = pdev->id;
  78. struct snd_sb *chip;
  79. struct snd_card *card;
  80. struct snd_sb8 *acard;
  81. struct snd_opl3 *opl3;
  82. int err;
  83. card = snd_card_new(index[dev], id[dev], THIS_MODULE,
  84. sizeof(struct snd_sb8));
  85. if (card == NULL)
  86. return -ENOMEM;
  87. acard = card->private_data;
  88. card->private_free = snd_sb8_free;
  89. /* block the 0x388 port to avoid PnP conflicts */
  90. acard->fm_res = request_region(0x388, 4, "SoundBlaster FM");
  91. if (port[dev] != SNDRV_AUTO_PORT) {
  92. if ((err = snd_sbdsp_create(card, port[dev], irq[dev],
  93. snd_sb8_interrupt,
  94. dma8[dev],
  95. -1,
  96. SB_HW_AUTO,
  97. &chip)) < 0)
  98. goto _err;
  99. } else {
  100. /* auto-probe legacy ports */
  101. static unsigned long possible_ports[] = {
  102. 0x220, 0x240, 0x260,
  103. };
  104. int i;
  105. for (i = 0; i < ARRAY_SIZE(possible_ports); i++) {
  106. err = snd_sbdsp_create(card, possible_ports[i],
  107. irq[dev],
  108. snd_sb8_interrupt,
  109. dma8[dev],
  110. -1,
  111. SB_HW_AUTO,
  112. &chip);
  113. if (err >= 0) {
  114. port[dev] = possible_ports[i];
  115. break;
  116. }
  117. }
  118. if (i >= ARRAY_SIZE(possible_ports))
  119. goto _err;
  120. }
  121. acard->chip = chip;
  122. if (chip->hardware >= SB_HW_16) {
  123. if (chip->hardware == SB_HW_ALS100)
  124. snd_printk(KERN_WARNING "ALS100 chip detected at 0x%lx, try snd-als100 module\n",
  125. port[dev]);
  126. else
  127. snd_printk(KERN_WARNING "SB 16 chip detected at 0x%lx, try snd-sb16 module\n",
  128. port[dev]);
  129. err = -ENODEV;
  130. goto _err;
  131. }
  132. if ((err = snd_sb8dsp_pcm(chip, 0, NULL)) < 0)
  133. goto _err;
  134. if ((err = snd_sbmixer_new(chip)) < 0)
  135. goto _err;
  136. if (chip->hardware == SB_HW_10 || chip->hardware == SB_HW_20) {
  137. if ((err = snd_opl3_create(card, chip->port + 8, 0,
  138. OPL3_HW_AUTO, 1,
  139. &opl3)) < 0) {
  140. snd_printk(KERN_WARNING "sb8: no OPL device at 0x%lx\n", chip->port + 8);
  141. }
  142. } else {
  143. if ((err = snd_opl3_create(card, chip->port, chip->port + 2,
  144. OPL3_HW_AUTO, 1,
  145. &opl3)) < 0) {
  146. snd_printk(KERN_WARNING "sb8: no OPL device at 0x%lx-0x%lx\n",
  147. chip->port, chip->port + 2);
  148. }
  149. }
  150. if (err >= 0) {
  151. if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0)
  152. goto _err;
  153. }
  154. if ((err = snd_sb8dsp_midi(chip, 0, NULL)) < 0)
  155. goto _err;
  156. strcpy(card->driver, chip->hardware == SB_HW_PRO ? "SB Pro" : "SB8");
  157. strcpy(card->shortname, chip->name);
  158. sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d",
  159. chip->name,
  160. chip->port,
  161. irq[dev], dma8[dev]);
  162. snd_card_set_dev(card, &pdev->dev);
  163. if ((err = snd_card_register(card)) < 0)
  164. goto _err;
  165. platform_set_drvdata(pdev, card);
  166. return 0;
  167. _err:
  168. snd_card_free(card);
  169. return err;
  170. }
  171. static int snd_sb8_remove(struct platform_device *pdev)
  172. {
  173. snd_card_free(platform_get_drvdata(pdev));
  174. platform_set_drvdata(pdev, NULL);
  175. return 0;
  176. }
  177. #ifdef CONFIG_PM
  178. static int snd_sb8_suspend(struct platform_device *dev, pm_message_t state)
  179. {
  180. struct snd_card *card = platform_get_drvdata(dev);
  181. struct snd_sb8 *acard = card->private_data;
  182. struct snd_sb *chip = acard->chip;
  183. snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
  184. snd_pcm_suspend_all(chip->pcm);
  185. snd_sbmixer_suspend(chip);
  186. return 0;
  187. }
  188. static int snd_sb8_resume(struct platform_device *dev)
  189. {
  190. struct snd_card *card = platform_get_drvdata(dev);
  191. struct snd_sb8 *acard = card->private_data;
  192. struct snd_sb *chip = acard->chip;
  193. snd_sbdsp_reset(chip);
  194. snd_sbmixer_resume(chip);
  195. snd_power_change_state(card, SNDRV_CTL_POWER_D0);
  196. return 0;
  197. }
  198. #endif
  199. #define SND_SB8_DRIVER "snd_sb8"
  200. static struct platform_driver snd_sb8_driver = {
  201. .probe = snd_sb8_probe,
  202. .remove = snd_sb8_remove,
  203. #ifdef CONFIG_PM
  204. .suspend = snd_sb8_suspend,
  205. .resume = snd_sb8_resume,
  206. #endif
  207. .driver = {
  208. .name = SND_SB8_DRIVER
  209. },
  210. };
  211. static void __init_or_module snd_sb8_unregister_all(void)
  212. {
  213. int i;
  214. for (i = 0; i < ARRAY_SIZE(devices); ++i)
  215. platform_device_unregister(devices[i]);
  216. platform_driver_unregister(&snd_sb8_driver);
  217. }
  218. static int __init alsa_card_sb8_init(void)
  219. {
  220. int i, cards, err;
  221. err = platform_driver_register(&snd_sb8_driver);
  222. if (err < 0)
  223. return err;
  224. cards = 0;
  225. for (i = 0; i < SNDRV_CARDS; i++) {
  226. struct platform_device *device;
  227. if (! enable[i])
  228. continue;
  229. device = platform_device_register_simple(SND_SB8_DRIVER,
  230. i, NULL, 0);
  231. if (IS_ERR(device))
  232. continue;
  233. if (!platform_get_drvdata(device)) {
  234. platform_device_unregister(device);
  235. continue;
  236. }
  237. devices[i] = device;
  238. cards++;
  239. }
  240. if (!cards) {
  241. #ifdef MODULE
  242. snd_printk(KERN_ERR "Sound Blaster soundcard not found or device busy\n");
  243. #endif
  244. snd_sb8_unregister_all();
  245. return -ENODEV;
  246. }
  247. return 0;
  248. }
  249. static void __exit alsa_card_sb8_exit(void)
  250. {
  251. snd_sb8_unregister_all();
  252. }
  253. module_init(alsa_card_sb8_init)
  254. module_exit(alsa_card_sb8_exit)