summaryrefslogtreecommitdiff
path: root/board/goroh
diff options
context:
space:
mode:
authorEric Yilun Lin <yllin@chromium.org>2021-07-23 13:45:08 +0800
committerCommit Bot <commit-bot@chromium.org>2021-11-05 11:27:45 +0000
commitc67207d69c55ee83b1c7d3d582bf3fe26808e1a0 (patch)
treea3130f8f2f759a29494517fb7c8d30840870b28b /board/goroh
parent9f1708bf8a1f691e318499cf95cb980f8a409145 (diff)
downloadchrome-ec-c67207d69c55ee83b1c7d3d582bf3fe26808e1a0.tar.gz
goroh: enable falconlite power sequence
BUG=b:185846337 TEST=Tried the following cases: * Cold reset: $ dut-control cold_reset:on sleep:0.2 cold_reset:off Result: G3 -> S0 * Long power press to shutdown: $ dut-control pwr_button:press sleep:8.2 pwr_button:release Result: S0 -> S5 -> G3 * Long power press to power-on but then shutdown: $ dut-control pwr_button:press sleep:8.2 pwr_button:release Result: G3 -> S0 -> S5 -> G3 * Short power press to power-on: $ dut-control pwr_button:press sleep:0.2 pwr_button:release Result: G3 -> S0 * Console command: apreset Result: S0, AP reboots * Console command: apshutdown Result: S0 -> S5 -> G3 * Lid open to power-on: $ dut-control lid_open:no sleep:0.2 lid_open:yes Result: G3 -> S0 BRANCH=main Change-Id: Iafd8304b719b53e4622439596ecff7e7eb69fa95 Signed-off-by: Eric Yilun Lin <yllin@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3045437 Reviewed-by: Ting Shen <phoenixshen@chromium.org> Commit-Queue: Eric Yilun Lin <yllin@google.com> Tested-by: Eric Yilun Lin <yllin@google.com>
Diffstat (limited to 'board/goroh')
-rw-r--r--board/goroh/ec.tasklist1
1 files changed, 1 insertions, 0 deletions
diff --git a/board/goroh/ec.tasklist b/board/goroh/ec.tasklist
index 9442028b1e..6bc80781d8 100644
--- a/board/goroh/ec.tasklist
+++ b/board/goroh/ec.tasklist
@@ -10,6 +10,7 @@
TASK_ALWAYS(HOOKS, hook_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(CHARGER, charger_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHIPSET, chipset_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) \