Midnight Sun Firmware
Loading...
Searching...
No Matches
ltc_afe.h
1#pragma once
2// Driver for LTC6811 AFE chip
3
4// TODO(SOFT-9): Need to update GPIO/ADC part
5
6// Requires GPIO, Interrupts, Soft Timers, and Event Queue to be initialized
7
8// Note that all units are in 100uV.
9
10// This module supports AFEs with >=12 cells using the |cell/aux_bitset|.
11// Note that due to the long conversion delays required, we use an FSM to return control to the
12// application.
13#include <assert.h>
14#include <stdbool.h>
15#include <stdint.h>
16#include <stdlib.h>
17
18#include "fsm.h"
19#include "gpio.h"
20#include "spi.h"
21#include "status.h"
22
23// This is an arbitrary limitation, can be increased/decreased if needed
24#define LTC_AFE_MAX_DEVICES 3
25// This is a device limitation
26#define LTC_AFE_MAX_CELLS_PER_DEVICE 12
27#define LTC_AFE_MAX_THERMISTORS_PER_DEVICE 8
28#define LTC_AFE_MAX_CELLS (LTC_AFE_MAX_DEVICES * LTC_AFE_MAX_CELLS_PER_DEVICE)
29#define LTC_AFE_MAX_THERMISTORS (LTC_AFE_MAX_DEVICES * LTC_AFE_MAX_THERMISTORS_PER_DEVICE)
30
31#if defined(__GNUC__)
32#define _PACKED __attribute__((packed))
33#else
34#define _PACKED
35#endif
36
37// select the ADC mode (trade-off between speed or minimizing noise)
38// see p.50 for conversion times and p.23 for noise
39typedef enum { LTC_AFE_ADC_MODE_27KHZ = 0, LTC_AFE_ADC_MODE_7KHZ, LTC_AFE_ADC_MODE_26HZ, LTC_AFE_ADC_MODE_14KHZ, LTC_AFE_ADC_MODE_3KHZ, LTC_AFE_ADC_MODE_2KHZ, NUM_LTC_AFE_ADC_MODES } LtcAfeAdcMode;
40
41typedef struct LtcAfeBitset {
42 uint16_t cell_bitset;
43 uint16_t aux_bitset;
45
46typedef struct LtcAfeSettings {
47 GpioAddress cs;
48 GpioAddress mosi;
49 GpioAddress miso;
50 GpioAddress sclk;
51
52 const SpiPort spi_port;
53 uint32_t spi_baudrate;
54
55 LtcAfeAdcMode adc_mode;
56
57 uint16_t cell_bitset[LTC_AFE_MAX_DEVICES];
58 uint16_t aux_bitset[LTC_AFE_MAX_DEVICES];
59
60 size_t num_devices;
61 size_t num_cells;
62 size_t num_thermistors;
63
64 void *result_context;
66
67typedef struct LtcAfeStorage {
68 // Only used for storage in the FSM so we store data for the correct cells
69 uint16_t aux_index;
70 uint16_t retry_count;
71 uint16_t device_cell;
72
73 uint16_t cell_voltages[LTC_AFE_MAX_CELLS];
74 uint16_t aux_voltages[LTC_AFE_MAX_THERMISTORS];
75
76 uint16_t discharge_bitset[LTC_AFE_MAX_DEVICES];
77
78 uint16_t cell_result_lookup[LTC_AFE_MAX_CELLS];
79 uint16_t aux_result_lookup[LTC_AFE_MAX_THERMISTORS];
80 uint16_t discharge_cell_lookup[LTC_AFE_MAX_CELLS];
81 uint16_t max_temp;
82
83 LtcAfeSettings settings;
85
86// Initialize the LTC6811.
87// |settings.cell_bitset| and |settings.aux_bitset| should be an array of bitsets where bits 0 to 11
88// represent whether we should monitor the cell input for the given device.
89// |settings.cell_result_cb| and |settings.aux_result_cb| will be called when the corresponding
90// conversion is completed.
91StatusCode ltc_afe_init(LtcAfeStorage *afe, const LtcAfeSettings *settings);
SpiPort
SPI Port selection.
Definition: spi.h:34
StatusCode
StatusCodes for various errors.
Definition: status.h:27
Port and pin data.
Definition: gpio.h:112
Definition: ltc_afe.h:41
Definition: ltc_afe.h:46
Definition: ltc_afe.h:67