Skip to content

Commit 12dbf82

Browse files
committed
[nrf toup] Implicitly enable PSA crypto driver for given platform
This commit makes in clear which crypto driver is enabled by default. Additionally, stack overflow has been fixed for CC3XX variant. Signed-off-by: Łukasz Duda <lukasz.duda@nordicsemi.no>
1 parent 89eb37b commit 12dbf82

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

config/nrfconnect/chip-module/Kconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ config CHIP_MALLOC_SYS_HEAP
165165

166166
config CHIP_TASK_STACK_SIZE
167167
int "The CHIP (Matter) thread stack size"
168-
default 10240 if LTO
168+
default 10240 if (LTO || PSA_CRYPTO_DRIVER_CC3XX)
169169
default 6144
170170
help
171171
Configures the stack size available for the CHIP (Matter) thread.

config/nrfconnect/chip-module/Kconfig.defaults

+6-3
Original file line numberDiff line numberDiff line change
@@ -300,9 +300,6 @@ choice RNG_GENERATOR_CHOICE
300300
default XOSHIRO_RANDOM_GENERATOR if SOC_SERIES_NRF53X
301301
endchoice
302302

303-
config OBERON_BACKEND
304-
default y
305-
306303
config MBEDTLS_ENABLE_HEAP
307304
default y
308305

@@ -317,9 +314,15 @@ config CHIP_CRYPTO_PSA
317314

318315
if CHIP_CRYPTO_PSA
319316

317+
config PSA_CRYPTO_DRIVER_OBERON
318+
default y if (SOC_SERIES_NRF52X || SOC_SERIES_NRF53X)
319+
320320
config PSA_CRYPTO_DRIVER_CC3XX
321321
default n
322322

323+
config PSA_CRYPTO_DRIVER_CRACEN
324+
default y if SOC_SERIES_NRF54LX
325+
323326
config PSA_WANT_ALG_SHA_224
324327
default n
325328

0 commit comments

Comments
 (0)