aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/amd/agesa/family16kb/northbridge.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/northbridge/amd/agesa/family16kb/northbridge.c')
-rw-r--r--src/northbridge/amd/agesa/family16kb/northbridge.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/northbridge/amd/agesa/family16kb/northbridge.c b/src/northbridge/amd/agesa/family16kb/northbridge.c
index def29d1f87..849f40cbd2 100644
--- a/src/northbridge/amd/agesa/family16kb/northbridge.c
+++ b/src/northbridge/amd/agesa/family16kb/northbridge.c
@@ -740,9 +740,12 @@ static void domain_enable_resources(device_t dev)
AGESAWRAPPER(fchs3laterestore);
/* Must be called after PCI enumeration and resource allocation */
- if (!acpi_is_wakeup_s3())
- AGESAWRAPPER(amdinitmid);
+ if (!acpi_is_wakeup_s3()) {
+ /* Enable MMIO on AMD CPU Address Map Controller */
+ agesawrapper_amdinitcpuio();
+ AGESAWRAPPER(amdinitmid);
+ }
printk(BIOS_DEBUG, " ader - leaving domain_enable_resources.\n");
}