diff options
| author | Evan Lojewski <github@meklort.com> | 2019-01-29 09:18:53 -0600 |
|---|---|---|
| committer | Raja Das <rajadas2@in.ibm.com> | 2019-07-26 00:54:10 -0500 |
| commit | caacd24f8b88e0510d0e200162542006a80f554c (patch) | |
| tree | e0099c6c10cc7c73013a4f3ee617899b8110a83e /src/import/generic/memory/lib/utils | |
| parent | 92b5c676fe4433c08d814e5bf5abb44062717485 (diff) | |
| download | talos-sbe-caacd24f8b88e0510d0e200162542006a80f554c.tar.gz talos-sbe-caacd24f8b88e0510d0e200162542006a80f554c.zip | |
Update to allow DDR4-SORDIMM modules to be used [3].
Add support for the module type in the SPD parser.
This change has been tested with the VR9FR2G7228JBKSBD4 module
from Viking Technologies: 2666MHz DDR4-SORDIMM, rank 2, 16GB
Note- Above mentioned module need an additional patch due to an
unexpected SPD manufacturer being detected.
Change-Id: I1f8aaac4bc1359f2bbd29c6afa37a16f751b1664
Original-Change-Id: Iaf8d78579381c48cbe6b735d02dd624855d0e57e
Signed-off-by: Evan Lojewski <github@meklort.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/71040
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Louis Stermole <stermole@us.ibm.com>
Reviewed-by: STEPHEN GLANCY <sglancy@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Diffstat (limited to 'src/import/generic/memory/lib/utils')
| -rw-r--r-- | src/import/generic/memory/lib/utils/shared/mss_generic_consts.H | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/import/generic/memory/lib/utils/shared/mss_generic_consts.H b/src/import/generic/memory/lib/utils/shared/mss_generic_consts.H index 8f472504..be433029 100644 --- a/src/import/generic/memory/lib/utils/shared/mss_generic_consts.H +++ b/src/import/generic/memory/lib/utils/shared/mss_generic_consts.H @@ -6,6 +6,7 @@ /* OpenPOWER sbe Project */ /* */ /* Contributors Listed Below - COPYRIGHT 2018,2019 */ +/* [+] Evan Lojewski */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -241,6 +242,8 @@ enum dimm_type RDIMM = 0b0001, LRDIMM = 0b0100, DDIMM = 0b1010, + SORDIMM = 0b1000, + MINIRDIMM = 0b0101, }; enum guard_band : uint16_t |

