summaryrefslogtreecommitdiff
path: root/board/wormdingler/ec.tasklist
diff options
context:
space:
mode:
authorSiyu Qin <qinsiyu@huaqin.corp-partner.google.com>2021-08-16 10:43:46 +0800
committerCommit Bot <commit-bot@chromium.org>2021-08-19 18:01:30 +0000
commitb6df95c03b050c464b66991c945071b28682083d (patch)
tree3c8a6722fc817558dcaa96dfdc556264f7364ce3 /board/wormdingler/ec.tasklist
parent7876375707a7bc59d298a88e1b0dac55610d6d1e (diff)
downloadchrome-ec-b6df95c03b050c464b66991c945071b28682083d.tar.gz
wormdingler: Initial EC image
Create the initial EC image for the wormdingler variant by copying the homestar reference board EC files into a new directory named for the variant. BUG=b:196748140 BRANCH=trogdor TEST=make BOARD=wormdingler Verify build and powered on homestar board Signed-off-by: Siyu Qin <qinsiyu@huaqin.corp-partner.google.com> Change-Id: I3afdff08d1a7683cdc057dff87ee022dc6633266 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3096811 Reviewed-by: Bob Moragues <moragues@chromium.org> Reviewed-by: Wai-Hong Tam <waihong@google.com> Commit-Queue: Wai-Hong Tam <waihong@google.com>
Diffstat (limited to 'board/wormdingler/ec.tasklist')
-rw-r--r--board/wormdingler/ec.tasklist22
1 files changed, 22 insertions, 0 deletions
diff --git a/board/wormdingler/ec.tasklist b/board/wormdingler/ec.tasklist
new file mode 100644
index 0000000000..ea2aaa97f5
--- /dev/null
+++ b/board/wormdingler/ec.tasklist
@@ -0,0 +1,22 @@
+/* Copyright 2021 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, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P0, usb_charger_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P1, usb_charger_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHARGER, charger_task, NULL, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C0, pd_task, NULL, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C1, pd_task, NULL, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_INT_C1, pd_interrupt_handler_task, 1, ULTRA_TASK_STACK_SIZE)