summaryrefslogtreecommitdiffstats
path: root/src/include/usr/targeting/attributeenums.H
diff options
context:
space:
mode:
authorA. Patrick Williams III <iawillia@us.ibm.com>2011-09-13 12:40:38 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2011-09-13 12:41:16 -0500
commit89dc4c2dc72a77bc278b388d66681e943fb6d539 (patch)
tree49b3bfca410e911efd29d34d88ba6dfda9c7cb34 /src/include/usr/targeting/attributeenums.H
parent676d7cd4e04309c1f3a5118805b50fade66716c4 (diff)
downloadtalos-hostboot-89dc4c2dc72a77bc278b388d66681e943fb6d539.tar.gz
talos-hostboot-89dc4c2dc72a77bc278b388d66681e943fb6d539.zip
Revert "Support generating the PNOR targeting image"
This reverts commit c82ba14ada9c80565b95ad9d3d05c678591ae328 Change-Id: Ifd9a62779b13d237c9e4c5d2818df6e433f17021 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/338 Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com> Tested-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/targeting/attributeenums.H')
-rw-r--r--src/include/usr/targeting/attributeenums.H183
1 files changed, 183 insertions, 0 deletions
diff --git a/src/include/usr/targeting/attributeenums.H b/src/include/usr/targeting/attributeenums.H
new file mode 100644
index 000000000..246f41061
--- /dev/null
+++ b/src/include/usr/targeting/attributeenums.H
@@ -0,0 +1,183 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/include/usr/targeting/attributeenums.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 TARG_ATTRIBUTEENUMS_H
+#define TARG_ATTRIBUTEENUMS_H
+
+/**
+ * @file attributeenums.H
+ *
+ * @brief Defined enums for platform attributes
+ *
+ * This header file contains enumerations for supported platform attributes
+ * (as opposed to HWPF attributes). Eventually this file will be automatically
+ * generated
+ */
+
+//******************************************************************************
+// Includes
+//******************************************************************************
+
+#include <stdint.h>
+#include <stdlib.h>
+
+//******************************************************************************
+// Enumerations
+//******************************************************************************
+
+namespace TARGETING
+{
+
+/**
+ * @brief Platform attribute IDs
+ *
+ * Enumeration defining every possible platform attribute that can be
+ * associated with a target
+ */
+enum ATTRIBUTE_ID
+{
+ ATTR_NA = 0x00,
+ ATTR_CLASS = 0x01,
+ ATTR_TYPE = 0x02,
+ ATTR_MODEL = 0x03,
+ ATTR_PHYS_PATH = 0x04,
+ ATTR_AFFINITY_PATH = 0x05,
+ ATTR_POWER_PATH = 0x06,
+ ATTR_PRIMARY_CAPABILITIES = 0x07,
+ ATTR_XSCOM_BASE_ADDRESS = 0x08,
+ ATTR_SCOM_SWITCHES = 0x09,
+ ATTR_XSCOM_CHIP_INFO = 0x0A,
+ ATTR_INBAND_SCOM_CHIP_INFO = 0x0B,
+ ATTR_FSI_SCOM_CHIP_INFO = 0x0C,
+ ATTR_I2C_CHIP_INFO = 0x0D,
+ ATTR_FSI_MASTER_INFO = 0x0E,
+
+ ATTR_DUMMY_WO = 0xFD,
+ ATTR_DUMMY_RO = 0xFE,
+ ATTR_DUMMY_RW = 0xFF,
+};
+
+/**
+ * @brief Target Classes
+ *
+ * Enumeration which identifies the general class of a target
+ */
+enum CLASS
+{
+ CLASS_NA = 0x00,
+ CLASS_CARD = 0x01,
+ CLASS_ENC = 0x02,
+ CLASS_CHIP = 0x03,
+ CLASS_UNIT = 0x04,
+ CLASS_DEV = 0x05,
+ CLASS_SYS = 0x06,
+ CLASS_MAX = 0x07,
+
+};
+
+/**
+ * @brief Target Types
+ *
+ * Enumeration which identifies the specific type of target
+ */
+enum TYPE
+{
+ TYPE_NA = 0x00,
+
+ // System
+ TYPE_SYS,
+
+ // Enclosures
+ TYPE_NODE,
+
+ // Cards
+ TYPE_DIMM,
+ TYPE_SCM,
+ TYPE_DCM,
+
+ // Chips
+ TYPE_MEMBUF,
+ TYPE_PROC,
+
+ // Voltage Suppliers
+ TYPE_MEMVRM,
+ TYPE_PROCVRM,
+
+ // Processor/Centaur Units
+ TYPE_EX,
+ TYPE_CORE,
+ TYPE_L2,
+ TYPE_L3,
+ TYPE_L4,
+ TYPE_MCS,
+ TYPE_MBS,
+ TYPE_MBA,
+ TYPE_MEM_PORT,
+ TYPE_PERVASIVE,
+ TYPE_POWERBUS,
+ TYPE_XBUS,
+ TYPE_ABUS,
+ TYPE_PCI,
+
+ TYPE_LAST_IN_RANGE
+
+};
+
+/**
+ * @brief Target Models
+ *
+ * Enumeration which identifies the specific model of a target
+ */
+enum MODEL
+{
+ MODEL_NA = 0x00,
+
+ // Proc chips/proc units
+ MODEL_SALERNO = 0x10,
+ MODEL_VENICE = 0x11,
+
+ // Memory buffers/memory buffer units
+ MODEL_CENTAUR = 0x30,
+
+ // DIMMs
+ MODEL_JEDEC = 0x50,
+ MODEL_CDIMM = 0x51,
+
+ // Systems
+ MODEL_POWER8 = 0x70,
+
+};
+
+/**
+ * @brief FSI Engine Types
+ *
+ * Enumeration which identifies a specific FSI engine type
+ */
+enum ENGINE_TYPE
+{
+ // TBD in future sprint
+};
+
+} // End namespace TARGETING
+
+#endif // TARG_ATTRIBUTEENUMS_H
OpenPOWER on IntegriCloud