summaryrefslogtreecommitdiff
path: root/board/burnet/ec.tasklist
diff options
context:
space:
mode:
authorDevin Lu <Devin.Lu@quantatw.com>2020-07-27 16:03:26 +0800
committerCommit Bot <commit-bot@chromium.org>2020-07-27 15:56:24 +0000
commit0266bc078da4e159c30826c393e8ffd15d92ce86 (patch)
treeb5efe287fec0a489b1a9380de323d2a83451f56d /board/burnet/ec.tasklist
parente8dbee540080eb67200f4301fd78761015d0aea6 (diff)
downloadchrome-ec-0266bc078da4e159c30826c393e8ffd15d92ce86.tar.gz
burnet: Initial EC image
Create the initial EC image for the burnet variant by copying the kappa reference board EC files into a new directory named for the variant. (Auto-Generated by create_initial_ec_image.sh version 1.0.3). BUG=b:161768221 BRANCH=firmware-kukui-12573.B TEST=make BOARD=burnet Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Change-Id: I1f0f15093fff32bc22e68dca02acc5a238a2296e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2319498 Reviewed-by: Ting Shen <phoenixshen@chromium.org>
Diffstat (limited to 'board/burnet/ec.tasklist')
-rw-r--r--board/burnet/ec.tasklist20
1 files changed, 20 insertions, 0 deletions
diff --git a/board/burnet/ec.tasklist b/board/burnet/ec.tasklist
new file mode 100644
index 0000000000..c1330b86f8
--- /dev/null
+++ b/board/burnet/ec.tasklist
@@ -0,0 +1,20 @@
+/* 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, 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_RW(MOTIONSENSE, motion_sense_task, NULL, VENTI_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) \
+ TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, 1024) \
+ TASK_ALWAYS_RO(EMMC, emmc_task, NULL, LARGER_TASK_STACK_SIZE)