diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2016-02-01 10:06:53 -0600 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-02-22 10:44:38 -0600 |
commit | 3da7cf34b72d97494dc5a2ed414a4e2d6db5f261 (patch) | |
tree | 4243d579bc81355faf42bc0e1b5fdc59ec7512ac /src/import/hwpf/fapi2/xml/attribute_info | |
parent | 129353f905a8731527ee7fcc2bbf9c805165d8b7 (diff) | |
download | talos-hostboot-3da7cf34b72d97494dc5a2ed414a4e2d6db5f261.tar.gz talos-hostboot-3da7cf34b72d97494dc5a2ed414a4e2d6db5f261.zip |
Define ATTR_FAPI_POS
Create ATTR_FAPI_POS to serve as the canonical numerical identifier
for all targets.
Change-Id: I4312df52ceaaa4083b7780f742e28acac4c03e95
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/23834
Tested-by: Jenkins Server
Reviewed-by: Brian Silver <bsilver@us.ibm.com>
Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com>
Reviewed-by: Brent Wieman <bwieman@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/24537
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/hwpf/fapi2/xml/attribute_info')
-rw-r--r-- | src/import/hwpf/fapi2/xml/attribute_info/common_attributes.xml | 32 | ||||
-rw-r--r-- | src/import/hwpf/fapi2/xml/attribute_info/unit_attributes.xml | 4 |
2 files changed, 32 insertions, 4 deletions
diff --git a/src/import/hwpf/fapi2/xml/attribute_info/common_attributes.xml b/src/import/hwpf/fapi2/xml/attribute_info/common_attributes.xml index 0bacf989b..03557e704 100644 --- a/src/import/hwpf/fapi2/xml/attribute_info/common_attributes.xml +++ b/src/import/hwpf/fapi2/xml/attribute_info/common_attributes.xml @@ -7,7 +7,7 @@ <!-- --> <!-- EKB Project --> <!-- --> -<!-- COPYRIGHT 2015 --> +<!-- COPYRIGHT 2015,2016 --> <!-- [+] International Business Machines Corp. --> <!-- --> <!-- --> @@ -47,11 +47,39 @@ <id>ATTR_POS</id> <targetType>TARGET_TYPE_PROC_CHIP, TARGET_TYPE_MEMBUF_CHIP, TARGET_TYPE_DIMM</targetType> <description> - Position of chip/dimm within drawer + Physical position of chip/dimm within drawer This data is from the MRW. </description> <valueType>uint32</valueType> <platInit/> </attribute> <!-- ******************************************************************************** --> + <attribute> + <id>ATTR_FAPI_POS</id> + <targetType> + TARGET_TYPE_PROC_CHIP, TARGET_TYPE_MEMBUF_CHIP, TARGET_TYPE_DIMM, + TARGET_TYPE_CORE, TARGET_TYPE_EX, TARGET_TYPE_EQ, + TARGET_TYPE_MCS, TARGET_TYPE_MCA, TARGET_TYPE_MCBIST, TARGET_TYPE_MI, TARGET_TYPE_DMI, + TARGET_TYPE_XBUS, TARGET_TYPE_OBUS, + TARGET_TYPE_NV, + TARGET_TYPE_SBE, TARGET_TYPE_PPE, TARGET_TYPE_PERV, + TARGET_TYPE_PEC, TARGET_TYPE_PHB, TARGET_TYPE_CAPP, + TARGET_TYPE_MBA + </targetType> + <description> + Logical position of target within a system. This is derived from the SMP location + of each processor and each target's relationship to a proc. + - PROC = based on SMP groupid+chipid + - MEMBUF = PROC:FAPI_POS * [max membuf per proc] + - 1st level child unit = [parent chip]:FAPI_POS * [max children of this type per chip] + - 2nd+ level child unit = [immediate parent unit]:FAPI_POS * [max units below parent] + Note: This should not be used algorithmically by HWPs directly. + Note: Value ignores physical drawer boundaries, the value is unique across the entire + system. + This data is derived from the MRW. + </description> + <valueType>uint32</valueType> + <platInit/> + </attribute> + <!-- ******************************************************************************** --> </attributes> diff --git a/src/import/hwpf/fapi2/xml/attribute_info/unit_attributes.xml b/src/import/hwpf/fapi2/xml/attribute_info/unit_attributes.xml index 1bb5d02fe..a8ce7cb70 100644 --- a/src/import/hwpf/fapi2/xml/attribute_info/unit_attributes.xml +++ b/src/import/hwpf/fapi2/xml/attribute_info/unit_attributes.xml @@ -7,7 +7,7 @@ <!-- --> <!-- EKB Project --> <!-- --> -<!-- COPYRIGHT 2015 --> +<!-- COPYRIGHT 2015,2016 --> <!-- [+] International Business Machines Corp. --> <!-- --> <!-- --> @@ -27,11 +27,11 @@ TARGET_TYPE_NV, TARGET_TYPE_SBE, TARGET_TYPE_PPE, TARGET_TYPE_PERV, TARGET_TYPE_PEC, TARGET_TYPE_PHB, TARGET_TYPE_CAPP, - TARGET_TYPE_MEMBUF_CHIP, TARGET_TYPE_MBA </targetType> <description> A unit's position within the chip with respect to similar units. + Note that this value is relative to the parent chip, not a parent unit. This data is from the MRW. </description> <valueType>uint8</valueType> |