driver-bmsc.c 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031
  1. /*
  2. * Copyright 2012-2013 Andrew Smith
  3. * Copyright 2013 Con Kolivas <kernel@kolivas.org>
  4. * Copyright 2013 Lingchao Xu <lingchao.xu@bitmaintech.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the Free
  8. * Software Foundation; either version 3 of the License, or (at your option)
  9. * any later version. See COPYING for more details.
  10. */
  11. /*
  12. * Those code should be works fine with AntMiner U1 of Bmsc.
  13. * Operation:
  14. * No detection implement.
  15. * Input: 64B = 32B midstate + 20B fill bytes + last 12 bytes of block head.
  16. * Return: send back 40bits immediately when Bmsc found a valid nonce.
  17. * no query protocol implemented here, if no data send back in ~11.3
  18. * seconds (full cover time on 32bit nonce range by 380MH/s speed)
  19. * just send another work.
  20. * Notice:
  21. * 1. Bmsc will start calculate when you push a work to them, even they
  22. * are busy.
  23. * 2. Bmsc will stop work when: a valid nonce has been found or 40 bits
  24. * nonce range is completely calculated.
  25. */
  26. #include <float.h>
  27. #include <limits.h>
  28. #include <pthread.h>
  29. #include <stdint.h>
  30. #include <stdio.h>
  31. #include <strings.h>
  32. #include <sys/time.h>
  33. #include <unistd.h>
  34. #include "config.h"
  35. #ifdef WIN32
  36. #include <windows.h>
  37. #endif
  38. #include "compat.h"
  39. #include "miner.h"
  40. #include "usbutils.h"
  41. // The serial I/O speed - Linux uses a define 'B115200' in bits/termios.h
  42. #define BMSC_IO_SPEED 115200
  43. #define BMSC_NONCE_ARRAY_SIZE 6
  44. // The size of a successful nonce read
  45. #define BMSC_READ_SIZE 5
  46. // Ensure the sizes are correct for the Serial read
  47. #if (BMSC_READ_SIZE != 5)
  48. #error BMSC_READ_SIZE must be 5
  49. #endif
  50. #define ASSERT1(condition) __maybe_unused static char sizeof_uint32_t_must_be_4[(condition)?1:-1]
  51. ASSERT1(sizeof(uint32_t) == 4);
  52. // TODO: USB? Different calculation? - see usbstats to work it out e.g. 1/2 of normal send time
  53. // or even use that number? 1/2
  54. // #define BMSC_READ_TIME(baud) ((double)BMSC_READ_SIZE * (double)8.0 / (double)(baud))
  55. // maybe 1ms?
  56. #define BMSC_READ_TIME(baud) (0.001)
  57. // USB ms timeout to wait - user specified timeouts are multiples of this
  58. #define BMSC_WAIT_TIMEOUT 100
  59. #define BMSC_CMR2_TIMEOUT 1
  60. #define BMSC_READ_BUF_LEN 8192
  61. // Defined in multiples of BMSC_WAIT_TIMEOUT
  62. // Must of course be greater than BMSC_READ_COUNT_TIMING/BMSC_WAIT_TIMEOUT
  63. // There's no need to have this bigger, since the overhead/latency of extra work
  64. // is pretty small once you get beyond a 10s nonce range time and 10s also
  65. // means that nothing slower than 429MH/s can go idle so most bmsc devices
  66. // will always mine without idling
  67. #define BMSC_READ_TIME_LIMIT_MAX 100
  68. // In timing mode: Default starting value until an estimate can be obtained
  69. // 5000 ms allows for up to a ~840MH/s device
  70. #define BMSC_READ_COUNT_TIMING 5000
  71. #define BMSC_READ_COUNT_MIN BMSC_WAIT_TIMEOUT
  72. #define SECTOMS(s) ((int)((s) * 1000))
  73. // How many ms below the expected completion time to abort work
  74. // extra in case the last read is delayed
  75. #define BMSC_READ_REDUCE ((int)(BMSC_WAIT_TIMEOUT * 1.5))
  76. // For a standard Bmsc (to 5 places)
  77. // Since this rounds up a the last digit - it is a slight overestimate
  78. // Thus the hash rate will be a VERY slight underestimate
  79. // (by a lot less than the displayed accuracy)
  80. // Minor inaccuracy of these numbers doesn't affect the work done,
  81. // only the displayed MH/s
  82. #define BMSC_REV3_HASH_TIME 0.0000000026316
  83. #define LANCELOT_HASH_TIME 0.0000000025000
  84. #define ASICMINERUSB_HASH_TIME 0.0000000029761
  85. // TODO: What is it?
  86. #define CAIRNSMORE1_HASH_TIME 0.0000000027000
  87. // Per FPGA
  88. #define CAIRNSMORE2_HASH_TIME 0.0000000066600
  89. #define NANOSEC 1000000000.0
  90. #define CAIRNSMORE2_INTS 4
  91. // Bmsc doesn't send a completion message when it finishes
  92. // the full nonce range, so to avoid being idle we must abort the
  93. // work (by starting a new work item) shortly before it finishes
  94. //
  95. // Thus we need to estimate 2 things:
  96. // 1) How many hashes were done if the work was aborted
  97. // 2) How high can the timeout be before the Bmsc is idle,
  98. // to minimise the number of work items started
  99. // We set 2) to 'the calculated estimate' - BMSC_READ_REDUCE
  100. // to ensure the estimate ends before idle
  101. //
  102. // The simple calculation used is:
  103. // Tn = Total time in seconds to calculate n hashes
  104. // Hs = seconds per hash
  105. // Xn = number of hashes
  106. // W = code/usb overhead per work
  107. //
  108. // Rough but reasonable estimate:
  109. // Tn = Hs * Xn + W (of the form y = mx + b)
  110. //
  111. // Thus:
  112. // Line of best fit (using least squares)
  113. //
  114. // Hs = (n*Sum(XiTi)-Sum(Xi)*Sum(Ti))/(n*Sum(Xi^2)-Sum(Xi)^2)
  115. // W = Sum(Ti)/n - (Hs*Sum(Xi))/n
  116. //
  117. // N.B. W is less when aborting work since we aren't waiting for the reply
  118. // to be transferred back (BMSC_READ_TIME)
  119. // Calculating the hashes aborted at n seconds is thus just n/Hs
  120. // (though this is still a slight overestimate due to code delays)
  121. //
  122. // Both below must be exceeded to complete a set of data
  123. // Minimum how long after the first, the last data point must be
  124. #define HISTORY_SEC 60
  125. // Minimum how many points a single BMSC_HISTORY should have
  126. #define MIN_DATA_COUNT 5
  127. // The value MIN_DATA_COUNT used is doubled each history until it exceeds:
  128. #define MAX_MIN_DATA_COUNT 100
  129. static struct timeval history_sec = { HISTORY_SEC, 0 };
  130. // Store the last INFO_HISTORY data sets
  131. // [0] = current data, not yet ready to be included as an estimate
  132. // Each new data set throws the last old set off the end thus
  133. // keeping a ongoing average of recent data
  134. #define INFO_HISTORY 10
  135. #define BMSC_WORK_QUEUE_NUM 36
  136. struct BMSC_HISTORY {
  137. struct timeval finish;
  138. double sumXiTi;
  139. double sumXi;
  140. double sumTi;
  141. double sumXi2;
  142. uint32_t values;
  143. uint32_t hash_count_min;
  144. uint32_t hash_count_max;
  145. };
  146. enum timing_mode { MODE_DEFAULT, MODE_SHORT, MODE_LONG, MODE_VALUE };
  147. static const char *MODE_DEFAULT_STR = "default";
  148. static const char *MODE_SHORT_STR = "short";
  149. static const char *MODE_SHORT_STREQ = "short=";
  150. static const char *MODE_LONG_STR = "long";
  151. static const char *MODE_LONG_STREQ = "long=";
  152. static const char *MODE_VALUE_STR = "value";
  153. static const char *MODE_UNKNOWN_STR = "unknown";
  154. struct BMSC_INFO {
  155. enum sub_ident ident;
  156. int intinfo;
  157. // time to calculate the golden_ob
  158. uint64_t golden_hashes;
  159. struct timeval golden_tv;
  160. struct BMSC_HISTORY history[INFO_HISTORY+1];
  161. uint32_t min_data_count;
  162. int timeout;
  163. // seconds per Hash
  164. double Hs;
  165. // ms til we abort
  166. int read_time;
  167. // ms limit for (short=/long=) read_time
  168. int read_time_limit;
  169. enum timing_mode timing_mode;
  170. bool do_bmsc_timing;
  171. bool start;
  172. double fullnonce;
  173. int count;
  174. double W;
  175. uint32_t values;
  176. uint64_t hash_count_range;
  177. // Determine the cost of history processing
  178. // (which will only affect W)
  179. uint64_t history_count;
  180. struct timeval history_time;
  181. // bmsc-options
  182. int baud;
  183. int work_division;
  184. int fpga_count;
  185. uint32_t nonce_mask;
  186. uint8_t cmr2_speed;
  187. bool speed_next_work;
  188. bool flash_next_work;
  189. struct work * work_queue[BMSC_WORK_QUEUE_NUM];
  190. int work_queue_index;
  191. unsigned char nonce_bin[BMSC_NONCE_ARRAY_SIZE][BMSC_READ_SIZE+1];
  192. int nonce_index;
  193. };
  194. #define BMSC_MIDSTATE_SIZE 32
  195. #define BMSC_UNUSED_SIZE 15
  196. #define BMSC_WORK_SIZE 12
  197. #define BMSC_WORK_DATA_OFFSET 64
  198. #define BMSC_CMR2_SPEED_FACTOR 2.5
  199. #define BMSC_CMR2_SPEED_MIN_INT 100
  200. #define BMSC_CMR2_SPEED_DEF_INT 180
  201. #define BMSC_CMR2_SPEED_MAX_INT 220
  202. #define CMR2_INT_TO_SPEED(_speed) ((uint8_t)((float)_speed / BMSC_CMR2_SPEED_FACTOR))
  203. #define BMSC_CMR2_SPEED_MIN CMR2_INT_TO_SPEED(BMSC_CMR2_SPEED_MIN_INT)
  204. #define BMSC_CMR2_SPEED_DEF CMR2_INT_TO_SPEED(BMSC_CMR2_SPEED_DEF_INT)
  205. #define BMSC_CMR2_SPEED_MAX CMR2_INT_TO_SPEED(BMSC_CMR2_SPEED_MAX_INT)
  206. #define BMSC_CMR2_SPEED_INC 1
  207. #define BMSC_CMR2_SPEED_DEC -1
  208. #define BMSC_CMR2_SPEED_FAIL -10
  209. #define BMSC_CMR2_PREFIX ((uint8_t)0xB7)
  210. #define BMSC_CMR2_CMD_SPEED ((uint8_t)0)
  211. #define BMSC_CMR2_CMD_FLASH ((uint8_t)1)
  212. #define BMSC_CMR2_DATA_FLASH_OFF ((uint8_t)0)
  213. #define BMSC_CMR2_DATA_FLASH_ON ((uint8_t)1)
  214. #define BMSC_CMR2_CHECK ((uint8_t)0x6D)
  215. struct BMSC_WORK {
  216. uint8_t midstate[BMSC_MIDSTATE_SIZE];
  217. // These 4 bytes are for CMR2 bitstreams that handle MHz adjustment
  218. uint8_t check;
  219. uint8_t data;
  220. uint8_t cmd;
  221. uint8_t prefix;
  222. uint8_t unused[BMSC_UNUSED_SIZE];
  223. uint8_t workid;
  224. uint8_t work[BMSC_WORK_SIZE];
  225. };
  226. #define END_CONDITION 0x0000ffff
  227. // Looking for options in --bmsc-timing and --bmsc-options:
  228. //
  229. // Code increments this each time we start to look at a device
  230. // However, this means that if other devices are checked by
  231. // the Bmsc code (e.g. Avalon only as at 20130517)
  232. // they will count in the option offset
  233. //
  234. // This, however, is deterministic so that's OK
  235. //
  236. // If we were to increment after successfully finding an Bmsc
  237. // that would be random since an Bmsc may fail and thus we'd
  238. // not be able to predict the option order
  239. //
  240. // Devices are checked in the order libusb finds them which is ?
  241. //
  242. static int option_offset = -1;
  243. unsigned char CRC5(unsigned char *ptr, unsigned char len)
  244. {
  245. unsigned char i, j, k;
  246. unsigned char crc = 0x1f;
  247. unsigned char crcin[5] = {1, 1, 1, 1, 1};
  248. unsigned char crcout[5] = {1, 1, 1, 1, 1};
  249. unsigned char din = 0;
  250. j = 0x80;
  251. k = 0;
  252. for (i = 0; i < len; i++)
  253. {
  254. if (*ptr & j) {
  255. din = 1;
  256. } else {
  257. din = 0;
  258. }
  259. crcout[0] = crcin[4] ^ din;
  260. crcout[1] = crcin[0];
  261. crcout[2] = crcin[1] ^ crcin[4] ^ din;
  262. crcout[3] = crcin[2];
  263. crcout[4] = crcin[3];
  264. j = j >> 1;
  265. k++;
  266. if (k == 8)
  267. {
  268. j = 0x80;
  269. k = 0;
  270. ptr++;
  271. }
  272. memcpy(crcin, crcout, 5);
  273. }
  274. crc = 0;
  275. if(crcin[4]) {
  276. crc |= 0x10;
  277. }
  278. if(crcin[3]) {
  279. crc |= 0x08;
  280. }
  281. if(crcin[2]) {
  282. crc |= 0x04;
  283. }
  284. if(crcin[1]) {
  285. crc |= 0x02;
  286. }
  287. if(crcin[0]) {
  288. crc |= 0x01;
  289. }
  290. return crc;
  291. }
  292. static void _transfer(struct cgpu_info *bmsc, uint8_t request_type, uint8_t bRequest, uint16_t wValue, uint16_t wIndex, uint32_t *data, int siz, enum usb_cmds cmd)
  293. {
  294. int err;
  295. err = usb_transfer_data(bmsc, request_type, bRequest, wValue, wIndex, data, siz, cmd);
  296. applog(LOG_DEBUG, "%s: cgid %d %s got err %d",
  297. bmsc->drv->name, bmsc->cgminer_id,
  298. usb_cmdname(cmd), err);
  299. }
  300. #define transfer(bmsc, request_type, bRequest, wValue, wIndex, cmd) \
  301. _transfer(bmsc, request_type, bRequest, wValue, wIndex, NULL, 0, cmd)
  302. static void bmsc_initialise(struct cgpu_info *bmsc, int baud)
  303. {
  304. struct BMSC_INFO *info = (struct BMSC_INFO *)(bmsc->device_data);
  305. uint16_t wValue, wIndex;
  306. enum sub_ident ident;
  307. int interface;
  308. if (bmsc->usbinfo.nodev)
  309. return;
  310. interface = _usb_interface(bmsc, info->intinfo);
  311. ident = usb_ident(bmsc);
  312. switch (ident) {
  313. case IDENT_BLT:
  314. case IDENT_LLT:
  315. case IDENT_CMR1:
  316. case IDENT_CMR2:
  317. // Reset
  318. transfer(bmsc, FTDI_TYPE_OUT, FTDI_REQUEST_RESET, FTDI_VALUE_RESET,
  319. interface, C_RESET);
  320. if (bmsc->usbinfo.nodev)
  321. return;
  322. // Latency
  323. _usb_ftdi_set_latency(bmsc, info->intinfo);
  324. if (bmsc->usbinfo.nodev)
  325. return;
  326. // Set data control
  327. transfer(bmsc, FTDI_TYPE_OUT, FTDI_REQUEST_DATA, FTDI_VALUE_DATA_BLT,
  328. interface, C_SETDATA);
  329. if (bmsc->usbinfo.nodev)
  330. return;
  331. // default to BLT/LLT 115200
  332. wValue = FTDI_VALUE_BAUD_BLT;
  333. wIndex = FTDI_INDEX_BAUD_BLT;
  334. if (ident == IDENT_CMR1 || ident == IDENT_CMR2) {
  335. switch (baud) {
  336. case 115200:
  337. wValue = FTDI_VALUE_BAUD_CMR_115;
  338. wIndex = FTDI_INDEX_BAUD_CMR_115;
  339. break;
  340. case 57600:
  341. wValue = FTDI_VALUE_BAUD_CMR_57;
  342. wIndex = FTDI_INDEX_BAUD_CMR_57;
  343. break;
  344. default:
  345. quit(1, "bmsc_intialise() invalid baud (%d) for Cairnsmore1", baud);
  346. break;
  347. }
  348. }
  349. // Set the baud
  350. transfer(bmsc, FTDI_TYPE_OUT, FTDI_REQUEST_BAUD, wValue,
  351. (wIndex & 0xff00) | interface, C_SETBAUD);
  352. if (bmsc->usbinfo.nodev)
  353. return;
  354. // Set Modem Control
  355. transfer(bmsc, FTDI_TYPE_OUT, FTDI_REQUEST_MODEM, FTDI_VALUE_MODEM,
  356. interface, C_SETMODEM);
  357. if (bmsc->usbinfo.nodev)
  358. return;
  359. // Set Flow Control
  360. transfer(bmsc, FTDI_TYPE_OUT, FTDI_REQUEST_FLOW, FTDI_VALUE_FLOW,
  361. interface, C_SETFLOW);
  362. if (bmsc->usbinfo.nodev)
  363. return;
  364. // Clear any sent data
  365. transfer(bmsc, FTDI_TYPE_OUT, FTDI_REQUEST_RESET, FTDI_VALUE_PURGE_TX,
  366. interface, C_PURGETX);
  367. if (bmsc->usbinfo.nodev)
  368. return;
  369. // Clear any received data
  370. transfer(bmsc, FTDI_TYPE_OUT, FTDI_REQUEST_RESET, FTDI_VALUE_PURGE_RX,
  371. interface, C_PURGERX);
  372. break;
  373. case IDENT_ICA:
  374. // Set Data Control
  375. transfer(bmsc, PL2303_CTRL_OUT, PL2303_REQUEST_CTRL, PL2303_VALUE_CTRL,
  376. interface, C_SETDATA);
  377. if (bmsc->usbinfo.nodev)
  378. return;
  379. // Set Line Control
  380. uint32_t ica_data[2] = { PL2303_VALUE_LINE0, PL2303_VALUE_LINE1 };
  381. _transfer(bmsc, PL2303_CTRL_OUT, PL2303_REQUEST_LINE, PL2303_VALUE_LINE,
  382. interface, &ica_data[0], PL2303_VALUE_LINE_SIZE, C_SETLINE);
  383. if (bmsc->usbinfo.nodev)
  384. return;
  385. // Vendor
  386. transfer(bmsc, PL2303_VENDOR_OUT, PL2303_REQUEST_VENDOR, PL2303_VALUE_VENDOR,
  387. interface, C_VENDOR);
  388. break;
  389. case IDENT_AMU:
  390. // Enable the UART
  391. transfer(bmsc, CP210X_TYPE_OUT, CP210X_REQUEST_IFC_ENABLE,
  392. CP210X_VALUE_UART_ENABLE,
  393. interface, C_ENABLE_UART);
  394. if (bmsc->usbinfo.nodev)
  395. return;
  396. // Set data control
  397. transfer(bmsc, CP210X_TYPE_OUT, CP210X_REQUEST_DATA, CP210X_VALUE_DATA,
  398. interface, C_SETDATA);
  399. if (bmsc->usbinfo.nodev)
  400. return;
  401. // Set the baud
  402. uint32_t data = CP210X_DATA_BAUD;
  403. _transfer(bmsc, CP210X_TYPE_OUT, CP210X_REQUEST_BAUD, 0,
  404. interface, &data, sizeof(data), C_SETBAUD);
  405. break;
  406. default:
  407. quit(1, "bmsc_intialise() called with invalid %s cgid %i ident=%d",
  408. bmsc->drv->name, bmsc->cgminer_id, ident);
  409. }
  410. }
  411. #define BTM_NONCE_ERROR -1
  412. #define BTM_NONCE_OK 0
  413. #define BTM_NONCE_RESTART 1
  414. #define BTM_NONCE_TIMEOUT 2
  415. static int bmsc_get_nonce(struct cgpu_info *bmsc, unsigned char *buf, struct timeval *tv_start,
  416. struct timeval *tv_finish, struct thr_info *thr, int read_time)
  417. {
  418. struct BMSC_INFO *info = (struct BMSC_INFO *)(bmsc->device_data);
  419. int err, amt, rc;
  420. if (bmsc->usbinfo.nodev)
  421. return BTM_NONCE_ERROR;
  422. cgtime(tv_start);
  423. err = usb_read_ii_timeout_cancellable(bmsc, info->intinfo, (char *)buf,
  424. BMSC_READ_SIZE, &amt, read_time,
  425. C_GETRESULTS);
  426. cgtime(tv_finish);
  427. if (err < 0 && err != LIBUSB_ERROR_TIMEOUT) {
  428. applog(LOG_ERR, "%s%i: Comms error (rerr=%d amt=%d)", bmsc->drv->name,
  429. bmsc->device_id, err, amt);
  430. dev_error(bmsc, REASON_DEV_COMMS_ERROR);
  431. return BTM_NONCE_ERROR;
  432. }
  433. if (amt >= BMSC_READ_SIZE)
  434. return BTM_NONCE_OK;
  435. rc = SECTOMS(tdiff(tv_finish, tv_start));
  436. if (thr && thr->work_restart) {
  437. applog(LOG_DEBUG, "Bmsc Read: Work restart at %d ms", rc);
  438. return BTM_NONCE_RESTART;
  439. }
  440. if (amt > 0)
  441. applog(LOG_DEBUG, "Bmsc Read: Timeout reading for %d ms", rc);
  442. else
  443. applog(LOG_DEBUG, "Bmsc Read: No data for %d ms", rc);
  444. return BTM_NONCE_TIMEOUT;
  445. }
  446. static const char *timing_mode_str(enum timing_mode timing_mode)
  447. {
  448. switch(timing_mode) {
  449. case MODE_DEFAULT:
  450. return MODE_DEFAULT_STR;
  451. case MODE_SHORT:
  452. return MODE_SHORT_STR;
  453. case MODE_LONG:
  454. return MODE_LONG_STR;
  455. case MODE_VALUE:
  456. return MODE_VALUE_STR;
  457. default:
  458. return MODE_UNKNOWN_STR;
  459. }
  460. }
  461. static void set_timing_mode(int this_option_offset, struct cgpu_info *bmsc, float readtimeout)
  462. {
  463. struct BMSC_INFO *info = (struct BMSC_INFO *)(bmsc->device_data);
  464. enum sub_ident ident;
  465. double Hs;
  466. char buf[BUFSIZ+1];
  467. char *ptr, *comma, *eq;
  468. size_t max;
  469. int i;
  470. ident = usb_ident(bmsc);
  471. switch (ident) {
  472. case IDENT_ICA:
  473. info->Hs = BMSC_REV3_HASH_TIME;
  474. break;
  475. case IDENT_BLT:
  476. case IDENT_LLT:
  477. info->Hs = LANCELOT_HASH_TIME;
  478. break;
  479. case IDENT_AMU:
  480. info->Hs = ASICMINERUSB_HASH_TIME;
  481. break;
  482. case IDENT_CMR1:
  483. info->Hs = CAIRNSMORE1_HASH_TIME;
  484. break;
  485. case IDENT_CMR2:
  486. info->Hs = CAIRNSMORE2_HASH_TIME;
  487. break;
  488. default:
  489. quit(1, "Bmsc get_options() called with invalid %s ident=%d",
  490. bmsc->drv->name, ident);
  491. }
  492. info->read_time = 0;
  493. info->read_time_limit = 0; // 0 = no limit
  494. info->fullnonce = info->Hs * (((double) 0xffffffff) + 1);
  495. info->read_time = (int)(readtimeout * BMSC_WAIT_TIMEOUT);
  496. if(info->read_time < 0)
  497. info->read_time = 1;
  498. info->timing_mode = MODE_DEFAULT;
  499. info->do_bmsc_timing = false;
  500. info->min_data_count = MIN_DATA_COUNT;
  501. // All values are in multiples of BMSC_WAIT_TIMEOUT
  502. info->read_time_limit *= BMSC_WAIT_TIMEOUT;
  503. applog(LOG_ERR, "%s%d Init: mode=%s read_time=%dms limit=%dms Hs=%e",
  504. bmsc->drv->name, bmsc->cgminer_id,
  505. timing_mode_str(info->timing_mode),
  506. info->read_time, info->read_time_limit, info->Hs);
  507. }
  508. static uint32_t mask(int work_division)
  509. {
  510. uint32_t nonce_mask = 0x7fffffff;
  511. // yes we can calculate these, but this way it's easy to see what they are
  512. switch (work_division) {
  513. case 1:
  514. nonce_mask = 0xffffffff;
  515. break;
  516. case 2:
  517. nonce_mask = 0x7fffffff;
  518. break;
  519. case 4:
  520. nonce_mask = 0x3fffffff;
  521. break;
  522. case 8:
  523. nonce_mask = 0x1fffffff;
  524. break;
  525. default:
  526. quit(1, "Invalid2 bmsc-options for work_division (%d) must be 1, 2, 4 or 8", work_division);
  527. }
  528. return nonce_mask;
  529. }
  530. static void get_options(int this_option_offset, struct cgpu_info *bmsc, int *baud, float *readtimeout)
  531. {
  532. char buf[BUFSIZ+1];
  533. char *ptr, *comma, *colon, *colon2;
  534. enum sub_ident ident;
  535. size_t max;
  536. int i, tmp;
  537. float tmpf;
  538. if (opt_bmsc_options == NULL)
  539. buf[0] = '\0';
  540. else {
  541. ptr = opt_bmsc_options;
  542. for (i = 0; i < this_option_offset; i++) {
  543. comma = strchr(ptr, ',');
  544. if (comma == NULL)
  545. break;
  546. ptr = comma + 1;
  547. }
  548. comma = strchr(ptr, ',');
  549. if (comma == NULL)
  550. max = strlen(ptr);
  551. else
  552. max = comma - ptr;
  553. if (max > BUFSIZ)
  554. max = BUFSIZ;
  555. strncpy(buf, ptr, max);
  556. buf[max] = '\0';
  557. }
  558. ident = usb_ident(bmsc);
  559. switch (ident) {
  560. case IDENT_ICA:
  561. case IDENT_BLT:
  562. case IDENT_LLT:
  563. *baud = BMSC_IO_SPEED;
  564. break;
  565. case IDENT_AMU:
  566. *baud = BMSC_IO_SPEED;
  567. break;
  568. case IDENT_CMR1:
  569. *baud = BMSC_IO_SPEED;
  570. break;
  571. case IDENT_CMR2:
  572. *baud = BMSC_IO_SPEED;
  573. break;
  574. default:
  575. quit(1, "Bmsc get_options() called with invalid %s ident=%d",
  576. bmsc->drv->name, ident);
  577. }
  578. if (*buf) {
  579. colon = strchr(buf, ':');
  580. if (colon)
  581. *(colon++) = '\0';
  582. if (*buf) {
  583. tmp = atoi(buf);
  584. switch (tmp) {
  585. case 115200:
  586. *baud = 115200;
  587. break;
  588. case 57600:
  589. *baud = 57600;
  590. break;
  591. default:
  592. quit(1, "Invalid bmsc-options for baud (%s) must be 115200 or 57600", buf);
  593. }
  594. }
  595. if (colon && *colon) {
  596. tmpf = atof(colon);
  597. if (tmpf > 0) {
  598. *readtimeout = tmpf;
  599. } else {
  600. quit(1, "Invalid bmsc-options for timeout (%s) must be > 0", colon);
  601. }
  602. }
  603. }
  604. }
  605. static void get_bandops(unsigned char * core_buf, int *corenum, char *coreenable, int *coresleep)
  606. {
  607. char buf[512] = {0};
  608. char *colon, *colon2, * colon3;
  609. int i, len;
  610. if (opt_bmsc_bandops) {
  611. len = strlen(opt_bmsc_bandops);
  612. if(len <= 0 || len >= 512) {
  613. quit(1, "Invalid bmsc-bandops %s %d", opt_bmsc_bandops, len);
  614. }
  615. strcpy(buf, opt_bmsc_bandops);
  616. colon = strchr(buf, ':');
  617. if (colon)
  618. *(colon++) = '\0';
  619. if (*buf) {
  620. if(strlen(buf) > 8 || strlen(buf)%2 != 0 || strlen(buf)/2 == 0) {
  621. quit(1, "Invalid bitmain-options for core command, must be hex now: %s", buf);
  622. }
  623. memset(core_buf, 0, 4);
  624. if(!hex2bin(core_buf, buf, strlen(buf)/2)) {
  625. quit(1, "Invalid bitmain-options for core command, hex2bin error now: %s", buf);
  626. }
  627. }
  628. if (colon && *colon) {
  629. colon2 = strchr(colon, ':');
  630. if (colon2)
  631. *(colon2++) = '\0';
  632. if (*colon) {
  633. *corenum = atoi(colon);
  634. if(*corenum <= 0 || *corenum >= 256) {
  635. quit(1, "Invalid bitmain-bandops for asic core num, must %d be > 0 and < 256", *corenum);
  636. }
  637. }
  638. if(colon2 && *colon2) {
  639. colon3 = strchr(colon2, ':');
  640. if (colon3)
  641. *(colon3++) = '\0';
  642. if(*colon2) {
  643. strcpy(coreenable, colon2);
  644. if(strlen(coreenable) != *corenum) {
  645. quit(1, "Invalid bitmain-bandops for asic core enable, must be equal core num %d", *corenum);
  646. }
  647. }
  648. if (colon3 && *colon3) {
  649. *coresleep = atoi(colon3);
  650. }
  651. }
  652. }
  653. }
  654. }
  655. static struct cgpu_info *bmsc_detect_one(struct libusb_device *dev, struct usb_find_devices *found)
  656. {
  657. int this_option_offset = ++option_offset;
  658. struct BMSC_INFO *info;
  659. struct timeval tv_start, tv_finish;
  660. // Block 171874 nonce = (0xa2870100) = 0x000187a2
  661. // N.B. golden_ob MUST take less time to calculate
  662. // than the timeout set in bmsc_open()
  663. // This one takes ~0.53ms on Rev3 Bmsc
  664. const char golden_ob[] =
  665. "4679ba4ec99876bf4bfe086082b40025"
  666. "4df6c356451471139a3afa71e48f544a"
  667. "00000000000000004000000000000000"
  668. "0000001f87320b1a1426674f2fa722ce";
  669. const char golden_ob1[] =
  670. "e1eb393a50f6ae97e306ea87c1c47eae"
  671. "1f9ad02d729d9f86bd48a213a4600144"
  672. "00000000000000004000000000000000"
  673. "0000001ffb0b0719aaf19752dd5e83a4";
  674. const char golden_ob2[] =
  675. "b65911ea2c4b0c52958cb408caebff32"
  676. "8dece4e6a002fe2693ba9906ffde7e8a"
  677. "00000000000000004000000000000000"
  678. "0000001f20dc1c190642455201756658";
  679. const char golden_ob3[] =
  680. "c99da189374bcc69a1134d6f4953addc"
  681. "7420499b132b7f8f999b0c71fe7efbf2"
  682. "00000000000000004000000000000000"
  683. "0000001f20dc1c198e4145526d74dee3";
  684. const char golden_ob4[] =
  685. "696af96144b6079c1b437fbc6e539e4d"
  686. "996d25b027ea9eefdfaf4eff6add6986"
  687. "00000000000000004000000000000000"
  688. "0000001f20dc1c19f84e4552ac86dc14";
  689. char bandops_ob[] =
  690. "00000000000000000000000000000000"
  691. "00000000000000000000000000000000"
  692. "00000000000000000000000000000000"
  693. "00000000000000000000000000000000";
  694. const char golden_nonce[] = "000187a2";
  695. const char golden_nonce1[] = "0345182b";
  696. const char golden_nonce2[] = "466b30a5";
  697. const char golden_nonce3[] = "857e65ee";
  698. const char golden_nonce4[] = "c6f70284";
  699. const uint32_t golden_nonce_val = 0x000187a2;
  700. unsigned char nonce_bin[BMSC_READ_SIZE];
  701. struct BMSC_WORK workdata;
  702. char *nonce_hex;
  703. int baud = 115200, work_division = 1, fpga_count = 1;
  704. float readtimeout = 1.0;
  705. struct cgpu_info *bmsc;
  706. int ret, err, amount, tries, i;
  707. bool ok;
  708. bool cmr2_ok[CAIRNSMORE2_INTS];
  709. int cmr2_count;
  710. unsigned char cmd_buf[4] = {0};
  711. unsigned char rdreg_buf[4] = {0};
  712. unsigned char reg_data[4] = {0};
  713. unsigned char voltage_data[2] = {0};
  714. unsigned char rebuf[BMSC_READ_BUF_LEN] = {0};
  715. int relen = 0;
  716. int realllen = 0;
  717. int nodata = 0;
  718. char msg[10240] = {0};
  719. int sendfreqstatus = 1;
  720. int k = 0;
  721. unsigned char core_cmd[4] = {0};
  722. int corenum = 0;
  723. char coreenable[256] = {0};
  724. int coresleep = 0;
  725. if (opt_bmsc_options == NULL)
  726. return NULL;
  727. if ((sizeof(workdata) << 1) != (sizeof(golden_ob) - 1))
  728. quithere(1, "Data and golden_ob sizes don't match");
  729. if ((sizeof(workdata) << 1) != (sizeof(bandops_ob) - 1))
  730. quithere(1, "Data and bandops_ob sizes don't match");
  731. bmsc = usb_alloc_cgpu(&bmsc_drv, 1);
  732. if (!usb_init(bmsc, dev, found))
  733. goto shin;
  734. get_options(this_option_offset, bmsc, &baud, &readtimeout);
  735. get_bandops(core_cmd, &corenum, coreenable, &coresleep);
  736. info = (struct BMSC_INFO *)calloc(1, sizeof(struct BMSC_INFO));
  737. if (unlikely(!info))
  738. quit(1, "Failed to malloc BMSC_INFO");
  739. bmsc->device_data = (void *)info;
  740. info->ident = usb_ident(bmsc);
  741. info->start = true;
  742. switch (info->ident) {
  743. case IDENT_ICA:
  744. case IDENT_BLT:
  745. case IDENT_LLT:
  746. case IDENT_AMU:
  747. case IDENT_CMR1:
  748. info->timeout = BMSC_WAIT_TIMEOUT;
  749. break;
  750. case IDENT_CMR2:
  751. if (found->intinfo_count != CAIRNSMORE2_INTS) {
  752. quithere(1, "CMR2 Interface count (%d) isn't expected: %d",
  753. found->intinfo_count,
  754. CAIRNSMORE2_INTS);
  755. }
  756. info->timeout = BMSC_CMR2_TIMEOUT;
  757. cmr2_count = 0;
  758. for (i = 0; i < CAIRNSMORE2_INTS; i++)
  759. cmr2_ok[i] = false;
  760. break;
  761. default:
  762. quit(1, "%s bmsc_detect_one() invalid %s ident=%d",
  763. bmsc->drv->dname, bmsc->drv->dname, info->ident);
  764. }
  765. // For CMR2 test each USB Interface
  766. cmr2_retry:
  767. tries = 2;
  768. ok = false;
  769. while (!ok && tries-- > 0) {
  770. bmsc_initialise(bmsc, baud);
  771. if(opt_bmsc_bootstart) {
  772. applog(LOG_ERR, "---------------------start bootstart----------------------");
  773. cmd_buf[0] = 0xbb;
  774. cmd_buf[1] = 0x00;
  775. cmd_buf[2] = 0x00;
  776. cmd_buf[3] = 0x00; //0-7
  777. cmd_buf[3] = CRC5(cmd_buf, 27);
  778. cmd_buf[3] |= 0x80;
  779. cgsleep_ms(500);
  780. applog(LOG_ERR, "Send bootstart off %02x%02x%02x%02x", cmd_buf[0], cmd_buf[1], cmd_buf[2], cmd_buf[3]);
  781. err = usb_write(bmsc, (char * )cmd_buf, 4, &amount, C_SENDTESTWORK);
  782. if (err != LIBUSB_SUCCESS || amount != 4) {
  783. applog(LOG_ERR, "Write bootstart Comms error (werr=%d amount=%d)", err, amount);
  784. continue;
  785. }
  786. cmd_buf[0] = 0xbb;
  787. cmd_buf[1] = 0x08;
  788. cmd_buf[2] = 0x00;
  789. cmd_buf[3] = 0x00; //0-7
  790. cmd_buf[3] = CRC5(cmd_buf, 27);
  791. cmd_buf[3] |= 0x80;
  792. cgsleep_ms(500);
  793. applog(LOG_ERR, "Send bootstart on %02x%02x%02x%02x", cmd_buf[0], cmd_buf[1], cmd_buf[2], cmd_buf[3]);
  794. err = usb_write(bmsc, (char * )cmd_buf, 4, &amount, C_SENDTESTWORK);
  795. if (err != LIBUSB_SUCCESS || amount != 4) {
  796. applog(LOG_ERR, "Write bootstart Comms error (werr=%d amount=%d)", err, amount);
  797. continue;
  798. }
  799. applog(LOG_ERR, "Send bootstart ok");
  800. }
  801. if(opt_bmsc_voltage) {
  802. if(strlen(opt_bmsc_voltage) > 4 || strlen(opt_bmsc_voltage)%2 != 0 || strlen(opt_bmsc_voltage)/2 == 0) {
  803. quit(1, "Invalid options for voltage data, must be hex now: %s", opt_bmsc_voltage);
  804. }
  805. memset(voltage_data, 0, 2);
  806. if(!hex2bin(voltage_data, opt_bmsc_voltage, strlen(opt_bmsc_voltage)/2)) {
  807. quit(1, "Invalid options for voltage data, hex2bin error now: %s", opt_bmsc_voltage);
  808. }
  809. cmd_buf[0] = 0xaa;
  810. cmd_buf[1] = voltage_data[0];
  811. cmd_buf[1] &=0x0f;
  812. cmd_buf[1] |=0xb0;
  813. cmd_buf[2] = voltage_data[1];
  814. cmd_buf[3] = 0x00; //0-7
  815. cmd_buf[3] = CRC5(cmd_buf, 4*8 - 5);
  816. cmd_buf[3] |= 0xc0;
  817. applog(LOG_ERR, "---------------------start voltage----------------------");
  818. cgsleep_ms(500);
  819. applog(LOG_ERR, "Send voltage %02x%02x%02x%02x", cmd_buf[0], cmd_buf[1], cmd_buf[2], cmd_buf[3]);
  820. err = usb_write(bmsc, (char * )cmd_buf, 4, &amount, C_SENDTESTWORK);
  821. if (err != LIBUSB_SUCCESS || amount != 4) {
  822. applog(LOG_ERR, "Write voltage Comms error (werr=%d amount=%d)", err, amount);
  823. continue;
  824. }
  825. applog(LOG_ERR, "Send voltage ok");
  826. }
  827. if (opt_bmsc_gray) {
  828. cmd_buf[0] = 3;
  829. cmd_buf[0] |= 0x80;
  830. cmd_buf[1] = 0; //16-23
  831. cmd_buf[2] = 0x80; //8-15
  832. cmd_buf[3] = 0x80; //0-7
  833. cmd_buf[3] = CRC5(cmd_buf, 27);
  834. cmd_buf[3] |= 0x80;
  835. applog(LOG_ERR, "-----------------start gray-------------------");
  836. cgsleep_ms(500);
  837. applog(LOG_ERR, "Send gray %02x%02x%02x%02x", cmd_buf[0], cmd_buf[1], cmd_buf[2], cmd_buf[3]);
  838. err = usb_write_ii(bmsc, info->intinfo, (char * )cmd_buf, 4, &amount, C_SENDWORK);
  839. if (err != LIBUSB_SUCCESS || amount != 4) {
  840. applog(LOG_ERR, "%s%i: Write freq Comms error (werr=%d amount=%d)", bmsc->drv->name, bmsc->device_id, err, amount);
  841. continue;
  842. }
  843. applog(LOG_DEBUG, "Send gray ok");
  844. }
  845. if (opt_bmsc_freq) {
  846. if (strcmp(opt_bmsc_freq, "0") != 0) {
  847. applog(LOG_DEBUG, "Device detect freq parameter=%s", opt_bmsc_freq);
  848. if (strlen(opt_bmsc_freq) > 8 || strlen(opt_bmsc_freq) % 2 != 0 || strlen(opt_bmsc_freq) / 2 == 0) {
  849. quit(1, "Invalid bmsc_freq for freq data, must be hex now: %s", opt_bmsc_freq);
  850. }
  851. memset(reg_data, 0, 4);
  852. if (!hex2bin(reg_data, opt_bmsc_freq, strlen(opt_bmsc_freq) / 2)) {
  853. quit(1, "Invalid bmsc_freq for freq data, hex2bin error now: %s", opt_bmsc_freq);
  854. }
  855. cmd_buf[0] = 2;
  856. cmd_buf[0] |= 0x80;
  857. cmd_buf[1] = reg_data[0]; //16-23
  858. cmd_buf[2] = reg_data[1]; //8-15
  859. cmd_buf[3] = 0;
  860. cmd_buf[3] = CRC5(cmd_buf, 27);
  861. applog(LOG_DEBUG, "Set_frequency cmd_buf[1]{%02x}cmd_buf[2]{%02x}", cmd_buf[1], cmd_buf[2]);
  862. rdreg_buf[0] = 4;
  863. rdreg_buf[0] |= 0x80;
  864. rdreg_buf[1] = 0; //16-23
  865. rdreg_buf[2] = 0x04; //8-15
  866. rdreg_buf[3] = 0;
  867. rdreg_buf[3] = CRC5(rdreg_buf, 27);
  868. applog(LOG_ERR, "-----------------start freq-------------------");
  869. cgsleep_ms(500);
  870. applog(LOG_ERR, "Send frequency %02x%02x%02x%02x", cmd_buf[0], cmd_buf[1], cmd_buf[2], cmd_buf[3]);
  871. err = usb_write_ii(bmsc, info->intinfo, (char * )cmd_buf, 4, &amount, C_SENDWORK);
  872. if (err != LIBUSB_SUCCESS || amount != 4) {
  873. applog(LOG_ERR, "%s%i: Write freq Comms error (werr=%d amount=%d)", bmsc->drv->name, bmsc->device_id, err, amount);
  874. continue;
  875. }
  876. applog(LOG_DEBUG, "Send frequency ok");
  877. cgsleep_ms(500);
  878. applog(LOG_ERR, "Send freq getstatus %02x%02x%02x%02x", rdreg_buf[0], rdreg_buf[1], rdreg_buf[2], rdreg_buf[3]);
  879. for(i = 0; i < 10; i++) {
  880. usb_read_ii_timeout_cancellable(bmsc, info->intinfo, (char * )rebuf, BMSC_READ_SIZE, &relen, 100, C_GETRESULTS);
  881. }
  882. err = usb_write_ii(bmsc, info->intinfo, (char * )rdreg_buf, 4, &amount, C_SENDWORK);
  883. if (err != LIBUSB_SUCCESS || amount != 4) {
  884. applog(LOG_ERR, "%s%i: Write freq getstatus Comms error (werr=%d amount=%d)", bmsc->drv->name, bmsc->device_id, err, amount);
  885. continue;
  886. }
  887. applog(LOG_DEBUG, "Send freq getstatus ok");
  888. nodata = 0;
  889. realllen = 0;
  890. while (1) {
  891. relen = 0;
  892. err = usb_read_ii_timeout_cancellable(bmsc, info->intinfo, (char * )rebuf + realllen, BMSC_READ_SIZE, &relen, 200, C_GETRESULTS);
  893. if (err < 0 && err != LIBUSB_ERROR_TIMEOUT) {
  894. applog(LOG_ERR, "%s%i: Read freq Comms error (rerr=%d relen=%d)", bmsc->drv->name, bmsc->device_id, err, relen);
  895. break;
  896. } else if (err == LIBUSB_ERROR_TIMEOUT) {
  897. applog(LOG_DEBUG, "%s%i: Read freq Comms timeout (rerr=%d relen=%d)", bmsc->drv->name, bmsc->device_id, err, relen);
  898. nodata++;
  899. if (nodata > 5) {
  900. if (realllen <= 0) {
  901. if (sendfreqstatus) {
  902. sendfreqstatus = 0;
  903. applog(LOG_ERR, "Send freq getstatus %02x%02x%02x%02x", rdreg_buf[0], rdreg_buf[1], rdreg_buf[2], rdreg_buf[3]);
  904. usb_read_ii_timeout_cancellable(bmsc, info->intinfo, (char * )rebuf, BMSC_READ_SIZE, &relen, 200, C_GETRESULTS);
  905. err = usb_write_ii(bmsc, info->intinfo, (char * )rdreg_buf, 4, &amount, C_SENDWORK);
  906. if (err != LIBUSB_SUCCESS || amount != 4) {
  907. applog(LOG_ERR, "%s%i: Write freq getstatus Comms error (werr=%d amount=%d)", bmsc->drv->name, bmsc->device_id, err, amount);
  908. continue;
  909. }
  910. applog(LOG_DEBUG, "Send freq getstatus ok");
  911. } else {
  912. applog(LOG_ERR, "------recv freq getstatus no data finish------");
  913. break;
  914. }
  915. } else {
  916. applog(LOG_DEBUG, "Recv freq getstatus len=%d", realllen);
  917. for (i = 0; i < realllen; i += 5) {
  918. applog(LOG_ERR, "Recv %d freq getstatus=%02x%02x%02x%02x%02x", i / 5 + 1, rebuf[i], rebuf[i + 1], rebuf[i + 2], rebuf[i + 3], rebuf[i + 4]);
  919. }
  920. applog(LOG_ERR, "--------recv freq getstatus ok finish---------");
  921. break;
  922. }
  923. }
  924. continue;
  925. } else {
  926. nodata = 0;
  927. realllen += relen;
  928. for (i = 0; i < relen; i++) {
  929. sprintf(msg + i * 2, "%02x", rebuf[i]);
  930. }
  931. applog(LOG_DEBUG, "Read data(%d):%s", relen, msg);
  932. }
  933. }
  934. } else {
  935. applog(LOG_ERR, "Device detect freq 0 parameter");
  936. }
  937. }
  938. if (opt_bmsc_rdreg) {
  939. applog(LOG_DEBUG, "Device detect rdreg parameter=%s", opt_bmsc_rdreg);
  940. if (strlen(opt_bmsc_rdreg) > 8 || strlen(opt_bmsc_rdreg) % 2 != 0 || strlen(opt_bmsc_rdreg) / 2 == 0) {
  941. quit(1, "Invalid bmsc_rdreg for reg data, must be hex now: %s", opt_bmsc_rdreg);
  942. }
  943. memset(reg_data, 0, 4);
  944. if (!hex2bin(reg_data, opt_bmsc_rdreg, strlen(opt_bmsc_rdreg) / 2)) {
  945. quit(1, "Invalid bmsc_rdreg for reg data, hex2bin error now: %s", opt_bmsc_rdreg);
  946. }
  947. rdreg_buf[0] = 4;
  948. rdreg_buf[0] |= 0x80;
  949. rdreg_buf[1] = 0; //16-23
  950. rdreg_buf[2] = reg_data[0]; //8-15
  951. rdreg_buf[3] = 0;
  952. rdreg_buf[3] = CRC5(rdreg_buf, 27);
  953. applog(LOG_DEBUG, "Get_status rdreg_buf[1]{%02x}rdreg_buf[2]{%02x}", rdreg_buf[1], rdreg_buf[2]);
  954. applog(LOG_ERR, "-----------------start rdreg------------------");
  955. applog(LOG_ERR, "Send getstatus %02x%02x%02x%02x", rdreg_buf[0], rdreg_buf[1], rdreg_buf[2], rdreg_buf[3]);
  956. for(i = 0; i < 10; i++) {
  957. usb_read_ii_timeout_cancellable(bmsc, info->intinfo, (char * )rebuf, BMSC_READ_SIZE, &relen, 100, C_GETRESULTS);
  958. }
  959. err = usb_write_ii(bmsc, info->intinfo, (char * )rdreg_buf, 4, &amount, C_SENDWORK);
  960. if (err != LIBUSB_SUCCESS || amount != 4) {
  961. applog(LOG_ERR, "%s%i: Write rdreg Comms error (werr=%d amount=%d)", bmsc->drv->name, bmsc->device_id, err, amount);
  962. continue;
  963. }
  964. applog(LOG_DEBUG, "Send getstatus ok");
  965. nodata = 0;
  966. realllen = 0;
  967. while (1) {
  968. relen = 0;
  969. err = usb_read_ii_timeout_cancellable(bmsc, info->intinfo, (char * )rebuf + realllen, BMSC_READ_SIZE, &relen, 200, C_GETRESULTS);
  970. if (err < 0 && err != LIBUSB_ERROR_TIMEOUT) {
  971. applog(LOG_ERR, "%s%i: Read rdreg Comms error (rerr=%d relen=%d)", bmsc->drv->name, bmsc->device_id, err, relen);
  972. break;
  973. } else if (err == LIBUSB_ERROR_TIMEOUT) {
  974. applog(LOG_DEBUG, "%s%i: Read rdreg Comms timeout (rerr=%d relen=%d)", bmsc->drv->name, bmsc->device_id, err, relen);
  975. nodata++;
  976. if (nodata > 5) {
  977. applog(LOG_DEBUG, "Recv rdreg getstatus len=%d", realllen);
  978. for (i = 0; i < realllen; i += 5) {
  979. applog(LOG_ERR, "Recv %d rdreg getstatus=%02x%02x%02x%02x%02x", i / 5 + 1, rebuf[i], rebuf[i + 1], rebuf[i + 2], rebuf[i + 3], rebuf[i + 4]);
  980. }
  981. applog(LOG_ERR, "---------recv rdreg getstatus finish----------");
  982. break;
  983. }
  984. continue;
  985. } else {
  986. nodata = 0;
  987. realllen += relen;
  988. for (i = 0; i < relen; i++) {
  989. sprintf(msg + i * 2, "%02x", rebuf[i]);
  990. }
  991. applog(LOG_DEBUG, "Read data(%d):%s", relen, msg);
  992. }
  993. }
  994. }
  995. if (opt_bmsc_bandops) {
  996. unsigned char tmpbyte = 0;
  997. cmd_buf[0] = core_cmd[0];
  998. cmd_buf[1] = core_cmd[1];
  999. cmd_buf[2] = core_cmd[2];
  1000. tmpbyte = core_cmd[3] & 0xE0;
  1001. cmd_buf[3] = tmpbyte;
  1002. cmd_buf[3] = CRC5(cmd_buf, 27);
  1003. cmd_buf[3] |= tmpbyte;
  1004. applog(LOG_ERR, "-----------------start bandops-------------------");
  1005. applog(LOG_ERR, "SetBandOPS cmd:%02x%02x%02x%02x corenum:%d enable:%s sleep:%d", core_cmd[0], core_cmd[1], core_cmd[2], core_cmd[3], corenum, coreenable, coresleep);
  1006. cgsleep_ms(500);
  1007. applog(LOG_ERR, "Send bandops %02x%02x%02x%02x", cmd_buf[0], cmd_buf[1], cmd_buf[2], cmd_buf[3]);
  1008. err = usb_write_ii(bmsc, info->intinfo, (char * )cmd_buf, 4, &amount, C_SENDWORK);
  1009. if (err != LIBUSB_SUCCESS || amount != 4) {
  1010. applog(LOG_ERR, "%s%i: Write BandOPS Comms error (werr=%d amount=%d)", bmsc->drv->name, bmsc->device_id, err, amount);
  1011. continue;
  1012. }
  1013. applog(LOG_DEBUG, "Send bandops command ok");
  1014. for(i = 0; i < corenum; i++) {
  1015. if(coreenable[i] == '1') {
  1016. bandops_ob[127] = '1';
  1017. } else {
  1018. bandops_ob[127] = '0';
  1019. }
  1020. amount = 0;
  1021. hex2bin((void *)(&workdata), bandops_ob, sizeof(workdata));
  1022. applog(LOG_ERR, "Send %d %s", i, bandops_ob);
  1023. err = usb_write_ii(bmsc, info->intinfo, (char *)(&workdata), sizeof(workdata), &amount, C_SENDWORK);
  1024. if (err != LIBUSB_SUCCESS || amount != sizeof(workdata)) {
  1025. applog(LOG_ERR, "%d %s%i: Write BandOPS Enable Comms error (werr=%d amount=%d)", i, bmsc->drv->name, bmsc->device_id, err, amount);
  1026. break;
  1027. }
  1028. if(coresleep > 0) {
  1029. cgsleep_ms(coresleep);
  1030. }
  1031. }
  1032. if(i >= corenum) {
  1033. applog(LOG_DEBUG, "Send bandops core enable ok");
  1034. } else {
  1035. continue;
  1036. }
  1037. }
  1038. cgsleep_ms(1000);
  1039. applog(LOG_ERR, "-----------------start nonce------------------");
  1040. #if 0
  1041. applog(LOG_ERR, "Bmsc send golden nonce");
  1042. hex2bin((void *)(&workdata), golden_ob, sizeof(workdata));
  1043. err = usb_write_ii(bmsc, info->intinfo, (char *)(&workdata), sizeof(workdata), &amount, C_SENDWORK);
  1044. if (err != LIBUSB_SUCCESS || amount != sizeof(workdata))
  1045. continue;
  1046. memset(nonce_bin, 0, sizeof(nonce_bin));
  1047. ret = bmsc_get_nonce(bmsc, nonce_bin, &tv_start, &tv_finish, NULL, 500);
  1048. if (ret != BTM_NONCE_OK) {
  1049. applog(LOG_ERR, "Bmsc recv golden nonce timeout");
  1050. continue;
  1051. }
  1052. nonce_hex = bin2hex(nonce_bin, sizeof(nonce_bin));
  1053. if (strncmp(nonce_hex, golden_nonce, 8) == 0)
  1054. ok = true;
  1055. else {
  1056. applog(LOG_ERR, "Bmsc recv golden nonce %s != %s and retry", nonce_hex, golden_nonce);
  1057. if (tries < 0 && info->ident != IDENT_CMR2) {
  1058. applog(LOG_ERR, "Bmsc Detect: Test failed at %s: get %s, should: %s",
  1059. bmsc->device_path, nonce_hex, golden_nonce);
  1060. }
  1061. }
  1062. applog(LOG_ERR, "Bmsc recv golden nonce %s -- %s ", nonce_hex, golden_nonce);
  1063. #else
  1064. applog(LOG_ERR, "Bmsc send golden nonce1");
  1065. hex2bin((void *)(&workdata), golden_ob1, sizeof(workdata));
  1066. err = usb_write_ii(bmsc, info->intinfo, (char *)(&workdata), sizeof(workdata), &amount, C_SENDWORK);
  1067. if (err != LIBUSB_SUCCESS || amount != sizeof(workdata))
  1068. continue;
  1069. memset(nonce_bin, 0, sizeof(nonce_bin));
  1070. ret = bmsc_get_nonce(bmsc, nonce_bin, &tv_start, &tv_finish, NULL, 500);
  1071. if (ret != BTM_NONCE_OK) {
  1072. applog(LOG_ERR, "Bmsc recv golden nonce timeout");
  1073. continue;
  1074. }
  1075. nonce_hex = bin2hex(nonce_bin, sizeof(nonce_bin));
  1076. if (strncmp(nonce_hex, golden_nonce1, 8) == 0)
  1077. ok = true;
  1078. else {
  1079. applog(LOG_ERR, "Bmsc recv golden nonce %s != %s and retry", nonce_hex, golden_nonce1);
  1080. applog(LOG_ERR,"The first chip may not work,reconnrect the device will get better stats");
  1081. cgsleep_ms(1000);
  1082. if (tries < 0 && info->ident != IDENT_CMR2) {
  1083. applog(LOG_ERR, "Bmsc Detect: Test failed at %s: get %s, should: %s",
  1084. bmsc->device_path, nonce_hex, golden_nonce1);
  1085. }
  1086. }
  1087. applog(LOG_ERR, "Bmsc recv golden nonce1 %s -- %s ", nonce_hex, golden_nonce1);
  1088. applog(LOG_ERR, "Bmsc send golden nonce2");
  1089. hex2bin((void *)(&workdata), golden_ob2, sizeof(workdata));
  1090. err = usb_write_ii(bmsc, info->intinfo, (char *)(&workdata), sizeof(workdata), &amount, C_SENDWORK);
  1091. if (err != LIBUSB_SUCCESS || amount != sizeof(workdata))
  1092. continue;
  1093. memset(nonce_bin, 0, sizeof(nonce_bin));
  1094. ret = bmsc_get_nonce(bmsc, nonce_bin, &tv_start, &tv_finish, NULL, 500);
  1095. if (ret != BTM_NONCE_OK) {
  1096. applog(LOG_ERR, "Bmsc recv golden nonce timeout");
  1097. continue;
  1098. }
  1099. nonce_hex = bin2hex(nonce_bin, sizeof(nonce_bin));
  1100. if (strncmp(nonce_hex, golden_nonce2, 8) == 0)
  1101. ok = true;
  1102. else {
  1103. applog(LOG_ERR, "Bmsc recv golden nonce %s != %s and retry", nonce_hex, golden_nonce2);
  1104. applog(LOG_ERR,"The second chip may not work,reconnrect the device will get better stats");
  1105. cgsleep_ms(1000);
  1106. if (tries < 0 && info->ident != IDENT_CMR2) {
  1107. applog(LOG_ERR, "Bmsc Detect: Test failed at %s: get %s, should: %s",
  1108. bmsc->device_path, nonce_hex, golden_nonce2);
  1109. }
  1110. }
  1111. applog(LOG_ERR, "Bmsc recv golden nonce2 %s -- %s ", nonce_hex, golden_nonce2);
  1112. applog(LOG_ERR, "Bmsc send golden nonce3");
  1113. hex2bin((void *)(&workdata), golden_ob3, sizeof(workdata));
  1114. err = usb_write_ii(bmsc, info->intinfo, (char *)(&workdata), sizeof(workdata), &amount, C_SENDWORK);
  1115. if (err != LIBUSB_SUCCESS || amount != sizeof(workdata))
  1116. continue;
  1117. memset(nonce_bin, 0, sizeof(nonce_bin));
  1118. ret = bmsc_get_nonce(bmsc, nonce_bin, &tv_start, &tv_finish, NULL, 500);
  1119. if (ret != BTM_NONCE_OK) {
  1120. applog(LOG_ERR, "Bmsc recv golden nonce timeout");
  1121. continue;
  1122. }
  1123. nonce_hex = bin2hex(nonce_bin, sizeof(nonce_bin));
  1124. if (strncmp(nonce_hex, golden_nonce3, 8) == 0)
  1125. ok = true;
  1126. else {
  1127. applog(LOG_ERR, "Bmsc recv golden nonce %s != %s and retry", nonce_hex, golden_nonce3);
  1128. applog(LOG_ERR,"The third chip may not work,reconnrect the device will get better stats");
  1129. cgsleep_ms(1000);
  1130. if (tries < 0 && info->ident != IDENT_CMR2) {
  1131. applog(LOG_ERR, "Bmsc Detect: Test failed at %s: get %s, should: %s",
  1132. bmsc->device_path, nonce_hex, golden_nonce3);
  1133. }
  1134. }
  1135. applog(LOG_ERR, "Bmsc recv golden nonce %s -- %s ", nonce_hex, golden_nonce3);
  1136. applog(LOG_ERR, "Bmsc send golden nonce4");
  1137. hex2bin((void *)(&workdata), golden_ob4, sizeof(workdata));
  1138. err = usb_write_ii(bmsc, info->intinfo, (char *)(&workdata), sizeof(workdata), &amount, C_SENDWORK);
  1139. if (err != LIBUSB_SUCCESS || amount != sizeof(workdata))
  1140. continue;
  1141. memset(nonce_bin, 0, sizeof(nonce_bin));
  1142. ret = bmsc_get_nonce(bmsc, nonce_bin, &tv_start, &tv_finish, NULL, 500);
  1143. if (ret != BTM_NONCE_OK) {
  1144. applog(LOG_ERR, "Bmsc recv golden nonce4 timeout");
  1145. continue;
  1146. }
  1147. nonce_hex = bin2hex(nonce_bin, sizeof(nonce_bin));
  1148. if (strncmp(nonce_hex, golden_nonce4, 8) == 0)
  1149. ok = true;
  1150. else {
  1151. applog(LOG_ERR, "Bmsc recv golden nonce %s != %s and retry", nonce_hex, golden_nonce4);
  1152. applog(LOG_ERR,"The fourth chip may not work,reconnrect the device will get better stats");
  1153. cgsleep_ms(1000);
  1154. if (tries < 0 && info->ident != IDENT_CMR2) {
  1155. applog(LOG_ERR, "Bmsc Detect: Test failed at %s: get %s, should: %s",
  1156. bmsc->device_path, nonce_hex, golden_nonce4);
  1157. }
  1158. }
  1159. applog(LOG_ERR, "Bmsc recv golden nonce %s -- %s ", nonce_hex, golden_nonce4);
  1160. #endif
  1161. free(nonce_hex);
  1162. }
  1163. if (!ok) {
  1164. if (info->ident != IDENT_CMR2)
  1165. goto unshin;
  1166. if (info->intinfo < CAIRNSMORE2_INTS-1) {
  1167. info->intinfo++;
  1168. goto cmr2_retry;
  1169. }
  1170. } else {
  1171. if (info->ident == IDENT_CMR2) {
  1172. applog(LOG_DEBUG,
  1173. "Bmsc Detect: "
  1174. "Test succeeded at %s i%d: got %s",
  1175. bmsc->device_path, info->intinfo, golden_nonce);
  1176. cmr2_ok[info->intinfo] = true;
  1177. cmr2_count++;
  1178. if (info->intinfo < CAIRNSMORE2_INTS-1) {
  1179. info->intinfo++;
  1180. goto cmr2_retry;
  1181. }
  1182. }
  1183. }
  1184. if (info->ident == IDENT_CMR2) {
  1185. if (cmr2_count == 0) {
  1186. applog(LOG_ERR,
  1187. "Bmsc Detect: Test failed at %s: for all %d CMR2 Interfaces",
  1188. bmsc->device_path, CAIRNSMORE2_INTS);
  1189. goto unshin;
  1190. }
  1191. // set the interface to the first one that succeeded
  1192. for (i = 0; i < CAIRNSMORE2_INTS; i++)
  1193. if (cmr2_ok[i]) {
  1194. info->intinfo = i;
  1195. break;
  1196. }
  1197. } else {
  1198. applog(LOG_DEBUG,
  1199. "Bmsc Detect: "
  1200. "Test succeeded at %s: got %s",
  1201. bmsc->device_path, golden_nonce);
  1202. }
  1203. /* We have a real Bmsc! */
  1204. if (!add_cgpu(bmsc))
  1205. goto unshin;
  1206. update_usb_stats(bmsc);
  1207. applog(LOG_INFO, "%s%d: Found at %s",
  1208. bmsc->drv->name, bmsc->device_id, bmsc->device_path);
  1209. if (info->ident == IDENT_CMR2) {
  1210. applog(LOG_INFO, "%s%d: with %d Interface%s",
  1211. bmsc->drv->name, bmsc->device_id,
  1212. cmr2_count, cmr2_count > 1 ? "s" : "");
  1213. // Assume 1 or 2 are running FPGA pairs
  1214. if (cmr2_count < 3) {
  1215. work_division = fpga_count = 2;
  1216. info->Hs /= 2;
  1217. }
  1218. }
  1219. applog(LOG_DEBUG, "%s%d: Init baud=%d work_division=%d fpga_count=%d readtimeout=%f",
  1220. bmsc->drv->name, bmsc->device_id, baud, work_division, fpga_count, readtimeout);
  1221. info->baud = baud;
  1222. info->work_division = work_division;
  1223. info->fpga_count = fpga_count;
  1224. info->nonce_mask = mask(work_division);
  1225. info->work_queue_index = 0;
  1226. for(k = 0; k < BMSC_WORK_QUEUE_NUM; k++) {
  1227. info->work_queue[k] = NULL;
  1228. }
  1229. info->golden_hashes = (golden_nonce_val & info->nonce_mask) * fpga_count;
  1230. timersub(&tv_finish, &tv_start, &(info->golden_tv));
  1231. set_timing_mode(this_option_offset, bmsc, readtimeout);
  1232. if (info->ident == IDENT_CMR2) {
  1233. int i;
  1234. for (i = info->intinfo + 1; i < bmsc->usbdev->found->intinfo_count; i++) {
  1235. struct cgpu_info *cgtmp;
  1236. struct BMSC_INFO *intmp;
  1237. if (!cmr2_ok[i])
  1238. continue;
  1239. cgtmp = usb_copy_cgpu(bmsc);
  1240. if (!cgtmp) {
  1241. applog(LOG_ERR, "%s%d: Init failed initinfo %d",
  1242. bmsc->drv->name, bmsc->device_id, i);
  1243. continue;
  1244. }
  1245. cgtmp->usbinfo.usbstat = USB_NOSTAT;
  1246. intmp = (struct BMSC_INFO *)malloc(sizeof(struct BMSC_INFO));
  1247. if (unlikely(!intmp))
  1248. quit(1, "Failed2 to malloc BMSC_INFO");
  1249. cgtmp->device_data = (void *)intmp;
  1250. // Initialise everything to match
  1251. memcpy(intmp, info, sizeof(struct BMSC_INFO));
  1252. intmp->intinfo = i;
  1253. bmsc_initialise(cgtmp, baud);
  1254. if (!add_cgpu(cgtmp)) {
  1255. usb_uninit(cgtmp);
  1256. free(intmp);
  1257. continue;
  1258. }
  1259. update_usb_stats(cgtmp);
  1260. }
  1261. }
  1262. return bmsc;
  1263. unshin:
  1264. usb_uninit(bmsc);
  1265. free(info);
  1266. bmsc->device_data = NULL;
  1267. shin:
  1268. bmsc = usb_free_cgpu(bmsc);
  1269. return NULL;
  1270. }
  1271. static void bmsc_detect(bool __maybe_unused hotplug)
  1272. {
  1273. usb_detect(&bmsc_drv, bmsc_detect_one);
  1274. }
  1275. static bool bmsc_prepare(__maybe_unused struct thr_info *thr)
  1276. {
  1277. // struct cgpu_info *bmsc = thr->cgpu;
  1278. return true;
  1279. }
  1280. static void cmr2_command(struct cgpu_info *bmsc, uint8_t cmd, uint8_t data)
  1281. {
  1282. struct BMSC_INFO *info = (struct BMSC_INFO *)(bmsc->device_data);
  1283. struct BMSC_WORK workdata;
  1284. int amount;
  1285. memset((void *)(&workdata), 0, sizeof(workdata));
  1286. workdata.prefix = BMSC_CMR2_PREFIX;
  1287. workdata.cmd = cmd;
  1288. workdata.data = data;
  1289. workdata.check = workdata.data ^ workdata.cmd ^ workdata.prefix ^ BMSC_CMR2_CHECK;
  1290. usb_write_ii(bmsc, info->intinfo, (char *)(&workdata), sizeof(workdata), &amount, C_SENDWORK);
  1291. }
  1292. static void cmr2_commands(struct cgpu_info *bmsc)
  1293. {
  1294. struct BMSC_INFO *info = (struct BMSC_INFO *)(bmsc->device_data);
  1295. if (info->speed_next_work) {
  1296. info->speed_next_work = false;
  1297. cmr2_command(bmsc, BMSC_CMR2_CMD_SPEED, info->cmr2_speed);
  1298. return;
  1299. }
  1300. if (info->flash_next_work) {
  1301. info->flash_next_work = false;
  1302. cmr2_command(bmsc, BMSC_CMR2_CMD_FLASH, BMSC_CMR2_DATA_FLASH_ON);
  1303. cgsleep_ms(250);
  1304. cmr2_command(bmsc, BMSC_CMR2_CMD_FLASH, BMSC_CMR2_DATA_FLASH_OFF);
  1305. cgsleep_ms(250);
  1306. cmr2_command(bmsc, BMSC_CMR2_CMD_FLASH, BMSC_CMR2_DATA_FLASH_ON);
  1307. cgsleep_ms(250);
  1308. cmr2_command(bmsc, BMSC_CMR2_CMD_FLASH, BMSC_CMR2_DATA_FLASH_OFF);
  1309. return;
  1310. }
  1311. }
  1312. static int64_t bmsc_scanwork(struct thr_info *thr)
  1313. {
  1314. struct cgpu_info *bmsc = thr->cgpu;
  1315. struct BMSC_INFO *info = (struct BMSC_INFO *)(bmsc->device_data);
  1316. int ret, err, amount;
  1317. unsigned char nonce_bin[BMSC_READ_SIZE];
  1318. struct BMSC_WORK workdata;
  1319. char *ob_hex;
  1320. uint32_t nonce;
  1321. int64_t hash_count = 0;
  1322. struct timeval tv_start, tv_finish, elapsed;
  1323. struct timeval tv_history_start, tv_history_finish;
  1324. double Ti, Xi;
  1325. int curr_hw_errors, i;
  1326. bool was_hw_error;
  1327. struct work *work = NULL;
  1328. struct work *worktmp = NULL;
  1329. struct BMSC_HISTORY *history0, *history;
  1330. int count;
  1331. double Hs, W, fullnonce;
  1332. int read_time;
  1333. bool limited;
  1334. int64_t estimate_hashes;
  1335. uint32_t values;
  1336. int64_t hash_count_range;
  1337. unsigned char workid = 0;
  1338. int submitfull = 0;
  1339. bool submitnonceok = true;
  1340. // Device is gone
  1341. if (bmsc->usbinfo.nodev)
  1342. return -1;
  1343. elapsed.tv_sec = elapsed.tv_usec = 0;
  1344. retry:
  1345. work = get_work(thr, thr->id);
  1346. memset((void *)(&workdata), 0, sizeof(workdata));
  1347. memcpy(&(workdata.midstate), work->midstate, BMSC_MIDSTATE_SIZE);
  1348. memcpy(&(workdata.work), work->data + BMSC_WORK_DATA_OFFSET, BMSC_WORK_SIZE);
  1349. rev((void *)(&(workdata.midstate)), BMSC_MIDSTATE_SIZE);
  1350. rev((void *)(&(workdata.work)), BMSC_WORK_SIZE);
  1351. if(work->midstate[BMSC_MIDSTATE_SIZE-1] == 0xaa)
  1352. goto retry;
  1353. workdata.workid = work->id;
  1354. workid = work->id;
  1355. workid = workid & 0x1F;
  1356. // We only want results for the work we are about to send
  1357. usb_buffer_clear(bmsc);
  1358. if(info->work_queue[workid]) {
  1359. free(info->work_queue[workid]);
  1360. info->work_queue[workid] = NULL;
  1361. }
  1362. info->work_queue[workid] = copy_work(work);
  1363. err = usb_write_ii(bmsc, info->intinfo, (char *)(&workdata), sizeof(workdata), &amount, C_SENDWORK);
  1364. if (err < 0 || amount != sizeof(workdata)) {
  1365. applog(LOG_ERR, "%s%i: Comms error (werr=%d amt=%d)", bmsc->drv->name, bmsc->device_id, err, amount);
  1366. dev_error(bmsc, REASON_DEV_COMMS_ERROR);
  1367. bmsc_initialise(bmsc, info->baud);
  1368. goto out;
  1369. }
  1370. if (opt_debug) {
  1371. ob_hex = bin2hex((void *)(&workdata), sizeof(workdata));
  1372. applog(LOG_DEBUG, "%s%d: sent %s", bmsc->drv->name, bmsc->device_id, ob_hex);
  1373. free(ob_hex);
  1374. }
  1375. /* Bmsc will return 4 bytes (BMSC_READ_SIZE) nonces or nothing */
  1376. memset(nonce_bin, 0, sizeof(nonce_bin));
  1377. ret = bmsc_get_nonce(bmsc, nonce_bin, &tv_start, &tv_finish, thr, info->read_time);
  1378. if (ret == BTM_NONCE_ERROR)
  1379. goto out;
  1380. // aborted before becoming idle, get new work
  1381. if (ret == BTM_NONCE_TIMEOUT || ret == BTM_NONCE_RESTART) {
  1382. timersub(&tv_finish, &tv_start, &elapsed);
  1383. // ONLY up to just when it aborted
  1384. // We didn't read a reply so we don't subtract BMSC_READ_TIME
  1385. estimate_hashes = ((double)(elapsed.tv_sec) + ((double)(elapsed.tv_usec))/((double)1000000)) / info->Hs;
  1386. // If some Serial-USB delay allowed the full nonce range to
  1387. // complete it can't have done more than a full nonce
  1388. if (unlikely(estimate_hashes > 0xffffffff))
  1389. estimate_hashes = 0xffffffff;
  1390. applog(LOG_DEBUG, "%s%d: no nonce = 0x%08lX hashes (%ld.%06lds)", bmsc->drv->name, bmsc->device_id, (long unsigned int)estimate_hashes, elapsed.tv_sec, elapsed.tv_usec);
  1391. hash_count = 0;
  1392. goto out;
  1393. }
  1394. memcpy((char *)&nonce, nonce_bin, sizeof(nonce_bin));
  1395. nonce = htobe32(nonce);
  1396. curr_hw_errors = bmsc->hw_errors;
  1397. workid = nonce_bin[4];
  1398. workid = workid & 0x1F;
  1399. worktmp = info->work_queue[workid];
  1400. if(info->start && workid == 0x1f){
  1401. goto out;
  1402. }else{
  1403. info->start = false;
  1404. }
  1405. if(worktmp) {
  1406. submitfull = 0;
  1407. if(submit_nonce_1(thr, worktmp, nonce, &submitfull)) {
  1408. submitnonceok = true;
  1409. submit_nonce_2(worktmp);
  1410. } else {
  1411. if(submitfull) {
  1412. submitnonceok = true;
  1413. } else {
  1414. submitnonceok = false;
  1415. }
  1416. }
  1417. cg_logwork(worktmp, nonce_bin, submitnonceok);
  1418. } else {
  1419. applog(LOG_ERR, "%s%d: work %02x not find error", bmsc->drv->name, bmsc->device_id, workid);
  1420. }
  1421. was_hw_error = (curr_hw_errors > bmsc->hw_errors);
  1422. hash_count = (nonce & info->nonce_mask);
  1423. hash_count++;
  1424. hash_count *= info->fpga_count;
  1425. hash_count = 0xffffffff;
  1426. if (opt_debug || info->do_bmsc_timing)
  1427. timersub(&tv_finish, &tv_start, &elapsed);
  1428. applog(LOG_DEBUG, "%s%d: nonce = 0x%08x = 0x%08lX hashes (%ld.%06lds)", bmsc->drv->name, bmsc->device_id, nonce, (long unsigned int)hash_count, elapsed.tv_sec, elapsed.tv_usec);
  1429. out:
  1430. free_work(work);
  1431. return hash_count;
  1432. }
  1433. /*
  1434. static int64_t bmsc_scanwork(struct thr_info *thr)
  1435. {
  1436. struct cgpu_info *bmsc = thr->cgpu;
  1437. struct BMSC_INFO *info = (struct BMSC_INFO *)(bmsc->device_data);
  1438. int ret, err, amount;
  1439. unsigned char nonce_bin[BMSC_READ_SIZE];
  1440. struct BMSC_WORK workdata;
  1441. char *ob_hex;
  1442. uint32_t nonce;
  1443. int64_t hash_count = 0;
  1444. int64_t hash_done = 0;
  1445. struct timeval tv_start, tv_finish, elapsed;
  1446. struct timeval tv_history_start, tv_history_finish;
  1447. double Ti, Xi;
  1448. int curr_hw_errors;
  1449. bool was_hw_error;
  1450. struct work *work;
  1451. struct BMSC_HISTORY *history0, *history;
  1452. double Hs, W, fullnonce;
  1453. bool limited;
  1454. int64_t estimate_hashes;
  1455. uint32_t values;
  1456. int64_t hash_count_range;
  1457. int i = 0, count = 0, nofullcount = 0, readalllen = 0, readlen = 0, read_time = 0, nofull = 0;
  1458. bool nonceok = false;
  1459. bool noncedup = false;
  1460. char testbuf[256] = {0};
  1461. char testtmp[256] = {0};
  1462. int asicnum = 0;
  1463. int k = 0;
  1464. // Device is gone
  1465. if (bmsc->usbinfo.nodev)
  1466. return -1;
  1467. elapsed.tv_sec = elapsed.tv_usec = 0;
  1468. work = get_work(thr, thr->id);
  1469. memset((void *)(&workdata), 0, sizeof(workdata));
  1470. memcpy(&(workdata.midstate), work->midstate, BMSC_MIDSTATE_SIZE);
  1471. memcpy(&(workdata.work), work->data + BMSC_WORK_DATA_OFFSET, BMSC_WORK_SIZE);
  1472. rev((void *)(&(workdata.midstate)), BMSC_MIDSTATE_SIZE);
  1473. rev((void *)(&(workdata.work)), BMSC_WORK_SIZE);
  1474. applog(LOG_DEBUG, "bmsc_scanhash start ------------");
  1475. readalllen = 0;
  1476. readlen = 0;
  1477. if(info->work_queue != NULL) {
  1478. while (true) {
  1479. if (bmsc->usbinfo.nodev)
  1480. return -1;
  1481. amount = 0;
  1482. memset(nonce_bin, 0, sizeof(nonce_bin));
  1483. err = usb_read_once_timeout(bmsc, (char *)nonce_bin+readlen, 5-readlen, &amount, BMSC_WAIT_TIMEOUT, C_GETRESULTS);
  1484. if (err < 0 && err != LIBUSB_ERROR_TIMEOUT) {
  1485. applog(LOG_ERR, "%s%i: Comms error (rerr=%d amt=%d)", bmsc->drv->name, bmsc->device_id, err, amount);
  1486. dev_error(bmsc, REASON_DEV_COMMS_ERROR);
  1487. return 0;
  1488. }
  1489. if (amount > 0) {
  1490. readalllen += amount;
  1491. readlen += amount;
  1492. if (readlen >= 5) {
  1493. nonceok = false;
  1494. memcpy((char *) &nonce, nonce_bin, BMSC_READ_SIZE);
  1495. noncedup = false;
  1496. for(i = 0; i < BMSC_NONCE_ARRAY_SIZE; i++) {
  1497. if(memcmp(nonce_bin, info->nonce_bin[i], BMSC_READ_SIZE) == 0) {
  1498. noncedup = true;
  1499. break;
  1500. }
  1501. }
  1502. if (!noncedup) {
  1503. if(info->nonce_index < 0 || info->nonce_index >= BMSC_NONCE_ARRAY_SIZE)
  1504. info->nonce_index = 0;
  1505. memcpy(info->nonce_bin[info->nonce_index], nonce_bin, BMSC_READ_SIZE);
  1506. info->nonce_index++;
  1507. nonce = htobe32(nonce);
  1508. nofull = 0;
  1509. if (submit_nonce_1(thr, info->work_queue, nonce, &nofull)) {
  1510. applog(LOG_DEBUG, "Bmsc nonce(0x%08x) match old work", nonce);
  1511. submit_nonce_2(info->work_queue);
  1512. nonceok = true;
  1513. } else {
  1514. if(!nofull) {
  1515. applog(LOG_DEBUG, "Bmsc nonce(0x%08x) not match old work", nonce);
  1516. usb_buffer_clear(bmsc);
  1517. inc_hw_errors(thr);
  1518. break;
  1519. } else {
  1520. nofullcount++;
  1521. }
  1522. }
  1523. } else {
  1524. applog(LOG_DEBUG, "Bmsc nonce duplication");
  1525. }
  1526. if (nonceok) {
  1527. count++;
  1528. hash_count = (nonce & info->nonce_mask);
  1529. hash_count++;
  1530. hash_count *= info->fpga_count;
  1531. hash_done += 0xffffffff;//hash_count;
  1532. applog(LOG_DEBUG, "%s%d: nonce = 0x%08x = 0x%08lX hashes (%ld.%06lds)",
  1533. bmsc->drv->name, bmsc->device_id, nonce, (long unsigned int )hash_count, elapsed.tv_sec, elapsed.tv_usec);
  1534. }
  1535. readlen = 0;
  1536. }
  1537. } else {
  1538. //usb_buffer_clear(bmsc);
  1539. applog(LOG_DEBUG, "bmsc_scanhash usb_read_once_timeout read time out");
  1540. break;
  1541. }
  1542. }
  1543. }
  1544. err = usb_write(bmsc, (char *)(&workdata), sizeof(workdata), &amount, C_SENDWORK);
  1545. if (err < 0 || amount != sizeof(workdata)) {
  1546. applog(LOG_ERR, "%s%i: Comms error (werr=%d amt=%d)", bmsc->drv->name, bmsc->device_id, err, amount);
  1547. dev_error(bmsc, REASON_DEV_COMMS_ERROR);
  1548. bmsc_initialise(bmsc, info->baud);
  1549. return 0;
  1550. }
  1551. if (opt_debug) {
  1552. ob_hex = bin2hex((char *)&workdata, sizeof(workdata));
  1553. applog(LOG_DEBUG, "%s%d: sent %s", bmsc->drv->name, bmsc->device_id, ob_hex);
  1554. free(ob_hex);
  1555. }
  1556. cgtime(&tv_start);
  1557. readlen = 0;
  1558. while(true) {
  1559. if (bmsc->usbinfo.nodev)
  1560. return -1;
  1561. amount = 0;
  1562. memset(nonce_bin, 0, sizeof(nonce_bin));
  1563. err = usb_read_once_timeout(bmsc, (char *)nonce_bin+readlen, 5-readlen, &amount, BMSC_WAIT_TIMEOUT, C_GETRESULTS);
  1564. cgtime(&tv_finish);
  1565. if (err < 0 && err != LIBUSB_ERROR_TIMEOUT) {
  1566. applog(LOG_ERR, "%s%i: Comms error (rerr=%d amt=%d)", bmsc->drv->name, bmsc->device_id, err, amount);
  1567. dev_error(bmsc, REASON_DEV_COMMS_ERROR);
  1568. return 0;
  1569. }
  1570. if(amount > 0) {
  1571. readalllen += amount;
  1572. readlen += amount;
  1573. if (readlen >= 5) {
  1574. nonceok = false;
  1575. memcpy((char *) &nonce, nonce_bin, BMSC_READ_SIZE);
  1576. noncedup = false;
  1577. for(i = 0; i < BMSC_NONCE_ARRAY_SIZE; i++) {
  1578. if(memcmp(nonce_bin, info->nonce_bin[i], BMSC_READ_SIZE) == 0) {
  1579. noncedup = true;
  1580. break;
  1581. }
  1582. }
  1583. if(!noncedup) {
  1584. if(info->nonce_index < 0 || info->nonce_index >= BMSC_NONCE_ARRAY_SIZE)
  1585. info->nonce_index = 0;
  1586. memcpy(info->nonce_bin[info->nonce_index], nonce_bin, BMSC_READ_SIZE);
  1587. info->nonce_index++;
  1588. nonce = htobe32(nonce);
  1589. nofull = 0;
  1590. if (submit_nonce_1(thr, work, nonce, &nofull)) {
  1591. applog(LOG_DEBUG, "Bmsc nonce(0x%08x) match current work", nonce);
  1592. submit_nonce_2(work);
  1593. nonceok = true;
  1594. } else {
  1595. if(!nofull) {
  1596. if (info->work_queue != NULL) {
  1597. nofull = 0;
  1598. if (submit_nonce_1(thr, info->work_queue, nonce, &nofull)) {
  1599. applog(LOG_DEBUG, "Bmsc nonce(0x%08x) match old work", nonce);
  1600. submit_nonce_2(info->work_queue);
  1601. nonceok = true;
  1602. } else {
  1603. if(!nofull) {
  1604. applog(LOG_DEBUG, "Bmsc nonce(0x%08x) not match work", nonce);
  1605. usb_buffer_clear(bmsc);
  1606. inc_hw_errors(thr);
  1607. break;
  1608. } else {
  1609. nofullcount++;
  1610. }
  1611. }
  1612. } else {
  1613. applog(LOG_DEBUG, "Bmsc nonce(0x%08x) no old work", nonce);
  1614. }
  1615. } else {
  1616. nofullcount++;
  1617. }
  1618. }
  1619. } else {
  1620. applog(LOG_DEBUG, "Bmsc nonce duplication");
  1621. }
  1622. if(nonceok) {
  1623. count++;
  1624. hash_count = (nonce & info->nonce_mask);
  1625. hash_count++;
  1626. hash_count *= info->fpga_count;
  1627. hash_done += 0xffffffff;//hash_count;
  1628. applog(LOG_DEBUG, "%s%d: nonce = 0x%08x = 0x%08lX hashes (%ld.%06lds)",
  1629. bmsc->drv->name, bmsc->device_id, nonce, (long unsigned int )hash_count, elapsed.tv_sec, elapsed.tv_usec);
  1630. }
  1631. readlen = 0;
  1632. }
  1633. } else {
  1634. applog(LOG_DEBUG, "bmsc_scanhash usb_read_once_timeout read time out");
  1635. }
  1636. read_time = SECTOMS(tdiff(&tv_finish, &tv_start));
  1637. if(read_time >= info->read_time) {
  1638. if (readalllen > 0)
  1639. applog(LOG_DEBUG, "Bmsc Read: Nonce ok:%d below:%d in %d ms", count, nofullcount, read_time);
  1640. else
  1641. applog(LOG_DEBUG, "Bmsc Read: No nonce work %d for %d ms", work->id, read_time);
  1642. break;
  1643. }
  1644. }
  1645. if(info->work_queue != NULL) {
  1646. free_work(info->work_queue);
  1647. info->work_queue = NULL;
  1648. }
  1649. info->work_queue = copy_work(work);
  1650. applog(LOG_DEBUG, "bmsc_scanhash stop ------------");
  1651. out:
  1652. free_work(work);
  1653. return hash_count;
  1654. }*/
  1655. static struct api_data *bmsc_api_stats(struct cgpu_info *cgpu)
  1656. {
  1657. struct api_data *root = NULL;
  1658. struct BMSC_INFO *info = (struct BMSC_INFO *)(cgpu->device_data);
  1659. // Warning, access to these is not locked - but we don't really
  1660. // care since hashing performance is way more important than
  1661. // locking access to displaying API debug 'stats'
  1662. // If locking becomes an issue for any of them, use copy_data=true also
  1663. root = api_add_int(root, "read_time", &(info->read_time), false);
  1664. root = api_add_int(root, "read_time_limit", &(info->read_time_limit), false);
  1665. root = api_add_double(root, "fullnonce", &(info->fullnonce), false);
  1666. root = api_add_int(root, "count", &(info->count), false);
  1667. root = api_add_hs(root, "Hs", &(info->Hs), false);
  1668. root = api_add_double(root, "W", &(info->W), false);
  1669. root = api_add_uint(root, "total_values", &(info->values), false);
  1670. root = api_add_uint64(root, "range", &(info->hash_count_range), false);
  1671. root = api_add_uint64(root, "history_count", &(info->history_count), false);
  1672. root = api_add_timeval(root, "history_time", &(info->history_time), false);
  1673. root = api_add_uint(root, "min_data_count", &(info->min_data_count), false);
  1674. root = api_add_uint(root, "timing_values", &(info->history[0].values), false);
  1675. root = api_add_const(root, "timing_mode", timing_mode_str(info->timing_mode), false);
  1676. root = api_add_bool(root, "is_timing", &(info->do_bmsc_timing), false);
  1677. root = api_add_int(root, "baud", &(info->baud), false);
  1678. root = api_add_int(root, "work_division", &(info->work_division), false);
  1679. root = api_add_int(root, "fpga_count", &(info->fpga_count), false);
  1680. return root;
  1681. }
  1682. static void bmsc_statline_before(char *buf, size_t bufsiz, struct cgpu_info *cgpu)
  1683. {
  1684. struct BMSC_INFO *info = (struct BMSC_INFO *)(cgpu->device_data);
  1685. if (info->ident == IDENT_CMR2 && info->cmr2_speed > 0)
  1686. tailsprintf(buf, bufsiz, "%5.1fMhz", (float)(info->cmr2_speed) * BMSC_CMR2_SPEED_FACTOR);
  1687. else
  1688. tailsprintf(buf, bufsiz, " ");
  1689. tailsprintf(buf, bufsiz, " | ");
  1690. }
  1691. static void bmsc_shutdown(__maybe_unused struct thr_info *thr)
  1692. {
  1693. // TODO: ?
  1694. }
  1695. static void bmsc_identify(struct cgpu_info *cgpu)
  1696. {
  1697. struct BMSC_INFO *info = (struct BMSC_INFO *)(cgpu->device_data);
  1698. if (info->ident == IDENT_CMR2)
  1699. info->flash_next_work = true;
  1700. }
  1701. static char *bmsc_set(struct cgpu_info *cgpu, char *option, char *setting, char *replybuf)
  1702. {
  1703. struct BMSC_INFO *info = (struct BMSC_INFO *)(cgpu->device_data);
  1704. int val;
  1705. if (info->ident != IDENT_CMR2) {
  1706. strcpy(replybuf, "no set options available");
  1707. return replybuf;
  1708. }
  1709. if (strcasecmp(option, "help") == 0) {
  1710. sprintf(replybuf, "clock: range %d-%d",
  1711. BMSC_CMR2_SPEED_MIN_INT, BMSC_CMR2_SPEED_MAX_INT);
  1712. return replybuf;
  1713. }
  1714. if (strcasecmp(option, "clock") == 0) {
  1715. if (!setting || !*setting) {
  1716. sprintf(replybuf, "missing clock setting");
  1717. return replybuf;
  1718. }
  1719. val = atoi(setting);
  1720. if (val < BMSC_CMR2_SPEED_MIN_INT || val > BMSC_CMR2_SPEED_MAX_INT) {
  1721. sprintf(replybuf, "invalid clock: '%s' valid range %d-%d",
  1722. setting,
  1723. BMSC_CMR2_SPEED_MIN_INT,
  1724. BMSC_CMR2_SPEED_MAX_INT);
  1725. }
  1726. info->cmr2_speed = CMR2_INT_TO_SPEED(val);
  1727. info->speed_next_work = true;
  1728. return NULL;
  1729. }
  1730. sprintf(replybuf, "Unknown option: %s", option);
  1731. return replybuf;
  1732. }
  1733. struct device_drv bmsc_drv = {
  1734. .drv_id = DRIVER_bmsc,
  1735. .dname = "Bitmain",
  1736. .name = "BTM",
  1737. .drv_detect = bmsc_detect,
  1738. .hash_work = &hash_driver_work,
  1739. .get_api_stats = bmsc_api_stats,
  1740. .get_statline_before = bmsc_statline_before,
  1741. .set_device = bmsc_set,
  1742. .identify_device = bmsc_identify,
  1743. .thread_prepare = bmsc_prepare,
  1744. .scanwork = bmsc_scanwork,
  1745. .thread_shutdown = bmsc_shutdown,
  1746. };