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
/*
* Copyright 2014 Con Kolivas <kernel@kolivas.org>
* Copyright 2014 Zvi 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.
*/
#ifndef SPONDA_HFILE
#define SPONDA_HFILE
#include "miner.h"
#include "mg_proto_parser.h"
#define SP_NTIME
typedef enum adapter_state {
ADAPTER_STATE_INIT,
ADAPTER_STATE_OPERATIONAL,
} ADAPTER_STATE;
typedef enum spond_work_state {
SPONDWORK_STATE_EMPTY,
SPONDWORK_STATE_IN_BUSY,
} SPONDWORK_STATE;
#define MAX_JOBS_IN_MINERGATE MINERGATE_TOTAL_QUEUE // 1.5 sec worth of jobs
#define MAX_NROLES 50
typedef struct {
struct work *cgminer_work;
SPONDWORK_STATE state;
uint32_t merkle_root;
time_t start_time;
int job_id[MAX_NROLES];
int ntime_clones;
} spond_driver_work;
struct spond_adapter {
pthread_mutex_t lock;
ADAPTER_STATE adapter_state;
void *cgpu;
// Statistics
int wins;
int good;
int empty;
int bad;
int overflow;
// state
int works_in_driver;
int works_in_minergate_and_pending_tx;
int works_pending_tx;
int socket_fd;
int reset_mg_queue; // 2=reset, 1=fast send, 0=nada
int current_job_id;
int parse_resp;
minergate_req_packet* mp_next_req;
minergate_rsp_packet* mp_last_rsp;
spond_driver_work my_jobs[MAX_JOBS_IN_MINERGATE];
// Temperature statistics
int temp_rate;
int rear_temp;
int front_temp;
// Last second we polled stats
time_t last_stats;
};
// returns non-zero if needs to change ASICs.
int spond_one_sec_timer_scaling(struct spond_adapter *a, int t);
int spond_do_scaling(struct spond_adapter *a);
extern void one_sec_spondoolies_watchdog(int uptime);
#define REQUEST_PERIOD (100000) // times per second - in usec
#define REQUEST_SIZE 100 // jobs per request
#endif