summaryrefslogtreecommitdiff
path: root/board/boten/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/boten/board.c')
-rw-r--r--board/boten/board.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/board/boten/board.c b/board/boten/board.c
index fc70b11ada..c47b9e46f0 100644
--- a/board/boten/board.c
+++ b/board/boten/board.c
@@ -244,6 +244,19 @@ uint16_t tcpc_get_alert_status(void)
return status;
}
+void board_set_charge_limit(int port, int supplier, int charge_ma, int max_ma,
+ int charge_mv)
+{
+ int icl = MAX(charge_ma, CONFIG_CHARGER_INPUT_CURRENT);
+
+ /*
+ * b/147463641: The charger IC seems to overdraw ~4%, therefore we
+ * reduce our target accordingly.
+ */
+ icl = icl * 96 / 100;
+ charge_set_input_current_limit(icl, charge_mv);
+}
+
__override void typec_set_source_current_limit(int port, enum tcpc_rp_value rp)
{
if (port < 0 || port > board_get_usb_pd_port_count())