summaryrefslogtreecommitdiff
path: root/board/sasukette/ec.tasklist
diff options
context:
space:
mode:
authorTao Xia <xiatao5@huaqin.corp-partner.google.com>2021-01-14 11:29:44 +0800
committerCommit Bot <commit-bot@chromium.org>2021-01-20 15:58:45 +0000
commitd356bcf613a0a05006d41556c6c7a523f7df526f (patch)
tree9ddf53e4fcae20c5eaa89b7b9f07be6bfd41d55b /board/sasukette/ec.tasklist
parentb2c274f2ddece5c41912621b74d31fdc8384c8f8 (diff)
downloadchrome-ec-d356bcf613a0a05006d41556c6c7a523f7df526f.tar.gz
sasukette: Initial EC image
Create the initial EC image for the sasukette variant by copying the waddledee 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:175848514 BRANCH=None TEST=make BOARD=sasukette Signed-off-by: Tao Xia <xiatao5@huaqin.corp-partner.google.com> Change-Id: Ie73f45553f6ca7d16ca7818047370e6f78801c3f Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2627541 Reviewed-by: Weimin Wu <wuweimin@huaqin.corp-partner.google.com> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org> Reviewed-by: Mike Lee <mike5@huaqin.corp-partner.google.com> Tested-by: Mike Lee <mike5@huaqin.corp-partner.google.com> Commit-Queue: Henry Sun <henrysun@google.com>
Diffstat (limited to 'board/sasukette/ec.tasklist')
-rw-r--r--board/sasukette/ec.tasklist24
1 files changed, 24 insertions, 0 deletions
diff --git a/board/sasukette/ec.tasklist b/board/sasukette/ec.tasklist
new file mode 100644
index 0000000000..7a51262cf2
--- /dev/null
+++ b/board/sasukette/ec.tasklist
@@ -0,0 +1,24 @@
+/* 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(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P0, usb_charger_task, 0, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P1, usb_charger_task, 1, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHARGER, charger_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, VENTI_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, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C1, pd_task, NULL, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_INT_C1, pd_interrupt_handler_task, 1, ULTRA_TASK_STACK_SIZE)