summaryrefslogtreecommitdiff
path: root/board/gumboz/ec.tasklist
diff options
context:
space:
mode:
authorZick Wei <zick.wei@quanta.corp-partner.google.com>2020-11-19 10:19:55 +0800
committerCommit Bot <commit-bot@chromium.org>2020-11-20 03:13:44 +0000
commitf51a5ebbd7cb6f84311b9c4f5c893861ad53b45e (patch)
tree28754d01cc30d3240e687eaafdc764901dbdb344 /board/gumboz/ec.tasklist
parent9247f46d701541811ca9bc4fb0488ba132c8a337 (diff)
downloadchrome-ec-f51a5ebbd7cb6f84311b9c4f5c893861ad53b45e.tar.gz
gumboz: Initial EC image
Create the initial EC image for the gumboz variant by copying the dirinboz reference board EC files into a new directory named for the variant. (Auto-Generated by create_initial_ec_image.sh version 1.2.0). BUG=b:173536689 BRANCH=none TEST=make BOARD=gumboz Signed-off-by: Zick Wei <zick.wei@quanta.corp-partner.google.com> Change-Id: I3cdbcac1d7447b17048888f491e1632d738fc2d1 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2547609 Reviewed-by: Denis Brockus <dbrockus@chromium.org> Reviewed-by: Peter Marheine <pmarheine@chromium.org>
Diffstat (limited to 'board/gumboz/ec.tasklist')
-rw-r--r--board/gumboz/ec.tasklist26
1 files changed, 26 insertions, 0 deletions
diff --git a/board/gumboz/ec.tasklist b/board/gumboz/ec.tasklist
new file mode 100644
index 0000000000..d9c1606eb2
--- /dev/null
+++ b/board/gumboz/ec.tasklist
@@ -0,0 +1,26 @@
+/* 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(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, 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)