Skip to content

Commit 3b48275

Browse files
nordicjmjhedberg
authored andcommitted
boards: nordic: nrf54l15dk: Fix cpuflpr SRAM address
Fixes the address of this peripheral Signed-off-by: Jamie McCrae <[email protected]>
1 parent e6c2a82 commit 3b48275

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l15_cpuflpr.dts

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#include <nordic/nrf54l15_cpuflpr.dtsi>
99
#include "nrf54l15dk_common.dtsi"
1010

11+
/delete-node/ &cpuflpr_sram;
12+
1113
/ {
1214
model = "Nordic nRF54L15 DK nRF54L15 FLPR MCU";
1315
compatible = "nordic,nrf54l15dk_nrf54l15-cpuflpr";
@@ -19,13 +21,16 @@
1921
zephyr,flash = &cpuflpr_rram;
2022
zephyr,sram = &cpuflpr_sram;
2123
};
22-
};
2324

24-
&cpuflpr_sram {
25-
status = "okay";
26-
/* size must be increased due to booting from SRAM */
27-
reg = <0x20028000 DT_SIZE_K(96)>;
28-
ranges = <0x0 0x20028000 0x18000>;
25+
cpuflpr_sram: memory@20028000 {
26+
compatible = "mmio-sram";
27+
/* Size must be increased due to booting from SRAM */
28+
reg = <0x20028000 DT_SIZE_K(96)>;
29+
#address-cells = <1>;
30+
#size-cells = <1>;
31+
ranges = <0x0 0x20028000 0x18000>;
32+
status = "okay";
33+
};
2934
};
3035

3136
&cpuflpr_rram {

0 commit comments

Comments
 (0)