Skip to content

Commit

Permalink
suit: Align cpuapp partitions to new memory map
Browse files Browse the repository at this point in the history
Align smp_transfer partitions, as proposed in:
#19044

Ref: NCSDK-NONE

Signed-off-by: Tomasz Chyrowicz <[email protected]>
  • Loading branch information
tomchy committed Dec 18, 2024
1 parent f0fbddc commit c02e395
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
};

&cpuapp_rx_partitions {
/delete-node/ partition@b7000;
/delete-node/ partition@b4000;
/delete-node/ cpuapp_recovery_partition;
cpuapp_recovery_partition: partition@a5000 {
reg = <0xa5000 DT_SIZE_K(84)>;
cpuapp_recovery_partition: partition@94000 {
reg = <0x94000 DT_SIZE_K(84)>;
};

cpuapp_slot0_partition: partition@ba000 {
reg = <0xba000 DT_SIZE_K(792)>;
cpuapp_slot0_partition: partition@a9000 {
reg = <0xa9000 DT_SIZE_K(860)>;
};
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,29 @@
*/

&cpuapp_rx_partitions {
/delete-node/ partition@a6000;
cpuapp_recovery_partition: partition@a5000 {
reg = <0xa5000 DT_SIZE_K(72)>;
/delete-node/ partition@94000;
cpuapp_recovery_partition: partition@94000 {
reg = <0x94000 DT_SIZE_K(72)>;
};

/delete-node/ partition@94000;
cpuapp_slot0_partition: partition@b7000 {
reg = <0xb7000 DT_SIZE_K(256)>;
cpuapp_recovery_rfu_partition: partition@a6000 {
reg = <0xa6000 DT_SIZE_K(56)>;
};

cpuapp_slot0_partition: partition@b4000 {
reg = <0xb4000 DT_SIZE_K(192)>;
};

/* Delete PPR code partition */
/* PPR code partition */
/delete-node/ partition@e4000;
cpuppr_code_partition: partition@a5010 {
reg = < 0xa5010 0x10 >;
cpuppr_code_partition: partition@a6010 {
reg = < 0xa6010 0x10 >;
};

/* Delete FLPR code partition */
/delete-node/ partition@f4000;
cpuflpr_code_partition: partition@a5020 {
reg = < 0xa5020 0x10 >;
cpuflpr_code_partition: partition@a6020 {
reg = < 0xa6020 0x10 >;
};
};

Expand All @@ -35,11 +38,11 @@
#size-cells = < 0x1 >;

/delete-node/ partition@54000;
cpurad_slot0_partition: partition@66000 {
reg = < 0x66000 DT_SIZE_K(160) >;
cpurad_slot0_partition: partition@54000 {
reg = < 0x54000 DT_SIZE_K(164) >;
};

cpurad_recovery_partition: partition@8e000 {
reg = < 0x8e000 DT_SIZE_K(92) >;
cpurad_recovery_partition: partition@7d000 {
reg = < 0x7d000 DT_SIZE_K(92) >;
};
};

0 comments on commit c02e395

Please sign in to comment.