-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsy6970.cpp
93 lines (72 loc) · 2.21 KB
/
sy6970.cpp
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
#include "sy6970.h"
#include "pmu.h"
#include "esphome/core/helpers.h"
#include "esphome/core/log.h"
namespace esphome {
namespace sy6970 {
#define _BV(b) (1ULL << (uint64_t)(b))
#define ERROR_CHECK(err) \
if ((err) != i2c::ERROR_OK) { \
this->status_set_warning("Failed to communicate"); \
return; \
}
#define ERROR_CHECK_RET(err) \
if ((err) != i2c::ERROR_OK) { \
this->status_set_warning("Failed to communicate"); \
return err; \
}
namespace {
constexpr static const char *const TAG = "sy6970";
} // anonymous namespace
void SY6970::setup() {
ESP_LOGCONFIG(TAG, "Setting up SY6970 PMU...");
this->disable_watchdog();
this->is_state_led_enabled_ ? this->enable_state_led() : this->disable_state_led();
ESP_LOGCONFIG(TAG, "SY6970 PMU setup complete");
}
void SY6970::dump_config() {
ESP_LOGCONFIG(TAG, "SY6970 PMU:");
LOG_I2C_DEVICE(this);
ESP_LOGCONFIG(TAG, " State LED: %s", ONOFF(this->is_state_led_enabled_));
}
void SY6970::reset_default() {
i2c::ErrorCode err = this->set_register_bit(POWERS_PPM_REG_14H, 7);
ERROR_CHECK(err);
}
void SY6970::enable_state_led() {
this->clear_register_bit(POWERS_PPM_REG_07H, 6);
}
void SY6970::disable_state_led() {
this->set_register_bit(POWERS_PPM_REG_07H, 6);
}
void SY6970::disable_watchdog() {
uint8_t val = 0;
i2c::ErrorCode err = this->read_register(POWERS_PPM_REG_07H, &val, 1);
ERROR_CHECK(err);
val &= 0xCF;
err = this->write_register(POWERS_PPM_REG_07H, &val, 1);
ERROR_CHECK(err);
}
i2c::ErrorCode SY6970::get_register_bit(uint8_t reg, uint8_t bit, bool &out) {
uint8_t val = 0;
i2c::ErrorCode err = this->read_register(reg, &val, 1);
ERROR_CHECK_RET(err);
out = val & _BV(bit);
return i2c::ERROR_OK;
}
i2c::ErrorCode SY6970::set_register_bit(uint8_t reg, uint8_t bit) {
uint8_t val = 0;
i2c::ErrorCode err = this->read_register(reg, &val, 1);
ERROR_CHECK_RET(err);
val |= _BV(bit);
return this->write_register(reg, &val, 1);
}
i2c::ErrorCode SY6970::clear_register_bit(uint8_t reg, uint8_t bit) {
uint8_t val = 0;
i2c::ErrorCode err = this->read_register(reg, &val, 1);
ERROR_CHECK_RET(err);
val &= ~_BV(bit);
return this->write_register(reg, &val, 1);
}
} // namespace sy6970
} // namespace esphome