From a493e4e1a20d31a56a34e4bd06ce3aa178465ff9 Mon Sep 17 00:00:00 2001 From: jljusten Date: Mon, 13 Aug 2012 15:39:43 +0000 Subject: [PATCH] OvmfPkg: fix LAPIC RangeLength in DSDT Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek Reviewed-by: Jordan Justen git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13617 6f19259b-4bc3-4df7-8a09-765794883524 MU SOURCE COMMIT:6d4f320d0c7bc76e49949098db149162989b1ad8 --- Platforms/OvmfPkg/AcpiTables/Dsdt.asl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Platforms/OvmfPkg/AcpiTables/Dsdt.asl b/Platforms/OvmfPkg/AcpiTables/Dsdt.asl index e64ffb23..a72b5680 100644 --- a/Platforms/OvmfPkg/AcpiTables/Dsdt.asl +++ b/Platforms/OvmfPkg/AcpiTables/Dsdt.asl @@ -448,10 +448,10 @@ DefinitionBlock ("Dsdt.aml", "DSDT", 1, "INTEL ", "OVMF ", 3) { IO (Decode16, 0x440, 0x440, 0x00, 0x10) IO (Decode16, 0x678, 0x678, 0x00, 0x08) IO (Decode16, 0x778, 0x778, 0x00, 0x08) - IO (Decode16, 0xafe0, 0xafe0, 0x00, 0x04) // QEMU GPE0 BLK - IO (Decode16, 0xb000, 0xb000, 0x00, 0x40) // PMBLK1 - Memory32Fixed (ReadOnly, 0xFEC00000, 0x1000) // IO APIC - Memory32Fixed (ReadOnly, 0xFEE00000, 0x1000) + IO (Decode16, 0xafe0, 0xafe0, 0x00, 0x04) // QEMU GPE0 BLK + IO (Decode16, 0xb000, 0xb000, 0x00, 0x40) // PMBLK1 + Memory32Fixed (ReadOnly, 0xFEC00000, 0x1000) // IO APIC + Memory32Fixed (ReadOnly, 0xFEE00000, 0x100000) // LAPIC }) }