summaryrefslogtreecommitdiffstats
path: root/src/usr/util
diff options
context:
space:
mode:
authorStephen Cprek <smcprek@us.ibm.com>2017-09-15 09:51:21 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-09-19 16:43:56 -0400
commit88342b08a1281b0244ba6cff72d64679319589a4 (patch)
tree51c78b7aa2974a5898e3c3ec92731086d5a9f09f /src/usr/util
parent97f44cca542f90537956f5f3932c3fdd1a4a829c (diff)
downloadtalos-hostboot-88342b08a1281b0244ba6cff72d64679319589a4.tar.gz
talos-hostboot-88342b08a1281b0244ba6cff72d64679319589a4.zip
Disable OCC load from resv memory until FSP adds OCC pnor support
Change-Id: I751145be188d1d74f5465315c07495cac92781d2 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/46267 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Michael Baiocchi <mbaiocch@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> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/util')
-rw-r--r--src/usr/util/runtime/utillidmgr_rt.C8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/usr/util/runtime/utillidmgr_rt.C b/src/usr/util/runtime/utillidmgr_rt.C
index cbaaac3fa..721b8034a 100644
--- a/src/usr/util/runtime/utillidmgr_rt.C
+++ b/src/usr/util/runtime/utillidmgr_rt.C
@@ -327,6 +327,14 @@ const uint32_t * UtilLidMgr::getLidList(size_t * o_num)
bool UtilLidMgr::lidInHbResvMem(const uint32_t i_lidId) const
{
+ // @TODO CQ:SW400352 Remove this when fsp adds in PNOR support
+ // hostboot could not verify it from pnor, so it is not in hb resv meomory
+ if (iv_spBaseServicesEnabled &&
+ (i_lidId == Util::OCC_LIDID || i_lidId == Util::OCC_CONTAINER_LIDID))
+ {
+ return false;
+ }
+
return i_lidId == Util::OCC_LIDID ||
i_lidId == Util::OCC_CONTAINER_LIDID ||
i_lidId == Util::WOF_LIDID ||
OpenPOWER on IntegriCloud