summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTommy Chung <tommy.chung@quanta.corp-partner.google.com>2020-12-15 10:06:33 +0800
committerCommit Bot <commit-bot@chromium.org>2020-12-15 08:35:03 +0000
commit713535b5afa31374e109a4d822cf2db01541d1b1 (patch)
tree35f76c03d6f1d841844b175c0230c250d175778c
parent7d4139ac58fd9bcb13d6170e66709defe892cd30 (diff)
downloadchrome-ec-713535b5afa31374e109a4d822cf2db01541d1b1.tar.gz
lantis: Increase task stack sizes
This CL increases task stack sizes along with crrev.com/c/2587794 since lantis was initialed with drawcia's image. BUG=None BRANCH=dedede TEST=Verify that new task stacks sizes are present and that there is plenty of free RAM left. Signed-off-by: Tommy Chung <tommy.chung@quanta.corp-partner.google.com> Change-Id: I0e1e18e23fdd1aa90db0588d8f4e859e781edc40 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2591830 Reviewed-by: Aseda Aboagye <aaboagye@chromium.org> Commit-Queue: Aseda Aboagye <aaboagye@chromium.org>
-rw-r--r--board/lantis/ec.tasklist8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/lantis/ec.tasklist b/board/lantis/ec.tasklist
index 75181a4531..2edf48ee05 100644
--- a/board/lantis/ec.tasklist
+++ b/board/lantis/ec.tasklist
@@ -12,13 +12,13 @@
TASK_ALWAYS(MOTIONSENSE, motion_sense_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(USB_CHG_P0, usb_charger_task, 0, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(USB_CHG_P1, usb_charger_task, 1, LARGER_TASK_STACK_SIZE) \
- TASK_ALWAYS(CHARGER, charger_task, NULL, VENTI_TASK_STACK_SIZE) \
+ TASK_ALWAYS(CHARGER, charger_task, NULL, TRENTA_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(KEYPROTO, keyboard_protocol_task, NULL, LARGER_TASK_STACK_SIZE) \
TASK_ALWAYS(HOSTCMD, host_command_task, NULL, VENTI_TASK_STACK_SIZE) \
TASK_ALWAYS(CONSOLE, console_task, NULL, VENTI_TASK_STACK_SIZE) \
- TASK_ALWAYS(POWERBTN, power_button_task, NULL, VENTI_TASK_STACK_SIZE) \
- TASK_NOTEST(KEYSCAN, keyboard_scan_task, NULL, 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_INT_C1, pd_interrupt_handler_task, 1, ULTRA_TASK_STACK_SIZE)