Skip to content

Commit ffdab1b

Browse files
ppryga-nordicnordicjm
authored andcommitted
[nrf noup] dts: choose a psa-rng for entropy for 54lm20a
Set PSA as the entropy source for nRF54lm20a target. PSA is the only NCS-supported interface to CRACEN. There is no other entropy source in 54lm20a than CRACEN. The commit also disables `rng` compatible with `nrf-cracen-ctrdrbg`, the nrfx based interface to CRACEN that is used in upstream Zephyr. Only one CRACEN interface may be enabled. Signed-off-by: Piotr Pryga <[email protected]>
1 parent 2ace1aa commit ffdab1b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dts/arm/nordic/nrf54l_05_10_15_cpuapp.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ nvic: &cpuapp_nvic {};
2626
};
2727

2828
rng: rng {
29-
status = "okay";
29+
status = "disabled";
3030
compatible = "nordic,nrf-cracen-ctrdrbg";
3131
};
3232

dts/arm/nordic/nrf54lm20a_enga_cpuapp.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ nvic: &cpuapp_nvic {};
1717

1818
/ {
1919
chosen {
20-
zephyr,entropy = &rng;
20+
zephyr,entropy = &psa_rng;
2121
};
2222

2323
soc {
@@ -28,11 +28,11 @@ nvic: &cpuapp_nvic {};
2828

2929
psa_rng: psa-rng {
3030
compatible = "zephyr,psa-crypto-rng";
31-
status = "disabled";
31+
status = "okay";
3232
};
3333

3434
rng: rng {
35-
status = "okay";
35+
status = "disabled";
3636
compatible = "nordic,nrf-cracen-ctrdrbg";
3737
};
3838
};

0 commit comments

Comments
 (0)