summaryrefslogtreecommitdiffstats
path: root/src/import/chips
diff options
context:
space:
mode:
authorDonald Washburn <dwashbur@us.ibm.com>2017-09-12 11:03:01 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-10-13 13:44:58 -0400
commitcb9cf0ec0fae495a3c37562e3030f397fe802c5b (patch)
tree8625f75e60eceaef9ecee67ef0fec13906d347d2 /src/import/chips
parentf909aa94cc56b852036a5d293bf3baa33714f7cb (diff)
downloadtalos-hostboot-cb9cf0ec0fae495a3c37562e3030f397fe802c5b.tar.gz
talos-hostboot-cb9cf0ec0fae495a3c37562e3030f397fe802c5b.zip
Cleaned up compile issues for vpd accessors
Fixed hostboot compile issues emanating from ekb. * Changed the DimmType type from an enum to an enum class. Enumerators from DimmType were clashing with the consts enum from dimmConsts.H * Removed the writable tag from ATTR_CEN_VPD_... attributes that are backed by functions. * modified getDQAttrISDIMM.mk and getDQSAttrISDIMM.mk to introduce library dependencies instead of directly linking to objects from which the libraries are built. RTC: 178950 Change-Id: Ib3a4d0790dba3a40e13bca09bdc8316a5cdbd219 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/46111 Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Matt K. Light <mklight@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/46117 Reviewed-by: Hostboot Team <hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/chips')
-rwxr-xr-xsrc/import/chips/centaur/procedures/vpd_accessors/getDQAttrISDIMM.mk3
-rwxr-xr-xsrc/import/chips/centaur/procedures/vpd_accessors/getDQSAttrISDIMM.mk3
-rw-r--r--src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttr.C14
-rw-r--r--src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttr.H2
-rw-r--r--src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttrData.C254
-rw-r--r--src/import/chips/centaur/procedures/vpd_accessors/getMBvpdMemoryDataVersion.C10
-rw-r--r--src/import/chips/centaur/procedures/vpd_accessors/getMBvpdSPDXRecordVersion.C10
-rw-r--r--src/import/chips/centaur/procedures/vpd_accessors/getMBvpdVoltageSettingData.C10
-rw-r--r--src/import/chips/centaur/procedures/xml/attribute_info/dimm_spd_vpd_attributes.xml102
9 files changed, 156 insertions, 252 deletions
diff --git a/src/import/chips/centaur/procedures/vpd_accessors/getDQAttrISDIMM.mk b/src/import/chips/centaur/procedures/vpd_accessors/getDQAttrISDIMM.mk
index 349910532..6e333641f 100755
--- a/src/import/chips/centaur/procedures/vpd_accessors/getDQAttrISDIMM.mk
+++ b/src/import/chips/centaur/procedures/vpd_accessors/getDQAttrISDIMM.mk
@@ -26,7 +26,8 @@
# Include the macros and things for MSS procedures
-include 01common.mk
PROCEDURE=getDQAttrISDIMM
-OBJS+=getISDIMMTOC4DAttrs.o getDecompressedISDIMMAttrs.o
+lib$(PROCEDURE)_DEPLIBS+=getISDIMMTOC4DAttrs
+lib$(PROCEDURE)_DEPLIBS+=getDecompressedISDIMMAttrs
$(PROCEDURE)_DEPLIBS+=mss_generic
$(eval $(call ADD_MEMORY_INCDIRS,$(PROCEDURE)))
$(call BUILD_PROCEDURE)
diff --git a/src/import/chips/centaur/procedures/vpd_accessors/getDQSAttrISDIMM.mk b/src/import/chips/centaur/procedures/vpd_accessors/getDQSAttrISDIMM.mk
index c2eec1e7a..6a1600dd8 100755
--- a/src/import/chips/centaur/procedures/vpd_accessors/getDQSAttrISDIMM.mk
+++ b/src/import/chips/centaur/procedures/vpd_accessors/getDQSAttrISDIMM.mk
@@ -26,7 +26,8 @@
# Include the macros and things for MSS procedures
-include 01common.mk
PROCEDURE=getDQSAttrISDIMM
-OBJS+=getISDIMMTOC4DAttrs.o getDecompressedISDIMMAttrs.o
+lib$(PROCEDURE)_DEPLIBS+=getISDIMMTOC4DAttrs
+lib$(PROCEDURE)_DEPLIBS+=getDecompressedISDIMMAttrs
$(PROCEDURE)_DEPLIBS+=mss_generic
$(eval $(call ADD_MEMORY_INCDIRS,$(PROCEDURE)))
$(call BUILD_PROCEDURE)
diff --git a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttr.C b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttr.C
index e7264a39c..015317073 100644
--- a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttr.C
+++ b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttr.C
@@ -223,7 +223,7 @@ extern "C"
{
fapi2::Target<fapi2::TARGET_TYPE_MEMBUF_CHIP> l_mbTarget;
uint8_t l_pos = NUM_PORTS; //initialize to out of range value (+1)
- DimmType l_dimmType = ALL_DIMM;
+ DimmType l_dimmType = DimmType::ALL_DIMM;
const MBvpdAttrDef* l_pAttrDef = NULL;
VpdVersion l_version = INVALID_VER; // invalid vpd value
@@ -351,18 +351,18 @@ extern "C"
if (l_customDimm == fapi2::ENUM_ATTR_CEN_SPD_CUSTOM_YES)
{
- o_dimmType = CDIMM;
+ o_dimmType = DimmType::CDIMM;
FAPI_DBG("findDimmInfo: CDIMM TYPE!!!");
}
else
{
- o_dimmType = ISDIMM;
+ o_dimmType = DimmType::ISDIMM;
FAPI_DBG("findDimmInfo: ISDIMM TYPE!!!");
}
}
else
{
- o_dimmType = ISDIMM;
+ o_dimmType = DimmType::ISDIMM;
FAPI_DBG("findDimmInfo: ISDIMM TYPE (dimm array size = 0)");
}
@@ -413,7 +413,7 @@ extern "C"
// Couldn't get the Version from attribute
// So proceed to find the version and update the attrib
- if (CDIMM == i_dimmType)
+ if (DimmType::CDIMM == i_dimmType)
{
l_record = fapi2::MBVPD_RECORD_VSPD;
}
@@ -570,7 +570,7 @@ extern "C"
for (; i < g_MBVPD_ATTR_DEF_array_size; i++)
{
if ( (g_MBVPD_ATTR_DEF_array[i].iv_attrId == i_attr) &&
- ((ALL_DIMM == g_MBVPD_ATTR_DEF_array[i].iv_dimmType) ||
+ ((DimmType::ALL_DIMM == g_MBVPD_ATTR_DEF_array[i].iv_dimmType) ||
(i_dimmType == g_MBVPD_ATTR_DEF_array[i].iv_dimmType)) )
{
@@ -642,7 +642,7 @@ extern "C"
FAPI_DBG("readKeyword: Read keyword %d ", l_keyword);
- if (CDIMM != i_dimmType)
+ if (DimmType::CDIMM != i_dimmType)
{
if (MBVPD_KEYWORD_MT == l_keyword)
{
diff --git a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttr.H b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttr.H
index 6784f474b..e9e6dcd23 100644
--- a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttr.H
+++ b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttr.H
@@ -145,7 +145,7 @@ const uint8_t NUM_DIMMS = 2; //Each port has 2 DIMMs
const uint8_t NUM_RANKS = 4; //Number of ranks
// DIMM types
-enum DimmType
+enum class DimmType
{
ALL_DIMM = 0, // Same for all Dimm types
CDIMM = 1,
diff --git a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttrData.C b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttrData.C
index daecf4da5..69e3f6310 100644
--- a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttrData.C
+++ b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdAttrData.C
@@ -55,46 +55,46 @@ const MBvpdAttrDef g_MBVPD_ATTR_DEF_array [] =
// Note: Ideally, all new exception will be in this section and be for both
// ISDIMMs and CDIMMMs
//----------------------------------------------------------------------------------
- {fapi2::ATTR_CEN_VPD_MR_VERSION_BYTE, ALL_DIMM, VM_01, MBVPD_KEYWORD_MR, 0, UINT8, 0},
- {fapi2::ATTR_CEN_VPD_MR_DATA_CONTROL_BYTE, ALL_DIMM, VM_01, MBVPD_KEYWORD_MR, 1, UINT8, 0},
- {fapi2::ATTR_CEN_VPD_MT_VERSION_BYTE, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 0, UINT8, 0},
- {fapi2::ATTR_CEN_VPD_MT_DATA_CONTROL_BYTE, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 1, UINT8, 0},
- {fapi2::ATTR_CEN_VPD_PERIODIC_MEMCAL_MODE_OPTIONS, ALL_DIMM, VM_01, MBVPD_KEYWORD_MR, 50, UINT32_BY2 | UINT16_DATA, 0},
- {fapi2::ATTR_CEN_VPD_DRAM_RTT_PARK, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 56, UINT8_BY2_BY2_BY4 | XLATE_RTT_PARK, 0},
- {fapi2::ATTR_CEN_VPD_RD_CTR_WINDAGE_OFFSET, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 64, UINT32_BY2 | UINT16_DATA, 0},
-
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, ISDIMM, VM_01, MBVPD_KEYWORD_MT, 68, UINT8_BY2_BY2 | BOTH_DIMMS, 0},
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, ISDIMM, VM_01, MBVPD_KEYWORD_MT, 66, UINT32_BY2_BY2 | UINT8_DATA, 0},
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, CDIMM, VM_01, MBVPD_KEYWORD_MT, 68, UINT8_BY2_BY2 | DEFAULT_VALUE, 0},
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, CDIMM, VM_01, MBVPD_KEYWORD_MT, 66, UINT32_BY2_BY2 | DEFAULT_VALUE, 0},
- {fapi2::ATTR_CEN_VPD_RD_VREF, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 34, UINT32_BY2 | UINT8_DATA | XLATE_RD_VREF, 0},
- {fapi2::ATTR_CEN_VPD_DRAM_WR_VREF, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 35, UINT32_BY2 | UINT8_DATA | XLATE_WR_VREF, 0},
- {fapi2::ATTR_CEN_VPD_DRAM_WRDDR4_VREF, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 36, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_RCV_IMP_DQ_DQS, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 37, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRV_IMP_DQ_DQS, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 38, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRV_IMP_CNTL, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 39, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRV_IMP_ADDR, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 40, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRV_IMP_CLK, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 41, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRV_IMP_SPCKE, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 42, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_SLEW_RATE_DQ_DQS, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 43, UINT8_BY2 | XLATE_SLEW, 0},
- {fapi2::ATTR_CEN_VPD_SLEW_RATE_CNTL, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 44, UINT8_BY2 | XLATE_SLEW, 0},
- {fapi2::ATTR_CEN_VPD_SLEW_RATE_ADDR, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 45, UINT8_BY2 | XLATE_SLEW, 0},
- {fapi2::ATTR_CEN_VPD_SLEW_RATE_CLK, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 46, UINT8_BY2 | XLATE_SLEW, 0},
- {fapi2::ATTR_CEN_VPD_SLEW_RATE_SPCKE, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 47, UINT8_BY2 | XLATE_SLEW, 0},
- {fapi2::ATTR_CEN_VPD_CKE_PRI_MAP, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 48, UINT32_BY2 | UINT16_DATA, 0},
- {fapi2::ATTR_CEN_VPD_CKE_PWR_MAP, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 50, UINT64 | MERGE, 0},
- {fapi2::ATTR_CEN_VPD_RLO, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 54, UINT8_BY2 | LOW_NIBBLE, 0},
- {fapi2::ATTR_CEN_VPD_WLO, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 54, UINT8_BY2 | HIGH_NIBBLE, 0},
- {fapi2::ATTR_CEN_VPD_GPO, ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 55, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_MR_VERSION_BYTE, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MR, 0, UINT8, 0},
+ {fapi2::ATTR_CEN_VPD_MR_DATA_CONTROL_BYTE, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MR, 1, UINT8, 0},
+ {fapi2::ATTR_CEN_VPD_MT_VERSION_BYTE, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 0, UINT8, 0},
+ {fapi2::ATTR_CEN_VPD_MT_DATA_CONTROL_BYTE, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 1, UINT8, 0},
+ {fapi2::ATTR_CEN_VPD_PERIODIC_MEMCAL_MODE_OPTIONS, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MR, 50, UINT32_BY2 | UINT16_DATA, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_RTT_PARK, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 56, UINT8_BY2_BY2_BY4 | XLATE_RTT_PARK, 0},
+ {fapi2::ATTR_CEN_VPD_RD_CTR_WINDAGE_OFFSET, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 64, UINT32_BY2 | UINT16_DATA, 0},
+
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, DimmType::ISDIMM, VM_01, MBVPD_KEYWORD_MT, 68, UINT8_BY2_BY2 | BOTH_DIMMS, 0},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, DimmType::ISDIMM, VM_01, MBVPD_KEYWORD_MT, 66, UINT32_BY2_BY2 | UINT8_DATA, 0},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, DimmType::CDIMM, VM_01, MBVPD_KEYWORD_MT, 68, UINT8_BY2_BY2 | DEFAULT_VALUE, 0},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, DimmType::CDIMM, VM_01, MBVPD_KEYWORD_MT, 66, UINT32_BY2_BY2 | DEFAULT_VALUE, 0},
+ {fapi2::ATTR_CEN_VPD_RD_VREF, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 34, UINT32_BY2 | UINT8_DATA | XLATE_RD_VREF, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_WR_VREF, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 35, UINT32_BY2 | UINT8_DATA | XLATE_WR_VREF, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_WRDDR4_VREF, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 36, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_RCV_IMP_DQ_DQS, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 37, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRV_IMP_DQ_DQS, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 38, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRV_IMP_CNTL, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 39, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRV_IMP_ADDR, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 40, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRV_IMP_CLK, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 41, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRV_IMP_SPCKE, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 42, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_SLEW_RATE_DQ_DQS, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 43, UINT8_BY2 | XLATE_SLEW, 0},
+ {fapi2::ATTR_CEN_VPD_SLEW_RATE_CNTL, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 44, UINT8_BY2 | XLATE_SLEW, 0},
+ {fapi2::ATTR_CEN_VPD_SLEW_RATE_ADDR, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 45, UINT8_BY2 | XLATE_SLEW, 0},
+ {fapi2::ATTR_CEN_VPD_SLEW_RATE_CLK, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 46, UINT8_BY2 | XLATE_SLEW, 0},
+ {fapi2::ATTR_CEN_VPD_SLEW_RATE_SPCKE, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 47, UINT8_BY2 | XLATE_SLEW, 0},
+ {fapi2::ATTR_CEN_VPD_CKE_PRI_MAP, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 48, UINT32_BY2 | UINT16_DATA, 0},
+ {fapi2::ATTR_CEN_VPD_CKE_PWR_MAP, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 50, UINT64 | MERGE, 0},
+ {fapi2::ATTR_CEN_VPD_RLO, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 54, UINT8_BY2 | LOW_NIBBLE, 0},
+ {fapi2::ATTR_CEN_VPD_WLO, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 54, UINT8_BY2 | HIGH_NIBBLE, 0},
+ {fapi2::ATTR_CEN_VPD_GPO, DimmType::ALL_DIMM, VM_01, MBVPD_KEYWORD_MT, 55, UINT8_BY2, 0},
//----------------------------------------------------------------------------------
// Attribute exceptions to use with SPDX or VSPD VD keyword
// Note: Ideally, all new exception will be in this section and be for both
// ISDIMMs and CDIMMMs
//----------------------------------------------------------------------------------
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, ALL_DIMM, VD_01, MBVPD_KEYWORD_MT, 34, UINT32_BY2_BY2 | UINT8_DATA, 0},
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, ALL_DIMM, VD_01, MBVPD_KEYWORD_MT, 36, UINT8_BY2_BY2 | BOTH_DIMMS, 0},
- {fapi2::ATTR_CEN_VPD_DRAM_WR_VREF, ALL_DIMM, VD_01, MBVPD_KEYWORD_MT, 38, UINT32_BY2 | UINT8_DATA | XLATE_WR_VREF, 0},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, DimmType::ALL_DIMM, VD_01, MBVPD_KEYWORD_MT, 34, UINT32_BY2_BY2 | UINT8_DATA, 0},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, DimmType::ALL_DIMM, VD_01, MBVPD_KEYWORD_MT, 36, UINT8_BY2_BY2 | BOTH_DIMMS, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_WR_VREF, DimmType::ALL_DIMM, VD_01, MBVPD_KEYWORD_MT, 38, UINT32_BY2 | UINT8_DATA | XLATE_WR_VREF, 0},
//----------------------------------------------------------------------------------
// Attribute exceptions to use with VINI VZ keyword
@@ -105,30 +105,30 @@ const MBvpdAttrDef g_MBVPD_ATTR_DEF_array [] =
// Planar ISDIMM changes
// Need to include these exceptions to support early Palmetto and Habanero without the VD keyword & VZ=13
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, ISDIMM, VZ_13, MBVPD_KEYWORD_MT, 34, UINT32_BY2_BY2 | UINT8_DATA, 0},
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, ISDIMM, VZ_13, MBVPD_KEYWORD_MT, 36, UINT8_BY2_BY2 | BOTH_DIMMS, 0},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, DimmType::ISDIMM, VZ_13, MBVPD_KEYWORD_MT, 34, UINT32_BY2_BY2 | UINT8_DATA, 0},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, DimmType::ISDIMM, VZ_13, MBVPD_KEYWORD_MT, 36, UINT8_BY2_BY2 | BOTH_DIMMS, 0},
// Create 3 reserved bytes in V13
- {fapi2::ATTR_CEN_VPD_DRAM_WR_VREF, ISDIMM, VZ_13, MBVPD_KEYWORD_MT, 38, UINT32_BY2 | UINT8_DATA | XLATE_WR_VREF, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_WR_VREF, DimmType::ISDIMM, VZ_13, MBVPD_KEYWORD_MT, 38, UINT32_BY2 | UINT8_DATA | XLATE_WR_VREF, 0},
// Need to include these exceptions to support early Palmetto and Habanero with VZ=11 and 10
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, ISDIMM, ALL_VZ, MBVPD_KEYWORD_MT, 34, UINT32_BY2_BY2 | DEFAULT_VALUE, 0x64},
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, ISDIMM, ALL_VZ, MBVPD_KEYWORD_MT, 35, UINT8_BY2_BY2 | DEFAULT_VALUE, 1},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, DimmType::ISDIMM, ALL_VZ, MBVPD_KEYWORD_MT, 34, UINT32_BY2_BY2 | DEFAULT_VALUE, 0x64},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, DimmType::ISDIMM, ALL_VZ, MBVPD_KEYWORD_MT, 35, UINT8_BY2_BY2 | DEFAULT_VALUE, 1},
// CDIMM changes in V60 (ascii 10)
// Need to include these exceptions to support pre DD 2.0 centaurs
- {fapi2::ATTR_CEN_VPD_TSYS_ADR, CDIMM, VZ_10, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | PORT00, 0},
- {fapi2::ATTR_CEN_VPD_TSYS_ADR, CDIMM, ALL_VZ, MBVPD_KEYWORD_MR, 51, UINT8_BY2 | PORT00, 0},
+ {fapi2::ATTR_CEN_VPD_TSYS_ADR, DimmType::CDIMM, VZ_10, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | PORT00, 0},
+ {fapi2::ATTR_CEN_VPD_TSYS_ADR, DimmType::CDIMM, ALL_VZ, MBVPD_KEYWORD_MR, 51, UINT8_BY2 | PORT00, 0},
- {fapi2::ATTR_CEN_VPD_TSYS_DP18, CDIMM, VZ_10, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | PORT11, 0},
- {fapi2::ATTR_CEN_VPD_TSYS_DP18, CDIMM, ALL_VZ, MBVPD_KEYWORD_MR, 51, UINT8_BY2 | PORT11, 0},
+ {fapi2::ATTR_CEN_VPD_TSYS_DP18, DimmType::CDIMM, VZ_10, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | PORT11, 0},
+ {fapi2::ATTR_CEN_VPD_TSYS_DP18, DimmType::CDIMM, ALL_VZ, MBVPD_KEYWORD_MR, 51, UINT8_BY2 | PORT11, 0},
- {fapi2::ATTR_CEN_VPD_RLO, CDIMM, VZ_10, MBVPD_KEYWORD_MT, 60, UINT8_BY2 | LOW_NIBBLE, 0},
- {fapi2::ATTR_CEN_VPD_RLO, CDIMM, ALL_VZ, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | LOW_NIBBLE, 0},
+ {fapi2::ATTR_CEN_VPD_RLO, DimmType::CDIMM, VZ_10, MBVPD_KEYWORD_MT, 60, UINT8_BY2 | LOW_NIBBLE, 0},
+ {fapi2::ATTR_CEN_VPD_RLO, DimmType::CDIMM, ALL_VZ, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | LOW_NIBBLE, 0},
- {fapi2::ATTR_CEN_VPD_WLO, CDIMM, VZ_10, MBVPD_KEYWORD_MT, 60, UINT8_BY2 | HIGH_NIBBLE, 0},
- {fapi2::ATTR_CEN_VPD_WLO, CDIMM, ALL_VZ, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | HIGH_NIBBLE, 0},
+ {fapi2::ATTR_CEN_VPD_WLO, DimmType::CDIMM, VZ_10, MBVPD_KEYWORD_MT, 60, UINT8_BY2 | HIGH_NIBBLE, 0},
+ {fapi2::ATTR_CEN_VPD_WLO, DimmType::CDIMM, ALL_VZ, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | HIGH_NIBBLE, 0},
- {fapi2::ATTR_CEN_VPD_GPO, CDIMM, VZ_10, MBVPD_KEYWORD_MT, 61, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_GPO, CDIMM, ALL_VZ, MBVPD_KEYWORD_MR, 50, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_GPO, DimmType::CDIMM, VZ_10, MBVPD_KEYWORD_MT, 61, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_GPO, DimmType::CDIMM, ALL_VZ, MBVPD_KEYWORD_MR, 50, UINT8_BY2, 0},
//----------------------------------------------------------------------------------
// Base Term Data definitions to be used if no other version exceptions
@@ -136,88 +136,88 @@ const MBvpdAttrDef g_MBVPD_ATTR_DEF_array [] =
// Note: No changes are expected in this section
//----------------------------------------------------------------------------------
// Base Term Data definitions to be used if no version exceptions
- {fapi2::ATTR_CEN_VPD_DRAM_RON, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 0, UINT8_BY2_BY2 | XLATE_DRAM_RON, 0},
- {fapi2::ATTR_CEN_VPD_DRAM_RTT_NOM, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 2, UINT8_BY2_BY2_BY4 | XLATE_RTT_NOM, 0},
- {fapi2::ATTR_CEN_VPD_DRAM_RTT_WR, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 10, UINT8_BY2_BY2_BY4 | XLATE_RTT_WR, 0},
- {fapi2::ATTR_CEN_VPD_ODT_RD, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 18, UINT8_BY2_BY2_BY4, 0},
- {fapi2::ATTR_CEN_VPD_ODT_WR, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 26, UINT8_BY2_BY2_BY4, 0},
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 36, UINT8_BY2_BY2 | DEFAULT_VALUE, 0},
- {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 34, UINT32_BY2_BY2 | DEFAULT_VALUE, 0},
- {fapi2::ATTR_CEN_VPD_RD_VREF, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 37, UINT32_BY2 | UINT8_DATA | XLATE_RD_VREF, 0},
- {fapi2::ATTR_CEN_VPD_DRAM_WR_VREF, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 38, UINT32_BY2 | XLATE_WR_VREF, 0},
- {fapi2::ATTR_CEN_VPD_DRAM_WRDDR4_VREF, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 42, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_RCV_IMP_DQ_DQS, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 43, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRV_IMP_DQ_DQS, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 44, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRV_IMP_CNTL, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 45, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRV_IMP_ADDR, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 46, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRV_IMP_CLK, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 47, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRV_IMP_SPCKE, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 48, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_SLEW_RATE_DQ_DQS, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 49, UINT8_BY2 | XLATE_SLEW, 0},
- {fapi2::ATTR_CEN_VPD_SLEW_RATE_CNTL, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 50, UINT8_BY2 | XLATE_SLEW, 0},
- {fapi2::ATTR_CEN_VPD_SLEW_RATE_ADDR, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 51, UINT8_BY2 | XLATE_SLEW, 0},
- {fapi2::ATTR_CEN_VPD_SLEW_RATE_CLK, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 52, UINT8_BY2 | XLATE_SLEW, 0},
- {fapi2::ATTR_CEN_VPD_SLEW_RATE_SPCKE, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 53, UINT8_BY2 | XLATE_SLEW, 0},
- {fapi2::ATTR_CEN_VPD_CKE_PRI_MAP, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 54, UINT32_BY2 | UINT16_DATA, 0},
- {fapi2::ATTR_CEN_VPD_CKE_PWR_MAP, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 56, UINT64 | MERGE, 0},
- {fapi2::ATTR_CEN_VPD_RLO, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 60, UINT8_BY2 | LOW_NIBBLE, 0},
- {fapi2::ATTR_CEN_VPD_WLO, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 60, UINT8_BY2 | HIGH_NIBBLE, 0},
- {fapi2::ATTR_CEN_VPD_GPO, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 61, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_RON, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 0, UINT8_BY2_BY2 | XLATE_DRAM_RON, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_RTT_NOM, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 2, UINT8_BY2_BY2_BY4 | XLATE_RTT_NOM, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_RTT_WR, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 10, UINT8_BY2_BY2_BY4 | XLATE_RTT_WR, 0},
+ {fapi2::ATTR_CEN_VPD_ODT_RD, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 18, UINT8_BY2_BY2_BY4, 0},
+ {fapi2::ATTR_CEN_VPD_ODT_WR, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 26, UINT8_BY2_BY2_BY4, 0},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_OUTPUT_TIMING, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 36, UINT8_BY2_BY2 | DEFAULT_VALUE, 0},
+ {fapi2::ATTR_CEN_VPD_DIMM_RCD_IBT, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 34, UINT32_BY2_BY2 | DEFAULT_VALUE, 0},
+ {fapi2::ATTR_CEN_VPD_RD_VREF, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 37, UINT32_BY2 | UINT8_DATA | XLATE_RD_VREF, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_WR_VREF, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 38, UINT32_BY2 | XLATE_WR_VREF, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_WRDDR4_VREF, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 42, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_RCV_IMP_DQ_DQS, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 43, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRV_IMP_DQ_DQS, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 44, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRV_IMP_CNTL, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 45, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRV_IMP_ADDR, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 46, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRV_IMP_CLK, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 47, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRV_IMP_SPCKE, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 48, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_SLEW_RATE_DQ_DQS, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 49, UINT8_BY2 | XLATE_SLEW, 0},
+ {fapi2::ATTR_CEN_VPD_SLEW_RATE_CNTL, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 50, UINT8_BY2 | XLATE_SLEW, 0},
+ {fapi2::ATTR_CEN_VPD_SLEW_RATE_ADDR, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 51, UINT8_BY2 | XLATE_SLEW, 0},
+ {fapi2::ATTR_CEN_VPD_SLEW_RATE_CLK, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 52, UINT8_BY2 | XLATE_SLEW, 0},
+ {fapi2::ATTR_CEN_VPD_SLEW_RATE_SPCKE, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 53, UINT8_BY2 | XLATE_SLEW, 0},
+ {fapi2::ATTR_CEN_VPD_CKE_PRI_MAP, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 54, UINT32_BY2 | UINT16_DATA, 0},
+ {fapi2::ATTR_CEN_VPD_CKE_PWR_MAP, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 56, UINT64 | MERGE, 0},
+ {fapi2::ATTR_CEN_VPD_RLO, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 60, UINT8_BY2 | LOW_NIBBLE, 0},
+ {fapi2::ATTR_CEN_VPD_WLO, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 60, UINT8_BY2 | HIGH_NIBBLE, 0},
+ {fapi2::ATTR_CEN_VPD_GPO, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MT, 61, UINT8_BY2, 0},
// Base Phase Rotator definitions to be used if no version exceptions
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CLK_P0, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 0, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CLK_P1, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 1, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CLK_P0, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 2, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CLK_P1, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 3, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A0, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 4, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A1, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 5, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A2, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 6, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A3, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 7, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A4, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 8, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A5, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 9, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A6, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 10, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A7, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 11, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A8, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 12, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A9, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 13, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A10, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 14, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A11, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 15, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A12, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 16, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A13, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 17, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A14, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 18, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A15, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 19, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_BA0, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 20, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_BA1, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 21, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_BA2, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 22, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_CASN, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 23, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_RASN, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 24, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_WEN, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 25, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_PAR, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 26, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_ACTN, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 27, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CKE0, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 28, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CKE1, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 29, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CKE2, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 30, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CKE3, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 31, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CSN0, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 32, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CSN1, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 33, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CSN2, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 34, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CSN3, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 35, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_ODT0, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 36, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_ODT1, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 37, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CKE0, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 38, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CKE1, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 39, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CKE2, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 40, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CKE3, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 41, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CSN0, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 42, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CSN1, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 43, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CSN2, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 44, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CSN3, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 45, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_ODT0, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 46, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_ODT1, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 47, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_DRAM_2N_MODE_ENABLED, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 48, UINT8_BY2, 0},
- {fapi2::ATTR_CEN_VPD_TSYS_ADR, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | PORT00, 0},
- {fapi2::ATTR_CEN_VPD_TSYS_DP18, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | PORT11, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CLK_P0, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 0, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CLK_P1, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 1, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CLK_P0, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 2, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CLK_P1, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 3, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A0, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 4, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A1, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 5, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A2, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 6, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A3, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 7, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A4, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 8, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A5, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 9, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A6, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 10, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A7, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 11, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A8, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 12, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A9, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 13, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A10, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 14, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A11, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 15, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A12, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 16, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A13, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 17, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A14, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 18, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_A15, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 19, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_BA0, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 20, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_BA1, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 21, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_BA2, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 22, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_CASN, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 23, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_RASN, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 24, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_CMD_WEN, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 25, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_PAR, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 26, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M_ACTN, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 27, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CKE0, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 28, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CKE1, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 29, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CKE2, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 30, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CKE3, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 31, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CSN0, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 32, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CSN1, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 33, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CSN2, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 34, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_CSN3, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 35, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_ODT0, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 36, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M0_CNTL_ODT1, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 37, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CKE0, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 38, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CKE1, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 39, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CKE2, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 40, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CKE3, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 41, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CSN0, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 42, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CSN1, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 43, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CSN2, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 44, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_CSN3, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 45, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_ODT0, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 46, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_PHASE_ROT_M1_CNTL_ODT1, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 47, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_DRAM_2N_MODE_ENABLED, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 48, UINT8_BY2, 0},
+ {fapi2::ATTR_CEN_VPD_TSYS_ADR, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | PORT00, 0},
+ {fapi2::ATTR_CEN_VPD_TSYS_DP18, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 49, UINT8_BY2 | PORT11, 0},
// Membuf-level data that is stored within MR
- {fapi2::ATTR_CEN_VPD_POWER_CONTROL_CAPABLE, ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 253, UINT8, 0},
+ {fapi2::ATTR_CEN_VPD_POWER_CONTROL_CAPABLE, DimmType::ALL_DIMM, ALL_VER, MBVPD_KEYWORD_MR, 253, UINT8, 0},
};
const uint32_t g_MBVPD_ATTR_DEF_array_size =
diff --git a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdMemoryDataVersion.C b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdMemoryDataVersion.C
index 5f98bbbdd..b12ddc18f 100644
--- a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdMemoryDataVersion.C
+++ b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdMemoryDataVersion.C
@@ -60,7 +60,7 @@ extern "C"
uint32_t& o_val)
{
fapi2::ReturnCode l_fapi2rc;
- DimmType l_dimmType = ISDIMM;
+ DimmType l_dimmType = DimmType::ISDIMM;
fapi2::MBvpdRecord l_record = fapi2::MBVPD_RECORD_SPDX;
uint32_t l_vpdMemoryDataVersion = VM_KEYWORD_DEFAULT_VALUE;
size_t l_bufSize = sizeof(l_vpdMemoryDataVersion);
@@ -92,22 +92,22 @@ extern "C"
if (l_customDimm == fapi2::ENUM_ATTR_CEN_SPD_CUSTOM_YES)
{
- l_dimmType = CDIMM;
+ l_dimmType = DimmType::CDIMM;
FAPI_DBG("getMBvpdMemoryDataVersion: CDIMM TYPE!!!");
}
else
{
- l_dimmType = ISDIMM;
+ l_dimmType = DimmType::ISDIMM;
FAPI_DBG("getMBvpdMemoryDataVersion: ISDIMM TYPE!!!");
}
}
else
{
- l_dimmType = ISDIMM;
+ l_dimmType = DimmType::ISDIMM;
FAPI_DBG("getMBvpdMemoryDataVersion: ISDIMM TYPE (dimm array size = 0)");
}
- if( l_dimmType == CDIMM)
+ if( l_dimmType == DimmType::CDIMM)
{
l_record = fapi2::MBVPD_RECORD_VSPD;
}
diff --git a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdSPDXRecordVersion.C b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdSPDXRecordVersion.C
index 4d0cc8598..b2fcf281c 100644
--- a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdSPDXRecordVersion.C
+++ b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdSPDXRecordVersion.C
@@ -61,7 +61,7 @@ extern "C"
uint32_t& o_val)
{
fapi2::ReturnCode l_fapi2rc;
- DimmType l_dimmType = ISDIMM;
+ DimmType l_dimmType = DimmType::ISDIMM;
fapi2::MBvpdRecord l_record = fapi2::MBVPD_RECORD_SPDX;
uint16_t l_vpdSPDXRecordVersion = VD_KEYWORD_DEFAULT_VALUE;
size_t l_bufSize = sizeof(l_vpdSPDXRecordVersion);
@@ -86,22 +86,22 @@ extern "C"
if (l_customDimm == fapi2::ENUM_ATTR_CEN_SPD_CUSTOM_YES)
{
- l_dimmType = CDIMM;
+ l_dimmType = DimmType::CDIMM;
FAPI_DBG("getMBvpdSPDXRecordVersion: CDIMM TYPE!!!");
}
else
{
- l_dimmType = ISDIMM;
+ l_dimmType = DimmType::ISDIMM;
FAPI_DBG("getMBvpdSPDXRecordVersion: ISDIMM TYPE!!!");
}
}
else
{
- l_dimmType = ISDIMM;
+ l_dimmType = DimmType::ISDIMM;
FAPI_DBG("getMBvpdSPDXRecordVersion: ISDIMM TYPE (dimm array size = 0)");
}
- if(l_dimmType == CDIMM)
+ if(l_dimmType == DimmType::CDIMM)
{
l_record = fapi2::MBVPD_RECORD_VSPD;
}
diff --git a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdVoltageSettingData.C b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdVoltageSettingData.C
index bec3cc29d..9413e0548 100644
--- a/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdVoltageSettingData.C
+++ b/src/import/chips/centaur/procedures/vpd_accessors/getMBvpdVoltageSettingData.C
@@ -60,7 +60,7 @@ extern "C"
fapi2::ReturnCode getMBvpdVoltageSettingData(const fapi2::Target<fapi2::TARGET_TYPE_MEMBUF_CHIP>& i_mbTarget,
uint32_t& o_val)
{
- DimmType l_dimmType = ISDIMM;
+ DimmType l_dimmType = DimmType::ISDIMM;
fapi2::MBvpdRecord l_record = fapi2::MBVPD_RECORD_SPDX;
uint16_t l_vpdVoltageSettingData = DW_KEYWORD_DEFAULT_VALUE;
size_t l_bufSize = sizeof(l_vpdVoltageSettingData);
@@ -85,23 +85,23 @@ extern "C"
if (l_customDimm == fapi2::ENUM_ATTR_CEN_SPD_CUSTOM_YES)
{
- l_dimmType = CDIMM;
+ l_dimmType = DimmType::CDIMM;
FAPI_DBG("getMBvpdVoltageSettingData: CDIMM TYPE!!!");
}
else
{
- l_dimmType = ISDIMM;
+ l_dimmType = DimmType::ISDIMM;
FAPI_DBG("getMBvpdVoltageSettingData: ISDIMM TYPE!!!");
}
}
else
{
- l_dimmType = ISDIMM;
+ l_dimmType = DimmType::ISDIMM;
FAPI_DBG("getMBvpdVoltageSettingData: ISDIMM TYPE (dimm array size = 0)");
}
- if(l_dimmType == CDIMM)
+ if(l_dimmType == DimmType::CDIMM)
{
l_record = fapi2::MBVPD_RECORD_VSPD;
}
diff --git a/src/import/chips/centaur/procedures/xml/attribute_info/dimm_spd_vpd_attributes.xml b/src/import/chips/centaur/procedures/xml/attribute_info/dimm_spd_vpd_attributes.xml
index 20803b485..7447b069b 100644
--- a/src/import/chips/centaur/procedures/xml/attribute_info/dimm_spd_vpd_attributes.xml
+++ b/src/import/chips/centaur/procedures/xml/attribute_info/dimm_spd_vpd_attributes.xml
@@ -651,7 +651,6 @@ The following attributes can be queried from both DDR3 and DDR4 DIMMs
<odmChangeable/>
<array> 2 2</array>
<platInit/>
- <writeable/>
</attribute>
<!--
@@ -1348,7 +1347,6 @@ Querying them from DDR3 DIMMs will result in an error
<valueType>uint32</valueType>
<enum>UNKNOWN = 0x3030, OLD_CDIMM = 0x3031, CURRENT = 0x3230</enum>
<platInit/>
- <writeable/>
</attribute>
<!--
@@ -1889,7 +1887,6 @@ firmware notes: none</description>
<odmVisable/>
<odmChangeable/>
<array> 2 2 4</array>
- <writeable/>
</attribute>
<attribute>
@@ -1904,7 +1901,6 @@ firmware notes: none</description>
<odmVisable/>
<odmChangeable/>
<array> 2 2 4</array>
- <writeable/>
</attribute>
<attribute>
@@ -1922,7 +1918,6 @@ This Attribute is to be interpreted as an Integer </description>
<odmVisable/>
<odmChangeable/>
<array> 2 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -1939,7 +1934,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2 2 4</array>
- <writeable/>
</attribute>
<attribute>
@@ -1956,7 +1950,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2 2 4</array>
- <writeable/>
</attribute>
<attribute>
@@ -1974,7 +1967,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2 2 4</array>
- <writeable/>
</attribute>
<attribute>
@@ -1993,7 +1985,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2015,7 +2006,6 @@ Decode: (R for Range V for Value, blank for unused)
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2034,7 +2024,6 @@ OHM30_FFE480 = 0x48, OHM30_FFE240 = 0x38, OHM30_FFE160 = 0x28, OHM30_FFE120 = 0x
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2052,7 +2041,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2070,7 +2058,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2088,7 +2075,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2106,7 +2092,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2124,7 +2109,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2146,7 +2130,6 @@ SLEW_MAXV_NS = 7</enum>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2168,7 +2151,6 @@ SLEW_MAXV_NS = 7</enum>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2190,7 +2172,6 @@ SLEW_MAXV_NS = 7</enum>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2213,7 +2194,6 @@ SLEW_MAXV_NS = 7
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2236,7 +2216,6 @@ SLEW_MAXV_NS = 7
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2254,7 +2233,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2266,7 +2244,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2278,7 +2255,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2290,7 +2266,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2302,7 +2277,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2314,7 +2288,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2326,7 +2299,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2338,7 +2310,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2350,7 +2321,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2362,7 +2332,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2374,7 +2343,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2386,7 +2354,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2398,7 +2365,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2410,7 +2376,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2422,7 +2387,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2434,7 +2398,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2446,7 +2409,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2458,7 +2420,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2470,7 +2431,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2482,7 +2442,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2494,7 +2453,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2506,7 +2464,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2518,7 +2475,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2530,7 +2486,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2542,7 +2497,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2554,7 +2508,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2566,7 +2519,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2578,7 +2530,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2590,7 +2541,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2602,7 +2552,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2614,7 +2563,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2626,7 +2574,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2638,7 +2585,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2650,7 +2596,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2662,7 +2607,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2674,7 +2618,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2686,7 +2629,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2698,7 +2640,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2710,7 +2651,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2722,7 +2662,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2734,7 +2673,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2746,7 +2684,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2758,7 +2695,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2770,7 +2706,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2782,7 +2717,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2794,7 +2728,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2806,7 +2739,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2818,7 +2750,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2830,7 +2761,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2843,7 +2773,6 @@ This Attribute is to be interpreted as an Integer</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2854,7 +2783,6 @@ This Attribute is to be interpreted as an Integer</description>
<platInit/>
<odmVisable/>
<array>2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2864,7 +2792,6 @@ This Attribute is to be interpreted as an Integer</description>
<valueType>uint64</valueType>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
<attribute>
@@ -2875,7 +2802,6 @@ This Attribute is to be interpreted as an Integer</description>
<platInit/>
<odmVisable/>
<array>2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2886,7 +2812,6 @@ This Attribute is to be interpreted as an Integer</description>
<platInit/>
<odmVisable/>
<array>2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2897,7 +2822,6 @@ This Attribute is to be interpreted as an Integer</description>
<platInit/>
<odmVisable/>
<array>2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2908,7 +2832,6 @@ This Attribute is to be interpreted as an Integer</description>
<platInit/>
<odmVisable/>
<array>2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2919,7 +2842,6 @@ This Attribute is to be interpreted as an Integer</description>
<platInit/>
<odmVisable/>
<array>2</array>
- <writeable/>
</attribute>
<attribute>
@@ -2939,7 +2861,6 @@ Comes from the VPD MW Keyword</description>
<valueType>uint8</valueType>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
<attribute>
@@ -2959,7 +2880,6 @@ Comes from the VPD MW Keyword</description>
<valueType>uint8</valueType>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
<attribute>
@@ -2971,7 +2891,6 @@ Comes from the VPD MW Keyword</description>
<platInit/>
<odmVisable/>
<odmChangeable/>
- <writeable/>
</attribute>
<attribute>
@@ -3018,7 +2937,6 @@ Comes from the VPD MW Keyword</description>
<writeable/>
</attribute>
-<!--
<attribute>
<id>ATTR_CEN_L4_BANK_DELETE_VPD</id>
<targetType>TARGET_TYPE_MEMBUF_CHIP</targetType>
@@ -3028,10 +2946,10 @@ Data will be pulled from CDIMM VPD if CDIMM present.
Data will be pulled from backplane VPD if IS DIMMs present.</description>
<valueType>uint32</valueType>
<writeable/>
+ <platInit/>
+ <odmVisable/>
<persistent/>
- <writeable/>
</attribute>
--->
<attribute>
<id>ATTR_CEN_VPD_MT_VERSION_BYTE</id>
@@ -3040,7 +2958,6 @@ Data will be pulled from backplane VPD if IS DIMMs present.</description>
<valueType>uint8</valueType>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
<attribute>
@@ -3050,7 +2967,6 @@ Data will be pulled from backplane VPD if IS DIMMs present.</description>
<valueType>uint8</valueType>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
<attribute>
@@ -3060,7 +2976,6 @@ Data will be pulled from backplane VPD if IS DIMMs present.</description>
<valueType>uint8</valueType>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
<attribute>
@@ -3070,10 +2985,8 @@ Data will be pulled from backplane VPD if IS DIMMs present.</description>
<valueType>uint8</valueType>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
-<!--
<attribute>
<id>ATTR_CEN_VPD_VM_KEYWORD</id>
<targetType>TARGET_TYPE_MEMBUF_CHIP</targetType>
@@ -3081,11 +2994,8 @@ Data will be pulled from backplane VPD if IS DIMMs present.</description>
<valueType>uint32</valueType>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
--->
-<!--
<attribute>
<id>ATTR_CEN_VPD_VD_KEYWORD</id>
<targetType>TARGET_TYPE_MEMBUF_CHIP</targetType>
@@ -3093,11 +3003,8 @@ Data will be pulled from backplane VPD if IS DIMMs present.</description>
<valueType>uint32</valueType>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
--->
-<!--
<attribute>
<id>ATTR_CEN_VPD_DW_KEYWORD</id>
<targetType>TARGET_TYPE_MEMBUF_CHIP</targetType>
@@ -3105,9 +3012,7 @@ Data will be pulled from backplane VPD if IS DIMMs present.</description>
<valueType>uint32</valueType>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
--->
<!--
@@ -3151,7 +3056,6 @@ Data will be pulled from backplane VPD if IS DIMMs present.</description>
<enum>NONE = 0x00, SLOWEXIT_CAPABLE = 0x01, FASTEXIT_CAPABLE = 0x02, FASTSLOW_CAPABLE = 0x03</enum>
<platInit/>
<odmVisable/>
- <writeable/>
</attribute>
@@ -3167,7 +3071,6 @@ firmware notes: none</description>
<odmVisable/>
<odmChangeable/>
<array> 2 2</array>
- <writeable/>
</attribute>
@@ -3183,7 +3086,6 @@ firmware notes: none</description>
<odmVisable/>
<odmChangeable/>
<array> 2</array>
- <writeable/>
</attribute>
<attribute>
OpenPOWER on IntegriCloud