Skip to content

Commit 0f0c80e

Browse files
nordicjmhenrikbrixandersen
authored andcommitted
dts: vendor: nordic: nrf54l10: Fix wrong size of NVM
Fixes the NVM size going beyond what the chip supports Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
1 parent a56cb0a commit 0f0c80e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dts/vendor/nordic/nrf54l10.dtsi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
};
2626

2727
&cpuapp_rram {
28-
reg = <0x0 DT_SIZE_K(960)>;
28+
reg = <0x0 DT_SIZE_K(950)>;
2929
};
3030

31-
/* 960 + 62 = 1022KB */
31+
/* 950 + 62 = 1012KB */
3232
&rram_controller {
33-
cpuflpr_rram: rram@f0000 {
33+
cpuflpr_rram: rram@ed800 {
3434
compatible = "soc-nv-flash";
35-
reg = <0xf0000 DT_SIZE_K(62)>;
35+
reg = <0xed800 DT_SIZE_K(62)>;
3636
erase-block-size = <4096>;
3737
write-block-size = <16>;
3838
};

0 commit comments

Comments
 (0)