summaryrefslogtreecommitdiff
path: root/board/cerise/ec.tasklist
diff options
context:
space:
mode:
authorAaron Zhang <zhangjianbo@huaqin.corp-partner.google.com>2020-07-15 19:54:58 +0800
committerCommit Bot <commit-bot@chromium.org>2020-07-21 09:41:15 +0000
commite489ebdacb60409cdb6d763cc858b9b8df3f8854 (patch)
tree630679a07ddf57e1bad6c5793cf6c201c990a35a /board/cerise/ec.tasklist
parenta557e434e3748d2febcf6de9acccfb8ec520289e (diff)
downloadchrome-ec-e489ebdacb60409cdb6d763cc858b9b8df3f8854.tar.gz
Jacuzzi: initial two new models cerise and stern of ec.
Copy from damu, which is a model from Jacuzzi. It will need to be revised later. BUG=b:161103367 BRANCH=master BOARD=cerise, stern TEST=1.make -j BOARD=cerise 2.make -j BOARD=stern Change-Id: I1058f0bf18ab05298467a3b6c77c53981028117d Signed-off-by: Aaron Zhang <zhangjianbo@huaqin.corp-partner.google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2299607 Reviewed-by: Simon Zhou <zhouguohui@huaqin.corp-partner.google.com> Reviewed-by: Ting Shen <phoenixshen@chromium.org> Reviewed-by: Hash.Hung <hongzhaoyou@huaqin.corp-partner.google.com>
Diffstat (limited to 'board/cerise/ec.tasklist')
-rw-r--r--board/cerise/ec.tasklist20
1 files changed, 20 insertions, 0 deletions
diff --git a/board/cerise/ec.tasklist b/board/cerise/ec.tasklist
new file mode 100644
index 0000000000..36be2e96a4
--- /dev/null
+++ b/board/cerise/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, 1024) \
+ 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, LARGER_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)