First pass rewriting serialdev into direct usb dev for avalon driver.
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
diff --git a/driver-avalon.c b/driver-avalon.c
index dab8011..00a8a72 100644
--- a/driver-avalon.c
+++ b/driver-avalon.c
@@ -122,38 +122,29 @@ static inline void avalon_create_task(struct avalon_task *at,
memcpy(at->data, work->data + 64, 12);
}
-static int avalon_write(int fd, char *buf, ssize_t len)
+static int avalon_write(struct cgpu_info *avalon, char *buf, ssize_t len)
{
ssize_t wrote = 0;
while (len > 0) {
- struct timeval timeout;
- ssize_t ret;
- fd_set wd;
-
- timeout.tv_sec = 0;
- timeout.tv_usec = 100000;
- FD_ZERO(&wd);
- FD_SET((SOCKETTYPE)fd, &wd);
- ret = select(fd + 1, NULL, &wd, NULL, &timeout);
- if (unlikely(ret < 1)) {
- applog(LOG_WARNING, "Select error on avalon_write");
- return AVA_SEND_ERROR;
- }
- ret = write(fd, buf + wrote, len);
- if (unlikely(ret < 1)) {
- applog(LOG_WARNING, "Write error on avalon_write");
+ int amount, err;
+
+ err = usb_write(avalon, buf + wrote, len, &amount, C_AVALON_TASK);
+ applog(LOG_DEBUG, "%s%i: usb_write got err %d",
+ avalon->drv->name, avalon->device_id, err);
+
+ if (unlikely(err != 0)) {
+ applog(LOG_WARNING, "usb_write error on avalon_write");
return AVA_SEND_ERROR;
}
- wrote += ret;
- len -= ret;
+ wrote += amount;
+ len -= amount;
}
return AVA_SEND_OK;
}
-static int avalon_send_task(int fd, const struct avalon_task *at,
- struct cgpu_info *avalon)
+static int avalon_send_task(const struct avalon_task *at, struct cgpu_info *avalon)
{
struct timespec p;
@@ -213,7 +204,7 @@ static int avalon_send_task(int fd, const struct avalon_task *at,
applog(LOG_DEBUG, "Avalon: Sent(%u):", (unsigned int)nr_len);
hexdump(buf, nr_len);
}
- ret = avalon_write(fd, (char *)buf, nr_len);
+ ret = avalon_write(avalon, (char *)buf, nr_len);
p.tv_sec = 0;
p.tv_nsec = (long)delay + 4000000;
@@ -236,31 +227,37 @@ static bool avalon_decode_nonce(struct thr_info *thr, struct cgpu_info *avalon,
return submit_nonce(thr, work, nonce);
}
-static int avalon_read(int fd, char *buf, ssize_t len)
+static int avalon_read(struct cgpu_info *avalon, char *buf, ssize_t len)
{
ssize_t aread = 0;
while (len > 0) {
- struct timeval timeout;
- ssize_t ret;
- fd_set rd;
-
- timeout.tv_sec = 0;
- timeout.tv_usec = 100000;
- FD_ZERO(&rd);
- FD_SET((SOCKETTYPE)fd, &rd);
- ret = select(fd + 1, &rd, NULL, NULL, &timeout);
- if (unlikely(ret < 1)) {
- applog(LOG_WARNING, "Select error on avalon_read");
- return AVA_GETS_ERROR;
- }
- ret = read(fd, buf + aread, len);
- if (unlikely(ret < 1)) {
- applog(LOG_WARNING, "Read error on avalon_read");
- return AVA_GETS_ERROR;
+ int amount, err, offset, cp;
+ char readbuf[AVALON_FTDI_READSIZE];
+
+ err = usb_read_once_timeout(avalon, readbuf, AVALON_FTDI_READSIZE,
+ &amount, AVALON_READ_TIMEOUT,
+ C_AVALON_READ);
+ if (err && err != LIBUSB_ERROR_TIMEOUT) {
+ applog(LOG_WARNING, "%s%i: Get avalon read got err %d",
+ avalon->drv->name, avalon->device_id, err);
+ nmsleep(AVALON_READ_TIMEOUT);
+ continue;
}
- aread += ret;
- len -= ret;
+
+ if (amount < 3)
+ continue;
+
+ offset = 2;
+ do {
+ cp = amount - 2;
+ if (cp > 62)
+ cp = 62;
+ memcpy(&buf[aread], readbuf, cp);
+ aread += cp;
+ amount -= cp + 2;
+ offset += 64;
+ } while (amount > 2);
}
return AVA_GETS_OK;
@@ -268,14 +265,14 @@ static int avalon_read(int fd, char *buf, ssize_t len)
/* Wait until the ftdi chip returns a CTS saying we can send more data. The
* status is updated every 40ms. */
-static void wait_avalon_ready(int fd)
+static void wait_avalon_ready(struct cgpu_info *avalon)
{
- while (avalon_buffer_full(fd) == AVA_BUFFER_FULL) {
+ while (avalon_buffer_full(avalon)) {
nmsleep(40);
}
}
-static int avalon_reset(struct cgpu_info *avalon, int fd, bool initial)
+static int avalon_reset(struct cgpu_info *avalon, bool initial)
{
struct avalon_result ar;
struct avalon_task at;
@@ -292,9 +289,9 @@ static int avalon_reset(struct cgpu_info *avalon, int fd, bool initial)
0, 0,
AVALON_DEFAULT_FREQUENCY);
- wait_avalon_ready(fd);
+ wait_avalon_ready(avalon);
- ret = avalon_send_task(fd, &at, NULL);
+ ret = avalon_send_task(&at, NULL);
if (unlikely(ret == AVA_SEND_ERROR))
return -1;
@@ -303,7 +300,7 @@ static int avalon_reset(struct cgpu_info *avalon, int fd, bool initial)
return 0;
}
- ret = avalon_read(fd, (char *)&ar, AVALON_READ_SIZE);
+ ret = avalon_read(avalon, (char *)&ar, AVALON_READ_SIZE);
if (unlikely(ret == AVA_GETS_ERROR))
return -1;
@@ -483,13 +480,12 @@ static void get_options(int this_option_offset, int *baud, int *miner_count,
}
}
-static void avalon_idle(struct cgpu_info *avalon, struct avalon_info *info,
- int fd)
+static void avalon_idle(struct cgpu_info *avalon, struct avalon_info *info)
{
int i;
info->idle = true;
- wait_avalon_ready(fd);
+ wait_avalon_ready(avalon);
applog(LOG_WARNING, "AVA%i: Idling %d miners", avalon->device_id,
info->miner_count);
/* Send idle to all miners */
@@ -499,53 +495,134 @@ static void avalon_idle(struct cgpu_info *avalon, struct avalon_info *info,
avalon_init_task(&at, 0, 0, info->fan_pwm, info->timeout,
info->asic_count, info->miner_count, 1, 1,
info->frequency);
- avalon_send_task(fd, &at, avalon);
+ avalon_send_task(&at, avalon);
}
- wait_avalon_ready(fd);
+ wait_avalon_ready(avalon);
}
-static bool avalon_detect_one(const char *devpath)
+static void avalon_initialise(struct cgpu_info *avalon)
+{
+ int err, interface;
+
+ if (avalon->usbinfo.nodev)
+ return;
+
+ interface = avalon->usbdev->found->interface;
+ // Reset
+ err = usb_transfer(avalon, FTDI_TYPE_OUT, FTDI_REQUEST_RESET,
+ FTDI_VALUE_RESET, interface, C_RESET);
+
+ applog(LOG_DEBUG, "%s%i: reset got err %d",
+ avalon->drv->name, avalon->device_id, err);
+
+ if (avalon->usbinfo.nodev)
+ return;
+
+ // Set data
+ err = usb_transfer(avalon, FTDI_TYPE_OUT, FTDI_REQUEST_DATA,
+ FTDI_VALUE_DATA_AVA, interface, C_SETDATA);
+
+ applog(LOG_DEBUG, "%s%i: data got err %d",
+ avalon->drv->name, avalon->device_id, err);
+
+ if (avalon->usbinfo.nodev)
+ return;
+
+ // Set the baud
+ err = usb_transfer(avalon, FTDI_TYPE_OUT, FTDI_REQUEST_BAUD, FTDI_VALUE_BAUD_AVA,
+ (FTDI_INDEX_BAUD_AVA & 0xff00) | interface,
+ C_SETBAUD);
+
+ applog(LOG_DEBUG, "%s%i: setbaud got err %d",
+ avalon->drv->name, avalon->device_id, err);
+
+ if (avalon->usbinfo.nodev)
+ return;
+
+ // Set Modem Control
+ err = usb_transfer(avalon, FTDI_TYPE_OUT, FTDI_REQUEST_MODEM,
+ FTDI_VALUE_MODEM, interface, C_SETMODEM);
+
+ applog(LOG_DEBUG, "%s%i: setmodemctrl got err %d",
+ avalon->drv->name, avalon->device_id, err);
+
+ if (avalon->usbinfo.nodev)
+ return;
+
+ // Set Flow Control
+ err = usb_transfer(avalon, FTDI_TYPE_OUT, FTDI_REQUEST_FLOW,
+ FTDI_VALUE_FLOW, interface, C_SETFLOW);
+
+ applog(LOG_DEBUG, "%s%i: setflowctrl got err %d",
+ avalon->drv->name, avalon->device_id, err);
+
+ if (avalon->usbinfo.nodev)
+ return;
+
+ /* Avalon repeats the following */
+ // Set Modem Control
+ err = usb_transfer(avalon, FTDI_TYPE_OUT, FTDI_REQUEST_MODEM,
+ FTDI_VALUE_MODEM, interface, C_SETMODEM);
+
+ applog(LOG_DEBUG, "%s%i: setmodemctrl 2 got err %d",
+ avalon->drv->name, avalon->device_id, err);
+
+ if (avalon->usbinfo.nodev)
+ return;
+
+ // Set Flow Control
+ err = usb_transfer(avalon, FTDI_TYPE_OUT, FTDI_REQUEST_FLOW,
+ FTDI_VALUE_FLOW, interface, C_SETFLOW);
+
+ applog(LOG_DEBUG, "%s%i: setflowctrl 2 got err %d",
+ avalon->drv->name, avalon->device_id, err);
+}
+
+static bool avalon_detect_one(libusb_device *dev, struct usb_find_devices *found)
{
- struct avalon_info *info;
- int fd, ret;
int baud, miner_count, asic_count, timeout, frequency = 0;
+ int this_option_offset = ++option_offset;
+ struct avalon_info *info;
struct cgpu_info *avalon;
+ char devpath[20];
+ int ret;
+
+ avalon = calloc(1, sizeof(struct cgpu_info));
+ if (unlikely(!avalon))
+ quit(1, "Failed to calloc avalon in avalon_detect_one");;
+ avalon->drv = &avalon_drv;
+ avalon->threads = AVALON_MINER_THREADS;
- int this_option_offset = ++option_offset;
get_options(this_option_offset, &baud, &miner_count, &asic_count,
&timeout, &frequency);
- applog(LOG_DEBUG, "Avalon Detect: Attempting to open %s "
- "(baud=%d miner_count=%d asic_count=%d timeout=%d frequency=%d)",
- devpath, baud, miner_count, asic_count, timeout, frequency);
-
- fd = avalon_open2(devpath, baud, true);
- if (unlikely(fd == -1)) {
- applog(LOG_ERR, "Avalon Detect: Failed to open %s", devpath);
+ if (!usb_init(avalon, dev, found))
return false;
- }
/* We have a real Avalon! */
- avalon = calloc(1, sizeof(struct cgpu_info));
- avalon->drv = &avalon_drv;
+ sprintf(devpath, "%d:%d",
+ (int)(avalon->usbinfo.bus_number),
+ (int)(avalon->usbinfo.device_address));
+
+ avalon_initialise(avalon);
+
+ applog(LOG_DEBUG, "Avalon Detected: %s "
+ "(miner_count=%d asic_count=%d timeout=%d frequency=%d)",
+ devpath, miner_count, asic_count, timeout, frequency);
+
avalon->device_path = strdup(devpath);
- avalon->device_fd = fd;
- avalon->threads = AVALON_MINER_THREADS;
add_cgpu(avalon);
avalon_infos = realloc(avalon_infos,
sizeof(struct avalon_info *) *
(total_devices + 1));
-
- applog(LOG_INFO, "Avalon Detect: Found at %s, mark as %d",
- devpath, avalon->device_id);
+ if (unlikely(!avalon_infos))
+ quit(1, "Failed to malloc avalon_infos");
avalon_infos[avalon->device_id] = calloc(sizeof(struct avalon_info), 1);
if (unlikely(!(avalon_infos[avalon->device_id])))
- quit(1, "Failed to calloc avalon_infos");
-
- avalon->device_data = avalon_infos[avalon->device_id];
- info = avalon->device_data;
+ quit(1, "Failed to malloc avalon_infos device");
+ info = avalon_infos[avalon->device_id];
info->baud = baud;
info->miner_count = miner_count;
@@ -564,20 +641,20 @@ static bool avalon_detect_one(const char *devpath)
info->temp_old = 0;
info->frequency = frequency;
- ret = avalon_reset(avalon, fd, true);
+ ret = avalon_reset(avalon, true);
if (ret) {
- ; /* FIXME: I think IT IS avalon and wait on reset;
- * avalon_close(fd);
- * return false; */
+ /* FIXME:
+ * avalon_close(fd);
+ * return false; */
}
- avalon_idle(avalon, info, fd);
+ avalon_idle(avalon, info);
return true;
}
-static inline void avalon_detect()
+static void avalon_detect(void)
{
- serial_detect(&avalon_drv, avalon_detect_one);
+ usb_detect(&avalon_drv, avalon_detect_one);
}
static void avalon_init(struct cgpu_info *avalon)
@@ -658,21 +735,21 @@ static void avalon_parse_results(struct cgpu_info *avalon, struct avalon_info *i
}
static void __avalon_running_reset(struct cgpu_info *avalon,
- struct avalon_info *info, int fd)
+ struct avalon_info *info)
{
info->reset = true;
- avalon_reset(avalon, fd, false);
- avalon_idle(avalon, info, fd);
+ avalon_reset(avalon, false);
+ avalon_idle(avalon, info);
avalon->results = 0;
info->reset = false;
}
static void avalon_running_reset(struct cgpu_info *avalon,
- struct avalon_info *info, int fd)
+ struct avalon_info *info)
{
/* Lock to prevent more work being sent during reset */
mutex_lock(&info->qlock);
- __avalon_running_reset(avalon, info, fd);
+ __avalon_running_reset(avalon, info);
mutex_unlock(&info->qlock);
}
@@ -683,7 +760,6 @@ static void *avalon_get_results(void *userdata)
const int rsize = AVALON_FTDI_READSIZE;
char readbuf[AVALON_READBUF_SIZE];
struct thr_info *thr = info->thr;
- int fd = avalon->device_fd;
char threadname[24];
int offset = 0;
@@ -693,10 +769,8 @@ static void *avalon_get_results(void *userdata)
RenameThread(threadname);
while (42) {
- struct timeval timeout;
+ int amount, err, ofs, cp;
char buf[rsize];
- ssize_t ret;
- fd_set rd;
if (offset >= (int)AVALON_READ_SIZE)
avalon_parse_results(avalon, info, thr, readbuf, &offset);
@@ -707,26 +781,21 @@ static void *avalon_get_results(void *userdata)
offset = 0;
}
- timeout.tv_sec = 0;
- timeout.tv_usec = AVALON_READ_TIMEOUT * 1000;
- FD_ZERO(&rd);
- FD_SET((SOCKETTYPE)fd, &rd);
- ret = select(fd + 1, &rd, NULL, NULL, &timeout);
- if (ret < 1) {
- if (unlikely(ret < 0))
- applog(LOG_WARNING, "Select error in avalon_get_results");
+ err = usb_read_once_timeout(avalon, buf, rsize, &amount,
+ AVALON_READ_TIMEOUT, C_AVALON_READ);
+ if (err && err != LIBUSB_ERROR_TIMEOUT) {
+ applog(LOG_WARNING, "%s%i: Get avalon read got err %d",
+ avalon->drv->name, avalon->device_id, err);
+ nmsleep(AVALON_READ_TIMEOUT);
continue;
}
- ret = read(fd, buf, AVALON_FTDI_READSIZE);
- if (unlikely(ret < 1)) {
- if (unlikely(ret < 0))
- applog(LOG_WARNING, "Read error in avalon_get_results");
+
+ if (amount < 3)
continue;
- }
if (opt_debug) {
applog(LOG_DEBUG, "Avalon: get:");
- hexdump((uint8_t *)buf, ret);
+ hexdump((uint8_t *)buf, amount);
}
/* During a reset, goes on reading but discards anything */
@@ -735,8 +804,16 @@ static void *avalon_get_results(void *userdata)
continue;
}
- memcpy(&readbuf[offset], buf, ret);
- offset += ret;
+ ofs = 2;
+ do {
+ cp = amount - 2;
+ if (cp > 62)
+ cp = 62;
+ memcpy(&readbuf[offset], &buf[ofs], cp);
+ offset += cp;
+ amount -= cp + 2;
+ ofs += 64;
+ } while (amount > 2);
}
return NULL;
}
@@ -753,7 +830,6 @@ static void *avalon_send_tasks(void *userdata)
struct cgpu_info *avalon = (struct cgpu_info *)userdata;
struct avalon_info *info = avalon->device_data;
const int avalon_get_work_count = info->miner_count;
- int fd = avalon->device_fd;
char threadname[24];
pthread_detach(pthread_self());
@@ -766,13 +842,13 @@ static void *avalon_send_tasks(void *userdata)
struct avalon_task at;
int idled = 0;
- wait_avalon_ready(fd);
+ wait_avalon_ready(avalon);
mutex_lock(&info->qlock);
start_count = avalon->work_array * avalon_get_work_count;
end_count = start_count + avalon_get_work_count;
for (i = start_count, j = 0; i < end_count; i++, j++) {
- if (unlikely(avalon_buffer_full(fd) == AVA_BUFFER_FULL)) {
+ if (unlikely(avalon_buffer_full(avalon))) {
applog(LOG_WARNING,
"AVA%i: Buffer full after only %d of %d work queued",
avalon->device_id, j, avalon_get_work_count);
@@ -791,12 +867,12 @@ static void *avalon_send_tasks(void *userdata)
info->timeout, info->asic_count,
info->miner_count, 1, 1, info->frequency);
}
- ret = avalon_send_task(fd, &at, avalon);
+ ret = avalon_send_task(&at, avalon);
if (unlikely(ret == AVA_SEND_ERROR)) {
applog(LOG_ERR, "AVA%i: Comms error(buffer)",
avalon->device_id);
dev_error(avalon, REASON_DEV_COMMS_ERROR);
- __avalon_running_reset(avalon, info, fd);
+ __avalon_running_reset(avalon, info);
break;
}
}
@@ -875,15 +951,13 @@ static void do_avalon_close(struct thr_info *thr)
{
struct cgpu_info *avalon = thr->cgpu;
struct avalon_info *info = avalon->device_data;
- int fd = avalon->device_fd;
pthread_cancel(info->read_thr);
pthread_cancel(info->write_thr);
- __avalon_running_reset(avalon, info, fd);
- avalon_idle(avalon, info, fd);
+ __avalon_running_reset(avalon, info);
+ avalon_idle(avalon, info);
avalon_free_work(thr);
- avalon_close(fd);
- avalon->device_fd = -1;
+ //avalon_close();
info->no_matching_work = 0;
}
@@ -1028,7 +1102,7 @@ static int64_t avalon_scanhash(struct thr_info *thr)
if (avalon->results < -miner_count) {
applog(LOG_ERR, "AVA%d: Result return rate low, resetting!",
avalon->device_id);
- avalon_running_reset(avalon, info, avalon->device_fd);
+ avalon_running_reset(avalon, info);
}
/* This hashmeter is just a utility counter based on returned shares */
diff --git a/driver-avalon.h b/driver-avalon.h
index 17e5f22..c789274 100644
--- a/driver-avalon.h
+++ b/driver-avalon.h
@@ -122,13 +122,6 @@ struct avalon_info {
#define AVA_SEND_ERROR -1
#define AVA_SEND_OK 0
-#define AVA_BUFFER_FULL 0
-#define AVA_BUFFER_EMPTY 1
-
-#define avalon_open2(devpath, baud, purge) serial_open(devpath, baud, AVALON_RESET_FAULT_DECISECONDS, purge)
-#define avalon_open(devpath, baud) avalon_open2(devpath, baud, true)
-#define avalon_close(fd) close(fd)
-
#define avalon_buffer_full(avalon) !usb_ftdi_cts(avalon)
#define AVALON_READ_TIME(baud) ((double)AVALON_READ_SIZE * (double)8.0 / (double)(baud))
diff --git a/miner.h b/miner.h
index 6bfb754..7daba4b 100644
--- a/miner.h
+++ b/miner.h
@@ -430,9 +430,6 @@ struct cgpu_info {
#ifdef USE_USBUTILS
struct cg_usb_device *usbdev;
#endif
-#ifdef USE_AVALON
- int device_fd;
-#endif
};
#ifdef USE_AVALON
struct work **works;
diff --git a/usbutils.c b/usbutils.c
index f94dc84..50a9d97 100644
--- a/usbutils.c
+++ b/usbutils.c
@@ -455,6 +455,12 @@ static const char *C_SENDTESTWORK_S = "SendTestWork";
static const char *C_LATENCY_S = "SetLatency";
static const char *C_SETLINE_S = "SetLine";
static const char *C_VENDOR_S = "Vendor";
+static const char *C_AVALON_TASK_S = "AvalonTask";
+static const char *C_AVALON_READ_S = "AvalonRead";
+static const char *C_GET_AVALON_READY_S = "AvalonReady";
+static const char *C_AVALON_RESET_S = "AvalonReset";
+static const char *C_GET_AR_S = "AvalonResult";
+static const char *C_FTDI_STATUS_S = "FTDIStatus";
#ifdef EOL
#undef EOL
@@ -927,6 +933,12 @@ static void cgusb_check_init()
usb_commands[C_LATENCY] = C_LATENCY_S;
usb_commands[C_SETLINE] = C_SETLINE_S;
usb_commands[C_VENDOR] = C_VENDOR_S;
+ usb_commands[C_AVALON_TASK] = C_AVALON_TASK_S;
+ usb_commands[C_AVALON_READ] = C_AVALON_READ_S;
+ usb_commands[C_GET_AVALON_READY] = C_GET_AVALON_READY_S;
+ usb_commands[C_AVALON_RESET] = C_AVALON_RESET_S;
+ usb_commands[C_GET_AR] = C_GET_AR_S;
+ usb_commands[C_FTDI_STATUS] = C_FTDI_STATUS_S;
stats_initialised = true;
}
@@ -2218,6 +2230,9 @@ int _usb_read(struct cgpu_info *cgpu, int ep, char *buf, size_t bufsiz, int *pro
int usb_ftdi_cts(struct cgpu_info *cgpu)
{
+ struct cg_usb_device *usbdev = cgpu->usbdev;
+ unsigned char buf[2], ret;
+
libusb_control_transfer(usbdev->handle, (uint8_t)FTDI_TYPE_IN,
(uint8_t)5, (uint16_t)0, (uint16_t)0, buf, 2,
DEVTIMEOUT);
diff --git a/usbutils.h b/usbutils.h
index 23fdef2..f1ab43a 100644
--- a/usbutils.h
+++ b/usbutils.h
@@ -18,6 +18,7 @@
// For 0x0403:0x6014/0x6001 FT232H (and possibly others?) - BFL, BAS, BLT, LLT, AVA
#define FTDI_TYPE_OUT (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE | LIBUSB_ENDPOINT_OUT)
+#define FTDI_TYPE_IN (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE | LIBUSB_ENDPOINT_IN)
#define FTDI_REQUEST_RESET ((uint8_t)0)
#define FTDI_REQUEST_MODEM ((uint8_t)1)
@@ -40,6 +41,11 @@
#define FTDI_VALUE_BAUD_BLT 0x001a
#define FTDI_INDEX_BAUD_BLT 0x0000
+#define FTDI_VALUE_BAUD_AVA 0x001A
+#define FTDI_INDEX_BAUD_AVA 0x0000
+
+#define FTDI_VALUE_DATA_AVA 8
+
// Data control
#define FTDI_VALUE_DATA_BFL 0
#define FTDI_VALUE_DATA_BAS FTDI_VALUE_DATA_BFL
@@ -210,6 +216,12 @@ enum usb_cmds {
C_LATENCY,
C_SETLINE,
C_VENDOR,
+ C_AVALON_TASK,
+ C_AVALON_READ,
+ C_GET_AVALON_READY,
+ C_AVALON_RESET,
+ C_GET_AR,
+ C_FTDI_STATUS,
C_MAX
};
@@ -238,6 +250,9 @@ void usb_initialise();
#define usb_read_once(cgpu, buf, bufsiz, read, cmd) \
_usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, DEVTIMEOUT, NULL, cmd, true)
+#define usb_read_once_timeout(cgpu, buf, bufsiz, read, timeout, cmd) \
+ _usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, timeout, NULL, cmd, true)
+
#define usb_read_nl(cgpu, buf, bufsiz, read, cmd) \
_usb_read(cgpu, DEFAULT_EP_IN, buf, bufsiz, read, DEVTIMEOUT, "\n", cmd, false)