Author: ruik
Date: 2008-09-23 23:57:33 +0200 (Tue, 23 Sep 2008)
New Revision: 3593
Modified:
trunk/coreboot-v2/src/mainboard/asus/a8v-e_se/acpi_tables.c
Log:
Attached patch removes HPET info from ACPI tables. HPET does not work fine on
VT8237R (random keyboard/mouse lockups).
Signed-off-by: Rudolf Marek <[EMAIL PROTECTED]>
Acked-by: Jordan Crouse <[EMAIL PROTECTED]>
Modified: trunk/coreboot-v2/src/mainboard/asus/a8v-e_se/acpi_tables.c
===================================================================
--- trunk/coreboot-v2/src/mainboard/asus/a8v-e_se/acpi_tables.c 2008-09-23
21:29:53 UTC (rev 3592)
+++ trunk/coreboot-v2/src/mainboard/asus/a8v-e_se/acpi_tables.c 2008-09-23
21:57:33 UTC (rev 3593)
@@ -133,19 +133,12 @@
acpi_create_fadt(fadt, facs, dsdt);
acpi_add_table(rsdt, fadt);
- printk_debug("ACPI: * HPET\n");
- hpet = (acpi_hpet_t *) current;
- current += sizeof(acpi_hpet_t);
- acpi_create_hpet(hpet);
- acpi_add_table(rsdt, hpet);
-
- /* If we want to use HPET timers Linux wants an MADT. */
+ /* If we want to use HPET timers Linux wants it in MADT. */
printk_debug("ACPI: * MADT\n");
madt = (acpi_madt_t *) current;
acpi_create_madt(madt);
current += madt->header.length;
acpi_add_table(rsdt, madt);
-
printk_debug("ACPI: * MCFG\n");
mcfg = (acpi_mcfg_t *) current;
acpi_create_mcfg(mcfg);
--
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot