summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/pm/p9_pm_firinit.C
diff options
context:
space:
mode:
authorSangeetha T S <sangeet2@in.ibm.com>2016-11-23 01:16:51 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-03-13 12:33:48 -0400
commita091f34a867b34e8e1e8df6f403333de44bfce4c (patch)
treebe1b1af81e5c9093e2434ca35053fe0f4d84444f /src/import/chips/p9/procedures/hwp/pm/p9_pm_firinit.C
parent45c9448022b54ef2703219248c3f1570c6b1d210 (diff)
downloadtalos-hostboot-a091f34a867b34e8e1e8df6f403333de44bfce4c.tar.gz
talos-hostboot-a091f34a867b34e8e1e8df6f403333de44bfce4c.zip
Modifications to reset/init procedures
- Reset procedure to work in lieu with the speaical wakeup in CRONUS - Remove additional calls to PBA init in reset-init flow Change-Id: I7bbc2916c9ecd3d4a67f5f785cde822e444c6596 RTC: 168887 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/32942 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: RANGANATHPRASAD G. BRAHMASAMUDRA <prasadbgr@in.ibm.com> Reviewed-by: Gregory S. Still <stillgs@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/32943 Reviewed-by: Hostboot Team <hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@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/import/chips/p9/procedures/hwp/pm/p9_pm_firinit.C')
-rw-r--r--src/import/chips/p9/procedures/hwp/pm/p9_pm_firinit.C21
1 files changed, 1 insertions, 20 deletions
diff --git a/src/import/chips/p9/procedures/hwp/pm/p9_pm_firinit.C b/src/import/chips/p9/procedures/hwp/pm/p9_pm_firinit.C
index 26ff9f9e9..c340742cd 100644
--- a/src/import/chips/p9/procedures/hwp/pm/p9_pm_firinit.C
+++ b/src/import/chips/p9/procedures/hwp/pm/p9_pm_firinit.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2015,2016 */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -37,9 +37,6 @@
/// High-level procedure flow:
///
/// \verbatim
-/// - call p9_pm_occ_firinit.C
-/// - evaluate RC
-///
/// - call p9_pm_pba_firinit.C
/// - evaluate RC
///
@@ -59,7 +56,6 @@
// Includes
// ----------------------------------------------------------------------
#include <p9_pm_firinit.H>
-#include <p9_pm_occ_firinit.H>
#include <p9_pm_pba_firinit.H>
#include <p9_pm_ppm_firinit.H>
#include <p9_pm_cme_firinit.H>
@@ -78,16 +74,6 @@ fapi2::ReturnCode p9_pm_firinit(
fapi2::buffer<uint64_t> l_data64;
// CHECKING FOR FIRS BEFORE RESET and INIT
-
- FAPI_DBG("Checking OCC FIRs");
- FAPI_TRY(fapi2::getScom(i_target, PERV_TP_OCC_SCOM_OCCLFIR, l_data64),
- "ERROR: Failed to fetch OCC FIR");
-
- if(l_data64)
- {
- FAPI_INF("WARNING: OCC has active errors");
- }
-
FAPI_DBG("Checking PBA FIRs");
FAPI_TRY(fapi2::getScom(i_target, PU_PBAFIR , l_data64),
"ERROR: Failed to fetch PBA FIR");
@@ -97,11 +83,6 @@ fapi2::ReturnCode p9_pm_firinit(
FAPI_INF("WARNING: PBA has active error(s)");
}
- // Handle OCC FIRs, Masks and actions
- FAPI_DBG("Calling OCC firinit ...");
- FAPI_EXEC_HWP(l_rc, p9_pm_occ_firinit, i_target, i_mode);
- FAPI_TRY(l_rc);
-
// Handle PBA FIRs, Masks and actions
FAPI_DBG("Calling PBA firinit ...");
FAPI_EXEC_HWP(l_rc, p9_pm_pba_firinit, i_target, i_mode);
OpenPOWER on IntegriCloud