/* * Copyright (c) 2020 EPAM Systems * * SPDX-License-Identifier: Apache-2.0 * * This file was created by running * * # LIBXL_DEBUG_DUMP_DTB=domu-libxl.dtb xl create zephyr.conf * * decompiling resulting domu-libxl.dtb and then manually aligning it * with zephyr requirements. */ /dts-v1/; #include #include #include / { model = "XENVM"; compatible = "xen,xenvm"; interrupt-parent = <&gic>; #address-cells = <0x02>; #size-cells = <0x02>; chosen { zephyr,sram = &ram; zephyr,console = &xen_hvc; }; cpus { #address-cells = <0x01>; #size-cells = <0x00>; cpu@0 { device_type = "cpu"; compatible = "arm,armv8"; enable-method = "psci"; reg = <0x00>; }; }; psci { compatible = "arm,psci-1.0", "arm,psci-0.2", "arm,psci"; method = "hvc"; }; ram: memory@40000000 { device_type = "mmio-sram"; reg = <0x00 0x40000000 0x00 DT_SIZE_M(16)>; }; gic: interrupt-controller@3001000 { compatible = "arm,gic-v2", "arm,gic"; #interrupt-cells = <0x04>; #address-cells = <0x00>; interrupt-controller; reg = <0x00 0x3001000 0x00 0x1000 0x00 0x3002000 0x00 0x2000>; }; timer { compatible = "arm,armv8-timer"; interrupts = ; interrupt-parent = <&gic>; }; hypervisor: hypervisor@38000000 { compatible = "xen,xen"; reg = <0x00 0x38000000 0x00 0x1000000>; interrupts = ; interrupt-parent = <&gic>; }; xen_hvc: hvc { compatible = "xen,hvc-uart"; status = "okay"; }; };