From 4596229eab9f4250a465af9e42ddf67731800a94 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 29 Dec 2020 11:20:53 -0700 Subject: [PATCH] soc/intel/tigerlake: Allow mixed topology where one slot is unfilled Change-Id: Idf37290a410a2e31549e26e852b94f81fc939061 --- src/soc/intel/tigerlake/meminit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/intel/tigerlake/meminit.c b/src/soc/intel/tigerlake/meminit.c index 7e830f051f..0ca9323875 100644 --- a/src/soc/intel/tigerlake/meminit.c +++ b/src/soc/intel/tigerlake/meminit.c @@ -378,7 +378,7 @@ void meminit_ddr4(FSP_M_CONFIG *mem_cfg, const struct mb_ddr4_cfg *board_cfg, read_sodimm_spd(info, &spd_sodimm_blk); if ((info->topology == MIXED) && (mem_cfg->MemorySpdDataLen != spd_sodimm_blk.len)) - die("Mixed topology has incorrect length.\n"); + printk(BIOS_ERR, "Mixed topology has incorrect length: %d != %d.\n", mem_cfg->MemorySpdDataLen, spd_sodimm_blk.len); else mem_cfg->MemorySpdDataLen = spd_sodimm_blk.len; }