1/*
2 * Copyright (c) 2021 Intel Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6/ {
7	cpus {
8		power-states {
9			state0: state0 {
10				compatible = "zephyr,power-state";
11				power-state-name = "suspend-to-ram";
12			};
13		};
14	};
15};
16
17&gpio0 {
18	compatible = "zephyr,gpio-emul";
19	gpio-controller;
20	wakeup-source;
21};
22
23&cpu0 {
24	cpu-power-states = <&state0>;
25};
26