Move bflsc defines to a header file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
diff --git a/Makefile.am b/Makefile.am
index b9487ee..c53738a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -67,7 +67,7 @@ cgminer_SOURCES += usbutils.c
endif
if HAS_BFLSC
-cgminer_SOURCES += driver-bflsc.c
+cgminer_SOURCES += driver-bflsc.c driver-bflsc.h
endif
if HAS_BITFORCE
diff --git a/cgminer.c b/cgminer.c
index 9de859f..f6b2ccc 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -56,6 +56,10 @@
#include "driver-avalon.h"
#endif
+#ifdef USE_BFLSC
+#include "driver-bflsc.h"
+#endif
+
#if defined(unix) || defined(__APPLE__)
#include <errno.h>
#include <fcntl.h>
diff --git a/driver-bflsc.c b/driver-bflsc.c
index 07ffdc3..5fe68a0 100644
--- a/driver-bflsc.c
+++ b/driver-bflsc.c
@@ -26,350 +26,7 @@
#include "compat.h"
#include "miner.h"
#include "usbutils.h"
-
-#define BLANK ""
-#define LFSTR "<LF>"
-
-/*
- * Firmware
- * DRV_V2 expects (beyond V1) the GetInfo to return the chip count
- * The queues are 40 instead of 20 and are *usually* consumed and filled
- * in bursts due to e.g. a 16 chip device doing 16 items at a time and
- * returning 16 results at a time
- * If the device has varying chip speeds, it will gradually break up the
- * burst of results as we progress
- */
-enum driver_version {
- BFLSC_DRVUNDEF = 0,
- BFLSC_DRV1,
- BFLSC_DRV2
-};
-
-/*
- * With Firmware 1.0.0 and a result queue of 20 the Max is:
- * inprocess = 12
- * max count = 9
- * 64+1+24+1+1+(1+8)*8+1 per line = 164 * 20
- * OK = 3
- * Total: 3304
- *
- * With Firmware 1.2.* and a result queue of 40 but a limit of 15 replies:
- * inprocess = 12
- * max count = 9
- * 64+1+24+1+1+1+1+(1+8)*8+1 per line = 166 * 15
- * OK = 3
- * Total: 2514
- *
- */
-#define BFLSC_BUFSIZ (0x1000)
-
-#define BFLSC_INFO_TIMEOUT 999
-
-#define BFLSC_DI_FIRMWARE "FIRMWARE"
-#define BFLSC_DI_ENGINES "ENGINES"
-#define BFLSC_DI_JOBSINQUE "JOBS IN QUEUE"
-#define BFLSC_DI_XLINKMODE "XLINK MODE"
-#define BFLSC_DI_XLINKPRESENT "XLINK PRESENT"
-#define BFLSC_DI_DEVICESINCHAIN "DEVICES IN CHAIN"
-#define BFLSC_DI_CHAINPRESENCE "CHAIN PRESENCE MASK"
-#define BFLSC_DI_CHIPS "CHIP PARALLELIZATION"
-
-#define FULLNONCE 0x100000000ULL
-
-struct bflsc_dev {
- // Work
- unsigned int ms_work;
- int work_queued;
- int work_complete;
- int nonces_hw; // TODO: this - need to add a paramter to submit_nonce()
- // so can pass 'dev' to hw_error
- uint64_t hashes_unsent;
- uint64_t hashes_sent;
- uint64_t nonces_found;
-
- struct timeval last_check_result;
- struct timeval last_dev_result; // array > 0
- struct timeval last_nonce_result; // > 0 nonce
-
- // Info
- char getinfo[(BFLSC_BUFSIZ+4)*4];
- char *firmware;
- int engines; // each engine represents a 'thread' in a chip
- char *xlink_mode;
- char *xlink_present;
- char *chips;
-
- // Status
- bool dead; // TODO: handle seperate x-link devices failing?
- bool overheat;
-
- // Stats
- float temp1;
- float temp2;
- float vcc1;
- float vcc2;
- float vmain;
- float temp1_max;
- float temp2_max;
- time_t temp1_max_time;
- time_t temp2_max_time;
- float temp1_5min_av; // TODO:
- float temp2_5min_av; // TODO:
-
- // To handle the fact that flushing the queue may not remove all work
- // (normally one item is still being processed)
- // and also that once the queue is flushed, results may still be in
- // the output queue - but we don't want to process them at the time of doing an LP
- // when result_id > flush_id+1, flushed work can be discarded since it
- // is no longer in the device
- uint64_t flush_id; // counter when results were last flushed
- uint64_t result_id; // counter when results were last checked
- bool flushed; // are any flushed?
-};
-
-#define QUE_MAX_RESULTS 8
-
-struct bflsc_info {
- enum driver_version driver_version;
- pthread_rwlock_t stat_lock;
- struct thr_info results_thr;
- uint64_t hashes_sent;
- uint32_t update_count;
- struct timeval last_update;
- int sc_count;
- struct bflsc_dev *sc_devs;
- unsigned int scan_sleep_time;
- unsigned int results_sleep_time;
- unsigned int default_ms_work;
- bool shutdown;
- bool flash_led;
- bool not_first_work; // allow ignoring the first nonce error
- bool fanauto;
- int que_size;
- int que_full_enough;
- int que_watermark;
- int que_low;
- int que_noncecount;
- int que_fld_min;
- int que_fld_max;
- int flush_size;
- // count of given size, [+2] is for any > QUE_MAX_RESULTS
- uint64_t result_size[QUE_MAX_RESULTS+2];
-};
-
-#define BFLSC_XLINKHDR '@'
-#define BFLSC_MAXPAYLOAD 255
-
-struct DataForwardToChain {
- uint8_t header;
- uint8_t payloadSize;
- uint8_t deviceAddress;
- uint8_t payloadData[BFLSC_MAXPAYLOAD];
-};
-
-#define DATAFORWARDSIZE(data) (1 + 1 + 1 + data.payloadSize)
-
-#define MIDSTATE_BYTES 32
-#define MERKLE_OFFSET 64
-#define MERKLE_BYTES 12
-#define BFLSC_QJOBSIZ (MIDSTATE_BYTES+MERKLE_BYTES+1)
-#define BFLSC_EOB 0xaa
-
-struct QueueJobStructure {
- uint8_t payloadSize;
- uint8_t midState[MIDSTATE_BYTES];
- uint8_t blockData[MERKLE_BYTES];
- uint8_t endOfBlock;
-};
-
-#define QUE_RES_LINES_MIN 3
-#define QUE_MIDSTATE 0
-#define QUE_BLOCKDATA 1
-
-#define QUE_NONCECOUNT_V1 2
-#define QUE_FLD_MIN_V1 3
-#define QUE_FLD_MAX_V1 (QUE_MAX_RESULTS+QUE_FLD_MIN_V1)
-
-#define QUE_CHIP_V2 2
-#define QUE_NONCECOUNT_V2 3
-#define QUE_FLD_MIN_V2 4
-#define QUE_FLD_MAX_V2 (QUE_MAX_RESULTS+QUE_FLD_MIN_V2)
-
-#define BFLSC_SIGNATURE 0xc1
-#define BFLSC_EOW 0xfe
-
-// N.B. this will only work with 5 jobs
-// requires a different jobs[N] for each job count
-// but really only need to handle 5 anyway
-struct QueueJobPackStructure {
- uint8_t payloadSize;
- uint8_t signature;
- uint8_t jobsInArray;
- struct QueueJobStructure jobs[5];
- uint8_t endOfWrapper;
-};
-
-// TODO: Implement in API and also in usb device selection
-struct SaveString {
- uint8_t payloadSize;
- uint8_t payloadData[BFLSC_MAXPAYLOAD];
-};
-
-// Commands (Single Stage)
-#define BFLSC_IDENTIFY "ZGX"
-#define BFLSC_IDENTIFY_LEN (sizeof(BFLSC_IDENTIFY)-1)
-#define BFLSC_DETAILS "ZCX"
-#define BFLSC_DETAILS_LEN (sizeof(BFLSC_DETAILS)-1)
-#define BFLSC_FIRMWARE "ZJX"
-#define BFLSC_FIRMWARE_LEN (sizeof(BFLSC_FIRMWARE)-1)
-#define BFLSC_FLASH "ZMX"
-#define BFLSC_FLASH_LEN (sizeof(BFLSC_FLASH)-1)
-#define BFLSC_VOLTAGE "ZTX"
-#define BFLSC_VOLTAGE_LEN (sizeof(BFLSC_VOLTAGE)-1)
-#define BFLSC_TEMPERATURE "ZLX"
-#define BFLSC_TEMPERATURE_LEN (sizeof(BFLSC_TEMPERATURE)-1)
-#define BFLSC_QRES "ZOX"
-#define BFLSC_QRES_LEN (sizeof(BFLSC_QRES)-1)
-#define BFLSC_QFLUSH "ZQX"
-#define BFLSC_QFLUSH_LEN (sizeof(BFLSC_QFLUSH)-1)
-#define BFLSC_FANAUTO "Z9X"
-#define BFLSC_FANOUT_LEN (sizeof(BFLSC_FANAUTO)-1)
-#define BFLSC_FAN0 "Z0X"
-#define BFLSC_FAN0_LEN (sizeof(BFLSC_FAN0)-1)
-#define BFLSC_FAN1 "Z1X"
-#define BFLSC_FAN1_LEN (sizeof(BFLSC_FAN1)-1)
-#define BFLSC_FAN2 "Z2X"
-#define BFLSC_FAN2_LEN (sizeof(BFLSC_FAN2)-1)
-#define BFLSC_FAN3 "Z3X"
-#define BFLSC_FAN3_LEN (sizeof(BFLSC_FAN3)-1)
-#define BFLSC_FAN4 "Z4X"
-#define BFLSC_FAN4_LEN (sizeof(BFLSC_FAN4)-1)
-#define BFLSC_LOADSTR "ZUX"
-#define BFLSC_LOADSTR_LEN (sizeof(BFLSC_LOADSTR)-1)
-
-// Commands (Dual Stage)
-#define BFLSC_QJOB "ZNX"
-#define BFLSC_QJOB_LEN (sizeof(BFLSC_QJOB)-1)
-#define BFLSC_QJOBS "ZWX"
-#define BFLSC_QJOBS_LEN (sizeof(BFLSC_QJOBS)-1)
-#define BFLSC_SAVESTR "ZSX"
-#define BFLSC_SAVESTR_LEN (sizeof(BFLSC_SAVESTR)-1)
-
-// Replies
-#define BFLSC_IDENTITY "BitFORCE SC"
-#define BFLSC_BFLSC "SHA256 SC"
-
-#define BFLSC_OK "OK\n"
-#define BFLSC_OK_LEN (sizeof(BFLSC_OK)-1)
-#define BFLSC_SUCCESS "SUCCESS\n"
-#define BFLSC_SUCCESS_LEN (sizeof(BFLSC_SUCCESS)-1)
-
-#define BFLSC_RESULT "COUNT:"
-#define BFLSC_RESULT_LEN (sizeof(BFLSC_RESULT)-1)
-
-#define BFLSC_ANERR "ERR:"
-#define BFLSC_ANERR_LEN (sizeof(BFLSC_ANERR)-1)
-#define BFLSC_TIMEOUT BFLSC_ANERR "TIMEOUT"
-#define BFLSC_TIMEOUT_LEN (sizeof(BFLSC_TIMEOUT)-1)
-// x-link timeout has a space (a number follows)
-#define BFLSC_XTIMEOUT BFLSC_ANERR "TIMEOUT "
-#define BFLSC_XTIMEOUT_LEN (sizeof(BFLSC_XTIMEOUT)-1)
-#define BFLSC_INVALID BFLSC_ANERR "INVALID DATA"
-#define BFLSC_INVALID_LEN (sizeof(BFLSC_INVALID)-1)
-#define BFLSC_ERRSIG BFLSC_ANERR "SIGNATURE"
-#define BFLSC_ERRSIG_LEN (sizeof(BFLSC_ERRSIG)-1)
-#define BFLSC_OKQ "OK:QUEUED"
-#define BFLSC_OKQ_LEN (sizeof(BFLSC_OKQ)-1)
-// Followed by N=1..5
-#define BFLSC_OKQN "OK:QUEUED "
-#define BFLSC_OKQN_LEN (sizeof(BFLSC_OKQN)-1)
-#define BFLSC_QFULL "QUEUE FULL"
-#define BFLSC_QFULL_LEN (sizeof(BFLSC_QFULL)-1)
-#define BFLSC_HITEMP "HIGH TEMPERATURE RECOVERY"
-#define BFLSC_HITEMP_LEN (sizeof(BFLSC_HITEMP)-1)
-#define BFLSC_EMPTYSTR "MEMORY EMPTY"
-#define BFLSC_EMPTYSTR_LEN (sizeof(BFLSC_EMPTYSTR)-1)
-
-// Queued and non-queued are the same
-#define FullNonceRangeJob QueueJobStructure
-#define BFLSC_JOBSIZ BFLSC_QJOBSIZ
-
-// Non queued commands (not used)
-#define BFLSC_SENDWORK "ZDX"
-#define BFLSC_SENDWORK_LEN (sizeof(BFLSC_SENDWORK)-1)
-#define BFLSC_WORKSTATUS "ZFX"
-#define BFLSC_WORKSTATUS_LEN (sizeof(BFLSC_WORKSTATUS)-1)
-#define BFLSC_SENDRANGE "ZPX"
-#define BFLSC_SENDRANGE_LEN (sizeof(BFLSC_SENDRANGE)-1)
-
-// Non queued work replies (not used)
-#define BFLSC_NONCE "NONCE-FOUND:"
-#define BFLSC_NONCE_LEN (sizeof(BFLSC_NONCE)-1)
-#define BFLSC_NO_NONCE "NO-NONCE"
-#define BFLSC_NO_NONCE_LEN (sizeof(BFLSC_NO_NONCE)-1)
-#define BFLSC_IDLE "IDLE"
-#define BFLSC_IDLE_LEN (sizeof(BFLSC_IDLE)-1)
-#define BFLSC_BUSY "BUSY"
-#define BFLSC_BUSY_LEN (sizeof(BFLSC_BUSY)-1)
-
-#define BFLSC_MINIRIG "BAM"
-#define BFLSC_SINGLE "BAS"
-#define BFLSC_LITTLESINGLE "BAL"
-#define BFLSC_JALAPENO "BAJ"
-
-// Default expected time for a nonce range
-// - thus no need to check until this + last time work was found
-// 60GH/s MiniRig (1 board) or Single
-#define BAM_WORK_TIME 71.58
-#define BAS_WORK_TIME 71.58
-// 30GH/s Little Single
-#define BAL_WORK_TIME 143.17
-// 4.5GH/s Jalapeno
-#define BAJ_WORK_TIME 954.44
-
-// Defaults (slightly over half the work time) but ensure none are above 100
-// SCAN_TIME - delay after sending work
-// RES_TIME - delay between checking for results
-#define BAM_SCAN_TIME 20
-#define BAM_RES_TIME 2
-#define BAS_SCAN_TIME 360
-#define BAS_RES_TIME 36
-#define BAL_SCAN_TIME 720
-#define BAL_RES_TIME 72
-#define BAJ_SCAN_TIME 1000
-#define BAJ_RES_TIME 100
-#define BFLSC_MAX_SLEEP 2000
-
-#define BAJ_LATENCY LATENCY_STD
-#define BAL_LATENCY 12
-#define BAS_LATENCY 12
-// For now a BAM doesn't really exist - it's currently 8 independent BASs
-#define BAM_LATENCY 2
-
-#define BFLSC_TEMP_SLEEPMS 5
-
-#define BFLSC_QUE_SIZE_V1 20
-#define BFLSC_QUE_FULL_ENOUGH_V1 13
-#define BFLSC_QUE_WATERMARK_V1 6
-#define BFLSC_QUE_LOW_V1 2
-
-// TODO: use 5 batch jobs
-// TODO: base these numbers on the chip count?
-#define BFLSC_QUE_SIZE_V2 40
-#define BFLSC_QUE_FULL_ENOUGH_V2 36
-#define BFLSC_QUE_WATERMARK_V2 32
-#define BFLSC_QUE_LOW_V2 8
-
-// Must drop this far below cutoff before resuming work
-#define BFLSC_TEMP_RECOVER 5
-
-// If initialisation fails the first time,
-// sleep this amount (ms) and try again
-#define REINIT_TIME_FIRST_MS 100
-// Max ms per sleep
-#define REINIT_TIME_MAX_MS 800
-// Keep trying up to this many us
-#define REINIT_TIME_MAX 3000000
+#include "driver-bflsc.h"
static const char *blank = "";
diff --git a/driver-bflsc.h b/driver-bflsc.h
new file mode 100644
index 0000000..e949424
--- /dev/null
+++ b/driver-bflsc.h
@@ -0,0 +1,356 @@
+/*
+ * Copyright 2013 Con Kolivas <kernel@kolivas.org>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the Free
+ * Software Foundation; either version 3 of the License, or (at your option)
+ * any later version. See COPYING for more details.
+ */
+
+#ifndef BFLSC_H
+#define BFLSC_H
+#define BLANK ""
+#define LFSTR "<LF>"
+
+/*
+ * Firmware
+ * DRV_V2 expects (beyond V1) the GetInfo to return the chip count
+ * The queues are 40 instead of 20 and are *usually* consumed and filled
+ * in bursts due to e.g. a 16 chip device doing 16 items at a time and
+ * returning 16 results at a time
+ * If the device has varying chip speeds, it will gradually break up the
+ * burst of results as we progress
+ */
+enum driver_version {
+ BFLSC_DRVUNDEF = 0,
+ BFLSC_DRV1,
+ BFLSC_DRV2
+};
+
+/*
+ * With Firmware 1.0.0 and a result queue of 20 the Max is:
+ * inprocess = 12
+ * max count = 9
+ * 64+1+24+1+1+(1+8)*8+1 per line = 164 * 20
+ * OK = 3
+ * Total: 3304
+ *
+ * With Firmware 1.2.* and a result queue of 40 but a limit of 15 replies:
+ * inprocess = 12
+ * max count = 9
+ * 64+1+24+1+1+1+1+(1+8)*8+1 per line = 166 * 15
+ * OK = 3
+ * Total: 2514
+ *
+ */
+#define BFLSC_BUFSIZ (0x1000)
+
+#define BFLSC_INFO_TIMEOUT 999
+
+#define BFLSC_DI_FIRMWARE "FIRMWARE"
+#define BFLSC_DI_ENGINES "ENGINES"
+#define BFLSC_DI_JOBSINQUE "JOBS IN QUEUE"
+#define BFLSC_DI_XLINKMODE "XLINK MODE"
+#define BFLSC_DI_XLINKPRESENT "XLINK PRESENT"
+#define BFLSC_DI_DEVICESINCHAIN "DEVICES IN CHAIN"
+#define BFLSC_DI_CHAINPRESENCE "CHAIN PRESENCE MASK"
+#define BFLSC_DI_CHIPS "CHIP PARALLELIZATION"
+
+#define FULLNONCE 0x100000000ULL
+
+struct bflsc_dev {
+ // Work
+ unsigned int ms_work;
+ int work_queued;
+ int work_complete;
+ int nonces_hw; // TODO: this - need to add a paramter to submit_nonce()
+ // so can pass 'dev' to hw_error
+ uint64_t hashes_unsent;
+ uint64_t hashes_sent;
+ uint64_t nonces_found;
+
+ struct timeval last_check_result;
+ struct timeval last_dev_result; // array > 0
+ struct timeval last_nonce_result; // > 0 nonce
+
+ // Info
+ char getinfo[(BFLSC_BUFSIZ+4)*4];
+ char *firmware;
+ int engines; // each engine represents a 'thread' in a chip
+ char *xlink_mode;
+ char *xlink_present;
+ char *chips;
+
+ // Status
+ bool dead; // TODO: handle seperate x-link devices failing?
+ bool overheat;
+
+ // Stats
+ float temp1;
+ float temp2;
+ float vcc1;
+ float vcc2;
+ float vmain;
+ float temp1_max;
+ float temp2_max;
+ time_t temp1_max_time;
+ time_t temp2_max_time;
+ float temp1_5min_av; // TODO:
+ float temp2_5min_av; // TODO:
+
+ // To handle the fact that flushing the queue may not remove all work
+ // (normally one item is still being processed)
+ // and also that once the queue is flushed, results may still be in
+ // the output queue - but we don't want to process them at the time of doing an LP
+ // when result_id > flush_id+1, flushed work can be discarded since it
+ // is no longer in the device
+ uint64_t flush_id; // counter when results were last flushed
+ uint64_t result_id; // counter when results were last checked
+ bool flushed; // are any flushed?
+};
+
+#define QUE_MAX_RESULTS 8
+
+struct bflsc_info {
+ enum driver_version driver_version;
+ pthread_rwlock_t stat_lock;
+ struct thr_info results_thr;
+ uint64_t hashes_sent;
+ uint32_t update_count;
+ struct timeval last_update;
+ int sc_count;
+ struct bflsc_dev *sc_devs;
+ unsigned int scan_sleep_time;
+ unsigned int results_sleep_time;
+ unsigned int default_ms_work;
+ bool shutdown;
+ bool flash_led;
+ bool not_first_work; // allow ignoring the first nonce error
+ bool fanauto;
+ int que_size;
+ int que_full_enough;
+ int que_watermark;
+ int que_low;
+ int que_noncecount;
+ int que_fld_min;
+ int que_fld_max;
+ int flush_size;
+ // count of given size, [+2] is for any > QUE_MAX_RESULTS
+ uint64_t result_size[QUE_MAX_RESULTS+2];
+};
+
+#define BFLSC_XLINKHDR '@'
+#define BFLSC_MAXPAYLOAD 255
+
+struct DataForwardToChain {
+ uint8_t header;
+ uint8_t payloadSize;
+ uint8_t deviceAddress;
+ uint8_t payloadData[BFLSC_MAXPAYLOAD];
+};
+
+#define DATAFORWARDSIZE(data) (1 + 1 + 1 + data.payloadSize)
+
+#define MIDSTATE_BYTES 32
+#define MERKLE_OFFSET 64
+#define MERKLE_BYTES 12
+#define BFLSC_QJOBSIZ (MIDSTATE_BYTES+MERKLE_BYTES+1)
+#define BFLSC_EOB 0xaa
+
+struct QueueJobStructure {
+ uint8_t payloadSize;
+ uint8_t midState[MIDSTATE_BYTES];
+ uint8_t blockData[MERKLE_BYTES];
+ uint8_t endOfBlock;
+};
+
+#define QUE_RES_LINES_MIN 3
+#define QUE_MIDSTATE 0
+#define QUE_BLOCKDATA 1
+
+#define QUE_NONCECOUNT_V1 2
+#define QUE_FLD_MIN_V1 3
+#define QUE_FLD_MAX_V1 (QUE_MAX_RESULTS+QUE_FLD_MIN_V1)
+
+#define QUE_CHIP_V2 2
+#define QUE_NONCECOUNT_V2 3
+#define QUE_FLD_MIN_V2 4
+#define QUE_FLD_MAX_V2 (QUE_MAX_RESULTS+QUE_FLD_MIN_V2)
+
+#define BFLSC_SIGNATURE 0xc1
+#define BFLSC_EOW 0xfe
+
+// N.B. this will only work with 5 jobs
+// requires a different jobs[N] for each job count
+// but really only need to handle 5 anyway
+struct QueueJobPackStructure {
+ uint8_t payloadSize;
+ uint8_t signature;
+ uint8_t jobsInArray;
+ struct QueueJobStructure jobs[5];
+ uint8_t endOfWrapper;
+};
+
+// TODO: Implement in API and also in usb device selection
+struct SaveString {
+ uint8_t payloadSize;
+ uint8_t payloadData[BFLSC_MAXPAYLOAD];
+};
+
+// Commands (Single Stage)
+#define BFLSC_IDENTIFY "ZGX"
+#define BFLSC_IDENTIFY_LEN (sizeof(BFLSC_IDENTIFY)-1)
+#define BFLSC_DETAILS "ZCX"
+#define BFLSC_DETAILS_LEN (sizeof(BFLSC_DETAILS)-1)
+#define BFLSC_FIRMWARE "ZJX"
+#define BFLSC_FIRMWARE_LEN (sizeof(BFLSC_FIRMWARE)-1)
+#define BFLSC_FLASH "ZMX"
+#define BFLSC_FLASH_LEN (sizeof(BFLSC_FLASH)-1)
+#define BFLSC_VOLTAGE "ZTX"
+#define BFLSC_VOLTAGE_LEN (sizeof(BFLSC_VOLTAGE)-1)
+#define BFLSC_TEMPERATURE "ZLX"
+#define BFLSC_TEMPERATURE_LEN (sizeof(BFLSC_TEMPERATURE)-1)
+#define BFLSC_QRES "ZOX"
+#define BFLSC_QRES_LEN (sizeof(BFLSC_QRES)-1)
+#define BFLSC_QFLUSH "ZQX"
+#define BFLSC_QFLUSH_LEN (sizeof(BFLSC_QFLUSH)-1)
+#define BFLSC_FANAUTO "Z9X"
+#define BFLSC_FANOUT_LEN (sizeof(BFLSC_FANAUTO)-1)
+#define BFLSC_FAN0 "Z0X"
+#define BFLSC_FAN0_LEN (sizeof(BFLSC_FAN0)-1)
+#define BFLSC_FAN1 "Z1X"
+#define BFLSC_FAN1_LEN (sizeof(BFLSC_FAN1)-1)
+#define BFLSC_FAN2 "Z2X"
+#define BFLSC_FAN2_LEN (sizeof(BFLSC_FAN2)-1)
+#define BFLSC_FAN3 "Z3X"
+#define BFLSC_FAN3_LEN (sizeof(BFLSC_FAN3)-1)
+#define BFLSC_FAN4 "Z4X"
+#define BFLSC_FAN4_LEN (sizeof(BFLSC_FAN4)-1)
+#define BFLSC_LOADSTR "ZUX"
+#define BFLSC_LOADSTR_LEN (sizeof(BFLSC_LOADSTR)-1)
+
+// Commands (Dual Stage)
+#define BFLSC_QJOB "ZNX"
+#define BFLSC_QJOB_LEN (sizeof(BFLSC_QJOB)-1)
+#define BFLSC_QJOBS "ZWX"
+#define BFLSC_QJOBS_LEN (sizeof(BFLSC_QJOBS)-1)
+#define BFLSC_SAVESTR "ZSX"
+#define BFLSC_SAVESTR_LEN (sizeof(BFLSC_SAVESTR)-1)
+
+// Replies
+#define BFLSC_IDENTITY "BitFORCE SC"
+#define BFLSC_BFLSC "SHA256 SC"
+
+#define BFLSC_OK "OK\n"
+#define BFLSC_OK_LEN (sizeof(BFLSC_OK)-1)
+#define BFLSC_SUCCESS "SUCCESS\n"
+#define BFLSC_SUCCESS_LEN (sizeof(BFLSC_SUCCESS)-1)
+
+#define BFLSC_RESULT "COUNT:"
+#define BFLSC_RESULT_LEN (sizeof(BFLSC_RESULT)-1)
+
+#define BFLSC_ANERR "ERR:"
+#define BFLSC_ANERR_LEN (sizeof(BFLSC_ANERR)-1)
+#define BFLSC_TIMEOUT BFLSC_ANERR "TIMEOUT"
+#define BFLSC_TIMEOUT_LEN (sizeof(BFLSC_TIMEOUT)-1)
+// x-link timeout has a space (a number follows)
+#define BFLSC_XTIMEOUT BFLSC_ANERR "TIMEOUT "
+#define BFLSC_XTIMEOUT_LEN (sizeof(BFLSC_XTIMEOUT)-1)
+#define BFLSC_INVALID BFLSC_ANERR "INVALID DATA"
+#define BFLSC_INVALID_LEN (sizeof(BFLSC_INVALID)-1)
+#define BFLSC_ERRSIG BFLSC_ANERR "SIGNATURE"
+#define BFLSC_ERRSIG_LEN (sizeof(BFLSC_ERRSIG)-1)
+#define BFLSC_OKQ "OK:QUEUED"
+#define BFLSC_OKQ_LEN (sizeof(BFLSC_OKQ)-1)
+// Followed by N=1..5
+#define BFLSC_OKQN "OK:QUEUED "
+#define BFLSC_OKQN_LEN (sizeof(BFLSC_OKQN)-1)
+#define BFLSC_QFULL "QUEUE FULL"
+#define BFLSC_QFULL_LEN (sizeof(BFLSC_QFULL)-1)
+#define BFLSC_HITEMP "HIGH TEMPERATURE RECOVERY"
+#define BFLSC_HITEMP_LEN (sizeof(BFLSC_HITEMP)-1)
+#define BFLSC_EMPTYSTR "MEMORY EMPTY"
+#define BFLSC_EMPTYSTR_LEN (sizeof(BFLSC_EMPTYSTR)-1)
+
+// Queued and non-queued are the same
+#define FullNonceRangeJob QueueJobStructure
+#define BFLSC_JOBSIZ BFLSC_QJOBSIZ
+
+// Non queued commands (not used)
+#define BFLSC_SENDWORK "ZDX"
+#define BFLSC_SENDWORK_LEN (sizeof(BFLSC_SENDWORK)-1)
+#define BFLSC_WORKSTATUS "ZFX"
+#define BFLSC_WORKSTATUS_LEN (sizeof(BFLSC_WORKSTATUS)-1)
+#define BFLSC_SENDRANGE "ZPX"
+#define BFLSC_SENDRANGE_LEN (sizeof(BFLSC_SENDRANGE)-1)
+
+// Non queued work replies (not used)
+#define BFLSC_NONCE "NONCE-FOUND:"
+#define BFLSC_NONCE_LEN (sizeof(BFLSC_NONCE)-1)
+#define BFLSC_NO_NONCE "NO-NONCE"
+#define BFLSC_NO_NONCE_LEN (sizeof(BFLSC_NO_NONCE)-1)
+#define BFLSC_IDLE "IDLE"
+#define BFLSC_IDLE_LEN (sizeof(BFLSC_IDLE)-1)
+#define BFLSC_BUSY "BUSY"
+#define BFLSC_BUSY_LEN (sizeof(BFLSC_BUSY)-1)
+
+#define BFLSC_MINIRIG "BAM"
+#define BFLSC_SINGLE "BAS"
+#define BFLSC_LITTLESINGLE "BAL"
+#define BFLSC_JALAPENO "BAJ"
+
+// Default expected time for a nonce range
+// - thus no need to check until this + last time work was found
+// 60GH/s MiniRig (1 board) or Single
+#define BAM_WORK_TIME 71.58
+#define BAS_WORK_TIME 71.58
+// 30GH/s Little Single
+#define BAL_WORK_TIME 143.17
+// 4.5GH/s Jalapeno
+#define BAJ_WORK_TIME 954.44
+
+// Defaults (slightly over half the work time) but ensure none are above 100
+// SCAN_TIME - delay after sending work
+// RES_TIME - delay between checking for results
+#define BAM_SCAN_TIME 20
+#define BAM_RES_TIME 2
+#define BAS_SCAN_TIME 360
+#define BAS_RES_TIME 36
+#define BAL_SCAN_TIME 720
+#define BAL_RES_TIME 72
+#define BAJ_SCAN_TIME 1000
+#define BAJ_RES_TIME 100
+#define BFLSC_MAX_SLEEP 2000
+
+#define BAJ_LATENCY LATENCY_STD
+#define BAL_LATENCY 12
+#define BAS_LATENCY 12
+// For now a BAM doesn't really exist - it's currently 8 independent BASs
+#define BAM_LATENCY 2
+
+#define BFLSC_TEMP_SLEEPMS 5
+
+#define BFLSC_QUE_SIZE_V1 20
+#define BFLSC_QUE_FULL_ENOUGH_V1 13
+#define BFLSC_QUE_WATERMARK_V1 6
+#define BFLSC_QUE_LOW_V1 2
+
+// TODO: use 5 batch jobs
+// TODO: base these numbers on the chip count?
+#define BFLSC_QUE_SIZE_V2 40
+#define BFLSC_QUE_FULL_ENOUGH_V2 36
+#define BFLSC_QUE_WATERMARK_V2 32
+#define BFLSC_QUE_LOW_V2 8
+
+// Must drop this far below cutoff before resuming work
+#define BFLSC_TEMP_RECOVER 5
+
+// If initialisation fails the first time,
+// sleep this amount (ms) and try again
+#define REINIT_TIME_FIRST_MS 100
+// Max ms per sleep
+#define REINIT_TIME_MAX_MS 800
+// Keep trying up to this many us
+#define REINIT_TIME_MAX 3000000
+
+#endif /* BFLSC_H */