diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-10-05 14:08:28 +0200 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-10-19 09:56:54 +0200 |
commit | a3bdbcc11e9f2d9a83c0ee0a7cfc4fa318341c03 (patch) | |
tree | 5ab7be2aec1a972e3726b25f34fd0ccbe83e3be7 /src/northbridge/intel/e7501 | |
parent | 26f297e98109d8dd6e09dcb69ec371463732e464 (diff) |
e7501: Move to perdev ACPI
Change-Id: Ic8472745c2ff0c68fd63b51d1a149a11be1650e9
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/7047
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/northbridge/intel/e7501')
-rw-r--r-- | src/northbridge/intel/e7501/Kconfig | 1 | ||||
-rw-r--r-- | src/northbridge/intel/e7501/northbridge.c | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/northbridge/intel/e7501/Kconfig b/src/northbridge/intel/e7501/Kconfig index c8219e89a2..88c0b45fbc 100644 --- a/src/northbridge/intel/e7501/Kconfig +++ b/src/northbridge/intel/e7501/Kconfig @@ -1,4 +1,5 @@ config NORTHBRIDGE_INTEL_E7501 bool select HAVE_DEBUG_RAM_SETUP + select PER_DEVICE_ACPI_TABLES diff --git a/src/northbridge/intel/e7501/northbridge.c b/src/northbridge/intel/e7501/northbridge.c index b0b150d047..2efa787ce3 100644 --- a/src/northbridge/intel/e7501/northbridge.c +++ b/src/northbridge/intel/e7501/northbridge.c @@ -3,11 +3,23 @@ #include <stdint.h> #include <device/device.h> #include <device/pci.h> +#include <arch/acpi.h> #include <cpu/cpu.h> #include <stdlib.h> #include <string.h> #include <cbmem.h> +#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES) + +unsigned long acpi_fill_mcfg(unsigned long current) +{ + /* Just a dummy */ + return current; +} + +#endif + + static void pci_domain_set_resources(device_t dev) { device_t mc_dev; |