diff options
author | Jaymes Wilks <mjwilks@us.ibm.com> | 2017-02-24 15:08:57 -0600 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-04-10 13:48:29 -0400 |
commit | 5bdb1f8ec34124c68db869dbb46b27e5a5fc24b5 (patch) | |
tree | 84ccf175a63ea0c362d2221cc12b59669ec0a51f /src/usr/isteps/istep21 | |
parent | d85536ac35dd97a666b7b8de090f255b1a33c7d8 (diff) | |
download | talos-hostboot-5bdb1f8ec34124c68db869dbb46b27e5a5fc24b5.tar.gz talos-hostboot-5bdb1f8ec34124c68db869dbb46b27e5a5fc24b5.zip |
Populate HDAT TPM Info
Populate TPM Info during the secureboot runtime routine.
Change-Id: I02b960c175d51dc9b5941e15a529bd1587747444
RTC:166834
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/37187
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Stephen M. Cprek <smcprek@us.ibm.com>
Reviewed-by: Michael Baiocchi <mbaiocch@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/isteps/istep21')
-rw-r--r-- | src/usr/isteps/istep21/call_host_runtime_setup.C | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/usr/isteps/istep21/call_host_runtime_setup.C b/src/usr/isteps/istep21/call_host_runtime_setup.C index d3c8602e8..801f08a11 100644 --- a/src/usr/isteps/istep21/call_host_runtime_setup.C +++ b/src/usr/isteps/istep21/call_host_runtime_setup.C @@ -144,7 +144,16 @@ void* call_host_runtime_setup (void *io_pArgs) if ( l_err ) { TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, - "Failed hbSecurebotData setup" ); + "Failed hbSecurebootData setup" ); + break; + } + + // API call to populate the TPM Info fields + l_err = RUNTIME::populate_hbTpmInfo(); + if ( l_err ) + { + TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace, + "Failed hbTpmInfo setup" ); break; } |