Skip to content

Commit 2f91471

Browse files
committed
board definitions: enable Power Management per default for radio core
This commit is just to test, no plan on merging this branch. Signed-off-by: Kyra Lengfeld <[email protected]>
1 parent 8bc628d commit 2f91471

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

dts/common/nordic/nrf54h20.dtsi

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,14 @@
135135
compatible = "zephyr,power-state";
136136
power-state-name = "suspend-to-idle";
137137
substate-id = <2>;
138-
min-residency-us = <100000>;
138+
min-residency-us = <1000>;
139+
exit-latency-us = <30>;
139140
};
140141
s2ram: s2ram {
141142
compatible = "zephyr,power-state";
142143
power-state-name = "suspend-to-ram";
143-
min-residency-us = <800000>;
144+
min-residency-us = <2000>;
145+
exit-latency-us = <260>;
144146
};
145147
};
146148
};

soc/nordic/nrf54h/Kconfig.defconfig.nrf54h20_cpurad

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@ config NUM_IRQS
1111
config NRF_REGTOOL_GENERATE_UICR
1212
default y
1313

14+
config PM
15+
default y
16+
1417
endif # SOC_NRF54H20_CPURAD

0 commit comments

Comments
 (0)