gusclassic.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. /*
  2. * Driver for Gravis UltraSound Classic soundcard
  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/delay.h>
  26. #include <linux/time.h>
  27. #include <linux/moduleparam.h>
  28. #include <asm/dma.h>
  29. #include <sound/core.h>
  30. #include <sound/gus.h>
  31. #define SNDRV_LEGACY_FIND_FREE_IRQ
  32. #define SNDRV_LEGACY_FIND_FREE_DMA
  33. #include <sound/initval.h>
  34. MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
  35. MODULE_DESCRIPTION("Gravis UltraSound Classic");
  36. MODULE_LICENSE("GPL");
  37. MODULE_SUPPORTED_DEVICE("{{Gravis,UltraSound Classic}}");
  38. static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
  39. static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
  40. static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */
  41. static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x230,0x240,0x250,0x260 */
  42. static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 3,5,9,11,12,15 */
  43. static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */
  44. static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */
  45. static int joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29};
  46. /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */
  47. static int channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 24};
  48. static int pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
  49. module_param_array(index, int, NULL, 0444);
  50. MODULE_PARM_DESC(index, "Index value for GUS Classic soundcard.");
  51. module_param_array(id, charp, NULL, 0444);
  52. MODULE_PARM_DESC(id, "ID string for GUS Classic soundcard.");
  53. module_param_array(enable, bool, NULL, 0444);
  54. MODULE_PARM_DESC(enable, "Enable GUS Classic soundcard.");
  55. module_param_array(port, long, NULL, 0444);
  56. MODULE_PARM_DESC(port, "Port # for GUS Classic driver.");
  57. module_param_array(irq, int, NULL, 0444);
  58. MODULE_PARM_DESC(irq, "IRQ # for GUS Classic driver.");
  59. module_param_array(dma1, int, NULL, 0444);
  60. MODULE_PARM_DESC(dma1, "DMA1 # for GUS Classic driver.");
  61. module_param_array(dma2, int, NULL, 0444);
  62. MODULE_PARM_DESC(dma2, "DMA2 # for GUS Classic driver.");
  63. module_param_array(joystick_dac, int, NULL, 0444);
  64. MODULE_PARM_DESC(joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for GUS Classic driver.");
  65. module_param_array(channels, int, NULL, 0444);
  66. MODULE_PARM_DESC(channels, "GF1 channels for GUS Classic driver.");
  67. module_param_array(pcm_channels, int, NULL, 0444);
  68. MODULE_PARM_DESC(pcm_channels, "Reserved PCM channels for GUS Classic driver.");
  69. #define PFX "gusclassic: "
  70. static int __init snd_gusclassic_detect(struct snd_gus_card * gus)
  71. {
  72. unsigned char d;
  73. snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 0); /* reset GF1 */
  74. if (((d = snd_gf1_i_look8(gus, SNDRV_GF1_GB_RESET)) & 0x07) != 0) {
  75. snd_printdd("[0x%lx] check 1 failed - 0x%x\n", gus->gf1.port, d);
  76. return -ENODEV;
  77. }
  78. udelay(160);
  79. snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 1); /* release reset */
  80. udelay(160);
  81. if (((d = snd_gf1_i_look8(gus, SNDRV_GF1_GB_RESET)) & 0x07) != 1) {
  82. snd_printdd("[0x%lx] check 2 failed - 0x%x\n", gus->gf1.port, d);
  83. return -ENODEV;
  84. }
  85. return 0;
  86. }
  87. static void __init snd_gusclassic_init(int dev, struct snd_gus_card * gus)
  88. {
  89. gus->equal_irq = 0;
  90. gus->codec_flag = 0;
  91. gus->max_flag = 0;
  92. gus->joystick_dac = joystick_dac[dev];
  93. }
  94. static int __init snd_gusclassic_probe(struct platform_device *pdev)
  95. {
  96. int dev = pdev->id;
  97. static int possible_irqs[] = {5, 11, 12, 9, 7, 15, 3, 4, -1};
  98. static int possible_dmas[] = {5, 6, 7, 1, 3, -1};
  99. int xirq, xdma1, xdma2;
  100. struct snd_card *card;
  101. struct snd_gus_card *gus = NULL;
  102. int err;
  103. card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
  104. if (card == NULL)
  105. return -ENOMEM;
  106. if (pcm_channels[dev] < 2)
  107. pcm_channels[dev] = 2;
  108. xirq = irq[dev];
  109. if (xirq == SNDRV_AUTO_IRQ) {
  110. if ((xirq = snd_legacy_find_free_irq(possible_irqs)) < 0) {
  111. snd_printk(KERN_ERR PFX "unable to find a free IRQ\n");
  112. err = -EBUSY;
  113. goto _err;
  114. }
  115. }
  116. xdma1 = dma1[dev];
  117. if (xdma1 == SNDRV_AUTO_DMA) {
  118. if ((xdma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) {
  119. snd_printk(KERN_ERR PFX "unable to find a free DMA1\n");
  120. err = -EBUSY;
  121. goto _err;
  122. }
  123. }
  124. xdma2 = dma2[dev];
  125. if (xdma2 == SNDRV_AUTO_DMA) {
  126. if ((xdma2 = snd_legacy_find_free_dma(possible_dmas)) < 0) {
  127. snd_printk(KERN_ERR PFX "unable to find a free DMA2\n");
  128. err = -EBUSY;
  129. goto _err;
  130. }
  131. }
  132. if (port[dev] != SNDRV_AUTO_PORT) {
  133. err = snd_gus_create(card,
  134. port[dev],
  135. xirq, xdma1, xdma2,
  136. 0, channels[dev], pcm_channels[dev],
  137. 0, &gus);
  138. } else {
  139. /* auto-probe legacy ports */
  140. static unsigned long possible_ports[] = {
  141. 0x220, 0x230, 0x240, 0x250, 0x260,
  142. };
  143. int i;
  144. for (i = 0; i < ARRAY_SIZE(possible_ports); i++) {
  145. err = snd_gus_create(card,
  146. possible_ports[i],
  147. xirq, xdma1, xdma2,
  148. 0, channels[dev], pcm_channels[dev],
  149. 0, &gus);
  150. if (err >= 0) {
  151. port[dev] = possible_ports[i];
  152. break;
  153. }
  154. }
  155. }
  156. if (err < 0)
  157. goto _err;
  158. if ((err = snd_gusclassic_detect(gus)) < 0)
  159. goto _err;
  160. snd_gusclassic_init(dev, gus);
  161. if ((err = snd_gus_initialize(gus)) < 0)
  162. goto _err;
  163. if (gus->max_flag || gus->ess_flag) {
  164. snd_printk(KERN_ERR PFX "GUS Classic or ACE soundcard was not detected at 0x%lx\n", gus->gf1.port);
  165. err = -ENODEV;
  166. goto _err;
  167. }
  168. if ((err = snd_gf1_new_mixer(gus)) < 0)
  169. goto _err;
  170. if ((err = snd_gf1_pcm_new(gus, 0, 0, NULL)) < 0)
  171. goto _err;
  172. if (!gus->ace_flag) {
  173. if ((err = snd_gf1_rawmidi_new(gus, 0, NULL)) < 0)
  174. goto _err;
  175. }
  176. sprintf(card->longname + strlen(card->longname), " at 0x%lx, irq %d, dma %d", gus->gf1.port, xirq, xdma1);
  177. if (dma2 >= 0)
  178. sprintf(card->longname + strlen(card->longname), "&%d", xdma2);
  179. snd_card_set_dev(card, &pdev->dev);
  180. if ((err = snd_card_register(card)) < 0)
  181. goto _err;
  182. platform_set_drvdata(pdev, card);
  183. return 0;
  184. _err:
  185. snd_card_free(card);
  186. return err;
  187. }
  188. static int snd_gusclassic_remove(struct platform_device *devptr)
  189. {
  190. snd_card_free(platform_get_drvdata(devptr));
  191. platform_set_drvdata(devptr, NULL);
  192. return 0;
  193. }
  194. #define GUSCLASSIC_DRIVER "snd_gusclassic"
  195. static struct platform_driver snd_gusclassic_driver = {
  196. .probe = snd_gusclassic_probe,
  197. .remove = snd_gusclassic_remove,
  198. /* FIXME: suspend/resume */
  199. .driver = {
  200. .name = GUSCLASSIC_DRIVER
  201. },
  202. };
  203. static int __init alsa_card_gusclassic_init(void)
  204. {
  205. int i, cards, err;
  206. err = platform_driver_register(&snd_gusclassic_driver);
  207. if (err < 0)
  208. return err;
  209. cards = 0;
  210. for (i = 0; i < SNDRV_CARDS && enable[i]; i++) {
  211. struct platform_device *device;
  212. device = platform_device_register_simple(GUSCLASSIC_DRIVER,
  213. i, NULL, 0);
  214. if (IS_ERR(device)) {
  215. err = PTR_ERR(device);
  216. goto errout;
  217. }
  218. cards++;
  219. }
  220. if (!cards) {
  221. #ifdef MODULE
  222. printk(KERN_ERR "GUS Classic soundcard not found or device busy\n");
  223. #endif
  224. err = -ENODEV;
  225. goto errout;
  226. }
  227. return 0;
  228. errout:
  229. platform_driver_unregister(&snd_gusclassic_driver);
  230. return err;
  231. }
  232. static void __exit alsa_card_gusclassic_exit(void)
  233. {
  234. platform_driver_unregister(&snd_gusclassic_driver);
  235. }
  236. module_init(alsa_card_gusclassic_init)
  237. module_exit(alsa_card_gusclassic_exit)