summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiana Z <dzigterman@chromium.org>2021-04-19 14:33:53 -0600
committerCommit Bot <commit-bot@chromium.org>2021-06-08 01:01:42 +0000
commit9b49f663bd6310fab9eeaf72435adf73df7d7fef (patch)
tree40f1d8b0047eb18482d63365d03257bbb29978af
parenteb26a5557b189dc45c38fd04b580a016bcd5880d (diff)
downloadchrome-ec-9b49f663bd6310fab9eeaf72435adf73df7d7fef.tar.gz
Guybrush: Increase PD_INT task sizes
Based on stack sizes needed for past platforms, bump up the PD_INT stack sizes. This allows us plenty of space if we end up going down the route of i2c error recovery, which is generally the source of the largest stack usage for most boards. BRANCH=None BUG=None TEST=make -j buildall Signed-off-by: Diana Z <dzigterman@chromium.org> Change-Id: I7714cd0d9e8805a2b94cde9b1a1d329677716560 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2945809 Reviewed-by: Rob Barnes <robbarnes@google.com> Commit-Queue: Rob Barnes <robbarnes@google.com>
-rw-r--r--baseboard/guybrush/base_ec.tasklist4
1 files changed, 2 insertions, 2 deletions
diff --git a/baseboard/guybrush/base_ec.tasklist b/baseboard/guybrush/base_ec.tasklist
index 434d4d54ed..0b0a02cf8b 100644
--- a/baseboard/guybrush/base_ec.tasklist
+++ b/baseboard/guybrush/base_ec.tasklist
@@ -21,5 +21,5 @@
TASK_ALWAYS(CONSOLE, console_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(PD_C0, pd_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(PD_C1, pd_task, NULL, VENTI_TASK_STACK_SIZE) \
- TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, TASK_STACK_SIZE) \
- TASK_ALWAYS(PD_INT_C1, pd_interrupt_handler_task, 1, TASK_STACK_SIZE)
+ TASK_ALWAYS(PD_INT_C0, pd_interrupt_handler_task, 0, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(PD_INT_C1, pd_interrupt_handler_task, 1, VENTI_TASK_STACK_SIZE)