/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: chips/p9/procedures/hwp/nest/p9_throttle_sync.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 p9_throttle_sync.H /// /// @brief p9_throttle_sync HWP /// /// The purpose of this procedure is to triggers sync command from a 'master' /// MC to other MCs that have attached memory in a processor. /// /// ---------------------------------------------------------------------------- /// *HWP HWP Owner : Joe McGill /// *HWP FW Owner : Thi Tran /// *HWP Team : Nest /// *HWP Level : 2 /// *HWP Consumed by : HB /// ---------------------------------------------------------------------------- #ifndef _P9_THROTTLE_SYNC_H_ #define _P9_THROTTLE_SYNC_H_ //------------------------------------------------------------------------------ // Includes //------------------------------------------------------------------------------ #include #include #include #include // Function pointer typedef definition for HWP call support typedef fapi2::ReturnCode (*p9_throttle_sync_FP_t)( const fapi2::Target&); //------------------------------------------------------------------------------ // Function prototypes //------------------------------------------------------------------------------ /// /// @brief p9_throttle_sync procedure /// /// The purpose of this procedure is to triggers sync command from a 'master' /// MC to other MCs that have attached memory in a processor. /// /// @param[in] i_target Reference to TARGET_TYPE_PROC_CHIP target /// /// @return FAPI2_RC_SUCCESS if success, else error code. /// extern "C" { fapi2::ReturnCode p9_throttle_sync( const fapi2::Target& i_target); } // extern "C" #endif // _P9_THROTTLE_SYNC_H_