summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/pm
diff options
context:
space:
mode:
authorDan Crowell <dcrowell@us.ibm.com>2019-01-08 08:53:21 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2019-01-25 13:00:33 -0600
commitf34e8263607ceeb9dec448ca0aa762e613a1c746 (patch)
tree5f9cc43f55734eeb6a4df85b209c227b2e712637 /src/import/chips/p9/procedures/hwp/pm
parent3e1fcbff53a59d2d29f6f9c363b5eda5281dee74 (diff)
downloadtalos-hostboot-f34e8263607ceeb9dec448ca0aa762e613a1c746.tar.gz
talos-hostboot-f34e8263607ceeb9dec448ca0aa762e613a1c746.zip
Remove p9_dump_stop_info
This file was deprecated awhile ago, replaced by p9_check_idle_stop_done. Change-Id: I62c4e59954ca088fc3193c962a3d417f2270ac8e Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70196 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-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')
-rw-r--r--src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.C104
-rw-r--r--src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.H79
-rw-r--r--src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.mk27
3 files changed, 0 insertions, 210 deletions
diff --git a/src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.C b/src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.C
deleted file mode 100644
index 77755de38..000000000
--- a/src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.C
+++ /dev/null
@@ -1,104 +0,0 @@
-/* IBM_PROLOG_BEGIN_TAG */
-/* This is an automatically generated prolog. */
-/* */
-/* $Source: src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.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 */
-///
-/// @file p9_dump_stop_info.C
-/// @brief Dump the state of STOP processing hardware (including relevant PPEs)
-/// for first failure capture debug.
-///
-// *HWP HWP Owner: Amit Kumar <akumar3@us.ibm.com>
-// *HWP FW Owner: Prem Jha <premjha1@in.ibm.com>
-// *HWP Team: PM
-// *HWP Level: 1
-// *HWP Consumed by: FSP:HS
-///
-/// @verbatim
-/// High-level procedure flow:
-///
-/// set bool to enable FAPI_ERR output
-/// clear bool to enable Error Logging (likely to come in a second phase)
-/// Read control attributes to adjust above control vars
-/// -- functions below would honor these controls as to what is output
-///
-/// for each CME
-/// check (and log) CME operational state
-/// call p9_ppe_state (CME address, HALT) to extract PPE core state
-/// call p9_intr_regs (CME address) to extract CME interrupts
-/// call p9_mib_state (CME address) to extract CME memory interface state
-/// call p9_cme_regs (CME address) to extract CME SCOMs (including CME FIR)
-///
-/// for each CORE
-/// log STOP History register
-/// log Special Wakeup registers (FSP, OCC, HYP, OTR)
-/// log Core PPM Error Summary register
-/// log NetCntl0 register
-/// log PFETCNTLSTAT register
-///
-/// for each EQ
-/// log STOP History register
-/// log Quad Chiplet Control register
-///
-/// // Chip content - SGPE and OCB functions
-/// call p9_ppe_state (SGPE address, HALT) to extract PPE core state
-/// call p9_mib_state (SGPE address) to extract SGPOE memory interface state
-/// call p9_gpe_regs (SGPE address) to extract SGPE SCOMs
-/// log OCC LFIR
-/// log OCC Flags
-/// log OISR0,1
-/// log OIMR0,1
-/// log OPIT2C* to gather STOP transtion interrupts
-///
-/// Extract SGPE PK trace
-///
-///
-/// Procedure Prereq:
-/// - System clocks are running
-/// @endverbatim
-///
-//------------------------------------------------------------------------------
-
-
-// ----------------------------------------------------------------------
-// Includes
-// ----------------------------------------------------------------------
-
-#include <p9_dump_stop_info.H>
-
-// ----------------------------------------------------------------------
-// Procedure Function
-// ----------------------------------------------------------------------
-
-/// @brief Dump the state of STOP processing hardware (including relevant PPEs)
-/// for first failure capture debug.
-
-fapi2::ReturnCode p9_dump_stop_info(
- const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>& i_target)
-{
- FAPI_INF("> p9_dump_stop_info...");
-
-
- FAPI_INF("< p9_dump_stop_info...");
-
- return fapi2::FAPI2_RC_SUCCESS;
-}
diff --git a/src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.H b/src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.H
deleted file mode 100644
index 7f4dff5cf..000000000
--- a/src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.H
+++ /dev/null
@@ -1,79 +0,0 @@
-/* IBM_PROLOG_BEGIN_TAG */
-/* This is an automatically generated prolog. */
-/* */
-/* $Source: src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.H $ */
-/* */
-/* 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 */
-
-/// @file p9_dump_stop_info.H
-/// @brief Dump the state of STOP processing hardware (including relevant PPEs)
-/// for first failure capture debug.
-///
-// *HWP HWP Owner: Amit Kumar <akumar3@us.ibm.com>
-// *HWP Backup HWP Owner: Greg Still <stillgs@us.ibm.com>
-// *HWP FW Owner: Prem S Jha <premjha2@in.ibm.com>
-// *HWP Team: PM
-// *HWP Level: 1
-// *HWP Consumed by: FSP:HS
-///
-///-----------------------------------------------------------------------------
-
-#ifndef _P9_DUMPSTOPINFO_H_
-#define _P9_DUMPSTOPINFO_H_
-
-//------------------------------------------------------------------------------
-// Includes
-//------------------------------------------------------------------------------
-
-#include <fapi2.H>
-#include <p9_quad_scom_addresses.H>
-#include <p9_quad_scom_addresses_fld.H>
-
-
-// function pointer typedef definition for HWP call support
-typedef fapi2::ReturnCode (*p9_dump_stop_info_FP_t) (
- const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>&);
-
-extern "C"
-{
-
-//------------------------------------------------------------------------------
-// Function prototype
-//------------------------------------------------------------------------------
-
-/// @brief Dump the state of STOP processing hardware (including relevant PPEs)
-/// for first failure capture debug.
-///
-/// @param[in] i_target Chip target
-///
-/// @return FAPI2_RC_SUCCESS if success, else error code.
-///
-/// @attr ATTR_DUMP_STOP_INFO_SUPPRESS_ERROR_TRACE if set to 1, FAPI_ERR records
-/// are suppressed. Default i that FAPI_ERR records will be produced.
-/// @attr ATTR_DUMP_STOP_INFO_ENABLE_ERRORLOG if set to 1, will write state
-/// information to error logs.
-
- fapi2::ReturnCode p9_dump_stop_info(
- const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>& i_target);
-
-} // extern "C"
-
-#endif // _P9_DUMPSTOPINFO_H_
diff --git a/src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.mk b/src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.mk
deleted file mode 100644
index d68c3e634..000000000
--- a/src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.mk
+++ /dev/null
@@ -1,27 +0,0 @@
-# IBM_PROLOG_BEGIN_TAG
-# This is an automatically generated prolog.
-#
-# $Source: src/import/chips/p9/procedures/hwp/pm/p9_dump_stop_info.mk $
-#
-# 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
-PROCEDURE=p9_dump_stop_info
-$(call ADD_MODULE_INCDIR,$(PROCEDURE),$(PROJECT_ROOT)/chips/p9/procedures/hwp/lib)
-$(call BUILD_PROCEDURE)
OpenPOWER on IntegriCloud