summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDzuy Nguyen <dzuy@us.ibm.com>2017-07-19 09:56:32 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-08-04 09:54:07 -0400
commit1e846c106286181bf82e1e5bbc68b47b6e490ce1 (patch)
treed233e2aeb3cad85d8f554109d1ae4d8855d10265 /src
parent0914d87ae57960ef859886a67b5ae1187aa82474 (diff)
downloadtalos-hostboot-1e846c106286181bf82e1e5bbc68b47b6e490ce1.tar.gz
talos-hostboot-1e846c106286181bf82e1e5bbc68b47b6e490ce1.zip
Update SCOMs in HCODE image before HOMER is established
Change-Id: I988e897104d717746d5d40d0698350c0c7baa948 RTC: 167313 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/43555 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Reviewed-by: Martin Gloff <mgloff@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Reviewed-by: Matt Derksen <mderkse1@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src')
-rw-r--r--src/include/usr/isteps/pm/pm_common_ext.H15
-rw-r--r--src/makefile1
-rw-r--r--src/usr/isteps/pm/runtime/makefile2
-rw-r--r--src/usr/isteps/pm/runtime/rt_pm.C32
-rw-r--r--src/usr/isteps/pm/runtime/test/makefile37
-rw-r--r--src/usr/isteps/pm/runtime/test/pmtestRt.H138
-rw-r--r--src/usr/targeting/common/xmltohb/attribute_types_hb.xml14
-rw-r--r--src/usr/targeting/common/xmltohb/target_types_hb.xml3
-rw-r--r--src/usr/testcore/rtloader/loader.H16
9 files changed, 255 insertions, 3 deletions
diff --git a/src/include/usr/isteps/pm/pm_common_ext.H b/src/include/usr/isteps/pm/pm_common_ext.H
index 9a58c59ef..f93e4dc77 100644
--- a/src/include/usr/isteps/pm/pm_common_ext.H
+++ b/src/include/usr/isteps/pm/pm_common_ext.H
@@ -74,6 +74,16 @@ namespace HBPM
};
/**
+ * @brief Enumeration of the HOMER_HCODE_LOADED attribute
+ *
+ */
+ enum loadHCODE
+ {
+ HCODE_NOT_LOADED = 0x0,
+ HCODE_LOADED = 0x1,
+ };
+
+ /**
* @brief Convert HOMER physical address space to a vitual address
* @param[in] i_proc_target Processsor target
* @param[in] i_phys_addr Physical address
@@ -116,8 +126,11 @@ namespace HBPM
* @return errlHndl_t Error log if resetPMAll failed
*/
errlHndl_t getRingOvd(void*& io_overrideImg);
+} //namespace HBPM ends
#if __HOSTBOOT_RUNTIME
+namespace RTPM
+{
/**
* @brief Modify the SCOM restore section of the HCODE image with the
* given register data
@@ -135,7 +148,7 @@ namespace HBPM
TARGETING::Target* i_target,
uint64_t i_rel_scom_addr,
uint64_t i_scom_data );
+} //namespace RTPM ends
#endif
-} //namespace HBPM ends
#endif
diff --git a/src/makefile b/src/makefile
index a6f2c126e..66f3bc226 100644
--- a/src/makefile
+++ b/src/makefile
@@ -319,6 +319,7 @@ RUNTIME_TESTCASE_MODULES += testpnor_rt
RUNTIME_TESTCASE_MODULES += testsecureboot_rt
RUNTIME_TESTCASE_MODULES += testtargeting_rt
RUNTIME_TESTCASE_MODULES += testsbeio_rt
+RUNTIME_TESTCASE_MODULES += testpm_rt
RELOCATABLE_IMAGE_LDFLAGS = -pie --export-dynamic
diff --git a/src/usr/isteps/pm/runtime/makefile b/src/usr/isteps/pm/runtime/makefile
index fa1aca5ae..8590c85fb 100644
--- a/src/usr/isteps/pm/runtime/makefile
+++ b/src/usr/isteps/pm/runtime/makefile
@@ -36,6 +36,8 @@ EXTRAINCDIR += ${ROOTPATH}/src/usr/scom/runtime
## Objects unique to HBRT
OBJS += rt_pm.o
+SUBDIRS += test.d
+
## Objects common to HBRT and HB IPL
include ../pm.mk
diff --git a/src/usr/isteps/pm/runtime/rt_pm.C b/src/usr/isteps/pm/runtime/rt_pm.C
index 32d3e0a25..070512b8d 100644
--- a/src/usr/isteps/pm/runtime/rt_pm.C
+++ b/src/usr/isteps/pm/runtime/rt_pm.C
@@ -158,6 +158,7 @@ namespace RTPM
break;
}
+
l_err = HBPM::loadPMComplex(proc_target,
i_homer_addr,
i_occ_common_addr,
@@ -167,8 +168,18 @@ namespace RTPM
TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
ERR_MRK"load_pm_complex: "
"load PM complex failed!" );
+ proc_target->setAttr<ATTR_HOMER_HCODE_LOADED>(
+ HBPM::HCODE_NOT_LOADED);
break;
}
+ else
+ {
+ TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
+ "load_pm_complex: "
+ "load PM complex successfully." );
+ proc_target->setAttr<ATTR_HOMER_HCODE_LOADED>(
+ HBPM::HCODE_LOADED);
+ }
} while(0);
@@ -304,6 +315,24 @@ namespace RTPM
int rc = 0;
do {
+ const TARGETING::Target * l_pChipTarget =
+ getParentChip(const_cast<TARGETING::Target *>(i_target));
+
+ // Check to see if hcode is loaded
+ uint8_t l_hcode_loaded =
+ l_pChipTarget->getAttr<ATTR_HOMER_HCODE_LOADED>();
+
+ if(l_hcode_loaded == HBPM::HCODE_NOT_LOADED)
+ {
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
+ ERR_MRK"hcode_update: HCODE not loaded."
+ " Target 0x%llX section 0x%X "
+ "operation 0x%X scomAddr 0x%llX scomData 0x%llX",
+ get_huid(i_target), i_section,
+ i_operation, i_rel_scom_addr, i_scom_data);
+ break;
+ }
+
if( g_hostInterfaces == NULL ||
g_hostInterfaces->hcode_scom_update == NULL )
{
@@ -340,8 +369,6 @@ namespace RTPM
}
// Get the Proc Chip Id
- const TARGETING::Target * l_pChipTarget =
- getParentChip(const_cast<TARGETING::Target *>(i_target));
RT_TARG::rtChipId_t l_chipId = 0;
l_err = RT_TARG::getRtTarget(l_pChipTarget, l_chipId);
@@ -371,6 +398,7 @@ namespace RTPM
i_operation,
l_scomAddr,
i_scom_data);
+
if(rc)
{
TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
diff --git a/src/usr/isteps/pm/runtime/test/makefile b/src/usr/isteps/pm/runtime/test/makefile
new file mode 100644
index 000000000..796b59386
--- /dev/null
+++ b/src/usr/isteps/pm/runtime/test/makefile
@@ -0,0 +1,37 @@
+# IBM_PROLOG_BEGIN_TAG
+# This is an automatically generated prolog.
+#
+# $Source: src/usr/isteps/pm/runtime/test/makefile $
+#
+# OpenPOWER HostBoot Project
+#
+# Contributors Listed Below - COPYRIGHT 2017
+# [+] International Business Machines Corp.
+#
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+# implied. See the License for the specific language governing
+# permissions and limitations under the License.
+#
+# IBM_PROLOG_END_TAG
+
+HOSTBOOT_RUNTIME = 1
+
+ROOTPATH = ../../../../../..
+
+MODULE = testpm_rt
+
+EXTRAINCDIR += ${ROOTPATH}/src/usr/isteps/pm
+EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/utils
+
+TESTS = *.H
+
+include ${ROOTPATH}/config.mk
diff --git a/src/usr/isteps/pm/runtime/test/pmtestRt.H b/src/usr/isteps/pm/runtime/test/pmtestRt.H
new file mode 100644
index 000000000..5a831919a
--- /dev/null
+++ b/src/usr/isteps/pm/runtime/test/pmtestRt.H
@@ -0,0 +1,138 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/pm/runtime/test/pmtestRt.H $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2017 */
+/* [+] International Business Machines Corp. */
+/* */
+/* */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
+/* */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
+/* */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
+/* */
+/* IBM_PROLOG_END_TAG */
+#ifndef __TEST_PMTESTRT_H
+#define __TEST_PMTESTRT_H
+
+/**
+ * @file pmtestRt.H
+ *
+ * @brief Unit test for runtime pm
+ */
+
+#include <cxxtest/TestSuite.H>
+#include <runtime/interface.h>
+#include <runtime/rt_targeting.H>
+#include <targeting/common/utilFilter.H>
+#include <errl/errlmanager.H>
+#include <devicefw/userif.H>
+#include <devicefw/driverif.H>
+#include <initservice/isteps_trace.H>
+#include <runtime/runtime.H>
+#include <runtime/runtime_reasoncodes.H>
+
+#include <isteps/pm/pm_common_ext.H>
+#include <pnor/pnorif.H>
+#include <stopreg/p9_stop_api.H>
+
+//trace
+extern trace_desc_t* g_trac_isteps_trace;
+
+using namespace RTPM;
+using namespace HBPM;
+using namespace TARGETING;
+using namespace CxxTest;
+
+class PMTest : public CxxTest::TestSuite
+{
+ public:
+
+ void test_hcode_update(void)
+ {
+ errlHndl_t l_err;
+
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
+ ENTER_MRK "test_hcode_update Enter");
+
+ TARGETING::TargetHandleList l_coreList;
+ getAllChiplets(l_coreList, TYPE_CORE, true);
+
+ for (const auto & l_core: l_coreList)
+ {
+ const TARGETING::Target * l_parentChip =
+ getParentChip(const_cast<TARGETING::Target *>(l_core));
+
+ TARGETING::Target * l_parentTarget =
+ const_cast<TARGETING::Target *>(l_parentChip);
+
+ /*
+ * TODO RTC 177702
+ * We should be calling load_pm_complex here, but due to a
+ * simics issue, load_pm_complex will fail. Instead, we'll
+ * just run these 2 tests which set the HOMER_HCODE_LOADED
+ * attribute and check for result.
+ */
+
+ // Set to not loaded, should get NULL for errl
+ TS_INFO("pm_runtime_test: hcode_update with"
+ " HCODE_NOT_LOADED on target 0x%llx",
+ get_huid(l_parentTarget));
+ l_parentTarget->setAttr<ATTR_HOMER_HCODE_LOADED>(
+ HCODE_NOT_LOADED);
+
+ l_err = RTPM::hcode_update(
+ stopImageSection::P9_STOP_SECTION_CORE_SCOM,
+ stopImageSection::P9_STOP_SCOM_APPEND,
+ l_core,
+ 0x20010A43,
+ 0x0 );
+
+ if(l_err == NULL)
+ {
+ TS_INFO("hcode_update with HCODE_NOT_LOADED PASSED");
+ }
+ else
+ {
+ TS_FAIL("hcode_update with HCODE_NOT_LOADED FAILED");
+ }
+
+ // Set to loaded, should not get errl
+ TS_INFO("pm_runtime_test: hcode_update with"
+ " HCODE_LOADED on target 0x%llx",
+ get_huid(l_parentTarget));
+ l_parentTarget->setAttr<ATTR_HOMER_HCODE_LOADED>(
+ HCODE_LOADED);
+
+ l_err = RTPM::hcode_update(
+ stopImageSection::P9_STOP_SECTION_CORE_SCOM,
+ stopImageSection::P9_STOP_SCOM_APPEND,
+ l_core,
+ 0x20010A43,
+ 0x0 );
+
+ if(l_err)
+ {
+ TS_FAIL("hcode_update with HCODE_LOADED FAILED");
+ }
+ else
+ {
+ TS_INFO("hcode_update with HCODE_LOADED PASSED");
+ }
+ }
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
+ EXIT_MRK "test_hcode_update Exit");
+ }
+};
+
+#endif
diff --git a/src/usr/targeting/common/xmltohb/attribute_types_hb.xml b/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
index 8a91bdbf4..9c92984b0 100644
--- a/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
+++ b/src/usr/targeting/common/xmltohb/attribute_types_hb.xml
@@ -422,6 +422,20 @@
<hbOnly/>
</attribute>
+<attribute>
+ <id>HOMER_HCODE_LOADED</id>
+ <description>
+ Attribute to check if HCODE is loaded in HOMER
+ </description>
+ <simpleType>
+ <uint8_t></uint8_t>
+ </simpleType>
+ <persistency>volatile-zeroed</persistency>
+ <readable/>
+ <writeable/>
+ <hbOnly/>
+</attribute>
+
<enumerationType>
<id>IPMI_SENSOR_ARRAY</id>
<description>Enumeration defining the offsets into the
diff --git a/src/usr/targeting/common/xmltohb/target_types_hb.xml b/src/usr/targeting/common/xmltohb/target_types_hb.xml
index 51617b060..6aef9602b 100644
--- a/src/usr/targeting/common/xmltohb/target_types_hb.xml
+++ b/src/usr/targeting/common/xmltohb/target_types_hb.xml
@@ -75,6 +75,9 @@
<id>HOMER_VIRT_ADDR</id>
</attribute>
<attribute>
+ <id>HOMER_HCODE_LOADED</id>
+ </attribute>
+ <attribute>
<id>SBE_FFDC_ADDR</id>
</attribute>
<attribute>
diff --git a/src/usr/testcore/rtloader/loader.H b/src/usr/testcore/rtloader/loader.H
index aa035d1eb..ac454e9f1 100644
--- a/src/usr/testcore/rtloader/loader.H
+++ b/src/usr/testcore/rtloader/loader.H
@@ -144,6 +144,7 @@ class RuntimeLoaderTest : public CxxTest::TestSuite
intf->pnor_write= rt_pnor_write;
intf->ipmi_msg= rt_ipmi_msg;
intf->clock_gettime = clock_gettime;
+ intf->hcode_scom_update = rt_hcode_update;
// Call init.
runtimeInterfaces_t* rtInterface =
@@ -686,6 +687,21 @@ class RuntimeLoaderTest : public CxxTest::TestSuite
return l_plid;
}
+ //--------------------------------------------------------------------
+ static int rt_hcode_update( uint64_t i_chipId,
+ uint32_t i_section,
+ uint32_t i_operation,
+ uint64_t i_scomAddr,
+ uint64_t i_scomData )
+ {
+ TRACFCOMP(g_trac_hbrt,
+ "Loading runtime hcode_update: "
+ "target 0x%llX chipId 0x%llX section 0x%X "
+ "operation 0x%X scomAddr 0x%llX scomData 0x%llX",
+ i_chipId, i_section, i_operation, i_scomAddr, i_scomData);
+ return 0;
+ }
+
static uint64_t cv_hb_data_addr;
static uint64_t cv_comm_addr;
static uint64_t cv_comm_phys_addr;
OpenPOWER on IntegriCloud