summaryrefslogtreecommitdiff
path: root/board/woomax/ec.tasklist
diff options
context:
space:
mode:
authorMichael5 Chen <michael5_chen1@pegatron.corp-partner.google.com>2020-06-12 18:10:42 +0800
committerCommit Bot <commit-bot@chromium.org>2020-06-30 01:36:53 +0000
commit7b8e3250134bff29a9b4d29254a9945a37309dbb (patch)
tree99dfc855e3582640357ca41d6cbbebf532b500e6 /board/woomax/ec.tasklist
parent840f7a5d09d1b4fcfb6f60606100ad6fa532989a (diff)
downloadchrome-ec-7b8e3250134bff29a9b4d29254a9945a37309dbb.tar.gz
woomax: Initial EC image
Create the initial EC image for the woomax variant by copying the trembyle reference board EC files into a new directory named for the variant. (Auto-Generated by create_initial_ec_image.sh version 1.0.3). dbrockus: Adjusted missing portions of the code to allow woomax to build. BUG=b:158692530 BRANCH=none TEST=make BOARD=woomax Signed-off-by: Michael5 Chen <michael5_chen1@pegatron.corp-partner.google.com> Change-Id: I35abb2a9358d24d1f20bcbc2caa216d36a89fce4 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2241085 Reviewed-by: Denis Brockus <dbrockus@chromium.org> Tested-by: Denis Brockus <dbrockus@chromium.org>
Diffstat (limited to 'board/woomax/ec.tasklist')
-rw-r--r--board/woomax/ec.tasklist25
1 files changed, 25 insertions, 0 deletions
diff --git a/board/woomax/ec.tasklist b/board/woomax/ec.tasklist
new file mode 100644
index 0000000000..2874dff927
--- /dev/null
+++ b/board/woomax/ec.tasklist
@@ -0,0 +1,25 @@
+/* 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, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P0, usb_charger_task, 0, TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P1, usb_charger_task, 1, 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(CHIPSET, chipset_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, 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, VENTI_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)