summaryrefslogtreecommitdiff
path: root/util/ectool.c
diff options
context:
space:
mode:
authorDaisuke Nojiri <dnojiri@chromium.org>2018-04-04 09:18:19 -0700
committerchrome-bot <chrome-bot@chromium.org>2018-04-04 18:52:15 -0700
commit5daa45c2fe093527d22baa34fd69e2f408e202f3 (patch)
tree20baccaf1d4c08f6da274c8df7eb70c783fef5b6 /util/ectool.c
parent660fb6a57022e0514c607633a5b0458aced026da (diff)
downloadchrome-ec-5daa45c2fe093527d22baa34fd69e2f408e202f3.tar.gz
Features: Add EXEC_IN_RAM
This patch adds execution-in-ram, opposite of XIP: execution-in-place (a.k.a. XIP) to the EC features. It can be currently implied by CONFIG_EXTERNAL_STORAGE. BUG=b:77306460 BRANCH=none TEST=Verify ectool prints EXEC_IN_RAM on Fizz. Change-Id: I4a7fb3b267864debe59fd211956371eceac57613 Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/995968 Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'util/ectool.c')
-rw-r--r--util/ectool.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/ectool.c b/util/ectool.c
index 83b263d74b..33c75ee17e 100644
--- a/util/ectool.c
+++ b/util/ectool.c
@@ -545,6 +545,7 @@ static const char * const ec_feature_names[] = {
[EC_FEATURE_DEVICE_EVENT] = "Device events reporting",
[EC_FEATURE_UNIFIED_WAKE_MASKS] = "Unified wake masks for LPC/eSPI",
[EC_FEATURE_HOST_EVENT64] = "64-bit host events",
+ [EC_FEATURE_EXEC_IN_RAM] = "Execute code in RAM",
};
int cmd_inventory(int argc, char *argv[])