summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyungwoo Yang <hyungwoo.yang@intel.com>2018-10-14 21:42:04 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2019-01-02 03:23:56 +0000
commit6b1c03ea570f2abbc4f0ba5a5f875ce1c2ea7f3b (patch)
tree753c4c6fae915f8226c2ecacdab827019b735e68
parent4745d4ec9299b28a5be4dde3ba271d7288060b76 (diff)
downloadchrome-ec-6b1c03ea570f2abbc4f0ba5a5f875ce1c2ea7f3b.tar.gz
ISH: HECI: enable HECI
enable HECI. BUG=b:79676054 BRANCH=none TEST=Tested on Atlas board. CQ-DEPEND=CL:1279432 Change-Id: I3184f822e5ad026164b86efbd4b6dabf1102db86 Reviewed-on: https://chromium-review.googlesource.com/1279313 Commit-Ready: Hyungwoo Yang <hyungwoo.yang@intel.com> Tested-by: Hyungwoo Yang <hyungwoo.yang@intel.com> Reviewed-by: Hyungwoo Yang <hyungwoo.yang@intel.com> Reviewed-by: Jett Rink <jettrink@chromium.org> (cherry picked from commit 1c9d56efdaa9d9b10df27a5c488c007e710f3544) Reviewed-on: https://chromium-review.googlesource.com/c/1392414 Reviewed-by: Caveh Jalali <caveh@google.com> Commit-Queue: Caveh Jalali <caveh@google.com> Tested-by: Caveh Jalali <caveh@google.com>
-rw-r--r--board/atlas_ish/board.h2
-rw-r--r--board/atlas_ish/ec.tasklist1
2 files changed, 3 insertions, 0 deletions
diff --git a/board/atlas_ish/board.h b/board/atlas_ish/board.h
index 0b2b00cd55..90efda131a 100644
--- a/board/atlas_ish/board.h
+++ b/board/atlas_ish/board.h
@@ -33,6 +33,8 @@
/* ISH IPC */
#define CONFIG_ISH_IPC
+/* HECI */
+#define CONFIG_HECI
/* I2C ports */
#define I2C_PORT_TP ISH_I2C0
#define GPIO_I2C_PORT_TP_SCL GPIO_ISH_I2C0_SCL
diff --git a/board/atlas_ish/ec.tasklist b/board/atlas_ish/ec.tasklist
index 943b55f532..4fa8b59582 100644
--- a/board/atlas_ish/ec.tasklist
+++ b/board/atlas_ish/ec.tasklist
@@ -20,4 +20,5 @@
#define CONFIG_TASK_LIST \
TASK_ALWAYS(HOOKS, hook_task, NULL, HUGE_TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(HECI_RX, heci_rx_task, NULL, HUGE_TASK_STACK_SIZE) \
TASK_ALWAYS(IPC_MNG, ipc_mng_task, NULL, LARGER_TASK_STACK_SIZE)