summaryrefslogtreecommitdiff
path: root/board/baklava/ec.tasklist
diff options
context:
space:
mode:
authorScott Collyer <scollyer@google.com>2021-04-05 19:02:03 -0700
committerCommit Bot <commit-bot@chromium.org>2021-04-12 16:21:07 +0000
commitee47fdb52a18fff8d34ebb372c076787017e0476 (patch)
tree0e6bba6c7246fff110a029308b614d917eac33d4 /board/baklava/ec.tasklist
parent190e9c6154bfdfe7290c0e93733384439c32923e (diff)
downloadchrome-ec-ee47fdb52a18fff8d34ebb372c076787017e0476.tar.gz
baklava: Starting image (quiche copy)
This CL is the starting image for baklava which is a quiche varaint. The only changes made are updating the year and board name. The follow on CL contains changes relative to quiche. BUG=b:184595837 BRANCH=quiche TEST=make -j BOARD=baklava Signed-off-by: Scott Collyer <scollyer@google.com> Change-Id: I62f1b6cd710f272833a97f50dc7fe7e1ac27b85e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2806185 Tested-by: Scott Collyer <scollyer@chromium.org> Reviewed-by: Diana Z <dzigterman@chromium.org> Commit-Queue: Diana Z <dzigterman@chromium.org>
Diffstat (limited to 'board/baklava/ec.tasklist')
-rw-r--r--board/baklava/ec.tasklist18
1 files changed, 18 insertions, 0 deletions
diff --git a/board/baklava/ec.tasklist b/board/baklava/ec.tasklist
new file mode 100644
index 0000000000..cbdadb4f19
--- /dev/null
+++ b/board/baklava/ec.tasklist
@@ -0,0 +1,18 @@
+/* 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_RO(RWSIG, rwsig_task, NULL, 1280) \
+ TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS_RW(POWER_BUTTON, power_button_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS_RW(PD_C0, pd_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS_RW(PD_C1, pd_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS_RW(PD_INT_C1, pd_interrupt_handler_task, 1, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS_RW(UCPD, ucpd_task, 0, LARGER_TASK_STACK_SIZE)