summaryrefslogtreecommitdiff
path: root/board/sasuke/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/sasuke/board.c')
-rw-r--r--board/sasuke/board.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/board/sasuke/board.c b/board/sasuke/board.c
index e6767d8126..ddd5279d62 100644
--- a/board/sasuke/board.c
+++ b/board/sasuke/board.c
@@ -395,6 +395,19 @@ int board_set_active_charge_port(int port)
return EC_SUCCESS;
}
+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())