diff options
author | Missy Connell <missyc@us.ibm.com> | 2012-01-30 10:14:46 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-02-07 16:46:25 -0600 |
commit | 914b46ba52822c63799ebf60ebcc4df200d3371b (patch) | |
tree | 023e96a996671a2907c7fc962088fcd14884475c /src/include | |
parent | e457b5df08897236374bd8851d8169188e9dc1f8 (diff) | |
download | talos-hostboot-914b46ba52822c63799ebf60ebcc4df200d3371b.tar.gz talos-hostboot-914b46ba52822c63799ebf60ebcc4df200d3371b.zip |
Scom Translate for EX, MCS, MBA/MBS
Change-Id: Iff47274d72c3994923234c998894671db6e833ba
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/632
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/usr/scom/scomreasoncodes.H | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/include/usr/scom/scomreasoncodes.H b/src/include/usr/scom/scomreasoncodes.H new file mode 100644 index 000000000..d2ffa7e79 --- /dev/null +++ b/src/include/usr/scom/scomreasoncodes.H @@ -0,0 +1,48 @@ +// IBM_PROLOG_BEGIN_TAG +// This is an automatically generated prolog. +// +// $Source: src/include/usr/xscom/scomreasoncodes.H $ +// +// IBM CONFIDENTIAL +// +// COPYRIGHT International Business Machines Corp. 2011 +// +// p1 +// +// Object Code Only (OCO) source materials +// Licensed Internal Code Source Materials +// IBM HostBoot Licensed Internal Code +// +// The source code for this program is not published or other- +// wise divested of its trade secrets, irrespective of what has +// been deposited with the U.S. Copyright Office. +// +// Origin: 30 +// +// IBM_PROLOG_END +#ifndef __SCOM_REASONCODES_H +#define __SCOM_REASONCODES_H + +#include <hbotcompid.H> + +namespace SCOM +{ + enum scomModuleId + { + SCOM_PERFORM_OP = 0x00, + SCOM_TRANSLATE = 0x01, + SCOM_PERFORM_TRANSLATE = 0x02, + SCOM_FIND_PARENT_TARGET = 0x03, + + }; + + enum scomReasonCode + { + SCOM_INVALID_ADDR = SCOM_COMP_ID | 0x01, + SCOM_NO_MATCHING_PARENT = SCOM_COMP_ID | 0x02, + SCOM_TRANS_INVALID_TYPE = SCOM_COMP_ID | 0x03, + SCOM_TRANS_UNSUPPORTED = SCOM_COMP_ID | 0x04, + }; +}; + +#endif |