Skip to content

Commit

Permalink
dts: arm: nordic: Define power states for nrf54h20/cpuapp
Browse files Browse the repository at this point in the history
Add definition of low power states 'idle' and 's2ram'
for nrf54h20/cpuapp.

Signed-off-by: Sebastian Głąb <sebastian.glab@nordicsemi.no>
  • Loading branch information
nordic-segl committed Sep 27, 2024
1 parent 7e892f8 commit c23e9c2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions dts/arm/nordic/nrf54h20_cpuapp.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,23 @@ wdt011: &cpuapp_wdt011 {};
&grtc {
interrupts = <109 NRF_DEFAULT_IRQ_PRIORITY>;
};

/ {
power-states {
idle: idle {
compatible = "zephyr,power-state";
power-state-name = "suspend-to-idle";
min-residency-us = <100000>;
};

s2ram: s2ram {
compatible = "zephyr,power-state";
power-state-name = "suspend-to-ram";
min-residency-us = <800000>;
};
};
};

&cpu {
cpu-power-states = <&idle &s2ram>;
};

0 comments on commit c23e9c2

Please sign in to comment.