summaryrefslogtreecommitdiff
path: root/board/rammus/ec.tasklist
diff options
context:
space:
mode:
authorZhuohao Lee <zhuohao@chromium.org>2018-07-24 22:44:01 +0800
committerchrome-bot <chrome-bot@chromium.org>2018-07-26 04:07:45 -0700
commita59038668c9bde21225563c8cd994dc961d15128 (patch)
treec22414dc56f60ef84b26c421d0f8e819a0ec906a /board/rammus/ec.tasklist
parent1542c8c5b9c7f934edc9ce7a6e42b09986e6a54f (diff)
downloadchrome-ec-a59038668c9bde21225563c8cd994dc961d15128.tar.gz
rammus: initial setup for ec
The initial files are copied from nautilus and will be revised later. BUG=b:111579280 BRANCH=master TEST=emerge-rammus chromeos-ec Change-Id: Ic1312716ca0b2200ec2d396f9e1e8c1bbe226904 Signed-off-by: Zhuohao Lee <zhuohao@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1149771 Reviewed-by: Furquan Shaikh <furquan@chromium.org>
Diffstat (limited to 'board/rammus/ec.tasklist')
-rw-r--r--board/rammus/ec.tasklist37
1 files changed, 37 insertions, 0 deletions
diff --git a/board/rammus/ec.tasklist b/board/rammus/ec.tasklist
new file mode 100644
index 0000000000..8afac3eebb
--- /dev/null
+++ b/board/rammus/ec.tasklist
@@ -0,0 +1,37 @@
+/* Copyright 2017 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, 800) \
+ TASK_ALWAYS(USB_CHG_P0, usb_charger_task, NULL, 720) \
+ TASK_ALWAYS(USB_CHG_P1, usb_charger_task, NULL, 720) \
+ TASK_ALWAYS(CHARGER, charger_task, NULL, 800) \
+ TASK_ALWAYS(MOTIONSENSE, motion_sense_task, NULL, 768) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, 800) \
+ TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, 600) \
+ TASK_NOTEST(PDCMD, pd_command_task, NULL, 800) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, 840) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, 880) \
+ TASK_ALWAYS(POWERBTN, power_button_task, NULL, 800) \
+ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, 600) \
+ TASK_ALWAYS(PD_C0, pd_task, NULL, 1000) \
+ TASK_ALWAYS(PD_C1, pd_task, NULL, 1000)