summaryrefslogtreecommitdiff
path: root/board/chronicler/ec.tasklist
diff options
context:
space:
mode:
authorSheng-Liang Pan <sheng-liang.pan@quanta.corp-partner.google.com>2021-05-07 18:47:46 +0800
committerCommit Bot <commit-bot@chromium.org>2021-05-10 15:35:54 +0000
commite7e768c08a09d09507a47d8e4127e7222d2241c8 (patch)
tree5adeaa8fa78c6dbae07d6c3c64f01f3bf11d48a1 /board/chronicler/ec.tasklist
parentec5ee30c8fed2d46c07bb915c5e8ca2bdb9b9dcb (diff)
downloadchrome-ec-e7e768c08a09d09507a47d8e4127e7222d2241c8.tar.gz
chronicler: Initial EC image
Create the initial EC image for the chronicler variant by copying the volteer reference board EC files into a new directory named for the variant. (Auto-Generated by create_initial_ec_image.sh version 1.5.0). BUG=b:187318819 BRANCH=None TEST=make BOARD=chronicler Signed-off-by: Sheng-Liang Pan <sheng-liang.pan@quanta.corp-partner.google.com> Change-Id: I489eb5a0a7563ec9a9a0f59f5c5f481f0fbf7943 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2878765 Reviewed-by: YH Lin <yueherngl@chromium.org> Reviewed-by: Keith Short <keithshort@chromium.org> Tested-by: Yu-An Chen <yu-an.chen@quanta.corp-partner.google.com> Commit-Queue: YH Lin <yueherngl@chromium.org>
Diffstat (limited to 'board/chronicler/ec.tasklist')
-rw-r--r--board/chronicler/ec.tasklist26
1 files changed, 26 insertions, 0 deletions
diff --git a/board/chronicler/ec.tasklist b/board/chronicler/ec.tasklist
new file mode 100644
index 0000000000..e76bd368eb
--- /dev/null
+++ b/board/chronicler/ec.tasklist
@@ -0,0 +1,26 @@
+/* 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, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHG_RAMP, chg_ramp_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P0, usb_charger_task, 0, TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P1, usb_charger_task, 0, TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHARGER, charger_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(POWERBTN, power_button_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C0, pd_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C1, pd_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_INT_C1, pd_interrupt_handler_task, 1, TASK_STACK_SIZE)