summaryrefslogtreecommitdiff
path: root/board/dooly/ec.tasklist
diff options
context:
space:
mode:
authorAndrew McRae <amcrae@google.com>2020-09-09 13:08:52 +1000
committerCommit Bot <commit-bot@chromium.org>2020-09-09 09:02:36 +0000
commit2b13ce09df4ec9b93e2c6e86335ad06ffa479c30 (patch)
treeaff1b013a3acaed76f54bd473c71d25b9168b3c0 /board/dooly/ec.tasklist
parentdf782a4336afde1d53b9f4bfa8d97a526c264c0a (diff)
downloadchrome-ec-2b13ce09df4ec9b93e2c6e86335ad06ffa479c30.tar.gz
Dooly: Initial commit (puff variant)
Initial commit of Dooly EC image. Copy from Puff. BUG=b:164921469 TEST=buildall BRANCH=none Signed-off-by: Andrew McRae <amcrae@google.com> Change-Id: I18ddec3fe3cb7aaa43ded2091fc120555ef9019f Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2397939 Reviewed-by: Peter Marheine <pmarheine@chromium.org> Tested-by: Andrew McRae <amcrae@chromium.org> Commit-Queue: Andrew McRae <amcrae@chromium.org>
Diffstat (limited to 'board/dooly/ec.tasklist')
-rw-r--r--board/dooly/ec.tasklist17
1 files changed, 17 insertions, 0 deletions
diff --git a/board/dooly/ec.tasklist b/board/dooly/ec.tasklist
new file mode 100644
index 0000000000..f820cf903c
--- /dev/null
+++ b/board/dooly/ec.tasklist
@@ -0,0 +1,17 @@
+/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/*
+ * See CONFIG_TASK_LIST in config.h for details.
+ */
+
+#define CONFIG_TASK_LIST \
+ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, 2048) \
+ TASK_ALWAYS(POWERBTN, power_button_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C0, pd_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, TASK_STACK_SIZE)