summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/import/chips/p9/procedures/hwp/memory/lib/spd/spd_factory.C5
-rw-r--r--src/import/generic/memory/lib/spd/spd_checker.H3
-rw-r--r--src/import/generic/memory/lib/spd/spd_factory_pattern.C3
-rw-r--r--src/import/generic/memory/lib/utils/shared/mss_generic_consts.H3
4 files changed, 13 insertions, 1 deletions
diff --git a/src/import/chips/p9/procedures/hwp/memory/lib/spd/spd_factory.C b/src/import/chips/p9/procedures/hwp/memory/lib/spd/spd_factory.C
index 70904130f..be8343c71 100644
--- a/src/import/chips/p9/procedures/hwp/memory/lib/spd/spd_factory.C
+++ b/src/import/chips/p9/procedures/hwp/memory/lib/spd/spd_factory.C
@@ -5,7 +5,8 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2016,2018 */
+/* Contributors Listed Below - COPYRIGHT 2016,2019 */
+/* [+] Evan Lojewski */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -97,6 +98,8 @@ fapi2::ReturnCode raw_card_factory(const fapi2::Target<TARGET_TYPE_DIMM>& i_targ
switch(l_dimm_type)
{
case RDIMM:
+ case SORDIMM:
+ case MINIRDIMM:
// TODO:RTC178807 - Update how NVDIMMs are handled once more are up and running in the lab
// NVDIMM is currently considered differently than all other rdimm raw cards, due to settings differences
diff --git a/src/import/generic/memory/lib/spd/spd_checker.H b/src/import/generic/memory/lib/spd/spd_checker.H
index cb4eb371a..0b2a33076 100644
--- a/src/import/generic/memory/lib/spd/spd_checker.H
+++ b/src/import/generic/memory/lib/spd/spd_checker.H
@@ -6,6 +6,7 @@
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2017 */
+/* [+] Evan Lojewski */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -186,6 +187,8 @@ static inline bool is_dimm_type_valid(const uint8_t i_dimm_type)
case RDIMM:
case LRDIMM:
case DDIMM:
+ case SORDIMM:
+ case MINIRDIMM:
l_result = true;
break;
diff --git a/src/import/generic/memory/lib/spd/spd_factory_pattern.C b/src/import/generic/memory/lib/spd/spd_factory_pattern.C
index cb934265d..3127af5a7 100644
--- a/src/import/generic/memory/lib/spd/spd_factory_pattern.C
+++ b/src/import/generic/memory/lib/spd/spd_factory_pattern.C
@@ -6,6 +6,7 @@
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2018 */
+/* [+] Evan Lojewski */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -295,6 +296,8 @@ fapi2::ReturnCode factories::dimm_module_select_param(parameters& o_param) const
switch(iv_dimm_type)
{
case RDIMM:
+ case SORDIMM:
+ case MINIRDIMM:
o_param = RDIMM_MODULE;
break;
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 d017933bb..ae4f9c2fc 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 HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2018 */
+/* [+] 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
OpenPOWER on IntegriCloud