gusextreme.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. /*
  2. * Driver for Gravis UltraSound Extreme soundcards
  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 <asm/dma.h>
  23. #include <linux/init.h>
  24. #include <linux/delay.h>
  25. #include <linux/time.h>
  26. #include <linux/moduleparam.h>
  27. #include <sound/core.h>
  28. #include <sound/gus.h>
  29. #include <sound/es1688.h>
  30. #include <sound/mpu401.h>
  31. #include <sound/opl3.h>
  32. #define SNDRV_LEGACY_AUTO_PROBE
  33. #define SNDRV_LEGACY_FIND_FREE_IRQ
  34. #define SNDRV_LEGACY_FIND_FREE_DMA
  35. #include <sound/initval.h>
  36. MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
  37. MODULE_DESCRIPTION("Gravis UltraSound Extreme");
  38. MODULE_LICENSE("GPL");
  39. MODULE_SUPPORTED_DEVICE("{{Gravis,UltraSound Extreme}}");
  40. static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
  41. static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
  42. static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */
  43. static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */
  44. static long gf1_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS) - 1] = -1}; /* 0x210,0x220,0x230,0x240,0x250,0x260,0x270 */
  45. static long mpu_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS) - 1] = -1}; /* 0x300,0x310,0x320 */
  46. static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */
  47. static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */
  48. static int gf1_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,3,5,9,11,12,15 */
  49. static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */
  50. static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
  51. static int joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29};
  52. /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */
  53. static int channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 24};
  54. static int pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
  55. module_param_array(index, int, NULL, 0444);
  56. MODULE_PARM_DESC(index, "Index value for GUS Extreme soundcard.");
  57. module_param_array(id, charp, NULL, 0444);
  58. MODULE_PARM_DESC(id, "ID string for GUS Extreme soundcard.");
  59. module_param_array(enable, bool, NULL, 0444);
  60. MODULE_PARM_DESC(enable, "Enable GUS Extreme soundcard.");
  61. module_param_array(port, long, NULL, 0444);
  62. MODULE_PARM_DESC(port, "Port # for GUS Extreme driver.");
  63. module_param_array(gf1_port, long, NULL, 0444);
  64. MODULE_PARM_DESC(gf1_port, "GF1 port # for GUS Extreme driver (optional).");
  65. module_param_array(mpu_port, long, NULL, 0444);
  66. MODULE_PARM_DESC(mpu_port, "MPU-401 port # for GUS Extreme driver.");
  67. module_param_array(irq, int, NULL, 0444);
  68. MODULE_PARM_DESC(irq, "IRQ # for GUS Extreme driver.");
  69. module_param_array(mpu_irq, int, NULL, 0444);
  70. MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for GUS Extreme driver.");
  71. module_param_array(gf1_irq, int, NULL, 0444);
  72. MODULE_PARM_DESC(gf1_irq, "GF1 IRQ # for GUS Extreme driver.");
  73. module_param_array(dma8, int, NULL, 0444);
  74. MODULE_PARM_DESC(dma8, "8-bit DMA # for GUS Extreme driver.");
  75. module_param_array(dma1, int, NULL, 0444);
  76. MODULE_PARM_DESC(dma1, "GF1 DMA # for GUS Extreme driver.");
  77. module_param_array(joystick_dac, int, NULL, 0444);
  78. MODULE_PARM_DESC(joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for GUS Extreme driver.");
  79. module_param_array(channels, int, NULL, 0444);
  80. MODULE_PARM_DESC(channels, "GF1 channels for GUS Extreme driver.");
  81. module_param_array(pcm_channels, int, NULL, 0444);
  82. MODULE_PARM_DESC(pcm_channels, "Reserved PCM channels for GUS Extreme driver.");
  83. static snd_card_t *snd_gusextreme_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR;
  84. #define PFX "gusextreme: "
  85. static int __init snd_gusextreme_detect(int dev,
  86. snd_card_t * card,
  87. snd_gus_card_t * gus,
  88. es1688_t *es1688)
  89. {
  90. unsigned long flags;
  91. unsigned char d;
  92. /*
  93. * This is main stuff - enable access to GF1 chip...
  94. * I'm not sure, if this will work for card which have
  95. * ES1688 chip in another place than 0x220.
  96. *
  97. * I used reverse-engineering in DOSEMU. [--jk]
  98. *
  99. * ULTRINIT.EXE:
  100. * 0x230 = 0,2,3
  101. * 0x240 = 2,0,1
  102. * 0x250 = 2,0,3
  103. * 0x260 = 2,2,1
  104. */
  105. spin_lock_irqsave(&es1688->mixer_lock, flags);
  106. snd_es1688_mixer_write(es1688, 0x40, 0x0b); /* don't change!!! */
  107. spin_unlock_irqrestore(&es1688->mixer_lock, flags);
  108. spin_lock_irqsave(&es1688->reg_lock, flags);
  109. outb(gf1_port[dev] & 0x040 ? 2 : 0, ES1688P(es1688, INIT1));
  110. outb(0, 0x201);
  111. outb(gf1_port[dev] & 0x020 ? 2 : 0, ES1688P(es1688, INIT1));
  112. outb(0, 0x201);
  113. outb(gf1_port[dev] & 0x010 ? 3 : 1, ES1688P(es1688, INIT1));
  114. spin_unlock_irqrestore(&es1688->reg_lock, flags);
  115. udelay(100);
  116. snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 0); /* reset GF1 */
  117. if (((d = snd_gf1_i_look8(gus, SNDRV_GF1_GB_RESET)) & 0x07) != 0) {
  118. snd_printdd("[0x%lx] check 1 failed - 0x%x\n", gus->gf1.port, d);
  119. return -EIO;
  120. }
  121. udelay(160);
  122. snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 1); /* release reset */
  123. udelay(160);
  124. if (((d = snd_gf1_i_look8(gus, SNDRV_GF1_GB_RESET)) & 0x07) != 1) {
  125. snd_printdd("[0x%lx] check 2 failed - 0x%x\n", gus->gf1.port, d);
  126. return -EIO;
  127. }
  128. return 0;
  129. }
  130. static void __init snd_gusextreme_init(int dev, snd_gus_card_t * gus)
  131. {
  132. gus->joystick_dac = joystick_dac[dev];
  133. }
  134. static int __init snd_gusextreme_mixer(es1688_t *chip)
  135. {
  136. snd_card_t *card = chip->card;
  137. snd_ctl_elem_id_t id1, id2;
  138. int err;
  139. memset(&id1, 0, sizeof(id1));
  140. memset(&id2, 0, sizeof(id2));
  141. id1.iface = id2.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
  142. /* reassign AUX to SYNTHESIZER */
  143. strcpy(id1.name, "Aux Playback Volume");
  144. strcpy(id2.name, "Synth Playback Volume");
  145. if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
  146. return err;
  147. /* reassign Master Playback Switch to Synth Playback Switch */
  148. strcpy(id1.name, "Master Playback Switch");
  149. strcpy(id2.name, "Synth Playback Switch");
  150. if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
  151. return err;
  152. return 0;
  153. }
  154. static int __init snd_gusextreme_probe(int dev)
  155. {
  156. static int possible_ess_irqs[] = {5, 9, 10, 7, -1};
  157. static int possible_ess_dmas[] = {1, 3, 0, -1};
  158. static int possible_gf1_irqs[] = {5, 11, 12, 9, 7, 15, 3, -1};
  159. static int possible_gf1_dmas[] = {5, 6, 7, 1, 3, -1};
  160. int xgf1_irq, xgf1_dma, xess_irq, xmpu_irq, xess_dma;
  161. snd_card_t *card;
  162. struct snd_gusextreme *acard;
  163. snd_gus_card_t *gus;
  164. es1688_t *es1688;
  165. opl3_t *opl3;
  166. int err;
  167. card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
  168. if (card == NULL)
  169. return -ENOMEM;
  170. acard = (struct snd_gusextreme *)card->private_data;
  171. xgf1_irq = gf1_irq[dev];
  172. if (xgf1_irq == SNDRV_AUTO_IRQ) {
  173. if ((xgf1_irq = snd_legacy_find_free_irq(possible_gf1_irqs)) < 0) {
  174. snd_printk(KERN_ERR PFX "unable to find a free IRQ for GF1\n");
  175. err = -EBUSY;
  176. goto out;
  177. }
  178. }
  179. xess_irq = irq[dev];
  180. if (xess_irq == SNDRV_AUTO_IRQ) {
  181. if ((xess_irq = snd_legacy_find_free_irq(possible_ess_irqs)) < 0) {
  182. snd_printk(KERN_ERR PFX "unable to find a free IRQ for ES1688\n");
  183. err = -EBUSY;
  184. goto out;
  185. }
  186. }
  187. if (mpu_port[dev] == SNDRV_AUTO_PORT)
  188. mpu_port[dev] = 0;
  189. xmpu_irq = mpu_irq[dev];
  190. if (xmpu_irq > 15)
  191. xmpu_irq = -1;
  192. xgf1_dma = dma1[dev];
  193. if (xgf1_dma == SNDRV_AUTO_DMA) {
  194. if ((xgf1_dma = snd_legacy_find_free_dma(possible_gf1_dmas)) < 0) {
  195. snd_printk(KERN_ERR PFX "unable to find a free DMA for GF1\n");
  196. err = -EBUSY;
  197. goto out;
  198. }
  199. }
  200. xess_dma = dma8[dev];
  201. if (xess_dma == SNDRV_AUTO_DMA) {
  202. if ((xess_dma = snd_legacy_find_free_dma(possible_ess_dmas)) < 0) {
  203. snd_printk(KERN_ERR PFX "unable to find a free DMA for ES1688\n");
  204. err = -EBUSY;
  205. goto out;
  206. }
  207. }
  208. if ((err = snd_es1688_create(card, port[dev], mpu_port[dev],
  209. xess_irq, xmpu_irq, xess_dma,
  210. ES1688_HW_1688, &es1688)) < 0)
  211. goto out;
  212. if (gf1_port[dev] < 0)
  213. gf1_port[dev] = port[dev] + 0x20;
  214. if ((err = snd_gus_create(card,
  215. gf1_port[dev],
  216. xgf1_irq,
  217. xgf1_dma,
  218. -1,
  219. 0, channels[dev],
  220. pcm_channels[dev], 0,
  221. &gus)) < 0)
  222. goto out;
  223. if ((err = snd_gusextreme_detect(dev, card, gus, es1688)) < 0)
  224. goto out;
  225. snd_gusextreme_init(dev, gus);
  226. if ((err = snd_gus_initialize(gus)) < 0)
  227. goto out;
  228. if (!gus->ess_flag) {
  229. snd_printk(KERN_ERR PFX "GUS Extreme soundcard was not detected at 0x%lx\n", gus->gf1.port);
  230. err = -ENODEV;
  231. goto out;
  232. }
  233. if ((err = snd_es1688_pcm(es1688, 0, NULL)) < 0)
  234. goto out;
  235. if ((err = snd_es1688_mixer(es1688)) < 0)
  236. goto out;
  237. snd_component_add(card, "ES1688");
  238. if (pcm_channels[dev] > 0) {
  239. if ((err = snd_gf1_pcm_new(gus, 1, 1, NULL)) < 0)
  240. goto out;
  241. }
  242. if ((err = snd_gf1_new_mixer(gus)) < 0)
  243. goto out;
  244. if ((err = snd_gusextreme_mixer(es1688)) < 0)
  245. goto out;
  246. if (snd_opl3_create(card, es1688->port, es1688->port + 2,
  247. OPL3_HW_OPL3, 0, &opl3) < 0) {
  248. printk(KERN_ERR PFX "gusextreme: opl3 not detected at 0x%lx\n", es1688->port);
  249. } else {
  250. if ((err = snd_opl3_hwdep_new(opl3, 0, 2, NULL)) < 0)
  251. goto out;
  252. }
  253. if (es1688->mpu_port >= 0x300 &&
  254. (err = snd_mpu401_uart_new(card, 0, MPU401_HW_ES1688,
  255. es1688->mpu_port, 0,
  256. xmpu_irq,
  257. SA_INTERRUPT,
  258. NULL)) < 0)
  259. goto out;
  260. sprintf(card->longname, "Gravis UltraSound Extreme at 0x%lx, irq %i&%i, dma %i&%i",
  261. es1688->port, xgf1_irq, xess_irq, xgf1_dma, xess_dma);
  262. if ((err = snd_card_set_generic_dev(card)) < 0)
  263. goto out;
  264. if ((err = snd_card_register(card)) < 0)
  265. goto out;
  266. snd_gusextreme_cards[dev] = card;
  267. return 0;
  268. out:
  269. snd_card_free(card);
  270. return err;
  271. }
  272. static int __init snd_gusextreme_legacy_auto_probe(unsigned long xport)
  273. {
  274. static int dev;
  275. int res;
  276. for ( ; dev < SNDRV_CARDS; dev++) {
  277. if (!enable[dev] || port[dev] != SNDRV_AUTO_PORT)
  278. continue;
  279. port[dev] = xport;
  280. res = snd_gusextreme_probe(dev);
  281. if (res < 0)
  282. port[dev] = SNDRV_AUTO_PORT;
  283. return res;
  284. }
  285. return -ENODEV;
  286. }
  287. static int __init alsa_card_gusextreme_init(void)
  288. {
  289. static unsigned long possible_ports[] = {0x220, 0x240, 0x260, -1};
  290. int dev, cards, i;
  291. for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev] > 0; dev++) {
  292. if (port[dev] == SNDRV_AUTO_PORT)
  293. continue;
  294. if (snd_gusextreme_probe(dev) >= 0)
  295. cards++;
  296. }
  297. i = snd_legacy_auto_probe(possible_ports, snd_gusextreme_legacy_auto_probe);
  298. if (i > 0)
  299. cards += i;
  300. if (!cards) {
  301. #ifdef MODULE
  302. printk(KERN_ERR "GUS Extreme soundcard not found or device busy\n");
  303. #endif
  304. return -ENODEV;
  305. }
  306. return 0;
  307. }
  308. static void __exit alsa_card_gusextreme_exit(void)
  309. {
  310. int idx;
  311. snd_card_t *card;
  312. struct snd_gusextreme *acard;
  313. for (idx = 0; idx < SNDRV_CARDS; idx++) {
  314. card = snd_gusextreme_cards[idx];
  315. if (card == NULL)
  316. continue;
  317. acard = (struct snd_gusextreme *)card->private_data;
  318. snd_card_free(snd_gusextreme_cards[idx]);
  319. }
  320. }
  321. module_init(alsa_card_gusextreme_init)
  322. module_exit(alsa_card_gusextreme_exit)