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