From 9a1b3719d3df535ce170ffffe7d376bc6f045de4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20Audun=20Kvamtr=C3=B8?= Date: Tue, 11 Feb 2025 10:41:44 +0100 Subject: [PATCH] crypto: Adjusting to use larger stack-sizes for nRF54H20 devices MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -There was no pattern to increase stack-size for nRF54H20 devices likely leading to a few issues of stack overflow. Thiscommit adds a pattern to set the stack-sizes a bit up for nRF54H20 CPUAPP and CPURAD Signed-off-by: Frank Audun Kvamtrø --- Kconfig.nrf | 1 + 1 file changed, 1 insertion(+) diff --git a/Kconfig.nrf b/Kconfig.nrf index 4d383e428277..c450d982e111 100644 --- a/Kconfig.nrf +++ b/Kconfig.nrf @@ -61,6 +61,7 @@ config NET_SOCKETS_OFFLOAD_TLS # - For Cracen RNG config MAIN_STACK_SIZE default 3584 if PSA_NEED_CRACEN_CTR_DRBG_DRIVER && !BUILD_WITH_TFM + default 3584 if (SOC_NRF54H20_CPUAPP || SOC_NRF54H20_CPURAD) default 2048 if ZTEST default 2048 if ENTROPY_CC3XX && !BUILD_WITH_TFM