summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyungwoo Yang <hyungwoo.yang@intel.com>2018-10-14 21:19:22 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-01-01 06:27:49 -0800
commit3dceabb07dc76191ca56d97ee3941a1a84d0a27a (patch)
tree46e9cdd8bdbc678c09dc8bed7e3f78330be85d5a
parent860fe2962d40ee901369d1dc67f4aa7a7a42ba4d (diff)
downloadchrome-ec-3dceabb07dc76191ca56d97ee3941a1a84d0a27a.tar.gz
ISH: IPC: enable IPC for HECI
enable IPC for HECI BUG=b:79676054 BRANCH=none TEST=Tested on Atlas board. CQ-DEPEND=CL:1279363 Change-Id: I98568b537b4b812e97c22dff610e1147ed12701d Reviewed-on: https://chromium-review.googlesource.com/1279311 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>
-rw-r--r--board/atlas_ish/board.h2
-rw-r--r--board/atlas_ish/ec.tasklist3
2 files changed, 4 insertions, 1 deletions
diff --git a/board/atlas_ish/board.h b/board/atlas_ish/board.h
index ef36e28753..0b2b00cd55 100644
--- a/board/atlas_ish/board.h
+++ b/board/atlas_ish/board.h
@@ -31,6 +31,8 @@
#define CONFIG_I2C
#define CONFIG_I2C_MASTER
+/* ISH IPC */
+#define CONFIG_ISH_IPC
/* 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 f384af4d8b..943b55f532 100644
--- a/board/atlas_ish/ec.tasklist
+++ b/board/atlas_ish/ec.tasklist
@@ -19,4 +19,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(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(IPC_MNG, ipc_mng_task, NULL, LARGER_TASK_STACK_SIZE)