1DomU ACPI module
2================================
3
4Xen toolstack passes the domU ACPI tables via a reference in the /chosen node of
5the device tree.
6
7Each node contains the following properties:
8
9- compatible
10
11	"xen,guest-acpi", "multiboot,module"
12
13- reg
14
15	Specifies the physical address and the length of the module.
16	RSDP table is always located at the beginning of this region.
17
18Examples
19========
20
21	module@0x20000000 {
22		compatible = "xen,guest-acpi", "multiboot,module";
23		reg = <0x20000000 0x1234>;
24	};
25