/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: chips/p9/procedures/hwp/memory/lib/utils/pos.H $ */ /* */ /* IBM CONFIDENTIAL */ /* */ /* EKB Project */ /* */ /* COPYRIGHT 2015,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ /* 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. */ /* */ /* IBM_PROLOG_END_TAG */ /// /// @file pos.H /// @brief Tools to return target's position from a fapi2 target /// // *HWP HWP Owner: Brian Silver // *HWP HWP Backup: Andre Marin // *HWP Team: Memory // *HWP Level: 2 // *HWP Consumed by: HB:FSP #ifndef _MSS_POS_H_ #define _MSS_POS_H_ #include #include namespace mss { /// /// @brief Trait classes for the mss::pos functions /// template class posTraits { public: // Needed as some targets have chip_unit_pos attributes, // uint8_t and some attr_pos, uint32_t. We don't really care // but the type checking in the macros sure does ... typedef uint8_t pos_type; }; /// /// @brief DIMM Trait class for the mss::pos functions /// template<> class posTraits { public: typedef uint32_t pos_type; }; /// /// @brief Processor Trait class for the mss::pos functions /// template<> class posTraits { public: typedef uint32_t pos_type; }; /// /// @brief Return a target's position from a fapi2 target /// @tparam T the fapi2::TargetType /// @param[in] i_target a target representing the target in question /// @return The position relative to the chip /// template< fapi2::TargetType T, typename TT = posTraits > inline typename TT::pos_type pos(const fapi2::Target& i_target) { typename TT::pos_type i_pos = 0; // Don't use FAPI_TRY as you'll mess up fapi2::current_err which // lmits where this can be used. if (FAPI_ATTR_GET(fapi2::ATTR_CHIP_UNIT_POS, i_target, i_pos) != fapi2::FAPI2_RC_SUCCESS) { goto fapi_try_exit; } return i_pos; fapi_try_exit: // If we can't get our unit position, we're in other trouble FAPI_ERR("can't get our chip unit position"); fapi2::Assert(false); return 0; } /// /// @brief Return a DIMM's position from a fapi2 target /// @param[in] i_target a target representing the target in question /// @return The position relative to the chip /// template<> inline posTraits::pos_type pos(const fapi2::Target& i_target) { posTraits::pos_type i_pos = 0; if (FAPI_ATTR_GET(fapi2::ATTR_POS, i_target, i_pos) != fapi2::FAPI2_RC_SUCCESS) { goto fapi_try_exit; } return i_pos; fapi_try_exit: // If we can't get our position, we're in other trouble FAPI_ERR("can't get our position"); fapi2::Assert(false); return 0; } /// /// @brief Return a processor's position from a fapi2 target /// @param[in] i_target a target representing the target in question /// @return The position relative to the chip /// template<> inline posTraits::pos_type pos( const fapi2::Target& i_target) { posTraits::pos_type i_pos = 0; if (FAPI_ATTR_GET(fapi2::ATTR_POS, i_target, i_pos) != fapi2::FAPI2_RC_SUCCESS) { goto fapi_try_exit; } return i_pos; fapi_try_exit: // If we can't get our position, we're in other trouble FAPI_ERR("can't get our position"); fapi2::Assert(false); return 0; } /// /// @brief Return a target's relative position from a fapi2 target /// @tparam T the fapi2::TargetType /// @tparam R the fapi2::TargetType we want the position relative to /// @param[in] i_target a target representing the target in question /// @return The position relative to chiplet R /// template< fapi2::TargetType R, fapi2::TargetType T, typename TT = posTraits > inline typename TT::pos_type relative_pos(const fapi2::Target& i_target); template<> inline uint8_t relative_pos(const fapi2::Target& i_target) { return pos(i_target) % PORTS_PER_MCBIST; } /// /// @brief Return a target's fapi position from a fapi2 target /// @tparam T the fapi2::TargetType /// @param[in] i_target a target representing the target in question /// @return The position relative to the system /// template< fapi2::TargetType T, typename TT = posTraits > inline uint32_t fapi_pos(const fapi2::Target& i_target) { // Doesn't look like ATTR_FAPI_POS is supported in Cronus yet, so we'll // use our chip-relative position for the time being. #ifdef ATTR_FAPI_POS_SUPPORTED uint32_t i_pos = 0; // Don't use FAPI_TRY as you'll mess up fapi2::current_err which // lmits where this can be used. if (FAPI_ATTR_GET(fapi2::ATTR_FAPI_POS, i_target, i_pos) != fapi2::FAPI2_RC_SUCCESS) { goto fapi_try_exit; } return i_pos; fapi_try_exit: // If we can't get our fapi position, we're in other trouble FAPI_ERR("can't get our fapi position"); fapi2::Assert(false); return 0; #else return pos(i_target); #endif } } #endif