hf_protocol.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. //
  2. // Copyright 2013, 2014 HashFast Technologies LLC
  3. //
  4. // This program is free software; you can redistribute it and/or modify it
  5. // under the terms of the GNU General Public License as published by the Free
  6. // Software Foundation; either version 3 of the License, or (at your option)
  7. // any later version. See COPYING for more details.
  8. //
  9. // Useful data structures and values for interfacing with HashFast products
  10. //
  11. // Version 1.1
  12. //
  13. #ifndef _HF_PROTOCOL_H_
  14. #define _HF_PROTOCOL_H_
  15. #define HF_PROTOCOL_VERSION ((0<<8)|1)
  16. #define HF_PREAMBLE (uint8_t) 0xaa
  17. #define HF_BROADCAST_ADDRESS (uint8_t) 0xff
  18. #define HF_GWQ_ADDRESS (uint8_t) 254
  19. // Serial protocol operation codes (Second header byte)
  20. #define OP_NULL 0
  21. #define OP_ROOT 1
  22. #define OP_RESET 2
  23. #define OP_PLL_CONFIG 3
  24. #define OP_ADDRESS 4
  25. #define OP_READDRESS 5
  26. #define OP_HIGHEST 6
  27. #define OP_BAUD 7
  28. #define OP_UNROOT 8
  29. #define OP_HASH 9
  30. #define OP_NONCE 10
  31. #define OP_ABORT 11
  32. #define OP_STATUS 12
  33. #define OP_GPIO 13
  34. #define OP_CONFIG 14
  35. #define OP_STATISTICS 15
  36. #define OP_GROUP 16
  37. #define OP_CLOCKGATE 17
  38. // Conversions for the ADC readings from GN on-chip sensors
  39. #define GN_CORE_VOLTAGE(a) ((float)(a)/256*1.2)
  40. #define GN_DIE_TEMPERATURE(a) ((((float)(a)*240)/4096.0)-61.5)
  41. // What to use in an OP_CONFIG hdata field to set thermal overload point to a given temp in degrees C
  42. #define GN_THERMAL_CUTOFF(temp) ((uint16_t)(((temp)+61.5)*4096/240))
  43. // The sequence distance between a sent and received sequence number.
  44. #define HF_SEQUENCE_DISTANCE(tx,rx) ((tx)>=(rx)?((tx)-(rx)):(info->num_sequence+(tx)-(rx)))
  45. // Values the protocol field in the above structure may take
  46. #define PROTOCOL_USB_MAPPED_SERIAL 0
  47. #define PROTOCOL_GLOBAL_WORK_QUEUE 1
  48. // Conversions for the board/module level sensors
  49. #define M_VOLTAGE(a) ((float)(a)*19.0734e-6)
  50. #define M_PHASE_CURRENT(a) ((float)(a)*0.794728597e-3)
  51. // Values info->device_type can take
  52. #define HFD_G1 1 // HashFast G-1 GN ASIC
  53. #define HFD_VC709 128
  54. #define HFD_ExpressAGX 129
  55. // USB interface specific operation codes
  56. #define OP_USB_INIT 128 // Initialize USB interface details
  57. #define OP_GET_TRACE 129 // Send back the trace buffer if present
  58. #define OP_LOOPBACK_USB 130
  59. #define OP_LOOPBACK_UART 131
  60. #define OP_DFU 132 // Jump into the boot loader
  61. #define OP_USB_SHUTDOWN 133 // Initialize USB interface details
  62. #define OP_DIE_STATUS 134 // Die status. There are 4 die per ASIC
  63. #define OP_GWQ_STATUS 135 // Global Work Queue protocol status
  64. #define OP_WORK_RESTART 136 // Stratum work restart regime
  65. #define OP_USB_STATS1 137 // Statistics class 1
  66. #define OP_USB_GWQSTATS 138 // GWQ protocol statistics
  67. #define OP_USB_NOTICE 139 // Asynchronous notification event
  68. #define OP_PING 140 // Echo
  69. #define OP_CORE_MAP 141 // Return core map
  70. #define OP_VERSION 142 // Version information
  71. #define OP_FAN 143 // Set Fan Speed
  72. #define OP_NAME 144 // System name write/read
  73. #define OP_USB_DEBUG 255
  74. // HashFast vendor and product ID's
  75. #define HF_USB_VENDOR_ID 0x297c
  76. #define HF_USB_PRODUCT_ID_G1 0x0001
  77. // If this bit is set, search forward for other nonce(s)
  78. #define HF_NTIME_MASK 0xfff // Mask for for ntime
  79. #define HF_NONCE_SEARCH 0x1000 // Search bit in candidate_nonce -> ntime
  80. //
  81. // Fault codes that can be returned in struct hf_usb_init_base.operation_status
  82. //
  83. #define E_RESET_TIMEOUT 1
  84. #define E_ADDRESS_TIMEOUT 2
  85. #define E_CLOCKGATE_TIMEOUT 3
  86. #define E_CONFIG_TIMEOUT 4
  87. #define E_EXCESS_CORE_FAILURES 5
  88. #define E_TOTAL_CORE_FAILURES 6
  89. #define E_TOO_MANY_GROUPS 7
  90. #define E_NO_SLAVES 8
  91. #define E_SLAVE_COMM 9
  92. #define E_MAIN_POWER_BAD 10
  93. #define E_SECONDARY_POWER_BAD 11
  94. #define E_BOARD_1 12
  95. #define E_BOARD_2 13
  96. #define E_BOARD_3 14
  97. #define E_BOARD_4 15
  98. #define E_BOARD_5 16
  99. #define E_CORE_POWER_FAULT 17
  100. #define E_BAUD_TIMEOUT 18
  101. #define E_ADDRESS_FAILURE 19
  102. #define E_IR_PROG_FAILURE 20
  103. #define E_MIXED_MISMATCH 21
  104. #define E_MIXED_TIMEOUT 22
  105. #define U32SIZE(x) (sizeof(x)/sizeof(uint32_t))
  106. // Baud rate vs. code for gpi[7:5] coming out of reset
  107. #define BAUD_RATE_PWRUP_0 115200
  108. #define BAUD_RATE_PWRUP_1 9600
  109. #define BAUD_RATE_PWRUP_2 38400
  110. #define BAUD_RATE_PWRUP_3 57600
  111. #define BAUD_RATE_PWRUP_4 230400
  112. #define BAUD_RATE_PWRUP_5 576000
  113. #define BAUD_RATE_PWRUP_6 921600
  114. #define BAUD_RATE_PWRUP_7 1152000
  115. // OP_WORK_RESTART hash clock change methods.
  116. //
  117. // May be issued *infrequently* by the host to adjust hash clock rate for thermal control
  118. // The "hdata" field, if non zero, contains adjustment instructions. Bits 15:12 of "hdata"
  119. // contain the adjustment type according to the following code, and bits 11:0 contain the
  120. // associated value. Examples:
  121. // hdata = (1<<12)|550 = Set hash clock rate to 550 Mhz
  122. // hdata = (4<<12)|1 = Increase hash clock rate by 1%
  123. // hdata = (6<<12) = Go back to whatever the "original" OP_USB_INIT settings were
  124. //
  125. // Finally, if 4 bytes of "data" follows the OP_WORK_RESTART header, then that data is taken
  126. // as a little endian bitmap, bit set = enable clock change to that die, bit clear = don't
  127. // change clock on that die, i.e. considered as a uint32_t, then 0x1 = die 0, 0x2 = die 1 etc.
  128. #define WR_NO_CHANGE 0
  129. #define WR_CLOCK_VALUE 1
  130. #define WR_MHZ_INCREASE 2
  131. #define WR_MHZ_DECREASE 3
  132. #define WR_PERCENT_INCREASE 4
  133. #define WR_PERCENT_DECREASE 5
  134. #define WR_REVERT 6
  135. #define WR_COMMAND_SHIFT 12
  136. // Structure definitions, LE platforms
  137. #if __BYTE_ORDER == __BIG_ENDIAN && !defined(WIN32)
  138. #include "hf_protocol_be.h"
  139. #else
  140. // Generic header
  141. struct hf_header {
  142. uint8_t preamble; // Always 0xaa
  143. uint8_t operation_code;
  144. uint8_t chip_address;
  145. uint8_t core_address;
  146. uint16_t hdata; // Header specific data
  147. uint8_t data_length; // .. of data frame to follow, in 4 byte blocks, 0=no data
  148. uint8_t crc8; // Computed across bytes 1-6 inclusive
  149. } __attribute__((packed,aligned(4))); // 8 bytes total
  150. // Header specific to OP_PLL_CONFIG
  151. struct hf_pll_config {
  152. uint8_t preamble;
  153. uint8_t operation_code;
  154. uint8_t chip_address;
  155. uint8_t pll_divr:6;
  156. uint8_t pll_bypass:1;
  157. uint8_t pll_reset:1;
  158. uint8_t pll_divf;
  159. uint8_t spare1:1; // Must always be 0
  160. uint8_t pll_divq:3;
  161. uint8_t pll_range:3;
  162. uint8_t pll_fse:1; // Must always be 1
  163. uint8_t data_length; // Always 0
  164. uint8_t crc8; // Computed across bytes 1-6 inclusive
  165. } __attribute__((packed,aligned(4))); // 8 bytes total
  166. // OP_HASH serial data
  167. struct hf_hash_serial {
  168. uint8_t midstate[32]; // Computed from first half of block header
  169. uint8_t merkle_residual[4]; // From block header
  170. uint32_t timestamp; // From block header
  171. uint32_t bits; // Actual difficulty target for block header
  172. uint32_t starting_nonce; // Usually set to 0
  173. uint32_t nonce_loops; // How many nonces to search, or 0 for 2^32
  174. uint16_t ntime_loops; // How many times to roll timestamp, or 0
  175. uint8_t search_difficulty; // Search difficulty to use, # of '0' digits required
  176. uint8_t option;
  177. uint8_t group;
  178. uint8_t spare3[3];
  179. } __attribute__((packed,aligned(4)));
  180. // OP_HASH usb data - header+data = 64 bytes
  181. struct hf_hash_usb {
  182. uint8_t midstate[32]; // Computed from first half of block header
  183. uint8_t merkle_residual[4]; // From block header
  184. uint32_t timestamp; // From block header
  185. uint32_t bits; // Actual difficulty target for block header
  186. uint32_t starting_nonce; // Usually set to 0
  187. uint32_t nonce_loops; // How many nonces to search, or 0 for 2^32
  188. uint16_t ntime_loops; // How many times to roll timestamp, or 0
  189. uint8_t search_difficulty; // Search difficulty to use, # of '0' digits required
  190. uint8_t group; // Non-zero for valid group
  191. } __attribute__((packed,aligned(4)));
  192. // OP_NONCE data
  193. struct hf_candidate_nonce {
  194. uint32_t nonce; // Candidate nonce
  195. uint16_t sequence; // Sequence number from corresponding OP_HASH
  196. uint16_t ntime; // ntime offset, if ntime roll occurred, in LS 12 bits
  197. // If b12 set, search forward next 128 nonces to find solution(s)
  198. } __attribute__((packed,aligned(4)));
  199. // OP_CONFIG data
  200. struct hf_config_data {
  201. uint16_t status_period:11; // Periodic status time, msec
  202. uint16_t enable_periodic_status:1; // Send periodic status
  203. uint16_t send_status_on_core_idle:1; // Schedule status whenever core goes idle
  204. uint16_t send_status_on_pending_empty:1; // Schedule status whenever core pending goes idle
  205. uint16_t pwm_active_level:1; // Active level of PWM outputs, if used
  206. uint16_t forward_all_privileged_packets:1; // Forward priv pkts -- diagnostic
  207. uint8_t status_batch_delay; // Batching delay, time to wait before sending status
  208. uint8_t watchdog:7; // Watchdog timeout, seconds
  209. uint8_t disable_sensors:1; // Diagnostic
  210. uint8_t rx_header_timeout:7; // Header timeout in char times
  211. uint8_t rx_ignore_header_crc:1; // Ignore rx header crc's (diagnostic)
  212. uint8_t rx_data_timeout:7; // Data timeout in char times / 16
  213. uint8_t rx_ignore_data_crc:1; // Ignore rx data crc's (diagnostic)
  214. uint8_t stats_interval:7; // Minimum interval to report statistics (seconds)
  215. uint8_t stat_diagnostic:1; // Never set this
  216. uint8_t measure_interval; // Die temperature measurement interval (msec)
  217. uint32_t one_usec:12; // How many LF clocks per usec.
  218. uint32_t max_nonces_per_frame:4; // Maximum # of nonces to combine in a single frame
  219. uint32_t voltage_sample_points:8; // Bit mask for sample points (up to 5 bits set)
  220. uint32_t pwm_phases:2; // phases - 1
  221. uint32_t trim:4; // Trim value for temperature measurements
  222. uint32_t clock_diagnostic:1; // Never set this
  223. uint32_t forward_all_packets:1; // Forward everything - diagnostic.
  224. uint16_t pwm_period; // Period of PWM outputs, in reference clock cycles
  225. uint16_t pwm_pulse_period; // Initial count, phase 0
  226. } __attribute__((packed,aligned(4)));
  227. // OP_GROUP data
  228. struct hf_group_data {
  229. uint16_t nonce_msoffset; // This value << 16 added to starting nonce
  230. uint16_t ntime_offset; // This value added to timestamp
  231. } __attribute__((packed,aligned(4)));
  232. // Structure of the monitor fields for G-1, returned in OP_STATUS, core bitmap follows this
  233. struct hf_g1_monitor {
  234. uint16_t die_temperature; // Die temperature ADC count
  235. uint8_t core_voltage[6]; // Core voltage
  236. // [0] = main sensor
  237. // [1]-[5] = other positions
  238. } __attribute__((packed,aligned(4)));
  239. // What comes back in the body of an OP_STATISTICS frame (On die statistics)
  240. struct hf_statistics {
  241. uint8_t rx_header_crc; // Header CRC error's
  242. uint8_t rx_body_crc; // Data CRC error's
  243. uint8_t rx_header_timeouts; // Header timeouts
  244. uint8_t rx_body_timeouts; // Data timeouts
  245. uint8_t core_nonce_fifo_full; // Core nonce Q overrun events
  246. uint8_t array_nonce_fifo_full; // System nonce Q overrun events
  247. uint8_t stats_overrun; // Overrun in statistics reporting
  248. uint8_t spare;
  249. } __attribute__((packed,aligned(4)));
  250. ////////////////////////////////////////////////////////////////////////////////
  251. // USB protocol data structures
  252. ////////////////////////////////////////////////////////////////////////////////
  253. // Convenience header specific to OP_USB_INIT
  254. struct hf_usb_init_header {
  255. uint8_t preamble; // Always 0xaa
  256. uint8_t operation_code;
  257. uint8_t spare1;
  258. uint8_t protocol:3; // Which protocol to use
  259. uint8_t user_configuration:1; // Use the following configuration data
  260. uint8_t pll_bypass:1; // Force PLL bypass, hash clock = ref clock
  261. uint8_t no_asic_initialization:1; // Do not perform automatic ASIC initialization
  262. uint8_t do_atspeed_core_tests:1; // Do core tests at speed, return second bitmap
  263. uint8_t shed_supported:1; // Host supports gwq status shed_count
  264. uint16_t hash_clock; // Requested hash clock frequency
  265. uint8_t data_length; // .. of data frame to follow, in 4 byte blocks
  266. uint8_t crc8; // Computed across bytes 1-6 inclusive
  267. } __attribute__((packed,aligned(4))); // 8 bytes total
  268. // Options (only if present) that may be appended to the above header
  269. // Each option involving a numerical value will only be in effect if the value is non-zero
  270. // This allows the user to select only those options desired for modification. Do not
  271. // use this facility unless you are an expert - loading inconsistent settings will not work.
  272. struct hf_usb_init_options {
  273. uint16_t group_ntime_roll; // Total ntime roll amount per group
  274. uint16_t core_ntime_roll; // Total core ntime roll amount
  275. uint8_t low_operating_temp_limit; // Lowest normal operating limit
  276. uint8_t high_operating_temp_limit; // Highest normal operating limit
  277. uint16_t spare;
  278. } __attribute__((packed,aligned(4)));
  279. // Base item returned from device for OP_USB_INIT
  280. struct hf_usb_init_base {
  281. uint16_t firmware_rev; // Firmware revision #
  282. uint16_t hardware_rev; // Hardware revision #
  283. uint32_t serial_number; // Board serial number
  284. uint8_t operation_status; // Reply status for OP_USB_INIT (0 = success)
  285. uint8_t extra_status_1; // Extra reply status information, code specific
  286. uint16_t sequence_modulus; // Sequence numbers are to be modulo this
  287. uint16_t hash_clockrate; // Actual hash clock rate used (nearest Mhz)
  288. uint16_t inflight_target; // Target inflight amount for GWQ protocol
  289. } __attribute__((packed,aligned(4)));
  290. // The above base item (16 bytes) is followed by the struct hf_config_data (16 bytes) actually
  291. // used internally (so users may modify non-critical fields by doing subsequent
  292. // OP_CONFIG operations). This is followed by a device specific "core good" bitmap (unless the
  293. // user disabled initialization), and optionally by an at-speed "core good" bitmap.
  294. // Information in an OP_DIE_STATUS frame. This is for one die - there are four per ASIC.
  295. // Board level phase current and voltage sensors are likely to disappear in later production models.
  296. struct hf_g1_die_data {
  297. struct hf_g1_monitor die; // Die sensors - 8 bytes
  298. uint16_t phase_currents[4]; // Phase currents (0 if unavailable)
  299. uint16_t voltage; // Voltage at device boundary (0 if unavailable)
  300. uint16_t temperature; // Regulator temp sensor
  301. uint16_t tacho; // See documentation
  302. uint16_t spare;
  303. } __attribute__((packed,aligned(4))); // 24 bytes total
  304. // Information for an OP_GWQ_STATUS frame
  305. // If sequence_head == sequence_tail, then there is no active work and sequence_head is invalid
  306. struct hf_gwq_data {
  307. uint64_t hash_count; // Add this to host's cumulative hash count
  308. uint16_t sequence_head; // The latest, internal, active sequence #
  309. uint16_t sequence_tail; // The latest, internal, inactive sequence #
  310. uint16_t shed_count; // # of cores have been shedded for thermal control
  311. uint16_t spare;
  312. } __attribute__((packed,aligned(4)));
  313. // Information for an OP_USB_STATS1 frame - Communication statistics
  314. struct hf_usb_stats1 {
  315. // USB incoming
  316. uint16_t usb_rx_preambles;
  317. uint16_t usb_rx_receive_byte_errors;
  318. uint16_t usb_rx_bad_hcrc;
  319. // USB outgoing
  320. uint16_t usb_tx_attempts;
  321. uint16_t usb_tx_packets;
  322. uint16_t usb_tx_timeouts;
  323. uint16_t usb_tx_incompletes;
  324. uint16_t usb_tx_endpointstalled;
  325. uint16_t usb_tx_disconnected;
  326. uint16_t usb_tx_suspended;
  327. // Internal UART transmit
  328. uint16_t uart_tx_queue_dma;
  329. uint16_t uart_tx_interrupts;
  330. // Internal UART receive
  331. uint16_t uart_rx_preamble_ints;
  332. uint16_t uart_rx_missed_preamble_ints;
  333. uint16_t uart_rx_header_done;
  334. uint16_t uart_rx_data_done;
  335. uint16_t uart_rx_bad_hcrc;
  336. //uint16_t uart_rx_bad_crc32;
  337. uint16_t uart_rx_bad_dma;
  338. uint16_t uart_rx_short_dma;
  339. uint16_t uart_rx_buffers_full;
  340. uint8_t max_tx_buffers; // Maximum # of send buffers ever used
  341. uint8_t max_rx_buffers; // Maximum # of receive buffers ever used
  342. } __attribute__((packed,aligned(4)));
  343. // Information for an OP_USB_NOTICE frame
  344. struct hf_usb_notice_data {
  345. uint32_t extra_data; // Depends on notification code
  346. char message[]; // NULL terminated, little endian byte order
  347. };
  348. #endif
  349. #endif