summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9
diff options
context:
space:
mode:
authorGreg Still <stillgs@us.ibm.com>2015-10-25 22:44:05 -0500
committerStephen Cprek <smcprek@us.ibm.com>2016-02-19 17:06:49 -0600
commit79be3a4c5d10651f9b09541110408990634a5d93 (patch)
tree63c6c22ff7b9d57cea1f7670e4a1cbb26a7d4f5c /src/import/chips/p9
parentd9b916f59cd01560b4e17430c9f5601bf9d1b7c2 (diff)
downloadtalos-hostboot-79be3a4c5d10651f9b09541110408990634a5d93.tar.gz
talos-hostboot-79be3a4c5d10651f9b09541110408990634a5d93.zip
p9_pm_pfet_init Level 1
- Address Gerrit comment Change-Id: I8c6082296a365c416d560bbdb088146088067ae6 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/21480 Tested-by: Jenkins Server Reviewed-by: Bilicon Patil <bilpatil@in.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9')
-rw-r--r--src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.C113
-rw-r--r--src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.H59
-rw-r--r--src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.mk20
3 files changed, 192 insertions, 0 deletions
diff --git a/src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.C b/src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.C
new file mode 100644
index 000000000..07880959a
--- /dev/null
+++ b/src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.C
@@ -0,0 +1,113 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: chips/p9/procedures/hwp/pm/p9_pm_pfet_init.C $ */
+/* */
+/* IBM CONFIDENTIAL */
+/* */
+/* EKB Project */
+/* */
+/* COPYRIGHT 2015 */
+/* [+] International Business Machines Corp. */
+/* */
+/* */
+/* The source code for this program is not published or otherwise */
+/* divested of its trade secrets, irrespective of what has been */
+/* deposited with the U.S. Copyright Office. */
+/* */
+/* IBM_PROLOG_END_TAG */
+///
+/// @file p9_pfet_init.C
+/// @brief Initialization and reset the EC/EQ chiplet PFET controller
+///
+// *HWP HWP Owner: Amit Kumar <akumar3@us.ibm.com>
+// *HWP Backup HWP Owner: Greg Still <stillgs@us.ibm.com>
+// *HWP FW Owner: Sangeetha T S <sangeet2@in.ibm.com>
+// *HWP Team: PM
+// *HWP Level: 1
+// *HWP Consumed by: FSP:HS
+///
+/// High-level procedure flow:
+/// \verbatim
+///
+/// Check for valid parameters
+/// if PM_INIT {
+/// Get the delay setting held in platform attributes
+/// Convert these to hardware values
+/// for each EX chiplet {
+/// Store the VDD delay and VOFF value
+/// Store the VCS delay and VOFF values
+/// }
+/// } else if PM_RESET {
+/// for each EX chiplet {
+/// Reset the VDD delay and VOFF values to 0
+/// Reore the VCS delay and VOFF values to 0
+/// }
+///
+/// Procedure Prereq:
+/// - System clocks are running
+/// \endverbatim
+///
+//------------------------------------------------------------------------------
+
+
+// ----------------------------------------------------------------------
+// Includes
+// ----------------------------------------------------------------------
+#include "p9_pm_pfet_init.H"
+
+// ----------------------------------------------------------------------
+// Function prototypes
+// ----------------------------------------------------------------------
+
+
+// ----------------------------------------------------------------------
+// Function definitions
+// ----------------------------------------------------------------------
+
+/// \param[in] i_target Chip target
+/// \param[in] i_mode Control mode (PM_INIT, PM_RESET)
+///
+/// \retval FAPI_RC_SUCCESS if something good happens,
+/// \retval RC per p9_pfet_init_errors.xml otherwise
+///
+/// \attr ATTR_PM_PFET_POWERUP_DELAY_NS -
+/// Time (in nanoseconds) between PFET controller steps (7 of them)
+/// when turning the PFES ON. Applies to both VDD and VCS rails
+///
+/// \attr ATTR_PM_PFET_POWERDOWN_DELAY_NS -
+/// Time (in nanoseconds) between PFET controller steps (7 of them)
+/// when turning the PFES OFF. Applies to both VDD and VCS rails
+///
+/// \attr ATTR_PM_PFET_VDD_VOFF_SEL -
+/// Value of the stage withing the PFET controller representing OFF
+/// for the VDD rail. Enum: 0 through 8 inclusive
+///
+/// \attr ATTR_PM_PFET_VCS_VOFF_SEL -
+/// Value of the stage withing the PFET controller representing OFF
+/// for the VCS rail. Enum: 0 through 8 inclusive
+
+fapi2::ReturnCode p9_pm_pfet_init(
+ const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>&,
+ const p9pm::PM_FLOW_MODE i_mode)
+{
+ FAPI_IMP("p9_pm_pfet_init start");
+
+ // Loop over configured cache chiplets
+
+ // Establish the VDD and VCS VOff Select Setting
+
+ // Write the Power Up and Down Delays
+
+ // Loop over configured core chiplets
+
+ // Establish the VDD and VCS VOff Select Setting
+
+ // Write the Power Up and Down Delays
+
+
+ FAPI_INF("p9_pm_pfet_init end");
+ return fapi2::FAPI2_RC_SUCCESS;
+}
+
+
diff --git a/src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.H b/src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.H
new file mode 100644
index 000000000..9c1319fea
--- /dev/null
+++ b/src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.H
@@ -0,0 +1,59 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: chips/p9/procedures/ipl/hwp/p9_pm_pfet_init.C $ */
+/* */
+/* IBM CONFIDENTIAL */
+/* */
+/* EKB Project */
+/* */
+/* COPYRIGHT 2015 */
+/* [+] International Business Machines Corp. */
+/* */
+/* */
+/* The source code for this program is not published or otherwise */
+/* divested of its trade secrets, irrespective of what has been */
+/* deposited with the U.S. Copyright Office. */
+/* */
+/* IBM_PROLOG_END_TAG */
+/// @file p9_pm_pfet_init.H
+/// @brief Initialization and reset the EC/EQ chiplet PFET controller
+
+// *HWP HWP Owner : Amit Kumar <akumar3@us.ibm.com>
+// *HWP Backup HWP Owner: Greg Still <stillgs@us.ibm.com>
+// *HWP FW Owner : Sangeetha T S <sangeet2@in.ibm.com>
+// *HWP Team : PM
+// *HWP Level : 1
+// *HWP Consumed by : HS
+
+#ifndef _P9_PFET_INIT_H_
+#define _P9_PFET_INIT_H_
+
+//------------------------------------------------------------------------------
+// Includes
+//------------------------------------------------------------------------------
+#include <fapi2.H>
+#include <p9_pm.H>
+
+// function pointer typedef definition for HWP call support
+typedef fapi2::ReturnCode (*p9_pm_pfet_init_FP_t) (
+ const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>&,
+ const p9pm::PM_FLOW_MODE);
+
+extern "C"
+{
+//------------------------------------------------------------------------------
+// Function prototype
+//------------------------------------------------------------------------------
+/// \param[in] i_target Chip target
+/// \param[in] i_mode Control mode (PM_INIT, PM_RESET)
+
+/// \retval FAPI_RC_SUCCESS if something good happens,
+/// \retval RC per p9_pfet_init_errors.xml otherwise
+ fapi2::ReturnCode p9_pm_pfet_init(
+ const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>&,
+ const p9pm::PM_FLOW_MODE i_mode);
+
+} // extern "C"
+
+#endif // _P9_PFET_INIT_H_
diff --git a/src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.mk b/src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.mk
new file mode 100644
index 000000000..e57390955
--- /dev/null
+++ b/src/import/chips/p9/procedures/hwp/pm/p9_pm_pfet_init.mk
@@ -0,0 +1,20 @@
+# IBM_PROLOG_BEGIN_TAG
+# This is an automatically generated prolog.
+#
+# $Source: chips/p9/procedures/ipl/hwp/../p9_pm_pfet_init.mk $
+#
+# IBM CONFIDENTIAL
+#
+# EKB Project
+#
+# COPYRIGHT 2015
+# [+] International Business Machines Corp.
+#
+#
+# The source code for this program is not published or otherwise
+# divested of its trade secrets, irrespective of what has been
+# deposited with the U.S. Copyright Office.
+#
+# IBM_PROLOG_END_TAG
+PROCEDURE=p9_pm_pfet_init
+$(call BUILD_PROCEDURE)
OpenPOWER on IntegriCloud