Skip to content

Commit daa9f4d

Browse files
committed
suit: Align cpuapp partitions to new memory map
Align smp_transfer partitions, as proposed in: nrfconnect#19044 Ref: NCSDK-NONE Signed-off-by: Tomasz Chyrowicz <[email protected]>
1 parent 115359d commit daa9f4d

File tree

2 files changed

+32
-22
lines changed

2 files changed

+32
-22
lines changed

samples/suit/smp_transfer/boards/nrf54h20dk_nrf54h20_cpuapp_extflash.overlay

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,19 @@
7575
};
7676

7777
&cpuapp_rx_partitions {
78-
/delete-node/ partition@b7000;
79-
/delete-node/ cpuapp_recovery_partition;
80-
cpuapp_recovery_partition: partition@a5000 {
81-
reg = <0xa5000 DT_SIZE_K(84)>;
78+
/delete-node/ partition@9d000;
79+
cpuapp_recovery_partition: partition@9d000 {
80+
reg = <0x9d000 DT_SIZE_K(84)>;
8281
};
8382

84-
cpuapp_slot0_partition: partition@ba000 {
85-
reg = <0xba000 DT_SIZE_K(792)>;
83+
/delete-node/ partition@af000;
84+
cpuapp_recovery_rfu_partition: partition@b2000 {
85+
reg = <0xb2000 DT_SIZE_K(44)>;
86+
};
87+
88+
/delete-node/ partition@bd000;
89+
cpuapp_slot0_partition: partition@bd000 {
90+
reg = <0xbd000 DT_SIZE_K(780)>;
8691
};
8792
};
8893

samples/suit/smp_transfer/sysbuild/nrf54h20dk_nrf54h20_memory_map.dtsi

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,32 @@
55
*/
66

77
&cpuapp_rx_partitions {
8-
/delete-node/ partition@a6000;
9-
cpuapp_recovery_partition: partition@a5000 {
10-
reg = <0xa5000 DT_SIZE_K(72)>;
8+
/delete-node/ partition@94000;
9+
cpuapp_recovery_partition: partition@9d000 {
10+
reg = <0x9d000 DT_SIZE_K(72)>;
1111
};
1212

13-
/delete-node/ partition@94000;
14-
cpuapp_slot0_partition: partition@b7000 {
15-
reg = <0xb7000 DT_SIZE_K(256)>;
13+
cpuapp_recovery_rfu_partition: partition@af000 {
14+
reg = <0xaf000 DT_SIZE_K(56)>;
15+
};
16+
17+
cpuapp_slot0_partition: partition@bd000 {
18+
reg = <0xbd000 DT_SIZE_K(268)>;
1619
};
1720

1821
/* Delete PPR code partition */
1922
/delete-node/ partition@e4000;
20-
cpuppr_code_partition: partition@a5010 {
21-
reg = < 0xa5010 0x10 >;
22-
};
2323

2424
/* Delete FLPR code partition */
2525
/delete-node/ partition@f4000;
26-
cpuflpr_code_partition: partition@a5020 {
27-
reg = < 0xa5020 0x10 >;
28-
};
26+
};
27+
28+
&cpuflpr_vpr {
29+
/delete-property/ source-memory;
30+
};
31+
32+
&cpuppr_vpr {
33+
/delete-property/ source-memory;
2934
};
3035

3136
&cpurad_rx_partitions {
@@ -35,11 +40,11 @@
3540
#size-cells = < 0x1 >;
3641

3742
/delete-node/ partition@54000;
38-
cpurad_slot0_partition: partition@66000 {
39-
reg = < 0x66000 DT_SIZE_K(160) >;
43+
cpurad_recovery_partition: partition@54000 {
44+
reg = < 0x54000 DT_SIZE_K(92) >;
4045
};
4146

42-
cpurad_recovery_partition: partition@8e000 {
43-
reg = < 0x8e000 DT_SIZE_K(92) >;
47+
cpurad_slot0_partition: partition@6b000 {
48+
reg = < 0x6b000 DT_SIZE_K(200) >;
4449
};
4550
};

0 commit comments

Comments
 (0)