summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVic Yang <victoryang@google.com>2015-01-22 12:37:50 -0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-01-24 01:45:57 +0000
commita6479508e2b14c502fada6e1300600dd49e237eb (patch)
tree67de4714bb5dc0a592fbb14c27c609672bdcf54c
parentcf77f90f2caf562fd6b9270c1debc2df5f118c3a (diff)
downloadchrome-ec-a6479508e2b14c502fada6e1300600dd49e237eb.tar.gz
ryu: Reduce max input power to 24W
To prevent overloading inductor L2, we can't really draw too much power from the type-C power. The voltage at L2 is around 4V, and we want to keep the current below 6A, so let's limit the input power to 24W. BRANCH=Ryu BUG=None TEST=Charge the battery on Ryu while the system is up. Change-Id: I80f46d7992c64765f4de985e3a9f9492c719907b Signed-off-by: Vic Yang <victoryang@google.com> Reviewed-on: https://chromium-review.googlesource.com/242602 Reviewed-by: Vincent Palatin <vpalatin@chromium.org> Reviewed-by: Alec Berg <alecaberg@chromium.org> Commit-Queue: Vic Yang <victoryang@chromium.org> Tested-by: Vic Yang <victoryang@chromium.org>
-rw-r--r--board/ryu/usb_pd_config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ryu/usb_pd_config.h b/board/ryu/usb_pd_config.h
index cbe707e8ed..94f34752dc 100644
--- a/board/ryu/usb_pd_config.h
+++ b/board/ryu/usb_pd_config.h
@@ -179,7 +179,7 @@ static inline int pd_snk_is_vbus_provided(int port)
/* Define typical operating power and max power */
#define PD_OPERATING_POWER_MW 10000
-#define PD_MAX_POWER_MW 60000
+#define PD_MAX_POWER_MW 24000
#define PD_MAX_CURRENT_MA 3000
#define PD_MAX_VOLTAGE_MV 20000