summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Hickman <Matthew.Hickman@ibm.com>2017-08-03 17:04:52 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-08-18 00:51:24 -0400
commiteeb76cbb05f2d1262532daa732fab4414cd80050 (patch)
treea96324fc567dc91ca6a1952c57c7e15c03efb7f5
parente84c916a893ac20bde27665c5055c83b98d28f06 (diff)
downloadtalos-hostboot-eeb76cbb05f2d1262532daa732fab4414cd80050.tar.gz
talos-hostboot-eeb76cbb05f2d1262532daa732fab4414cd80050.zip
Changed maint AUE and IAUE to recoverable during memdiags
Change-Id: I49609b9f66b14c600e0d6a6e8d7deb6ee7ad348c Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/44195 Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Louis Stermole <stermole@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/44484 Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
-rw-r--r--src/import/chips/p9/procedures/hwp/memory/lib/fir/memdiags_fir.C4
-rw-r--r--src/import/chips/p9/procedures/hwp/memory/lib/fir/unmask.C4
2 files changed, 5 insertions, 3 deletions
diff --git a/src/import/chips/p9/procedures/hwp/memory/lib/fir/memdiags_fir.C b/src/import/chips/p9/procedures/hwp/memory/lib/fir/memdiags_fir.C
index 446de7219..126ab1b2b 100644
--- a/src/import/chips/p9/procedures/hwp/memory/lib/fir/memdiags_fir.C
+++ b/src/import/chips/p9/procedures/hwp/memory/lib/fir/memdiags_fir.C
@@ -86,7 +86,9 @@ fapi2::ReturnCode after_memdiags( const fapi2::Target<TARGET_TYPE_MCBIST>& i_tar
l_ecc64_fir_reg.checkstop<MCA_FIR_MAINLINE_AUE>()
.recoverable_error<MCA_FIR_MAINLINE_UE>()
.checkstop<MCA_FIR_MAINLINE_IAUE>()
- .recoverable_error<MCA_FIR_MAINLINE_IUE>();
+ .recoverable_error<MCA_FIR_MAINLINE_IUE>()
+ .checkstop<MCA_FIR_MAINTENANCE_AUE>()
+ .checkstop<MCA_FIR_MAINTENANCE_IAUE>();
// If ATTR_CHIP_EC_FEATURE_HW414700 is enabled set checkstops
auto l_chip_target = mss::find_target<fapi2::TARGET_TYPE_PROC_CHIP>(i_target);
diff --git a/src/import/chips/p9/procedures/hwp/memory/lib/fir/unmask.C b/src/import/chips/p9/procedures/hwp/memory/lib/fir/unmask.C
index dc0e9b643..284009106 100644
--- a/src/import/chips/p9/procedures/hwp/memory/lib/fir/unmask.C
+++ b/src/import/chips/p9/procedures/hwp/memory/lib/fir/unmask.C
@@ -84,8 +84,8 @@ fapi2::ReturnCode after_draminit_mc( const fapi2::Target<TARGET_TYPE_MCBIST>& i_
fir::reg<MCA_FIR> l_mca_fir_reg(p, l_rc);
FAPI_TRY(l_rc, "unable to create fir::reg for %d", MCA_FIR);
- l_mca_fir_reg.checkstop<MCA_FIR_MAINTENANCE_AUE>()
- .checkstop<MCA_FIR_MAINTENANCE_IAUE>()
+ l_mca_fir_reg.recoverable_error<MCA_FIR_MAINTENANCE_AUE>()
+ .recoverable_error<MCA_FIR_MAINTENANCE_IAUE>()
.recoverable_error<MCA_FIR_SCOM_PARITY_CLASS_STATUS>()
.recoverable_error<MCA_FIR_SCOM_PARITY_CLASS_RECOVERABLE>()
.checkstop<MCA_FIR_SCOM_PARITY_CLASS_UNRECOVERABLE>()
OpenPOWER on IntegriCloud