emi26.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.  * Emagic EMI 2|6 usb audio interface firmware loader.
  3.  * Copyright (C) 2002
  4.  *  Tapio Laxstr鰉 (tapio.laxstrom@iptime.fi)
  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, version 2.
  9.  * 
  10.  * emi26.c,v 1.13 2002/03/08 13:10:26 tapio Exp
  11.  */
  12. #include <linux/kernel.h>
  13. #include <linux/errno.h>
  14. #include <linux/slab.h>
  15. #include <linux/module.h>
  16. #include <linux/init.h>
  17. #include <linux/usb.h>
  18. #define MAX_INTEL_HEX_RECORD_LENGTH 16
  19. typedef struct _INTEL_HEX_RECORD
  20. {
  21. __u32 length;
  22. __u32 address;
  23. __u32 type;
  24. __u8 data[MAX_INTEL_HEX_RECORD_LENGTH];
  25. } INTEL_HEX_RECORD, *PINTEL_HEX_RECORD;
  26. /* include firmware (variables) */
  27. #include "emi26_fw.h"
  28. #define EMI26_VENDOR_ID  0x086a  /* Emagic Soft-und Hardware GmBH */
  29. #define EMI26_PRODUCT_ID 0x0100 /* EMI 2|6 without firmware */
  30. #define ANCHOR_LOAD_INTERNAL 0xA0 /* Vendor specific request code for Anchor Upload/Download (This one is implemented in the core) */
  31. #define ANCHOR_LOAD_EXTERNAL 0xA3 /* This command is not implemented in the core. Requires firmware */
  32. #define ANCHOR_LOAD_FPGA 0xA5 /* This command is not implemented in the core. Requires firmware. Emagic extension */
  33. #define MAX_INTERNAL_ADDRESS 0x1B3F /* This is the highest internal RAM address for the AN2131Q */
  34. #define CPUCS_REG 0x7F92  /* EZ-USB Control and Status Register.  Bit 0 controls 8051 reset */ 
  35. #define INTERNAL_RAM(address)   (address <= MAX_INTERNAL_ADDRESS)
  36. static int emi26_writememory( struct usb_device *dev, int address, unsigned char *data, int length, __u8 bRequest);
  37. static int emi26_set_reset(struct usb_device *dev, unsigned char reset_bit);
  38. static int emi26_load_firmware (struct usb_device *dev);
  39. static void *emi26_probe(struct usb_device *dev, unsigned int if_num, const struct usb_device_id *id);
  40. static void emi26_disconnect(struct usb_device *dev, void *drv_context);
  41. static int __init emi26_init (void);
  42. static void __exit emi26_exit (void);
  43. /* thanks to drivers/usb/serial/keyspan_pda.c code */
  44. static int emi26_writememory (struct usb_device *dev, int address, unsigned char *data, int length, __u8 request)
  45. {
  46. int result;
  47. unsigned char *buffer =  kmalloc (length, GFP_KERNEL);
  48. if (!buffer) {
  49. printk(KERN_ERR "emi26: kmalloc(%d) failed.", length);
  50. return -ENOMEM;
  51. }
  52. memcpy (buffer, data, length);
  53. /* Note: usb_control_msg returns negative value on error or length of the
  54.  *   data that was written! */
  55. result = usb_control_msg (dev, usb_sndctrlpipe(dev, 0), request, 0x40, address, 0, buffer, length, 300);
  56. kfree (buffer);
  57. return result;
  58. }
  59. /* thanks to drivers/usb/serial/keyspan_pda.c code */
  60. static int emi26_set_reset (struct usb_device *dev, unsigned char reset_bit)
  61. {
  62. int response;
  63. printk(KERN_INFO "%s - %d", __FUNCTION__, reset_bit);
  64. /* printk(KERN_DEBUG "%s - %d", __FUNCTION__, reset_bit); */
  65. response = emi26_writememory (dev, CPUCS_REG, &reset_bit, 1, 0xa0);
  66. if (response < 0) {
  67. printk(KERN_ERR "emi26: set_reset (%d) failed", reset_bit);
  68. }
  69. return response;
  70. }
  71. static int emi26_load_firmware (struct usb_device *dev)
  72. {
  73. int err;
  74. int i;
  75. int pos = 0; /* Position in hex record */
  76. __u32 addr; /* Address to write */
  77. __u8 buf[1023];
  78. /* Assert reset (stop the CPU in the EMI) */
  79. err = emi26_set_reset(dev,1);
  80. if (err < 0) {
  81. printk(KERN_ERR "%s - error loading firmware: error = %d", __FUNCTION__, err);
  82. return err;
  83. }
  84. /* 1. We need to put the loader for the FPGA into the EZ-USB */
  85. for (i=0; g_Loader[i].type == 0; i++) {
  86. err = emi26_writememory(dev, g_Loader[i].address, g_Loader[i].data, g_Loader[i].length, ANCHOR_LOAD_INTERNAL);
  87. if (err < 0) {
  88. printk(KERN_ERR "%s - error loading firmware: error = %d", __FUNCTION__, err);
  89. return err;
  90. }
  91. }
  92. /* De-assert reset (let the CPU run) */
  93. err = emi26_set_reset(dev,0);
  94. /* 2. We upload the FPGA firmware into the EMI
  95.  * Note: collect up to 1023 (yes!) bytes and send them with
  96.  * a single request. This is _much_ faster! */
  97. do {
  98. i = 0;
  99. addr = g_bitstream[pos].address;
  100. /* intel hex records are terminated with type 0 element */
  101. while ((g_bitstream[pos].type == 0) && (i + g_bitstream[pos].length < sizeof(buf))) {
  102. memcpy(buf + i, g_bitstream[pos].data, g_bitstream[pos].length);
  103. i += g_bitstream[pos].length;
  104. pos++;
  105. }
  106. err = emi26_writememory(dev, addr, buf, i, ANCHOR_LOAD_FPGA);
  107. if (err < 0) {
  108. printk(KERN_ERR "%s - error loading firmware: error = %d", __FUNCTION__, err);
  109. return err;
  110. }
  111. } while (i > 0);
  112. /* Assert reset (stop the CPU in the EMI) */
  113. err = emi26_set_reset(dev,1);
  114. if (err < 0) {
  115. printk(KERN_ERR "%s - error loading firmware: error = %d", __FUNCTION__, err);
  116. return err;
  117. }
  118. /* 3. We need to put the loader for the firmware into the EZ-USB (again...) */
  119. for (i=0; g_Loader[i].type == 0; i++) {
  120. err = emi26_writememory(dev, g_Loader[i].address, g_Loader[i].data, g_Loader[i].length, ANCHOR_LOAD_INTERNAL);
  121. if (err < 0) {
  122. printk(KERN_ERR "%s - error loading firmware: error = %d", __FUNCTION__, err);
  123. return err;
  124. }
  125. }
  126. /* De-assert reset (let the CPU run) */
  127. err = emi26_set_reset(dev,0);
  128. if (err < 0) {
  129. printk(KERN_ERR "%s - error loading firmware: error = %d", __FUNCTION__, err);
  130. return err;
  131. }
  132. /* 4. We put the part of the firmware that lies in the external RAM into the EZ-USB */
  133. for (i=0; g_Firmware[i].type == 0; i++) {
  134. if (!INTERNAL_RAM(g_Firmware[i].address)) {
  135. err = emi26_writememory(dev, g_Firmware[i].address, g_Firmware[i].data, g_Firmware[i].length, ANCHOR_LOAD_EXTERNAL);
  136. if (err < 0) {
  137. printk(KERN_ERR "%s - error loading firmware: error = %d", __FUNCTION__, err);
  138. return err;
  139. }
  140. }
  141. }
  142. /* Assert reset (stop the CPU in the EMI) */
  143. err = emi26_set_reset(dev,1);
  144. if (err < 0) {
  145. printk(KERN_ERR "%s - error loading firmware: error = %d", __FUNCTION__, err);
  146. return err;
  147. }
  148. for (i=0; g_Firmware[i].type == 0; i++) {
  149. if (INTERNAL_RAM(g_Firmware[i].address)) {
  150. err = emi26_writememory(dev, g_Firmware[i].address, g_Firmware[i].data, g_Firmware[i].length, ANCHOR_LOAD_INTERNAL);
  151. if (err < 0) {
  152. printk(KERN_ERR "%s - error loading firmware: error = %d", __FUNCTION__, err);
  153. return err;
  154. }
  155. }
  156. }
  157. /* De-assert reset (let the CPU run) */
  158. err = emi26_set_reset(dev,0);
  159. if (err < 0) {
  160. printk(KERN_ERR "%s - error loading firmware: error = %d", __FUNCTION__, err);
  161. return err;
  162. }
  163. /* return 1 to fail the driver inialization
  164.  * and give real driver change to load */
  165. return 1;
  166. }
  167. static __devinitdata struct usb_device_id id_table [] = {
  168. { USB_DEVICE(EMI26_VENDOR_ID, EMI26_PRODUCT_ID) },
  169. { }                                             /* Terminating entry */
  170. };
  171. MODULE_DEVICE_TABLE (usb, id_table);
  172. static void * emi26_probe(struct usb_device *dev, unsigned int if_num, const struct usb_device_id *id)
  173. {
  174. printk(KERN_INFO "%s start", __FUNCTION__); 
  175. if((dev->descriptor.idVendor == EMI26_VENDOR_ID) && (dev->descriptor.idProduct == EMI26_PRODUCT_ID)) {
  176. emi26_load_firmware(dev);
  177. }
  178. /* do not return the driver context, let real audio driver do that */
  179. return 0;
  180. }
  181. static void emi26_disconnect(struct usb_device *dev, void *drv_context)
  182. {
  183. }
  184. struct usb_driver emi26_driver = {
  185. name: "emi26 - firmware loader",
  186. probe: emi26_probe,
  187. disconnect: emi26_disconnect,
  188. id_table: NULL,
  189. };
  190. static int __init emi26_init (void)
  191. {
  192. usb_register (&emi26_driver);
  193. return 0;
  194. }
  195. static void __exit emi26_exit (void)
  196. {
  197. usb_deregister (&emi26_driver);
  198. }
  199. module_init(emi26_init);
  200. module_exit(emi26_exit);
  201. MODULE_AUTHOR("tapio laxstr鰉");
  202. MODULE_DESCRIPTION("Emagic EMI 2|6 firmware loader.");
  203. MODULE_LICENSE("GPL");
  204. /* vi:ai:syntax=c:sw=8:ts=8:tw=80
  205.  */