summaryrefslogtreecommitdiff
path: root/board/pirika/ec.tasklist
diff options
context:
space:
mode:
authorkirk_wang <kirk_wang@pegatron.corp-partner.google.com>2021-04-22 15:05:22 +0800
committerCommit Bot <commit-bot@chromium.org>2021-04-27 09:35:06 +0000
commit659d2936bf921dddb9543a105e76fffd3ff2a22b (patch)
tree97907ef4ff2d2a411ef9444cdaa453ac3c2408df /board/pirika/ec.tasklist
parent33aabcfa90d3d35e7f1365928609c544b47e8d28 (diff)
downloadchrome-ec-659d2936bf921dddb9543a105e76fffd3ff2a22b.tar.gz
pirika: Initial EC image
Create the initial EC image for the pirika 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:184157747 BRANCH=None TEST=make BOARD=pirika Signed-off-by: kirk_wang <kirk_wang@pegatron.corp-partner.google.com> Change-Id: I73effcc0a0d71ecedded37057854c7486c7b2463 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2847670 Reviewed-by: Shou-Chieh Hsu <shouchieh@chromium.org> Commit-Queue: Shou-Chieh Hsu <shouchieh@chromium.org>
Diffstat (limited to 'board/pirika/ec.tasklist')
-rw-r--r--board/pirika/ec.tasklist24
1 files changed, 24 insertions, 0 deletions
diff --git a/board/pirika/ec.tasklist b/board/pirika/ec.tasklist
new file mode 100644
index 0000000000..5c9a2d1a01
--- /dev/null
+++ b/board/pirika/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, TRENTA_TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, LARGER_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, ULTRA_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, ULTRA_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)