summaryrefslogtreecommitdiff
path: root/include/ec_commands.h
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2012-07-10 16:48:19 -0700
committerGerrit <chrome-bot@google.com>2012-07-10 21:52:07 -0700
commit29332907d401aec3485e793ba505cd0c3f402dd1 (patch)
treec03f71a2abddca7ee58150e48518f61c3b196df7 /include/ec_commands.h
parentf2400b869e9ffeeb1fd4e5a1def584ccc64e7313 (diff)
downloadchrome-ec-29332907d401aec3485e793ba505cd0c3f402dd1.tar.gz
Host command interface has only one slot now
Now that ACPI events are handled directly in the LPC interrupt handler, we can simplify the host event code. BUG=chrome-os-partner:11240 TEST=boot system; should boot close lid; should send SMI and suspend system Change-Id: I8c73ea31a66e94310e4460a008635a103220413e Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/27100 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Diffstat (limited to 'include/ec_commands.h')
-rw-r--r--include/ec_commands.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/ec_commands.h b/include/ec_commands.h
index 812a537ab7..653712106b 100644
--- a/include/ec_commands.h
+++ b/include/ec_commands.h
@@ -31,13 +31,12 @@
#define EC_PROTO_VERSION 0x00000002
/* I/O addresses for LPC commands */
-#define EC_LPC_ADDR_KERNEL_DATA 0x62
-#define EC_LPC_ADDR_KERNEL_CMD 0x66
-#define EC_LPC_ADDR_KERNEL_PARAM 0x800
-#define EC_LPC_ADDR_USER_DATA 0x200
-#define EC_LPC_ADDR_USER_CMD 0x204
-#define EC_LPC_ADDR_USER_PARAM 0x880
-#define EC_PARAM_SIZE 128 /* Size of each param area in bytes */
+#define EC_LPC_ADDR_ACPI_DATA 0x62
+#define EC_LPC_ADDR_ACPI_CMD 0x66
+#define EC_LPC_ADDR_USER_DATA 0x200
+#define EC_LPC_ADDR_USER_CMD 0x204
+#define EC_LPC_ADDR_USER_PARAM 0x880
+#define EC_PARAM_SIZE 128 /* Size of param area in bytes */
/* EC command register bit functions */
#define EC_LPC_CMDR_DATA (1 << 0)