summaryrefslogtreecommitdiff
path: root/board/jacuzzi/ec.tasklist
diff options
context:
space:
mode:
authorTing Shen <phoenixshen@google.com>2019-07-24 16:26:00 +0800
committerCommit Bot <commit-bot@chromium.org>2019-07-31 18:56:56 +0000
commit74340f2dbe5ededa6cd466d32a727c7df977b956 (patch)
tree92a1a3783b9df587f5a47fad7766c2285e54a087 /board/jacuzzi/ec.tasklist
parent3e1c72ea23fe3c37f5a4e4e8bceea38c0322ba31 (diff)
downloadchrome-ec-74340f2dbe5ededa6cd466d32a727c7df977b956.tar.gz
jacuzzi: bringup ec
Initial version of jacuzzi ec. The files are basically copied from board/kukui/, battery and charger configured to the correct i2c port and component, and pogo / sensor removed. BUG=b:135895590 TEST=verify that this is bootable on a Jacuzzi, charger and battery looks good, and no error message spamming on ec console. BRANCH=master Change-Id: Ia786076c08019dd2aa1711a68ff1c82cc7fa45ed Signed-off-by: Ting Shen <phoenixshen@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1673955 Tested-by: Ting Shen <phoenixshen@chromium.org> Commit-Queue: Alexandru M Stan <amstan@chromium.org> Reviewed-by: Alexandru M Stan <amstan@chromium.org>
Diffstat (limited to 'board/jacuzzi/ec.tasklist')
-rw-r--r--board/jacuzzi/ec.tasklist20
1 files changed, 20 insertions, 0 deletions
diff --git a/board/jacuzzi/ec.tasklist b/board/jacuzzi/ec.tasklist
new file mode 100644
index 0000000000..f4fb8670ea
--- /dev/null
+++ b/board/jacuzzi/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)