Skip to content

Commit 0d541e4

Browse files
zephyr: boards: nrf54h20dk: disable power domains
The nrf54h20 power domains are forced on at boot, no need to enable them or their drivers unless they are to be managed further within the bootloader. Signed-off-by: Bjarki Arge Andreasen <bjarki.andreasen@nordicsemi.no>
1 parent f67df43 commit 0d541e4

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

boot/zephyr/boards/nrf54h20dk_nrf54h20_cpuapp_iron.conf

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

99
CONFIG_BOOT_WATCHDOG_FEED=n
10+
11+
# Power domains forced on by default on boot, no need
12+
# to manage them in bootloader.
13+
CONFIG_POWER_DOMAIN=n
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
&gdpwr {
8+
status = "disabled";
9+
};
10+
11+
&gdpwr_fast_active_0 {
12+
status = "disabled";
13+
};
14+
15+
&gdpwr_fast_active_1 {
16+
status = "disabled";
17+
};
18+
19+
&gdpwr_fast_main {
20+
status = "disabled";
21+
};
22+
23+
&gdpwr_slow_active {
24+
status = "disabled";
25+
};
26+
27+
&gdpwr_slow_main {
28+
status = "disabled";
29+
};
30+
31+
&gpio_pad_group0 {
32+
status = "disabled";
33+
};
34+
35+
&gpio_pad_group1 {
36+
status = "disabled";
37+
};
38+
39+
&gpio_pad_group2 {
40+
status = "disabled";
41+
};
42+
43+
&gpio_pad_group6 {
44+
status = "disabled";
45+
};
46+
47+
&gpio_pad_group7 {
48+
status = "disabled";
49+
};
50+
51+
&gpio_pad_group9 {
52+
status = "disabled";
53+
};

0 commit comments

Comments
 (0)