| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- /*
- * Copyright 2012-2013 Andrew Smith
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation; either version 3 of the License, or (at your option)
- * any later version. See COPYING for more details.
- */
- #ifndef USBUTILS_H
- #define USBUTILS_H
- #include <libusb.h>
- // for 0x0403/0x6014 FT232H (and possibly others?)
- #define FTDI_TYPE_OUT (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE | LIBUSB_ENDPOINT_OUT)
- #define FTDI_REQUEST_RESET ((uint8_t)0)
- #define FTDI_REQUEST_MODEM ((uint8_t)1)
- #define FTDI_REQUEST_FLOW ((uint8_t)2)
- #define FTDI_REQUEST_BAUD ((uint8_t)3)
- #define FTDI_REQUEST_DATA ((uint8_t)4)
- #define FTDI_VALUE_RESET 0
- #define FTDI_VALUE_PURGE_RX 1
- #define FTDI_VALUE_PURGE_TX 2
- // baud with a 0 divisor is 120,000,000/10
- //#define FTDI_VALUE_BAUD (0)
- //#define FTDI_INDEX_BAUD (0)
- #define FTDI_VALUE_BAUD 0xc068
- #define FTDI_INDEX_BAUD 0x0200
- #define FTDI_VALUE_DATA 0
- #define FTDI_VALUE_FLOW 0
- #define FTDI_VALUE_MODEM 0x0303
- // Use the device defined timeout
- #define DEVTIMEOUT 0
- // For endpoints defined in usb_find_devices.eps,
- // the first two must be the default IN and OUT
- #define DEFAULT_EP_IN 0
- #define DEFAULT_EP_OUT 1
- struct usb_endpoints {
- uint8_t att;
- uint16_t size;
- unsigned char ep;
- bool found;
- };
- enum sub_ident {
- IDENT_BAJ,
- IDENT_BAL,
- IDENT_BAS,
- IDENT_BAM,
- IDENT_BFL,
- IDENT_MMQ,
- IDENT_AVA,
- IDENT_ICA,
- IDENT_AMU,
- IDENT_BLT,
- IDENT_LLT,
- IDENT_CMR,
- IDENT_ZTX
- };
- struct usb_find_devices {
- int drv;
- const char *name;
- enum sub_ident ident;
- uint16_t idVendor;
- uint16_t idProduct;
- char *iManufacturer;
- char *iProduct;
- int kernel;
- int config;
- int interface;
- unsigned int timeout;
- int epcount;
- struct usb_endpoints *eps;
- };
- enum usb_types {
- USB_TYPE_STD = 0,
- USB_TYPE_FTDI
- };
- struct cg_usb_device {
- struct usb_find_devices *found;
- libusb_device_handle *handle;
- pthread_mutex_t *mutex;
- struct libusb_device_descriptor *descriptor;
- enum usb_types usb_type;
- enum sub_ident ident;
- uint16_t usbver;
- int speed;
- char *prod_string;
- char *manuf_string;
- char *serial_string;
- unsigned char fwVersion; // ??
- unsigned char interfaceVersion; // ??
- };
- struct cg_usb_info {
- uint8_t bus_number;
- uint8_t device_address;
- int usbstat;
- bool nodev;
- int nodev_count;
- struct timeval last_nodev;
- };
- enum usb_cmds {
- C_REJECTED = 0,
- C_PING,
- C_CLEAR,
- C_REQUESTVERSION,
- C_GETVERSION,
- C_REQUESTFPGACOUNT,
- C_GETFPGACOUNT,
- C_STARTPROGRAM,
- C_STARTPROGRAMSTATUS,
- C_PROGRAM,
- C_PROGRAMSTATUS,
- C_PROGRAMSTATUS2,
- C_FINALPROGRAMSTATUS,
- C_SETCLOCK,
- C_REPLYSETCLOCK,
- C_REQUESTUSERCODE,
- C_GETUSERCODE,
- C_REQUESTTEMPERATURE,
- C_GETTEMPERATURE,
- C_SENDWORK,
- C_SENDWORKSTATUS,
- C_REQUESTWORKSTATUS,
- C_GETWORKSTATUS,
- C_REQUESTIDENTIFY,
- C_GETIDENTIFY,
- C_REQUESTFLASH,
- C_REQUESTSENDWORK,
- C_REQUESTSENDWORKSTATUS,
- C_RESET,
- C_SETBAUD,
- C_SETDATA,
- C_SETFLOW,
- C_SETMODEM,
- C_PURGERX,
- C_PURGETX,
- C_FLASHREPLY,
- C_REQUESTDETAILS,
- C_GETDETAILS,
- C_REQUESTRESULTS,
- C_GETRESULTS,
- C_REQUESTQUEJOB,
- C_REQUESTQUEJOBSTATUS,
- C_QUEJOB,
- C_QUEJOBSTATUS,
- C_QUEFLUSH,
- C_QUEFLUSHREPLY,
- C_REQUESTVOLTS,
- C_SENDTESTWORK,
- C_MAX
- };
- struct device_drv;
- struct cgpu_info;
- void usb_all(int level);
- const char *usb_cmdname(enum usb_cmds cmd);
- void usb_applog(struct cgpu_info *bflsc, enum usb_cmds cmd, char *msg, int amount, int err);
- void usb_uninit(struct cgpu_info *cgpu);
- bool usb_init(struct cgpu_info *cgpu, struct libusb_device *dev, struct usb_find_devices *found);
- void usb_detect(struct device_drv *drv, bool (*device_detect)(struct libusb_device *, struct usb_find_devices *));
- struct api_data *api_usb_stats(int *count);
- void update_usb_stats(struct cgpu_info *cgpu);
- 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);
- int _usb_write(struct cgpu_info *cgpu, int ep, char *buf, size_t bufsiz, int *processed, unsigned int timeout, enum usb_cmds);
- int _usb_transfer(struct cgpu_info *cgpu, uint8_t request_type, uint8_t bRequest, uint16_t wValue, uint16_t wIndex, unsigned int timeout, enum usb_cmds cmd);
- void usb_cleanup();
- void usb_initialise();
- #define usb_read(cgpu, buf, bufsiz, read, cmd) \
- _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, DEVTIMEOUT, NULL, cmd, false)
- #define usb_read_once(cgpu, buf, bufsiz, read, cmd) \
- _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, DEVTIMEOUT, NULL, cmd, true)
- #define usb_read_nl(cgpu, buf, bufsiz, read, cmd) \
- _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, DEVTIMEOUT, "\n", cmd, false)
- #define usb_read_ok(cgpu, buf, bufsiz, read, cmd) \
- _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, DEVTIMEOUT, "OK\n", cmd, false)
- #define usb_read_ep(cgpu, ep, buf, bufsiz, read, cmd) \
- _usb_read(cgpu, ep, buf, bufsiz, read, DEVTIMEOUT, NULL, cmd, false)
- #define usb_read_timeout(cgpu, buf, bufsiz, read, timeout, cmd) \
- _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, timeout, NULL, cmd, false)
- #define usb_read_ep_timeout(cgpu, ep, buf, bufsiz, read, timeout, cmd) \
- _usb_read(cgpu, ep, buf, bufsiz, read, timeout, NULL, cmd, false)
- #define usb_write(cgpu, buf, bufsiz, wrote, cmd) \
- _usb_write(cgpu, DEFAULT_EP_OUT, buf, bufsiz, wrote, DEVTIMEOUT, cmd)
- #define usb_write_ep(cgpu, ep, buf, bufsiz, wrote, cmd) \
- _usb_write(cgpu, ep, buf, bufsiz, wrote, DEVTIMEOUT, cmd)
- #define usb_write_timeout(cgpu, buf, bufsiz, wrote, timeout, cmd) \
- _usb_write(cgpu, DEFAULT_EP_OUT, buf, bufsiz, wrote, timeout, cmd)
- #define usb_write_ep_timeout(cgpu, ep, buf, bufsiz, wrote, timeout, cmd) \
- _usb_write(cgpu, ep, buf, bufsiz, wrote, timeout, cmd)
- #define usb_transfer(cgpu, typ, req, val, idx, cmd) \
- _usb_transfer(cgpu, typ, req, val, idx, DEVTIMEOUT, cmd)
- #endif
|