Skip to content
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

board definitions: enable Power Management per default for radio core #2290

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
6 changes: 4 additions & 2 deletions dts/common/nordic/nrf54h20.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,14 @@
compatible = "zephyr,power-state";
power-state-name = "suspend-to-idle";
substate-id = <2>;
min-residency-us = <100000>;
min-residency-us = <1000>;
exit-latency-us = <30>;
};
s2ram: s2ram {
compatible = "zephyr,power-state";
power-state-name = "suspend-to-ram";
min-residency-us = <800000>;
min-residency-us = <2000>;
exit-latency-us = <260>;
};
};
};
Expand Down
3 changes: 3 additions & 0 deletions soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpurad
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ config NUM_IRQS
config NRF_REGTOOL_GENERATE_UICR
default y

config PM
default y

endif # SOC_NRF54H20_CPURAD
Loading