summaryrefslogtreecommitdiff
path: root/board/madoo/ec.tasklist
diff options
context:
space:
mode:
authorKo_Ko <Ko_Ko@compal.corp-partner.google.com>2020-07-16 17:16:30 +0800
committerCommit Bot <commit-bot@chromium.org>2020-07-18 11:47:22 +0000
commit1cdb7ae80f44b856a1f10c2430f9925bfb381555 (patch)
tree313ca71a0fbabb5d3573e196e575b2dde7460990 /board/madoo/ec.tasklist
parentc556adf8d3689299d4da24bdfa36d09e23f73843 (diff)
downloadchrome-ec-1cdb7ae80f44b856a1f10c2430f9925bfb381555.tar.gz
madoo: Initial EC image
Create the initial EC image for the madoo variant by copying the waddledoo reference board EC files into a new directory named for the variant. (Auto-Generated by create_initial_ec_image.sh version 1.0.3). BUG=None BRANCH=none TEST=make BOARD=madoo Signed-off-by: Ko_Ko <Ko_Ko@compal.corp-partner.google.com> Change-Id: If6bcd7af69f354973994e2e024c8c8b17d37433e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2301561 Reviewed-by: Diana Z <dzigterman@chromium.org> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org> Commit-Queue: Henry Sun <henrysun@google.com> Tested-by: Henry Sun <henrysun@google.com>
Diffstat (limited to 'board/madoo/ec.tasklist')
-rw-r--r--board/madoo/ec.tasklist25
1 files changed, 25 insertions, 0 deletions
diff --git a/board/madoo/ec.tasklist b/board/madoo/ec.tasklist
new file mode 100644
index 0000000000..0aba1fabeb
--- /dev/null
+++ b/board/madoo/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, 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(CONSOLE, console_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(POWERBTN, power_button_task, NULL, VENTI_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_C0, pd_interrupt_handler_task, 0, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_INT_C1, pd_interrupt_handler_task, 1, ULTRA_TASK_STACK_SIZE)