summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormike <mike5@huaqin.corp-partner.google.com>2022-04-29 23:46:41 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-04-29 17:23:13 +0000
commita588afd712c638e75df5c0b5b90d860d9f8a55c6 (patch)
treec6e1d30892f19c8cd0f44e4da4ac83a4155d4c98
parentb4bb00f5cc0dc1d21f05ac5f0022208dac42d303 (diff)
downloadchrome-ec-a588afd712c638e75df5c0b5b90d860d9f8a55c6.tar.gz
Storo: Increase pd_task stack size
Stack of pd_task may be overflow during some FAFT test, enlarge the stack size to avoid system boot. BUG=b:230833524 BRANCH=dedede TEST=test firmware_FwScreenCloseLid,firmware_FwScreenPressPower and platform_ServoPowerStateController.USBPluggedin pass Signed-off-by: mike <mike5@huaqin.corp-partner.google.com> Change-Id: Ia087d5b6238d4343d1dec9a5c9cdf6c4bb581636 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3615695 Reviewed-by: Aseda Aboagye <aaboagye@chromium.org> Commit-Queue: Aseda Aboagye <aaboagye@chromium.org>
-rw-r--r--board/storo/ec.tasklist4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/storo/ec.tasklist b/board/storo/ec.tasklist
index d6fa610141..d54ff847e6 100644
--- a/board/storo/ec.tasklist
+++ b/board/storo/ec.tasklist
@@ -19,7 +19,7 @@
TASK_ALWAYS(CONSOLE, console_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(POWERBTN, power_button_task, NULL, ULTRA_TASK_STACK_SIZE) \
TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, ULTRA_TASK_STACK_SIZE) \
- TASK_ALWAYS(PD_C0, pd_task, NULL, ULTRA_TASK_STACK_SIZE) \
- TASK_ALWAYS(PD_C1, pd_task, NULL, ULTRA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C0, pd_task, NULL, TRENTA_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_C1, pd_task, NULL, TRENTA_TASK_STACK_SIZE) \
TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, ULTRA_TASK_STACK_SIZE) \
TASK_ALWAYS(PD_INT_C1, pd_interrupt_handler_task, 1, ULTRA_TASK_STACK_SIZE)