Skip to content

zephyr: boards: nrf54h20dk: disable power domains #2391

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions boot/zephyr/boards/nrf54h20dk_nrf54h20_cpuapp_iron.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@
CONFIG_SPI_NOR=n

CONFIG_BOOT_WATCHDOG_FEED=n

# Power domains forced on by default on boot, no need
# to manage them in bootloader.
CONFIG_POWER_DOMAIN=n
53 changes: 53 additions & 0 deletions boot/zephyr/boards/nrf54h20dk_nrf54h20_cpuapp_iron.overlay
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
* Copyright (c) 2025 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/

&gdpwr {
status = "disabled";
};

&gdpwr_fast_active_0 {
status = "disabled";
};

&gdpwr_fast_active_1 {
status = "disabled";
};

&gdpwr_fast_main {
status = "disabled";
};

&gdpwr_slow_active {
status = "disabled";
};

&gdpwr_slow_main {
status = "disabled";
};

&gpio_pad_group0 {
status = "disabled";
};

&gpio_pad_group1 {
status = "disabled";
};

&gpio_pad_group2 {
status = "disabled";
};

&gpio_pad_group6 {
status = "disabled";
};

&gpio_pad_group7 {
status = "disabled";
};

&gpio_pad_group9 {
status = "disabled";
};
Loading