Branch
Hash :
6f01253b
Author :
Date :
2017-01-26T13:30:45
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
/*
* Copyright 2014 Con Kolivas <kernel@kolivas.org>
* Copyright 2014 Zvi (Zvisha) Shteingart - Spondoolies-tech.com
*
* 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.
*/
/*
This driver communicates the job requests via Unix socket to the minergate
process, that is responsible for controlling the Spondoolies Dawson SP10 miner.
The jobs sent each with unique ID and returned asynchronously in one of the next
transactions. REQUEST_PERIOD and REQUEST_SIZE define the communication rate with minergate.
*/
#include <float.h>
#include <limits.h>
#include <pthread.h>
#include <stdint.h>
#include <stdio.h>
#include <strings.h>
#include <sys/time.h>
#include <unistd.h>
#include <assert.h>
#include <time.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>
#include <string.h>
#include <math.h>
#include "config.h"
#include "compat.h"
#include "miner.h"
#include "driver-spondoolies-sp10-p.h"
#include "driver-spondoolies-sp10.h"
#ifdef WORDS_BIGENDIAN
# define swap32tobe(out, in, sz) ((out == in) ? (void)0 : memmove(out, in, sz))
# define LOCAL_swap32be(type, var, sz) ;
# define swap32tole(out, in, sz) swap32yes(out, in, sz)
# define LOCAL_swap32le(type, var, sz) LOCAL_swap32(type, var, sz)
#else
# define swap32tobe(out, in, sz) swap32yes(out, in, sz)
# define LOCAL_swap32be(type, var, sz) LOCAL_swap32(type, var, sz)
# define swap32tole(out, in, sz) ((out == in) ? (void)0 : memmove(out, in, sz))
# define LOCAL_swap32le(type, var, sz) ;
#endif
static inline void swap32yes(void *out, const void *in, size_t sz)
{
size_t swapcounter;
for (swapcounter = 0; swapcounter < sz; ++swapcounter)
(((uint32_t*)out)[swapcounter]) = swab32(((uint32_t*)in)[swapcounter]);
}
static void send_minergate_pkt(const minergate_req_packet* mp_req, minergate_rsp_packet* mp_rsp,
int socket_fd)
{
int nbytes, nwrote, nread;
nbytes = sizeof(minergate_req_packet);
nwrote = write(socket_fd, (const void *)mp_req, nbytes);
if (unlikely(nwrote != nbytes))
_quit(-1);
nbytes = sizeof(minergate_rsp_packet);
nread = read(socket_fd, (void *)mp_rsp, nbytes);
if (unlikely(nread != nbytes))
_quit(-1);
passert(mp_rsp->magic == 0xcaf4);
}
static bool spondoolies_prepare(struct thr_info *thr)
{
struct cgpu_info *spondoolies = thr->cgpu;
struct timeval now;
assert(spondoolies);
cgtime(&now);
/* FIXME: Vladik */
#if NEED_FIX
get_datestamp(spondoolies->init, &now);
#endif
return true;
}
static int init_socket(void)
{
int socket_fd = socket(PF_UNIX, SOCK_STREAM, 0);
struct sockaddr_un address;
if (socket_fd < 0) {
printf("socket() failed\n");
perror("Err:");
return 0;
}
/* start with a clean address structure */
memset(&address, 0, sizeof(struct sockaddr_un));
address.sun_family = AF_UNIX;
sprintf(address.sun_path, MINERGATE_SOCKET_FILE);
if(connect(socket_fd, (struct sockaddr *) &address, sizeof(struct sockaddr_un))) {
printf("connect() failed\n");
perror("Err:");
return 0;
}
return socket_fd;
}
static bool spondoolies_flush_queue(struct spond_adapter* a, bool flush_queue)
{
if (!a->parse_resp) {
static int i = 0;
if (i++ % 10 == 0 && a->works_in_minergate_and_pending_tx + a->works_pending_tx != a->works_in_driver)
printf("%d + %d != %d\n", a->works_in_minergate_and_pending_tx, a->works_pending_tx,a->works_in_driver);
assert(a->works_in_minergate_and_pending_tx + a->works_pending_tx == a->works_in_driver);
send_minergate_pkt(a->mp_next_req, a->mp_last_rsp, a->socket_fd);
if (flush_queue)
a->mp_next_req->mask |= 0x02;
else
a->mp_next_req->mask &= ~0x02;
a->mp_next_req->req_count = 0;
a->parse_resp = 1;
a->works_in_minergate_and_pending_tx += a->works_pending_tx;
a->works_pending_tx = 0;
}
return true;
}
static void spondoolies_detect(__maybe_unused bool hotplug)
{
struct cgpu_info *cgpu = cgcalloc(1, sizeof(*cgpu));
struct device_drv *drv = &sp10_drv;
struct spond_adapter *a;
#if NEED_FIX
nDevs = 1;
#endif
assert(cgpu);
cgpu->drv = drv;
cgpu->deven = DEV_ENABLED;
cgpu->threads = 1;
cgpu->device_data = cgcalloc(sizeof(struct spond_adapter), 1);
a = cgpu->device_data;
a->cgpu = (void *)cgpu;
a->adapter_state = ADAPTER_STATE_OPERATIONAL;
a->mp_next_req = allocate_minergate_packet_req(0xca, 0xfe);
a->mp_last_rsp = allocate_minergate_packet_rsp(0xca, 0xfe);
pthread_mutex_init(&a->lock, NULL);
a->socket_fd = init_socket();
if (a->socket_fd < 1) {
printf("Error connecting to minergate server!");
_quit(-1);
}
assert(add_cgpu(cgpu));
// Clean MG socket
spondoolies_flush_queue(a, true);
spondoolies_flush_queue(a, true);
spondoolies_flush_queue(a, true);
applog(LOG_DEBUG, "SPOND spondoolies_detect done");
}
static struct api_data *spondoolies_api_stats(struct cgpu_info *cgpu)
{
struct spond_adapter *a = cgpu->device_data;
struct api_data *root = NULL;
root = api_add_int(root, "ASICs total rate", &a->temp_rate, false);
root = api_add_int(root, "Temperature front", &a->front_temp, false);
root = api_add_int(root, "Temperature rear top", &a->rear_temp_top, false);
root = api_add_int(root, "Temperature rear bot", &a->rear_temp_bot, false);
return root;
}
#if 0
static unsigned char get_leading_zeroes(const unsigned char *target)
{
unsigned char leading = 0;
int first_non_zero_chr;
uint8_t m;
for (first_non_zero_chr = 31; first_non_zero_chr >= 0; first_non_zero_chr--) {
if (target[first_non_zero_chr] == 0)
leading += 8;
else
break;
}
// j = first non-zero
m = target[first_non_zero_chr];
while ((m & 0x80) == 0) {
leading++;
m = m << 1;
}
return leading;
}
#endif
static void spondoolies_shutdown(__maybe_unused struct thr_info *thr)
{
}
static void fill_minergate_request(minergate_do_job_req* work, struct work *cg_work,
int ntime_offset)
{
uint32_t x[64/4];
uint64_t wd;
memset(work, 0, sizeof(minergate_do_job_req));
//work->
LOCAL_swap32le(unsigned char, cg_work->midstate, 32/4)
LOCAL_swap32le(unsigned char, cg_work->data+64, 64/4)
swap32yes(x, cg_work->data + 64, 64/4);
memcpy(work->midstate, cg_work->midstate, 32);
work->mrkle_root = ntohl(x[0]);
work->timestamp = ntohl(x[1]);
work->difficulty = ntohl(x[2]);
//work->leading_zeroes = get_leading_zeroes(cg_work->target);
// Is there no better way to get leading zeroes?
work->leading_zeroes = 30;
wd = round(cg_work->work_difficulty);
while (wd) {
work->leading_zeroes++;
wd = wd >> 1;
}
//printf("%d %d\n",work->leading_zeroes, (int)round(cg_work->work_difficulty));
work->work_id_in_sw = cg_work->subid;
work->ntime_limit = 0;
work->ntime_offset = ntime_offset;
}
// returns true if queue full.
static struct timeval last_force_queue = {0};
static bool spondoolies_queue_full(struct cgpu_info *cgpu)
{
// Only once every 1/10 second do work.
struct spond_adapter* a = cgpu->device_data;
int next_job_id, ntime_clones, i;
struct timeval tv;
struct work *work;
unsigned int usec;
bool ret = false;
mutex_lock(&a->lock);
passert(a->works_pending_tx <= REQUEST_SIZE);
gettimeofday(&tv, NULL);
usec = (tv.tv_sec-last_force_queue.tv_sec) * 1000000;
usec += (tv.tv_usec-last_force_queue.tv_usec);
if ((usec >= REQUEST_PERIOD) || (a->reset_mg_queue == 2) ||
((a->reset_mg_queue == 1) && (a->works_pending_tx == REQUEST_SIZE))) {
spondoolies_flush_queue(a, (a->reset_mg_queue == 2));
if (a->reset_mg_queue)
a->reset_mg_queue--;
last_force_queue = tv;
}
// see if we have enough jobs
if (a->works_pending_tx == REQUEST_SIZE) {
ret = true;
goto return_unlock;
}
// see if can take 1 more job.
next_job_id = (a->current_job_id + 1) % MAX_JOBS_IN_MINERGATE;
if (a->my_jobs[next_job_id].cgminer_work) {
ret = true;
goto return_unlock;
}
work = get_queued(cgpu);
if (!work) {
cgsleep_ms(10);
goto return_unlock;
}
work->thr = cgpu->thr[0];
work->thr_id = cgpu->thr[0]->id;
assert(work->thr);
// Create 5 works using ntime increment
a->current_job_id = next_job_id;
work->subid = a->current_job_id;
// Get pointer for the request
a->my_jobs[a->current_job_id].cgminer_work = work;
a->my_jobs[a->current_job_id].state = SPONDWORK_STATE_IN_BUSY;
a->my_jobs[a->current_job_id].ntime_clones = 0;
ntime_clones = (work->drv_rolllimit < MAX_NROLES) ? work->drv_rolllimit : MAX_NROLES;
for (i = 0 ; (i < ntime_clones) && (a->works_pending_tx < REQUEST_SIZE) ; i++) {
minergate_do_job_req* pkt_job = &a->mp_next_req->req[a->works_pending_tx];
fill_minergate_request(pkt_job, work, i);
a->works_in_driver++;
a->works_pending_tx++;
a->mp_next_req->req_count++;
a->my_jobs[a->current_job_id].merkle_root = pkt_job->mrkle_root;
a->my_jobs[a->current_job_id].ntime_clones++;
}
return_unlock:
mutex_unlock(&a->lock);
return ret;
}
static void spond_poll_stats(struct cgpu_info *spond, struct spond_adapter *a)
{
FILE *fp = fopen("/var/run/mg_rate_temp", "r");
if (!fp) {
applog(LOG_DEBUG, "SPOND unable to open mg_rate_temp");
a->temp_rate = a->front_temp = a->rear_temp_top = a->rear_temp_bot = 0;
} else {
int ret = fscanf(fp, "%d %d %d %d", &a->temp_rate, &a->front_temp , &a->rear_temp_top , &a->rear_temp_bot);
if (ret != 4)
a->temp_rate = a->front_temp = a->rear_temp_top = a->rear_temp_bot = 0;
fclose(fp);
}
applog(LOG_DEBUG, "SPOND poll_stats rate: %d front: %d rear(T/B): %d/%d",
a->temp_rate, a->front_temp , a->rear_temp_top, a->rear_temp_bot);
/* Use the rear temperature as the dev temperature for now */
spond->temp = (a->rear_temp_top + a->rear_temp_bot)/2;
}
// Return completed work to submit_nonce() and work_completed()
// struct timeval last_force_queue = {0};
static int64_t spond_scanhash(struct thr_info *thr)
{
struct cgpu_info *cgpu = thr->cgpu;
struct spond_adapter *a = cgpu->device_data;
int64_t ghashes = 0;
cgtimer_t cgt;
time_t now_t;
cgsleep_prepare_r(&cgt);
now_t = time(NULL);
/* Poll stats only once per second */
if (now_t != a->last_stats) {
a->last_stats = now_t;
spond_poll_stats(cgpu, a);
}
if (a->parse_resp) {
int array_size, i, j;
mutex_lock(&a->lock);
ghashes = (a->mp_last_rsp->gh_div_10_rate);
ghashes = ghashes * 10000 * REQUEST_PERIOD;
array_size = a->mp_last_rsp->rsp_count;
for (i = 0; i < array_size; i++) { // walk the jobs
int job_id;
minergate_do_job_rsp* work = a->mp_last_rsp->rsp + i;
job_id = work->work_id_in_sw;
if ((a->my_jobs[job_id].cgminer_work)) {
if (a->my_jobs[job_id].merkle_root == work->mrkle_root) {
assert(a->my_jobs[job_id].state == SPONDWORK_STATE_IN_BUSY);
a->works_in_minergate_and_pending_tx--;
a->works_in_driver--;
for (j = 0; j < 2; j++) {
if (work->winner_nonce[j]) {
bool __maybe_unused ok;
struct work *cg_work = a->my_jobs[job_id].cgminer_work;
#ifndef SP_NTIME
ok = submit_nonce(cg_work->thr, cg_work, work->winner_nonce[j]);
#else
ok = submit_noffset_nonce(cg_work->thr, cg_work, work->winner_nonce[j], work->ntime_offset);
#endif
//printf("OK on %d:%d = %d\n",work->work_id_in_sw,j, ok);
a->wins++;
}
}
//printf("%d ntime_clones = %d\n",job_id,a->my_jobs[job_id].ntime_clones);
if ((--a->my_jobs[job_id].ntime_clones) == 0) {
//printf("Done with %d\n", job_id);
work_completed(a->cgpu, a->my_jobs[job_id].cgminer_work);
a->good++;
a->my_jobs[job_id].cgminer_work = NULL;
a->my_jobs[job_id].state = SPONDWORK_STATE_EMPTY;
}
} else {
a->bad++;
printf("Dropping minergate old job id=%d mrkl=%x my-mrkl=%x\n",
job_id, a->my_jobs[job_id].merkle_root, work->mrkle_root);
}
} else {
a->empty++;
printf("No cgminer job (id:%d res:%d)!\n",job_id, work->res);
}
}
mutex_unlock(&a->lock);
a->parse_resp = 0;
}
cgsleep_ms_r(&cgt, 40);
return ghashes;
}
// Remove all work from queue
static void spond_flush_work(struct cgpu_info *cgpu)
{
struct spond_adapter *a = cgpu->device_data;
mutex_lock(&a->lock);
a->reset_mg_queue = 2;
mutex_unlock(&a->lock);
}
struct device_drv sp10_drv = {
.drv_id = DRIVER_sp10,
.dname = "Spondoolies",
.name = "SPN",
.max_diff = 64.0, // Limit max diff to get some nonces back regardless
.drv_detect = spondoolies_detect,
.get_api_stats = spondoolies_api_stats,
.thread_prepare = spondoolies_prepare,
.thread_shutdown = spondoolies_shutdown,
.hash_work = hash_queued_work,
.queue_full = spondoolies_queue_full,
.scanwork = spond_scanhash,
.flush_work = spond_flush_work,
};