Skip to content

Commit c618cff

Browse files
nrf_compress: decompression: mcuboot_update: adjust nrf54h20dk pd
Adjust nrf54h20dk/nrf54h20/cpuapp overlay and conf to include required props from the overlay in bootloader/mcuboot. Specifically disabling power domains. Signed-off-by: Bjarki Arge Andreasen <[email protected]>
1 parent 7f4b3a4 commit c618cff

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

tests/subsys/nrf_compress/decompression/mcuboot_update/sysbuild/mcuboot/boards/nrf54h20dk_nrf54h20_cpuapp.conf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ CONFIG_SPI_NOR=n
88
CONFIG_FPROTECT=n
99

1010
CONFIG_BOOT_WATCHDOG_FEED=n
11+
12+
# Power domains forced on by default on boot, no need
13+
# to manage them in bootloader.
14+
CONFIG_POWER_DOMAIN=n

tests/subsys/nrf_compress/decompression/mcuboot_update/sysbuild/mcuboot/boards/nrf54h20dk_nrf54h20_cpuapp.overlay

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,58 @@
1111
zephyr,code-partition = &boot_partition;
1212
};
1313
};
14+
15+
/*
16+
* Copy required overlay for mcuboot from bootloader/mcuboot.
17+
*
18+
* Required as the overlay in bootloader/mcuboot is ignored due to
19+
* board overlay in this test.
20+
*/
21+
22+
&gdpwr {
23+
status = "disabled";
24+
};
25+
26+
&gdpwr_fast_active_0 {
27+
status = "disabled";
28+
};
29+
30+
&gdpwr_fast_active_1 {
31+
status = "disabled";
32+
};
33+
34+
&gdpwr_fast_main {
35+
status = "disabled";
36+
};
37+
38+
&gdpwr_slow_active {
39+
status = "disabled";
40+
};
41+
42+
&gdpwr_slow_main {
43+
status = "disabled";
44+
};
45+
46+
&gpio_pad_group0 {
47+
status = "disabled";
48+
};
49+
50+
&gpio_pad_group1 {
51+
status = "disabled";
52+
};
53+
54+
&gpio_pad_group2 {
55+
status = "disabled";
56+
};
57+
58+
&gpio_pad_group6 {
59+
status = "disabled";
60+
};
61+
62+
&gpio_pad_group7 {
63+
status = "disabled";
64+
};
65+
66+
&gpio_pad_group9 {
67+
status = "disabled";
68+
};

0 commit comments

Comments
 (0)