summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjongpil19.jung <jongpil19.jung@samsung.com>2015-09-30 17:52:49 +0900
committerChromeOS bot <3su6n15k.default@developer.gserviceaccount.com>2015-10-02 01:23:36 +0000
commit5516c146dc9c46ad4a1922fd1d2f90daf0a44aa4 (patch)
treef0cc87d243bb29b300bc83bbfd5e8d2372e40e13
parentdd35ffed0f1c367a4bdda12f2efb2d20862438b5 (diff)
downloadchrome-ec-5516c146dc9c46ad4a1922fd1d2f90daf0a44aa4.tar.gz
celes: Increase charger/console/hostcmd stack sizes.
Charger task is overflowing and causing crash. Increased charger task stack size by 128 bytes. Also increased console/hostcmd by 128 bytes as these are also close to its limit. BRANCH=firmware-strago-7287.B BUG=chrome-os-partner:46024 TEST= Run various tests to verify charger stack doesn't overflow. Change-Id: I8aeb7394ac0964b8e8d98ea75ab86f7b84e9f8b3 Signed-off-by: jongpil19.jung <jongpil19.jung@samsung.com> Reviewed-on: https://chromium-review.googlesource.com/303271 Reviewed-by: Shawn N <shawnn@chromium.org>
-rw-r--r--board/celes/ec.tasklist6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/celes/ec.tasklist b/board/celes/ec.tasklist
index f8c3ce76ac..b39a927961 100644
--- a/board/celes/ec.tasklist
+++ b/board/celes/ec.tasklist
@@ -18,12 +18,12 @@
*/
#define CONFIG_TASK_LIST \
TASK_ALWAYS(HOOKS, hook_task, NULL, LARGER_TASK_STACK_SIZE) \
- TASK_ALWAYS(CHARGER, charger_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHARGER, charger_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(MOTIONSENSE, motion_sense_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(CHIPSET, chipset_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(KEYPROTO, keyboard_protocol_task, NULL, TASK_STACK_SIZE) \
- TASK_ALWAYS(HOSTCMD, host_command_task, NULL, TASK_STACK_SIZE) \
- TASK_ALWAYS(CONSOLE, console_task, NULL, TASK_STACK_SIZE) \
+ TASK_ALWAYS(HOSTCMD, host_command_task, NULL, LARGER_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CONSOLE, console_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_NOTEST(PORT80, port80_task, NULL, TASK_STACK_SIZE) \
TASK_ALWAYS(POWERBTN, power_button_task, NULL, TASK_STACK_SIZE) \
TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, TASK_STACK_SIZE)