Keith Hui has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/76984?usp=email )
Change subject: mb/sapphire/pureplatinumh61: Convert to Haswell-style SPD info ......................................................................
mb/sapphire/pureplatinumh61: Convert to Haswell-style SPD info
mainboard_get_spd() to be removed later.
Change-Id: I64c12397e2f74c8d30f20f876e3ee89fe598a81a Signed-off-by: Keith Hui buurin@gmail.com --- M src/mainboard/sapphire/pureplatinumh61/early_init.c 1 file changed, 7 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/84/76984/1
diff --git a/src/mainboard/sapphire/pureplatinumh61/early_init.c b/src/mainboard/sapphire/pureplatinumh61/early_init.c index f2ab137..e856988 100644 --- a/src/mainboard/sapphire/pureplatinumh61/early_init.c +++ b/src/mainboard/sapphire/pureplatinumh61/early_init.c @@ -2,6 +2,7 @@
#include <device/pci_ops.h> #include <device/pci_def.h> +#include <northbridge/intel/sandybridge/raminit.h> #include <northbridge/intel/sandybridge/raminit_native.h> #include <southbridge/intel/bd82x6x/pch.h>
@@ -32,3 +33,9 @@ read_spd(&spd[0], 0x50, id_only); read_spd(&spd[2], 0x51, id_only); } + +void mb_get_spd_map(struct spd_info *spdi) +{ + spdi->addresses[0] = 0x50; + spdi->addresses[2] = 0x51; +}