summaryrefslogtreecommitdiff
path: root/board/pico/ec.tasklist
diff options
context:
space:
mode:
authorSue Chen <sue.chen@quanta.corp-partner.google.com>2021-07-28 17:11:52 +0800
committerCommit Bot <commit-bot@chromium.org>2021-07-29 10:25:28 +0000
commit7d4846d48e4625d3556f27d7419d2358da2b64a5 (patch)
treec7c9c0faf4386f17dcdb87168ba80a72971dbe57 /board/pico/ec.tasklist
parent966c2a9fd8e24807f49235d02a88ad34106e0145 (diff)
downloadchrome-ec-7d4846d48e4625d3556f27d7419d2358da2b64a5.tar.gz
Pico: Initial EC image
Create the initial EC image for the pico variant by copying the icarus reference board EC files into a new directory named for the variant. BUG=none BRANCH=icarus TEST=make BOARD=pico Signed-off-by: Sue Chen <sue.chen@quanta.corp-partner.google.com> Change-Id: I0eeae3e76b1cfabd0be54d1b29c9af7fac1238c2 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3058159 Reviewed-by: Ting Shen <phoenixshen@chromium.org>
Diffstat (limited to 'board/pico/ec.tasklist')
-rw-r--r--board/pico/ec.tasklist17
1 files changed, 17 insertions, 0 deletions
diff --git a/board/pico/ec.tasklist b/board/pico/ec.tasklist
new file mode 100644
index 0000000000..e8ad538bc2
--- /dev/null
+++ b/board/pico/ec.tasklist
@@ -0,0 +1,17 @@
+/* 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, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHARGER, charger_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P0, usb_charger_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, 1024) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C0, pd_task, NULL, 1280)