summaryrefslogtreecommitdiff
path: root/board/kappa/ec.tasklist
diff options
context:
space:
mode:
authorDevin Lu <devin.lu@quantatw.com>2019-11-13 13:46:26 +0800
committerCommit Bot <commit-bot@chromium.org>2019-11-13 09:50:27 +0000
commita49c836634c169e408e9286ec8c741c98a11ae3e (patch)
tree1033228f9e45c5b480b0b4217e8c83521d902061 /board/kappa/ec.tasklist
parent0acb1f206fe19ff9ca17a5750e66dc790917a0ce (diff)
downloadchrome-ec-a49c836634c169e408e9286ec8c741c98a11ae3e.tar.gz
kappa: remove symbolic link from jaccuzi
Copy jaccuzi for kappa EC image. Below CLs will come after this CL merged. 1. Battery configration. 2. Implement leds. BUG=b:144388520 BRANCH=none TEST=make BOARD=kappa Change-Id: Ica52cc6ddaf5d7bc6c94a11525584edad0258c00 Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1913943 Reviewed-by: Ting Shen <phoenixshen@chromium.org>
Diffstat (limited to 'board/kappa/ec.tasklist')
-rw-r--r--board/kappa/ec.tasklist20
1 files changed, 20 insertions, 0 deletions
diff --git a/board/kappa/ec.tasklist b/board/kappa/ec.tasklist
new file mode 100644
index 0000000000..f4fb8670ea
--- /dev/null
+++ b/board/kappa/ec.tasklist
@@ -0,0 +1,20 @@
+/* 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.
+ */
+
+/**
+ * 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(CHARGER, charger_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(USB_CHG_P0, usb_charger_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS_RW(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_ALWAYS(PD_C0, pd_task, NULL, 1280) \
+ TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, 1024) \
+ TASK_ALWAYS_RO(EMMC, emmc_task, NULL, LARGER_TASK_STACK_SIZE)