summaryrefslogtreecommitdiffstats
path: root/src/northbridge/amd/pi/00730F01/state_machine.c
diff options
context:
space:
mode:
authorMichał Żygowski <michal.zygowski@3mdeb.com>2020-03-19 15:39:12 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-03-23 19:29:09 +0000
commit3fbd2af112bb428e7894a03cd24ffeae9ace1763 (patch)
treedaad834e3968252224f67729a856b3f98338633e /src/northbridge/amd/pi/00730F01/state_machine.c
parent208318cdf4069778bdb60f689129e3207098bb82 (diff)
downloadcoreboot-3fbd2af112bb428e7894a03cd24ffeae9ace1763.tar.gz
coreboot-3fbd2af112bb428e7894a03cd24ffeae9ace1763.tar.bz2
coreboot-3fbd2af112bb428e7894a03cd24ffeae9ace1763.zip
nb/amd/pi/00730F01/state_machine.c: unhardcode IOAPIC2 address
Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com> Change-Id: I95964ac6b5939f66c40bd56939bdf532a72d75ce Reviewed-on: https://review.coreboot.org/c/coreboot/+/39701 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/northbridge/amd/pi/00730F01/state_machine.c')
-rw-r--r--src/northbridge/amd/pi/00730F01/state_machine.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/northbridge/amd/pi/00730F01/state_machine.c b/src/northbridge/amd/pi/00730F01/state_machine.c
index 4a049e5cef44..d78c575ef3b3 100644
--- a/src/northbridge/amd/pi/00730F01/state_machine.c
+++ b/src/northbridge/amd/pi/00730F01/state_machine.c
@@ -19,6 +19,7 @@
#include <device/device.h>
#include <northbridge/amd/agesa/state_machine.h>
#include <northbridge/amd/agesa/agesa_helper.h>
+#include <northbridge/amd/pi/nb_common.h>
void platform_BeforeInitReset(struct sysinfo *cb, AMD_RESET_PARAMS *Reset)
{
@@ -63,7 +64,7 @@ void platform_BeforeInitMid(struct sysinfo *cb, AMD_MID_PARAMS *Mid)
/* 0 iGpuVgaAdapter, 1 iGpuVgaNonAdapter; */
Mid->GnbMidConfiguration.iGpuVgaMode = 0;
- Mid->GnbMidConfiguration.GnbIoapicAddress = 0xFEC20000;
+ Mid->GnbMidConfiguration.GnbIoapicAddress = IO_APIC2_ADDR;
}
void platform_BeforeInitLate(struct sysinfo *cb, AMD_LATE_PARAMS *Late)