1/* 2 * Copyright (c) 2021 Intel Corporation. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 cpus { 9 power-states { 10 state0: state0 { 11 compatible = "zephyr,power-state"; 12 power-state-name = "suspend-to-idle"; 13 }; 14 state1: state1 { 15 compatible = "zephyr,power-state"; 16 power-state-name = "standby"; 17 zephyr,pm-device-disabled; 18 }; 19 }; 20 }; 21 22 device_a: device_a { 23 compatible = "test-device-pm"; 24 }; 25 26 device_b: device_b { 27 compatible = "test-device-pm"; 28 }; 29 30 device_c: device_c { 31 compatible = "test-device-pm"; 32 }; 33 34 device_d: device_d { 35 compatible = "test-device-pm"; 36 }; 37 38 device_e: device_e { 39 compatible = "test-device-pm"; 40 }; 41}; 42 43&cpu0 { 44 cpu-power-states = <&state0 &state1>; 45}; 46