From 9842ad8ac5256d1800490c392b8cf7e4edd21ddc Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Wed, 13 Jun 2012 16:31:50 -0700 Subject: Fix automatic ME detection in finalize The ME needs to be talked to through the PCIe memory mapped config space. Change-Id: Ic2c5a572a126722a08a82d95df13d11507586c6b Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/1284 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich --- src/southbridge/intel/bd82x6x/me.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/southbridge/intel/bd82x6x/me.c b/src/southbridge/intel/bd82x6x/me.c index 0c40ab4276..25b88b98bb 100644 --- a/src/southbridge/intel/bd82x6x/me.c +++ b/src/southbridge/intel/bd82x6x/me.c @@ -533,7 +533,7 @@ static void intel_me7_finalize_smm(void) void intel_me_finalize_smm(void) { - u32 did = pci_read_config32(PCH_ME_DEV, PCI_VENDOR_ID); + u32 did = pcie_read_config32(PCH_ME_DEV, PCI_VENDOR_ID); switch (did) { case 0x80861c3a: intel_me7_finalize_smm(); -- cgit v1.2.3