summaryrefslogtreecommitdiff
path: root/board/host/board.h
diff options
context:
space:
mode:
authorSam Hurst <shurst@google.com>2017-01-10 09:55:37 -0800
committerchrome-bot <chrome-bot@chromium.org>2017-01-26 18:43:52 -0800
commit17515de32c7dffc5a9afd7e365a4dd31b3d3074a (patch)
tree5957d718301b4c0377906cc3f4a49a501785b918 /board/host/board.h
parent7736c887d786c8ee2374dcc2b7fe4a4fc066c9bb (diff)
downloadchrome-ec-17515de32c7dffc5a9afd7e365a4dd31b3d3074a.tar.gz
pd: support gotoMin and giveBack
In Sink mode, on the receipt of a GotoMin message, reduce the current consumption to some minimum level. BUG=chrome-os-partner:33688 TEST=Manual testing Used a Kevin, with test routine, to test GotoMin feature on another Kevin unit. Test routine: if (!strcasecmp(argv[2], "gm")) { ccprintf("send goto min\n"); send_control(port, PD_CTRL_GOTO_MIN); send_control(port, PD_CTRL_PS_RDY); } Kevin with GotoMin feature: # ectool usbpdpower 0 Port 0: SNK DRP PD 4277mV / 3000mA, max 5000mV / 3000mA / 15000mW Port 1: Disconnected After Test routine is executed: # ectool usbpdpower 0 Port 0: SNK DRP PD 4906mV / 500mA, max 5000mV / 500mA / 2500mW Port 1: Disconnected BRANCH=none Change-Id: Iaac6e19706ceb10ccaff4d602d63fc086c808c8f Reviewed-on: https://chromium-review.googlesource.com/425728 Commit-Ready: Sam Hurst <shurst@google.com> Tested-by: Sam Hurst <shurst@google.com> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'board/host/board.h')
-rw-r--r--board/host/board.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/board/host/board.h b/board/host/board.h
index a5b6a5dc20..aa82d600d4 100644
--- a/board/host/board.h
+++ b/board/host/board.h
@@ -69,4 +69,7 @@ extern const int supplier_priority[];
#define PD_MAX_CURRENT_MA 3000
#define PD_MAX_VOLTAGE_MV 20000
+#define PD_MIN_CURRENT_MA 500
+#define PD_MIN_POWER_MW 7500
+
#endif /* __CROS_EC_BOARD_H */