summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Bofferding <bofferdn@us.ibm.com>2016-06-30 10:02:07 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2016-07-04 14:04:46 -0400
commit6ae7434ab89e9fdc53bf50cf932452e7ce4eb9f7 (patch)
tree2b007fc833fac44138eff0289f55204994489a9f
parent06dbeed043c9959c138c8476ff7b7bd113643be1 (diff)
downloadtalos-hostboot-6ae7434ab89e9fdc53bf50cf932452e7ce4eb9f7.tar.gz
talos-hostboot-6ae7434ab89e9fdc53bf50cf932452e7ce4eb9f7.zip
Support new verification failure procedure callout
- Added new procedure callout for verification failure - Mapped callout to firmware subsystem - Added procedure decoder to error parser Change-Id: Ie94790df68c15ba100723a9eb8a7688a7e7612a2 Forwardport: yes CMVC-Prereq: 998934 RTC: 93870 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/26481 Reviewed-by: Martin Gloff <mgloff@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Elizabeth K. Liner <eliner@us.ibm.com> Reviewed-by: Stephen M. Cprek <smcprek@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/26585 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
-rw-r--r--src/include/usr/hwas/common/hwasCallout.H1
-rw-r--r--src/usr/errl/errlentry.C1
-rw-r--r--src/usr/errl/plugins/errludcallout.H3
3 files changed, 4 insertions, 1 deletions
diff --git a/src/include/usr/hwas/common/hwasCallout.H b/src/include/usr/hwas/common/hwasCallout.H
index 1ed36f119..30c83084b 100644
--- a/src/include/usr/hwas/common/hwasCallout.H
+++ b/src/include/usr/hwas/common/hwasCallout.H
@@ -91,6 +91,7 @@ enum epubProcedureID
EPUB_PRC_HB_CODE = 0x55,
EPUB_PRC_TOD_CLOCK_ERR = 0x56,
EPUB_PRC_COOLING_SYSTEM_ERR = 0x5C,
+ EPUB_PRC_FW_VERIFICATION_ERR = 0x5D,
};
// from srci/fsp/srci.H
diff --git a/src/usr/errl/errlentry.C b/src/usr/errl/errlentry.C
index 3e827603f..b010cc438 100644
--- a/src/usr/errl/errlentry.C
+++ b/src/usr/errl/errlentry.C
@@ -91,6 +91,7 @@ static const epubProcToSub_t PROCEDURE_TO_SUBSYS_TABLE[] =
{ EPUB_PRC_HB_CODE , EPUB_FIRMWARE_HOSTBOOT },
{ EPUB_PRC_TOD_CLOCK_ERR , EPUB_CEC_HDW_SUBSYS },
{ EPUB_PRC_COOLING_SYSTEM_ERR , EPUB_MISC_SUBSYS },
+ { EPUB_PRC_FW_VERIFICATION_ERR , EPUB_FIRMWARE_SUBSYS },
};
struct epubTargetTypeToSub_t
diff --git a/src/usr/errl/plugins/errludcallout.H b/src/usr/errl/plugins/errludcallout.H
index e642e7860..efbcf0609 100644
--- a/src/usr/errl/plugins/errludcallout.H
+++ b/src/usr/errl/plugins/errludcallout.H
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2013,2015 */
+/* Contributors Listed Below - COPYRIGHT 2013,2016 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -283,6 +283,7 @@ case HWAS::_type: i_parser.PrintString( "Procedure", #_type); break;
case_PROCEDURE(EPUB_PRC_HB_CODE)
case_PROCEDURE(EPUB_PRC_TOD_CLOCK_ERR)
case_PROCEDURE(EPUB_PRC_COOLING_SYSTEM_ERR)
+ case_PROCEDURE(EPUB_PRC_FW_VERIFICATION_ERR)
default:
i_parser.PrintNumber( "Procedure", "UNKNOWN: 0x%X",
ntohl(pData->procedure) );
OpenPOWER on IntegriCloud