Skip to content

Commit

Permalink
Added skip_g configuration to INT_CQ_PBO_CTL
Browse files Browse the repository at this point in the history
Change-Id: Id9c202575a89f020080616faba9f07bb4cadd673
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/36295
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Jenny Huynh <jhuynh@us.ibm.com>
Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/36381
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
David Kauer authored and dcrowell77 committed Feb 21, 2017
1 parent 9012fed commit 7dd3b0e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/import/chips/p9/procedures/hwp/initfiles/p9_int_scom.C
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,20 @@ fapi2::ReturnCode p9_int_scom(const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>&

FAPI_TRY(fapi2::putScom(TGT0, 0x501300aull, l_scom_buffer));
}
{
FAPI_TRY(fapi2::getScom( TGT0, 0x5013021ull, l_scom_buffer ));

if ((l_TGT1_ATTR_PROC_FABRIC_PUMP_MODE == fapi2::ENUM_ATTR_PROC_FABRIC_PUMP_MODE_CHIP_IS_GROUP))
{
l_scom_buffer.insert<49, 1, 63, uint64_t>(literal_1 );
}
else if ((l_TGT1_ATTR_PROC_FABRIC_PUMP_MODE == fapi2::ENUM_ATTR_PROC_FABRIC_PUMP_MODE_CHIP_IS_NODE))
{
l_scom_buffer.insert<49, 1, 63, uint64_t>(literal_0 );
}

FAPI_TRY(fapi2::putScom(TGT0, 0x5013021ull, l_scom_buffer));
}
{
FAPI_TRY(fapi2::getScom( TGT0, 0x5013022ull, l_scom_buffer ));

Expand Down

0 comments on commit 7dd3b0e

Please sign in to comment.