summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/import/chips/p9/procedures/hwp/memory/lib/fir/check.C15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/import/chips/p9/procedures/hwp/memory/lib/fir/check.C b/src/import/chips/p9/procedures/hwp/memory/lib/fir/check.C
index e0615943f..58f1f0d94 100644
--- a/src/import/chips/p9/procedures/hwp/memory/lib/fir/check.C
+++ b/src/import/chips/p9/procedures/hwp/memory/lib/fir/check.C
@@ -197,17 +197,10 @@ fapi2::ReturnCode during_draminit_training( const fapi2::Target<fapi2::TARGET_TY
const auto& l_mca = mss::find_target<fapi2::TARGET_TYPE_MCA>(i_target);
// Creating a mask to check for FIR errors.
- // These are DP16 parity errors that would be triggered in case of a general PHY error
+ // These are DP16 parity errors that would be triggered in case of an init cal error
// During draminit_training, this would mean a training error dealing with the PHY
fapi2::buffer<uint64_t> l_phyfir_mask;
- l_phyfir_mask.setBit<MCA_IOM_PHY0_DDRPHY_FIR_REG_ERROR_0>()
- .setBit<MCA_IOM_PHY0_DDRPHY_FIR_REG_ERROR_1>()
- .setBit<MCA_IOM_PHY0_DDRPHY_FIR_REG_ERROR_2>()
- .setBit<MCA_IOM_PHY0_DDRPHY_FIR_REG_ERROR_3>()
- .setBit<MCA_IOM_PHY0_DDRPHY_FIR_REG_ERROR_4>()
- .setBit<MCA_IOM_PHY0_DDRPHY_FIR_REG_ERROR_5>()
- .setBit<MCA_IOM_PHY0_DDRPHY_FIR_REG_ERROR_6>()
- .setBit<MCA_IOM_PHY0_DDRPHY_FIR_REG_ERROR_7>();
+ l_phyfir_mask.setBit<MCA_IOM_PHY0_DDRPHY_FIR_REG_ERROR_2>();
fapi2::buffer<uint64_t> l_phyfir_data;
fapi2::buffer<uint64_t> l_phyfir_masked;
@@ -216,6 +209,10 @@ fapi2::ReturnCode during_draminit_training( const fapi2::Target<fapi2::TARGET_TY
l_phyfir_masked = l_phyfir_data & l_phyfir_mask;
+ // Clear the PHY FIR ERROR 2 bit so we don't keep failing training and training advance on this port
+ // We'll have the error log to know what fir bit triggered and when, so we should be fine clearing here
+ FAPI_TRY( mss::putScom(l_mca, MCA_IOM_PHY0_DDRPHY_FIR_REG_AND, l_phyfir_mask.invert()) );
+
FAPI_ASSERT( l_phyfir_masked == 0,
fapi2::MSS_DRAMINIT_TRAINING_PORT_FIR()
.set_PHY_FIR(l_phyfir_masked)
OpenPOWER on IntegriCloud