summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaisuke Nojiri <dnojiri@chromium.org>2017-09-22 10:53:26 -0700
committerchrome-bot <chrome-bot@chromium.org>2017-09-26 22:35:21 -0700
commit06f068a29ccfd4d69c7aebdaf227b34cbecf17ac (patch)
treeb668b1aa92b0af8b956ca3d7121f58e1c06b49ed
parentdc8a8767fae01e22e6504e272dca17448c7a25af (diff)
downloadchrome-ec-06f068a29ccfd4d69c7aebdaf227b34cbecf17ac.tar.gz
Fizz: Set proper max power
This patch raises the max power for a type-c adapter to 60W (20V @3A). We can't go above the regular cable capacity (3A) until we add e-marked cable detection. BUG=none BRANCH=none TEST=Boot Proto3 on Zinger. Observe 60W (20V @3A) is selected. Change-Id: I9670d710e363c7db1136a7ce7a7f8401b0ad8240 Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/679210 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
-rw-r--r--board/fizz/board.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/board/fizz/board.h b/board/fizz/board.h
index c82d333ccb..db037357e3 100644
--- a/board/fizz/board.h
+++ b/board/fizz/board.h
@@ -222,7 +222,8 @@ enum pwm_channel {
/* Define typical operating power and max power */
#define PD_OPERATING_POWER_MW 15000
-#define PD_MAX_POWER_MW 45000
+#define PD_MAX_POWER_MW 60000
+/* We can't go above the cable capacity until we add e-marked cable detection */
#define PD_MAX_CURRENT_MA 3000
#define PD_MAX_VOLTAGE_MV 20000