power: Enable charger unconditionally

This commit is contained in:
CTCaer
2020-06-14 02:04:50 +03:00
parent 416db840ec
commit eb2c8a032f
6 changed files with 30 additions and 0 deletions

View File

@@ -154,6 +154,16 @@ int bq24193_get_property(enum BQ24193_reg_prop prop, int *value)
return 0;
}
void bq24193_enable_charger()
{
u8 reg = bq24193_get_reg(BQ24193_PORConfig);
reg &= ~BQ24193_PORCONFIG_CHGCONFIG_MASK;
reg |= BQ24193_PORCONFIG_CHGCONFIG_CHARGER_EN;
i2c_send_byte(I2C_1, BQ24193_I2C_ADDR, BQ24193_PORConfig, reg);
}
void bq24193_fake_battery_removal()
{
// Disable watchdog to keep BATFET disabled.