diff options
author | Rudolf Marek <r.marek@assembler.cz> | 2008-12-23 17:34:15 +0000 |
---|---|---|
committer | Rudolf Marek <r.marek@assembler.cz> | 2008-12-23 17:34:15 +0000 |
commit | 79e532560c63d5ea095aaeb218443964bbceccae (patch) | |
tree | ed92a7ff038852caac5552f034e9f3211fe3407f /src/arch | |
parent | 33f9633184ddc84151ab3685725d13448cdec232 (diff) |
The attached patch adds missing bits to ACPI to make Windows XP and Windows Vista happy.
The FADT bootarch flags
Blacklists MSI for this chipset (maybe not needed)
Adds modified amdk8_util.asl
Adds the SSDT table to chain of tables
Aligns the FACS correctly (this should be done for other boards)
Adds the _CRS method to Asus M2V-MX SE acpi DSDT.
Fixes the FACS table length.
Signed-off-by: Rudolf Marek <r.marek@assembler.cz>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3840 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/i386/include/arch/acpi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/include/arch/acpi.h b/src/arch/i386/include/arch/acpi.h index 0e628b4cb3..a71fb319f5 100644 --- a/src/arch/i386/include/arch/acpi.h +++ b/src/arch/i386/include/arch/acpi.h @@ -285,7 +285,7 @@ typedef struct acpi_facs { u32 x_firmware_waking_vector_l; u32 x_firmware_waking_vector_h; u8 version; - u8 resv[33]; + u8 resv[31]; } __attribute__ ((packed)) acpi_facs_t; /* These are implemented by the target port */ |