summaryrefslogtreecommitdiffstats
path: root/src/usr
diff options
context:
space:
mode:
authorChristian Geddes <crgeddes@us.ibm.com>2017-10-17 09:30:28 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-10-18 11:11:03 -0400
commit2752037239ad9fface375bb89362118d3471e07e (patch)
treef75006cd4b142b14a5cc1f908235a9873cdc7b32 /src/usr
parent0d9804fd00081aa587e3d5bb7f38f9f36c4689b5 (diff)
downloadtalos-hostboot-2752037239ad9fface375bb89362118d3471e07e.tar.gz
talos-hostboot-2752037239ad9fface375bb89362118d3471e07e.zip
Re-apply p9_int_scom inits on shutdown path (2nd attempt)
The interrupt resource provider shutdown path is clearing out some scom inits that need to be set or else we see problems in the hypervisor. This commit registers a new event to the shutdown command which will re-apply the scominits prior to shutting down and passing off control to the hypervisor. Change-Id: Ic6bfd1d95b593aee3f6202f5902dcff7adb29b08 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/48495 Reviewed-by: Martin Gloff <mgloff@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr')
-rwxr-xr-xsrc/usr/fapi2/fapi2.mk7
-rw-r--r--src/usr/isteps/istep10/makefile3
-rw-r--r--src/usr/isteps/istep21/call_host_start_payload.C233
-rw-r--r--src/usr/isteps/istep21/makefile1
4 files changed, 168 insertions, 76 deletions
diff --git a/src/usr/fapi2/fapi2.mk b/src/usr/fapi2/fapi2.mk
index ee1cdc162..6e4b6490a 100755
--- a/src/usr/fapi2/fapi2.mk
+++ b/src/usr/fapi2/fapi2.mk
@@ -45,6 +45,7 @@ EXTRAINCDIR += $(ROOTPATH)/src/import/chips/p9/procedures/hwp/sbe/
EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/accessors/
EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/lib/
EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/ffdc/
+EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/initfiles/
EXTRAINCDIR += ${HWP_PATH}
EXTRAINCDIR += ${HWP_PATH_2}/hwp/memory
EXTRAINCDIR += ${HWP_PATH_2}/hwp/memory/lib/
@@ -152,9 +153,15 @@ include $(ROOTPATH)/src/import/chips/p9/procedures/hwp/pm/p9_pm_get_poundv_bucke
include $(ROOTPATH)/src/import/chips/p9/procedures/hwp/pm/p9_pm_get_poundw_bucket.mk
include $(ROOTPATH)/src/import/chips/p9/procedures/hwp/pm/p9_pm_get_poundw_bucket_attr.mk
+# We specifically removed this from the istep10.so and placed it here because
+# we have to reapply this init on the shutdown path after the interrupt resource
+# provider is shutdown
+include $(ROOTPATH)/src/import/chips/p9/procedures/hwp/initfiles/p9_int_scom.mk
+
VPATH += ${HWP_PATH_1}/hwp/accessors
VPATH += ${ROOTPATH}/src/import/hwpf/fapi2/src/
VPATH += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/pm/
VPATH += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/ffdc/
VPATH += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/lib/
+VPATH += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/initfiles/
VPATH += ${GENPATH}
diff --git a/src/usr/isteps/istep10/makefile b/src/usr/isteps/istep10/makefile
index 11f30ef1c..1c4d7b6c0 100644
--- a/src/usr/isteps/istep10/makefile
+++ b/src/usr/isteps/istep10/makefile
@@ -84,11 +84,12 @@ include ${PROCEDURES_PATH}/hwp/initfiles/p9_fbc_ioo_dl_scom.mk
include ${PROCEDURES_PATH}/hwp/initfiles/p9_nx_scom.mk
include ${PROCEDURES_PATH}/hwp/initfiles/p9_cxa_scom.mk
include ${PROCEDURES_PATH}/hwp/initfiles/p9_mmu_scom.mk
-include ${PROCEDURES_PATH}/hwp/initfiles/p9_int_scom.mk
include ${PROCEDURES_PATH}/hwp/initfiles/p9_vas_scom.mk
include ${PROCEDURES_PATH}/hwp/initfiles/p9c_dmi_scom.mk
include ${PROCEDURES_PATH}/hwp/initfiles/p9c_mi_scom.mk
include ${PROCEDURES_PATH}/hwp/initfiles/p9c_mc_scom.mk
+# Note that p9_int_scom.mk is included in fapi2.mk for
+# workaround reasons so we are not including it here
# proc_obus_scominit : Apply scom inits to Obus
include ${PROCEDURES_PATH}/hwp/io/p9_io_obus_scominit.mk
diff --git a/src/usr/isteps/istep21/call_host_start_payload.C b/src/usr/isteps/istep21/call_host_start_payload.C
index 661af9d77..251983324 100644
--- a/src/usr/isteps/istep21/call_host_start_payload.C
+++ b/src/usr/isteps/istep21/call_host_start_payload.C
@@ -52,6 +52,8 @@
#include <p9_cpu_special_wakeup.H>
#include <ipmi/ipmiwatchdog.H>
#include <config.h>
+#include <errno.h>
+#include <p9_int_scom.H>
#ifdef CONFIG_DRTM_TRIGGERING
#include <secureboot/drtm.H>
@@ -74,7 +76,7 @@ namespace ISTEP_21
* @param[in] Host boot master instance number (logical node number)
* @param[in] Is this the master HB instance [true|false]
*
- * @return errlHndl_t - NULL if succesful, otherwise a pointer to the error
+ * @return errlHndl_t - nullptr if succesful, otherwise a pointer to the error
* log.
*/
errlHndl_t callShutdown ( uint64_t i_hbInstance, bool i_masterIntance );
@@ -83,7 +85,7 @@ errlHndl_t callShutdown ( uint64_t i_hbInstance, bool i_masterIntance );
* @brief This function will send an IPC message to all other HB instances
* to perfrom the shutdown sequence.
* @param[in] Hostboot master instance number (logical node number)
- * @Return errlHndlt_t - Null if succesful, otherwise an error Handle
+ * @Return errlHndlt_t - nullptr if succesful, otherwise an error Handle
*/
errlHndl_t broadcastShutdown ( uint64_t i_hbInstance );
@@ -106,7 +108,7 @@ errlHndl_t enableCoreCheckstops();
* @brief This function will clear the PORE BARs. Needs to be done
* depending on payload type
*
- * @return errlHndl_t - NULL if successful, otherwise a pointer to the error
+ * @return errlHndl_t - nullptr if successful, otherwise a pointer to the error
* log.
*/
errlHndl_t clearPoreBars ( void );
@@ -119,90 +121,169 @@ errlHndl_t clearPoreBars ( void );
*
* @param[in] i_spFuncs - The SpFuncs system attribute.
*
- * @return errlHndl_t - NULL if successful, otherwise a pointer to the error
+ * @return errlHndl_t - nullptr if successful, otherwise a pointer to the error
* log.
*/
errlHndl_t notifyFsp ( bool i_istepModeFlag,
TARGETING::SpFunctions i_spFuncs );
+enum msg_preshutdown_types_t
+{
+ MSG_PRE_SHUTDOWN_INITS = 1 //Tells the msgQ to run inits that
+ //are needed before shutdown
+};
+
+void msgHandler(msg_q_t i_msgQ)
+{
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace, ENTER_MRK"call_host_start_payload::msgHandler()");
+
+ while(1)
+ {
+ msg_t* msg = msg_wait(i_msgQ); // wait for interrupt msg
+
+ switch(msg->type)
+ {
+ case MSG_PRE_SHUTDOWN_INITS:
+ {
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,"Pre-Shutdown Inits event received");
+ errlHndl_t l_errl = nullptr;
+ TARGETING::TargetHandleList l_cpuTargetList;
+ getAllChips(l_cpuTargetList, TYPE_PROC);
+ fapi2::Target<fapi2::TARGET_TYPE_SYSTEM> FAPI_SYSTEM;
+
+ for (const auto & l_cpu_target: l_cpuTargetList)
+ {
+ fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP> l_fapi2_proc_target(l_cpu_target);
+ FAPI_INVOKE_HWP( l_errl,
+ p9_int_scom,
+ l_cpu_target,
+ FAPI_SYSTEM);
+ if(l_errl)
+ {
+ l_errl->collectTrace("ISTEPS_TRACE",256);
+ errlCommit(l_errl, ISTEP_COMP_ID );
+ }
+ }
+
+ msg_respond(i_msgQ, msg);
+ break;
+ }
+ default:
+ msg->data[1] = -EINVAL;
+ msg_respond(i_msgQ, msg);
+ break;
+ }
+ }
+}
+
+
+/**
+* Helper function to start the messge handler
+*/
+void* msg_handler(msg_q_t i_msgQ)
+{
+ msgHandler(i_msgQ);
+ return nullptr;
+}
+
void* call_host_start_payload (void *io_pArgs)
{
- errlHndl_t l_errl = NULL;
+ errlHndl_t l_errl = nullptr;
IStepError l_StepError;
TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
"call_host_start_payload entry" );
- // Place a separator in the TPM to indicate we are passing control
- // to the next level of firmware in the stack
- l_errl = TRUSTEDBOOT::pcrExtendSeparator();
+ do{
- // For single-node systems, the non-master processors can be in a
- // different logical (powerbus) group. Need to migrate task to master.
- task_affinity_pin();
- task_affinity_migrate_to_master();
+ // Place a separator in the TPM to indicate we are passing control
+ // to the next level of firmware in the stack
+ l_errl = TRUSTEDBOOT::pcrExtendSeparator();
- uint64_t this_node = PIR_t(task_getcpuid()).groupId;
+ if(l_errl)
+ {
+ break;
+ }
+
+ msg_q_t l_msgQ = msg_q_create();
+
+ // Register event to be called on shutdown
+ INITSERVICE::registerShutdownEvent(l_msgQ,
+ MSG_PRE_SHUTDOWN_INITS,
+ INITSERVICE::PRESHUTDOWN_INIT_PRIORITY);
+
+ // Create a task to handle the messages
+ task_create(ISTEP_21::msg_handler, l_msgQ);
+
+ // For single-node systems, the non-master processors can be in a
+ // different logical (powerbus) group. Need to migrate task to master.
+ task_affinity_pin();
+ task_affinity_migrate_to_master();
- task_affinity_unpin();
+ uint64_t this_node = PIR_t(task_getcpuid()).groupId;
+
+ task_affinity_unpin();
#ifdef CONFIG_BMC_IPMI
- // TODO ISSUE 118082
- // ENABLE CODE BELOW ONCE OPAL COMPLETES ipmi WATCHDOG
+ // TODO ISSUE 118082
+ // ENABLE CODE BELOW ONCE OPAL COMPLETES ipmi WATCHDOG
#if 0
- //run the ipmi watchdog for a longer period to transition
- // to opel
- errlHndl_t err_ipmi = IPMIWATCHDOG::setWatchDogTimer(
- IPMIWATCHDOG::DEFAULT_HB_OPAL_TRANSITION_COUNTDOWN);
+ //run the ipmi watchdog for a longer period to transition
+ // to opel
+ errlHndl_t err_ipmi = IPMIWATCHDOG::setWatchDogTimer(
+ IPMIWATCHDOG::DEFAULT_HB_OPAL_TRANSITION_COUNTDOWN);
- if(err_ipmi)
- {
- TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
- "init: ERROR: Set IPMI watchdog Failed");
- err_ipmi->collectTrace("ISTEPS_TRACE",256);
- errlCommit(err_ipmi, ISTEP_COMP_ID );
+ if(err_ipmi)
+ {
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
+ "init: ERROR: Set IPMI watchdog Failed");
+ err_ipmi->collectTrace("ISTEPS_TRACE",256);
+ errlCommit(err_ipmi, ISTEP_COMP_ID );
- }
+ }
#endif
- // TODO ISSUE 118082
- // REMOVE CODE BELOW ONCE OPAL COMPLETES IPMI WATCHDOG
- // THE CODE BELOW STOPS THE IPMI TIMER FROM RUNNING
- // TO PREVENT IT GETTING TRIGGERED DURING HB_OPAL TRANSITION
+ // TODO ISSUE 118082
+ // REMOVE CODE BELOW ONCE OPAL COMPLETES IPMI WATCHDOG
+ // THE CODE BELOW STOPS THE IPMI TIMER FROM RUNNING
+ // TO PREVENT IT GETTING TRIGGERED DURING HB_OPAL TRANSITION
- // Call setWatchdogTimer without the default DON'T STOP
- // flag to stop the watchdog timer
- errlHndl_t err_ipmi = IPMIWATCHDOG::setWatchDogTimer(
- IPMIWATCHDOG::DEFAULT_HB_OPAL_TRANSITION_COUNTDOWN,
- IPMIWATCHDOG::BIOS_FRB2);
-
- if(err_ipmi)
- {
- TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
- "init: ERROR: Set IPMI watchdog Failed");
- err_ipmi->collectTrace("ISTEPS_TRACE",256);
- errlCommit(err_ipmi, ISTEP_COMP_ID );
+ // Call setWatchdogTimer without the default DON'T STOP
+ // flag to stop the watchdog timer
+ errlHndl_t err_ipmi = IPMIWATCHDOG::setWatchDogTimer(
+ IPMIWATCHDOG::DEFAULT_HB_OPAL_TRANSITION_COUNTDOWN,
+ IPMIWATCHDOG::BIOS_FRB2);
- }
+ if(err_ipmi)
+ {
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
+ "init: ERROR: Set IPMI watchdog Failed");
+ err_ipmi->collectTrace("ISTEPS_TRACE",256);
+ errlCommit(err_ipmi, ISTEP_COMP_ID );
+ }
#endif
- // broadcast shutdown to other HB instances.
- l_errl = broadcastShutdown(this_node);
+ // broadcast shutdown to other HB instances.
+ l_errl = broadcastShutdown(this_node);
- if( l_errl == NULL)
- {
+ if(l_errl)
+ {
+ break;
+ }
// - Run CXX testcases
l_errl = INITSERVICE::executeUnitTests();
- }
-#ifdef CONFIG_DRTM_TRIGGERING
+ if(l_errl)
+ {
+ break;
+ }
- if(l_errl == nullptr)
- {
+
+#ifdef CONFIG_DRTM_TRIGGERING
bool drtmMpipl = false;
SECUREBOOT::DRTM::isDrtmMpipl(drtmMpipl);
if(!drtmMpipl)
@@ -226,27 +307,29 @@ void* call_host_start_payload (void *io_pArgs)
TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace, ERR_MRK
"call_host_start_payload: Failed in call to "
"initiateDrtm()");
+ break;
}
}
}
- }
-
#endif
- if( l_errl == NULL )
- {
l_errl = disableSpecialWakeup();
- }
+ if(l_errl)
+ {
+ break;
+ }
- if( l_errl == NULL )
- {
// - Call shutdown using payload base, and payload entry.
// - base/entry will be from system attributes
// - this will start the payload (Phyp)
// NOTE: this call will not return if successful.
l_errl = callShutdown(this_node, true);
+ if(l_errl)
+ {
+ break;
+ }
- };
+ }while(0);
if( l_errl )
{
@@ -274,7 +357,7 @@ void* call_host_start_payload (void *io_pArgs)
errlHndl_t callShutdown ( uint64_t i_masterInstance,
bool i_isMaster)
{
- errlHndl_t err = NULL;
+ errlHndl_t err = nullptr;
uint64_t payloadBase = 0x0;
uint64_t payloadEntry = 0x0;
uint64_t payloadData = 0x0;
@@ -319,10 +402,10 @@ errlHndl_t callShutdown ( uint64_t i_masterInstance,
// Get Target Service, and the system target.
TargetService& tS = targetService();
- TARGETING::Target* sys = NULL;
+ TARGETING::Target* sys = nullptr;
(void) tS.getTopLevelTarget( sys );
- if( NULL == sys )
+ if( nullptr == sys )
{
// Error getting system target to get payload related values. We
// will create an error to be passed back. This will cause the
@@ -404,10 +487,10 @@ errlHndl_t callShutdown ( uint64_t i_masterInstance,
errlHndl_t broadcastShutdown ( uint64_t i_hbInstance )
{
- errlHndl_t err = NULL;
- TARGETING::Target * sys = NULL;
+ errlHndl_t err = nullptr;
+ TARGETING::Target * sys = nullptr;
TARGETING::targetService().getTopLevelTarget( sys );
- assert(sys != NULL);
+ assert(sys != nullptr);
TARGETING::ATTR_HB_EXISTING_IMAGE_type hb_images =
sys->getAttr<TARGETING::ATTR_HB_EXISTING_IMAGE>();
@@ -503,7 +586,7 @@ errlHndl_t broadcastShutdown ( uint64_t i_hbInstance )
errlHndl_t disableSpecialWakeup()
{
- errlHndl_t l_errl = NULL;
+ errlHndl_t l_errl = nullptr;
TargetHandleList l_cores;
getAllChiplets(l_cores, TYPE_CORE);
@@ -552,17 +635,17 @@ errlHndl_t disableSpecialWakeup()
*/
errlHndl_t enableCoreCheckstops()
{
- errlHndl_t l_errl = NULL;
+ errlHndl_t l_errl = nullptr;
//@TODO RTC:133848
#if 0
- void* l_slwPtr = NULL;
+ void* l_slwPtr = nullptr;
int mm_rc = 0;
// for OpenPower systems, leave core checkstops as system checkstops
if( is_sapphire_load() && (!INITSERVICE::spBaseServicesEnabled()) )
{
TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "Leaving local core checkstops as escalating to system checkstop" );
- return NULL;
+ return nullptr;
}
//@todo-RTC:130092 Remove this when Opal support is in place
@@ -581,7 +664,7 @@ errlHndl_t enableCoreCheckstops()
l_pChipTarget->getAttr<TARGETING::ATTR_SLW_IMAGE_ADDR>();
l_slwPtr = mm_block_map(reinterpret_cast<void*>(l_physAddr),
HOMER_MAX_STOP_IMG_SIZE_IN_MB*MEGABYTE);
- if( l_slwPtr == NULL )
+ if( l_slwPtr == nullptr )
{
TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "Error from mm_block_map : phys=%.16X", l_physAddr );
/*@
@@ -702,7 +785,7 @@ errlHndl_t enableCoreCheckstops()
// Just commit error and keep going
errlCommit( l_errl, ISTEP_COMP_ID );
}
- l_slwPtr = NULL;
+ l_slwPtr = nullptr;
if(l_errl)
{
@@ -717,12 +800,12 @@ errlHndl_t enableCoreCheckstops()
* @brief This function will clear the PORE BARs. Needs to be done
* depending on payload type
*
- * @return errlHndl_t - NULL if successful, otherwise a pointer to the error
+ * @return errlHndl_t - nullptr if successful, otherwise a pointer to the error
* log.
*/
errlHndl_t clearPoreBars ( void )
{
- errlHndl_t l_errl = NULL;
+ errlHndl_t l_errl = nullptr;
TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
"set PORE bars back to 0" );
@@ -790,7 +873,7 @@ errlHndl_t clearPoreBars ( void )
errlHndl_t notifyFsp ( bool i_istepModeFlag,
TARGETING::SpFunctions i_spFuncs )
{
- errlHndl_t err = NULL;
+ errlHndl_t err = nullptr;
TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
ENTER_MRK"notifyFsp()" );
diff --git a/src/usr/isteps/istep21/makefile b/src/usr/isteps/istep21/makefile
index 8601669d8..348756343 100644
--- a/src/usr/isteps/istep21/makefile
+++ b/src/usr/isteps/istep21/makefile
@@ -26,6 +26,7 @@ ROOTPATH = ../../../..
MODULE = istep21
EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/pm/
+EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/initfiles/
EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/procedures/hwp/ffdc/
EXTRAINCDIR += ${ROOTPATH}/src/import/chips/p9/utils/imageProcs/
EXTRAINCDIR += ${ROOTPATH}/src/import/hwpf/fapi2/include/
OpenPOWER on IntegriCloud