Skip to content

Commit d2c044e

Browse files
committed
[nrf fromlist] dts: arm: nordic: Define power states for nrf54h20/cpuapp
Add definition of low power states 'idle' and 's2ram' for nrf54h20/cpuapp. Upstream PR: zephyrproject-rtos/zephyr#79098 Signed-off-by: Sebastian Głąb <[email protected]>
1 parent 4322f51 commit d2c044e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

dts/arm/nordic/nrf54h20_cpuapp.dtsi

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,23 @@ wdt011: &cpuapp_wdt011 {};
5757
&grtc {
5858
interrupts = <109 NRF_DEFAULT_IRQ_PRIORITY>;
5959
};
60+
61+
&cpus {
62+
power-states {
63+
idle: idle {
64+
compatible = "zephyr,power-state";
65+
power-state-name = "suspend-to-idle";
66+
min-residency-us = <100000>;
67+
};
68+
69+
s2ram: s2ram {
70+
compatible = "zephyr,power-state";
71+
power-state-name = "suspend-to-ram";
72+
min-residency-us = <800000>;
73+
};
74+
};
75+
};
76+
77+
&cpu {
78+
cpu-power-states = <&idle &s2ram>;
79+
};

0 commit comments

Comments
 (0)