diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-10-02 20:09:19 +0200 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-11-22 16:57:07 +0100 |
commit | 2a19fb1d76c42cb516a4ab6f253de8c65d8cc3ad (patch) | |
tree | dac11facfc15d14ba9622925f74fe07d6a880c3e /src/southbridge/amd/cimx/sb800 | |
parent | 25819d357b64413c37f8e42a072e0221291eca7f (diff) | |
download | coreboot-2a19fb1d76c42cb516a4ab6f253de8c65d8cc3ad.tar.xz |
amdfam10: Move to per-device ACPI
Change-Id: I9ce2333e1ea527843f83d411dea2a669263156c2
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/7027
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/southbridge/amd/cimx/sb800')
-rw-r--r-- | src/southbridge/amd/cimx/sb800/late.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/southbridge/amd/cimx/sb800/late.c b/src/southbridge/amd/cimx/sb800/late.c index 7d6e221a6f..cbb3797636 100644 --- a/src/southbridge/amd/cimx/sb800/late.c +++ b/src/southbridge/amd/cimx/sb800/late.c @@ -147,10 +147,19 @@ static void lpc_init(device_t dev) printk(BIOS_DEBUG, "SB800 - Late.c - lpc_init - End.\n"); } +unsigned long acpi_fill_mcfg(unsigned long current) +{ + /* Just a dummy */ + return current; +} + static struct device_operations lpc_ops = { .read_resources = lpc_read_resources, .set_resources = lpc_set_resources, .enable_resources = pci_dev_enable_resources, +#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES) && IS_ENABLED(CONFIG_PER_DEVICE_ACPI_TABLES) + .write_acpi_tables = acpi_write_hpet, +#endif .init = lpc_init, .scan_bus = scan_static_bus, .ops_pci = &lops_pci, |