You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
377 B
25 lines
377 B
/* |
|
* 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 { |
|
compatible = "xen,hvc-consoleio"; |
|
status = "okay"; |
|
}; |
|
};
|
|
|