From 5f9c6734fc9bbe69c007c46c8ec6f314bd5522a8 Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Wed, 28 Jun 2017 16:42:51 +0200 Subject: lib/spd_bin: Use proper I2C addresses Use the plain address instead of the weird shifted encoding (e.g. if we'd use `0xa0` as address, it's actually `0x50` encoded into a write command). Change-Id: I6febb2e04e1c6de4294dfa37bde16b147a80b7a8 Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/20405 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin Reviewed-by: Furquan Shaikh --- src/mainboard/intel/kblrvp/romstage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mainboard/intel/kblrvp') diff --git a/src/mainboard/intel/kblrvp/romstage.c b/src/mainboard/intel/kblrvp/romstage.c index 9082254385..7bfbe1c744 100644 --- a/src/mainboard/intel/kblrvp/romstage.c +++ b/src/mainboard/intel/kblrvp/romstage.c @@ -51,7 +51,7 @@ void mainboard_memory_init_params(FSPM_UPD *mupd) mem_cfg->MemorySpdPtr00 = (uintptr_t)rdev_mmap_full(&spd_rdev); } else { /* for CONFIG_BOARD_INTEL_KBLRVP7 */ struct spd_block blk = { - .addr_map = { 0xa0, 0xa2, 0xa4, 0xa6, }, + .addr_map = { 0x50, 0x51, 0x52, 0x53, }, }; mem_cfg->DqPinsInterleaved = 1; -- cgit v1.2.3