aboutsummaryrefslogtreecommitdiffstats
path: root/tools/firmware
diff options
context:
space:
mode:
authorPaul Durrant <paul.durrant@citrix.com>2012-08-22 22:26:27 +0100
committerPaul Durrant <paul.durrant@citrix.com>2012-08-22 22:26:27 +0100
commit8cda3b02882b6c2b398dffdd8533f2135e9cb088 (patch)
treebc175ce4562466ede39a71f503fa288de235355f /tools/firmware
parent64b135198b8e61fbc2c5bc58439a0dcfe64c9af8 (diff)
downloadxen-8cda3b02882b6c2b398dffdd8533f2135e9cb088.tar.gz
xen-8cda3b02882b6c2b398dffdd8533f2135e9cb088.tar.bz2
xen-8cda3b02882b6c2b398dffdd8533f2135e9cb088.zip
hvm: Remove VM genearation ID device and incr_generationid from build_info.
Microsoft have now published their VM generation ID specification at https://www.microsoft.com/en-us/download/details.aspx?id=30707. It differs from the original specification upon which I based my implementation in several key areas. Particularly, it is no longer an incrementing 64-bit counter and so this patch is to remove the incr_generationid field from the build_info and also disable the ACPI device before 4.2 is released. I will follow up with further patches to implement the VM generation ID to the new specification. Signed-off-by: Paul Durrant <paul.durrant@citrix.com> Committed-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'tools/firmware')
-rw-r--r--tools/firmware/hvmloader/acpi/dsdt.asl25
1 files changed, 0 insertions, 25 deletions
diff --git a/tools/firmware/hvmloader/acpi/dsdt.asl b/tools/firmware/hvmloader/acpi/dsdt.asl
index bf44dd63c4..64896ce11d 100644
--- a/tools/firmware/hvmloader/acpi/dsdt.asl
+++ b/tools/firmware/hvmloader/acpi/dsdt.asl
@@ -396,31 +396,6 @@ DefinitionBlock ("DSDT.aml", "DSDT", 2, "Xen", "HVM", 0)
IO (Decode16, 0x0378, 0x0378, 0x08, 0x08)
IRQNoFlags () {7}
})
- }
-
- Device(VGID) {
- Name(_HID, EisaID ("XEN0000"))
- Name(_UID, 0x00)
- Name(_CID, "VM_Gen_Counter")
- Name(_DDN, "VM_Gen_Counter")
- Method(_STA, 0, NotSerialized)
- {
- If(LEqual(\_SB.VGIA, 0x00000000)) {
- Return(0x00)
- } Else {
- Return(0x0F)
- }
- }
- Name(PKG, Package ()
- {
- 0x00000000,
- 0x00000000
- })
- Method(ADDR, 0, NotSerialized)
- {
- Store(\_SB.VGIA, Index(PKG, 0))
- Return(PKG)
- }
}
}
}