summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorPrachi Gupta <pragupta@us.ibm.com>2015-10-26 16:19:31 -0500
committerPatrick Williams <iawillia@us.ibm.com>2015-12-11 15:30:27 -0600
commit697c2f5339b9419fadfdc4d2bd09a985ef7a4e9f (patch)
tree0edb3d903f2fedbc489a34f123204f511e079be0 /src/include
parentc648ceaa200710e15106bf8acea2094c82ab9458 (diff)
downloadblackbird-hostboot-697c2f5339b9419fadfdc4d2bd09a985ef7a4e9f.tar.gz
blackbird-hostboot-697c2f5339b9419fadfdc4d2bd09a985ef7a4e9f.zip
P9 Isteps: Created directory structure for istep 21 wrappers
Change-Id: Ie9760711a21d3965579e7f6f4854839b8e474e54 RTC:137652 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/21503 Tested-by: Jenkins Server Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/usr/isteps/istep21list.H50
1 files changed, 44 insertions, 6 deletions
diff --git a/src/include/usr/isteps/istep21list.H b/src/include/usr/isteps/istep21list.H
index a20acdcaa..777f8c9fd 100644
--- a/src/include/usr/isteps/istep21list.H
+++ b/src/include/usr/isteps/istep21list.H
@@ -50,8 +50,46 @@
#include <initservice/initsvcreasoncodes.H>
#include <config.h>
-// include prototypes file
-#include "../../../usr/hwpf/hwp/start_payload/start_payload.H"
+namespace ISTEP_21
+{
+
+/**
+ * @brief host_runtime_setup
+ *
+ * param[in,out] - pointer to any arguments, usually NULL
+ *
+ * return any errlogs to istep
+ *
+ */
+void* call_host_runtime_setup( void *io_pArgs );
+
+
+
+/**
+ * @brief host_verify_hdat
+ *
+ * param[in,out] - pointer to any arguments, usually NULL
+ *
+ * return any errlogs to istep
+ *
+ */
+void* call_host_verify_hdat( void *io_pArgs );
+
+
+
+/**
+ * @brief host_start_payload
+ *
+ * param[in,out] - pointer to any arguments, usually NULL
+ *
+ * return any errlogs to istep
+ *
+ */
+void* call_host_start_payload( void *io_pArgs );
+
+
+};
+
namespace INITSERVICE
{
@@ -64,18 +102,18 @@ namespace INITSERVICE
#if (0)
{
ISTEPNAME(21,01,"host_runtime_setup"),
- START_PAYLOAD::call_host_runtime_setup,
+ ISTEP_21::call_host_runtime_setup,
{ START_FN, EXT_IMAGE, MPIPL_OP | NORMAL_IPL_OP, false }
},
{
ISTEPNAME(21,02,"host_verify_hdat"),
- START_PAYLOAD::call_host_verify_hdat,
+ ISTEP_21::call_host_verify_hdat,
{ START_FN, EXT_IMAGE, MPIPL_OP | NORMAL_IPL_OP, false }
},
#endif
{
ISTEPNAME(21,03,"host_start_payload"),
- START_PAYLOAD::call_host_start_payload,
+ ISTEP_21::call_host_start_payload,
{ START_FN, EXT_IMAGE, MPIPL_OP | NORMAL_IPL_OP, false }
},
@@ -83,6 +121,7 @@ namespace INITSERVICE
const DepModInfo g_istep21Dependancies = {
{
+ DEP_LIB(libistep21.so),
#ifndef CONFIG_VPO_COMPILE
DEP_LIB(libbuild_winkle_images.so),
DEP_LIB(libstart_payload.so),
@@ -94,7 +133,6 @@ const DepModInfo g_istep21Dependancies = {
DEP_LIB(libocc.so),
#if defined(CONFIG_HTMGT)
DEP_LIB(libhtmgt.so),
- DEP_LIB(libmc_config.so),
#endif
#endif
NULL
OpenPOWER on IntegriCloud