Skip to content

Commit 553aafa

Browse files
ayla-nordicsemirlubos
authored andcommitted
nrf_security: remove misplaced flag and activate crypto client.
- nRF92X has a different architecture than nRF54LX and nRF71X, the flag CRACEN_HW_PRESENT shouldn't be activated directly here, it will be true through dts node definition defined for IronSide. - Application core needs to use Crypto Client calls to be able to use PSA through IronSide, this is done by activating the flag PSA_SSF_CRYPTO_CLIENT. Signed-off-by: Aymen LAOUINI <[email protected]>
1 parent 0122e35 commit 553aafa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

subsys/nrf_security/src/drivers/cracen/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66

77
config CRACEN_HW_PRESENT
8-
def_bool (SOC_SERIES_NRF54LX && !SOC_NRF54LS05B) || SOC_SERIES_NRF92X || SOC_SERIES_NRF71X
8+
def_bool (SOC_SERIES_NRF54LX && !SOC_NRF54LS05B) || SOC_SERIES_NRF71X
99

1010
config CRACEN_HW_VERSION_BASE
1111
def_bool SOC_SERIES_NRF54HX || SOC_NRF54L15 || SOC_NRF54L10 || SOC_NRF54L05

subsys/nrf_security/src/ssf_secdom/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ config PSA_SSF_CRYPTO_CLIENT
88
bool
99
prompt "PSA crypto provided through SSF"
1010
default y
11-
depends on SSF_CLIENT || SOC_NRF54H20
11+
depends on SSF_CLIENT || SOC_NRF54H20 || SOC_SERIES_NRF92X
1212
select NRF_IRONSIDE_CALL if !SSF_CLIENT
1313

1414
if PSA_SSF_CRYPTO_CLIENT

0 commit comments

Comments
 (0)