summaryrefslogtreecommitdiff
path: root/board/lantis
diff options
context:
space:
mode:
authorTommy Chung <tommy.chung@quanta.corp-partner.google.com>2020-11-24 15:42:45 +0800
committerCommit Bot <commit-bot@chromium.org>2020-12-02 04:04:20 +0000
commit1028139b6aed4a7c5736ddc99b0162aec7eb964a (patch)
treee522d772cc78edaffbf359cc653e0ce59b3fbe37 /board/lantis
parente0dabf0a60dd5625ef8633fdb71525f0b353fe5d (diff)
downloadchrome-ec-1028139b6aed4a7c5736ddc99b0162aec7eb964a.tar.gz
lantis: Remove C1 current limitation
Since the thermal concern has already been solved, we don't have to limit C1 charging current to 2A in lantis. BUG=b:161942987 BRANCH=dedede TEST=In lantis, make sure that C1 charging current is not limited to 2A. Signed-off-by: Tommy Chung <tommy.chung@quanta.corp-partner.google.com> Change-Id: I9c3e13b2e1fa2acaeb9dfae17f8ed1639550689b Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2557283 Reviewed-by: Devin Lu <Devin.Lu@quantatw.com> Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'board/lantis')
-rw-r--r--board/lantis/board.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/board/lantis/board.c b/board/lantis/board.c
index 7f96bdaef3..a457b27016 100644
--- a/board/lantis/board.c
+++ b/board/lantis/board.c
@@ -511,9 +511,6 @@ void board_set_charge_limit(int port, int supplier, int charge_ma, int max_ma,
{
int icl = MAX(charge_ma, CONFIG_CHARGER_INPUT_CURRENT);
- /* Limit C1 on board version 0 to 2.0 A */
- if ((board_version == 0) && (port == 1))
- icl = MIN(icl, 2000);
/*
* TODO(b/151955431): Characterize the input current limit in case a
* scaling needs to be applied here