Skip to content

Commit

Permalink
IO Xbus RAS Update
Browse files Browse the repository at this point in the history
- Changed callouts to 'bus' callouts
- Changed callouts to high priority

Change-Id: I5a834cb3285330159449fb811cff2caa6c20d03a
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/40751
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Richard J. Knight <rjknight@us.ibm.com>
Reviewed-by: Gary A. Peterson <garyp@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/40752
Reviewed-by: Hostboot Team <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>
  • Loading branch information
steffenchris authored and dcrowell77 committed May 23, 2017
1 parent d0009e2 commit 15024ce
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
10 changes: 6 additions & 4 deletions src/import/chips/p9/procedures/hwp/io/p9_io_xbus_post_trainadv.C
Expand Up @@ -73,7 +73,8 @@ fapi2::ReturnCode getDebugInfo(
}

fapi2::ReturnCode checkEyeWidth(
const fapi2::Target<fapi2::TARGET_TYPE_XBUS> i_tgt,
const fapi2::Target<fapi2::TARGET_TYPE_XBUS>& i_tgt,
const fapi2::Target<fapi2::TARGET_TYPE_XBUS>& i_ctgt,
const uint8_t i_grp )
{
FAPI_IMP("Entering...");
Expand Down Expand Up @@ -110,7 +111,8 @@ fapi2::ReturnCode checkEyeWidth(

// Check if the historical eye width is less then the manufacturing minimum eye width
FAPI_ASSERT( ( io::get( EDIP_RX_HIST_MIN_EYE_WIDTH, data64 ) >= minMfgEyeWidth ),
fapi2::IO_XBUS_MFG_RX_EYE_WIDTH_FAILURE().set_TARGET( i_tgt ).set_GROUP( i_grp )
fapi2::IO_XBUS_MFG_RX_EYE_WIDTH_FAILURE().set_RXTARGET(i_tgt)
.set_TXTARGET(i_ctgt).set_GROUP(i_grp)
.set_EYE_WIDTH( io::get( EDIP_RX_HIST_MIN_EYE_WIDTH, data64 ) )
.set_EYE_WIDTH_LANE( io::get( EDIP_RX_HIST_MIN_EYE_WIDTH_LANE, data64 ) )
.set_EYE_WIDTH_VALID( io::get( EDIP_RX_HIST_MIN_EYE_WIDTH_VALID, data64 ) )
Expand Down Expand Up @@ -160,8 +162,8 @@ fapi2::ReturnCode p9_io_xbus_post_trainadv(

if(l_status == fapi2::ENUM_ATTR_IO_X_MFG_CHK_TRUE)
{
FAPI_TRY( checkEyeWidth( i_tgt, i_grp ) );
FAPI_TRY( checkEyeWidth( i_ctgt, i_cgrp ) );
FAPI_TRY( checkEyeWidth( i_tgt, i_ctgt, i_grp ) );
FAPI_TRY( checkEyeWidth( i_ctgt, i_tgt, i_cgrp ) );
}


Expand Down
26 changes: 12 additions & 14 deletions src/import/chips/p9/procedures/xml/error_info/p9_io_xbus_errors.xml
Expand Up @@ -43,7 +43,7 @@
<description>I/O EDI+ Xbus Rx Dccal(Offset calibration) Timeout</description>
<callout>
<target>TARGET</target>
<priority>MEDIUM</priority>
<priority>HIGH</priority>
</callout>
<deconfigure>
<target>TARGET</target>
Expand All @@ -60,7 +60,7 @@
<description>I/O EDI+ Xbus Rx Dccal Cleanup Pll Not Locked</description>
<callout>
<target>TARGET</target>
<priority>MEDIUM</priority>
<priority>HIGH</priority>
</callout>
<deconfigure>
<target>TARGET</target>
Expand All @@ -80,14 +80,20 @@
<ffdc>MIN_EYE_WIDTH</ffdc>
<description>I/O EDI+ Xbus Rx Eye Width Failure</description>
<callout>
<target>TARGET</target>
<priority>MEDIUM</priority>
<bus>TXTARGET,RXTARGET</bus>
<priority>HIGH</priority>
</callout>
<deconfigure>
<target>TARGET</target>
<target>RXTARGET</target>
</deconfigure>
<deconfigure>
<target>TXTARGET</target>
</deconfigure>
<gard>
<target>TARGET</target>
<target>RXTARGET</target>
</gard>
<gard>
<target>TXTARGET</target>
</gard>
</hwpError>
<!-- *********************************************************************** -->
Expand Down Expand Up @@ -159,14 +165,6 @@
<ffdc>S_BAD_LANE2</ffdc>
<ffdc>S_BAD_LANE_CODE</ffdc>
<!-- Slave Func Mode Info -->
<callout>
<target>M_TARGET</target>
<priority>MEDIUM</priority>
</callout>
<callout>
<target>S_TARGET</target>
<priority>MEDIUM</priority>
</callout>
<callout>
<bus>M_TARGET,S_TARGET</bus>
<priority>HIGH</priority>
Expand Down

0 comments on commit 15024ce

Please sign in to comment.