summaryrefslogtreecommitdiffstats
path: root/src/import/generic/memory/lib/spd/ddimm/ddr4/ddimm_decoder_ddr4.H
diff options
context:
space:
mode:
Diffstat (limited to 'src/import/generic/memory/lib/spd/ddimm/ddr4/ddimm_decoder_ddr4.H')
-rw-r--r--src/import/generic/memory/lib/spd/ddimm/ddr4/ddimm_decoder_ddr4.H52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/import/generic/memory/lib/spd/ddimm/ddr4/ddimm_decoder_ddr4.H b/src/import/generic/memory/lib/spd/ddimm/ddr4/ddimm_decoder_ddr4.H
index 7c1b4f5c9..b72fde057 100644
--- a/src/import/generic/memory/lib/spd/ddimm/ddr4/ddimm_decoder_ddr4.H
+++ b/src/import/generic/memory/lib/spd/ddimm/ddr4/ddimm_decoder_ddr4.H
@@ -642,19 +642,6 @@ class decoder< DDR4, DDIMM_MODULE, R > : public dimm_module_decoder
}
///
- /// @brief Decodes VDD_Core PMIC0 -> VDD_CORE_PMIC0
- /// @param[out] o_output encoding from SPD
- /// @return FAPI2_RC_SUCCESS if okay
- ///
- virtual fapi2::ReturnCode vdd_core_pmic0(uint8_t& o_output) const override
- {
- FAPI_TRY( (mss::spd::reader<fields_t::VDD_CORE_PMIC0, R>(iv_target, iv_data, o_output)) );
-
- fapi_try_exit:
- return fapi2::current_err;
- }
-
- ///
/// @brief Decodes PMIC0 Manfacture ID code 2nd byte
/// @param[out] o_output encoding from SPD - multiple fields used
/// @return FAPI2_RC_SUCCESS if okay
@@ -696,19 +683,6 @@ class decoder< DDR4, DDIMM_MODULE, R > : public dimm_module_decoder
}
///
- /// @brief Decodes VDD_Core PMIC1 -> VDD_CORE_PMIC1
- /// @param[out] o_output encoding from SPD
- /// @return FAPI2_RC_SUCCESS if okay
- ///
- virtual fapi2::ReturnCode vdd_core_pmic1(uint8_t& o_output) const override
- {
- FAPI_TRY( (mss::spd::reader<fields_t::VDD_CORE_PMIC1, R>(iv_target, iv_data, o_output)) );
-
- fapi_try_exit:
- return fapi2::current_err;
- }
-
- ///
/// @brief Decodes PMIC1 Manfacture ID code 2nd byte
/// @param[out] o_output encoding from SPD - multiple fields used
/// @return FAPI2_RC_SUCCESS if okay
@@ -1400,6 +1374,32 @@ class decoder< DDR4, DDIMM_MODULE, R > : public dimm_module_decoder
}
///
+ /// @brief Decodes PMIC1 Sequence -> PMIC0_SEQUENCE
+ /// @param[out] o_output encoding from SPD
+ /// @return FAPI2_RC_SUCCESS if okay
+ ///
+ virtual fapi2::ReturnCode sequence_pmic0(uint8_t& o_output) const override
+ {
+ FAPI_TRY((mss::spd::reader<fields_t::PMIC0_SEQUENCE, R>(iv_target, iv_data, o_output)));
+
+ fapi_try_exit:
+ return fapi2::current_err;
+ }
+
+ ///
+ /// @brief Decodes PMIC1 Sequence -> PMIC1_SEQUENCE
+ /// @param[out] o_output encoding from SPD
+ /// @return FAPI2_RC_SUCCESS if okay
+ ///
+ virtual fapi2::ReturnCode sequence_pmic1(uint8_t& o_output) const override
+ {
+ FAPI_TRY((mss::spd::reader<fields_t::PMIC1_SEQUENCE, R>(iv_target, iv_data, o_output)));
+
+ fapi_try_exit:
+ return fapi2::current_err;
+ }
+
+ ///
/// @brief Decodes DRAM manufacturing ID Code
/// @param[out] o_output encoding from SPD
/// @return FAPI2_RC_SUCCESS if okay
OpenPOWER on IntegriCloud