summaryrefslogtreecommitdiffstats
path: root/src/usr/isteps/istep13
diff options
context:
space:
mode:
authorAndrew Geissler <andrewg@us.ibm.com>2016-05-27 08:28:51 -0500
committerWilliam G. Hoffa <wghoffa@us.ibm.com>2016-05-31 11:10:03 -0400
commit2d06eff617168231897bd70defa7e7cb38571f02 (patch)
tree5a9eaccfce8542574635e5913caf775862ee4f13 /src/usr/isteps/istep13
parent70f8d0bd375bd2363dec005de3fa4be60a695c6f (diff)
downloadtalos-hostboot-2d06eff617168231897bd70defa7e7cb38571f02.tar.gz
talos-hostboot-2d06eff617168231897bd70defa7e7cb38571f02.zip
Hostboot IPL Flow v0.95 Updates
Change-Id: Idb12755e59948c260124b07fe20a31396f7f41fe RTC: 155066 CMVC-Coreq:995561 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/25117 Tested-by: Jenkins Server Tested-by: FSP CI Jenkins Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com> Reviewed-by: RAJESWARAN THILLAIGOVINDAN <rajeswgo@in.ibm.com> Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/usr/isteps/istep13')
-rw-r--r--src/usr/isteps/istep13/call_proc_mcs_skewadjust.C91
-rw-r--r--src/usr/isteps/istep13/makefile2
2 files changed, 0 insertions, 93 deletions
diff --git a/src/usr/isteps/istep13/call_proc_mcs_skewadjust.C b/src/usr/isteps/istep13/call_proc_mcs_skewadjust.C
deleted file mode 100644
index 5d105cc8e..000000000
--- a/src/usr/isteps/istep13/call_proc_mcs_skewadjust.C
+++ /dev/null
@@ -1,91 +0,0 @@
-/* IBM_PROLOG_BEGIN_TAG */
-/* This is an automatically generated prolog. */
-/* */
-/* $Source: src/usr/isteps/istep13/call_proc_mcs_skewadjust.C $ */
-/* */
-/* OpenPOWER HostBoot Project */
-/* */
-/* Contributors Listed Below - COPYRIGHT 2015,2016 */
-/* [+] 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/errluserdetails.H>
-#include <errl/errludtarget.H>
-#include <errl/errlmanager.H>
-#include <isteps/hwpisteperror.H>
-#include <initservice/isteps_trace.H>
-
-//HWP Invoker
-#include <fapi2/plat_hwp_invoker.H>
-
-//Targeting Support
-#include <targeting/common/utilFilter.H>
-#include <fapi2/target.H>
-
-//From Import Directory (EKB Repository)
-#include <p9_mem_skewadjust.H>
-
-using namespace ERRORLOG;
-
-namespace ISTEP_13
-{
-void* call_proc_mcs_skewadjust (void *io_pArgs)
-{
- TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "call_proc_mcs_skewadjust entry" );
- ISTEP_ERROR::IStepError l_StepError;
- errlHndl_t l_errl = NULL;
- do {
- //Use targeting code to get a list of all proc chiplets
- TARGETING::TargetHandleList l_procChiplets;
- getAllChiplets( l_procChiplets, TARGETING::TYPE_PROC );
-
- for (const auto & l_procChiplet: l_procChiplets)
- {
- const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>
- l_fapi_proc_target(l_procChiplet);
-
- // Dump current run on target
- TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
- "Running p9_mem_skewadjust HWP on "
- "target HUID %.8X", TARGETING::get_huid(l_procChiplet));
-
- // call p9_mem_skewadjust.C HWP
- FAPI_INVOKE_HWP( l_errl,
- p9_mem_skewadjust,
- l_fapi_proc_target);
-
- if(l_errl)
- {
- ErrlUserDetailsTarget(l_procChiplet).addToLog(l_errl);
- l_StepError.addErrorDetails( l_errl );
- errlCommit( l_errl, HWPF_COMP_ID );
- TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "p9_mem_skewadjust:: failed on mcs with HUID : %d",TARGETING::get_huid(l_procChiplet) );
- }
- else
- {
- TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
- "SUCCESS : p9_mem_skewadjust HWP( )" );
- }
- }
- }while(0);
-
- // end task, returning any errorlogs to IStepDisp
- TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "call_proc_mcs_skewadjust exit" );
- return l_StepError.getErrorHandle();
-}
-
-};
diff --git a/src/usr/isteps/istep13/makefile b/src/usr/isteps/istep13/makefile
index 1e3f6178e..15ebc8091 100644
--- a/src/usr/isteps/istep13/makefile
+++ b/src/usr/isteps/istep13/makefile
@@ -45,7 +45,6 @@ OBJS += call_host_disable_memvolt.o
OBJS += call_mem_pll_reset.o
OBJS += call_mem_pll_initf.o
OBJS += call_mem_pll_setup.o
-OBJS += call_proc_mcs_skewadjust.o
OBJS += call_mem_startclocks.o
OBJS += call_host_enable_memvolt.o
OBJS += call_mss_scominit.o
@@ -63,7 +62,6 @@ OBJS += $(if $(CONFIG_PALMETTO_VDDR),palmetto_vddr.o,hbVddrMsg.o)
include ${ROOTPATH}/procedure.rules.mk
include ${PROCEDURES_PATH}/hwp/perv/p9_mem_pll_initf.mk
-include ${PROCEDURES_PATH}/hwp/perv/p9_mem_skewadjust.mk
include ${PROCEDURES_PATH}/hwp/initfiles/p9_mca_scom.mk
include ${PROCEDURES_PATH}/hwp/initfiles/p9_ddrphy_scom.mk
include ${PROCEDURES_PATH}/hwp/memory/p9_mss_scominit.mk
OpenPOWER on IntegriCloud