/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: chips/p9/procedures/hwp/pm/p9_block_wakeup_intr.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_block_wakeup_intr.H /// @brief Set/reset the BLOCK_REG_WKUP_SOURCES bit in the PPM /// associated with an EX chiplet /// // *HWP HWP Owner: Amit Kumar // *HWP Backup HWP Owner: Greg Still // *HWP FW Owner: Bilicon Patil // *HWP Team: PM // *HWP Level: 1 // *HWP Consumed by: FSP:HS /// ///----------------------------------------------------------------------------- #ifndef _P9_BLKWKUP_H_ #define _P9_BLKWKUP_H_ //------------------------------------------------------------------------------ // Includes //------------------------------------------------------------------------------ #include #include #include //------------------------------------------------------------------------------ // Constant definitions //------------------------------------------------------------------------------ namespace p9pmblockwkup { enum OP_TYPE { SET = 0, SET_NOSPWUP = 1, CLEAR = 2 }; // Used by checking infrasture checking code static const uint32_t END_OP = CLEAR; } // namespace p9pmblockwkup // // CPMMR Bit definitions const uint32_t BLOCK_REG_WKUP_EVENTS = 6; // GPMMR Address mappings (for clarity) static const uint64_t C_PPM_GPMMR = C_PPM_GPMMR_SCOM; static const uint64_t C_PPM_GPMMR_CLEAR = C_PPM_GPMMR_SCOM1; static const uint64_t C_PPM_GPMMR_OR = C_PPM_GPMMR_SCOM2; // function pointer typedef definition for HWP call support typedef fapi2::ReturnCode (*p9_block_wakeup_intr_FP_t) ( const fapi2::Target&, const p9pmblockwkup::OP_TYPE); extern "C" { //------------------------------------------------------------------------------ // Function prototype //------------------------------------------------------------------------------ /// @brief @brief Set/reset the BLOCK_REG_WKUP_SOURCES bit in the PPM /// associated with an EX chiplet /// /// @param[in] i_core_target Core target /// @param[in] i_operation SET, CLEAR /// /// @return FAPI2_RC_SUCCESS if success, else error code. fapi2::ReturnCode p9_block_wakeup_intr( const fapi2::Target& i_core_target, const p9pmblockwkup::OP_TYPE i_operation); } // extern "C" #endif // _P9_BLKWKUP_H_