diff options
Diffstat (limited to 'src/import/chips/p9a/procedures/hwp/memory/p9a_omi_setup.H')
-rw-r--r-- | src/import/chips/p9a/procedures/hwp/memory/p9a_omi_setup.H | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/import/chips/p9a/procedures/hwp/memory/p9a_omi_setup.H b/src/import/chips/p9a/procedures/hwp/memory/p9a_omi_setup.H index a5e089214..cf364294b 100644 --- a/src/import/chips/p9a/procedures/hwp/memory/p9a_omi_setup.H +++ b/src/import/chips/p9a/procedures/hwp/memory/p9a_omi_setup.H @@ -22,3 +22,32 @@ /* permissions and limitations under the License. */ /* */ /* IBM_PROLOG_END_TAG */ + +/// +/// @file p9a_omi_setup.H +/// @brief Setup the OMI +/// +// *HWP HWP Owner: Mark Pizzutillo <Mark.Pizzutillo@ibm.com> +// *HWP HWP Backup: Louis Stermole <stermole@us.ibm.com> +// *HWP Team: Memory +// *HWP Level: 2 +// *HWP Consumed by: FSP:HB + +#ifndef P9A_OMI_SETUP_H_ +#define P9A_OMI_SETUP_H_ + +#include <fapi2.H> + +typedef fapi2::ReturnCode (*p9a_omi_setup_FP_t) (const fapi2::Target<fapi2::TARGET_TYPE_OMI>&); + +extern "C" +{ + /// + /// @brief Setup OMI for axone + /// @param[in] i_target the axone OMI target to operate on + /// @return FAPI2_RC_SUCCESS iff ok + /// + fapi2::ReturnCode p9a_omi_setup( const fapi2::Target<fapi2::TARGET_TYPE_OMI>& i_target ); +} + +#endif |