summaryrefslogtreecommitdiff
path: root/board/wheelie/ec.tasklist
diff options
context:
space:
mode:
authorSean McAllister <smcallis@google.com>2020-07-21 14:05:49 +0000
committerSean McAllister <smcallis@google.com>2020-07-21 14:12:56 +0000
commit6c8555196b2ce1138125af9d03b9327fe4ad1969 (patch)
treee76cf1163066593b2ba8b96b19179ccb8ef1e4c8 /board/wheelie/ec.tasklist
parent4c12a3e2d97d320f985f16703120d21c71f72d59 (diff)
downloadchrome-ec-6c8555196b2ce1138125af9d03b9327fe4ad1969.tar.gz
Revert "wheelie: Remove it"
This reverts commit cedd3fba44d4352436d676e2eea50e9d94527b31. Reason for revert: Breaking CQ Original change's description: > wheelie: Remove it > > Wheelie is no more, therefore it's time to remove its files. :c > > BUG=None > BRANCH=None > TEST=`make -j buildall` > > Signed-off-by: Aseda Aboagye <aaboagye@google.com> > Change-Id: I89f52fb5e44ab49cc653a2cac23c8e444f05cb43 > Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2299847 > Reviewed-by: Aseda Aboagye <aaboagye@chromium.org> > Tested-by: Aseda Aboagye <aaboagye@chromium.org> > Commit-Queue: Diana Z <dzigterman@chromium.org> > Auto-Submit: Aseda Aboagye <aaboagye@chromium.org> Bug: None Change-Id: I22e8f15304b6bf67ddc768e2c25b1381df7082b9 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2309960 Reviewed-by: Sean McAllister <smcallis@google.com> Tested-by: Sean McAllister <smcallis@google.com>
Diffstat (limited to 'board/wheelie/ec.tasklist')
-rw-r--r--board/wheelie/ec.tasklist24
1 files changed, 24 insertions, 0 deletions
diff --git a/board/wheelie/ec.tasklist b/board/wheelie/ec.tasklist
new file mode 100644
index 0000000000..75181a4531
--- /dev/null
+++ b/board/wheelie/ec.tasklist
@@ -0,0 +1,24 @@
+/* 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(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, VENTI_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, 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)