diff options
| author | Bilicon Patil <bilpatil@in.ibm.com> | 2016-02-29 23:22:08 -0600 |
|---|---|---|
| committer | Joshua Hunsberger <jahunsbe@us.ibm.com> | 2017-10-23 16:04:30 -0500 |
| commit | c306040c8794dfdcb78298804ce912cd11111a1e (patch) | |
| tree | d4826c6d44e6e5af401df330231b97146ecb1bc1 /import/hwpf | |
| parent | 5212a07352e47e5c00cdf45e50302039454b678f (diff) | |
| download | talos-hcode-c306040c8794dfdcb78298804ce912cd11111a1e.tar.gz talos-hcode-c306040c8794dfdcb78298804ce912cd11111a1e.zip | |
PutRing utils to scan rings
Change-Id: Ieab183be571fda1013ef658568aee495c68c7100
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/21795
Tested-by: Jenkins Server
Tested-by: PPE CI
Tested-by: Hostboot CI
Reviewed-by: Michael S. Floyd <mfloyd@us.ibm.com>
Dev-Ready: Michael S. Floyd <mfloyd@us.ibm.com>
Reviewed-by: Claus M. Olsen <cmolsen@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Diffstat (limited to 'import/hwpf')
| -rw-r--r-- | import/hwpf/fapi2/include/return_code_defs.H | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/import/hwpf/fapi2/include/return_code_defs.H b/import/hwpf/fapi2/include/return_code_defs.H index e5727ed1..a079ab77 100644 --- a/import/hwpf/fapi2/include/return_code_defs.H +++ b/import/hwpf/fapi2/include/return_code_defs.H @@ -104,6 +104,16 @@ enum ReturnCodes : uint32_t FAPI2_RC_PLAT_NOT_SUPPORTED_AT_RUNTIME = FAPI2_RC_PLAT_MASK | 0x03, ///< Operation not supported by HB runtime + + FAPI2_RC_PLAT_ERR_RING_HEADER_CHECK = FAPI2_RC_PLAT_MASK | 0x04, + //Operation on putring fail because of header data mismatch + // + FAPI2_RC_PLAT_RING_DECODE_LENGTH_EXCEEDED = FAPI2_RC_PLAT_MASK | 0x05, + //Operation on putring fail because of decode length greater than actual + //ring length. + + FAPI2_RC_PLAT_RING_ID_NOT_FOUND_IN_RS4_IMAGE = FAPI2_RC_PLAT_MASK | 0x06, + //Operation on putring fail because of ringId not found in RS4 image }; } |

