summaryrefslogtreecommitdiffstats
path: root/src/usr
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr')
-rwxr-xr-xsrc/usr/diag/prdf/common/plat/p9/prdfP9Configurator.C4
-rw-r--r--src/usr/diag/prdf/occ_firdata/prdfWriteHomerFirData.C8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/diag/prdf/common/plat/p9/prdfP9Configurator.C b/src/usr/diag/prdf/common/plat/p9/prdfP9Configurator.C
index 48a198155..664e4b35b 100755
--- a/src/usr/diag/prdf/common/plat/p9/prdfP9Configurator.C
+++ b/src/usr/diag/prdf/common/plat/p9/prdfP9Configurator.C
@@ -286,7 +286,7 @@ errlHndl_t PlatConfigurator::addDomainChips( TARGETING::TYPE i_type,
{ TYPE_MCC, axone_mcc },
{ TYPE_OMIC, axone_omic }, } },
#ifdef __HOSTBOOT_MODULE
- { POWER_CHIPID::EXPLORER, { { TYPE_OCMB_CHIP, explorer_ocmb }, } },
+ { POWER_CHIPID::EXPLORER_16, { { TYPE_OCMB_CHIP, explorer_ocmb }, } },
#endif
};
@@ -314,7 +314,7 @@ errlHndl_t PlatConfigurator::addDomainChips( TARGETING::TYPE i_type,
model = getChipId( trgt );
// Skip Gemini OCMBs. They can exist, but PRD won't support them.
- if ( POWER_CHIPID::GEMINI == model ) continue;
+ if ( POWER_CHIPID::GEMINI_16 == model ) continue;
}
#endif
diff --git a/src/usr/diag/prdf/occ_firdata/prdfWriteHomerFirData.C b/src/usr/diag/prdf/occ_firdata/prdfWriteHomerFirData.C
index 061ef03b7..d3de91189 100644
--- a/src/usr/diag/prdf/occ_firdata/prdfWriteHomerFirData.C
+++ b/src/usr/diag/prdf/occ_firdata/prdfWriteHomerFirData.C
@@ -950,15 +950,15 @@ errlHndl_t getHwConfig( std::vector<HOMER_ChipInfo_t> & o_chipInfVector,
HOMER_ChipType_t ocmbType = HOMER_CHIP_INVALID;
switch ( getChipId(ocmb) )
{
- case POWER_CHIPID::GEMINI:
+ case POWER_CHIPID::GEMINI_16:
// Skip Gemini OCMBs. They can exist, but PRD won't support
// them (set invalid).
ocmbType = HOMER_CHIP_INVALID; break;
- case POWER_CHIPID::EXPLORER:
+ case POWER_CHIPID::EXPLORER_16:
ocmbType = HOMER_CHIP_EXPLORER; break;
default:
- PRDF_ERR( FUNC "Unsupported chip model %d on 0x%08x",
- ocmbType, getHuid(ocmb) );
+ PRDF_ERR( FUNC "Unsupported chip ID 0x%08x on 0x%08x",
+ getChipId(ocmb), getHuid(ocmb) );
PRDF_ASSERT( false );
}
if ( HOMER_CHIP_INVALID == ocmbType ) continue;
OpenPOWER on IntegriCloud