Skip to content

Commit 4c8412c

Browse files
committed
suit: Remove unused memory ranges
FLPR and PPR code partiotions ar not used in SUIT smp_transfer sample, so their partitions should not be included inside UICRs. Such partitions may open doors for potential vulnerabilities. Ref: NCSDK-30017 Signed-off-by: Tomasz Chyrowicz <[email protected]>
1 parent de0f3e7 commit 4c8412c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

samples/suit/smp_transfer/sysbuild/nrf54h20dk_nrf54h20_memory_map.dtsi

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,20 @@
1313
cpuapp_recovery_partition: partition@e5000 {
1414
reg = <0xe5000 DT_SIZE_K(72)>;
1515
};
16+
17+
/* Delete PPR code partition */
18+
/delete-node/ partition@e4000;
19+
cpuppr_code_partition: partition@a5010 {
20+
reg = < 0xa5010 0x10 >;
21+
};
22+
23+
/* Delete FLPR code partition */
24+
/delete-node/ partition@f4000;
25+
cpuflpr_code_partition: partition@a5020 {
26+
reg = < 0xa5020 0x10 >;
27+
};
1628
};
29+
1730
&cpurad_rx_partitions {
1831
compatible = "nordic,owned-partitions", "fixed-partitions";
1932
nordic,access = <NRF_OWNER_ID_RADIOCORE NRF_PERM_RXS>;

0 commit comments

Comments
 (0)