Skip to content

Commit d4f4e22

Browse files
[nrf fromtree] 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 <[email protected]> (cherry picked from commit 37bc4aa)
1 parent 6837984 commit d4f4e22

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
@@ -10,3 +10,7 @@ CONFIG_SPI_NOR=n
1010
CONFIG_FPROTECT=n
1111

1212
CONFIG_BOOT_WATCHDOG_FEED=n
13+
14+
# Power domains forced on by default on boot, no need
15+
# to manage them in bootloader.
16+
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)