diff options
author | Richard J. Knight <rjknight@us.ibm.com> | 2012-10-26 12:34:46 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-11-15 09:57:35 -0600 |
commit | 7e9680f99f9dccf871b364f034f1eb19e9a1ae30 (patch) | |
tree | 259da5ff97d113ce61190923e1f231480d216195 /src/usr/hwpf/hwp/activate_powerbus | |
parent | b8d95068b788c0f1b1587996ef2852df7d338f37 (diff) | |
download | talos-hostboot-7e9680f99f9dccf871b364f034f1eb19e9a1ae30.tar.gz talos-hostboot-7e9680f99f9dccf871b364f034f1eb19e9a1ae30.zip |
Updates to IPL flow to match doc v1.18
Change-Id: I9fe83e777fde516b6ddbadd2eea4969b87e601fa
RTC: 50424
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2167
Reviewed-by: Brian H. Horton <brianh@linux.ibm.com>
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf/hwp/activate_powerbus')
-rw-r--r-- | src/usr/hwpf/hwp/activate_powerbus/activate_powerbus.C | 26 | ||||
-rw-r--r-- | src/usr/hwpf/hwp/activate_powerbus/activate_powerbus.H | 14 |
2 files changed, 33 insertions, 7 deletions
diff --git a/src/usr/hwpf/hwp/activate_powerbus/activate_powerbus.C b/src/usr/hwpf/hwp/activate_powerbus/activate_powerbus.C index a796d69e9..5180bf7e3 100644 --- a/src/usr/hwpf/hwp/activate_powerbus/activate_powerbus.C +++ b/src/usr/hwpf/hwp/activate_powerbus/activate_powerbus.C @@ -70,12 +70,9 @@ using namespace TARGETING; using namespace EDI_EI_INITIALIZATION; using namespace fapi; - - -// -// Wrapper function to call 09.1 : -// proc_build_smp -// +//****************************************************************************** +// wrapper funciton to call step 9.01 - proc_build_smp +//****************************************************************************** void* call_proc_build_smp( void *io_pArgs ) { @@ -224,5 +221,22 @@ void* call_proc_build_smp( void *io_pArgs ) return l_StepError.getErrorHandle(); } +//****************************************************************************** +// wrapper function to call step 9.02 - host_slave_sbe_update +//****************************************************************************** +void * call_host_slave_sbe_update( void * io_pArgs ) +{ + errlHndl_t l_errl = NULL; + + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, + "call_host_slave_sbe_update entry" ); + + // call p8_customize_image.C + + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, + "call_host_slave_sbe_update exit" ); + + return l_errl; +} }; // end namespace diff --git a/src/usr/hwpf/hwp/activate_powerbus/activate_powerbus.H b/src/usr/hwpf/hwp/activate_powerbus/activate_powerbus.H index 19215788d..bb7a19fcc 100644 --- a/src/usr/hwpf/hwp/activate_powerbus/activate_powerbus.H +++ b/src/usr/hwpf/hwp/activate_powerbus/activate_powerbus.H @@ -75,8 +75,20 @@ namespace ACTIVATE_POWERBUS * return any error logs to istep * */ -void* call_proc_build_smp( void *io_pArgs ); +void* call_proc_build_smp( void *io_pArgs ); +/** + * @brief host_slave_sbe_update + * + * 09.2 : : Placeholder for secureboot where Hostboot must update + * SEEPROM because FSP cannot. + * + * param[in,out] - pointer to any arguments, usually NULL + * + * return any error logs to istep + * + */ +void* call_host_slave_sbe_update( void * io_pArgs ); }; // end namespace |