/* * Copyright (c) 2016 QLogic Corporation. * All rights reserved. * www.qlogic.com * * See LICENSE.qede_pmd for copyright and licensing details. */ #ifndef __ECORE_SP_COMMANDS_H__ #define __ECORE_SP_COMMANDS_H__ #include "ecore.h" #include "ecore_spq.h" #include "ecore_sp_api.h" #define ECORE_SP_EQ_COMPLETION 0x01 #define ECORE_SP_CQE_COMPLETION 0x02 struct ecore_sp_init_data { /* The CID and FID aren't necessarily derived from hwfn, * e.g., in IOV scenarios. CID might defer between SPQ and * other elements. */ u32 cid; u16 opaque_fid; /* Information regarding operation upon sending & completion */ enum spq_mode comp_mode; struct ecore_spq_comp_cb *p_comp_data; }; /** * @brief Acquire and initialize and SPQ entry for a given ramrod. * * @param p_hwfn * @param pp_ent - will be filled with a pointer to an entry upon success * @param cmd - dependent upon protocol * @param protocol * @param p_data - various configuration required for ramrod * * @return ECORE_SUCCESS upon success, otherwise failure. */ enum _ecore_status_t ecore_sp_init_request(struct ecore_hwfn *p_hwfn, struct ecore_spq_entry **pp_ent, u8 cmd, u8 protocol, struct ecore_sp_init_data *p_data); /** * @brief ecore_sp_pf_start - PF Function Start Ramrod * * This ramrod is sent to initialize a physical function (PF). It will * configure the function related parameters and write its completion to the * event ring specified in the parameters. * * Ramrods complete on the common event ring for the PF. This ring is * allocated by the driver on host memory and its parameters are written * to the internal RAM of the UStorm by the Function Start Ramrod. * * @param p_hwfn * @param p_tunn - pf start tunneling configuration * @param mode * @param allow_npar_tx_switch - npar tx switching to be used * for vports configured for tx-switching. * * @return enum _ecore_status_t */ enum _ecore_status_t ecore_sp_pf_start(struct ecore_hwfn *p_hwfn, struct ecore_tunn_start_params *p_tunn, enum ecore_mf_mode mode, bool allow_npar_tx_switch); /** * @brief ecore_sp_pf_update_tunn_cfg - PF Function Tunnel configuration * update Ramrod * * This ramrod is sent to update a tunneling configuration * for a physical function (PF). * * @param p_hwfn * @param p_tunn - pf update tunneling parameters * @param comp_mode - completion mode * @param p_comp_data - callback function * * @return enum _ecore_status_t */ enum _ecore_status_t ecore_sp_pf_update_tunn_cfg(struct ecore_hwfn *p_hwfn, struct ecore_tunn_update_params *p_tunn, enum spq_mode comp_mode, struct ecore_spq_comp_cb *p_comp_data); /** * @brief ecore_sp_pf_update - PF Function Update Ramrod * * This ramrod updates function-related parameters. Every parameter can be * updated independently, according to configuration flags. * * @note Final phase API. * * @param p_hwfn * * @return enum _ecore_status_t */ enum _ecore_status_t ecore_sp_pf_update(struct ecore_hwfn *p_hwfn); /** * @brief ecore_sp_pf_stop - PF Function Stop Ramrod * * This ramrod is sent to close a Physical Function (PF). It is the last ramrod * sent and the last completion written to the PFs Event Ring. This ramrod also * deletes the context for the Slowhwfn connection on this PF. * * @note Not required for first packet. * * @param p_hwfn * * @return enum _ecore_status_t */ enum _ecore_status_t ecore_sp_pf_stop(struct ecore_hwfn *p_hwfn); /** * @brief ecore_sp_heartbeat_ramrod - Send empty Ramrod * * @param p_hwfn * * @return enum _ecore_status_t */ enum _ecore_status_t ecore_sp_heartbeat_ramrod(struct ecore_hwfn *p_hwfn); #endif /*__ECORE_SP_COMMANDS_H__*/