Keith Hui has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/76983?usp=email )
Change subject: mb/samsung/stumpy: Add Haswell-style SPD info ......................................................................
mb/samsung/stumpy: Add Haswell-style SPD info
Change-Id: I2ae82bfcbc22088092cad2c34fd81ac53c4669a2 Signed-off-by: Keith Hui buurin@gmail.com --- M src/mainboard/samsung/stumpy/early_init.c 1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/83/76983/1
diff --git a/src/mainboard/samsung/stumpy/early_init.c b/src/mainboard/samsung/stumpy/early_init.c index a9a9fe8..bc523e6 100644 --- a/src/mainboard/samsung/stumpy/early_init.c +++ b/src/mainboard/samsung/stumpy/early_init.c @@ -115,6 +115,12 @@ pei_data->system_type = 0; // 0 Mobile, 1 Desktop/Server }
+void mb_get_spd_map(struct spd_info *spdi) +{ + spdi->addresses[0] = 0x50; + spdi->addresses[2] = 0x52; +} + void mainboard_get_spd(spd_raw_data *spd, bool id_only) { read_spd(&spd[0], 0x50, id_only);