summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAseda Aboagye <aaboagye@google.com>2017-04-06 13:03:06 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2017-07-03 07:46:36 +0000
commit24514961d04696eaea2fc7bac74e374f545f672b (patch)
treecb24d8165c0cda2dc235e2bb2cda6f97e2c86ead
parent1d059178024cea7f8db565408ce18a34ed26bffc (diff)
downloadchrome-ec-24514961d04696eaea2fc7bac74e374f545f672b.tar.gz
kevin: Change PD max power to 40W.
BUG=b:35647696 BRANCH=gru TEST=Flash kevin. Plug in 60W charger like zinger. Verify that charge limit is set to 2000mA @ 20V. Verify that we still pull 3A @ 5V using guppy. Change-Id: Iaaa681fc0cf9ab8a371b8b69bc5dcc065a42d461 Signed-off-by: Aseda Aboagye <aaboagye@google.com> Reviewed-on: https://chromium-review.googlesource.com/470446 Commit-Queue: Shawn N <shawnn@chromium.org> Tested-by: Shawn N <shawnn@chromium.org> Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
-rw-r--r--board/kevin/board.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/board/kevin/board.h b/board/kevin/board.h
index a2101d53bf..79f67e1c27 100644
--- a/board/kevin/board.h
+++ b/board/kevin/board.h
@@ -141,7 +141,13 @@
#endif
#define PD_OPERATING_POWER_MW 15000
+/* Kevin board accommodate 40W input charge current */
+#ifdef BOARD_KEVIN
+#define PD_MAX_POWER_MW 40000
+#else
+/* 60W for Gru */
#define PD_MAX_POWER_MW 60000
+#endif
#define PD_MAX_CURRENT_MA 3000
#define PD_MAX_VOLTAGE_MV 20000