| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845 |
- /*
- * Copyright 2012 Luke Dashjr
- * Copyright 2012 Andrew Smith
- *
- * 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.
- */
- #include "config.h"
- #ifdef WIN32
- #define FD_SETSIZE 4096
- #endif
- #include <limits.h>
- #include <stdarg.h>
- #include <stdio.h>
- #include <unistd.h>
- #include "dynclock.h"
- #include "logging.h"
- #include "miner.h"
- #include "fpgautils.h"
- #include "util.h"
- #define BITSTREAM_FILENAME "fpgaminer_top_fixed7_197MHz.bit"
- #define BISTREAM_USER_ID "\2\4$B"
- #define MODMINER_MAX_CLOCK 230
- #define MODMINER_DEF_CLOCK 200
- #define MODMINER_MIN_CLOCK 2
- // Commands
- #define MODMINER_PING "\x00"
- #define MODMINER_GET_VERSION "\x01"
- #define MODMINER_FPGA_COUNT "\x02"
- // Commands + require FPGAid
- #define MODMINER_GET_IDCODE '\x03'
- #define MODMINER_GET_USERCODE '\x04'
- #define MODMINER_PROGRAM '\x05'
- #define MODMINER_SET_CLOCK '\x06'
- #define MODMINER_READ_CLOCK '\x07'
- #define MODMINER_SEND_WORK '\x08'
- #define MODMINER_CHECK_WORK '\x09'
- // One byte temperature reply
- #define MODMINER_TEMP1 '\x0a'
- #define FPGAID_ALL 4
- struct device_api modminer_api;
- struct modminer_fpga_state {
- bool work_running;
- struct work running_work;
- struct work last_work;
- struct timeval tv_workstart;
- uint32_t hashes;
- char next_work_cmd[46];
- struct dclk_data dclk;
- uint8_t freqMaxMaxM;
- // Number of nonces didn't meet pdiff 1, ever
- int bad_share_counter;
- // Number of nonces did meet pdiff 1, ever
- int good_share_counter;
- // Time the clock was last reduced due to temperature
- time_t last_cutoff_reduced;
- unsigned char temp;
- unsigned char pdone;
- };
- static inline bool
- _bailout(int fd, struct cgpu_info*modminer, int prio, const char *fmt, ...)
- {
- if (fd != -1)
- serial_close(fd);
- if (modminer) {
- modminer->device_fd = -1;
- mutex_unlock(&modminer->device_mutex);
- }
- va_list ap;
- va_start(ap, fmt);
- vapplog(prio, fmt, ap);
- va_end(ap);
- return false;
- }
- #define bailout(...) return _bailout(fd, NULL, __VA_ARGS__);
- // 45 noops sent when detecting, in case the device was left in "start job" reading
- static const char NOOP[] = MODMINER_PING "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff";
- static bool
- modminer_detect_one(const char *devpath)
- {
- int fd = serial_open(devpath, 0, 10, true);
- if (unlikely(fd == -1))
- bailout(LOG_DEBUG, "ModMiner detect: failed to open %s", devpath);
- char buf[0x100];
- ssize_t len;
- // Sending a "ping" first, to workaround bug in new firmware betas (see issue #62)
- // Sending 45 noops, just in case the device was left in "start job" reading
- (void)(write(fd, NOOP, sizeof(NOOP)) ?:0);
- while (serial_read(fd, buf, sizeof(buf)) > 0)
- ;
- if (1 != write(fd, MODMINER_GET_VERSION, 1))
- bailout(LOG_DEBUG, "ModMiner detect: write failed on %s (get version)", devpath);
- len = serial_read(fd, buf, sizeof(buf)-1);
- if (len < 1)
- bailout(LOG_DEBUG, "ModMiner detect: no response to version request from %s", devpath);
- buf[len] = '\0';
- char*devname = strdup(buf);
- applog(LOG_DEBUG, "ModMiner identified as: %s", devname);
- if (1 != write(fd, MODMINER_FPGA_COUNT, 1))
- bailout(LOG_DEBUG, "ModMiner detect: write failed on %s (get FPGA count)", devpath);
- len = read(fd, buf, 1);
- if (len < 1)
- bailout(LOG_ERR, "ModMiner detect: timeout waiting for FPGA count from %s", devpath);
- if (!buf[0])
- bailout(LOG_ERR, "ModMiner detect: zero FPGAs reported on %s", devpath);
- applog(LOG_DEBUG, "ModMiner %s has %u FPGAs", devname, buf[0]);
- serial_close(fd);
- struct cgpu_info *modminer;
- modminer = calloc(1, sizeof(*modminer));
- modminer->api = &modminer_api;
- mutex_init(&modminer->device_mutex);
- modminer->device_path = strdup(devpath);
- modminer->device_fd = -1;
- modminer->deven = DEV_ENABLED;
- modminer->threads = buf[0];
- modminer->name = devname;
- modminer->cutofftemp = 85;
- return add_cgpu(modminer);
- }
- #undef bailout
- static int
- modminer_detect_auto()
- {
- return
- serial_autodetect_udev (modminer_detect_one, "*ModMiner*") ?:
- serial_autodetect_devserial(modminer_detect_one, "BTCFPGA_ModMiner") ?:
- 0;
- }
- static void
- modminer_detect()
- {
- serial_detect_auto(&modminer_api, modminer_detect_one, modminer_detect_auto);
- }
- #define bailout(...) return _bailout(-1, modminer, __VA_ARGS__);
- #define bailout2(...) return _bailout(fd, modminer, __VA_ARGS__);
- #define bailout3(...) _bailout(fd, modminer, __VA_ARGS__);
- static bool
- modminer_reopen(struct cgpu_info*modminer)
- {
- close(modminer->device_fd);
- int fd = serial_open(modminer->device_path, 0, 10, true);
- if (unlikely(-1 == fd)) {
- applog(LOG_ERR, "%s %u: Failed to reopen %s", modminer->api->name, modminer->device_id, modminer->device_path);
- return false;
- }
- modminer->device_fd = fd;
- return true;
- }
- #define safebailout() do { \
- bool _safebailoutrv; \
- state->work_running = false; \
- _safebailoutrv = modminer_reopen(modminer); \
- mutex_unlock(&modminer->device_mutex); \
- return _safebailoutrv ? 0 : -1; \
- } while(0)
- #define check_magic(L) do { \
- if (1 != fread(buf, 1, 1, f)) \
- bailout(LOG_ERR, "Error reading ModMiner firmware ('%c')", L); \
- if (buf[0] != L) \
- bailout(LOG_ERR, "ModMiner firmware has wrong magic ('%c')", L); \
- } while(0)
- #define read_str(eng) do { \
- if (1 != fread(buf, 2, 1, f)) \
- bailout(LOG_ERR, "Error reading ModMiner firmware (" eng " len)"); \
- len = (ubuf[0] << 8) | ubuf[1]; \
- if (len >= sizeof(buf)) \
- bailout(LOG_ERR, "ModMiner firmware " eng " too long"); \
- if (1 != fread(buf, len, 1, f)) \
- bailout(LOG_ERR, "Error reading ModMiner firmware (" eng ")"); \
- buf[len] = '\0'; \
- } while(0)
- #define status_read(eng) do { \
- FD_ZERO(&fds); \
- FD_SET(fd, &fds); \
- select(fd+1, &fds, NULL, NULL, NULL); \
- if (1 != read(fd, buf, 1)) \
- bailout2(LOG_ERR, "%s %u: Error programming %s (" eng ")", modminer->api->name, modminer->device_id, modminer->device_path); \
- if (buf[0] != 1) \
- bailout2(LOG_ERR, "%s %u: Wrong " eng " programming %s", modminer->api->name, modminer->device_id, modminer->device_path); \
- } while(0)
- static bool
- modminer_fpga_upload_bitstream(struct cgpu_info*modminer)
- {
- struct modminer_fpga_state *state = modminer->thr[0]->cgpu_data;
- fd_set fds;
- char buf[0x100];
- unsigned long len, flen;
- char fpgaid = FPGAID_ALL;
- FILE *f = open_xilinx_bitstream(modminer, BITSTREAM_FILENAME, &len);
- if (!f)
- return false;
- flen = len;
- int fd = modminer->device_fd;
- applog(LOG_WARNING, "%s %u: Programming %s... DO NOT EXIT UNTIL COMPLETE", modminer->api->name, modminer->device_id, modminer->device_path);
- buf[0] = MODMINER_PROGRAM;
- buf[1] = fpgaid;
- buf[2] = (len >> 0) & 0xff;
- buf[3] = (len >> 8) & 0xff;
- buf[4] = (len >> 16) & 0xff;
- buf[5] = (len >> 24) & 0xff;
- if (6 != write(fd, buf, 6))
- bailout2(LOG_ERR, "%s %u: Error programming %s (cmd)", modminer->api->name, modminer->device_id, modminer->device_path);
- status_read("cmd reply");
- ssize_t buflen;
- char nextstatus = 10;
- while (len) {
- buflen = len < 32 ? len : 32;
- if (fread(buf, buflen, 1, f) != 1)
- bailout2(LOG_ERR, "%s %u: File underrun programming %s (%d bytes left)", modminer->api->name, modminer->device_id, modminer->device_path, len);
- if (write(fd, buf, buflen) != buflen)
- bailout2(LOG_ERR, "%s %u: Error programming %s (data)", modminer->api->name, modminer->device_id, modminer->device_path);
- state->pdone = 100 - ((len * 100) / flen);
- if (state->pdone >= nextstatus)
- {
- nextstatus += 10;
- applog(LOG_WARNING, "%s %u: Programming %s... %d%% complete...", modminer->api->name, modminer->device_id, modminer->device_path, state->pdone);
- }
- status_read("status");
- len -= buflen;
- }
- status_read("final status");
- applog(LOG_WARNING, "%s %u: Done programming %s", modminer->api->name, modminer->device_id, modminer->device_path);
- return true;
- }
- static bool
- modminer_device_prepare(struct cgpu_info *modminer)
- {
- int fd = serial_open(modminer->device_path, 0, 10, true);
- if (unlikely(-1 == fd))
- bailout(LOG_ERR, "%s %u: Failed to open %s", modminer->api->name, modminer->device_id, modminer->device_path);
- modminer->device_fd = fd;
- applog(LOG_INFO, "%s %u: Opened %s", modminer->api->name, modminer->device_id, modminer->device_path);
- struct timeval now;
- gettimeofday(&now, NULL);
- get_datestamp(modminer->init, &now);
- return true;
- }
- #undef bailout
- static bool
- modminer_fpga_prepare(struct thr_info *thr)
- {
- struct cgpu_info *modminer = thr->cgpu;
- // Don't need to lock the mutex here, since prepare runs from the main thread before the miner threads start
- if (modminer->device_fd == -1 && !modminer_device_prepare(modminer))
- return false;
- struct modminer_fpga_state *state;
- state = thr->cgpu_data = calloc(1, sizeof(struct modminer_fpga_state));
- dclk_prepare(&state->dclk);
- state->next_work_cmd[0] = MODMINER_SEND_WORK;
- state->next_work_cmd[1] = thr->device_thread; // FPGA id
- return true;
- }
- static bool
- modminer_change_clock(struct thr_info*thr, bool needlock, signed char delta)
- {
- struct cgpu_info*modminer = thr->cgpu;
- struct modminer_fpga_state *state = thr->cgpu_data;
- char fpgaid = thr->device_thread;
- int fd;
- unsigned char cmd[6], buf[1];
- unsigned char clk;
- clk = (state->dclk.freqM * 2) + delta;
- cmd[0] = MODMINER_SET_CLOCK;
- cmd[1] = fpgaid;
- cmd[2] = clk;
- cmd[3] = cmd[4] = cmd[5] = '\0';
- if (needlock)
- mutex_lock(&modminer->device_mutex);
- fd = modminer->device_fd;
- if (6 != write(fd, cmd, 6))
- bailout2(LOG_ERR, "%s %u.%u: Error writing (set frequency)", modminer->api->name, modminer->device_id, fpgaid);
- if (serial_read(fd, &buf, 1) != 1)
- bailout2(LOG_ERR, "%s %u.%u: Error reading (set frequency)", modminer->api->name, modminer->device_id, fpgaid);
- if (needlock)
- mutex_unlock(&modminer->device_mutex);
- if (buf[0])
- state->dclk.freqM = clk / 2;
- return true;
- }
- static bool modminer_dclk_change_clock(struct thr_info*thr, int multiplier)
- {
- struct cgpu_info *modminer = thr->cgpu;
- char fpgaid = thr->device_thread;
- struct modminer_fpga_state *state = thr->cgpu_data;
- uint8_t oldFreq = state->dclk.freqM;
- signed char delta = (multiplier - oldFreq) * 2;
- if (unlikely(!modminer_change_clock(thr, true, delta)))
- return false;
- char repr[0x10];
- sprintf(repr, "%s %u.%u", modminer->api->name, modminer->device_id, fpgaid);
- dclk_msg_freqchange(repr, oldFreq * 2, state->dclk.freqM * 2, NULL);
- return true;
- }
- static bool
- modminer_reduce_clock(struct thr_info*thr, bool needlock)
- {
- struct modminer_fpga_state *state = thr->cgpu_data;
- if (state->dclk.freqM <= MODMINER_MIN_CLOCK / 2)
- return false;
- return modminer_change_clock(thr, needlock, -2);
- }
- static bool _modminer_get_nonce(struct cgpu_info*modminer, char fpgaid, uint32_t*nonce)
- {
- int fd = modminer->device_fd;
- char cmd[2] = {MODMINER_CHECK_WORK, fpgaid};
-
- if (write(fd, cmd, 2) != 2) {
- applog(LOG_ERR, "%s %u: Error writing (get nonce %u)", modminer->api->name, modminer->device_id, fpgaid);
- return false;
- }
- if (4 != serial_read(fd, nonce, 4)) {
- applog(LOG_ERR, "%s %u: Short read (get nonce %u)", modminer->api->name, modminer->device_id, fpgaid);
- return false;
- }
-
- return true;
- }
- static bool
- modminer_fpga_init(struct thr_info *thr)
- {
- struct cgpu_info *modminer = thr->cgpu;
- struct modminer_fpga_state *state = thr->cgpu_data;
- int fd;
- char fpgaid = thr->device_thread;
- uint32_t nonce;
- unsigned char cmd[2], buf[4];
- mutex_lock(&modminer->device_mutex);
- fd = modminer->device_fd;
- if (fd == -1) {
- // Died in another thread...
- mutex_unlock(&modminer->device_mutex);
- return false;
- }
- cmd[0] = MODMINER_GET_USERCODE;
- cmd[1] = fpgaid;
- if (write(fd, cmd, 2) != 2)
- bailout2(LOG_ERR, "%s %u.%u: Error writing (read USER code)", modminer->api->name, modminer->device_id, fpgaid);
- if (serial_read(fd, buf, 4) != 4)
- bailout2(LOG_ERR, "%s %u.%u: Error reading (read USER code)", modminer->api->name, modminer->device_id, fpgaid);
- if (memcmp(buf, BISTREAM_USER_ID, 4)) {
- applog(LOG_ERR, "%s %u.%u: FPGA not programmed", modminer->api->name, modminer->device_id, fpgaid);
- if (!modminer_fpga_upload_bitstream(modminer))
- return false;
- } else if (opt_force_dev_init && modminer->status == LIFE_INIT) {
- applog(LOG_DEBUG, "%s %u.%u: FPGA is already programmed, but --force-dev-init is set",
- modminer->api->name, modminer->device_id, fpgaid);
- if (!modminer_fpga_upload_bitstream(modminer))
- return false;
- }
- else
- applog(LOG_DEBUG, "%s %u.%u: FPGA is already programmed :)", modminer->api->name, modminer->device_id, fpgaid);
- state->pdone = 101;
- state->dclk.freqM = MODMINER_MAX_CLOCK / 2 + 1; // Will be reduced immediately
- while (1) {
- if (state->dclk.freqM <= MODMINER_MIN_CLOCK / 2)
- bailout2(LOG_ERR, "%s %u.%u: Hit minimum trying to find acceptable frequencies", modminer->api->name, modminer->device_id, fpgaid);
- --state->dclk.freqM;
- if (!modminer_change_clock(thr, false, 0))
- // MCU rejected assignment
- continue;
- if (!_modminer_get_nonce(modminer, fpgaid, &nonce))
- bailout2(LOG_ERR, "%s %u.%u: Error detecting acceptable frequencies", modminer->api->name, modminer->device_id, fpgaid);
- if (!memcmp(&nonce, "\x00\xff\xff\xff", 4))
- // MCU took assignment, but disabled FPGA
- continue;
- break;
- }
- state->freqMaxMaxM =
- state->dclk.freqMaxM = state->dclk.freqM;
- if (MODMINER_DEF_CLOCK / 2 < state->dclk.freqM) {
- if (!modminer_change_clock(thr, false, -(state->dclk.freqM * 2 - MODMINER_DEF_CLOCK)))
- applog(LOG_WARNING, "%s %u.%u: Failed to set desired initial frequency of %u", modminer->api->name, modminer->device_id, fpgaid, MODMINER_DEF_CLOCK);
- }
- state->dclk.freqMDefault = state->dclk.freqM;
- applog(LOG_WARNING, "%s %u.%u: Frequency set to %u MHz (range: %u-%u)", modminer->api->name, modminer->device_id, fpgaid, state->dclk.freqM * 2, MODMINER_MIN_CLOCK, state->dclk.freqMaxM * 2);
- mutex_unlock(&modminer->device_mutex);
- thr->primary_thread = true;
- return true;
- }
- static void
- get_modminer_statline_before(char *buf, struct cgpu_info *modminer)
- {
- char info[18] = " | ";
- int tc = modminer->threads;
- bool havetemp = false;
- int i;
- char pdone = ((struct modminer_fpga_state*)(modminer->thr[0]->cgpu_data))->pdone;
- if (pdone != 101) {
- sprintf(&info[1], "%3d%%", pdone);
- info[5] = ' ';
- strcat(buf, info);
- return;
- }
- if (tc > 4)
- tc = 4;
- for (i = tc - 1; i >= 0; --i) {
- struct thr_info*thr = modminer->thr[i];
- struct modminer_fpga_state *state = thr->cgpu_data;
- unsigned char temp = state->temp;
- info[i*3+2] = '/';
- if (temp) {
- havetemp = true;
- if (temp > 9)
- info[i*3+0] = 0x30 + (temp / 10);
- info[i*3+1] = 0x30 + (temp % 10);
- }
- }
- if (havetemp) {
- info[tc*3-1] = ' ';
- info[tc*3] = 'C';
- strcat(buf, info);
- }
- else
- strcat(buf, " | ");
- }
- static void modminer_get_temperature(struct cgpu_info *modminer, struct thr_info *thr)
- {
- struct modminer_fpga_state *state = thr->cgpu_data;
- #ifdef WIN32
- /* Workaround for bug in Windows driver */
- if (!modminer_reopen(modminer))
- return;
- #endif
- int fd = modminer->device_fd;
- int fpgaid = thr->device_thread;
- char cmd[2] = {MODMINER_TEMP1, fpgaid};
- char temperature;
- if (2 == write(fd, cmd, 2) && read(fd, &temperature, 1) == 1)
- {
- state->temp = temperature;
- if (temperature > modminer->targettemp + opt_hysteresis) {
- {
- time_t now = time(NULL);
- if (state->last_cutoff_reduced != now) {
- state->last_cutoff_reduced = now;
- int oldFreq = state->dclk.freqM;
- if (modminer_reduce_clock(thr, false))
- applog(LOG_NOTICE, "%s %u.%u: Frequency %s from %u to %u MHz (temp: %d)",
- modminer->api->name, modminer->device_id, fpgaid,
- (oldFreq > state->dclk.freqM ? "dropped" : "raised "),
- oldFreq * 2, state->dclk.freqM * 2,
- temperature
- );
- state->dclk.freqMaxM = state->dclk.freqM;
- }
- }
- }
- else
- if (state->dclk.freqMaxM < state->freqMaxMaxM && temperature < modminer->targettemp) {
- if (temperature < modminer->targettemp - opt_hysteresis) {
- state->dclk.freqMaxM = state->freqMaxMaxM;
- } else {
- ++state->dclk.freqMaxM;
- }
- }
- }
- }
- static bool modminer_get_stats(struct cgpu_info *modminer)
- {
- int hottest = 0;
- bool get_temp = (modminer->deven != DEV_ENABLED);
- // Getting temperature more efficiently while enabled
- // NOTE: Don't need to mess with mutex here, since the device is disabled
- for (int i = modminer->threads; i--; ) {
- struct thr_info*thr = modminer->thr[i];
- struct modminer_fpga_state *state = thr->cgpu_data;
- if (get_temp)
- modminer_get_temperature(modminer, thr);
- int temp = state->temp;
- if (temp > hottest)
- hottest = temp;
- }
- modminer->temp = (float)hottest;
- return true;
- }
- static struct api_data*
- get_modminer_api_extra_device_status(struct cgpu_info*modminer)
- {
- struct api_data*root = NULL;
- static char *k[4] = {"Board0", "Board1", "Board2", "Board3"};
- int i;
- for (i = modminer->threads - 1; i >= 0; --i) {
- struct thr_info*thr = modminer->thr[i];
- struct modminer_fpga_state *state = thr->cgpu_data;
- json_t *o = json_object();
- if (state->temp)
- json_object_set_new(o, "Temperature", json_integer(state->temp));
- json_object_set_new(o, "Frequency", json_real((double)state->dclk.freqM * 2 * 1000000.));
- json_object_set_new(o, "Cool Max Frequency", json_real((double)state->dclk.freqMaxM * 2 * 1000000.));
- json_object_set_new(o, "Max Frequency", json_real((double)state->freqMaxMaxM * 2 * 1000000.));
- json_object_set_new(o, "Hardware Errors", json_integer(state->bad_share_counter));
- json_object_set_new(o, "Valid Nonces", json_integer(state->good_share_counter));
- root = api_add_json(root, k[i], o, false);
- json_decref(o);
- }
- return root;
- }
- static bool
- modminer_prepare_next_work(struct modminer_fpga_state*state, struct work*work)
- {
- char *midstate = state->next_work_cmd + 2;
- char *taildata = midstate + 32;
- if (!(memcmp(midstate, work->midstate, 32) || memcmp(taildata, work->data + 64, 12)))
- return false;
- memcpy(midstate, work->midstate, 32);
- memcpy(taildata, work->data + 64, 12);
- return true;
- }
- static bool
- modminer_start_work(struct thr_info*thr)
- {
- fd_set fds;
- struct cgpu_info*modminer = thr->cgpu;
- struct modminer_fpga_state *state = thr->cgpu_data;
- char fpgaid = thr->device_thread;
- int fd;
- char buf[1];
- mutex_lock(&modminer->device_mutex);
- fd = modminer->device_fd;
- if (unlikely(fd == -1)) {
- if (!modminer_reopen(modminer)) {
- mutex_unlock(&modminer->device_mutex);
- return false;
- }
- fd = modminer->device_fd;
- }
- if (46 != write(fd, state->next_work_cmd, 46))
- bailout2(LOG_ERR, "%s %u.%u: Error writing (start work)", modminer->api->name, modminer->device_id, fpgaid);
- gettimeofday(&state->tv_workstart, NULL);
- state->hashes = 0;
- status_read("start work");
- mutex_unlock(&modminer->device_mutex);
- if (opt_debug) {
- char *xdata = bin2hex(state->running_work.data, 80);
- applog(LOG_DEBUG, "%s %u.%u: Started work: %s",
- modminer->api->name, modminer->device_id, fpgaid, xdata);
- free(xdata);
- }
- return true;
- }
- #define work_restart(thr) thr->work_restart
- #define NONCE_CHARS(nonce) \
- (int)((unsigned char*)&nonce)[3], \
- (int)((unsigned char*)&nonce)[2], \
- (int)((unsigned char*)&nonce)[1], \
- (int)((unsigned char*)&nonce)[0]
- static int64_t
- modminer_process_results(struct thr_info*thr)
- {
- struct cgpu_info*modminer = thr->cgpu;
- struct modminer_fpga_state *state = thr->cgpu_data;
- char fpgaid = thr->device_thread;
- struct work *work = &state->running_work;
- uint32_t nonce;
- long iter;
- int immediate_bad_nonces = 0, immediate_nonces = 0;
- bool bad;
- mutex_lock(&modminer->device_mutex);
- modminer_get_temperature(modminer, thr);
- iter = 200;
- while (1) {
- if (!_modminer_get_nonce(modminer, fpgaid, &nonce))
- safebailout();
- mutex_unlock(&modminer->device_mutex);
- if (memcmp(&nonce, "\xff\xff\xff\xff", 4)) {
- nonce = le32toh(nonce);
- bad = !test_nonce(work, nonce, false);
- ++immediate_nonces;
- if (!bad)
- applog(LOG_DEBUG, "%s %u.%u: Nonce for current work: %02x%02x%02x%02x",
- modminer->api->name, modminer->device_id, fpgaid,
- NONCE_CHARS(nonce));
- else
- if (test_nonce(&state->last_work, nonce, false))
- {
- applog(LOG_DEBUG, "%s %u.%u: Nonce for previous work: %02x%02x%02x%02x",
- modminer->api->name, modminer->device_id, fpgaid,
- NONCE_CHARS(nonce));
- work = &state->last_work;
- bad = false;
- }
- if (!bad)
- {
- ++state->good_share_counter;
- submit_nonce(thr, work, nonce);
- }
- else {
- applog(LOG_DEBUG, "%s %u.%u: Nonce with H not zero : %02x%02x%02x%02x",
- modminer->api->name, modminer->device_id, fpgaid,
- NONCE_CHARS(nonce));
- ++hw_errors;
- ++modminer->hw_errors;
- ++state->bad_share_counter;
- ++immediate_bad_nonces;
- }
- }
- if (work_restart(thr) || !--iter)
- break;
- nmsleep(1);
- if (work_restart(thr))
- break;
- mutex_lock(&modminer->device_mutex);
- }
- struct timeval tv_workend, elapsed;
- gettimeofday(&tv_workend, NULL);
- timersub(&tv_workend, &state->tv_workstart, &elapsed);
- uint64_t hashes = (uint64_t)state->dclk.freqM * 2 * (((uint64_t)elapsed.tv_sec * 1000000) + elapsed.tv_usec);
- if (hashes > 0xffffffff)
- {
- applog(LOG_WARNING, "%s %u.%u: Finished work before new one sent", modminer->api->name, modminer->device_id, fpgaid);
- hashes = 0xffffffff;
- }
- if (hashes <= state->hashes)
- hashes = 1;
- else
- hashes -= state->hashes;
- state->hashes += hashes;
- dclk_gotNonces(&state->dclk);
- if (immediate_bad_nonces)
- dclk_errorCount(&state->dclk, ((double)immediate_bad_nonces) / (double)immediate_nonces);
- dclk_preUpdate(&state->dclk);
- if (!dclk_updateFreq(&state->dclk, modminer_dclk_change_clock, thr))
- {} // TODO: handle error
- return hashes;
- }
- static int64_t
- modminer_scanhash(struct thr_info*thr, struct work*work, int64_t __maybe_unused max_nonce)
- {
- struct modminer_fpga_state *state = thr->cgpu_data;
- int64_t hashes = 0;
- bool startwork;
- startwork = modminer_prepare_next_work(state, work);
- if (startwork) {
- /* HACK: For some reason, this is delayed a bit
- * Let last_work handle the end of the work,
- * and start the next one immediately
- */
- }
- else
- if (state->work_running) {
- hashes = modminer_process_results(thr);
- if (work_restart(thr)) {
- state->work_running = false;
- return hashes;
- }
- } else
- state->work_running = true;
- if (startwork) {
- __copy_work(&state->last_work, &state->running_work);
- __copy_work(&state->running_work, work);
- if (!modminer_start_work(thr))
- return -1;
- }
- // This is intentionally early
- work->blk.nonce += hashes;
- return hashes;
- }
- static void
- modminer_fpga_shutdown(struct thr_info *thr)
- {
- free(thr->cgpu_data);
- }
- static char *modminer_set_device(struct cgpu_info *modminer, char *option, char *setting, char *replybuf)
- {
- int val;
- if (strcasecmp(option, "help") == 0) {
- sprintf(replybuf, "clock: range %d-%d and a multiple of 2",
- MODMINER_MIN_CLOCK, MODMINER_MAX_CLOCK);
- return replybuf;
- }
- if (!strncasecmp(option, "clock", 5)) {
- char repr[0x10];
- int fpgaid, fpgaid_end, multiplier;
- if (option[5])
- fpgaid = fpgaid_end = abs(atoi(&option[5]));
- else {
- fpgaid = 0;
- fpgaid_end = modminer->threads - 1;
- }
- if (fpgaid >= modminer->threads) {
- sprintf(replybuf, "invalid fpga: '%s' valid range 0-%d", &option[5], modminer->threads - 1);
- return replybuf;
- }
- if (!setting || !*setting) {
- sprintf(replybuf, "missing clock setting");
- return replybuf;
- }
- val = atoi(setting);
- if (val < MODMINER_MIN_CLOCK || val > MODMINER_MAX_CLOCK || (val & 1) != 0) {
- sprintf(replybuf, "invalid clock: '%s' valid range %d-%d and a multiple of 2",
- setting, MODMINER_MIN_CLOCK, MODMINER_MAX_CLOCK);
- return replybuf;
- }
- multiplier = val / 2;
- for ( ; fpgaid <= fpgaid_end; ++fpgaid) {
- struct thr_info *thr = modminer->thr[fpgaid];
- struct modminer_fpga_state *state = thr->cgpu_data;
- uint8_t oldFreqM = state->dclk.freqM;
- signed char delta = (multiplier - oldFreqM) * 2;
- state->dclk.freqMDefault = multiplier;
- if (unlikely(!modminer_change_clock(thr, true, delta))) {
- sprintf(replybuf, "Set clock failed: %s %u.%u",
- modminer->api->name, modminer->device_id, fpgaid);
- return replybuf;
- }
- sprintf(repr, "%s %u.%u", modminer->api->name, modminer->device_id, fpgaid);
- dclk_msg_freqchange(repr, oldFreqM * 2, state->dclk.freqM * 2, " on user request");
- }
- return NULL;
- }
- sprintf(replybuf, "Unknown option: %s", option);
- return replybuf;
- }
- struct device_api modminer_api = {
- .dname = "modminer",
- .name = "MMQ",
- .api_detect = modminer_detect,
- .get_statline_before = get_modminer_statline_before,
- .get_stats = modminer_get_stats,
- .get_api_extra_device_status = get_modminer_api_extra_device_status,
- .set_device = modminer_set_device,
- .thread_prepare = modminer_fpga_prepare,
- .thread_init = modminer_fpga_init,
- .scanhash = modminer_scanhash,
- .thread_shutdown = modminer_fpga_shutdown,
- };
|