xen.txt 831 B

12345678910111213141516171819202122232425
  1. * Xen hypervisor device tree bindings
  2. Xen ARM virtual platforms shall have a top-level "hypervisor" node with
  3. the following properties:
  4. - compatible:
  5. compatible = "xen,xen-<version>", "xen,xen";
  6. where <version> is the version of the Xen ABI of the platform.
  7. - reg: specifies the base physical address and size of a region in
  8. memory where the grant table should be mapped to, using an
  9. HYPERVISOR_memory_op hypercall. The memory region is large enough to map
  10. the whole grant table (it is larger or equal to gnttab_max_grant_frames()).
  11. - interrupts: the interrupt used by Xen to inject event notifications.
  12. A GIC node is also required.
  13. Example (assuming #address-cells = <2> and #size-cells = <2>):
  14. hypervisor {
  15. compatible = "xen,xen-4.3", "xen,xen";
  16. reg = <0 0xb0000000 0 0x20000>;
  17. interrupts = <1 15 0xf08>;
  18. };