Messing with BFL code
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
diff --git a/api.c b/api.c
index a0c2e56..cfdd098 100644
--- a/api.c
+++ b/api.c
@@ -158,7 +158,7 @@ static const char SEPARATOR = '|';
#define SEPSTR "|"
static const char GPUSEP = ',';
-static const char *APIVERSION = "1.10";
+static const char *APIVERSION = "1.11";
static const char *DEAD = "Dead";
static const char *SICK = "Sick";
static const char *NOSTART = "NoStart";
@@ -876,7 +876,7 @@ static void pgastatus(int pga, bool isjson)
cgpu->utility = cgpu->accepted / ( total_secs ? total_secs : 1 ) * 60;
- if (cgpu->deven != DEV_DISABLED)
+ if (cgpu->deven == DEV_ENABLED)
enabled = (char *)YES;
else
enabled = (char *)NO;
@@ -1089,7 +1089,7 @@ static void pgaenable(__maybe_unused SOCKETTYPE c, char *param, bool isjson)
struct cgpu_info *cgpu = devices[dev];
- if (cgpu->deven != DEV_DISABLED) {
+ if (cgpu->deven == DEV_ENABLED) {
strcpy(io_buffer, message(MSG_PGALRENA, id, NULL, isjson));
return;
}
@@ -1140,12 +1140,12 @@ static void pgadisable(__maybe_unused SOCKETTYPE c, char *param, bool isjson)
struct cgpu_info *cgpu = devices[dev];
- if (cgpu->deven == DEV_DISABLED) {
+ if (cgpu->deven != DEV_ENABLED) {
strcpy(io_buffer, message(MSG_PGALRDIS, id, NULL, isjson));
return;
}
- cgpu->deven = DEV_DISABLED;
+ cgpu->deven = DEV_IDLE;
strcpy(io_buffer, message(MSG_PGADIS, id, NULL, isjson));
}
diff --git a/cgminer.c b/cgminer.c
index 4e9e26b..5542ed6 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -3893,7 +3893,7 @@ void *miner_thread(void *userdata)
tv_lastupdate = tv_end;
}
- if (unlikely(mythr->pause || cgpu->deven != DEV_ENABLED)) {
+ if (unlikely(mythr->pause || cgpu->deven == DEV_DISABLED || cgpu->deven == DEV_RECOVER)) {
applog(LOG_WARNING, "Thread %d being disabled", thr_id);
disabled:
mythr->rolling = mythr->cgpu->rolling = 0;
@@ -5130,6 +5130,9 @@ begin_bench:
quit(1, "thread %d create failed", thr->id);
cgpu->thread = thr;
+
+ /* delay each start by 100ms */
+ usleep(100000);
}
}
diff --git a/driver-bitforce.c b/driver-bitforce.c
index 13a7a9d..e9745e6 100644
--- a/driver-bitforce.c
+++ b/driver-bitforce.c
@@ -264,17 +264,41 @@ static bool bitforce_thread_prepare(struct thr_info *thr)
return true;
}
-static uint64_t bitforce_scanhash(struct thr_info *thr, struct work *work, uint64_t __maybe_unused max_nonce)
+static uint64_t bitforce_get_temp(struct cgpu_info *bitforce)
{
- struct cgpu_info *bitforce = thr->cgpu;
int fdDev = bitforce->device_fd;
+ char pdevbuf[0x100];
+ char *s;
+
+ BFwrite(fdDev, "ZLX", 3);
+ BFgets(pdevbuf, sizeof(pdevbuf), fdDev);
+ if (unlikely(!pdevbuf[0])) {
+ applog(LOG_ERR, "Error reading from BitForce (ZKX)");
+ return 0;
+ }
+ if ((!strncasecmp(pdevbuf, "TEMP", 4)) && (s = strchr(pdevbuf + 4, ':'))) {
+ float temp = strtof(s + 1, NULL);
+ if (temp > 0) {
+ bitforce->temp = temp;
+ if (temp > bitforce->cutofftemp) {
+ applog(LOG_WARNING, "Hit thermal cutoff limit on %s %d, disabling!", bitforce->api->name, bitforce->device_id);
+ bitforce->deven = DEV_RECOVER;
+ bitforce->device_last_not_well = time(NULL);
+ bitforce->device_not_well_reason = REASON_DEV_THERMAL_CUTOFF;
+ bitforce->dev_thermal_cutoff_count++;
+ }
+ }
+ }
+}
+
+
+static uint64_t bitforce_send_work(struct cgpu_info *bitforce, struct work *work)
+{
+ int fdDev = bitforce->device_fd;
char pdevbuf[0x100];
unsigned char ob[61] = ">>>>>>>>12345678901234567890123456789012123456789012>>>>>>>>";
- int i;
- char *pnoncebuf;
char *s;
- uint32_t nonce;
BFwrite(fdDev, "ZDX", 3);
BFgets(pdevbuf, sizeof(pdevbuf), fdDev);
@@ -305,30 +329,19 @@ static uint64_t bitforce_scanhash(struct thr_info *thr, struct work *work, uint6
applog(LOG_ERR, "BitForce block data reports: %s", pdevbuf);
return 0;
}
+}
- BFwrite(fdDev, "ZLX", 3);
- BFgets(pdevbuf, sizeof(pdevbuf), fdDev);
- if (unlikely(!pdevbuf[0])) {
- applog(LOG_ERR, "Error reading from BitForce (ZKX)");
- return 0;
- }
- if ((!strncasecmp(pdevbuf, "TEMP", 4)) && (s = strchr(pdevbuf + 4, ':'))) {
- float temp = strtof(s + 1, NULL);
- if (temp > 0) {
- bitforce->temp = temp;
- if (temp > bitforce->cutofftemp) {
- applog(LOG_WARNING, "Hit thermal cutoff limit on %s %d, disabling!", bitforce->api->name, bitforce->device_id);
- bitforce->deven = DEV_RECOVER;
+static uint64_t bitforce_get_result(struct thr_info *thr, struct work *work)
+{
+ struct cgpu_info *bitforce = thr->cgpu;
+ int fdDev = bitforce->device_fd;
- bitforce->device_last_not_well = time(NULL);
- bitforce->device_not_well_reason = REASON_DEV_THERMAL_CUTOFF;
- bitforce->dev_thermal_cutoff_count++;
- }
- }
- }
+ char pdevbuf[0x100];
+ int i;
+ char *pnoncebuf;
+ uint32_t nonce;
- usleep(4500000);
- i = 4500;
+ i = 5000;
while (i < 10000) {
BFwrite(fdDev, "ZFX", 3);
BFgets(pdevbuf, sizeof(pdevbuf), fdDev);
@@ -342,15 +355,17 @@ static uint64_t bitforce_scanhash(struct thr_info *thr, struct work *work, uint6
i += 10;
}
- if (i >= 10000) {
- applog(LOG_DEBUG, "BitForce took longer than 10s");
- return 0;
- }
+ if (i >= 10000) {
+ applog(LOG_DEBUG, "BitForce took longer than 10s");
+ return 0;
+ }
applog(LOG_DEBUG, "BitForce waited %dms until %s\n", i, pdevbuf);
work->blk.nonce = 0xffffffff;
- if (pdevbuf[2] == '-')
- return 0xffffffff;
+ if (pdevbuf[2] == '-')
+ return 0xffffffff; /* No valid nonce found */
+ else if (pdevbuf[0] == 'I')
+ return 0x1; /* Device idle */
else if (strncasecmp(pdevbuf, "NONCE-FOUND", 11)) {
applog(LOG_ERR, "BitForce result reports: %s", pdevbuf);
return 0;
@@ -363,14 +378,37 @@ static uint64_t bitforce_scanhash(struct thr_info *thr, struct work *work, uint6
#ifndef __BIG_ENDIAN__
nonce = swab32(nonce);
#endif
-
submit_nonce(thr, work, nonce);
if (pnoncebuf[8] != ',')
break;
pnoncebuf += 9;
}
+
+ return 0xffffffff;
+}
+
+static uint64_t bitforce_scanhash(struct thr_info *thr, struct work *work, uint64_t __maybe_unused max_nonce)
+{
+ struct cgpu_info *bitforce = thr->cgpu;
+
+ if (bitforce->deven == DEV_ENABLED) {
+ if (!bitforce_send_work(bitforce, work))
+ return 0;
+ }
- return 0xffffffff;
+ if (!bitforce_get_temp(bitforce))
+ return 0;
+
+ usleep(5000000);
+
+// if (bitforce->deven == DEV_IDLE)
+// applog(LOG_ERR, "BitForce idle mode");
+
+ if (bitforce->deven == DEV_ENABLED)
+ return bitforce_get_result(thr, work);
+ else
+ return 0x1;
+
}
struct device_api bitforce_api = {
diff --git a/miner.h b/miner.h
index 186eb9f..8d4ea1a 100644
--- a/miner.h
+++ b/miner.h
@@ -250,6 +250,7 @@ enum dev_enable {
DEV_ENABLED,
DEV_DISABLED,
DEV_RECOVER,
+ DEV_IDLE,
};
enum cl_kernels {