diff options
| author | Dzuy Nguyen <dzuy@us.ibm.com> | 2016-09-23 13:39:12 -0500 |
|---|---|---|
| committer | Matthew A. Ploetz <maploetz@us.ibm.com> | 2016-10-10 15:19:35 -0400 |
| commit | ea0b739975be946d8221391aada95c941898da8e (patch) | |
| tree | c3ebdfe07df57ea16fec3b908b8565d8183ff814 /src/include | |
| parent | 4156be267549d78aedd968a07f58c6918d20682a (diff) | |
| download | talos-hostboot-ea0b739975be946d8221391aada95c941898da8e.tar.gz talos-hostboot-ea0b739975be946d8221391aada95c941898da8e.zip | |
Call rng init phases 1,2 in istep
istep 8.20 call p9_rng_init_phase1 (remove host_rgn_bist)
istep 16.3 call p9_rng_init_phase2 (remove host_secure_rng)
Change-Id: I4455d1ecab6eaad841de4e1e83200c62f7eec1b2
RTC:147388
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/30191
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Prachi Gupta <pragupta@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Reviewed-by: Matthew A. Ploetz <maploetz@us.ibm.com>
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/usr/isteps/istep08list.H | 10 | ||||
| -rw-r--r-- | src/include/usr/isteps/istep16list.H | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/include/usr/isteps/istep08list.H b/src/include/usr/isteps/istep08list.H index a0c9d31e4..dd5d42d78 100644 --- a/src/include/usr/isteps/istep08list.H +++ b/src/include/usr/isteps/istep08list.H @@ -69,7 +69,7 @@ * : Apply sequenced scom inits * 08.19 proc_chiplet_enable_ridi * : Enable RI/DI chip wide - * 08.20 host_rng_bist + * 08.20 p9_rng_init_phase1 * : Trigger Built In Self Test for RNG * Please see the note in initsvcstructs.H for description of * the ISTEPNAME macro. @@ -270,14 +270,14 @@ void* call_proc_scomoverride_chiplets( void *io_pArgs ); void* call_proc_chiplet_enable_ridi( void *io_pArgs ); /** - * @brief host_rng_bist + * @brief p9_rng_init_phase1 * * param[in,out] - pointer to any arguments, usually NULL * * return any error logs to istep * */ -void* call_host_rng_bist( void *io_pArgs ); +void* call_p9_rng_init_phase1( void *io_pArgs ); /** * @brief host_set_voltages @@ -398,8 +398,8 @@ namespace INITSERVICE { START_FN, EXT_IMAGE, NORMAL_IPL_OP, false } }, { - ISTEPNAME(08,20,"host_rng_bist"), - ISTEP_08::call_host_rng_bist, + ISTEPNAME(08,20,"p9_rng_init_phase1"), + ISTEP_08::call_p9_rng_init_phase1, { START_FN, EXT_IMAGE, NORMAL_IPL_OP, false } }, diff --git a/src/include/usr/isteps/istep16list.H b/src/include/usr/isteps/istep16list.H index 0ac134771..11843afda 100644 --- a/src/include/usr/isteps/istep16list.H +++ b/src/include/usr/isteps/istep16list.H @@ -71,14 +71,14 @@ void* call_host_activate_slave_cores( void *io_pArgs ); /** - * @brief host_secure_rng + * @brief p9_rng_init_phase2 * * param[in,out] - pointer to any arguments, usually NULL * * return any errlogs to istep * */ -void* call_host_secure_rng( void *io_pArgs ); +void* call_p9_rng_init_phase2( void *io_pArgs ); /** * @brief mss_scrub @@ -122,7 +122,7 @@ namespace INITSERVICE { START_FN, EXT_IMAGE, NORMAL_IPL_OP | MPIPL_OP, true } }, { - ISTEPNAME(16,03,"host_secure_rng"), + ISTEPNAME(16,03,"p9_rng_init_phase2"), // @todo RTC:137389 - removed for P9 bringup //ISTEP_16::call_host_activate_master, //{ START_FN, EXT_IMAGE, NORMAL_IPL_OP | MPIPL_OP, true } |

