diff options
| author | Matt K. Light <mklight@us.ibm.com> | 2017-03-29 21:49:19 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-04-06 10:19:22 -0400 |
| commit | 2d98932ebfff3cbf8dbe63252dcb22c32acfe85b (patch) | |
| tree | 810cc214f5c12dff1c4494d78e589a8d2ed81743 | |
| parent | 5d3e061245fbcd2df4ca3f428b67b4afe8fa8014 (diff) | |
| download | talos-hostboot-2d98932ebfff3cbf8dbe63252dcb22c32acfe85b.tar.gz talos-hostboot-2d98932ebfff3cbf8dbe63252dcb22c32acfe85b.zip | |
add TARGET_TYPE_MC
Change-Id: Iab6fe6798154bc80fab80e274eb0ecaad7d4c451
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/38603
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Brent Wieman <bwieman@us.ibm.com>
Reviewed-by: Richard J. Knight <rjknight@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: Santosh S. Puranik <santosh.puranik@in.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/38605
Reviewed-by: Hostboot Team <hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
| -rw-r--r-- | src/import/hwpf/fapi2/include/collect_reg_ffdc.H | 6 | ||||
| -rw-r--r-- | src/import/hwpf/fapi2/include/target_types.H | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/import/hwpf/fapi2/include/collect_reg_ffdc.H b/src/import/hwpf/fapi2/include/collect_reg_ffdc.H index e1eb33e0d..fcc852b80 100644 --- a/src/import/hwpf/fapi2/include/collect_reg_ffdc.H +++ b/src/import/hwpf/fapi2/include/collect_reg_ffdc.H @@ -170,7 +170,8 @@ const fapi2::TargetType TARGET_TYPE_PROC_CHIPLETS = fapi2::TARGET_TYPE_EX | fapi2::TARGET_TYPE_PPE | fapi2::TARGET_TYPE_PERV | fapi2::TARGET_TYPE_PEC | - fapi2::TARGET_TYPE_PHB; + fapi2::TARGET_TYPE_PHB | + fapi2::TARGET_TYPE_MC; const fapi2::TargetType TARGET_TYPE_SCOM_TARGET = fapi2::TARGET_TYPE_PROC_CHIP | fapi2::TARGET_TYPE_MEMBUF_CHIP | @@ -192,7 +193,8 @@ const fapi2::TargetType TARGET_TYPE_SCOM_TARGET = fapi2::TARGET_TYPE_PROC_CHIP | fapi2::TARGET_TYPE_PPE | fapi2::TARGET_TYPE_PERV | fapi2::TARGET_TYPE_PEC | - fapi2::TARGET_TYPE_PHB; + fapi2::TARGET_TYPE_PHB | + fapi2::TARGET_TYPE_MC; diff --git a/src/import/hwpf/fapi2/include/target_types.H b/src/import/hwpf/fapi2/include/target_types.H index 66458543a..593983e79 100644 --- a/src/import/hwpf/fapi2/include/target_types.H +++ b/src/import/hwpf/fapi2/include/target_types.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015,2016 */ +/* Contributors Listed Below - COPYRIGHT 2015,2017 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -74,6 +74,7 @@ enum TargetType TARGET_TYPE_PERV = 0x00200000, ///< Pervasive type TARGET_TYPE_PEC = 0x00400000, ///< PEC type TARGET_TYPE_PHB = 0x00800000, ///< PHB type + TARGET_TYPE_MC = 0x01000000, ///< MC type TARGET_TYPE_ALL = 0xFFFFFFFF, ///< Any/All types @@ -99,7 +100,8 @@ enum TargetType TARGET_TYPE_PPE | TARGET_TYPE_PERV | TARGET_TYPE_PEC | - TARGET_TYPE_PHB, + TARGET_TYPE_PHB | + TARGET_TYPE_MC, // Mappings to target types found in the error xml files TARGET_TYPE_EX_CHIPLET = TARGET_TYPE_EX, |

