diff options
| author | Swathi Madhuri Bhattiprolu <bhmadhur@in.ibm.com> | 2018-02-28 07:08:54 -0600 |
|---|---|---|
| committer | William G. Hoffa <wghoffa@us.ibm.com> | 2018-04-05 14:34:23 -0400 |
| commit | 571e1d84dfe50aaa674aa7e33abb75868b432d78 (patch) | |
| tree | 2ab7eb56240999e074be13138d7d2ac5e24802cc /src/include/usr/hwas | |
| parent | ad4459feb84ab2a4ec9f512b220a9aa67be858c8 (diff) | |
| download | talos-hostboot-571e1d84dfe50aaa674aa7e33abb75868b432d78.tar.gz talos-hostboot-571e1d84dfe50aaa674aa7e33abb75868b432d78.zip | |
Verify frequency attributes across nodes
-Existing code ensures consistency of frequency data
across all modules in istep6.12.
-In a multi-drawer config this data needs to be
consistent across all drawers.
-Master drawer sends the frequency data to all the
other via IPC mechanism.
-This data is compared and error is returned if there
is a mismatch.
Change-Id: I922d32456c9d3c4e53dae528f088dbb013c3ded9
RTC:158036
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/54825
CI-Ready: SWATHI M. BHATTIPROLU <bhmadhur@in.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Richard Ward <rward15@us.ibm.com>
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: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/include/usr/hwas')
| -rw-r--r-- | src/include/usr/hwas/common/hwasCallout.H | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/usr/hwas/common/hwasCallout.H b/src/include/usr/hwas/common/hwasCallout.H index 8f5126e6e..840323657 100644 --- a/src/include/usr/hwas/common/hwasCallout.H +++ b/src/include/usr/hwas/common/hwasCallout.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2012,2017 */ +/* Contributors Listed Below - COPYRIGHT 2012,2018 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -61,6 +61,12 @@ typedef enum { GARD_Void = 0xFF } GARD_ErrorType; +enum ErrorCategory { + ERR_CATEGORY_INVALID_SERIAL = 0x01, + ERR_CATEGORY_INVALID_PART = 0x02, + +}; + // from src/epub/fsp/epub_service_codes.H v1.24.24.4 // - Any additions should be added to FipS code first |

