Skip to content

Commit 51e6f94

Browse files
Vge0rgenordicjm
authored andcommitted
[nrf fromtree] boards: ezurio: Fix RRAM size for nRF54l10 NS
The nRF54L1 has 1012 KB RRAM and not 1022 KB as it was set before. This adjusts the NS target RRAM size for the relevant Ezurio boards which use the nRF54L10. Signed-off-by: Georgios Vasilakis <[email protected]> (cherry picked from commit 7f94595)
1 parent 481840a commit 51e6f94

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

boards/ezurio/bl54l15_dvk/bl54l15_dvk_nrf54l10_cpuapp_ns.dts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
/ {
3333
/*
3434
* Default SRAM planning when building for nRF54L10 with ARM TrustZone-M support.
35-
* - Lowest 96 kB SRAM allocated to Secure image (sram0_s).
36-
* - Upper 96 kB SRAM allocated to Non-Secure image (sram0_ns).
35+
* - Lowest 72 kB SRAM allocated to Secure image (sram0_s).
36+
* - Upper 72 kB SRAM allocated to Non-Secure image (sram0_ns).
3737
*
3838
* nRF54L10 has 192 kB of volatile memory (SRAM) but the last 42kB are reserved for
3939
* the FLPR MCU.
@@ -63,7 +63,7 @@
6363
compatible = "fixed-partitions";
6464
#address-cells = <1>;
6565
#size-cells = <1>;
66-
/* nRF54L10 has 1022 kB of non volatile memory (RRAM) but the
66+
/* nRF54L10 has 1012 kB of non volatile memory (RRAM) but the
6767
* last 62kB are reserved for the FLPR MCU.
6868
*
6969
* This static layout needs to be the same with the upstream TF-M layout in the
@@ -92,12 +92,12 @@
9292

9393
slot0_ns_partition: partition@6A000 {
9494
label = "image-0-nonsecure";
95-
reg = <0x0006A000 DT_SIZE_K(504)>;
95+
reg = <0x0006A000 DT_SIZE_K(494)>;
9696
};
9797

98-
storage_partition: partition@E8000 {
98+
storage_partition: partition@E5800 {
9999
label = "storage";
100-
reg = <0x000E8000 DT_SIZE_K(32)>;
100+
reg = <0x000E5800 DT_SIZE_K(32)>;
101101
};
102102
};
103103
};

boards/ezurio/bl54l15_dvk/bl54l15_dvk_nrf54l10_cpuapp_ns.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ toolchain:
1111
- zephyr
1212
sysbuild: true
1313
ram: 192
14-
flash: 1022
14+
flash: 1012
1515
supported:
1616
- adc
1717
- gpio

0 commit comments

Comments
 (0)