summaryrefslogtreecommitdiffstats
path: root/src/usr/isteps/istep10
diff options
context:
space:
mode:
authorPrachi Gupta <pragupta@us.ibm.com>2015-10-23 14:30:26 -0500
committerPatrick Williams <iawillia@us.ibm.com>2015-12-11 15:30:26 -0600
commit7e5ca24a1eec65d3fdfba811c85f6f758277313e (patch)
tree72b4b20275027811c59ee42e1134a236b1829278 /src/usr/isteps/istep10
parentbce98936a30fb420c5deb9faf361db0fc01f35df (diff)
downloadblackbird-hostboot-7e5ca24a1eec65d3fdfba811c85f6f758277313e.tar.gz
blackbird-hostboot-7e5ca24a1eec65d3fdfba811c85f6f758277313e.zip
P9 Isteps: Created directory structure for istep 10 wrappers
Change-Id: I6ae2116f19ec75641ee0f27c7295f774b4c71734 RTC:137652 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/21461 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/isteps/istep10')
-rw-r--r--src/usr/isteps/istep10/call_host_slave_sbe_update.C116
-rw-r--r--src/usr/isteps/istep10/call_host_update_redundant_tpm.C36
-rw-r--r--src/usr/isteps/istep10/call_proc_build_smp.C299
-rw-r--r--src/usr/isteps/istep10/makefile32
4 files changed, 483 insertions, 0 deletions
diff --git a/src/usr/isteps/istep10/call_host_slave_sbe_update.C b/src/usr/isteps/istep10/call_host_slave_sbe_update.C
new file mode 100644
index 000000000..4a82043cc
--- /dev/null
+++ b/src/usr/isteps/istep10/call_host_slave_sbe_update.C
@@ -0,0 +1,116 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep10/call_host_slave_sbe_update.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015 */
+/* [+] 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 */
+#include <errl/errlentry.H>
+#include <errl/errludtarget.H>
+#include <errl/errlmanager.H>
+#include <isteps/hwpisteperror.H>
+#include <initservice/isteps_trace.H>
+
+// targeting support
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+#include <targeting/common/target.H>
+
+#include <sbe/sbeif.H>
+#include <pnor/pnorif.H>
+#include <i2c/i2cif.H>
+
+
+using namespace ISTEP_ERROR;
+using namespace ISTEP;
+using namespace TARGETING;
+using namespace ERRORLOG;
+
+namespace ISTEP_10
+{
+void* call_host_slave_sbe_update (void *io_pArgs)
+{
+ errlHndl_t l_errl = NULL;
+ IStepError l_StepError;
+
+ TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
+ "call_host_slave_sbe_update entry" );
+ do
+ {
+
+ // Slave processors should now use Host I2C Access Method
+ I2C::i2cSetAccessMode( I2C::I2C_SET_ACCESS_MODE_PROC_HOST );
+
+ // Reset I2C devices before trying to access the SBE SEEPROMs
+ // Any error returned should not fail istep
+ l_errl = I2C::i2cResetActiveMasters( I2C::I2C_PROC_ALL );
+ if (l_errl)
+ {
+ // Commit error and keep going
+ errlCommit( l_errl, HWPF_COMP_ID );
+ }
+
+ // Call to check state of Processor SBE SEEPROMs and
+ // make any necessary updates
+ l_errl = SBE::updateProcessorSbeSeeproms();
+
+ if (l_errl)
+ {
+ // Create IStep error log and cross reference error that occurred
+ l_StepError.addErrorDetails( l_errl);
+ // Commit error
+ errlCommit( l_errl, HWPF_COMP_ID );
+ break;
+ }
+
+ // Call to Validate any Alternative Master's connection to PNOR
+ // Only call this in MNFG mode
+ // Any error returned should not fail istep
+
+ // Get target service and the system target
+ TargetService& tS = targetService();
+ TARGETING::Target* sys = NULL;
+ (void) tS.getTopLevelTarget( sys );
+ assert(sys, "call_host_slave_sbe_update() system target is NULL");
+
+ TARGETING::ATTR_MNFG_FLAGS_type mnfg_flags;
+ mnfg_flags = sys->getAttr<TARGETING::ATTR_MNFG_FLAGS>();
+ if ( mnfg_flags & MNFG_FLAG_THRESHOLDS )
+ {
+ l_errl = PNOR::validateAltMaster();
+ if (l_errl)
+ {
+ // Commit error
+ errlCommit( l_errl, HWPF_COMP_ID );
+ break;
+ }
+ }
+
+ } while (0);
+
+ TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
+ "call_host_slave_sbe_update exit" );
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+
+}
+
+};
diff --git a/src/usr/isteps/istep10/call_host_update_redundant_tpm.C b/src/usr/isteps/istep10/call_host_update_redundant_tpm.C
new file mode 100644
index 000000000..fc10dcac4
--- /dev/null
+++ b/src/usr/isteps/istep10/call_host_update_redundant_tpm.C
@@ -0,0 +1,36 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep10/call_host_update_redundant_tpm.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015 */
+/* [+] 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 */
+#include <errl/errlentry.H>
+
+namespace ISTEP_10
+{
+void* call_host_update_redundant_tpm (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+ //@TODO RTC:133830 call p9_update_security_ctrl.C HWP
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep10/call_proc_build_smp.C b/src/usr/isteps/istep10/call_proc_build_smp.C
new file mode 100644
index 000000000..24323255d
--- /dev/null
+++ b/src/usr/isteps/istep10/call_proc_build_smp.C
@@ -0,0 +1,299 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep10/call_proc_build_smp.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015 */
+/* [+] 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 */
+#include <errl/errlentry.H>
+#include <errl/errludtarget.H>
+#include <errl/errlmanager.H>
+#include <isteps/hwpisteperror.H>
+#include <initservice/isteps_trace.H>
+
+// targeting support
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+#include <targeting/common/target.H>
+
+using namespace ISTEP_ERROR;
+using namespace ISTEP;
+using namespace TARGETING;
+using namespace ERRORLOG;
+
+
+namespace ISTEP_10
+{
+void* call_proc_build_smp (void *io_pArgs)
+{
+
+ IStepError l_StepError;
+ //@TODO RTC:133830
+/* errlHndl_t l_errl = NULL;
+
+ TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
+ "call_proc_build_smp entry" );
+
+ do
+ {
+ // Get all functional proc chip targets
+ TARGETING::TargetHandleList l_cpuTargetList;
+ getAllChips(l_cpuTargetList, TYPE_PROC);
+
+ // Collect all valid abus connections and xbus connections
+ TargetPairs_t l_abusConnections;
+ TargetPairs_t l_xbusConnections;
+ l_errl = PbusLinkSvc::getTheInstance().getPbusConnections(
+ l_abusConnections, TYPE_ABUS, false );
+ if (l_errl)
+ {
+ // Create IStep error log and cross reference error that occurred
+ l_StepError.addErrorDetails( l_errl);
+ // Commit error
+ errlCommit( l_errl, HWPF_COMP_ID );
+ }
+
+ // Get XBUS connections
+ l_errl = PbusLinkSvc::getTheInstance().getPbusConnections(
+ l_xbusConnections, TYPE_XBUS, false );
+
+ if (l_errl)
+ {
+ // Create IStep error log and cross reference error that occurred
+ l_StepError.addErrorDetails( l_errl);
+ // Commit error
+ errlCommit( l_errl, HWPF_COMP_ID );
+ }
+
+ // Populate l_proc_Chips vector for each good processor chip
+ // if a A/X-bus endpoint has a valid connection, then
+ // obtain the proc chip target of the other endpoint of the
+ // connection, build the fapi target to update the corresponding
+ // chip object of this A/X-bus endpoint for the procEntry
+ std::vector<proc_build_smp_proc_chip> l_procChips;
+
+ // Get the master proc
+ TARGETING::Target * l_masterProc = NULL;
+ (void)TARGETING::targetService().
+ masterProcChipTargetHandle( l_masterProc );
+
+ for (TARGETING::TargetHandleList::const_iterator
+ l_cpuIter = l_cpuTargetList.begin();
+ l_cpuIter != l_cpuTargetList.end();
+ ++l_cpuIter)
+ {
+ const TARGETING::Target* l_pTarget = *l_cpuIter;
+ fapi::Target l_fapiproc_target( TARGET_TYPE_PROC_CHIP,
+ (const_cast<TARGETING::Target*>(l_pTarget)));
+
+ proc_build_smp_proc_chip l_procEntry;
+ l_procEntry.this_chip = l_fapiproc_target;
+ l_procEntry.enable_f0 = false;
+ l_procEntry.enable_f1 = false;
+
+ if (l_pTarget == l_masterProc)
+ {
+ l_procEntry.master_chip_sys_next = true;
+ }
+ else
+ {
+ l_procEntry.master_chip_sys_next = false;
+ }
+
+ // Get A-BUS
+ //abus connections were found so can get the a-bus
+ TARGETING::TargetHandleList l_abuses;
+ getChildChiplets( l_abuses, l_pTarget, TYPE_ABUS );
+
+ for (TARGETING::TargetHandleList::const_iterator
+ l_abusIter = l_abuses.begin();
+ l_abusIter != l_abuses.end();
+ ++l_abusIter)
+ {
+ const TARGETING::Target * l_target = *l_abusIter;
+ uint8_t l_srcID = l_target->getAttr<ATTR_CHIP_UNIT>();
+ TargetPairs_t::iterator l_itr =
+ l_abusConnections.find(l_target);
+ if ( l_itr == l_abusConnections.end() )
+ {
+ continue;
+ }
+
+ fapi::Target l_fapiEndpointTarget(TARGET_TYPE_ABUS_ENDPOINT,
+ (const_cast<TARGETING::Target*>(l_itr->second)) );
+
+ switch (l_srcID)
+ {
+ case 0:
+ l_procEntry.a0_chip = l_fapiEndpointTarget;
+ break;
+ case 1:
+ l_procEntry.a1_chip = l_fapiEndpointTarget;
+ break;
+ case 2:
+ l_procEntry.a2_chip = l_fapiEndpointTarget;
+ break;
+ default:
+ break;
+ }
+
+ const TARGETING::Target *l_pParent =
+ getParentChip(
+ (const_cast<TARGETING::Target*>(l_itr->second)));
+
+ l_procEntry.f0_node_id = static_cast<proc_fab_smp_node_id>(
+ l_pTarget->getAttr<TARGETING::ATTR_FABRIC_NODE_ID>());
+ l_procEntry.f1_node_id = static_cast<proc_fab_smp_node_id>(
+ l_pParent->getAttr<TARGETING::ATTR_FABRIC_NODE_ID>());
+ }
+
+ // Get X-BUS
+ TARGETING::TargetHandleList l_xbuses;
+ getChildChiplets( l_xbuses, l_pTarget, TYPE_XBUS );
+
+ for (TARGETING::TargetHandleList::const_iterator
+ l_xbusIter = l_xbuses.begin();
+ l_xbusIter != l_xbuses.end();
+ ++l_xbusIter)
+ {
+ const TARGETING::Target * l_target = *l_xbusIter;
+ uint8_t l_srcID = l_target->getAttr<ATTR_CHIP_UNIT>();
+ TargetPairs_t::iterator l_itr =
+ l_xbusConnections.find(l_target);
+ if ( l_itr == l_xbusConnections.end() )
+ {
+ continue;
+ }
+
+ fapi::Target l_fapiEndpointTarget(TARGET_TYPE_XBUS_ENDPOINT,
+ (const_cast<TARGETING::Target*>(l_itr->second)) );
+
+ switch (l_srcID)
+ {
+ case 0:
+ l_procEntry.x0_chip = l_fapiEndpointTarget;
+ break;
+ case 1:
+ l_procEntry.x1_chip = l_fapiEndpointTarget;
+ break;
+ case 2:
+ l_procEntry.x2_chip = l_fapiEndpointTarget;
+ break;
+ case 3:
+ l_procEntry.x3_chip = l_fapiEndpointTarget;
+ break;
+ default:
+ break;
+ }
+ }
+
+ l_procChips.push_back( l_procEntry );
+ }
+
+ // call the HWP with each fapi::Target
+ FAPI_INVOKE_HWP( l_errl, proc_build_smp, l_procChips,
+ SMP_ACTIVATE_PHASE1 );
+
+ if(l_errl)
+ {
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
+ "ERROR : proc_build_smp" );
+ // Create IStep error log and cross reference error that occurred
+ l_StepError.addErrorDetails(l_errl);
+ // Commit error
+ errlCommit( l_errl, HWPF_COMP_ID );
+ break;
+ }
+ else
+ {
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
+ "SUCCESS : proc_build_smp" );
+ }
+
+ // At the point where we can now change the proc chips to use
+ // XSCOM rather than FSISCOM which is the default.
+
+ TARGETING::TargetHandleList procChips;
+ getAllChips(procChips, TYPE_PROC);
+
+ TARGETING::TargetHandleList::iterator curproc = procChips.begin();
+
+ // Loop through all proc chips
+ while(curproc != procChips.end())
+ {
+ TARGETING::Target* l_proc_target = *curproc;
+
+ // If the proc chip supports xscom..
+ if (l_proc_target->getAttr<ATTR_PRIMARY_CAPABILITIES>()
+ .supportsXscom)
+ {
+ ScomSwitches l_switches =
+ l_proc_target->getAttr<ATTR_SCOM_SWITCHES>();
+
+ // If Xscom is not already enabled.
+ if ((l_switches.useXscom != 1) || (l_switches.useFsiScom != 0))
+ {
+ l_switches.useFsiScom = 0;
+ l_switches.useXscom = 1;
+
+ // Turn off FSI scom and turn on Xscom.
+ l_proc_target->setAttr<ATTR_SCOM_SWITCHES>(l_switches);
+
+ // Reset the FSI2OPB logic on the new chips
+ l_errl = FSI::resetPib2Opb(l_proc_target);
+ if(l_errl)
+ {
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
+ "ERROR : resetPib2Opb on %.8X",
+ TARGETING::get_huid(l_proc_target));
+ // Create IStep error log and cross reference error that occurred
+ l_StepError.addErrorDetails(l_errl);
+ // Commit error
+ errlCommit( l_errl, HWPF_COMP_ID );
+ break;
+ }
+ }
+ }
+
+ // Enable PSI interrupts even if can't Xscom as
+ // Pbus is up and interrupts can flow
+ l_errl = INTR::enablePsiIntr(l_proc_target);
+ if(l_errl)
+ {
+ // capture the target data in the elog
+ ErrlUserDetailsTarget(l_proc_target).addToLog( l_errl );
+
+ break;
+ }
+
+ ++curproc;
+ }
+
+
+ } while (0);
+
+ TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
+ "call_proc_build_smp exit" );
+*/
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep10/makefile b/src/usr/isteps/istep10/makefile
new file mode 100644
index 000000000..2cc0c171c
--- /dev/null
+++ b/src/usr/isteps/istep10/makefile
@@ -0,0 +1,32 @@
+# IBM_PROLOG_BEGIN_TAG
+# This is an automatically generated prolog.
+#
+# $Source: src/usr/isteps/istep10/makefile $
+#
+# OpenPOWER HostBoot Project
+#
+# Contributors Listed Below - COPYRIGHT 2015
+# [+] 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
+ROOTPATH = ../../../..
+MODULE = istep10
+
+OBJS += call_proc_build_smp.o
+OBJS += call_host_slave_sbe_update.o
+OBJS += call_host_update_redundant_tpm.o
+
+include ${ROOTPATH}/config.mk
OpenPOWER on IntegriCloud