Midnight Sun Firmware
Loading...
Searching...
No Matches
ltc6811.h
1#pragma once
2#include <assert.h>
3
4// used internally by the LTC AFE driver
5#define LTC6811_CELLS_IN_REG 3
6#define LTC6811_GPIOS_IN_REG 3
7
8// used for the external mux (ADG731) connected to the AFE
9#define AUX_ADG731_NUM_PINS 32
10
11// Size of command code + PEC
12#define LTC6811_CMD_SIZE 4
13
14// 3 bytes are required to send 24 clock cycles with our SPI driver for the STCOMM command
15#define LTC6811_NUM_COMM_REG_BYTES 3
16
17typedef enum {
18 LTC_AFE_REGISTER_CONFIG = 0,
19 LTC_AFE_REGISTER_CELL_VOLTAGE_A,
20 LTC_AFE_REGISTER_CELL_VOLTAGE_B,
21 LTC_AFE_REGISTER_CELL_VOLTAGE_C,
22 LTC_AFE_REGISTER_CELL_VOLTAGE_D,
23 LTC_AFE_REGISTER_AUX_A,
24 LTC_AFE_REGISTER_AUX_B,
25 LTC_AFE_REGISTER_STATUS_A,
26 LTC_AFE_REGISTER_STATUS_B,
27 LTC_AFE_REGISTER_READ_COMM,
28 LTC_AFE_REGISTER_START_COMM,
29 NUM_LTC_AFE_REGISTERS
30} LtcAfeRegister;
31
32typedef enum { LTC_AFE_VOLTAGE_REGISTER_A = 0, LTC_AFE_VOLTAGE_REGISTER_B, LTC_AFE_VOLTAGE_REGISTER_C, LTC_AFE_VOLTAGE_REGISTER_D, NUM_LTC_AFE_VOLTAGE_REGISTERS } LtcAfeVoltageRegister;
33
34typedef enum {
35 LTC_AFE_DISCHARGE_TIMEOUT_DISABLED = 0,
36 LTC_AFE_DISCHARGE_TIMEOUT_30_S,
37 LTC_AFE_DISCHARGE_TIMEOUT_1_MIN,
38 LTC_AFE_DISCHARGE_TIMEOUT_2_MIN,
39 LTC_AFE_DISCHARGE_TIMEOUT_3_MIN,
40 LTC_AFE_DISCHARGE_TIMEOUT_4_MIN,
41 LTC_AFE_DISCHARGE_TIMEOUT_5_MIN,
42 LTC_AFE_DISCHARGE_TIMEOUT_10_MIN,
43 LTC_AFE_DISCHARGE_TIMEOUT_15_MIN,
44 LTC_AFE_DISCHARGE_TIMEOUT_20_MIN,
45 LTC_AFE_DISCHARGE_TIMEOUT_30_MIN,
46 LTC_AFE_DISCHARGE_TIMEOUT_40_MIN,
47 LTC_AFE_DISCHARGE_TIMEOUT_60_MIN,
48 LTC_AFE_DISCHARGE_TIMEOUT_75_MIN,
49 LTC_AFE_DISCHARGE_TIMEOUT_90_MIN,
50 LTC_AFE_DISCHARGE_TIMEOUT_120_MIN
51} LtcAfeDischargeTimeout;
52
53// SPI Packets
54typedef struct {
55 uint8_t adcopt : 1;
56 uint8_t swtrd : 1;
57 uint8_t refon : 1;
58
59 uint8_t gpio : 5; // GPIO pin control
60
61 uint32_t undervoltage : 12; // Undervoltage Comparison Voltage
62 uint32_t overvoltage : 12; // Overvoltage Comparison Voltage
63
64 uint16_t discharge_bitset : 12;
65 uint8_t discharge_timeout : 4;
66} _PACKED LtcAfeConfigRegisterData;
67static_assert(sizeof(LtcAfeConfigRegisterData) == 6, "LtcAfeConfigRegisterData must be 6 bytes");
68
69// COMM Register, refer to LTC6803 datasheet page 31, Table 15
70typedef struct {
71 uint8_t icom0 : 4;
72 uint8_t d0 : 8;
73 uint8_t fcom0 : 4;
74
75 uint8_t icom1 : 4;
76 uint8_t d1 : 8;
77 uint8_t fcom1 : 4;
78
79 uint8_t icom2 : 4;
80 uint8_t d2 : 8;
81 uint8_t fcom2 : 4;
82} _PACKED LtcAfeCommRegisterData;
83static_assert(sizeof(LtcAfeCommRegisterData) == 6, "LtcAfeCommRegisterData must be 6 bytes");
84
85// CFGR packet
86typedef struct {
87 LtcAfeConfigRegisterData reg;
88
89 uint16_t pec;
90} _PACKED LtcAfeWriteDeviceConfigPacket;
91
92// WRCOMM + mux pin
93typedef struct {
94 uint8_t wrcomm[LTC6811_CMD_SIZE];
95 LtcAfeCommRegisterData reg;
96 uint8_t pec;
97} _PACKED LtcAfeWriteCommRegPacket;
98
99// STMCOMM + clock cycles
100typedef struct {
101 uint8_t stcomm[LTC6811_CMD_SIZE];
102 uint8_t clk[LTC6811_NUM_COMM_REG_BYTES];
103} _PACKED LtcAfeSendCommRegPacket;
104
105// WRCFG + all slave registers
106typedef struct {
107 uint8_t wrcfg[LTC6811_CMD_SIZE];
108
109 // devices are ordered with the last slave first
110 LtcAfeWriteDeviceConfigPacket devices[LTC_AFE_MAX_CELLS_PER_DEVICE];
111} _PACKED LtcAfeWriteConfigPacket;
112#define SIZEOF_LTC_AFE_WRITE_CONFIG_PACKET(devices) (LTC6811_CMD_SIZE + (devices) * sizeof(LtcAfeWriteDeviceConfigPacket))
113
114typedef union {
115 uint16_t voltages[3];
116
117 uint8_t values[6];
119static_assert(sizeof(LtcAfeRegisterGroup) == 6, "LtcAfeRegisterGroup must be 6 bytes");
120
121typedef struct {
123
124 uint16_t pec;
125} _PACKED LtcAfeVoltageRegisterGroup;
126static_assert(sizeof(LtcAfeVoltageRegisterGroup) == 8, "LtcAfeVoltageRegisterGroup must be 8 bytes");
127
128typedef struct {
130
131 uint16_t pec;
132} _PACKED LtcAfeAuxRegisterGroupPacket;
133static_assert(sizeof(LtcAfeAuxRegisterGroupPacket) == 8, "LtcAfeAuxRegisterGroupPacket must be 8 bytes");
134
135// command codes
136// see Table 38 (p.59)
137#define LTC6811_WRCFG_RESERVED (1 << 0)
138
139#define LTC6811_RDCFG_RESERVED (1 << 1)
140
141#define LTC6811_RDCVA_RESERVED (1 << 2)
142
143#define LTC6811_RDCVB_RESERVED (1 << 2) | (1 << 1)
144
145#define LTC6811_RDCVC_RESERVED (1 << 3)
146
147#define LTC6811_RDCVD_RESERVED (1 << 3) | (1 << 1)
148
149#define LTC6811_RDAUXA_RESERVED ((1 << 3) | (1 << 2))
150
151#define LTC6811_RDAUXB_RESERVED ((1 << 3) | (1 << 2)) | (1 << 1)
152
153#define LTC6811_RDSTATA_RESERVED (1 << 4)
154
155#define LTC6811_RDSTATB_RESERVED (1 << 4) | (1 << 1)
156
157#define LTC6811_ADCV_RESERVED ((1 << 9) | (1 << 6) | (1 << 5))
158
159#define LTC6811_ADCOW_RESERVED ((1 << 3) | (1 << 5) | (1 << 9))
160
161#define LTC6811_CVST_RESERVED ((1 << 0) | (1 << 1) | (1 << 2) | (1 << 9))
162
163#define LTC6811_ADAX_RESERVED (1 << 10) | (1 << 6) | (1 << 5)
164
165#define LTC6811_CLRCELL_RESERVED (1 << 0) | (1 << 4) | (1 << 8) | (1 << 9) | (1 << 10)
166
167#define LTC6811_CLRAUX_RESERVED (1 << 1) | (1 << 4) | (1 << 8) | (1 << 9) | (1 << 10)
168
169#define LTC6811_CLRSTAT_RESERVED (1 << 0) | (1 << 1) | (1 << 4) | (1 << 8) | (1 << 9) | (1 << 10)
170
171#define LTC6811_PLADC_RESERVED (1 << 2) | (1 << 4) | (1 << 8) | (1 << 9) | (1 << 10)
172
173#define LTC6811_DIAGNC_RESERVED (1 << 0) | (1 << 2) | (1 << 4) | (1 << 8) | (1 << 9) | (1 << 10)
174
175#define LTC6811_WRCOMM_RESERVED (1 << 0) | (1 << 5) | (1 << 8) | (1 << 9) | (1 << 10)
176
177#define LTC6811_RDCOMM_RESERVED (1 << 1) | (1 << 5) | (1 << 8) | (1 << 9) | (1 << 10)
178
179#define LTC6811_STCOMM_RESERVED (1 << 0) | (1 << 1) | (1 << 5) | (1 << 8) | (1 << 9) | (1 << 10)
180
181#define LTC6811_WRPWM_RESERVED (1 << 5)
182
183#define LTC6811_RDPWM_RESERVED (1 << 5) | (1 << 2)
184
185// command bits
186// see Table 40 (p. 62)
187#define LTC6811_GPIO1_PD_ON (0 << 3)
188#define LTC6811_GPIO1_PD_OFF (1 << 3)
189#define LTC6811_GPIO2_PD_ON (0 << 4)
190#define LTC6811_GPIO2_PD_OFF (1 << 4)
191#define LTC6811_GPIO3_PD_ON (0 << 5)
192#define LTC6811_GPIO3_PD_OFF (1 << 5)
193#define LTC6811_GPIO4_PD_ON (0 << 6)
194#define LTC6811_GPIO4_PD_OFF (1 << 6)
195#define LTC6811_GPIO5_PD_ON (0 << 7)
196#define LTC6811_GPIO5_PD_OFF (1 << 7)
197
198#define LTC6811_CNVT_CELL_ALL 0x00
199#define LTC6811_CNVT_CELL_1_7 0x01
200#define LTC6811_CNVT_CELL_2_8 0x02
201#define LTC6811_CNVT_CELL_3_9 0x03
202#define LTC6811_CNVT_CELL_4_10 0x04
203#define LTC6811_CNVT_CELL_5_11 0x05
204#define LTC6811_CNVT_CELL_6_12 0x06
205
206#define LTC6811_ADCV_DISCHARGE_NOT_PERMITTED (0 << 4)
207#define LTC6811_ADCV_DISCHARGE_PERMITTED (1 << 4)
208
209#define LTC6811_ADCOPT (1 << 0)
210
211#define LTC6811_SWTRD (1 << 1)
212
213#define LTC6811_ADAX_GPIO1 0x01
214#define LTC6811_ADAX_GPIO4 0x04
215#define LTC6811_ADAX_MODE_FAST (0 << 8) | (1 << 7)
216
217#define LTC6811_ICOM_CSBM_LOW (1 << 3)
218#define LTC6811_ICOM_CSBM_HIGH (1 << 3) | (1 << 0)
219#define LTC6811_ICOM_NO_TRANSMIT (1 << 3) | (1 << 2) | (1 << 1) | (1 << 0)
220
221#define LTC6811_FCOM_CSBM_LOW (0 << 0)
222#define LTC6811_FCOM_CSBM_HIGH (1 << 3) | (1 << 0)
223
224// see Table 17 (p. 38)
225#define LTC6811_PWMC_DC_100 (0xF)
Definition: ltc6811.h:54
Definition: ltc6811.h:114