/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: src/usr/targeting/common/util.C $ */ /* */ /* OpenPOWER HostBoot Project */ /* */ /* Contributors Listed Below - COPYRIGHT 2012,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ /* You may obtain a copy of the License at */ /* */ /* http://www.apache.org/licenses/LICENSE-2.0 */ /* */ /* Unless required by applicable law or agreed to in writing, software */ /* distributed under the License is distributed on an "AS IS" BASIS, */ /* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */ /* implied. See the License for the specific language governing */ /* permissions and limitations under the License. */ /* */ /* IBM_PROLOG_END_TAG */ /** * @file targeting/common/util.C * * @brief Provides miscellaneous utility functions to targeting, including * a check for whether system is in simulation or not. */ //****************************************************************************** // Includes //****************************************************************************** #include #include #include #include namespace TARGETING { /** * @brief Checks to see if we are running in a hardware simulation * environment, i.e. VPO/VBU (not Simics) */ bool is_vpo( void ) { struct IsVpoFunctor { static bool operate() { bool rc = false; Target* sys = NULL; targetService().getTopLevelTarget(sys); uint8_t vpo_mode = 0; if (unlikely(sys && sys->tryGetAttr(vpo_mode) && (1 == vpo_mode))) { rc = true; } return rc; } }; #ifdef __HOSTBOOT_MODULE // In Hostboot this value cannot change, so cache it as a static. static bool is_vpo_mode = IsVpoFunctor::operate(); return is_vpo_mode; #else // On FSP, assumption is that the user could change this, so we cannot // cache it as a static. Read from the attribute directly. return IsVpoFunctor::operate(); #endif }; /** * @brief Safely fetch the HUID of a Target */ uint32_t get_huid( const Target* i_target ) { uint32_t huid = 0; if( i_target == NULL ) { huid = 0x0; } else if( i_target == MASTER_PROCESSOR_CHIP_TARGET_SENTINEL ) { huid = 0xFFFFFFFF; } else { i_target->tryGetAttr(huid); } return huid; } /** * @brief set HWAS Changed flag to subscription mask * * This will be used by the HCDB service - when the target has * changed, this will get called to tell the appropriate services * that the change has occurred. */ void update_hwas_changed_mask(Target * i_target) { i_target->setAttr( i_target->getAttr()); } /** * @brief set HWAS Changed flag to specific bits * * This will be used by different services when the target needs processing. */ void update_hwas_changed_mask(Target * i_target, const uint64_t i_bits) { i_target->setAttr( i_target->getAttr() | (i_target->getAttr() & i_bits)); } /** * @brief clear bit in HWAS Changed Mask * * This will be used by the appropriate services when they have handled * the change flag for this target. */ void clear_hwas_changed_bit(Target * i_target, const HWAS_CHANGED_BIT i_bit) { ATTR_HWAS_STATE_CHANGED_FLAG_type hwasChangedState = i_target->getAttr(); hwasChangedState &= ~i_bit; i_target->setAttr(hwasChangedState); } /** * @brief Checks if we are loading a PHYP payload */ bool is_phyp_load( ATTR_PAYLOAD_KIND_type* o_type ) { Target* sys = NULL; targetService().getTopLevelTarget( sys ); assert(sys != NULL); // get the current payload kind TARGETING::PAYLOAD_KIND payload_kind = sys->getAttr(); if( o_type ) { *o_type = payload_kind; } //If in AVP mode default to false bool is_phyp = false; if(!is_avp_load()) { is_phyp = (PAYLOAD_KIND_PHYP == payload_kind); } return is_phyp; } /** * @brief Utility function to determine if Sapphire is the payload * * @description If the payload kind is Sapphire returns true. Does * not matter if it is Sapphire with FSP or standalone * * @return bool True when loadding sapphire */ bool is_sapphire_load(void) { TARGETING::Target * sys = NULL; TARGETING::targetService().getTopLevelTarget( sys ); assert(sys != NULL); bool is_sapphire = false; //If in AVP mode default to false if(!is_avp_load()) { is_sapphire = (PAYLOAD_KIND_SAPPHIRE == sys->getAttr()); } return is_sapphire; } /** * @brief Utility function to determine if an AVP is the payload * Note the actual payload could be something else -- this * is based solely on MFG flags * * @description If MFG AVP mode flags are set then returns true * Does not matter what the actual payload is * * @return bool True when in AVP mode */ bool is_avp_load(void) { TARGETING::Target * sys = NULL; TARGETING::targetService().getTopLevelTarget( sys ); assert(sys != NULL); TARGETING::ATTR_MNFG_FLAGS_type mnfg_flags = sys->getAttr(); return ((mnfg_flags & TARGETING::MNFG_FLAG_AVP_ENABLE) || (mnfg_flags & TARGETING::MNFG_FLAG_HDAT_AVP_ENABLE)); } /** * @brief Utility function to obtain the highest known address in the system */ uint64_t get_top_mem_addr(void) { uint64_t top_addr = 0; do { // Get all functional proc chip targets TARGETING::TargetHandleList l_cpuTargetList; TARGETING::getAllChips(l_cpuTargetList, TYPE_PROC); for ( size_t proc = 0; proc < l_cpuTargetList.size(); proc++ ) { TARGETING::Target * l_pProc = l_cpuTargetList[proc]; //Not checking success here as fail results in no change to // top_addr uint64_t l_mem_bases[8] = {0,}; uint64_t l_mem_sizes[8] = {0,}; l_pProc->tryGetAttr(l_mem_bases); l_pProc->tryGetAttr(l_mem_sizes); for (size_t i=0; i< 8; i++) { if(l_mem_sizes[i]) //non zero means that there is memory present { top_addr = std::max(top_addr, l_mem_bases[i] + l_mem_sizes[i]); } } } }while(0); return top_addr; } /** * @brief Utility function to obtain the lowest known address in the system */ uint64_t get_bottom_mem_addr(void) { uint64_t bottom_addr = UINT64_MAX; do { // Get all functional proc chip targets TARGETING::TargetHandleList l_cpuTargetList; TARGETING::getAllChips(l_cpuTargetList, TYPE_PROC); for ( size_t proc = 0; proc < l_cpuTargetList.size(); proc++ ) { TARGETING::Target * l_pProc = l_cpuTargetList[proc]; uint64_t l_mem_bases[8] = {}; uint64_t l_mem_sizes[8] = {}; TARG_ASSERT( l_pProc->tryGetAttr(l_mem_bases), "Unable to get ATTR_PROC_MEM_BASES attribute"); TARG_ASSERT( l_pProc->tryGetAttr(l_mem_sizes), "Unable to get ATTR_PROC_MEM_SIZES attribute"); for (size_t i=0; i< 8; i++) { if(l_mem_sizes[i]) //non zero means that there is memory present { bottom_addr = std::min(bottom_addr, l_mem_bases[i]); } } } }while(0); // There's no reason the lowest address should be the largest // 64 bit value TARG_ASSERT( bottom_addr < UINT64_MAX, "Lowest address is maximum 64-bit value, probably have no memory"); return bottom_addr; } bool orderByNodeAndPosition( Target* i_firstProc, Target* i_secondProc) { uint8_t groupId0 = i_firstProc->getAttr(); uint8_t groupId1 = i_secondProc->getAttr(); uint8_t fabpos0 = i_firstProc->getAttr(); uint8_t fabpos1 = i_secondProc->getAttr(); if (groupId0 == groupId1) { return fabpos0 < fabpos1; } return groupId0 < groupId1; } uint8_t is_fused_mode( ) { uint8_t l_fused; TARGETING::Target * sys = NULL; TARGETING::targetService().getTopLevelTarget( sys ); assert(sys != NULL); TARGETING::PAYLOAD_KIND l_payload = sys->getAttr(); uint8_t l_attrValue = sys->getAttr(); if (FUSED_CORE_OPTION_USING_DEFAULT_CORES == l_attrValue) { // if payload is PHYP, use FUSED mode // Anything else, use NORMAL mode if (PAYLOAD_KIND_PHYP == l_payload) { l_fused = true; } else { l_fused = false; } } else { l_fused = (l_attrValue == FUSED_CORE_OPTION_USING_NORMAL_CORES) ? false : true; } return(l_fused); } // end is_fused_mode }