| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574 |
- /*
- * Copyright 2013 bitfury
- * Copyright 2013 legkodymov
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
- #include "config.h"
- #include "miner.h"
- #include <unistd.h>
- #include <sha2.h>
- #include "deviceapi.h"
- #include "libbitfury.h"
- #include "util.h"
- #include "spidevc.h"
- #define GOLDEN_BACKLOG 5
- #define LINE_LEN 2048
- struct device_drv bitfury_drv;
- int calc_stat(time_t * stat_ts, time_t stat, struct timeval now);
- double shares_to_ghashes(int shares, int seconds);
- static
- int bitfury_autodetect()
- {
- RUNONCE(0);
-
- int chip_n;
- struct cgpu_info *bitfury_info;
- bitfury_info = calloc(1, sizeof(struct cgpu_info));
- bitfury_info->drv = &bitfury_drv;
- bitfury_info->threads = 1;
- applog(LOG_INFO, "INFO: bitfury_detect");
- spi_init();
- if (!sys_spi)
- return 0;
- chip_n = libbitfury_detectChips1(sys_spi);
- if (!chip_n) {
- applog(LOG_WARNING, "No Bitfury chips detected!");
- return 0;
- } else {
- applog(LOG_WARNING, "BITFURY: %d chips detected!", chip_n);
- }
- bitfury_info->procs = chip_n;
- add_cgpu(bitfury_info);
-
- return 1;
- }
- static void bitfury_detect(void)
- {
- noserial_detect_manual(&bitfury_drv, bitfury_autodetect);
- }
- void *bitfury_just_io(struct bitfury_device * const bitfury)
- {
- struct spi_port * const spi = bitfury->spi;
- const int chip = bitfury->fasync;
-
- spi_clear_buf(spi);
- spi_emit_break(spi);
- spi_emit_fasync(spi, chip);
- spi_emit_data(spi, 0x3000, &bitfury->atrvec[0], 19 * 4);
- spi_txrx(spi);
- return spi_getrxbuf(spi) + 4 + chip;
- }
- static
- void bitfury_debug_nonce_array(const struct cgpu_info * const proc, const char *msg, const uint32_t * const inp)
- {
- const struct bitfury_device * const bitfury = proc->device_data;
- const int active = bitfury->active;
- char s[((1 + 8) * 0x10) + 1];
- char *sp = s;
- for (int i = 0; i < 0x10; ++i)
- sp += sprintf(sp, "%c%08lx",
- (active == i) ? '>' : ' ',
- (unsigned long)bitfury_decnonce(inp[i]));
- applog(LOG_DEBUG, "%"PRIpreprv": %s%s (job=%08lx)",
- proc->proc_repr, msg, s, (unsigned long)inp[0x10]);
- }
- bool bitfury_init_oldbuf(struct cgpu_info * const proc)
- {
- struct bitfury_device * const bitfury = proc->device_data;
- uint32_t * const oldbuf = &bitfury->oldbuf[0];
- uint32_t * const buf = &bitfury->newbuf[0];
- const uint32_t *inp;
- int i, differ, tried = 0;
-
- inp = bitfury_just_io(bitfury);
- tryagain:
- if (tried > 3)
- {
- applog(LOG_ERR, "%"PRIpreprv": %s: Giving up after %d tries",
- proc->proc_repr, __func__, tried);
- return false;
- }
- ++tried;
- memcpy(buf, inp, 0x10 * 4);
- inp = bitfury_just_io(bitfury);
- differ = -1;
- for (i = 0; i < 0x10; ++i)
- {
- if (inp[i] != buf[i])
- {
- if (differ != -1)
- {
- applog(LOG_DEBUG, "%"PRIpreprv": %s: Second differ at %d; trying again",
- proc->proc_repr, __func__, i);
- goto tryagain;
- }
- differ = i;
- applog(LOG_DEBUG, "%"PRIpreprv": %s: Differ at %d",
- proc->proc_repr, __func__, i);
- }
- }
- if (-1 == differ)
- {
- applog(LOG_DEBUG, "%"PRIpreprv": %s: No differ found; trying again",
- proc->proc_repr, __func__);
- goto tryagain;
- }
-
- bitfury->active = differ;
- memcpy(&oldbuf[0], &inp[bitfury->active], 4 * (0x10 - bitfury->active));
- memcpy(&oldbuf[0x10 - bitfury->active], &inp[0], 4 * bitfury->active);
- bitfury->oldjob = inp[0x10];
-
- if (opt_debug)
- bitfury_debug_nonce_array(proc, "Init", inp);
-
- return true;
- }
- static
- bool bitfury_init(struct thr_info *thr)
- {
- struct cgpu_info *proc;
- struct bitfury_device *bitfury;
-
- for (proc = thr->cgpu; proc; proc = proc->next_proc)
- {
- bitfury = proc->device_data = malloc(sizeof(struct bitfury_device));
- *bitfury = (struct bitfury_device){
- .spi = sys_spi,
- .fasync = proc->proc_id,
- };
- bitfury_init_oldbuf(proc);
- }
-
- return true;
- }
- static
- bool bitfury_queue_full(struct cgpu_info *cgpu)
- {
- struct cgpu_info *proc;
- struct bitfury_device *bitfury;
-
- for (proc = cgpu; proc; proc = proc->next_proc)
- {
- bitfury = proc->device_data;
-
- if (bitfury->work)
- continue;
-
- bitfury->work = get_queued(cgpu);
- if (!bitfury->work)
- return false;
-
- work_to_payload(&bitfury->payload, bitfury->work);
- }
-
- return true;
- }
- int64_t bitfury_scanHash(struct thr_info *thr)
- {
- struct cgpu_info * const cgpu = thr->cgpu;
- struct bitfury_device * const sds = cgpu->device_data;
- struct cgpu_info *proc;
- struct thr_info *pthr;
- struct bitfury_device *bitfury;
- struct timeval now;
- char line[LINE_LEN];
- int short_stat = 10;
- int long_stat = 1800;
- int i;
- if (!bitfury_queue_full(cgpu))
- return 0;
-
- for (proc = cgpu; proc; proc = proc->next_proc)
- {
- const int chip = proc->proc_id;
- pthr = proc->thr[0];
- bitfury = proc->device_data;
-
- bitfury->job_switched = 0;
- payload_to_atrvec(bitfury->atrvec, &bitfury->payload);
- libbitfury_sendHashData1(chip, bitfury, pthr);
- }
- cgsleep_ms(5);
- cgtime(&now);
- for (proc = cgpu; proc; proc = proc->next_proc)
- {
- pthr = proc->thr[0];
- bitfury = proc->device_data;
-
- if (bitfury->job_switched) {
- int i,j;
- unsigned int * const res = bitfury->results;
- struct work * const work = bitfury->work;
- struct work * const owork = bitfury->owork;
- struct work * const o2work = bitfury->o2work;
- i = bitfury->results_n;
- for (j = i - 1; j >= 0; j--) {
- if (owork) {
- submit_nonce(pthr, owork, bswap_32(res[j]));
- bitfury->stat_ts[bitfury->stat_counter++] =
- now.tv_sec;
- if (bitfury->stat_counter == BITFURY_STAT_N) {
- bitfury->stat_counter = 0;
- }
- }
- if (o2work) {
- // TEST
- //submit_nonce(pthr, owork, bswap_32(res[j]));
- }
- }
- bitfury->results_n = 0;
- bitfury->job_switched = 0;
- if (bitfury->old_nonce && o2work) {
- submit_nonce(pthr, o2work, bswap_32(bitfury->old_nonce));
- i++;
- }
- if (bitfury->future_nonce) {
- submit_nonce(pthr, work, bswap_32(bitfury->future_nonce));
- i++;
- }
- if (o2work)
- work_completed(cgpu, o2work);
- bitfury->o2work = bitfury->owork;
- bitfury->owork = bitfury->work;
- bitfury->work = NULL;
- hashes_done2(pthr, 0xbd000000, NULL);
- }
- }
- if (now.tv_sec - sds->short_out_t > short_stat) {
- int shares_first = 0, shares_last = 0, shares_total = 0;
- char stat_lines[32][LINE_LEN] = {{0}};
- int len, k;
- double gh[32][8] = {{0}};
- double ghsum = 0, gh1h = 0, gh2h = 0;
- unsigned strange_counter = 0;
- for (proc = cgpu; proc; proc = proc->next_proc)
- {
- const int chip = proc->proc_id;
- bitfury = proc->device_data;
-
- int shares_found = calc_stat(bitfury->stat_ts, short_stat, now);
- double ghash;
- len = strlen(stat_lines[bitfury->slot]);
- ghash = shares_to_ghashes(shares_found, short_stat);
- gh[bitfury->slot][chip & 0x07] = ghash;
- snprintf(stat_lines[bitfury->slot] + len, LINE_LEN - len, "%.1f-%3.0f ", ghash, bitfury->mhz);
- if(sds->short_out_t && ghash < 0.5) {
- applog(LOG_WARNING, "Chip_id %d FREQ CHANGE", chip);
- send_freq(bitfury->spi, bitfury->slot, bitfury->fasync, bitfury->osc6_bits - 1);
- cgsleep_ms(1);
- send_freq(bitfury->spi, bitfury->slot, bitfury->fasync, bitfury->osc6_bits);
- }
- shares_total += shares_found;
- shares_first += chip < 4 ? shares_found : 0;
- shares_last += chip > 3 ? shares_found : 0;
- strange_counter += bitfury->strange_counter;
- bitfury->strange_counter = 0;
- }
- sprintf(line, "vvvvwww SHORT stat %ds: wwwvvvv", short_stat);
- applog(LOG_WARNING, "%s", line);
- sprintf(line, "stranges: %u", strange_counter);
- applog(LOG_WARNING, "%s", line);
- for(i = 0; i < 32; i++)
- if(strlen(stat_lines[i])) {
- len = strlen(stat_lines[i]);
- ghsum = 0;
- gh1h = 0;
- gh2h = 0;
- for(k = 0; k < 4; k++) {
- gh1h += gh[i][k];
- gh2h += gh[i][k+4];
- ghsum += gh[i][k] + gh[i][k+4];
- }
- snprintf(stat_lines[i] + len, LINE_LEN - len, "- %2.1f + %2.1f = %2.1f slot %i ", gh1h, gh2h, ghsum, i);
- applog(LOG_WARNING, "%s", stat_lines[i]);
- }
- sds->short_out_t = now.tv_sec;
- }
- if (now.tv_sec - sds->long_out_t > long_stat) {
- int shares_first = 0, shares_last = 0, shares_total = 0;
- char stat_lines[32][LINE_LEN] = {{0}};
- int len, k;
- double gh[32][8] = {{0}};
- double ghsum = 0, gh1h = 0, gh2h = 0;
- for (proc = cgpu; proc; proc = proc->next_proc)
- {
- const int chip = proc->proc_id;
- bitfury = proc->device_data;
-
- int shares_found = calc_stat(bitfury->stat_ts, long_stat, now);
- double ghash;
- len = strlen(stat_lines[bitfury->slot]);
- ghash = shares_to_ghashes(shares_found, long_stat);
- gh[bitfury->slot][chip & 0x07] = ghash;
- snprintf(stat_lines[bitfury->slot] + len, LINE_LEN - len, "%.1f-%3.0f ", ghash, bitfury->mhz);
- shares_total += shares_found;
- shares_first += chip < 4 ? shares_found : 0;
- shares_last += chip > 3 ? shares_found : 0;
- }
- sprintf(line, "!!!_________ LONG stat %ds: ___________!!!", long_stat);
- applog(LOG_WARNING, "%s", line);
- for(i = 0; i < 32; i++)
- if(strlen(stat_lines[i])) {
- len = strlen(stat_lines[i]);
- ghsum = 0;
- gh1h = 0;
- gh2h = 0;
- for(k = 0; k < 4; k++) {
- gh1h += gh[i][k];
- gh2h += gh[i][k+4];
- ghsum += gh[i][k] + gh[i][k+4];
- }
- snprintf(stat_lines[i] + len, LINE_LEN - len, "- %2.1f + %2.1f = %2.1f slot %i ", gh1h, gh2h, ghsum, i);
- applog(LOG_WARNING, "%s", stat_lines[i]);
- }
- sds->long_out_t = now.tv_sec;
- }
- return 0;
- }
- double shares_to_ghashes(int shares, int seconds) {
- return (double)shares / (double)seconds * 4.84387; //orig: 4.77628
- }
- int calc_stat(time_t * stat_ts, time_t stat, struct timeval now) {
- int j;
- int shares_found = 0;
- for(j = 0; j < BITFURY_STAT_N; j++) {
- if (now.tv_sec - stat_ts[j] < stat) {
- shares_found++;
- }
- }
- return shares_found;
- }
- bool bitfury_prepare(struct thr_info *thr)
- {
- struct cgpu_info *cgpu = thr->cgpu;
- get_now_datestamp(cgpu->init, sizeof(cgpu->init));
- applog(LOG_INFO, "INFO bitfury_prepare");
- return true;
- }
- void bitfury_shutdown(struct thr_info *thr) {
- struct cgpu_info *cgpu = thr->cgpu, *proc;
- struct bitfury_device *bitfury;
-
- applog(LOG_INFO, "INFO bitfury_shutdown");
- for (proc = cgpu; proc; proc = proc->next_proc)
- {
- bitfury = proc->device_data;
- send_shutdown(bitfury->spi, bitfury->slot, bitfury->fasync);
- }
- }
- bool bitfury_job_prepare(struct thr_info *thr, struct work *work, __maybe_unused uint64_t max_nonce)
- {
- struct cgpu_info * const proc = thr->cgpu;
- struct bitfury_device * const bitfury = proc->device_data;
-
- if (opt_debug)
- {
- char hex[153];
- bin2hex(hex, &work->data[0], 76);
- applog(LOG_DEBUG, "%"PRIpreprv": Preparing work %s",
- proc->proc_repr, hex);
- }
- work_to_payload(&bitfury->payload, work);
- payload_to_atrvec(bitfury->atrvec, &bitfury->payload);
-
- work->blk.nonce = 0xffffffff;
- return true;
- }
- static
- bool fudge_nonce(struct work * const work, uint32_t *nonce_p) {
- static const uint32_t offsets[] = {0, 0xffc00000, 0xff800000, 0x02800000, 0x02C00000, 0x00400000};
- uint32_t nonce;
- int i;
-
- if (unlikely(!work))
- return false;
-
- for (i = 0; i < 6; ++i)
- {
- nonce = *nonce_p + offsets[i];
- if (test_nonce(work, nonce, false))
- {
- *nonce_p = nonce;
- return true;
- }
- }
- return false;
- }
- void bitfury_do_io(struct thr_info *thr)
- {
- struct cgpu_info * const proc = thr->cgpu;
- struct bitfury_device * const bitfury = proc->device_data;
- const uint32_t *inp;
- uint32_t * const newbuf = &bitfury->newbuf[0];
- uint32_t * const oldbuf = &bitfury->oldbuf[0];
- int n, i;
- bool newjob;
- uint32_t nonce;
-
- inp = bitfury_just_io(bitfury);
-
- if (opt_debug)
- bitfury_debug_nonce_array(proc, "Read", inp);
-
- // To avoid dealing with wrap-around entirely, we rotate array so previous active uint32_t is at index 0
- memcpy(&newbuf[0], &inp[bitfury->active], 4 * (0x10 - bitfury->active));
- memcpy(&newbuf[0x10 - bitfury->active], &inp[0], 4 * bitfury->active);
- newjob = inp[0x10];
-
- if (newbuf[0xf] != oldbuf[0xf])
- {
- inc_hw_errors2(thr, NULL, NULL);
- if (unlikely(++bitfury->desync_counter >= 4))
- {
- applog(LOG_WARNING, "%"PRIpreprv": Previous nonce mismatch (4th try), recalibrating",
- proc->proc_repr);
- bitfury_init_oldbuf(proc);
- goto out;
- }
- applog(LOG_DEBUG, "%"PRIpreprv": Previous nonce mismatch, ignoring response",
- proc->proc_repr);
- goto out;
- }
- else
- bitfury->desync_counter = 0;
-
- if (bitfury->oldjob != newjob && thr->next_work)
- {
- mt_job_transition(thr);
- // TODO: Delay morework until right before it's needed
- timer_set_now(&thr->tv_morework);
- job_start_complete(thr);
- }
-
- for (n = 0; newbuf[n] == oldbuf[n]; ++n)
- {
- if (unlikely(n >= 0xf))
- {
- inc_hw_errors2(thr, NULL, NULL);
- applog(LOG_DEBUG, "%"PRIpreprv": Full result match, ignoring response",
- proc->proc_repr);
- goto out;
- }
- }
-
- if (n)
- {
- for (i = 0; i < n; ++i)
- {
- nonce = bitfury_decnonce(newbuf[i]);
- if (fudge_nonce(thr->work, &nonce))
- {
- applog(LOG_DEBUG, "%"PRIpreprv": nonce %x = %08lx (work=%p)",
- proc->proc_repr, i, (unsigned long)nonce, thr->work);
- submit_nonce(thr, thr->work, nonce);
- }
- else
- if (fudge_nonce(thr->prev_work, &nonce))
- {
- applog(LOG_DEBUG, "%"PRIpreprv": nonce %x = %08lx (prev work=%p)",
- proc->proc_repr, i, (unsigned long)nonce, thr->prev_work);
- submit_nonce(thr, thr->prev_work, nonce);
- }
- else
- inc_hw_errors(thr, thr->work, nonce);
- }
- bitfury->active = (bitfury->active + n) % 0x10;
- }
-
- memcpy(&oldbuf[0], &newbuf[n], 4 * (0x10 - n));
- memcpy(&oldbuf[0x10 - n], &newbuf[0], 4 * n);
- bitfury->oldjob = newjob;
-
- out:
- timer_set_delay_from_now(&thr->tv_poll, 10000);
- }
- int64_t bitfury_job_process_results(struct thr_info *thr, struct work *work, bool stopping)
- {
- if (unlikely(stopping))
- timer_unset(&thr->tv_poll);
-
- // Bitfury chips process only 768/1024 of the nonce range
- return 0xbd000000;
- }
- struct api_data *bitfury_api_device_status(const struct cgpu_info * const cgpu)
- {
- const struct bitfury_device * const bitfury = cgpu->device_data;
- struct api_data *root = NULL;
- int clock_bits = bitfury->osc6_bits;
-
- root = api_add_int(root, "Clock Bits", &clock_bits, true);
-
- return root;
- }
- struct device_drv bitfury_drv = {
- .dname = "bitfury_gpio",
- .name = "BFY",
- .drv_detect = bitfury_detect,
- .thread_prepare = bitfury_prepare,
- .thread_init = bitfury_init,
- .queue_full = bitfury_queue_full,
- .scanwork = bitfury_scanHash,
- .thread_shutdown = bitfury_shutdown,
- .minerloop = hash_queued_work,
- };
|