diff options
| author | Adam Muhle <armuhle@us.ibm.com> | 2013-02-26 08:14:03 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-05-08 09:25:51 -0500 |
| commit | 2deb848cf616c4c815a37988fe2c8c422b885e3e (patch) | |
| tree | 3058f40318b2094fb5a84453df8edb946f230fa3 /src/include/usr | |
| parent | 8e8dbe99d13d923536353afd96b9b003382b7f2c (diff) | |
| download | blackbird-hostboot-2deb848cf616c4c815a37988fe2c8c422b885e3e.tar.gz blackbird-hostboot-2deb848cf616c4c815a37988fe2c8c422b885e3e.zip | |
IBSCOM error path support
This commit updates IBSCOM to have error path support.
It also updates the good-path test cases since there is
limited good path support in simics. Full enablement
will be done later.
Change-Id: I5f9d66165db119473f606303a1026c8c71988785
RTC: 34743
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/3972
Tested-by: Jenkins Server
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: Douglas R. Gilbert <dgilbert@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr')
| -rw-r--r-- | src/include/usr/ibscom/ibscomreasoncodes.H | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/include/usr/ibscom/ibscomreasoncodes.H b/src/include/usr/ibscom/ibscomreasoncodes.H index fde2f8f7a..011660859 100644 --- a/src/include/usr/ibscom/ibscomreasoncodes.H +++ b/src/include/usr/ibscom/ibscomreasoncodes.H @@ -5,7 +5,7 @@ /* */ /* IBM CONFIDENTIAL */ /* */ -/* COPYRIGHT International Business Machines Corp. 2012 */ +/* COPYRIGHT International Business Machines Corp. 2012,2013 */ /* */ /* p1 */ /* */ @@ -33,6 +33,7 @@ namespace IBSCOM IBSCOM_PERFORM_OP = 0x01, IBSCOM_SANITY_CHECK = 0x02, IBSCOM_GET_TARG_VIRT_ADDR = 0x03, + IBSCOM_DO_IBSCOM = 0x04, }; enum ibscomReasonCode @@ -40,6 +41,10 @@ namespace IBSCOM IBSCOM_INVALID_DATA_BUFFER = IBSCOM_COMP_ID | 0x01, IBSCOM_INVALID_OP_TYPE = IBSCOM_COMP_ID | 0x02, IBSCOM_INVALID_CONFIG = IBSCOM_COMP_ID | 0x03, + IBSCOM_SUE_OCCURRED = IBSCOM_COMP_ID | 0x04, + IBSCOM_SUE_IN_ERR_PATH = IBSCOM_COMP_ID | 0x05, + IBSCOM_BUS_FAILURE = IBSCOM_COMP_ID | 0x06, + IBSCOM_INVALID_ADDRESS = IBSCOM_COMP_ID | 0x07, }; }; |

