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 Jan 29, 2025
1 parent a801c54 commit ab1330a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,19 @@
};

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

cpuapp_slot0_partition: partition@ba000 {
reg = <0xba000 DT_SIZE_K(792)>;
/delete-node/ partition@af000;
cpuapp_recovery_rfu_partition: partition@b2000 {
reg = <0xb2000 DT_SIZE_K(44)>;
};

/delete-node/ partition@bd000;
cpuapp_slot0_partition: partition@bd000 {
reg = <0xbd000 DT_SIZE_K(780)>;
};
};

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

&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@9d000 {
reg = <0x9d000 DT_SIZE_K(72)>;
};

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

cpuapp_slot0_partition: partition@bd000 {
reg = <0xbd000 DT_SIZE_K(268)>;
};

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

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

&cpuflpr_vpr {
/delete-property/ source-memory;
};

&cpuppr_vpr {
/delete-property/ source-memory;
};

&cpurad_rx_partitions {
Expand All @@ -35,11 +40,11 @@
#size-cells = < 0x1 >;

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

cpurad_recovery_partition: partition@8e000 {
reg = < 0x8e000 DT_SIZE_K(92) >;
cpurad_slot0_partition: partition@6b000 {
reg = < 0x6b000 DT_SIZE_K(200) >;
};
};

0 comments on commit ab1330a

Please sign in to comment.