summaryrefslogtreecommitdiff
path: root/include/ec_commands.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2012-08-15 14:16:22 -0700
committerGerrit <chrome-bot@google.com>2012-08-16 12:44:03 -0700
commit8c44bd4932a22e6e7d49a29028bcd0e62f13ddc5 (patch)
tree149d5f9a467f644fc783b9f97c4ecb351e85e472 /include/ec_commands.h
parent0ecfe96c7e6473bbf40f868f014e5aaec96e81d7 (diff)
downloadchrome-ec-8c44bd4932a22e6e7d49a29028bcd0e62f13ddc5.tar.gz
Add new EC_RES_IN_PROGRESS result code
Some commands take a long time. For interfaces which are not synchronous the host wants an immediate response to know that the command is in progress. Provide this new result code, and set LPC to ignore it. BUG=chrome-os-partner:12685 BRANCH=snow,link TEST=manual build and boot to kernel on snow Change-Id: If801c21e6cf96746858dfa64f6ce1f1631d3e6e5 Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/30469 Reviewed-by: Randall Spangler <rspangler@chromium.org> Reviewed-by: David Hendricks <dhendrix@chromium.org>
Diffstat (limited to 'include/ec_commands.h')
-rw-r--r--include/ec_commands.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ec_commands.h b/include/ec_commands.h
index c1b19bcf1a..66c5a1d04f 100644
--- a/include/ec_commands.h
+++ b/include/ec_commands.h
@@ -186,6 +186,7 @@ enum ec_status {
EC_RES_INVALID_RESPONSE = 5,
EC_RES_INVALID_VERSION = 6,
EC_RES_INVALID_CHECKSUM = 7,
+ EC_RES_IN_PROGRESS = 8, /* Accepted, command in progress */
};
/*