summaryrefslogtreecommitdiff
path: root/board/bobba/ec.tasklist
diff options
context:
space:
mode:
authorJustin TerAvest <teravest@chromium.org>2018-06-29 14:58:48 -0600
committerchrome-bot <chrome-bot@chromium.org>2018-07-02 15:32:46 -0700
commita2ef0dabfcec633d92d40a817b31dd167246bc3c (patch)
tree561a518a8c5411d57d5f65bffcd8b1fa3570249b /board/bobba/ec.tasklist
parent90e5f21c4e104aa7861875dd4b66f2828a578fbb (diff)
downloadchrome-ec-a2ef0dabfcec633d92d40a817b31dd167246bc3c.tar.gz
bobba: initial files commit
The contents of Bobba are copied from yorp, with the exception of board.c and gpio.inc, which were modified to always use V1 settings. Bobba proto is equivalent to yorp proto2. BRANCH=none BUG=b:110781720 TEST=build Change-Id: I10937ef6eb8b20fc5e58c3871c679fc80bdcca70 Signed-off-by: Justin TerAvest <teravest@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1121110 Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'board/bobba/ec.tasklist')
-rw-r--r--board/bobba/ec.tasklist37
1 files changed, 37 insertions, 0 deletions
diff --git a/board/bobba/ec.tasklist b/board/bobba/ec.tasklist
new file mode 100644
index 0000000000..dc260ef0fe
--- /dev/null
+++ b/board/bobba/ec.tasklist
@@ -0,0 +1,37 @@
+/* Copyright 2018 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.
+ */
+
+/*
+ * List of enabled tasks in the priority order
+ *
+ * The first one has the lowest priority.
+ *
+ * For each task, use the macro TASK_ALWAYS(n, r, d, s) for base tasks and
+ * TASK_NOTEST(n, r, d, s) for tasks that can be excluded in test binaries,
+ * where :
+ * 'n' in the name of the task
+ * 'r' in the main routine of the task
+ * 'd' in an opaque parameter passed to the routine at startup
+ * 's' is the stack size in bytes; must be a multiple of 8
+ *
+ * For USB PD tasks, IDs must be in consecutive order and correspond to
+ * the port which they are for. See TASK_ID_TO_PD_PORT() macro.
+ */
+
+#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, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
+ TASK_NOTEST(PDCMD, pd_command_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, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C0, pd_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C1, pd_task, NULL, LARGER_TASK_STACK_SIZE)