1 /* QLogic qed NIC Driver
2 * Copyright (c) 2015 QLogic Corporation
4 * This software is available under the terms of the GNU General Public License
5 * (GPL) Version 2, available from the file COPYING in the main directory of
12 #include <linux/types.h>
13 #include <linux/slab.h>
14 #include <linux/qed/qed_if.h>
21 enum protocol_type type
;
25 * @brief qed_cxt_acquire - Acquire a new cid of a specific protocol type
33 int qed_cxt_acquire_cid(struct qed_hwfn
*p_hwfn
,
34 enum protocol_type type
,
38 * @brief qedo_cid_get_cxt_info - Returns the context info for a specific cid
42 * @param p_info in/out
46 int qed_cxt_get_cid_info(struct qed_hwfn
*p_hwfn
,
47 struct qed_cxt_info
*p_info
);
49 enum qed_cxt_elem_type
{
55 * @brief qed_cxt_set_pf_params - Set the PF params for cxt init
61 int qed_cxt_set_pf_params(struct qed_hwfn
*p_hwfn
);
64 * @brief qed_cxt_cfg_ilt_compute - compute ILT init parameters
70 int qed_cxt_cfg_ilt_compute(struct qed_hwfn
*p_hwfn
);
73 * @brief qed_cxt_mngr_alloc - Allocate and init the context manager struct
79 int qed_cxt_mngr_alloc(struct qed_hwfn
*p_hwfn
);
82 * @brief qed_cxt_mngr_free
86 void qed_cxt_mngr_free(struct qed_hwfn
*p_hwfn
);
89 * @brief qed_cxt_tables_alloc - Allocate ILT shadow, Searcher T2, acquired map
95 int qed_cxt_tables_alloc(struct qed_hwfn
*p_hwfn
);
98 * @brief qed_cxt_mngr_setup - Reset the acquired CIDs
102 void qed_cxt_mngr_setup(struct qed_hwfn
*p_hwfn
);
105 * @brief qed_cxt_hw_init_common - Initailze ILT and DQ, common phase, per path.
111 void qed_cxt_hw_init_common(struct qed_hwfn
*p_hwfn
);
114 * @brief qed_cxt_hw_init_pf - Initailze ILT and DQ, PF phase, per path.
120 void qed_cxt_hw_init_pf(struct qed_hwfn
*p_hwfn
);
123 * @brief qed_qm_init_pf - Initailze the QM PF phase, per path
128 void qed_qm_init_pf(struct qed_hwfn
*p_hwfn
);
131 * @brief qed_cxt_release - Release a cid
136 void qed_cxt_release_cid(struct qed_hwfn
*p_hwfn
,