usbutils.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. /*
  2. * Copyright 2012-2013 Andrew Smith
  3. * Copyright 2013 Con Kolivas <kernel@kolivas.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the Free
  7. * Software Foundation; either version 3 of the License, or (at your option)
  8. * any later version. See COPYING for more details.
  9. */
  10. #ifndef USBUTILS_H
  11. #define USBUTILS_H
  12. #include <libusb.h>
  13. #define EPI(x) (LIBUSB_ENDPOINT_IN | (unsigned char)(x))
  14. #define EPO(x) (LIBUSB_ENDPOINT_OUT | (unsigned char)(x))
  15. // For 0x0403:0x6014/0x6001 FT232H (and possibly others?) - BFL, BAS, BLT, LLT, AVA
  16. #define FTDI_TYPE_OUT (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE | LIBUSB_ENDPOINT_OUT)
  17. #define FTDI_TYPE_IN (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE | LIBUSB_ENDPOINT_IN)
  18. #define FTDI_REQUEST_RESET ((uint8_t)0)
  19. #define FTDI_REQUEST_MODEM ((uint8_t)1)
  20. #define FTDI_REQUEST_FLOW ((uint8_t)2)
  21. #define FTDI_REQUEST_BAUD ((uint8_t)3)
  22. #define FTDI_REQUEST_DATA ((uint8_t)4)
  23. #define FTDI_REQUEST_LATENCY ((uint8_t)9)
  24. #define FTDI_VALUE_RESET 0
  25. #define FTDI_VALUE_PURGE_RX 1
  26. #define FTDI_VALUE_PURGE_TX 2
  27. #define FTDI_VALUE_LATENCY 1
  28. // Baud
  29. #define FTDI_VALUE_BAUD_BFL 0xc068
  30. #define FTDI_INDEX_BAUD_BFL 0x0200
  31. #define FTDI_VALUE_BAUD_BAS FTDI_VALUE_BAUD_BFL
  32. #define FTDI_INDEX_BAUD_BAS FTDI_INDEX_BAUD_BFL
  33. // LLT = BLT (same code)
  34. #define FTDI_VALUE_BAUD_BLT 0x001a
  35. #define FTDI_INDEX_BAUD_BLT 0x0000
  36. // Avalon
  37. #define FTDI_VALUE_BAUD_AVA 0x001A
  38. #define FTDI_INDEX_BAUD_AVA 0x0000
  39. #define FTDI_VALUE_DATA_AVA 8
  40. // BitBurner
  41. #define BITBURNER_REQUEST ((uint8_t)0x42)
  42. #define BITBURNER_VALUE 0x4242
  43. #define BITBURNER_INDEX_SET_VOLTAGE 1
  44. #define BITBURNER_INDEX_GET_VOLTAGE 2
  45. // CMR = 115200 & 57600
  46. #define FTDI_VALUE_BAUD_CMR_115 0xc068
  47. #define FTDI_INDEX_BAUD_CMR_115 0x0200
  48. #define FTDI_VALUE_BAUD_CMR_57 0x80d0
  49. #define FTDI_INDEX_BAUD_CMR_57 0x0200
  50. // Data control
  51. #define FTDI_VALUE_DATA_BFL 0
  52. #define FTDI_VALUE_DATA_BAS FTDI_VALUE_DATA_BFL
  53. // LLT = BLT (same code)
  54. #define FTDI_VALUE_DATA_BLT 8
  55. #define FTDI_VALUE_FLOW 0
  56. #define FTDI_VALUE_MODEM 0x0303
  57. // For 0x10c4:0xea60 USB cp210x chip - AMU
  58. #define CP210X_TYPE_OUT 0x41
  59. #define CP210X_REQUEST_IFC_ENABLE 0x00
  60. #define CP210X_REQUEST_DATA 0x07
  61. #define CP210X_REQUEST_BAUD 0x1e
  62. #define CP210X_VALUE_UART_ENABLE 0x0001
  63. #define CP210X_VALUE_DATA 0x0303
  64. #define CP210X_DATA_BAUD 0x0001c200
  65. // For 0x067b:0x2303 Prolific PL2303 - ICA
  66. #define PL2303_CTRL_DTR 0x01
  67. #define PL2303_CTRL_RTS 0x02
  68. #define PL2303_CTRL_OUT 0x21
  69. #define PL2303_VENDOR_OUT 0x40
  70. #define PL2303_REQUEST_CTRL 0x22
  71. #define PL2303_REQUEST_LINE 0x20
  72. #define PL2303_REQUEST_VENDOR 0x01
  73. #define PL2303_REPLY_CTRL 0x21
  74. #define PL2303_VALUE_CTRL (PL2303_CTRL_DTR | PL2303_CTRL_RTS)
  75. #define PL2303_VALUE_LINE 0
  76. #define PL2303_VALUE_LINE0 0x0001c200
  77. #define PL2303_VALUE_LINE1 0x080000
  78. #define PL2303_VALUE_LINE_SIZE 7
  79. #define PL2303_VALUE_VENDOR 0
  80. // Use the device defined timeout
  81. #define DEVTIMEOUT 0
  82. // For endpoints defined in usb_find_devices.eps,
  83. // the first two must be the default IN and OUT
  84. #define DEFAULT_EP_IN 0
  85. #define DEFAULT_EP_OUT 1
  86. struct usb_endpoints {
  87. uint8_t att;
  88. uint16_t size;
  89. unsigned char ep;
  90. bool found;
  91. };
  92. enum sub_ident {
  93. IDENT_UNK = 0,
  94. IDENT_BAJ,
  95. IDENT_BAL,
  96. IDENT_BAS,
  97. IDENT_BAM,
  98. IDENT_BFL,
  99. IDENT_MMQ,
  100. IDENT_AVA,
  101. IDENT_BTB,
  102. IDENT_ICA,
  103. IDENT_AMU,
  104. IDENT_BLT,
  105. IDENT_LLT,
  106. IDENT_CMR1,
  107. IDENT_CMR2,
  108. IDENT_ZTX
  109. };
  110. struct usb_find_devices {
  111. int drv;
  112. const char *name;
  113. enum sub_ident ident;
  114. uint16_t idVendor;
  115. uint16_t idProduct;
  116. char *iManufacturer;
  117. char *iProduct;
  118. int kernel;
  119. int config;
  120. int interface;
  121. unsigned int timeout;
  122. uint16_t wMaxPacketSize;
  123. uint16_t latency;
  124. int epcount;
  125. struct usb_endpoints *eps;
  126. };
  127. /* Latency is set to 32ms to prevent a transfer ever being more than 512 bytes
  128. * +2 bytes of status such as the ftdi chip, when the chips emulate a 115200
  129. * baud rate, to avoid status bytes being interleaved in larger transfers. */
  130. #define LATENCY_UNUSED 0
  131. #define LATENCY_STD 32
  132. enum usb_types {
  133. USB_TYPE_STD = 0,
  134. USB_TYPE_FTDI
  135. };
  136. struct cg_usb_device {
  137. struct usb_find_devices *found;
  138. libusb_device_handle *handle;
  139. pthread_mutex_t *mutex;
  140. struct libusb_device_descriptor *descriptor;
  141. enum usb_types usb_type;
  142. enum sub_ident ident;
  143. uint16_t usbver;
  144. int cps;
  145. bool usecps;
  146. char *prod_string;
  147. char *manuf_string;
  148. char *serial_string;
  149. unsigned char fwVersion; // ??
  150. unsigned char interfaceVersion; // ??
  151. char *buffer;
  152. uint32_t bufsiz;
  153. uint32_t bufamt;
  154. uint16_t PrefPacketSize;
  155. struct timeval last_write_tv;
  156. size_t last_write_siz;
  157. };
  158. #define USB_NOSTAT 0
  159. #define USB_MAX_READ 8192
  160. #define USB_TMO_0 50
  161. #define USB_TMO_1 100
  162. #define USB_TMO_2 500
  163. #define USB_TMOS 3
  164. struct cg_usb_tmo {
  165. uint32_t count;
  166. uint32_t min_tmo;
  167. uint32_t max_tmo;
  168. uint64_t total_over;
  169. uint64_t total_tmo;
  170. };
  171. struct cg_usb_info {
  172. uint8_t bus_number;
  173. uint8_t device_address;
  174. int usbstat;
  175. bool nodev;
  176. int nodev_count;
  177. struct timeval last_nodev;
  178. uint32_t ioerr_count;
  179. uint32_t continuous_ioerr_count;
  180. /*
  181. * for nodev and cgusb access (read and write)
  182. * it's a pointer so MMQ can have it in multiple devices
  183. *
  184. * N.B. general mining code doesn't need to use the read
  185. * lock for 'nodev' if it calls a usb_read/write/etc function
  186. * that uses the lock - however, all usbutils code MUST use it
  187. * to avoid devices disappearing while in use by multiple threads
  188. */
  189. pthread_rwlock_t *devlock;
  190. time_t last_pipe;
  191. uint64_t pipe_count;
  192. uint64_t clear_err_count;
  193. uint64_t retry_err_count;
  194. uint64_t clear_fail_count;
  195. uint64_t read_delay_count;
  196. double total_read_delay;
  197. uint64_t write_delay_count;
  198. double total_write_delay;
  199. /*
  200. * We add 4: 1 for null, 2 for FTDI status and 1 to round to 4 bytes
  201. * If a single device ever has multiple end points then it will need
  202. * multiple of these
  203. */
  204. unsigned char bulkbuf[USB_MAX_READ+4];
  205. uint64_t tmo_count;
  206. struct cg_usb_tmo usb_tmo[USB_TMOS];
  207. };
  208. enum usb_cmds {
  209. C_REJECTED = 0,
  210. C_PING,
  211. C_CLEAR,
  212. C_REQUESTVERSION,
  213. C_GETVERSION,
  214. C_REQUESTFPGACOUNT,
  215. C_GETFPGACOUNT,
  216. C_STARTPROGRAM,
  217. C_STARTPROGRAMSTATUS,
  218. C_PROGRAM,
  219. C_PROGRAMSTATUS,
  220. C_PROGRAMSTATUS2,
  221. C_FINALPROGRAMSTATUS,
  222. C_SETCLOCK,
  223. C_REPLYSETCLOCK,
  224. C_REQUESTUSERCODE,
  225. C_GETUSERCODE,
  226. C_REQUESTTEMPERATURE,
  227. C_GETTEMPERATURE,
  228. C_SENDWORK,
  229. C_SENDWORKSTATUS,
  230. C_REQUESTWORKSTATUS,
  231. C_GETWORKSTATUS,
  232. C_REQUESTIDENTIFY,
  233. C_GETIDENTIFY,
  234. C_REQUESTFLASH,
  235. C_REQUESTSENDWORK,
  236. C_REQUESTSENDWORKSTATUS,
  237. C_RESET,
  238. C_SETBAUD,
  239. C_SETDATA,
  240. C_SETFLOW,
  241. C_SETMODEM,
  242. C_PURGERX,
  243. C_PURGETX,
  244. C_FLASHREPLY,
  245. C_REQUESTDETAILS,
  246. C_GETDETAILS,
  247. C_REQUESTRESULTS,
  248. C_GETRESULTS,
  249. C_REQUESTQUEJOB,
  250. C_REQUESTQUEJOBSTATUS,
  251. C_QUEJOB,
  252. C_QUEJOBSTATUS,
  253. C_QUEFLUSH,
  254. C_QUEFLUSHREPLY,
  255. C_REQUESTVOLTS,
  256. C_GETVOLTS,
  257. C_SENDTESTWORK,
  258. C_LATENCY,
  259. C_SETLINE,
  260. C_VENDOR,
  261. C_SETFAN,
  262. C_FANREPLY,
  263. C_AVALON_TASK,
  264. C_AVALON_READ,
  265. C_GET_AVALON_READY,
  266. C_AVALON_RESET,
  267. C_GET_AVALON_RESET,
  268. C_FTDI_STATUS,
  269. C_ENABLE_UART,
  270. C_BB_SET_VOLTAGE,
  271. C_BB_GET_VOLTAGE,
  272. C_MAX
  273. };
  274. struct device_drv;
  275. struct cgpu_info;
  276. void usb_all(int level);
  277. const char *usb_cmdname(enum usb_cmds cmd);
  278. void usb_applog(struct cgpu_info *bflsc, enum usb_cmds cmd, char *msg, int amount, int err);
  279. struct cgpu_info *usb_copy_cgpu(struct cgpu_info *orig);
  280. struct cgpu_info *usb_alloc_cgpu(struct device_drv *drv, int threads);
  281. struct cgpu_info *usb_free_cgpu_devlock(struct cgpu_info *cgpu, bool free_devlock);
  282. #define usb_free_cgpu(cgpu) usb_free_cgpu_devlock(cgpu, true)
  283. void usb_uninit(struct cgpu_info *cgpu);
  284. bool usb_init(struct cgpu_info *cgpu, struct libusb_device *dev, struct usb_find_devices *found);
  285. void usb_detect(struct device_drv *drv, bool (*device_detect)(struct libusb_device *, struct usb_find_devices *));
  286. struct api_data *api_usb_stats(int *count);
  287. void update_usb_stats(struct cgpu_info *cgpu);
  288. int _usb_read(struct cgpu_info *cgpu, int ep, char *buf, size_t bufsiz, int *processed, unsigned int timeout, const char *end, enum usb_cmds cmd, bool readonce);
  289. int _usb_write(struct cgpu_info *cgpu, int ep, char *buf, size_t bufsiz, int *processed, unsigned int timeout, enum usb_cmds);
  290. int _usb_transfer(struct cgpu_info *cgpu, uint8_t request_type, uint8_t bRequest, uint16_t wValue, uint16_t wIndex, uint32_t *data, int siz, unsigned int timeout, enum usb_cmds cmd);
  291. int _usb_transfer_read(struct cgpu_info *cgpu, uint8_t request_type, uint8_t bRequest, uint16_t wValue, uint16_t wIndex, char *buf, int bufsiz, int *amount, unsigned int timeout, enum usb_cmds cmd);
  292. int usb_ftdi_cts(struct cgpu_info *cgpu);
  293. int usb_ftdi_set_latency(struct cgpu_info *cgpu);
  294. void usb_buffer_enable(struct cgpu_info *cgpu);
  295. void usb_buffer_disable(struct cgpu_info *cgpu);
  296. void usb_buffer_clear(struct cgpu_info *cgpu);
  297. uint32_t usb_buffer_size(struct cgpu_info *cgpu);
  298. void usb_set_cps(struct cgpu_info *cgpu, int cps);
  299. void usb_enable_cps(struct cgpu_info *cgpu);
  300. void usb_disable_cps(struct cgpu_info *cgpu);
  301. int usb_interface(struct cgpu_info *cgpu);
  302. enum sub_ident usb_ident(struct cgpu_info *cgpu);
  303. void usb_set_pps(struct cgpu_info *cgpu, uint16_t PrefPacketSize);
  304. void usb_set_dev_start(struct cgpu_info *cgpu);
  305. void usb_cleanup();
  306. void usb_initialise();
  307. void *usb_resource_thread(void *userdata);
  308. #define usb_read(cgpu, buf, bufsiz, read, cmd) \
  309. _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, DEVTIMEOUT, NULL, cmd, false)
  310. #define usb_read_once(cgpu, buf, bufsiz, read, cmd) \
  311. _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, DEVTIMEOUT, NULL, cmd, true)
  312. #define usb_read_once_timeout(cgpu, buf, bufsiz, read, timeout, cmd) \
  313. _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, timeout, NULL, cmd, true)
  314. #define usb_read_nl(cgpu, buf, bufsiz, read, cmd) \
  315. _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, DEVTIMEOUT, "\n", cmd, false)
  316. #define usb_read_nl_timeout(cgpu, buf, bufsiz, read, timeout, cmd) \
  317. _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, timeout, "\n", cmd, false)
  318. #define usb_read_ok(cgpu, buf, bufsiz, read, cmd) \
  319. _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, DEVTIMEOUT, "OK\n", cmd, false)
  320. #define usb_read_ok_timeout(cgpu, buf, bufsiz, read, timeout, cmd) \
  321. _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, timeout, "OK\n", cmd, false)
  322. #define usb_read_ep(cgpu, ep, buf, bufsiz, read, cmd) \
  323. _usb_read(cgpu, ep, buf, bufsiz, read, DEVTIMEOUT, NULL, cmd, false)
  324. #define usb_read_timeout(cgpu, buf, bufsiz, read, timeout, cmd) \
  325. _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, timeout, NULL, cmd, false)
  326. #define usb_read_ep_timeout(cgpu, ep, buf, bufsiz, read, timeout, cmd) \
  327. _usb_read(cgpu, ep, buf, bufsiz, read, timeout, NULL, cmd, false)
  328. #define usb_write(cgpu, buf, bufsiz, wrote, cmd) \
  329. _usb_write(cgpu, DEFAULT_EP_OUT, buf, bufsiz, wrote, DEVTIMEOUT, cmd)
  330. #define usb_write_ep(cgpu, ep, buf, bufsiz, wrote, cmd) \
  331. _usb_write(cgpu, ep, buf, bufsiz, wrote, DEVTIMEOUT, cmd)
  332. #define usb_write_timeout(cgpu, buf, bufsiz, wrote, timeout, cmd) \
  333. _usb_write(cgpu, DEFAULT_EP_OUT, buf, bufsiz, wrote, timeout, cmd)
  334. #define usb_write_ep_timeout(cgpu, ep, buf, bufsiz, wrote, timeout, cmd) \
  335. _usb_write(cgpu, ep, buf, bufsiz, wrote, timeout, cmd)
  336. #define usb_transfer(cgpu, typ, req, val, idx, cmd) \
  337. _usb_transfer(cgpu, typ, req, val, idx, NULL, 0, DEVTIMEOUT, cmd)
  338. #define usb_transfer_data(cgpu, typ, req, val, idx, data, len, cmd) \
  339. _usb_transfer(cgpu, typ, req, val, idx, data, len, DEVTIMEOUT, cmd)
  340. #define usb_transfer_read(cgpu, typ, req, val, idx, buf, bufsiz, read, cmd) \
  341. _usb_transfer_read(cgpu, typ, req, val, idx, buf, bufsiz, read, DEVTIMEOUT, cmd)
  342. #endif