summaryrefslogtreecommitdiffstats
path: root/src/usr/runtime
diff options
context:
space:
mode:
authorStephen Cprek <smcprek@us.ibm.com>2017-12-11 14:14:58 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-12-12 17:22:16 -0500
commit526f5106cc176d84dbc48a23acda0ce2ada52f54 (patch)
treed69d58deaeb1cee3195a4fa55903872fdff5a919 /src/usr/runtime
parent82f341573515e1dd39c622a955e08d3ab669b458 (diff)
downloadtalos-hostboot-526f5106cc176d84dbc48a23acda0ce2ada52f54.tar.gz
talos-hostboot-526f5106cc176d84dbc48a23acda0ce2ada52f54.zip
Do not preverify RINGOVD section in POWERVM mode
RINGOVD has a mistmatch of what's in PNOR and the lid on the FSP. In order to simplify things, only pre-verify for OPAL boots Change-Id: Ib667a701612df05d97acb0cd4e601d4be8ff4091 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/50773 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Nicholas E. Bofferding <bofferdn@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> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Michael Baiocchi <mbaiocch@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/runtime')
-rw-r--r--src/usr/runtime/populate_hbruntime.C8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/usr/runtime/populate_hbruntime.C b/src/usr/runtime/populate_hbruntime.C
index b4c700de2..8f62d84ac 100644
--- a/src/usr/runtime/populate_hbruntime.C
+++ b/src/usr/runtime/populate_hbruntime.C
@@ -1084,6 +1084,14 @@ errlHndl_t populate_HbRsvMem(uint64_t i_nodeId)
// Handle all Pre verified PNOR sections
for (const auto & secIdPair : preVerifiedPnorSections)
{
+ // Skip RINGOVD section in POWERVM mode
+ if (secIdPair.first == PNOR::RINGOVD &&
+ INITSERVICE::spBaseServicesEnabled() &&
+ TARGETING::is_phyp_load())
+ {
+ continue;
+ }
+
l_elog = hbResvLoadSecureSection(secIdPair.first, secIdPair.second);
if (l_elog)
{
OpenPOWER on IntegriCloud