This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
driver-littlefury.c
548 lines (462 loc) · 13.2 KB
/
driver-littlefury.c
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
/*
* Copyright 2013-2014 Luke Dashjr
*
* 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"
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include "deviceapi.h"
#include "driver-bitfury.h"
#include "libbitfury.h"
#include "logging.h"
#include "lowlevel.h"
#include "lowl-spi.h"
#include "lowl-vcom.h"
#include "miner.h"
#include "util.h"
enum littlefury_opcode {
LFOP_VERSION = 0,
LFOP_SPI = 1,
LFOP_REGVOLT = 2,
LFOP_REGINFO = 3,
LFOP_REGPWR = 4,
LFOP_TEMP = 5,
LFOP_LED = 6,
LFOP_ADC = 7,
};
BFG_REGISTER_DRIVER(littlefury_drv)
static
ssize_t keep_reading(int prio, int fd, void *buf, size_t count)
{
ssize_t r, rv = 0;
while (count)
{
r = read(fd, buf, count);
if (unlikely(r <= 0))
{
applog(prio, "Read of fd %d returned %d", fd, (int)r);
return rv ?: r;
}
rv += r;
count -= r;
buf += r;
}
return rv;
}
static
bool bitfury_do_packet(int prio, const char *repr, const int fd, void * const buf, uint16_t * const bufsz, const uint8_t op, const void * const payload, const uint16_t payloadsz)
{
uint16_t crc;
size_t sz;
ssize_t r;
uint8_t pkt[0x407];
bool b;
{
sz = 2 + 1 + 2 + payloadsz + 2;
pkt[0] = 0xab;
pkt[1] = 0xcd;
pkt[2] = op;
pkt[3] = payloadsz >> 8;
pkt[4] = payloadsz & 0xff;
if (payloadsz)
memcpy(&pkt[5], payload, payloadsz);
crc = crc16ffff(&pkt[2], 3 + (size_t)payloadsz);
pkt[sz - 2] = crc >> 8;
pkt[sz - 1] = crc & 0xff;
if (unlikely(opt_dev_protocol))
{
char hex[(sz * 2) + 1];
bin2hex(hex, pkt, sz);
applog(LOG_DEBUG, "%s: DEVPROTO: SEND %s", repr, hex);
}
r = write(fd, pkt, sz);
if (sz != r)
{
applog(prio, "%s: Failed to write packet (%d bytes succeeded)", repr, (int)r);
return false;
}
}
{
r = keep_reading(prio, fd, pkt, 5);
if (5 != r || pkt[0] != 0xab || pkt[1] != 0xcd || pkt[2] != op)
{
char hex[(r * 2) + 1];
bin2hex(hex, pkt, r);
applog(prio, "%s: DEVPROTO: RECV %s", repr, hex);
applog(prio, "%s: Failed to read correct packet header", repr);
return false;
}
sz = (((unsigned)pkt[3] << 8) | pkt[4]) + 2;
r = keep_reading(prio, fd, &pkt[5], sz);
if (sz != r)
{
r += 5;
char hex[(r * 2) + 1];
bin2hex(hex, pkt, r);
applog(prio, "%s: DEVPROTO: RECV %s", repr, hex);
applog(prio, "%s: Failed to read packet payload (len=%d)", repr, (int)sz);
return false;
}
crc = (pkt[sz + 3] << 8) | pkt[sz + 4];
b = (crc != crc16ffff(&pkt[2], sz + 1));
if (unlikely(opt_dev_protocol || b))
{
char hex[((sz + 5) * 2) + 1];
bin2hex(hex, pkt, sz + 5);
applog(b ? prio : LOG_DEBUG, "%s: DEVPROTO: RECV %s", repr, hex);
if (b)
{
applog(prio, "%s: Packet checksum mismatch", repr);
return false;
}
}
sz -= 2;
memcpy(buf, &pkt[5], (*bufsz < sz ? *bufsz : sz));
*bufsz = sz;
}
return true;
}
static
bool littlefury_set_power(const int loglev, const char * const repr, const int fd, const bool power)
{
const uint8_t pflg = (power ? '\1' : '\0');
uint8_t buf[1] = { pflg };
uint16_t bufsz = 1;
return bitfury_do_packet(loglev, repr, fd, buf, &bufsz, LFOP_REGPWR, buf, 1) && bufsz && (buf[0] == pflg);
}
static
bool littlefury_txrx(struct spi_port *port)
{
const struct cgpu_info * const cgpu = port->cgpu;
const void *wrbuf = spi_gettxbuf(port);
void *rdbuf = spi_getrxbuf(port);
size_t bufsz = spi_getbufsz(port);
uint16_t rbufsz, xfer;
const int logprio = port->logprio;
const char * const repr = port->repr;
const int fd = cgpu->device->device_fd;
if (unlikely(fd == -1))
return false;
rbufsz = 1;
if (!bitfury_do_packet(logprio, repr, fd, rdbuf, &rbufsz, LFOP_SPI, NULL, 0))
{
littlefury_set_power(LOG_DEBUG, cgpu->dev_repr, fd, false);
serial_close(fd);
cgpu->device->device_fd = -1;
return false;
}
while (bufsz)
{
xfer = (bufsz > 1024) ? 1024 : bufsz;
rbufsz = xfer;
if (!bitfury_do_packet(logprio, repr, fd, rdbuf, &rbufsz, LFOP_SPI, wrbuf, xfer))
return false;
if (rbufsz < xfer)
{
applog(port->logprio, "%s: SPI: Got fewer bytes back than sent (%d < %d)",
repr, rbufsz, xfer);
return false;
}
bufsz -= xfer;
rdbuf += xfer;
wrbuf += xfer;
}
return true;
}
static
bool littlefury_lowl_match(const struct lowlevel_device_info * const info)
{
return lowlevel_match_product(info, "LittleFury");
}
static
int littlefury_chip_count(struct cgpu_info * const info)
{
/* Do not allocate spi_port on the stack! OS X, at least, has a 512 KB default stack size for secondary threads */
struct spi_port *spi = malloc(sizeof(*spi));
spi->txrx = littlefury_txrx;
spi->cgpu = info;
spi->repr = littlefury_drv.dname;
spi->logprio = LOG_DEBUG;
const int chip_count = libbitfury_detectChips1(spi);
free(spi);
return chip_count;
}
static
bool littlefury_detect_one(const char *devpath)
{
int fd, chips;
uint8_t buf[255];
uint16_t bufsz;
struct cgpu_info dummy;
char *devname = NULL;
fd = serial_open(devpath, 0, 10, true);
applog(LOG_DEBUG, "%s: %s %s",
littlefury_drv.dname,
((fd == -1) ? "Failed to open" : "Successfully opened"),
devpath);
if (unlikely(fd == -1))
goto err;
bufsz = sizeof(buf);
if (!bitfury_do_packet(LOG_DEBUG, littlefury_drv.dname, fd, buf, &bufsz, LFOP_VERSION, NULL, 0))
goto err;
if (bufsz < 4)
{
applog(LOG_DEBUG, "%s: Incomplete version response", littlefury_drv.dname);
goto err;
}
devname = malloc(bufsz - 3);
memcpy(devname, (char*)&buf[4], bufsz - 4);
devname[bufsz - 4] = '\0';
applog(LOG_DEBUG, "%s: Identified %s %d.%d.%d (features %02x)",
littlefury_drv.dname, devname, buf[0], buf[1], buf[2], buf[3]);
if (!littlefury_set_power(LOG_DEBUG, littlefury_drv.dname, fd, true))
applog(LOG_WARNING, "%s: Unable to power on chip(s) for %s",
littlefury_drv.dname, devpath);
dummy.device = &dummy;
dummy.device_fd = fd;
chips = littlefury_chip_count(&dummy);
if (!chips) {
applog(LOG_WARNING, "%s: No Bitfury chips detected on %s",
littlefury_drv.dname, devpath);
goto err;
} else {
applog(LOG_DEBUG, "%s: %d chips detected",
littlefury_drv.dname, chips);
}
littlefury_set_power(LOG_DEBUG, littlefury_drv.dname, fd, false);
if (serial_claim_v(devpath, &littlefury_drv))
goto err;
serial_close(fd);
struct cgpu_info *cgpu;
cgpu = malloc(sizeof(*cgpu));
*cgpu = (struct cgpu_info){
.drv = &littlefury_drv,
.set_device_funcs = bitfury_set_device_funcs,
.device_path = strdup(devpath),
.deven = DEV_ENABLED,
.procs = chips,
.threads = 1,
.name = devname,
.cutofftemp = 85,
};
// NOTE: Xcode's clang has a bug where it cannot find fields inside anonymous unions (more details in fpgautils)
cgpu->device_fd = -1;
return add_cgpu(cgpu);
err:
if (fd != -1)
serial_close(fd);
free(devname);
return false;
}
static
bool littlefury_lowl_probe(const struct lowlevel_device_info * const info)
{
return vcom_lowl_probe_wrapper(info, littlefury_detect_one);
}
struct littlefury_state {
int chips_enabled;
bool powered;
};
static
bool littlefury_thread_init(struct thr_info *thr)
{
struct cgpu_info * const cgpu = thr->cgpu;
struct cgpu_info *proc;
struct spi_port *spi;
struct bitfury_device *bitfury;
struct littlefury_state * const lfstate = malloc(sizeof(*lfstate));
int i = 0;
*lfstate = (struct littlefury_state){
.chips_enabled = 0,
};
for (proc = cgpu; proc; proc = proc->next_proc)
{
struct thr_info * const proc_thr = proc->thr[0];
spi = malloc(sizeof(*spi));
/* Be careful, read lowl-spi.h comments for warnings */
memset(spi, 0, sizeof(*spi));
spi->txrx = littlefury_txrx;
spi->cgpu = proc;
spi->repr = proc->proc_repr;
spi->logprio = LOG_ERR;
bitfury = malloc(sizeof(*bitfury));
*bitfury = (struct bitfury_device){
.spi = spi,
.fasync = i++,
};
proc->device_data = bitfury;
bitfury->osc6_bits = 50;
proc_thr->cgpu_data = lfstate;
++lfstate->chips_enabled;
}
timer_set_now(&thr->tv_poll);
cgpu->status = LIFE_INIT2;
return true;
}
static void littlefury_common_error(struct cgpu_info *, enum dev_reason);
static
bool littlefury_power_on(struct cgpu_info * const dev)
{
struct thr_info * const master_thr = dev->thr[0];
struct littlefury_state * const lfstate = master_thr->cgpu_data;
applog(LOG_DEBUG, "%s: Turning power on", dev->dev_repr);
if (!littlefury_set_power(LOG_WARNING, dev->dev_repr, dev->device_fd, true))
{
applog(LOG_ERR, "%s: Unable to power on chip(s)", dev->dev_repr);
littlefury_common_error(dev, REASON_THREAD_FAIL_INIT);
serial_close(dev->device_fd);
dev->device_fd = -1;
lfstate->powered = false;
return false;
}
lfstate->powered = true;
return true;
}
static
void littlefury_chip_init(struct cgpu_info * const proc)
{
struct bitfury_device * const bitfury = proc->device_data;
bitfury_send_reinit(bitfury->spi, bitfury->slot, bitfury->fasync, bitfury->osc6_bits);
bitfury_init_chip(proc);
}
static
void littlefury_disable(struct thr_info * const thr)
{
struct cgpu_info *proc = thr->cgpu;
struct cgpu_info * const dev = proc->device;
struct littlefury_state * const lfstate = thr->cgpu_data;
bitfury_disable(thr);
// If all chips disabled, kill power and close device
if (!--lfstate->chips_enabled)
{
applog(LOG_DEBUG, "%s: 0 chips enabled, turning off power", dev->dev_repr);
lfstate->powered = false;
if (!littlefury_set_power(LOG_ERR, dev->dev_repr, dev->device_fd, false))
applog(LOG_WARNING, "%s: Unable to power off chip(s)", dev->dev_repr);
}
else
applog(LOG_DEBUG, "%s: %d chips enabled, power remains on", dev->dev_repr, lfstate->chips_enabled);
}
static
void littlefury_enable(struct thr_info * const thr)
{
struct cgpu_info *proc = thr->cgpu;
struct cgpu_info * const dev = proc->device;
struct thr_info * const master_thr = dev->thr[0];
struct littlefury_state * const lfstate = thr->cgpu_data;
++lfstate->chips_enabled;
if (dev->device_fd != -1 && !lfstate->powered)
littlefury_power_on(dev);
if (dev->device_fd != -1)
{
struct bitfury_device * const bitfury = proc->device_data;
bitfury_send_reinit(bitfury->spi, bitfury->slot, bitfury->fasync, bitfury->osc6_bits);
bitfury_init_chip(proc);
}
if (!timer_isset(&master_thr->tv_poll))
timer_set_now(&master_thr->tv_poll);
}
static void littlefury_shutdown(struct thr_info *thr)
{
struct cgpu_info * const cgpu = thr->cgpu;
const int fd = cgpu->device->device_fd;
bitfury_shutdown(thr);
if (!littlefury_set_power(LOG_ERR, cgpu->dev_repr, fd, false))
applog(LOG_WARNING, "%s: Unable to power off chip(s)", cgpu->dev_repr);
}
static
void littlefury_common_error(struct cgpu_info * const dev, const enum dev_reason reason)
{
for (struct cgpu_info *proc = dev; proc; proc = proc->next_proc)
{
struct thr_info * const thr = proc->thr[0];
dev_error(proc, reason);
inc_hw_errors_only(thr);
}
}
static
bool littlefury_get_stats(struct cgpu_info * const dev)
{
if (dev != dev->device)
return true;
uint16_t bufsz = 2;
uint8_t buf[bufsz];
if (bitfury_do_packet(LOG_WARNING, dev->dev_repr, dev->device_fd, buf, &bufsz, LFOP_TEMP, NULL, 0) && bufsz == sizeof(buf))
{
float temp = upk_u16be(buf, 0);
temp = (1.3979 * temp) - 295.23;
for_each_managed_proc(proc, dev)
proc->temp = temp;
}
return true;
}
static
void littlefury_poll(struct thr_info * const master_thr)
{
struct cgpu_info * const dev = master_thr->cgpu, *proc;
struct littlefury_state * const lfstate = master_thr->cgpu_data;
int fd = dev->device_fd;
if (unlikely(fd == -1))
{
fd = serial_open(dev->device_path, 0, 10, true);
if (unlikely(fd == -1))
{
applog(LOG_ERR, "%s: Failed to open %s",
dev->dev_repr, dev->device_path);
littlefury_common_error(dev, REASON_THREAD_FAIL_INIT);
return;
}
dev->device_fd = fd;
lfstate->powered = false;
}
if (unlikely((!lfstate->powered) && lfstate->chips_enabled > 0))
{
if (!littlefury_power_on(dev))
return;
for (proc = dev; proc; proc = proc->next_proc)
{
if (proc->deven != DEV_ENABLED || proc->thr[0]->pause)
continue;
littlefury_chip_init(proc);
}
}
littlefury_get_stats(dev);
bitfury_do_io(master_thr);
if (!timer_isset(&master_thr->tv_poll))
// We want to keep polling temperature
timer_set_delay_from_now(&master_thr->tv_poll, 1000000);
}
static
void littlefury_reinit(struct cgpu_info * const proc)
{
timer_set_now(&proc->thr[0]->tv_poll);
}
struct device_drv littlefury_drv = {
.dname = "littlefury",
.name = "LFY",
.lowl_match = littlefury_lowl_match,
.lowl_probe = littlefury_lowl_probe,
.thread_init = littlefury_thread_init,
.thread_disable = littlefury_disable,
.thread_enable = littlefury_enable,
.reinit_device = littlefury_reinit,
.thread_shutdown = littlefury_shutdown,
.minerloop = minerloop_async,
.job_prepare = bitfury_job_prepare,
.job_start = bitfury_noop_job_start,
.poll = littlefury_poll,
.job_process_results = bitfury_job_process_results,
.get_api_extra_device_detail = bitfury_api_device_detail,
.get_api_extra_device_status = bitfury_api_device_status,
#ifdef HAVE_CURSES
.proc_wlogprint_status = bitfury_wlogprint_status,
.proc_tui_wlogprint_choices = bitfury_tui_wlogprint_choices,
.proc_tui_handle_choice = bitfury_tui_handle_choice,
#endif
};