summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorSachin Gupta <sgupta2m@in.ibm.com>2014-11-17 05:01:25 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2015-01-16 13:57:18 -0600
commit502ab08f36997744743ef03dea7dc4bc882d9af1 (patch)
treee09f50a7e40625f15ab3979822156b4e5c17b4cb /src/include
parentc823e22a4b61d7db26ce7f3a744c5029b1ccf18e (diff)
downloadblackbird-hostboot-502ab08f36997744743ef03dea7dc4bc882d9af1.tar.gz
blackbird-hostboot-502ab08f36997744743ef03dea7dc4bc882d9af1.zip
ATTN: Adding test cases for HBRT ATTN.
RTC: 118010 Change-Id: I542c8301db601b82885725e7c02b9542105acd42 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/14514 Tested-by: Jenkins Server Reviewed-by: Zane Shelley <zshelle@us.ibm.com> Reviewed-by: Christopher T. Phan <cphan@us.ibm.com> Reviewed-by: Prem Shanker Jha <premjha2@in.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/usr/diag/attn/attnreasoncodes.H66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/include/usr/diag/attn/attnreasoncodes.H b/src/include/usr/diag/attn/attnreasoncodes.H
new file mode 100644
index 000000000..5510d719d
--- /dev/null
+++ b/src/include/usr/diag/attn/attnreasoncodes.H
@@ -0,0 +1,66 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/include/usr/diag/attn/attnreasoncodes.H $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2014 */
+/* [+] International Business Machines Corp. */
+/* */
+/* */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
+/* */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
+/* */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
+/* */
+/* IBM_PROLOG_END_TAG */
+/**
+ * @file attnreasoncodes.H
+ *
+ * @brief Reason codes and module ids for ATTN module.
+ *
+ */
+#ifndef __ATTN_ATTNREASONCODES_H
+#define __ATTN_ATTNREASONCODES_H
+
+#include <hbotcompid.H>
+
+namespace ATTN
+{
+
+/**
+* @enum Moduleid
+*
+* @brief Module Ids used in created errorlogs. Indicates which
+* functions an error log was created in.
+*
+*/
+enum ModuleId
+{
+ ATTN_INVALID_MODULE = 0x00,
+ ATTN_TEST_FAKE_CALL_PRD = 0x01, // this is used in test code only.
+};
+
+/**
+ * @enum ReasonCode
+ *
+ * @brief Reasoncodes used to describe what errors are being indicated.
+ *
+ */
+enum ReasonCode
+{
+ ATTN_INVALID_REASONCODE = ATTN_COMP_ID | 0x00, // Invalid Reasoncode
+ ATTN_TEST_ATTN_FAIL = ATTN_COMP_ID | 0x01, // this is used in
+ // test code only.
+};
+
+}
+#endif
OpenPOWER on IntegriCloud