Skip to content

Commit ecdb86a

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 4eba808 commit ecdb86a

File tree

2 files changed

+53
-1
lines changed

2 files changed

+53
-1
lines changed

boot/zephyr/boards/nrf54h20dk_nrf54h20_cpuapp_iron.conf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ CONFIG_SPI_NOR=n
88

99
CONFIG_BOOT_WATCHDOG_FEED=n
1010

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

0 commit comments

Comments
 (0)