wavefront_fx.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. /*
  2. * Copyright (c) 1998-2002 by Paul Davis <pbd@op.net>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. #include <asm/io.h>
  19. #include <linux/init.h>
  20. #include <linux/time.h>
  21. #include <linux/wait.h>
  22. #include <linux/firmware.h>
  23. #include <sound/core.h>
  24. #include <sound/snd_wavefront.h>
  25. #include <sound/initval.h>
  26. /* Control bits for the Load Control Register
  27. */
  28. #define FX_LSB_TRANSFER 0x01 /* transfer after DSP LSB byte written */
  29. #define FX_MSB_TRANSFER 0x02 /* transfer after DSP MSB byte written */
  30. #define FX_AUTO_INCR 0x04 /* auto-increment DSP address after transfer */
  31. #define WAIT_IDLE 0xff
  32. static int
  33. wavefront_fx_idle (snd_wavefront_t *dev)
  34. {
  35. int i;
  36. unsigned int x = 0x80;
  37. for (i = 0; i < 1000; i++) {
  38. x = inb (dev->fx_status);
  39. if ((x & 0x80) == 0) {
  40. break;
  41. }
  42. }
  43. if (x & 0x80) {
  44. snd_printk ("FX device never idle.\n");
  45. return 0;
  46. }
  47. return (1);
  48. }
  49. static void
  50. wavefront_fx_mute (snd_wavefront_t *dev, int onoff)
  51. {
  52. if (!wavefront_fx_idle(dev)) {
  53. return;
  54. }
  55. outb (onoff ? 0x02 : 0x00, dev->fx_op);
  56. }
  57. static int
  58. wavefront_fx_memset (snd_wavefront_t *dev,
  59. int page,
  60. int addr,
  61. int cnt,
  62. unsigned short *data)
  63. {
  64. if (page < 0 || page > 7) {
  65. snd_printk ("FX memset: "
  66. "page must be >= 0 and <= 7\n");
  67. return -(EINVAL);
  68. }
  69. if (addr < 0 || addr > 0x7f) {
  70. snd_printk ("FX memset: "
  71. "addr must be >= 0 and <= 7f\n");
  72. return -(EINVAL);
  73. }
  74. if (cnt == 1) {
  75. outb (FX_LSB_TRANSFER, dev->fx_lcr);
  76. outb (page, dev->fx_dsp_page);
  77. outb (addr, dev->fx_dsp_addr);
  78. outb ((data[0] >> 8), dev->fx_dsp_msb);
  79. outb ((data[0] & 0xff), dev->fx_dsp_lsb);
  80. snd_printk ("FX: addr %d:%x set to 0x%x\n",
  81. page, addr, data[0]);
  82. } else {
  83. int i;
  84. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev->fx_lcr);
  85. outb (page, dev->fx_dsp_page);
  86. outb (addr, dev->fx_dsp_addr);
  87. for (i = 0; i < cnt; i++) {
  88. outb ((data[i] >> 8), dev->fx_dsp_msb);
  89. outb ((data[i] & 0xff), dev->fx_dsp_lsb);
  90. if (!wavefront_fx_idle (dev)) {
  91. break;
  92. }
  93. }
  94. if (i != cnt) {
  95. snd_printk ("FX memset "
  96. "(0x%x, 0x%x, 0x%lx, %d) incomplete\n",
  97. page, addr, (unsigned long) data, cnt);
  98. return -(EIO);
  99. }
  100. }
  101. return 0;
  102. }
  103. int
  104. snd_wavefront_fx_detect (snd_wavefront_t *dev)
  105. {
  106. /* This is a crude check, but its the best one I have for now.
  107. Certainly on the Maui and the Tropez, wavefront_fx_idle() will
  108. report "never idle", which suggests that this test should
  109. work OK.
  110. */
  111. if (inb (dev->fx_status) & 0x80) {
  112. snd_printk ("Hmm, probably a Maui or Tropez.\n");
  113. return -1;
  114. }
  115. return 0;
  116. }
  117. int
  118. snd_wavefront_fx_open (struct snd_hwdep *hw, struct file *file)
  119. {
  120. if (!try_module_get(hw->card->module))
  121. return -EFAULT;
  122. file->private_data = hw;
  123. return 0;
  124. }
  125. int
  126. snd_wavefront_fx_release (struct snd_hwdep *hw, struct file *file)
  127. {
  128. module_put(hw->card->module);
  129. return 0;
  130. }
  131. int
  132. snd_wavefront_fx_ioctl (struct snd_hwdep *sdev, struct file *file,
  133. unsigned int cmd, unsigned long arg)
  134. {
  135. struct snd_card *card;
  136. snd_wavefront_card_t *acard;
  137. snd_wavefront_t *dev;
  138. wavefront_fx_info r;
  139. unsigned short *page_data = NULL;
  140. unsigned short *pd;
  141. int err = 0;
  142. card = sdev->card;
  143. if (snd_BUG_ON(!card))
  144. return -ENODEV;
  145. if (snd_BUG_ON(!card->private_data))
  146. return -ENODEV;
  147. acard = card->private_data;
  148. dev = &acard->wavefront;
  149. if (copy_from_user (&r, (void __user *)arg, sizeof (wavefront_fx_info)))
  150. return -EFAULT;
  151. switch (r.request) {
  152. case WFFX_MUTE:
  153. wavefront_fx_mute (dev, r.data[0]);
  154. return -EIO;
  155. case WFFX_MEMSET:
  156. if (r.data[2] <= 0) {
  157. snd_printk ("cannot write "
  158. "<= 0 bytes to FX\n");
  159. return -EIO;
  160. } else if (r.data[2] == 1) {
  161. pd = (unsigned short *) &r.data[3];
  162. } else {
  163. if (r.data[2] > 256) {
  164. snd_printk ("cannot write "
  165. "> 512 bytes to FX\n");
  166. return -EIO;
  167. }
  168. page_data = memdup_user((unsigned char __user *)
  169. r.data[3],
  170. r.data[2] * sizeof(short));
  171. if (IS_ERR(page_data))
  172. return PTR_ERR(page_data);
  173. pd = page_data;
  174. }
  175. err = wavefront_fx_memset (dev,
  176. r.data[0], /* page */
  177. r.data[1], /* addr */
  178. r.data[2], /* cnt */
  179. pd);
  180. kfree(page_data);
  181. break;
  182. default:
  183. snd_printk ("FX: ioctl %d not yet supported\n",
  184. r.request);
  185. return -ENOTTY;
  186. }
  187. return err;
  188. }
  189. /* YSS225 initialization.
  190. This code was developed using DOSEMU. The Turtle Beach SETUPSND
  191. utility was run with I/O tracing in DOSEMU enabled, and a reconstruction
  192. of the port I/O done, using the Yamaha faxback document as a guide
  193. to add more logic to the code. Its really pretty weird.
  194. This is the approach of just dumping the whole I/O
  195. sequence as a series of port/value pairs and a simple loop
  196. that outputs it.
  197. */
  198. int __devinit
  199. snd_wavefront_fx_start (snd_wavefront_t *dev)
  200. {
  201. unsigned int i;
  202. int err;
  203. const struct firmware *firmware = NULL;
  204. if (dev->fx_initialized)
  205. return 0;
  206. err = request_firmware(&firmware, "yamaha/yss225_registers.bin",
  207. dev->card->dev);
  208. if (err < 0) {
  209. err = -1;
  210. goto out;
  211. }
  212. for (i = 0; i + 1 < firmware->size; i += 2) {
  213. if (firmware->data[i] >= 8 && firmware->data[i] < 16) {
  214. outb(firmware->data[i + 1],
  215. dev->base + firmware->data[i]);
  216. } else if (firmware->data[i] == WAIT_IDLE) {
  217. if (!wavefront_fx_idle(dev)) {
  218. err = -1;
  219. goto out;
  220. }
  221. } else {
  222. snd_printk(KERN_ERR "invalid address"
  223. " in register data\n");
  224. err = -1;
  225. goto out;
  226. }
  227. }
  228. dev->fx_initialized = 1;
  229. err = 0;
  230. out:
  231. release_firmware(firmware);
  232. return err;
  233. }
  234. MODULE_FIRMWARE("yamaha/yss225_registers.bin");