Skip to content

Commit fc6071b

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, and mbedTLS Heap is disabled for TF-M variant. Signed-off-by: Łukasz Duda <lukasz.duda@nordicsemi.no>
1 parent 5a55d60 commit fc6071b

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

config/nrfconnect/chip-module/Kconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ config CHIP_MALLOC_SYS_HEAP
172172

173173
config CHIP_TASK_STACK_SIZE
174174
int "The CHIP (Matter) thread stack size"
175-
default 10240 if LTO
175+
default 10240 if (LTO || PSA_CRYPTO_DRIVER_CC3XX)
176176
default 6144
177177
help
178178
Configures the stack size available for the CHIP (Matter) thread.

config/nrfconnect/chip-module/Kconfig.defaults

+15-9
Original file line numberDiff line numberDiff line change
@@ -300,15 +300,13 @@ 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
307-
default y
304+
default y if !BUILD_WITH_TFM
305+
default n
308306

309307
config MBEDTLS_HEAP_SIZE
310308
default 8192
311-
309+
312310
# Enable PSA Crypto dependencies for Matter
313311

314312
config CHIP_CRYPTO_PSA
@@ -317,9 +315,15 @@ config CHIP_CRYPTO_PSA
317315

318316
if CHIP_CRYPTO_PSA
319317

318+
config PSA_CRYPTO_DRIVER_OBERON
319+
default y if (SOC_SERIES_NRF52X || SOC_SERIES_NRF53X)
320+
320321
config PSA_CRYPTO_DRIVER_CC3XX
321322
default n
322323

324+
config PSA_CRYPTO_DRIVER_CRACEN
325+
default y if SOC_SERIES_NRF54LX
326+
323327
config PSA_WANT_ALG_SHA_224
324328
default n
325329

@@ -335,14 +339,13 @@ config PSA_USE_CC3XX_HASH_DRIVER
335339

336340
endif # PSA_CRYPTO_DRIVER_CC3XX && PSA_CRYPTO_DRIVER_OBERON
337341

338-
# Spake2+ support
339-
config MBEDTLS_MD_C
340-
default y
341-
342342
endif # CHIP_CRYPTO_PSA
343343

344344
if !CHIP_CRYPTO_PSA
345345

346+
config OBERON_BACKEND
347+
default y
348+
346349
config NRF_SECURITY_ADVANCED
347350
default y
348351

@@ -355,6 +358,9 @@ config MBEDTLS_CTR_DRBG_C
355358
config MBEDTLS_CIPHER_MODE_CTR
356359
default y
357360

361+
config MBEDTLS_MD_C
362+
default y
363+
358364
config MBEDTLS_SHA1_C
359365
default y if CHIP_WIFI
360366

0 commit comments

Comments
 (0)