forked from rockminerinc/cgminer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A1-board-selector-CCD.c
executable file
·119 lines (99 loc) · 2.6 KB
/
A1-board-selector-CCD.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
/*
* board selector support for TCA9535 used in Bitmine's CoinCraft Desk
*
* Copyright 2014 Zefir Kurtisi <[email protected]>
*
* 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 <sys/ioctl.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <linux/i2c.h>
#include <linux/i2c-dev.h>
#include <stdint.h>
#include <stdbool.h>
#include <fcntl.h>
#include "miner.h"
#include "A1-board-selector.h"
static struct board_selector ccd_selector;
struct ccd_ctx {
struct i2c_ctx U1_tca9535;
uint8_t board_mask;
uint8_t active_board;
pthread_mutex_t lock;
};
static struct ccd_ctx ccd_ctx = {
.U1_tca9535 = { .addr = 0x27, .file = -1 },
.board_mask = 0xff,
.active_board = 255,
};
#define UNUSED_BITS 0xe0
static void ccd_unlock(void)
{
mutex_unlock(&ccd_ctx.lock);
}
static void ccd_exit(void)
{
i2c_slave_close(&ccd_ctx.U1_tca9535);
}
extern struct board_selector *ccd_board_selector_init(void)
{
mutex_init(&ccd_ctx.lock);
struct i2c_ctx *ctx = &ccd_ctx.U1_tca9535;
bool retval = i2c_slave_open(ctx, I2C_BUS) &&
i2c_slave_write(ctx, 0x06, 0xe0) &&
i2c_slave_write(ctx, 0x07, 0xe0) &&
i2c_slave_write(ctx, 0x02, 0x1f) &&
i2c_slave_write(ctx, 0x03, 0x00);
if (retval)
return &ccd_selector;
ccd_exit();
return NULL;
}
static bool ccd_select(uint8_t board)
{
if (board >= CCD_MAX_CHAINS)
return false;
mutex_lock(&ccd_ctx.lock);
if (ccd_ctx.active_board == board)
return true;
ccd_ctx.active_board = board;
ccd_ctx.board_mask = 1 << ccd_ctx.active_board;
return i2c_slave_write(&ccd_ctx.U1_tca9535, 0x02, ~ccd_ctx.board_mask);
}
static bool __ccd_board_selector_reset(uint8_t mask)
{
if (!i2c_slave_write(&ccd_ctx.U1_tca9535, 0x03, mask))
return false;
cgsleep_ms(RESET_LOW_TIME_MS);
if (!i2c_slave_write(&ccd_ctx.U1_tca9535, 0x03, 0x00))
return false;
cgsleep_ms(RESET_HI_TIME_MS);
return true;
}
// we assume we are already holding the mutex
static bool ccd_reset(void)
{
return __ccd_board_selector_reset(ccd_ctx.board_mask);
}
static bool ccd_reset_all(void)
{
mutex_lock(&ccd_ctx.lock);
bool retval = __ccd_board_selector_reset(0xff & ~UNUSED_BITS);
mutex_unlock(&ccd_ctx.lock);
return retval;
}
static struct board_selector ccd_selector = {
.select = ccd_select,
.release = ccd_unlock,
.exit = ccd_exit,
.reset = ccd_reset,
.reset_all = ccd_reset_all,
.get_temp = dummy_u8,
};