usbutils.h 11 KB

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