summaryrefslogtreecommitdiff
path: root/board/tglrvpu_ite
diff options
context:
space:
mode:
authorSunhee Wee <sunhee.wee@intel.com>2020-02-11 15:57:30 +0000
committerCommit Bot <commit-bot@chromium.org>2020-02-13 03:28:18 +0000
commitbd8c51b9295d9d09531a8efca702658ca9d61124 (patch)
treebce65724ca99271160b30e35e888ad6a6cef704c /board/tglrvpu_ite
parent10ff776b895124ec06b81bd26ec3b2d99f834ece (diff)
downloadchrome-ec-bd8c51b9295d9d09531a8efca702658ca9d61124.tar.gz
tglrvp_ite: increase the chipset task stack
overflow happens when chipset_task calls CPRINTS("PD:S3->S0") in pd_chipset_resume() which consumes lots of stack. BUG=b:149207173 BRANCH=none TEST=no more overflow after increasing the stack on tglrvp U Change-Id: Id7f18c4209485d4377f5f38364d42e9dc9e65fa2 Signed-off-by: Sunhee Wee <sunhee.wee@intel.corp-partner.google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2050792 Reviewed-by: Keith Short <keithshort@chromium.org>
Diffstat (limited to 'board/tglrvpu_ite')
-rw-r--r--board/tglrvpu_ite/ec.tasklist2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/tglrvpu_ite/ec.tasklist b/board/tglrvpu_ite/ec.tasklist
index ad511e0a98..b59c587549 100644
--- a/board/tglrvpu_ite/ec.tasklist
+++ b/board/tglrvpu_ite/ec.tasklist
@@ -12,7 +12,7 @@
#define CONFIG_TASK_LIST \
TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(CHARGER, charger_task, NULL, LARGER_TASK_STACK_SIZE) \
- TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_NOTEST(CHIPSET, chipset_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(PDCMD, pd_command_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) \