aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/tigerlake/romstage
diff options
context:
space:
mode:
authorJamie Ryu <jamie.m.ryu@intel.com>2019-11-05 19:19:29 -0800
committerPatrick Georgi <pgeorgi@google.com>2020-03-11 14:43:25 +0000
commita02f00e5d6aa8693bfd4a8c66b89c85539555329 (patch)
treed7941392a49b8bb51b280e19107264c7b69e49b9 /src/soc/intel/tigerlake/romstage
parentfe2a4c1001dcb92947616213855feccf4495e479 (diff)
soc/intel/tigerlake: Save DIMM info by available nodes
TEST=Verified that dmidecode produces output identical to private repo Signed-off-by: Jamie Ryu <jamie.m.ryu@intel.com> Change-Id: I951ea94c280b7dd5b67f320a264d13fca82a4596 Reviewed-on: https://review.coreboot.org/c/coreboot/+/39359 Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Caveh Jalali <caveh@chromium.org> Reviewed-by: Wonkyu Kim <wonkyu.kim@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/tigerlake/romstage')
-rw-r--r--src/soc/intel/tigerlake/romstage/romstage.c73
1 files changed, 40 insertions, 33 deletions
diff --git a/src/soc/intel/tigerlake/romstage/romstage.c b/src/soc/intel/tigerlake/romstage/romstage.c
index 17efc98fac..f592bb0574 100644
--- a/src/soc/intel/tigerlake/romstage/romstage.c
+++ b/src/soc/intel/tigerlake/romstage/romstage.c
@@ -37,22 +37,23 @@
/* Save the DIMM information for SMBIOS table 17 */
static void save_dimm_info(void)
{
- int channel, dimm, dimm_max, index;
+ int node, channel, dimm, dimm_max, index;
size_t hob_size;
const CONTROLLER_INFO *ctrlr_info;
const CHANNEL_INFO *channel_info;
const DIMM_INFO *src_dimm;
struct dimm_info *dest_dimm;
struct memory_info *mem_info;
- const MEMORY_INFO_DATA_HOB *memory_info_hob;
+ const MEMORY_INFO_DATA_HOB *meminfo_hob;
const uint8_t smbios_memory_info_guid[16] =
FSP_SMBIOS_MEMORY_INFO_GUID;
+ const uint8_t *serial_num;
/* Locate the memory info HOB, presence validated by raminit */
- memory_info_hob = fsp_find_extension_hob_by_guid(
+ meminfo_hob = fsp_find_extension_hob_by_guid(
smbios_memory_info_guid,
&hob_size);
- if (memory_info_hob == NULL || hob_size == 0) {
+ if (meminfo_hob == NULL || hob_size == 0) {
printk(BIOS_ERR, "SMBIOS MEMORY_INFO_DATA_HOB not found\n");
return;
}
@@ -68,40 +69,46 @@ static void save_dimm_info(void)
}
memset(mem_info, 0, sizeof(*mem_info));
- /* Describe the first N DIMMs in the system */
+ /* Save available DIMM information */
index = 0;
dimm_max = ARRAY_SIZE(mem_info->dimm);
- ctrlr_info = &memory_info_hob->Controller[0];
- for (channel = 0; channel < MAX_CH && index < dimm_max; channel++) {
- channel_info = &ctrlr_info->ChannelInfo[channel];
- if (channel_info->Status != CHANNEL_PRESENT)
- continue;
- for (dimm = 0; dimm < MAX_DIMM && index < dimm_max; dimm++) {
- src_dimm = &channel_info->DimmInfo[dimm];
- dest_dimm = &mem_info->dimm[index];
-
- if (src_dimm->Status != DIMM_PRESENT)
+ for (node = 0; node < MAX_NODE; node++) {
+ ctrlr_info = &meminfo_hob->Controller[node];
+ for (channel = 0; channel < MAX_CH && index < dimm_max;
+ channel++) {
+ channel_info = &ctrlr_info->ChannelInfo[channel];
+ if (channel_info->Status != CHANNEL_PRESENT)
continue;
- u8 memProfNum = memory_info_hob->MemoryProfile;
+ for (dimm = 0; dimm < MAX_DIMM && index < dimm_max;
+ dimm++) {
+ src_dimm = &channel_info->DimmInfo[dimm];
+ dest_dimm = &mem_info->dimm[index];
+ if (src_dimm->Status != DIMM_PRESENT)
+ continue;
+
+ u8 memProfNum = meminfo_hob->MemoryProfile;
+ serial_num = src_dimm->SpdSave +
+ SPD_SAVE_OFFSET_SERIAL;
- /* Populate the DIMM information */
- dimm_info_fill(dest_dimm,
- src_dimm->DimmCapacity,
- memory_info_hob->MemoryType,
- memory_info_hob->ConfiguredMemoryClockSpeed,
- src_dimm->RankInDimm,
- channel_info->ChannelId,
- src_dimm->DimmId,
- (const char *)src_dimm->ModulePartNum,
- sizeof(src_dimm->ModulePartNum),
- src_dimm->SpdSave + SPD_SAVE_OFFSET_SERIAL,
- memory_info_hob->DataWidth,
- memory_info_hob->VddVoltage[memProfNum],
- memory_info_hob->EccSupport,
- src_dimm->MfgId,
- src_dimm->SpdModuleType);
- index++;
+ /* Populate the DIMM information */
+ dimm_info_fill(dest_dimm,
+ src_dimm->DimmCapacity,
+ meminfo_hob->MemoryType,
+ meminfo_hob->ConfiguredMemoryClockSpeed,
+ src_dimm->RankInDimm,
+ channel_info->ChannelId,
+ src_dimm->DimmId,
+ (const char *)src_dimm->ModulePartNum,
+ sizeof(src_dimm->ModulePartNum),
+ serial_num,
+ meminfo_hob->DataWidth,
+ meminfo_hob->VddVoltage[memProfNum],
+ meminfo_hob->EccSupport,
+ src_dimm->MfgId,
+ src_dimm->SpdModuleType);
+ index++;
+ }
}
}
mem_info->dimm_cnt = index;