2023-05-11 17:30:59 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2023 EPAM Systems.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/ {
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
#address-cells = <2>;
|
|
|
|
#size-cells = <2>;
|
|
|
|
|
|
|
|
chosen {
|
|
|
|
zephyr,console = &xen_consoleio_hvc;
|
|
|
|
zephyr,shell-uart = &xen_consoleio_hvc;
|
|
|
|
};
|
|
|
|
|
|
|
|
psci {
|
|
|
|
method = "hvc";
|
|
|
|
};
|
|
|
|
|
|
|
|
xen_consoleio_hvc: hvc {
|
2024-01-27 07:24:38 +08:00
|
|
|
compatible = "xen,hvc-consoleio";
|
2023-05-11 17:30:59 +08:00
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
};
|