Keith Hui has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/76990?usp=email )
Change subject: mb/msi/ms7707: Add Haswell-style SPD info ......................................................................
mb/msi/ms7707: Add Haswell-style SPD info
Change-Id: Ia86c29976af0405ff6d4e9ee5bfe664c071715cd Signed-off-by: Keith Hui buurin@gmail.com --- M src/mainboard/msi/ms7707/early_init.c 1 file changed, 7 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/90/76990/1
diff --git a/src/mainboard/msi/ms7707/early_init.c b/src/mainboard/msi/ms7707/early_init.c index a859cd1..0a740c6 100644 --- a/src/mainboard/msi/ms7707/early_init.c +++ b/src/mainboard/msi/ms7707/early_init.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */
#include <device/pci_ops.h> +#include <northbridge/intel/sandybridge/raminit.h> #include <northbridge/intel/sandybridge/raminit_native.h> #include <southbridge/intel/common/pmbase.h> #include <southbridge/intel/bd82x6x/pch.h> @@ -35,3 +36,9 @@ read_spd(&spd[0], 0x50, id_only); read_spd(&spd[2], 0x52, id_only); } + +void mb_get_spd_map(struct spd_info *spdi) +{ + spdi->addresses[0] = 0x50; + spdi->addresses[2] = 0x52; +}