summaryrefslogtreecommitdiff
path: root/zephyr/Kconfig.stacks
diff options
context:
space:
mode:
authorAndrew McRae <amcrae@google.com>2022-05-16 16:04:12 +1000
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-05-16 07:15:39 +0000
commit2b84534991fe772f6150c8d53e0a563af4895ada (patch)
tree2b18a402603547e33b4cba5a61c896d322a57da3 /zephyr/Kconfig.stacks
parente57c26c302138c901b03d54e801351a7ac15a3df (diff)
downloadchrome-ec-2b84534991fe772f6150c8d53e0a563af4895ada.tar.gz
nissa: nereid: Adjust ISR and idle stack
Stack margins were getting small with FAFTSetup test: idle (real size 400): unused 100 usage 300 / 400 (75 %) IRQ 00 (real size 800): unused 132 usage 668 / 800 (83 %) Increase stacks to provide a bit more space. BUG=b:231784294 TEST=zmake build nereid; run FAFTSetup test BRANCH=none Signed-off-by: Andrew McRae <amcrae@google.com> Change-Id: I7edf76325004b2cf6299c50a2027ddf5a97d41f0 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3644559 Reviewed-by: Peter Marheine <pmarheine@chromium.org>
Diffstat (limited to 'zephyr/Kconfig.stacks')
-rw-r--r--zephyr/Kconfig.stacks4
1 files changed, 2 insertions, 2 deletions
diff --git a/zephyr/Kconfig.stacks b/zephyr/Kconfig.stacks
index 88e00bb112..519a827b7c 100644
--- a/zephyr/Kconfig.stacks
+++ b/zephyr/Kconfig.stacks
@@ -14,12 +14,12 @@ config MAIN_STACK_SIZE
default 1200 if SOC_SERIES_NPCX9
config IDLE_STACK_SIZE
- default 400 if SOC_SERIES_RISCV32_IT8XXX2
+ default 500 if SOC_SERIES_RISCV32_IT8XXX2
default 192 if SOC_SERIES_NPCX7
default 400 if SOC_SERIES_NPCX9
config ISR_STACK_SIZE
- default 800 if SOC_SERIES_RISCV32_IT8XXX2
+ default 1024 if SOC_SERIES_RISCV32_IT8XXX2
default 1024 if SOC_SERIES_NPCX7
default 1024 if SOC_SERIES_NPCX9