diff options
| author | Corey Swenson <cswenson@us.ibm.com> | 2018-12-07 16:49:09 -0600 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2019-01-14 10:20:13 -0600 |
| commit | 37132b70227cde9f5896268a264b13e74703cf3d (patch) | |
| tree | 935c6a2701d4f6d170886631f185db41ad65b6c6 /src/include/usr | |
| parent | dd65f35941d2c97663f11223a3ba8b9b32e6b89d (diff) | |
| download | talos-hostboot-37132b70227cde9f5896268a264b13e74703cf3d.tar.gz talos-hostboot-37132b70227cde9f5896268a264b13e74703cf3d.zip | |
Generate error when pnor is not accessed via ipmi
Change-Id: Ia44001c45dbe5a0f4f51202136d2649bb365d73f
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/69585
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>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include/usr')
| -rw-r--r-- | src/include/usr/isteps/istep_reasoncodes.H | 3 | ||||
| -rw-r--r-- | src/include/usr/pnor/pnorif.H | 17 |
2 files changed, 18 insertions, 2 deletions
diff --git a/src/include/usr/isteps/istep_reasoncodes.H b/src/include/usr/isteps/istep_reasoncodes.H index 163191443..610232614 100644 --- a/src/include/usr/isteps/istep_reasoncodes.H +++ b/src/include/usr/isteps/istep_reasoncodes.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015,2018 */ +/* Contributors Listed Below - COPYRIGHT 2015,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -135,6 +135,7 @@ namespace ISTEP RC_LINK_TRAIN_ERRORS_FROM_HWP = ISTEP_COMP_ID | 0x4A, RC_RISK_LEVEL_TOO_LOW = ISTEP_COMP_ID | 0x4B, RC_INVALID_HX_KEYWORD_DATA = ISTEP_COMP_ID | 0x4C, + RC_PNOR_IPMI_NOT_ENABLED = ISTEP_COMP_ID | 0x4D, }; }; diff --git a/src/include/usr/pnor/pnorif.H b/src/include/usr/pnor/pnorif.H index 205bd453e..11cc98a10 100644 --- a/src/include/usr/pnor/pnorif.H +++ b/src/include/usr/pnor/pnorif.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2011,2018 */ +/* Contributors Listed Below - COPYRIGHT 2011,2019 */ /* [+] Google Inc. */ /* [+] International Business Machines Corp. */ /* */ @@ -60,6 +60,14 @@ struct PnorInfo_t uint32_t flashSize; //< Size of PNOR in bytes }; +/** PNOR access mode */ +enum hiomapMode +{ + PNOR_IPMI, + PNOR_MBOX, + PNOR_UNKNOWN +}; + /** * @brief Returns information about a given side of pnor * @@ -203,6 +211,13 @@ errlHndl_t validateAltMaster( void ); */ void getPnorInfo( PnorInfo_t& o_pnorInfo ); +/** + * @brief Get HIOMAP PNOR access mode + * + * @return hiomapMode Pnor access mode (ipmi/mbox) + */ +hiomapMode getPnorAccessMode( void ); + /** * @brief Check if PNOR section appears to be secure and sets the |

