Skip to content

Commit 990d717

Browse files
committed
boards: shields: coverage_support: extend app flash and disable SSF
Add more FLASH for app (taken from rad). Disable SDFW_SERVICES to save RAM. Signed-off-by: Piotr Kosycarz <[email protected]>
1 parent 5b9dd75 commit 990d717

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

boards/shields/coverage_support/boards/nrf54h20dk_nrf54h20_cpuapp.overlay

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,23 @@
77
/* Delete current app definition to redefine belowe */
88
/delete-node/ &cpuapp_slot0_partition;
99

10-
/* Extend by 128 KB, taken from rad */
10+
/* Extend by 160 KB, taken from rad */
1111
&cpuapp_rx_partitions {
1212
cpuapp_slot0_partition: partition@74000 {
13-
reg = <0x74000 DT_SIZE_K(448)>;
13+
reg = <0x74000 DT_SIZE_K(480)>;
1414
};
1515
};
1616

17-
/* Shrink by 128 KB */
17+
/* Shrink by 160 KB */
1818
&cpurad_slot0_partition {
19-
reg = <0x54000 DT_SIZE_K(128)>;
19+
reg = <0x54000 DT_SIZE_K(96)>;
2020
};
2121

2222
&uart136 {
2323
hw-flow-control;
2424
};
25+
26+
/* To disable SDFW_SERVICES to save RAM */
27+
&cpusec_cpuapp_ipc {
28+
status = "disabled";
29+
};

boards/shields/coverage_support/boards/nrf54h20dk_nrf54h20_cpurad.overlay

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
55
*/
66

7-
/* Shrink by 128 KB */
7+
/* Shrink by 160 KB */
88
&cpurad_slot0_partition {
9-
reg = <0x54000 DT_SIZE_K(128)>;
9+
reg = <0x54000 DT_SIZE_K(96)>;
10+
};
11+
12+
/* To disable SDFW_SERVICES to save RAM */
13+
&cpusec_cpurad_ipc {
14+
status = "disabled";
1015
};

0 commit comments

Comments
 (0)