summaryrefslogtreecommitdiff
path: root/include/ec_commands.h
diff options
context:
space:
mode:
authorTing Shen <phoenixshen@google.com>2021-05-20 18:16:41 +0800
committerCommit Bot <commit-bot@chromium.org>2021-05-27 09:17:00 +0000
commit00d63619edf7b6c1f62d7cfce7a2bd520635dbd3 (patch)
treedd379764d34d67abb3cac4c40499321c33651842 /include/ec_commands.h
parente9aae45d73c326331b07a0db171e64d73402907f (diff)
downloadchrome-ec-00d63619edf7b6c1f62d7cfce7a2bd520635dbd3.tar.gz
base_state: implement basestate host command
This CL introduces an unified method to force base attach/detach, to deprecate the hard-coded gpio pin name table in hammerd/hammertests/common.py. Also modifies base_force_state to use the same parameter type as host command. BUG=b:188625010 TEST=manually, run `ectool basestate attach|detach|reset` on coachz BRANCH=trogdor,kukui Signed-off-by: Ting Shen <phoenixshen@google.com> Change-Id: I5235661727cbbd15015c49d588ec70605e4a33e8 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2910472 Reviewed-by: Wai-Hong Tam <waihong@google.com> Tested-by: Ting Shen <phoenixshen@chromium.org> Commit-Queue: Ting Shen <phoenixshen@chromium.org>
Diffstat (limited to 'include/ec_commands.h')
-rw-r--r--include/ec_commands.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/ec_commands.h b/include/ec_commands.h
index 90c3de8c42..0649a42797 100644
--- a/include/ec_commands.h
+++ b/include/ec_commands.h
@@ -6914,6 +6914,18 @@ struct ec_response_display_soc {
} __ec_align2;
+#define EC_CMD_SET_BASE_STATE 0x0138
+
+struct ec_params_set_base_state {
+ uint8_t cmd; /* enum ec_set_base_state_cmd */
+} __ec_align1;
+
+enum ec_set_base_state_cmd {
+ EC_SET_BASE_STATE_DETACH = 0,
+ EC_SET_BASE_STATE_ATTACH,
+ EC_SET_BASE_STATE_RESET,
+};
+
/*****************************************************************************/
/* The command range 0x200-0x2FF is reserved for Rotor. */