summaryrefslogtreecommitdiff
path: root/board/mushu/ec.tasklist
diff options
context:
space:
mode:
authorEdward Hill <ecgh@chromium.org>2020-02-21 15:36:03 -0700
committerCommit Bot <commit-bot@chromium.org>2020-03-04 22:33:55 +0000
commit7c5d5f3e590c44decc33919cee495b6a066a079b (patch)
tree307a9777d5659fedeec6f1fb181e2c76c1c7ec89 /board/mushu/ec.tasklist
parent38652c1d26adfa1d604aaa284f67a4d3b99ef3ff (diff)
downloadchrome-ec-7c5d5f3e590c44decc33919cee495b6a066a079b.tar.gz
hatch boards: Increase PD tasks stack size
CL:2031650 increased stack used by tcpci_tcpm_init(), which caused stack overflow on boards using the ANX7447. BUG=b:149708491, b:150339191 BRANCH=none TEST=fixes EC stack overflow crash on boot, AP boots ok Change-Id: I29c4e2ccce1f3ac1ee125563e4367c4e7d8ea21e Signed-off-by: Edward Hill <ecgh@chromium.org> Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2068800 Reviewed-by: Bob Moragues <moragues@chromium.org> Reviewed-by: Shelley Chen <shchen@chromium.org>
Diffstat (limited to 'board/mushu/ec.tasklist')
-rw-r--r--board/mushu/ec.tasklist4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/mushu/ec.tasklist b/board/mushu/ec.tasklist
index bf5a7a436a..5ce4cf80ef 100644
--- a/board/mushu/ec.tasklist
+++ b/board/mushu/ec.tasklist
@@ -20,8 +20,8 @@
TASK_ALWAYS(CONSOLE, console_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(POWERBTN, power_button_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE) \
- TASK_ALWAYS(PD_C0, pd_task, NULL, LARGER_TASK_STACK_SIZE) \
- TASK_ALWAYS(PD_C1, pd_task, NULL, LARGER_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)