summaryrefslogtreecommitdiff
path: root/board/hatch/ec.tasklist
diff options
context:
space:
mode:
authorScott Collyer <scollyer@google.com>2018-12-19 15:09:19 -0800
committerchrome-bot <chrome-bot@chromium.org>2019-01-24 00:51:30 -0800
commit5bf596811ea13bced755bf7bc999cb994547d782 (patch)
tree1e584b373cae9ed61a7dfbda1788ede823111373 /board/hatch/ec.tasklist
parent1e412f17f0d9753bc7b135967016f6e2c66c7f1f (diff)
downloadchrome-ec-5bf596811ea13bced755bf7bc999cb994547d782.tar.gz
hatch: Add support for power sequencing
This CL adds config options, board specific functions and GPIO signals required to add power sequencing support. BRANCH=none BUG=b:122251649 TEST=make buildall, verified at factory that AP reaches S0 Change-Id: I5c7e8331b0f46a830b6e0f6722e7b05ba05212cb Signed-off-by: Scott Collyer <scollyer@google.com> Reviewed-on: https://chromium-review.googlesource.com/1377571 Commit-Ready: Scott Collyer <scollyer@chromium.org> Tested-by: Scott Collyer <scollyer@chromium.org> Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'board/hatch/ec.tasklist')
-rw-r--r--board/hatch/ec.tasklist2
1 files changed, 2 insertions, 0 deletions
diff --git a/board/hatch/ec.tasklist b/board/hatch/ec.tasklist
index f3453d6398..87742e79b8 100644
--- a/board/hatch/ec.tasklist
+++ b/board/hatch/ec.tasklist
@@ -22,7 +22,9 @@
#define CONFIG_TASK_LIST \
TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(POWERBTN, power_button_task, NULL, LARGER_TASK_STACK_SIZE) \