Skip to content

Commit

Permalink
Disable HX keyword bifurcation
Browse files Browse the repository at this point in the history
Invalid HX Keyword data, 01029090, seen throughout
the lab systems.  Need to disable using this
keyword until we come up with a workaround this bad data.

Change-Id: I0a3350e5e10380ac00d36bc057d6d0ad65ff4eeb
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70095
Tested-by: Jenkins Server <pfd-jenkins+hostboot@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: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
mderkse1 authored and dcrowell77 committed Jan 5, 2019
1 parent f8189b1 commit f1f2262
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/usr/isteps/istep10/host_proc_pcie_scominit.C
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2016,2018 */
/* Contributors Listed Below - COPYRIGHT 2016,2019 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -303,6 +303,10 @@ hxKeywordRc getLaneMaskFromHxKeyword( ATTR_PEC_PCIE_HX_KEYWORD_DATA_type &i_kw,
ATTR_PROC_PCIE_LANE_MASK_type& o_laneMask,
uint8_t i_pec_num)
{
return KEYWORD_NOT_SET;
// @todo SW453106 - reenable when a workaround for bad vpd is figured out
// Keep seeing an invalid HX Keyword: 01029090
#if 0

size_t l_keywordSize =
sizeof(ATTR_PEC_PCIE_HX_KEYWORD_DATA_type);
Expand Down Expand Up @@ -404,6 +408,8 @@ hxKeywordRc getLaneMaskFromHxKeyword( ATTR_PEC_PCIE_HX_KEYWORD_DATA_type &i_kw,
}
}while(0);
return l_rc;
#endif

}

errlHndl_t createElogFromHxKeywordRc( hxKeywordRc i_rc,
Expand Down

0 comments on commit f1f2262

Please sign in to comment.