diff options
author | Jacky Wang <jacky5_wang@pegatron.corp-partner.google.com> | 2021-06-07 18:13:01 +0800 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2021-06-08 04:02:45 +0000 |
commit | 02a797239371262fa47865cf31a6ec322a87db27 (patch) | |
tree | b05bff35bafbd0f62f0c9f5685a2c4ef389adcac /board/copano | |
parent | 5de4b6f9206ffafc677d420d57db51fecaec609d (diff) | |
download | chrome-ec-02a797239371262fa47865cf31a6ec322a87db27.tar.gz |
copano: Modity PDO setting.
1. Modify PD_MAX_POWER_MW to 45000.
2. Modify PD_MAX_VOLTAGE_MV to 15000.
BUG=b:187772157
BRANCH=firmware-volteer-13672.B
TEST=make BOARD=copano
1. Connect 60W adapter and use command "ectool usbpdpower" to check.
Signed-off-by: Jacky Wang <jacky5_wang@pegatron.corp-partner.google.com>
Change-Id: Id2ffb79abdea63c129deb8d5f247cda4f8030817
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2944307
Reviewed-by: Michael5 Chen <michael5_chen1@pegatron.corp-partner.google.com>
Reviewed-by: Zhuohao Lee <zhuohao@chromium.org>
Reviewed-by: Keith Short <keithshort@chromium.org>
Diffstat (limited to 'board/copano')
-rw-r--r-- | board/copano/board.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/copano/board.h b/board/copano/board.h index 39187c01a0..43e194dca9 100644 --- a/board/copano/board.h +++ b/board/copano/board.h @@ -66,9 +66,9 @@ * cables only support up to 60W. */ #define PD_OPERATING_POWER_MW 15000 -#define PD_MAX_POWER_MW 60000 +#define PD_MAX_POWER_MW 45000 #define PD_MAX_CURRENT_MA 3000 -#define PD_MAX_VOLTAGE_MV 20000 +#define PD_MAX_VOLTAGE_MV 15000 #define CONFIG_USB_PD_REQUIRE_AP_MODE_ENTRY |