libztex.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890
  1. /**
  2. * libztex.c - Ztex 1.15x/1.15y fpga board support library
  3. *
  4. * Copyright (c) 2012 nelisky.btc@gmail.com
  5. * Copyright (c) 2012 Denis Ahrens <denis@h3q.com>
  6. * Copyright (c) 2012 Peter Stuge <peter@stuge.se>
  7. *
  8. * This work is based upon the Java SDK provided by ztex which is
  9. * Copyright (C) 2009-2011 ZTEX GmbH.
  10. * http://www.ztex.de
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License version 2 as
  14. * published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, see http://www.gnu.org/licenses/.
  23. **/
  24. #include <stdio.h>
  25. #include <unistd.h>
  26. #include <string.h>
  27. #include <config.h>
  28. #include "dynclock.h"
  29. #include "miner.h"
  30. #include "fpgautils.h"
  31. #include "libztex.h"
  32. //* Capability index for EEPROM support.
  33. #define CAPABILITY_EEPROM 0,0
  34. //* Capability index for FPGA configuration support.
  35. #define CAPABILITY_FPGA 0,1
  36. //* Capability index for FLASH memory support.
  37. #define CAPABILITY_FLASH 0,2
  38. //* Capability index for DEBUG helper support.
  39. #define CAPABILITY_DEBUG 0,3
  40. //* Capability index for AVR XMEGA support.
  41. #define CAPABILITY_XMEGA 0,4
  42. //* Capability index for AVR XMEGA support.
  43. #define CAPABILITY_HS_FPGA 0,5
  44. //* Capability index for AVR XMEGA support.
  45. #define CAPABILITY_MAC_EEPROM 0,6
  46. //* Capability index for multi FPGA support.
  47. #define CAPABILITY_MULTI_FPGA 0,7
  48. static int libztex_get_string_descriptor_ascii(libusb_device_handle *dev, uint8_t desc_index,
  49. unsigned char *data, int length) {
  50. int i, cnt;
  51. uint16_t langid;
  52. unsigned char buf[260];
  53. /* We open code string descriptor retrieval and ASCII decoding here
  54. * in order to work around that libusb_get_string_descriptor_ascii()
  55. * in the FreeBSD libusb implementation hits a bug in ZTEX firmware,
  56. * where the device returns more bytes than requested, causing babble,
  57. * which makes FreeBSD return an error to us.
  58. *
  59. * Avoid the mess by doing it manually the same way as libusb-1.0.
  60. */
  61. cnt = libusb_control_transfer(dev, LIBUSB_ENDPOINT_IN,
  62. LIBUSB_REQUEST_GET_DESCRIPTOR, (LIBUSB_DT_STRING << 8) | 0,
  63. 0x0000, buf, sizeof(buf), 1000);
  64. if (cnt < 0) {
  65. applog(LOG_ERR, "%s: Failed to read LANGIDs: %s", __func__, libusb_error_name(cnt));
  66. return cnt;
  67. }
  68. langid = libusb_le16_to_cpu(((uint16_t *)buf)[1]);
  69. cnt = libusb_control_transfer(dev, LIBUSB_ENDPOINT_IN,
  70. LIBUSB_REQUEST_GET_DESCRIPTOR, (LIBUSB_DT_STRING << 8) | desc_index,
  71. langid, buf, sizeof(buf), 1000);
  72. if (cnt < 0) {
  73. applog(LOG_ERR, "%s: Failed to read string descriptor: %s", __func__, libusb_error_name(cnt));
  74. return cnt;
  75. }
  76. /* num chars = (all bytes except bLength and bDescriptorType) / 2 */
  77. for (i = 0; i <= (cnt - 2) / 2 && i < length-1; i++)
  78. data[i] = buf[2 + i*2];
  79. data[i] = 0;
  80. return LIBUSB_SUCCESS;
  81. }
  82. enum check_result {
  83. CHECK_ERROR,
  84. CHECK_IS_NOT_ZTEX,
  85. CHECK_OK,
  86. CHECK_RESCAN,
  87. };
  88. static enum check_result libztex_checkDevice(struct libusb_device *dev)
  89. {
  90. FILE *fp = NULL;
  91. libusb_device_handle *hndl = NULL;
  92. struct libusb_device_descriptor desc;
  93. int ret = CHECK_ERROR, err, cnt;
  94. size_t got_bytes, length;
  95. unsigned char buf[64], *fw_buf;
  96. unsigned int i;
  97. err = libusb_get_device_descriptor(dev, &desc);
  98. if (unlikely(err != 0)) {
  99. applog(LOG_ERR, "Ztex check device: Failed to open read descriptor with error %d", err);
  100. return CHECK_ERROR;
  101. }
  102. if (desc.idVendor != LIBZTEX_IDVENDOR || desc.idProduct != LIBZTEX_IDPRODUCT) {
  103. applog(LOG_DEBUG, "Not a ZTEX device %0.4x:%0.4x", desc.idVendor, desc.idProduct);
  104. return CHECK_IS_NOT_ZTEX;
  105. }
  106. err = libusb_open(dev, &hndl);
  107. if (err != LIBUSB_SUCCESS) {
  108. applog(LOG_ERR, "%s: Can not open ZTEX device: %s", __func__, libusb_error_name(err));
  109. goto done;
  110. }
  111. cnt = libusb_control_transfer(hndl, 0xc0, 0x22, 0, 0, buf, 40, 500);
  112. if (unlikely(cnt < 0)) {
  113. applog(LOG_ERR, "Ztex check device: Failed to read ztex descriptor with err %d", cnt);
  114. goto done;
  115. }
  116. if (buf[0] != 40 || buf[1] != 1 || buf[2] != 'Z' || buf[3] != 'T' || buf[4] != 'E' || buf[5] != 'X') {
  117. applog(LOG_ERR, "Ztex check device: Error reading ztex descriptor");
  118. goto done;
  119. }
  120. if (buf[6] != 10)
  121. {
  122. ret = CHECK_IS_NOT_ZTEX;
  123. goto done;
  124. }
  125. // 15 = 1.15y 13 = 1.15d or 1.15x
  126. switch(buf[7])
  127. {
  128. case 13:
  129. applog(LOG_ERR, "Found ztex board 1.15d or 1.15x");
  130. break;
  131. case 15:
  132. applog(LOG_ERR, "Found ztex board 1.15y");
  133. break;
  134. default:
  135. applog(LOG_ERR, "Found unknown ztex board");
  136. ret = CHECK_IS_NOT_ZTEX;
  137. goto done;
  138. }
  139. // testing for dummy firmware
  140. if (buf[8] != 0) {
  141. ret = CHECK_OK;
  142. goto done;
  143. }
  144. applog(LOG_ERR, "Found dummy firmware, trying to send mining firmware");
  145. char productString[32];
  146. cnt = libztex_get_string_descriptor_ascii(hndl, desc.iProduct, (unsigned char*)productString, sizeof(productString));
  147. if (unlikely(cnt < 0)) {
  148. applog(LOG_ERR, "Ztex check device: Failed to read device productString with err %d", cnt);
  149. return cnt;
  150. }
  151. applog(LOG_ERR, "productString: %s", productString);
  152. unsigned char productID2 = buf[7];
  153. char *firmware = NULL;
  154. if (strcmp("USB-FPGA Module 1.15d (default)", productString) == 0 && productID2 == 13)
  155. {
  156. firmware = "ztex_ufm1_15d4.bin";
  157. }
  158. else if (strcmp("USB-FPGA Module 1.15x (default)", productString) == 0 && productID2 == 13)
  159. {
  160. firmware = "ztex_ufm1_15d4.bin";
  161. }
  162. else if (strcmp("USB-FPGA Module 1.15y (default)", productString) == 0 && productID2 == 15)
  163. {
  164. firmware = "ztex_ufm1_15y1.bin";
  165. }
  166. if (firmware == NULL)
  167. {
  168. applog(LOG_ERR, "could not figure out which firmware to use");
  169. goto done;
  170. }
  171. applog(LOG_ERR, "Mining firmware filename: %s", firmware);
  172. fp = open_bitstream("ztex", firmware);
  173. if (!fp) {
  174. applog(LOG_ERR, "failed to open firmware file '%s'", firmware);
  175. goto done;
  176. }
  177. if (0 != fseek(fp, 0, SEEK_END)) {
  178. applog(LOG_ERR, "Ztex firmware fseek: %s", strerror(errno));
  179. goto done;
  180. }
  181. length = ftell(fp);
  182. rewind(fp);
  183. fw_buf = malloc(length);
  184. if (!fw_buf) {
  185. applog(LOG_ERR, "%s: Can not allocate memory: %s", __func__, strerror(errno));
  186. goto done;
  187. }
  188. got_bytes = fread(fw_buf, 1, length, fp);
  189. fclose(fp);
  190. fp = NULL;
  191. if (got_bytes < length) {
  192. applog(LOG_ERR, "%s: Incomplete firmware read: %d/%d", __func__, got_bytes, length);
  193. goto done;
  194. }
  195. // in buf[] is still the identifier of the dummy firmware
  196. // use it to compare it with the new firmware
  197. char *rv = memmem(fw_buf, got_bytes, buf, 8);
  198. if (rv == NULL)
  199. {
  200. applog(LOG_ERR, "%s: found firmware is not ZTEX", __func__);
  201. goto done;
  202. }
  203. // check for dummy firmware
  204. if (rv[8] == 0)
  205. {
  206. applog(LOG_ERR, "%s: found a ZTEX dummy firmware", __func__);
  207. goto done;
  208. }
  209. // reset 1
  210. buf[0] = 1;
  211. cnt = libusb_control_transfer(hndl, 0x40, 0xA0, 0xE600, 0, buf, 1,1000);
  212. if (cnt < 0)
  213. {
  214. applog(LOG_ERR, "Ztex reset 1 failed: %s", libusb_error_name(cnt));
  215. goto done;
  216. }
  217. for (i = 0; i < length; i+= 256) {
  218. // firmware wants data in small chunks like 256 bytes
  219. int numbytes = (length - i) < 256 ? (length - i) : 256;
  220. int k = libusb_control_transfer(hndl, 0x40, 0xA0, i, 0, fw_buf + i, numbytes, 1000);
  221. if (k < numbytes)
  222. {
  223. applog(LOG_ERR, "Ztex device: Failed to write firmware at %d with: %s", i, libusb_error_name(k));
  224. goto done;
  225. }
  226. }
  227. // reset 0
  228. buf[0] = 0;
  229. err = libusb_control_transfer(hndl, 0x40, 0xA0, 0xE600, 0, buf, 1,1000);
  230. if (err < 0)
  231. {
  232. applog(LOG_ERR, "Ztex reset 0 failed: %s", libusb_error_name(err));
  233. goto done;
  234. }
  235. applog(LOG_ERR, "Ztex device: succesfully wrote firmware");
  236. ret = CHECK_RESCAN;
  237. done:
  238. if (fp)
  239. fclose(fp);
  240. if (hndl)
  241. libusb_close(hndl);
  242. return ret;
  243. }
  244. static bool libztex_checkCapability(struct libztex_device *ztex, int i, int j)
  245. {
  246. if (!((i >= 0) && (i <= 5) && (j >= 0) && (j < 8) &&
  247. (((ztex->interfaceCapabilities[i] & 255) & (1 << j)) != 0))) {
  248. applog(LOG_ERR, "%s: capability missing: %d %d", ztex->repr, i, j);
  249. return false;
  250. }
  251. return true;
  252. }
  253. static char libztex_detectBitstreamBitOrder(const unsigned char *buf, int size)
  254. {
  255. int i;
  256. for (i = 0; i < size - 4; i++) {
  257. if (((buf[i] & 255) == 0xaa) && ((buf[i + 1] & 255) == 0x99) && ((buf[i + 2] & 255) == 0x55) && ((buf[i + 3] & 255) == 0x66))
  258. return 1;
  259. if (((buf[i] & 255) == 0x55) && ((buf[i + 1] & 255) == 0x99) && ((buf[i + 2] & 255) == 0xaa) && ((buf[i + 3] & 255) == 0x66))
  260. return 0;
  261. }
  262. applog(LOG_WARNING, "Unable to determine bitstream bit order: no signature found");
  263. return 0;
  264. }
  265. static void libztex_swapBits(unsigned char *buf, int size)
  266. {
  267. unsigned char c;
  268. int i;
  269. for (i = 0; i < size; i++) {
  270. c = buf[i];
  271. buf[i] = ((c & 128) >> 7) |
  272. ((c & 64) >> 5) |
  273. ((c & 32) >> 3) |
  274. ((c & 16) >> 1) |
  275. ((c & 8) << 1) |
  276. ((c & 4) << 3) |
  277. ((c & 2) << 5) |
  278. ((c & 1) << 7);
  279. }
  280. }
  281. static int libztex_getFpgaState(struct libztex_device *ztex, struct libztex_fpgastate *state)
  282. {
  283. unsigned char buf[9];
  284. int cnt;
  285. if (!libztex_checkCapability(ztex, CAPABILITY_FPGA))
  286. return -1;
  287. cnt = libusb_control_transfer(ztex->hndl, 0xc0, 0x30, 0, 0, buf, 9, 1000);
  288. if (unlikely(cnt < 0)) {
  289. applog(LOG_ERR, "%s: Failed getFpgaState with err %d", ztex->repr, cnt);
  290. return cnt;
  291. }
  292. state->fpgaConfigured = (buf[0] == 0);
  293. state->fpgaChecksum = buf[1] & 0xff;
  294. state->fpgaBytes = ((buf[5] & 0xff) << 24) | ((buf[4] & 0xff) << 16) | ((buf[3] & 0xff) << 8) | (buf[2] & 0xff);
  295. state->fpgaInitB = buf[6] & 0xff;
  296. state->fpgaFlashResult = buf[7];
  297. state->fpgaFlashBitSwap = (buf[8] != 0);
  298. return 0;
  299. }
  300. static int libztex_configureFpgaHS(struct libztex_device *ztex, const char* firmware, bool force, char bs)
  301. {
  302. struct libztex_fpgastate state;
  303. const int transactionBytes = 65536;
  304. unsigned char buf[transactionBytes], settings[2];
  305. int tries, cnt, err;
  306. FILE *fp;
  307. if (!libztex_checkCapability(ztex, CAPABILITY_HS_FPGA))
  308. return -1;
  309. libztex_getFpgaState(ztex, &state);
  310. if (!force && state.fpgaConfigured) {
  311. applog(LOG_INFO, "Bitstream already configured");
  312. return 0;
  313. }
  314. cnt = libusb_control_transfer(ztex->hndl, 0xc0, 0x33, 0, 0, settings, 2, 1000);
  315. if (unlikely(cnt < 0)) {
  316. applog(LOG_ERR, "%s: Failed getHSFpgaSettings with err %d", ztex->repr, cnt);
  317. return cnt;
  318. }
  319. libusb_claim_interface(ztex->hndl, settings[1]);
  320. for (tries = 3; tries > 0; tries--) {
  321. fp = open_bitstream("ztex", firmware);
  322. if (!fp) {
  323. applog(LOG_ERR, "%s: failed to read bitstream '%s'", ztex->repr, firmware);
  324. return -2;
  325. }
  326. libusb_control_transfer(ztex->hndl, 0x40, 0x34, 0, 0, NULL, 0, 1000);
  327. // 0x34 - initHSFPGAConfiguration
  328. do
  329. {
  330. int length = fread(buf,1,transactionBytes,fp);
  331. if (bs != 0 && bs != 1)
  332. bs = libztex_detectBitstreamBitOrder(buf, length);
  333. if (bs == 1)
  334. libztex_swapBits(buf, length);
  335. err = libusb_bulk_transfer(ztex->hndl, settings[0], buf, length, &cnt, 1000);
  336. if (cnt != length)
  337. applog(LOG_ERR, "%s: cnt != length", ztex->repr);
  338. if (err != 0)
  339. applog(LOG_ERR, "%s: Failed send hs fpga data", ztex->repr);
  340. }
  341. while (!feof(fp));
  342. libusb_control_transfer(ztex->hndl, 0x40, 0x35, 0, 0, NULL, 0, 1000);
  343. // 0x35 - finishHSFPGAConfiguration
  344. if (cnt >= 0)
  345. tries = 0;
  346. fclose(fp);
  347. libztex_getFpgaState(ztex, &state);
  348. if (!state.fpgaConfigured) {
  349. applog(LOG_ERR, "%s: HS FPGA configuration failed: DONE pin does not go high", ztex->repr);
  350. return -3;
  351. }
  352. }
  353. libusb_release_interface(ztex->hndl, settings[1]);
  354. nmsleep(200);
  355. applog(LOG_INFO, "%s: HS FPGA configuration done", ztex->repr);
  356. return 0;
  357. }
  358. static int libztex_configureFpgaLS(struct libztex_device *ztex, const char* firmware, bool force, char bs)
  359. {
  360. struct libztex_fpgastate state;
  361. const int transactionBytes = 2048;
  362. unsigned char buf[transactionBytes];
  363. int tries, cnt;
  364. FILE *fp;
  365. if (!libztex_checkCapability(ztex, CAPABILITY_FPGA))
  366. return -1;
  367. libztex_getFpgaState(ztex, &state);
  368. if (!force && state.fpgaConfigured) {
  369. applog(LOG_DEBUG, "Bitstream already configured");
  370. return 0;
  371. }
  372. for (tries = 10; tries > 0; tries--) {
  373. fp = open_bitstream("ztex", firmware);
  374. if (!fp) {
  375. applog(LOG_ERR, "%s: failed to read bitstream '%s'", ztex->repr, firmware);
  376. return -2;
  377. }
  378. //* Reset fpga
  379. cnt = libztex_resetFpga(ztex);
  380. if (unlikely(cnt < 0)) {
  381. applog(LOG_ERR, "%s: Failed reset fpga with err %d", ztex->repr, cnt);
  382. continue;
  383. }
  384. do
  385. {
  386. int length = fread(buf, 1, transactionBytes, fp);
  387. if (bs != 0 && bs != 1)
  388. bs = libztex_detectBitstreamBitOrder(buf, length);
  389. if (bs == 1)
  390. libztex_swapBits(buf, length);
  391. cnt = libusb_control_transfer(ztex->hndl, 0x40, 0x32, 0, 0, buf, length, 5000);
  392. if (cnt != length)
  393. {
  394. applog(LOG_ERR, "%s: Failed send hs fpga data", ztex->repr);
  395. break;
  396. }
  397. }
  398. while (!feof(fp));
  399. if (cnt > 0)
  400. tries = 0;
  401. fclose(fp);
  402. }
  403. libztex_getFpgaState(ztex, &state);
  404. if (!state.fpgaConfigured) {
  405. applog(LOG_ERR, "%s: LS FPGA configuration failed: DONE pin does not go high", ztex->repr);
  406. return -3;
  407. }
  408. nmsleep(200);
  409. applog(LOG_INFO, "%s: FPGA configuration done", ztex->repr);
  410. return 0;
  411. }
  412. int libztex_configureFpga(struct libztex_device *ztex)
  413. {
  414. char buf[256];
  415. int rv;
  416. strcpy(buf, ztex->bitFileName);
  417. strcat(buf, ".bit");
  418. rv = libztex_configureFpgaHS(ztex, buf, true, 2);
  419. if (rv != 0)
  420. rv = libztex_configureFpgaLS(ztex, buf, true, 2);
  421. return rv;
  422. }
  423. int libztex_numberOfFpgas(struct libztex_device *ztex) {
  424. int cnt;
  425. unsigned char buf[3];
  426. if (ztex->numberOfFpgas < 0) {
  427. if (libztex_checkCapability(ztex, CAPABILITY_MULTI_FPGA)) {
  428. cnt = libusb_control_transfer(ztex->hndl, 0xc0, 0x50, 0, 0, buf, 3, 1000);
  429. if (unlikely(cnt < 0)) {
  430. applog(LOG_ERR, "%s: Failed getMultiFpgaInfo with err %d", ztex->repr, cnt);
  431. return cnt;
  432. }
  433. ztex->numberOfFpgas = buf[0] + 1;
  434. ztex->selectedFpga = -1;//buf[1];
  435. ztex->parallelConfigSupport = (buf[2] == 1);
  436. } else {
  437. ztex->numberOfFpgas = 1;
  438. ztex->selectedFpga = -1;//0;
  439. ztex->parallelConfigSupport = false;
  440. }
  441. }
  442. return ztex->numberOfFpgas;
  443. }
  444. int libztex_selectFpga(struct libztex_device *ztex) {
  445. int cnt, fpgacnt = libztex_numberOfFpgas(ztex->root);
  446. uint16_t number = ztex->fpgaNum;
  447. if (number < 0 || number >= fpgacnt) {
  448. applog(LOG_WARNING, "%s: Trying to select wrong fpga (%d in %d)", ztex->repr, number, fpgacnt);
  449. return 1;
  450. }
  451. if (ztex->root->selectedFpga != number && libztex_checkCapability(ztex->root, CAPABILITY_MULTI_FPGA)) {
  452. cnt = libusb_control_transfer(ztex->root->hndl, 0x40, 0x51, number, 0, NULL, 0, 500);
  453. if (unlikely(cnt < 0)) {
  454. applog(LOG_ERR, "Ztex check device: Failed to set fpga with err %d", cnt);
  455. return cnt;
  456. }
  457. ztex->root->selectedFpga = number;
  458. }
  459. return 0;
  460. }
  461. int libztex_setFreq(struct libztex_device *ztex, uint16_t freq) {
  462. int cnt;
  463. uint16_t oldfreq = ztex->dclk.freqM;
  464. if (freq > ztex->dclk.freqMaxM)
  465. freq = ztex->dclk.freqMaxM;
  466. cnt = libusb_control_transfer(ztex->hndl, 0x40, 0x83, freq, 0, NULL, 0, 500);
  467. if (unlikely(cnt < 0)) {
  468. applog(LOG_ERR, "Ztex check device: Failed to set frequency with err %d", cnt);
  469. return cnt;
  470. }
  471. ztex->dclk.freqM = freq;
  472. if (oldfreq > ztex->dclk.freqMaxM)
  473. applog(LOG_WARNING, "%s: Frequency set to %u MHz (range: %u-%u)",
  474. ztex->repr,
  475. (unsigned)(ztex->freqM1 * (ztex->dclk.freqM + 1)),
  476. (unsigned)ztex->freqM1,
  477. (unsigned)(ztex->freqM1 * (ztex->dclk.freqMaxM + 1))
  478. );
  479. else
  480. dclk_msg_freqchange(ztex->repr,
  481. ztex->freqM1 * (oldfreq + 1),
  482. ztex->freqM1 * (ztex->dclk.freqM + 1),
  483. NULL);
  484. return 0;
  485. }
  486. int libztex_resetFpga(struct libztex_device *ztex)
  487. {
  488. return libusb_control_transfer(ztex->hndl, 0x40, 0x31, 0, 0, NULL, 0, 1000);
  489. }
  490. int libztex_suspend(struct libztex_device *ztex) {
  491. if (ztex->suspendSupported) {
  492. return libusb_control_transfer(ztex->hndl, 0x40, 0x84, 0, 0, NULL, 0, 1000);
  493. } else {
  494. return 0;
  495. }
  496. }
  497. int libztex_prepare_device(struct libusb_device *dev, struct libztex_device** ztex) {
  498. struct libztex_device *newdev = *ztex;
  499. int i, cnt, err;
  500. unsigned char buf[64];
  501. dclk_prepare(&newdev->dclk);
  502. err = libusb_open(dev, &newdev->hndl);
  503. if (err != LIBUSB_SUCCESS) {
  504. applog(LOG_ERR, "%s: Can not open ZTEX device: %s", __func__, libusb_error_name(err));
  505. return CHECK_ERROR;
  506. }
  507. err = libusb_get_device_descriptor(dev, &newdev->descriptor);
  508. if (unlikely(err != 0)) {
  509. applog(LOG_ERR, "Ztex check device: Failed to open read descriptor with error %d", err);
  510. return CHECK_ERROR;
  511. }
  512. cnt = libztex_get_string_descriptor_ascii(newdev->hndl, newdev->descriptor.iSerialNumber, newdev->snString, sizeof(newdev->snString));
  513. if (unlikely(cnt < 0)) {
  514. applog(LOG_ERR, "Ztex check device: Failed to read device snString with err %d", cnt);
  515. return cnt;
  516. }
  517. cnt = libusb_control_transfer(newdev->hndl, 0xc0, 0x22, 0, 0, buf, 40, 500);
  518. if (unlikely(cnt < 0)) {
  519. applog(LOG_ERR, "Ztex check device: Failed to read ztex descriptor with err %d", cnt);
  520. return cnt;
  521. }
  522. if (buf[0] != 40 || buf[1] != 1 || buf[2] != 'Z' || buf[3] != 'T' || buf[4] != 'E' || buf[5] != 'X') {
  523. applog(LOG_ERR, "Ztex check device: Error reading ztex descriptor");
  524. return 2;
  525. }
  526. newdev->productId[0] = buf[6];
  527. newdev->productId[1] = buf[7];
  528. newdev->productId[2] = buf[8];
  529. newdev->productId[3] = buf[9];
  530. newdev->fwVersion = buf[10];
  531. newdev->interfaceVersion = buf[11];
  532. newdev->interfaceCapabilities[0] = buf[12];
  533. newdev->interfaceCapabilities[1] = buf[13];
  534. newdev->interfaceCapabilities[2] = buf[14];
  535. newdev->interfaceCapabilities[3] = buf[15];
  536. newdev->interfaceCapabilities[4] = buf[16];
  537. newdev->interfaceCapabilities[5] = buf[17];
  538. newdev->moduleReserved[0] = buf[18];
  539. newdev->moduleReserved[1] = buf[19];
  540. newdev->moduleReserved[2] = buf[20];
  541. newdev->moduleReserved[3] = buf[21];
  542. newdev->moduleReserved[4] = buf[22];
  543. newdev->moduleReserved[5] = buf[23];
  544. newdev->moduleReserved[6] = buf[24];
  545. newdev->moduleReserved[7] = buf[25];
  546. newdev->moduleReserved[8] = buf[26];
  547. newdev->moduleReserved[9] = buf[27];
  548. newdev->moduleReserved[10] = buf[28];
  549. newdev->moduleReserved[11] = buf[29];
  550. cnt = libusb_control_transfer(newdev->hndl, 0xc0, 0x82, 0, 0, buf, 64, 500);
  551. if (unlikely(cnt < 0)) {
  552. applog(LOG_ERR, "Ztex check device: Failed to read ztex descriptor with err %d", cnt);
  553. return cnt;
  554. }
  555. if (unlikely(buf[0] != 5)) {
  556. if (unlikely(buf[0] != 2 && buf[0] != 4)) {
  557. applog(LOG_ERR, "Invalid BTCMiner descriptor version. Firmware must be updated (%d).", buf[0]);
  558. return 3;
  559. }
  560. applog(LOG_WARNING, "Firmware out of date (%d).", buf[0]);
  561. }
  562. i = buf[0] > 4? 11: (buf[0] > 2? 10: 8);
  563. while (cnt < 64 && buf[cnt] != 0)
  564. cnt++;
  565. if (cnt < i + 1) {
  566. applog(LOG_ERR, "Invalid bitstream file name .");
  567. return 4;
  568. }
  569. newdev->bitFileName = malloc(sizeof(char) * (cnt + 1));
  570. memcpy(newdev->bitFileName, &buf[i], cnt);
  571. newdev->bitFileName[cnt] = 0;
  572. newdev->numNonces = buf[1] + 1;
  573. newdev->offsNonces = ((buf[2] & 255) | ((buf[3] & 255) << 8)) - 10000;
  574. newdev->freqM1 = ((buf[4] & 255) | ((buf[5] & 255) << 8) ) * 0.01;
  575. newdev->dclk.freqMaxM = (buf[7] & 255);
  576. newdev->dclk.freqM = (buf[6] & 255);
  577. newdev->dclk.freqMDefault = newdev->dclk.freqM;
  578. newdev->suspendSupported = (buf[0] == 5);
  579. newdev->hashesPerClock = buf[0] > 2? (((buf[8] & 255) | ((buf[9] & 255) << 8)) + 1) / 128.0: 1.0;
  580. newdev->extraSolutions = buf[0] > 4? buf[10]: 0;
  581. applog(LOG_DEBUG, "PID: %d numNonces: %d offsNonces: %d freqM1: %f freqMaxM: %d freqM: %d suspendSupported: %s hashesPerClock: %f extraSolutions: %d",
  582. buf[0], newdev->numNonces, newdev->offsNonces, newdev->freqM1, newdev->dclk.freqMaxM, newdev->dclk.freqM, newdev->suspendSupported ? "T": "F",
  583. newdev->hashesPerClock, newdev->extraSolutions);
  584. if (buf[0] < 4) {
  585. if (strncmp(newdev->bitFileName, "ztex_ufm1_15b", 13) != 0)
  586. newdev->hashesPerClock = 0.5;
  587. applog(LOG_WARNING, "HASHES_PER_CLOCK not defined, assuming %0.2f", newdev->hashesPerClock);
  588. }
  589. newdev->usbbus = libusb_get_bus_number(dev);
  590. newdev->usbaddress = libusb_get_device_address(dev);
  591. sprintf(newdev->repr, "ZTEX %s-1", newdev->snString);
  592. newdev->valid = true;
  593. return 0;
  594. }
  595. void libztex_destroy_device(struct libztex_device* ztex)
  596. {
  597. if (ztex->hndl != NULL) {
  598. libusb_close(ztex->hndl);
  599. ztex->hndl = NULL;
  600. }
  601. if (ztex->bitFileName != NULL) {
  602. free(ztex->bitFileName);
  603. ztex->bitFileName = NULL;
  604. }
  605. free(ztex);
  606. }
  607. int libztex_scanDevices(struct libztex_dev_list*** devs_p)
  608. {
  609. int usbdevices[LIBZTEX_MAX_DESCRIPTORS];
  610. struct libztex_dev_list **devs = NULL;
  611. struct libztex_device *ztex = NULL;
  612. int found, max_found = 0, pos = 0, err, rescan, ret = 0;
  613. libusb_device **list = NULL;
  614. ssize_t cnt, i;
  615. do {
  616. cnt = libusb_get_device_list(NULL, &list);
  617. if (unlikely(cnt < 0)) {
  618. applog(LOG_ERR, "Ztex scan devices: Failed to list usb devices with err %d", cnt);
  619. goto done;
  620. }
  621. for (found = rescan = i = 0; i < cnt; i++) {
  622. err = libztex_checkDevice(list[i]);
  623. switch (err) {
  624. case CHECK_ERROR:
  625. applog(LOG_ERR, "Ztex: Can not check device: %s", libusb_error_name(err));
  626. continue;
  627. case CHECK_IS_NOT_ZTEX:
  628. continue;
  629. case CHECK_OK:
  630. // Got one!
  631. usbdevices[found++] = i;
  632. break;
  633. case CHECK_RESCAN:
  634. rescan = 1;
  635. found++;
  636. break;
  637. }
  638. }
  639. if (found < max_found)
  640. rescan = 1;
  641. else if (found > max_found)
  642. max_found = found;
  643. if (rescan)
  644. libusb_free_device_list(list, 1);
  645. } while (rescan);
  646. if (0 == found)
  647. goto done;
  648. devs = malloc(sizeof(struct libztex_dev_list *) * found);
  649. if (devs == NULL) {
  650. applog(LOG_ERR, "Ztex scan devices: Failed to allocate memory");
  651. goto done;
  652. }
  653. for (i = 0; i < found; i++) {
  654. if (!ztex) {
  655. ztex = malloc(sizeof(*ztex));
  656. if (!ztex) {
  657. applog(LOG_ERR, "%s: Can not allocate memory for device struct: %s", __func__, strerror(errno));
  658. goto done;
  659. }
  660. }
  661. ztex->bitFileName = NULL;
  662. ztex->numberOfFpgas = -1;
  663. ztex->valid = false;
  664. err = libztex_prepare_device(list[usbdevices[i]], &ztex);
  665. if (unlikely(err != 0)) {
  666. applog(LOG_ERR, "prepare device: %d", err);
  667. libztex_destroy_device(ztex);
  668. ztex = NULL;
  669. continue;
  670. }
  671. devs[pos] = malloc(sizeof(struct libztex_dev_list));
  672. if (NULL == devs[pos]) {
  673. applog(LOG_ERR, "%s: Can not allocate memory for device: %s", __func__, strerror(errno));
  674. libztex_destroy_device(ztex);
  675. ztex = NULL;
  676. continue;
  677. }
  678. devs[pos]->dev = ztex;
  679. ztex = NULL;
  680. devs[pos]->next = NULL;
  681. if (pos > 0)
  682. devs[pos - 1]->next = devs[pos];
  683. pos++;
  684. }
  685. ret = pos;
  686. done:
  687. if (ret > 0)
  688. *devs_p = devs;
  689. else if (devs)
  690. free(devs);
  691. if (list)
  692. libusb_free_device_list(list, 1);
  693. return ret;
  694. }
  695. int libztex_sendHashData(struct libztex_device *ztex, unsigned char *sendbuf)
  696. {
  697. int cnt = 0, ret, len;
  698. if (ztex == NULL || ztex->hndl == NULL)
  699. return 0;
  700. ret = 44; len = 0;
  701. while (ret > 0) {
  702. cnt = libusb_control_transfer(ztex->hndl, 0x40, 0x80, 0, 0, sendbuf + len, ret, 1000);
  703. if (cnt >= 0) {
  704. ret -= cnt;
  705. len += cnt;
  706. } else
  707. break;
  708. }
  709. if (unlikely(cnt < 0))
  710. applog(LOG_ERR, "%s: Failed sendHashData with err %d", ztex->repr, cnt);
  711. return cnt;
  712. }
  713. int libztex_readHashData(struct libztex_device *ztex, struct libztex_hash_data nonces[]) {
  714. int bufsize = 12 + ztex->extraSolutions * 4;
  715. int cnt = 0, i, j, ret, len;
  716. unsigned char *rbuf;
  717. if (ztex->hndl == NULL)
  718. return 0;
  719. rbuf = malloc(sizeof(unsigned char) * (ztex->numNonces * bufsize));
  720. if (rbuf == NULL) {
  721. applog(LOG_ERR, "%s: Failed to allocate memory for reading nonces", ztex->repr);
  722. return 0;
  723. }
  724. ret = bufsize * ztex->numNonces; len = 0;
  725. while (ret > 0) {
  726. cnt = libusb_control_transfer(ztex->hndl, 0xc0, 0x81, 0, 0, rbuf + len, ret, 1000);
  727. if (cnt >= 0) {
  728. ret -= cnt;
  729. len += cnt;
  730. } else
  731. break;
  732. }
  733. if (unlikely(cnt < 0)) {
  734. applog(LOG_ERR, "%s: Failed readHashData with err %d", ztex->repr, cnt);
  735. free(rbuf);
  736. return cnt;
  737. }
  738. for (i=0; i<ztex->numNonces; i++) {
  739. memcpy((char*)&nonces[i].goldenNonce[0], &rbuf[i*bufsize], 4);
  740. nonces[i].goldenNonce[0] -= ztex->offsNonces;
  741. //applog(LOG_DEBUG, "W %d:0 %0.8x", i, nonces[i].goldenNonce[0]);
  742. memcpy((char*)&nonces[i].nonce, &rbuf[(i*bufsize)+4], 4);
  743. nonces[i].nonce -= ztex->offsNonces;
  744. memcpy((char*)&nonces[i].hash7, &rbuf[(i*bufsize)+8], 4);
  745. for (j=0; j<ztex->extraSolutions; j++) {
  746. memcpy((char*)&nonces[i].goldenNonce[j+1], &rbuf[(i*bufsize)+12+(j*4)], 4);
  747. nonces[i].goldenNonce[j+1] -= ztex->offsNonces;
  748. //applog(LOG_DEBUG, "W %d:%d %0.8x", i, j+1, nonces[i].goldenNonce[j+1]);
  749. }
  750. }
  751. free(rbuf);
  752. return cnt;
  753. }
  754. void libztex_freeDevList(struct libztex_dev_list **devs)
  755. {
  756. bool done = false;
  757. ssize_t cnt = 0;
  758. while (!done) {
  759. if (devs[cnt]->next == NULL)
  760. done = true;
  761. free(devs[cnt++]);
  762. }
  763. free(devs);
  764. }