1/*
2 * Copyright (C) 2023 EPAM Systems.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	interrupt-parent = <&gic>;
9	#address-cells = <2>;
10	#size-cells = <2>;
11
12	chosen {
13		zephyr,console = &xen_consoleio_hvc;
14		zephyr,shell-uart = &xen_consoleio_hvc;
15	};
16
17	psci {
18		method = "hvc";
19	};
20
21	xen_consoleio_hvc: hvc {
22		compatible = "xen,hvc-consoleio";
23		status = "okay";
24	};
25};
26