diff options
| author | Stephen Cprek <smcprek@us.ibm.com> | 2017-06-14 09:52:01 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-07-10 15:56:19 -0400 |
| commit | 775aa58f353212903f5f479deaf0cc3c6485d1ea (patch) | |
| tree | 72ceaf78d7f3b6889a931f1d3c13d1c934bb34fe /src/include/usr/secureboot | |
| parent | bd0a3c712cb0b2caeb728e2979a4d5e4af928e59 (diff) | |
| download | blackbird-hostboot-775aa58f353212903f5f479deaf0cc3c6485d1ea.tar.gz blackbird-hostboot-775aa58f353212903f5f479deaf0cc3c6485d1ea.zip | |
Add Security Settings User Details to Error Logs
Change-Id: Ife4a19ea7f94670143b701f740c80f991f924601
RTC:165693
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/41904
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Michael Baiocchi <mbaiocch@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include/usr/secureboot')
| -rw-r--r-- | src/include/usr/secureboot/secure_reasoncodes.H | 1 | ||||
| -rw-r--r-- | src/include/usr/secureboot/service.H | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/include/usr/secureboot/secure_reasoncodes.H b/src/include/usr/secureboot/secure_reasoncodes.H index 57b668a6e..59761275a 100644 --- a/src/include/usr/secureboot/secure_reasoncodes.H +++ b/src/include/usr/secureboot/secure_reasoncodes.H @@ -67,6 +67,7 @@ namespace SECUREBOOT SECURE_UDT_NO_FORMAT = 0x0, SECURE_UDT_SYSTEM_HW_KEY_HASH = 0x1, SECURE_UDT_TARGET_HW_KEY_HASH = 0x2, + SECURE_UDT_SECURITY_SETTINGS = 0x3, }; } diff --git a/src/include/usr/secureboot/service.H b/src/include/usr/secureboot/service.H index f72809e8b..0baa3a70e 100644 --- a/src/include/usr/secureboot/service.H +++ b/src/include/usr/secureboot/service.H @@ -284,6 +284,14 @@ namespace SECUREBOOT */ void addSecurityRegistersToErrlog(errlHndl_t & io_err); + /** + * @brief Common handler for adding all relevant secureboot information to + * the user details section of an error log + * @param[in/out] io_err Error Log to add secure info to. + * Must not be nullptr. + */ + void addSecureUserDetailsToErrolog(errlHndl_t & io_err); + } #endif |

