diff options
author | David Milosevic <David.Milosevic@9elements.com> | 2022-10-18 19:17:19 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-17 17:51:46 +0000 |
commit | 6be82a4cd8231a496ebe2e7cf6605150cb22e1f4 (patch) | |
tree | ed6561863f2eb264854af7e204838dcf7c5a40d0 /src/include | |
parent | 6943fc769cf4955146ef584035cef504dd681839 (diff) |
soc/intel: Add node_num to dimm_info struct + adjust dimm_info_fill
The dimm_info structure (defined in src/include/memory_info.h)
currently does not hold information about the DIMM's
node/controller ID.
This patch extends the dimm_info structure by adding a new field for
the node ID, called node_num. Also, adapt the dimm_info_fill()
function accordingly to populate the newly-added field.
Background: These changes are necessary for the Atlas mainboard, where
we are currently experiencing issues with the DIMMs device/bank
locator. Our 2 DIMMs share the same CHANNEL and DIMM ID but have a
distinct NODE ID. By looking at the smbios table we see
Channel-0-DIMM-0 for both DIMMs. Thus, we need their NODE IDs in order
to distinguish them.
This patch was tested by building and booting for the Alderlake-P
RVP board, which has the same DIMM slot configuration as the
Prodrive Atlas mainboard.
Signed-off-by: David Milosevic <David.Milosevic@9elements.com>
Change-Id: I6ffa5bdff0ba0e3c4a4a51f2419291fd1278cd68
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68525
Reviewed-by: Jonathan Zhang <jonzhang@fb.com>
Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/memory_info.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/memory_info.h b/src/include/memory_info.h index 676c17022c..7534a8144e 100644 --- a/src/include/memory_info.h +++ b/src/include/memory_info.h @@ -33,7 +33,17 @@ struct dimm_info { */ uint16_t ddr_frequency; uint8_t rank_per_dimm; + /* + * Memory-Controller-ID + */ + uint8_t ctrlr_num; + /* + * Channel-ID + */ uint8_t channel_num; + /* + * DIMM-ID + */ uint8_t dimm_num; uint8_t bank_locator; /* |