Skip to content

Commit

Permalink
Remove action bit settings for HCA from p9_chiplet_scominit.
Browse files Browse the repository at this point in the history
There are no plans to use them on p9 and
all FIR's come up masked.

Change-Id: I76ebd7a1f8764301b3c735044f1751939fe76187
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35471
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Thi N. Tran <thi@us.ibm.com>
Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35484
Reviewed-by: Hostboot Team <hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
BenAtIBM authored and dcrowell77 committed Jan 27, 2017
1 parent 5140f2d commit 0446c85
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions src/import/chips/p9/procedures/hwp/nest/p9_chiplet_scominit.C
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,6 @@ const uint64_t FBC_IOO_DL_FIR_ACTION0 = 0x0000000000000000ULL;
const uint64_t FBC_IOO_DL_FIR_ACTION1 = 0x0303C0000300FFFCULL;
const uint64_t FBC_IOO_DL_FIR_MASK = 0xFCFC3FFFFCFF0003ULL;

const uint64_t HCA_EH_FIR_ACTION0 = 0x0000000000000000ULL;
const uint64_t HCA_EH_FIR_ACTION1 = 0x0000000000000000ULL;
const uint64_t HCA_EH_FIR_MASK = 0xFFFFFFFFF0000000ULL;

const uint64_t HCA_EN_FIR_ACTION0 = 0x0000000000000000ULL;
const uint64_t HCA_EN_FIR_ACTION1 = 0x0000000000000000ULL;
const uint64_t HCA_EN_FIR_MASK = 0xFFFFFF0000000000ULL;


//------------------------------------------------------------------------------
// Function definitions
//------------------------------------------------------------------------------
Expand Down Expand Up @@ -289,23 +280,6 @@ fapi2::ReturnCode p9_chiplet_scominit(const fapi2::Target<fapi2::TARGET_TYPE_PRO
goto fapi_try_exit;
}

// HCA setup
{
FAPI_TRY(fapi2::putScom(i_target, PU_EHHCA_FIR_ACTION0_REG, HCA_EH_FIR_ACTION0),
"Error from putScom (PU_EHHCA_FIR_ACTION0_REG)");
FAPI_TRY(fapi2::putScom(i_target, PU_EHHCA_FIR_ACTION1_REG, HCA_EH_FIR_ACTION1),
"Error from putScom (PU_EHHCA_FIR_ACTION0_REG)");
FAPI_TRY(fapi2::putScom(i_target, PU_EHHCA_FIR_MASK_REG, HCA_EH_FIR_MASK),
"Error from putScom (PU_EHHCA_FIR_MASK_REG)");

FAPI_TRY(fapi2::putScom(i_target, PU_ENHCA_FIR_ACTION0_REG, HCA_EN_FIR_ACTION0),
"Error from putScom (PU_ENHCA_FIR_ACTION0_REG)");
FAPI_TRY(fapi2::putScom(i_target, PU_ENHCA_FIR_ACTION1_REG, HCA_EN_FIR_ACTION1),
"Error from putScom (PU_ENHCA_FIR_ACTION0_REG)");
FAPI_TRY(fapi2::putScom(i_target, PU_ENHCA_FIR_MASK_REG, HCA_EN_FIR_MASK),
"Error from putScom (PU_ENHCA_FIR_MASK_REG)");
}

fapi_try_exit:
FAPI_DBG("End");
return fapi2::current_err;
Expand Down

0 comments on commit 0446c85

Please sign in to comment.