diff options
Diffstat (limited to 'src/import/chips/p9/procedures/hwp')
-rw-r--r-- | src/import/chips/p9/procedures/hwp/memory/lib/fir/check.C | 24 |
1 files changed, 18 insertions, 6 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 53c0dbdb9..ddd5aaa6b 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 @@ -366,6 +366,15 @@ fapi2::ReturnCode bad_fir_bits( const fapi2::Target<fapi2::TARGET_TYPE_MCBIST>& // Start by assuming we do not have a FIR o_fir_error = false; + // Checks for PLL unlocks first, as a PLL unlock can cause other FIRs to light up and complicate the error logs + FAPI_TRY(pll_fir(i_target, io_rc, o_fir_error)); + + // Exit if we have found a FIR + if(o_fir_error) + { + return fapi2::FAPI2_RC_SUCCESS; + } + // Loop, check the scoms, and check the FIR // Note: we return out if any FIR is bad for(const auto& l_fir_reg : MCBIST_FIR_REGS) @@ -400,9 +409,6 @@ fapi2::ReturnCode bad_fir_bits( const fapi2::Target<fapi2::TARGET_TYPE_MCBIST>& } } - // Lastly, check for PLL unlocks - FAPI_TRY(pll_fir(i_target, io_rc, o_fir_error)); - fapi_try_exit: return fapi2::current_err; } @@ -424,6 +430,15 @@ fapi2::ReturnCode bad_fir_bits( const fapi2::Target<fapi2::TARGET_TYPE_MCA>& i_t // Start by assuming we do not have a FIR o_fir_error = false; + // Checks for PLL unlocks first, as a PLL unlock can cause other FIRs to light up and complicate the error logs + FAPI_TRY(pll_fir(l_mcbist, io_rc, o_fir_error)); + + // Exit if we have found a FIR + if(o_fir_error) + { + return fapi2::FAPI2_RC_SUCCESS; + } + // Loop, check the scoms, and check the FIR // Note: we return out if any FIR is bad for(const auto& l_fir_reg : MCBIST_FIR_REGS) @@ -455,9 +470,6 @@ fapi2::ReturnCode bad_fir_bits( const fapi2::Target<fapi2::TARGET_TYPE_MCA>& i_t } } - // Lastly, check for PLL unlocks - FAPI_TRY(pll_fir(l_mcbist, io_rc, o_fir_error)); - fapi_try_exit: return fapi2::current_err; } |