/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: ./prdfMain.C $ */ /* */ /* IBM CONFIDENTIAL */ /* */ /* COPYRIGHT International Business Machines Corp. 2002,2013 */ /* */ /* 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 otherwise */ /* divested of its trade secrets, irrespective of what has been */ /* deposited with the U.S. Copyright Office. */ /* */ /* Origin: 30 */ /* */ /* IBM_PROLOG_END_TAG */ /** * @file prdfMain.C * @brief PRD code used by external components. * * This file contains code that is strictly specific to Hostboot. All code that * is common between FSP and Hostboot should be in the respective common file. */ #include #include #include #include #include using namespace TARGETING; using namespace HWAS; namespace PRDF { using namespace PlatServices; //------------------------------------------------------------------------------ // Platform specific helper function for PRDF::initialize() //------------------------------------------------------------------------------ void initPlatSpecific() { // Currently no-op in Hostboot. } //------------------------------------------------------------------------------ // External functions - declared in prdfMain.H //------------------------------------------------------------------------------ int32_t analyzeIplCEStats( TargetHandle_t i_mba, bool &o_calloutMade ) { #define PRDF_FUNC "PRDF::analyzeIplCEStats" PRDF_ENTER( PRDF_FUNC"(0x%08x)", getHuid(i_mba) ); int32_t o_rc = SUCCESS; o_calloutMade = false; ExtensibleChip * mbaChip = (ExtensibleChip *)systemPtr->GetChip( i_mba ); CenMbaDataBundle * mbadb = getMbaDataBundle( mbaChip ); o_rc = mbadb->getIplCeStats()->analyzeStats( o_calloutMade ); if ( SUCCESS != o_rc ) { PRDF_ERR( "["PRDF_FUNC"] analyzeStats() failed"); // Get user data uint64_t ud12 = PRDF_GET_UINT64_FROM_UINT32( getHuid(i_mba), 0 ); uint64_t ud34 = PRDF_GET_UINT64_FROM_UINT32( PRDFSIG_MnfgIplFail, 0 ); // Create error log errlHndl_t errl = new ERRORLOG::ErrlEntry( ERRORLOG::ERRL_SEV_PREDICTIVE, // severity PRDF_MNFG_IPL_CE_ANALYSIS, // module ID PRDF_DETECTED_FAIL_SOFTWARE, // reason code ud12, ud34 ); // user data 1-4 // Add 2nd level support errl->addProcedureCallout( EPUB_PRC_LVL_SUPP, SRCI_PRIORITY_HIGH ); // Add traces errl->collectTrace( PRDF_COMP_NAME, 512 ); // Commit the error log ERRORLOG::errlCommit( errl, PRDF_COMP_ID ); } PRDF_EXIT( PRDF_FUNC"(0x%08x), o_calloutMade:%u", getHuid(i_mba), o_calloutMade ); return o_rc; #undef PRDF_FUNC } } // end namespace PRDF