summaryrefslogtreecommitdiff
path: root/board/goroh/ec.tasklist
diff options
context:
space:
mode:
authorEric Yilun Lin <yllin@chromium.org>2021-04-20 15:32:37 +0800
committerCommit Bot <commit-bot@chromium.org>2021-04-21 03:55:47 +0000
commit1eb4fcc824a54ab9b1f538fb8c4e97e6add89933 (patch)
tree12be5eaf0c00a797345077562d60e678afc3b324 /board/goroh/ec.tasklist
parentad7fc27d908a310f548fb7ab111a10876770ebbe (diff)
downloadchrome-ec-1eb4fcc824a54ab9b1f538fb8c4e97e6add89933.tar.gz
goroh: initial commit
copied from asurada with proper fixes: 1. rename asurada/hayato to goroh 2. change the year to 2021 in copyright notice BUG=b:185846337 TEST=make BOARD=goroh BRANCH=none Change-Id: Ifd66e5b16c5dd463dd9ad215f25a7a1ea1265495 Signed-off-by: Eric Yilun Lin <yllin@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2839384 Tested-by: Eric Yilun Lin <yllin@google.com> Auto-Submit: Eric Yilun Lin <yllin@google.com> Reviewed-by: Ting Shen <phoenixshen@chromium.org> Commit-Queue: Ting Shen <phoenixshen@chromium.org>
Diffstat (limited to 'board/goroh/ec.tasklist')
-rw-r--r--board/goroh/ec.tasklist22
1 files changed, 22 insertions, 0 deletions
diff --git a/board/goroh/ec.tasklist b/board/goroh/ec.tasklist
new file mode 100644
index 0000000000..75dbb1a828
--- /dev/null
+++ b/board/goroh/ec.tasklist
@@ -0,0 +1,22 @@
+/* Copyright 2021 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_NOTEST(CHIPSET, chipset_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHARGER, charger_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P0, usb_charger_task, 0, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P1, usb_charger_task, 1, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_NOTEST(PDCMD, pd_command_task, NULL, 1024) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, 1024) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C0, pd_task, NULL, 1280) \
+ TASK_ALWAYS(PD_C1, pd_task, NULL, 1280) \
+