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/purism/librem13v2/romstage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mainboard/purism') diff --git a/src/mainboard/purism/librem13v2/romstage.c b/src/mainboard/purism/librem13v2/romstage.c index bd5520a7c4..c8c3cd9510 100644 --- a/src/mainboard/purism/librem13v2/romstage.c +++ b/src/mainboard/purism/librem13v2/romstage.c @@ -35,7 +35,7 @@ void mainboard_memory_init_params(struct romstage_params *params, MEMORY_INIT_UPD *memory_params) { struct spd_block blk = { - .addr_map = { 0xa0 }, + .addr_map = { 0x50 }, }; memory_params->DqPinsInterleaved = 1; -- cgit v1.2.3