Skip to content

Commit c63c46d

Browse files
committed
[nrf fromlist] boards: nordic: nrf54l15dk: Fix nrf54l10 partitions
Fixes partitions so that they are aligned and set peoperly for this board target Upstream PR #: 88235 Signed-off-by: Jamie McCrae <[email protected]>
1 parent c30f4cd commit c63c46d

File tree

1 file changed

+17
-9
lines changed

1 file changed

+17
-9
lines changed

boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l10_cpuapp.dts

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,29 +35,37 @@
3535
compatible = "fixed-partitions";
3636
#address-cells = <1>;
3737
#size-cells = <1>;
38+
3839
boot_partition: partition@0 {
3940
label = "mcuboot";
4041
reg = <0x0 DT_SIZE_K(64)>;
4142
};
43+
4244
slot0_partition: partition@10000 {
4345
label = "image-0";
44-
reg = <0x10000 DT_SIZE_K(230)>;
46+
reg = <0x10000 DT_SIZE_K(224)>;
4547
};
46-
slot0_ns_partition: partition@49800 {
48+
49+
slot0_ns_partition: partition@48000 {
4750
label = "image-0-nonsecure";
48-
reg = <0x49800 DT_SIZE_K(230)>;
51+
reg = <0x48000 DT_SIZE_K(224)>;
4952
};
50-
slot1_partition: partition@83000 {
53+
54+
slot1_partition: partition@80000 {
5155
label = "image-1";
52-
reg = <0x83000 DT_SIZE_K(230)>;
56+
reg = <0x80000 DT_SIZE_K(224)>;
5357
};
54-
slot1_ns_partition: partition@bc800 {
58+
59+
slot1_ns_partition: partition@b8000 {
5560
label = "image-1-nonsecure";
56-
reg = <0xbc800 DT_SIZE_K(230)>;
61+
reg = <0xb8000 DT_SIZE_K(224)>;
5762
};
58-
storage_partition: partition@f6000 {
63+
64+
/* 32k from 0xf0000 to 0xf7fff reserved for TF-M partitions */
65+
66+
storage_partition: partition@f8000 {
5967
label = "storage";
60-
reg = <0xf6000 DT_SIZE_K(38)>;
68+
reg = <0xf8000 DT_SIZE_K(32)>;
6169
};
6270
};
6371
};

0 commit comments

Comments
 (0)