diff options
author | Matt Derksen <mderkse1@us.ibm.com> | 2019-08-16 16:24:06 -0500 |
---|---|---|
committer | Daniel M Crowell <dcrowell@us.ibm.com> | 2019-09-25 14:30:06 -0500 |
commit | 8e6285e72a3b0f3b35da6700467954b3e125e49f (patch) | |
tree | f0eb643fe0b8fa03df0b8349cdec9eccf7ada3b8 /src/include/usr | |
parent | 56574b602999b7f4e31c8b19bb3b72fbde152700 (diff) | |
download | blackbird-hostboot-8e6285e72a3b0f3b35da6700467954b3e125e49f.tar.gz blackbird-hostboot-8e6285e72a3b0f3b35da6700467954b3e125e49f.zip |
Support EXP_FW_LOG command to get Explorer Firmware logs
Includes framework to add explorer error logs to an error.
Tests the ekb RC path and the hostboot way to add these
logs. Tests are disabled until simics supports the new command.
Change-Id: I03b735342251b6c9e078a3e5b412e5a9f88e1e6b
RTC:205128
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/82362
Reviewed-by: Christian R Geddes <crgeddes@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Glenn Miles <milesg@ibm.com>
Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include/usr')
-rw-r--r-- | src/include/usr/expscom/expscom_reasoncodes.H | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/usr/expscom/expscom_reasoncodes.H b/src/include/usr/expscom/expscom_reasoncodes.H index 9eb7ebc29..67608b69c 100644 --- a/src/include/usr/expscom/expscom_reasoncodes.H +++ b/src/include/usr/expscom/expscom_reasoncodes.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2011,2018 */ +/* Contributors Listed Below - COPYRIGHT 2011,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -43,6 +43,12 @@ namespace EXPSCOM RC_INVALID_OPTYPE = EXPSCOM_COMP_ID | 0x03, RC_INVALID_ADDRESS = EXPSCOM_COMP_ID | 0x04, }; + + enum UserDetailsTypes + { + EXPSCOM_UDT_ACTIVE_LOG = 0x01, + EXPSCOM_UDT_SAVED_LOG = 0x02, + }; }; #endif |