summaryrefslogtreecommitdiffstats
path: root/src/usr/isteps/istep06/call_host_update_master_tpm.C
diff options
context:
space:
mode:
authorMike Baiocchi <mbaiocch@us.ibm.com>2017-02-10 09:06:46 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-03-15 17:27:23 -0400
commite8b8f27d39f6633ff89f2dc541db77c802988685 (patch)
tree5c7c43d099f605881a11ffa7a3cf394220bb76f5 /src/usr/isteps/istep06/call_host_update_master_tpm.C
parentd5358edf5e5ff7835099e4503e4bcf1518e24024 (diff)
downloadtalos-hostboot-e8b8f27d39f6633ff89f2dc541db77c802988685.tar.gz
talos-hostboot-e8b8f27d39f6633ff89f2dc541db77c802988685.zip
Trace Processor Security Registers; add them to Secure Error Logs
This commit adds a trace of the Security Switch and CBS Control/Status registers for all processors in the system. These registers are also captured for Security-specific error logs. Change-Id: I245815c720725a9aaf15a3cbad9a50b3288fc1f9 RTC:165205 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/37290 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: Nicholas E. Bofferding <bofferdn@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/isteps/istep06/call_host_update_master_tpm.C')
-rw-r--r--src/usr/isteps/istep06/call_host_update_master_tpm.C19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/usr/isteps/istep06/call_host_update_master_tpm.C b/src/usr/isteps/istep06/call_host_update_master_tpm.C
index d378d9cd7..b08ca5bce 100644
--- a/src/usr/isteps/istep06/call_host_update_master_tpm.C
+++ b/src/usr/isteps/istep06/call_host_update_master_tpm.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2015,2016 */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -30,6 +30,7 @@
#include <isteps/hwpisteperror.H>
#include <trustedbootif.H>
#include <initservice/isteps_trace.H>
+#include <secureboot/service.H>
namespace ISTEP_06
{
@@ -41,17 +42,29 @@ void* call_host_update_master_tpm( void *io_pArgs )
TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
"call_host_update_master_tpm entry" );
-#ifdef CONFIG_TPMDD
errlHndl_t l_err = NULL;
+
+#ifdef CONFIG_TPMDD
// Initialize the master TPM
l_err = (errlHndl_t)TRUSTEDBOOT::host_update_master_tpm(io_pArgs);
if (l_err)
{
l_stepError.addErrorDetails(l_err);
- errlCommit( l_err, SECURE_COMP_ID );
+ ERRORLOG::errlCommit( l_err, SECURE_COMP_ID );
}
#endif
+ l_err = SECUREBOOT::traceSecuritySettings(true);
+ if (l_err)
+ {
+ TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
+ "call_host_update_master_tpm: Error back from "
+ "SECUREBOOT::traceSecuritySettings: rc=0x%X, plid=0x%X",
+ ERRL_GETRC_SAFE(l_err), ERRL_GETPLID_SAFE(l_err));
+ l_stepError.addErrorDetails(l_err);
+ ERRORLOG::errlCommit( l_err, SECURE_COMP_ID );
+ }
+
TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
"call_host_update_master_tpm exit" );
OpenPOWER on IntegriCloud