diff options
| author | Dan Crowell <dcrowell@us.ibm.com> | 2014-02-28 13:14:36 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-03-03 12:14:05 -0600 |
| commit | f3c513e40abb822d78c0a83d7bf874d30eb733a1 (patch) | |
| tree | a2e316a63c5f04b9a84bdd4ad7a72a62faf4a3c0 /src/include/usr/fsi | |
| parent | 4c1eb65cfcec7141d464ba12d4d39dae638c4ef9 (diff) | |
| download | talos-hostboot-f3c513e40abb822d78c0a83d7bf874d30eb733a1.tar.gz talos-hostboot-f3c513e40abb822d78c0a83d7bf874d30eb733a1.zip | |
Improve FSI PIB2OPB Error Recovery
Modified which error bits are checked in the PIB2OPB status as
well as changing a few error reset functions.
Change-Id: I27676947983f0b66c940d68bbd5f134912749ad9
CQ: SW248395
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/9238
Tested-by: Jenkins Server
Reviewed-by: Michael Baiocchi <baiocchi@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/fsi')
| -rw-r--r-- | src/include/usr/fsi/fsiif.H | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/include/usr/fsi/fsiif.H b/src/include/usr/fsi/fsiif.H index 8d1b5f15b..4aa67f4fb 100644 --- a/src/include/usr/fsi/fsiif.H +++ b/src/include/usr/fsi/fsiif.H @@ -5,7 +5,7 @@ /* */ /* IBM CONFIDENTIAL */ /* */ -/* COPYRIGHT International Business Machines Corp. 2011,2013 */ +/* COPYRIGHT International Business Machines Corp. 2011,2014 */ /* */ /* p1 */ /* */ @@ -71,6 +71,7 @@ enum fsiFFDCType_t FFDC_READWRITE_FAIL = 1, FFDC_PIB_FAIL = 2, FFDC_OPB_FAIL = 3, + FFDC_OPB_FAIL_SLAVE = 4, }; /** @@ -86,7 +87,16 @@ enum fsiFFDCType_t */ void getFsiFFDC( fsiFFDCType_t i_ffdc_type, errlHndl_t &io_log, - TARGETING::Target* i_target); + TARGETING::Target* i_target ); + +/** + * @brief Cleanup the FSI PIB2OPB logic on the procs + * + * @param[in] i_target Proc Chip Target to reset + * + * @return errlHndl_t NULL on success + */ +errlHndl_t resetPib2Opb( TARGETING::Target* i_target ); /** |

