diff options
author | Elizabeth Liner <eliner@us.ibm.com> | 2017-05-24 12:51:05 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-06-28 12:42:25 -0400 |
commit | dd4981b4c10a1888302220b24570563fe07de2b0 (patch) | |
tree | a010aa3ea9528137f31b863e9a867c6aa8801345 /src/include/usr | |
parent | 866b0279d783506cd381b61080a56752d76835ce (diff) | |
download | talos-hostboot-dd4981b4c10a1888302220b24570563fe07de2b0.tar.gz talos-hostboot-dd4981b4c10a1888302220b24570563fe07de2b0.zip |
sbe_extract_rc_handler SBE conditions details (2/4)
This commit finalizes the different steps for each SBE condition,
whether that's trying again, increasing the error to a more
serious condition, or failing and garding the proc. In most
instances we attempt to restart the SBE through the threshold handler.
Change-Id: I1bd485557f6999a20a1a52c92f06be3df528ca8c
RTC:173809
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/41074
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-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>
Diffstat (limited to 'src/include/usr')
-rw-r--r-- | src/include/usr/isteps/istep_reasoncodes.H | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/usr/isteps/istep_reasoncodes.H b/src/include/usr/isteps/istep_reasoncodes.H index b7f4a6a3a..3741ef112 100644 --- a/src/include/usr/isteps/istep_reasoncodes.H +++ b/src/include/usr/isteps/istep_reasoncodes.H @@ -107,13 +107,14 @@ namespace ISTEP RC_SLAVE_PROC_CBS_CONTROL_READ_FAIL = ISTEP_COMP_ID | 0x27, RC_PROC_SECURITY_STATE_MISMATCH = ISTEP_COMP_ID | 0x28, RC_MIN_HW_CHECK_FAILED = ISTEP_COMP_ID | 0x29, - RC_SBE_BOOTED_UNEXPECTED_SIDE = ISTEP_COMP_ID | 0x2A, + RC_SBE_BOOTED_UNEXPECTED_SIDE_BKP = ISTEP_COMP_ID | 0x2A, RC_SBE_EXTRACT_RC_ERROR = ISTEP_COMP_ID | 0x2B, RC_BOOT_FROM_BKP_SEEPROM = ISTEP_COMP_ID | 0x2C, RC_NO_RECOVERY_ACTION = ISTEP_COMP_ID | 0x2D, RC_INCORRECT_FCN_CALL = ISTEP_COMP_ID | 0x2E, RC_HWSV_COLLECT_SBE_RC = ISTEP_COMP_ID | 0x2F, RC_PROC_EXTRACT_SBE_MAIN_ERROR = ISTEP_COMP_ID | 0x30, + RC_SBE_BOOTED_UNEXPECTED_SIDE_UPD = ISTEP_COMP_ID | 0x31, }; }; |