diff options
| author | Prachi Gupta <pragupta@us.ibm.com> | 2015-10-26 11:38:27 -0500 |
|---|---|---|
| committer | Patrick Williams <iawillia@us.ibm.com> | 2015-12-11 15:30:27 -0600 |
| commit | c648ceaa200710e15106bf8acea2094c82ab9458 (patch) | |
| tree | 83a8c0c0df7019aea4314a2fa7a8cca27418cd25 /src/include/usr/isteps/istep16list.H | |
| parent | bf4cb3342fe0aa8a51d11bb85bddab61a0a7398c (diff) | |
| download | blackbird-hostboot-c648ceaa200710e15106bf8acea2094c82ab9458.tar.gz blackbird-hostboot-c648ceaa200710e15106bf8acea2094c82ab9458.zip | |
P9 Isteps: Created directory structure for istep 15 & 16 wrappers
Change-Id: Id780406de73f04a05ad22ed8c9d8770c581d785e
RTC:137652
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/21502
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/usr/isteps/istep16list.H')
| -rw-r--r-- | src/include/usr/isteps/istep16list.H | 86 |
1 files changed, 81 insertions, 5 deletions
diff --git a/src/include/usr/isteps/istep16list.H b/src/include/usr/isteps/istep16list.H index 3b56c3d5f..e1c5db6e3 100644 --- a/src/include/usr/isteps/istep16list.H +++ b/src/include/usr/isteps/istep16list.H @@ -43,8 +43,65 @@ #include <initservice/initsvcstructs.H> #include <initservice/initsvcreasoncodes.H> -// include prototypes file -#include "../../../usr/hwpf/hwp/core_activate/core_activate.H" +namespace ISTEP_16 +{ + +/** + * @brief host_activate_master + * + * param[in,out] - pointer to any arguments, usually NULL + * + * return any errlogs to istep + * + */ +void* call_host_activate_master( void *io_pArgs ); + + + +/** + * @brief host_activate_slave_cores + * + * param[in,out] - pointer to any arguments, usually NULL + * + * return any errlogs to istep + * + */ +void* call_host_activate_slave_cores( void *io_pArgs ); + + + +/** + * @brief host_secure_rng + * + * param[in,out] - pointer to any arguments, usually NULL + * + * return any errlogs to istep + * + */ +void* call_host_secure_rng( void *io_pArgs ); + +/** + * @brief mss_scrub + * + * param[in,out] - pointer to any arguments, usually NULL + * + * return any errlogs to istep + * + */ +void* call_mss_scrub( void *io_pArgs ); + +/** + * @brief host_ipl_complete + * + * param[in,out] - pointer to any arguments, usually NULL + * + * return any errlogs to istep + * + */ +void* call_host_ipl_complete( void *io_pArgs ); +}; + + namespace INITSERVICE { @@ -58,7 +115,27 @@ namespace INITSERVICE #if (0) { ISTEPNAME(16,01,"host_activate_master"), - CORE_ACTIVATE::call_host_activate_master, + ISTEP_16::call_host_activate_master, + { START_FN, EXT_IMAGE, NORMAL_IPL_OP | MPIPL_OP, true } + }, + { + ISTEPNAME(16,02,"host_activate_slave_cores"), + ISTEP_16::call_host_activate_slave_cores, + { START_FN, EXT_IMAGE, NORMAL_IPL_OP | MPIPL_OP, true } + }, + { + ISTEPNAME(16,03,"host_secure_rng"), + ISTEP_16::call_host_activate_master, + { START_FN, EXT_IMAGE, NORMAL_IPL_OP | MPIPL_OP, true } + }, + { + ISTEPNAME(16,04,"mss_scrub"), + ISTEP_16::call_mss_scrub, + { START_FN, EXT_IMAGE, NORMAL_IPL_OP | MPIPL_OP, true } + }, + { + ISTEPNAME(16,05,"host_ipl_complete"), + ISTEP_16::call_host_ipl_complete, { START_FN, EXT_IMAGE, NORMAL_IPL_OP | MPIPL_OP, true } }, #endif @@ -66,9 +143,8 @@ namespace INITSERVICE const DepModInfo g_istep16Dependancies = { { - DEP_LIB(libcore_activate.so), + DEP_LIB(libistep16.so), DEP_LIB(libbuild_winkle_images.so), - DEP_LIB(libnest_chiplets.so), #ifdef CONFIG_IPLTIME_CHECKSTOP_ANALYSIS DEP_LIB(libocc.so), #endif |

