Skip to content

Commit

Permalink
L2/L3/NCU scominit changes in stop code
Browse files Browse the repository at this point in the history
> Fixed attribute check for fbc pump mode to set chip==node bit
> Fixed skip_g bit set in ncu scominit

Change-Id: I1ed0182975b67680d4632a87f7cc6bcf8389c4a3
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/40739
Reviewed-by: YUE DU <daviddu@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Juan R. Medina <jrmedina@us.ibm.com>
Reviewed-by: Gregory S. Still <stillgs@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/40741
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
Jenny Huynh authored and dcrowell77 committed May 25, 2017
1 parent f102726 commit e251ab1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/import/chips/p9/procedures/hwp/pm/p9_hcode_image_build.C
Expand Up @@ -811,13 +811,13 @@ fapi2::ReturnCode updateImageFlags( Homerlayout_t* i_pChipHomer, CONST_FAPI2_PRO
attrVal),
"Error from FAPI_ATTR_GET for attribute ATTR_PROC_FABRIC_PUMP_MODE_MODE");

//Attribute set to 0x01 for CHIP_IS_NODE
if( attrVal )
//Attribute set to 0x01 for CHIP_IS_NODE, 0x02 for CHIP_IS_GROUP
if( attrVal == fapi2::ENUM_ATTR_PROC_FABRIC_PUMP_MODE_CHIP_IS_NODE )
{
sgpeFlag |= SGPE_PROC_FAB_PUMP_MODE_BIT_POS;
}

FAPI_DBG("FAB_PUMP_MODE : %s", attrVal ? "TRUE" : "FALSE" );
FAPI_DBG("FAB_PUMP_MODE : %s", (attrVal == fapi2::ENUM_ATTR_PROC_FABRIC_PUMP_MODE_CHIP_IS_NODE) ? "TRUE" : "FALSE" );

FAPI_TRY(FAPI_ATTR_GET(fapi2::ATTR_SYSTEM_WOF_ENABLED,
FAPI_SYSTEM,
Expand Down

0 comments on commit e251ab1

Please sign in to comment.