diff options
Diffstat (limited to 'src/usr/hwas/plat/hostbootIstep.C')
-rw-r--r-- | src/usr/hwas/plat/hostbootIstep.C | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/usr/hwas/plat/hostbootIstep.C b/src/usr/hwas/plat/hostbootIstep.C index c78b76183..292b4ee3c 100644 --- a/src/usr/hwas/plat/hostbootIstep.C +++ b/src/usr/hwas/plat/hostbootIstep.C @@ -34,6 +34,7 @@ #include <fsi/fsiif.H> #include <initservice/taskargs.H> +#include <initservice/isteps_trace.H> namespace HWAS { @@ -45,8 +46,11 @@ namespace HWAS //****************************************************************************** void host_init_fsi( void *io_pArgs ) { + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "host_init_fsi entry" ); + errlHndl_t errl = FSI::initializeHardware( ); + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "host_init_fsi exit" ); task_end2(errl); } @@ -55,10 +59,12 @@ void host_init_fsi( void *io_pArgs ) //****************************************************************************** void host_set_ipl_parms( void *io_pArgs ) { + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "host_set_ipl_parms entry" ); errlHndl_t errl = NULL; // stub -- nothing here currently + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "host_set_ipl_parms exit" ); task_end2(errl); } @@ -67,8 +73,13 @@ void host_set_ipl_parms( void *io_pArgs ) //****************************************************************************** void host_discover_targets( void *io_pArgs ) { + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, + "host_discover_targets entry" ); + errlHndl_t errl = discoverTargets(); + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, + "host_discover_targets exit" ); task_end2(errl); } @@ -77,8 +88,11 @@ void host_discover_targets( void *io_pArgs ) //****************************************************************************** void host_gard( void *io_pArgs ) { + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "host_gard entry" ); + errlHndl_t errl = collectGard(); + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "host_gard exit" ); task_end2(errl); } @@ -87,10 +101,14 @@ void host_gard( void *io_pArgs ) //****************************************************************************** void host_cancontinue_clear( void *io_pArgs ) { + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, + "host_cancontinue_clear entry" ); errlHndl_t errl = NULL; // stub -- nothing here currently + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, + "host_cancontinue_clear exit" ); task_end2(errl); } @@ -99,10 +117,14 @@ void host_cancontinue_clear( void *io_pArgs ) //****************************************************************************** void proc_check_slave_sbe_seeprom_complete( void *io_pArgs ) { + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, + "proc_check_slave_sbe_seeprom_complete entry" ); errlHndl_t errl = NULL; // stub -- nothing here currently + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, + "proc_check_slave_sbe_seeprom_complete exit" ); task_end2(errl); } @@ -111,10 +133,12 @@ void proc_check_slave_sbe_seeprom_complete( void *io_pArgs ) //****************************************************************************** void proc_xmit_sbe( void *io_pArgs ) { + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "proc_xmit_sbe entry" ); errlHndl_t errl = NULL; // stub -- nothing here currently + TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "proc_xmit_sbe exit" ); task_end2(errl); } |