diff options
Diffstat (limited to 'src/usr/hwpf/plat/fapiPlatSystemConfig.C')
-rw-r--r-- | src/usr/hwpf/plat/fapiPlatSystemConfig.C | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/usr/hwpf/plat/fapiPlatSystemConfig.C b/src/usr/hwpf/plat/fapiPlatSystemConfig.C index 5aadd4b11..9bd778b57 100644 --- a/src/usr/hwpf/plat/fapiPlatSystemConfig.C +++ b/src/usr/hwpf/plat/fapiPlatSystemConfig.C @@ -91,14 +91,18 @@ fapi::ReturnCode fapiGetChildChiplets( { l_predicate.setType(TARGETING::TYPE_MBA); } - else if (i_chipletType == fapi::TARGET_TYPE_MBS_CHIPLET) - { - l_predicate.setType(TARGETING::TYPE_MBS); - } else if (i_chipletType == fapi::TARGET_TYPE_MCS_CHIPLET) { l_predicate.setType(TARGETING::TYPE_MCS); } + else if (i_chipletType == fapi::TARGET_TYPE_XBUS_ENDPOINT) + { + l_predicate.setType(TARGETING::TYPE_XBUS); + } + else if (i_chipletType == fapi::TARGET_TYPE_ABUS_ENDPOINT) + { + l_predicate.setType(TARGETING::TYPE_ABUS); + } else { FAPI_ERR("fapiGetChildChiplets. Chiplet type 0x%x not supported", |