summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/perv
diff options
context:
space:
mode:
authorSoma BhanuTej <soma.bhanu@in.ibm.com>2019-01-10 05:20:43 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2019-01-18 15:21:42 -0600
commit9fc690c83456910e45a85e9a72ac4dc729365761 (patch)
tree0646e25126a0c1924fd93003e3be981f7dbcd783 /src/import/chips/p9/procedures/hwp/perv
parenta1ec3238d820ba316f7b34a9639de7e25b7f4a7e (diff)
downloadtalos-hostboot-9fc690c83456910e45a85e9a72ac4dc729365761.tar.gz
talos-hostboot-9fc690c83456910e45a85e9a72ac4dc729365761.zip
Remove SBE region fence check - p9_extract_sbe_rc
Change-Id: I3e78fe7ee42e194fb764205dff7f63fec1e637f7 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70283 Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: Anusha Reddy Rangareddygari <anusrang@in.ibm.com> Reviewed-by: SRINIVAS V. POLISETTY <srinivan@in.ibm.com> Reviewed-by: RAJA DAS <rajadas2@in.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70287 Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9/procedures/hwp/perv')
-rw-r--r--src/import/chips/p9/procedures/hwp/perv/p9_extract_sbe_rc.C10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/import/chips/p9/procedures/hwp/perv/p9_extract_sbe_rc.C b/src/import/chips/p9/procedures/hwp/perv/p9_extract_sbe_rc.C
index cbadf3e3c..226212ecf 100644
--- a/src/import/chips/p9/procedures/hwp/perv/p9_extract_sbe_rc.C
+++ b/src/import/chips/p9/procedures/hwp/perv/p9_extract_sbe_rc.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2015,2018 */
+/* Contributors Listed Below - COPYRIGHT 2015,2019 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -289,15 +289,15 @@ fapi2::ReturnCode p9_extract_sbe_rc(const fapi2::Target<fapi2::TARGET_TYPE_PROC_
}
}
- //-- Check Perv Cplt_ctrl1 [pib(bit6) and sbe(bit9)] region fences should not be 1
+ //-- Check Perv Cplt_ctrl1 PIB(bit6) region fences should not be 1
FAPI_DBG("p9_extract_sbe_rc: Reading TP Chiplet Control 1 register");
FAPI_TRY(getScom(i_target_chip, PERV_TP_CPLT_CTRL1, l_data64));
- if(l_data64.getBit<PERV_1_CPLT_CTRL1_UNUSED_9B>() || l_data64.getBit<PERV_1_CPLT_CTRL1_UNUSED_6B>())
+ if(l_data64.getBit<PERV_1_CPLT_CTRL1_UNUSED_6B>())
{
o_return_action = P9_EXTRACT_SBE_RC::REIPL_BKP_SEEPROM;
- FAPI_ASSERT(FAIL, fapi2::EXTRACT_SBE_RC_SBE_PIB_REGION_FENCE_ERROR() .set_TARGET_CHIP(i_target_chip),
- "PIB or SBE region fence is set to 1");
+ FAPI_ASSERT(FAIL, fapi2::EXTRACT_SBE_RC_PIB_REGION_FENCE_ERROR() .set_TARGET_CHIP(i_target_chip),
+ "PIB region fence is set to 1");
}
}
else
OpenPOWER on IntegriCloud