From 06f068a29ccfd4d69c7aebdaf227b34cbecf17ac Mon Sep 17 00:00:00 2001 From: Daisuke Nojiri Date: Fri, 22 Sep 2017 10:53:26 -0700 Subject: [PATCH] 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 Reviewed-on: https://chromium-review.googlesource.com/679210 Reviewed-by: Aaron Durbin Reviewed-by: Vincent Palatin --- board/fizz/board.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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