diff options
| author | Dzuy Nguyen <dzuy@us.ibm.com> | 2017-04-19 09:43:12 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-05-07 22:26:57 -0400 |
| commit | 05404541b9c109750d1d9d43da72360a2741ef7a (patch) | |
| tree | f81fabdafe6fa8362c48f268e20086dc71d9b54c /src/include | |
| parent | 7cc792339c253a71c7eeadc0b56fcc4eeb88f41c (diff) | |
| download | blackbird-hostboot-05404541b9c109750d1d9d43da72360a2741ef7a.tar.gz blackbird-hostboot-05404541b9c109750d1d9d43da72360a2741ef7a.zip | |
SBE FIFO FFDC parser plugin
RTC: 168620
Change-Id: If1e099411f5b5b12be1a3832ad818c2019f4dadb
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/39432
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: Martin Gloff <mgloff@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/usr/sbeio/sbe_ffdc_parser.H | 6 | ||||
| -rw-r--r-- | src/include/usr/sbeio/sbeioreasoncodes.H | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/src/include/usr/sbeio/sbe_ffdc_parser.H b/src/include/usr/sbeio/sbe_ffdc_parser.H index ce81f25ee..5ca5dbcc8 100644 --- a/src/include/usr/sbeio/sbe_ffdc_parser.H +++ b/src/include/usr/sbeio/sbe_ffdc_parser.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2012,2016 */ +/* Contributors Listed Below - COPYRIGHT 2012,2017 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -92,7 +92,7 @@ class SbeFFDCParser * @retval: length of data stored * @param[in] i_index index number */ - uint8_t getPackageLength(uint8_t i_index); + uint32_t getPackageLength(uint8_t i_index); private: @@ -117,7 +117,7 @@ class SbeFFDCParser */ void addFFDCPackage(void * i_ffdcPackage, uint32_t i_rc, - uint8_t i_packageLen); + uint32_t i_packageLen); }; diff --git a/src/include/usr/sbeio/sbeioreasoncodes.H b/src/include/usr/sbeio/sbeioreasoncodes.H index 4064ce594..9b845096f 100644 --- a/src/include/usr/sbeio/sbeioreasoncodes.H +++ b/src/include/usr/sbeio/sbeioreasoncodes.H @@ -101,6 +101,13 @@ enum sbeioReasonCode SBEIO_HWSV_COLLECT_SBE_RC = SBEIO_COMP_ID | 0xFF, }; +enum UserDetailsTypes +{ + SBEIO_UDT_NO_FORMAT = 0x0, + SBEIO_UDT_PARAMETERS = 0x1, +}; + + }; // end SBE #endif |

