Skip to content

Commit

Permalink
[nrf fromlist] 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.

Upstream PR: zephyrproject-rtos/zephyr#79098

Signed-off-by: Sebastian Głąb <sebastian.glab@nordicsemi.no>
  • Loading branch information
nordic-segl committed Sep 27, 2024
1 parent 4322f51 commit d2c044e
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 @@ -57,3 +57,23 @@ wdt011: &cpuapp_wdt011 {};
&grtc {
interrupts = <109 NRF_DEFAULT_IRQ_PRIORITY>;
};

&cpus {
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 d2c044e

Please sign in to comment.