From 4704dc520b1d5eb8ae730b336ee5f6b7401f7dfc Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Wed, 22 Jul 2009 01:11:37 +0000 Subject: Fix up the tree again... * acpi_add_table requires a pointer to the RSDP, not the RSDT anymore, in order to properly support XSDT generation. * fix compilation the DSDT on gigabyte/m57sli * drop a remaining, forgotten HPET_NAME for "HPET" Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4461 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/mainboard/via/epia-m700/acpi_tables.c | 10 +++++----- src/mainboard/via/epia-n/acpi_tables.c | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src/mainboard/via') diff --git a/src/mainboard/via/epia-m700/acpi_tables.c b/src/mainboard/via/epia-m700/acpi_tables.c index ecb8de48e3..fefe7b6520 100644 --- a/src/mainboard/via/epia-m700/acpi_tables.c +++ b/src/mainboard/via/epia-m700/acpi_tables.c @@ -147,7 +147,7 @@ unsigned long write_acpi_tables(unsigned long start) /* Clear all table memory. */ memset((void *)start, 0, current - start); - acpi_write_rsdp(rsdp, rsdt); + acpi_write_rsdp(rsdp, rsdt, NULL); acpi_write_rsdt(rsdt); /* We explicitly add these tables later on: */ @@ -171,14 +171,14 @@ unsigned long write_acpi_tables(unsigned long start) current += sizeof(acpi_fadt_t); acpi_create_fadt(fadt, facs, dsdt); - acpi_add_table(rsdt, fadt); + acpi_add_table(rsdp, fadt); /* 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); + acpi_add_table(rsdp, madt); /* NO MCFG in VX855, no PCI-E. */ @@ -186,7 +186,7 @@ unsigned long write_acpi_tables(unsigned long start) hpet = (acpi_mcfg_t *) current; acpi_create_hpet(hpet); current += hpet->header.length; - acpi_add_table(rsdt, hpet); + acpi_add_table(rsdp, hpet); #if 0 printk_debug("ACPI: * SSDT\n"); @@ -195,7 +195,7 @@ unsigned long write_acpi_tables(unsigned long start) memcpy((void *)ssdt,(void *)AmlCode_ssdt, ((acpi_header_t *)AmlCode_ssdt)->length); ssdt->checksum = 0; /* Don't trust iasl to get this right. */ ssdt->checksum = acpi_checksum(ssdt, ssdt->length); - acpi_add_table(rsdt, ssdt); + acpi_add_table(rsdp, ssdt); printk_debug("ACPI: * SSDT @ %08x Length %x\n", ssdt, ssdt->length); #endif diff --git a/src/mainboard/via/epia-n/acpi_tables.c b/src/mainboard/via/epia-n/acpi_tables.c index 9ca946de59..3f58d66824 100644 --- a/src/mainboard/via/epia-n/acpi_tables.c +++ b/src/mainboard/via/epia-n/acpi_tables.c @@ -63,7 +63,7 @@ unsigned long write_acpi_tables(unsigned long start) /* clear all table memory */ memset((void *)start, 0, current - start); - acpi_write_rsdp(rsdp, rsdt); + acpi_write_rsdp(rsdp, rsdt, NULL); acpi_write_rsdt(rsdt); /* @@ -86,7 +86,7 @@ unsigned long write_acpi_tables(unsigned long start) current += sizeof(acpi_fadt_t); acpi_create_fadt(fadt,facs,dsdt); - acpi_add_table(rsdt,fadt); + acpi_add_table(rsdp,fadt); printk_info("ACPI: done.\n"); return current; -- cgit v1.2.3