Skip to content

Commit

Permalink
Skip RINGOVD completely if we're in secure mode
Browse files Browse the repository at this point in the history
Added a big hammer to skip the RINGOVD logic until we sort out
how to best handle lids and pnor sections securely.

Change-Id: Ibb78fab8bf7e1546d6f891383ac5d674aa65148d
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/43231
Tested-by: Jenkins Server <pfd-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>
Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Dean Sanner <dsanner@us.ibm.com>
  • Loading branch information
dcrowell77 authored and sannerd committed Jul 19, 2017
1 parent afa42a4 commit bf8d6d1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/usr/isteps/pm/pm_common.C
Expand Up @@ -1072,6 +1072,15 @@ namespace HBPM
do {
io_overrideImg = nullptr;

//@fixme - RTC:177372
// Block any use of overrides if we're secure
if( PNOR::isInhibitedSection(PNOR::RINGOVD) )
{
TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
"getRingOvd: ignore overrides in secure mode" );
break;
}

uint32_t l_lidId = Util::HWREFIMG_RINGOVD_LIDID;
if(g_pRingOvdLidMgr.get() == nullptr)
{
Expand Down

0 comments on commit bf8d6d1

Please sign in to comment.