1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
2 /* QLogic qed NIC Driver
3 * Copyright (c) 2015-2017 QLogic Corporation
4 * Copyright (c) 2019-2020 Marvell International Ltd.
10 #include <linux/types.h>
11 #include <linux/kernel.h>
12 #include <linux/list.h>
13 #include <linux/slab.h>
14 #include <linux/spinlock.h>
15 #include <linux/qed/qed_chain.h>
20 QED_SPQ_MODE_BLOCK
, /* Client will poll a designated mem. address */
21 QED_SPQ_MODE_CB
, /* Client supplies a callback */
22 QED_SPQ_MODE_EBLOCK
, /* QED should block until completion */
25 struct qed_spq_comp_cb
{
26 void (*function
)(struct qed_hwfn
*p_hwfn
,
28 union event_ring_data
*data
,
34 * qed_eth_cqe_completion(): handles the completion of a
35 * ramrod on the cqe ring.
37 * @p_hwfn: HW device data.
42 int qed_eth_cqe_completion(struct qed_hwfn
*p_hwfn
,
43 struct eth_slow_path_rx_cqe
*cqe
);
45 /* QED Slow-hwfn queue interface */
47 struct pf_start_ramrod_data pf_start
;
48 struct pf_update_ramrod_data pf_update
;
49 struct rx_queue_start_ramrod_data rx_queue_start
;
50 struct rx_queue_update_ramrod_data rx_queue_update
;
51 struct rx_queue_stop_ramrod_data rx_queue_stop
;
52 struct tx_queue_start_ramrod_data tx_queue_start
;
53 struct tx_queue_stop_ramrod_data tx_queue_stop
;
54 struct vport_start_ramrod_data vport_start
;
55 struct vport_stop_ramrod_data vport_stop
;
56 struct rx_update_gft_filter_ramrod_data rx_update_gft
;
57 struct vport_update_ramrod_data vport_update
;
58 struct core_rx_start_ramrod_data core_rx_queue_start
;
59 struct core_rx_stop_ramrod_data core_rx_queue_stop
;
60 struct core_tx_start_ramrod_data core_tx_queue_start
;
61 struct core_tx_stop_ramrod_data core_tx_queue_stop
;
62 struct vport_filter_update_ramrod_data vport_filter_update
;
64 struct rdma_init_func_ramrod_data rdma_init_func
;
65 struct rdma_close_func_ramrod_data rdma_close_func
;
66 struct rdma_register_tid_ramrod_data rdma_register_tid
;
67 struct rdma_deregister_tid_ramrod_data rdma_deregister_tid
;
68 struct roce_create_qp_resp_ramrod_data roce_create_qp_resp
;
69 struct roce_create_qp_req_ramrod_data roce_create_qp_req
;
70 struct roce_modify_qp_resp_ramrod_data roce_modify_qp_resp
;
71 struct roce_modify_qp_req_ramrod_data roce_modify_qp_req
;
72 struct roce_query_qp_resp_ramrod_data roce_query_qp_resp
;
73 struct roce_query_qp_req_ramrod_data roce_query_qp_req
;
74 struct roce_destroy_qp_resp_ramrod_data roce_destroy_qp_resp
;
75 struct roce_destroy_qp_req_ramrod_data roce_destroy_qp_req
;
76 struct roce_init_func_ramrod_data roce_init_func
;
77 struct rdma_create_cq_ramrod_data rdma_create_cq
;
78 struct rdma_destroy_cq_ramrod_data rdma_destroy_cq
;
79 struct rdma_srq_create_ramrod_data rdma_create_srq
;
80 struct rdma_srq_destroy_ramrod_data rdma_destroy_srq
;
81 struct rdma_srq_modify_ramrod_data rdma_modify_srq
;
82 struct iwarp_create_qp_ramrod_data iwarp_create_qp
;
83 struct iwarp_tcp_offload_ramrod_data iwarp_tcp_offload
;
84 struct iwarp_mpa_offload_ramrod_data iwarp_mpa_offload
;
85 struct iwarp_modify_qp_ramrod_data iwarp_modify_qp
;
86 struct iwarp_init_func_ramrod_data iwarp_init_func
;
87 struct fcoe_init_ramrod_params fcoe_init
;
88 struct fcoe_conn_offload_ramrod_params fcoe_conn_ofld
;
89 struct fcoe_conn_terminate_ramrod_params fcoe_conn_terminate
;
90 struct fcoe_stat_ramrod_params fcoe_stat
;
92 struct iscsi_init_ramrod_params iscsi_init
;
93 struct iscsi_spe_conn_offload iscsi_conn_offload
;
94 struct iscsi_conn_update_ramrod_params iscsi_conn_update
;
95 struct iscsi_spe_conn_mac_update iscsi_conn_mac_update
;
96 struct iscsi_spe_conn_termination iscsi_conn_terminate
;
98 struct nvmetcp_init_ramrod_params nvmetcp_init
;
99 struct nvmetcp_spe_conn_offload nvmetcp_conn_offload
;
100 struct nvmetcp_conn_update_ramrod_params nvmetcp_conn_update
;
101 struct nvmetcp_spe_conn_termination nvmetcp_conn_terminate
;
103 struct vf_start_ramrod_data vf_start
;
104 struct vf_stop_ramrod_data vf_stop
;
107 #define EQ_MAX_CREDIT 0xffffffff
110 QED_SPQ_PRIORITY_NORMAL
,
111 QED_SPQ_PRIORITY_HIGH
,
114 union qed_spq_req_comp
{
115 struct qed_spq_comp_cb cb
;
119 struct qed_spq_comp_done
{
124 struct qed_spq_entry
{
125 struct list_head list
;
129 /* HSI slow path element */
130 struct slow_path_element elem
;
132 union ramrod_data ramrod
;
134 enum spq_priority priority
;
136 /* pending queue for this entry */
137 struct list_head
*queue
;
139 enum spq_mode comp_mode
;
140 struct qed_spq_comp_cb comp_cb
;
141 struct qed_spq_comp_done comp_done
; /* SPQ_MODE_EBLOCK */
143 /* Posted entry for unlimited list entry in EBLOCK mode */
144 struct qed_spq_entry
*post_ent
;
148 struct qed_chain chain
;
149 u8 eq_sb_index
; /* index within the SB */
150 __le16
*p_fw_cons
; /* ptr to index value */
154 struct qed_chain chain
;
157 typedef int (*qed_spq_async_comp_cb
)(struct qed_hwfn
*p_hwfn
, u8 opcode
,
158 __le16 echo
, union event_ring_data
*data
,
162 qed_spq_register_async_cb(struct qed_hwfn
*p_hwfn
,
163 enum protocol_type protocol_id
,
164 qed_spq_async_comp_cb cb
);
167 qed_spq_unregister_async_cb(struct qed_hwfn
*p_hwfn
,
168 enum protocol_type protocol_id
);
171 spinlock_t lock
; /* SPQ lock */
173 struct list_head unlimited_pending
;
174 struct list_head pending
;
175 struct list_head completion_pending
;
176 struct list_head free_pool
;
178 struct qed_chain chain
;
180 /* allocated dma-able memory for spq entries (+ramrod data) */
182 struct qed_spq_entry
*p_virt
;
184 #define SPQ_RING_SIZE \
185 (CORE_SPQE_PAGE_SIZE_BYTES / sizeof(struct slow_path_element))
187 /* Bitmap for handling out-of-order completions */
188 DECLARE_BITMAP(p_comp_bitmap
, SPQ_RING_SIZE
);
192 u32 unlimited_pending_count
;
200 struct core_db_data db_data
;
201 qed_spq_async_comp_cb async_comp_cb
[MAX_PROTOCOL_TYPE
];
205 * qed_spq_post(): Posts a Slow hwfn request to FW, or lacking that
206 * Pends it to the future list.
208 * @p_hwfn: HW device data.
210 * @fw_return_code: Return code from firmware.
214 int qed_spq_post(struct qed_hwfn
*p_hwfn
,
215 struct qed_spq_entry
*p_ent
,
219 * qed_spq_alloc(): Alloocates & initializes the SPQ and EQ.
221 * @p_hwfn: HW device data.
225 int qed_spq_alloc(struct qed_hwfn
*p_hwfn
);
228 * qed_spq_setup(): Reset the SPQ to its start state.
230 * @p_hwfn: HW device data.
234 void qed_spq_setup(struct qed_hwfn
*p_hwfn
);
237 * qed_spq_free(): Deallocates the given SPQ struct.
239 * @p_hwfn: HW device data.
243 void qed_spq_free(struct qed_hwfn
*p_hwfn
);
246 * qed_spq_get_entry(): Obtain an entrry from the spq
249 * @p_hwfn: HW device data.
255 qed_spq_get_entry(struct qed_hwfn
*p_hwfn
,
256 struct qed_spq_entry
**pp_ent
);
259 * qed_spq_return_entry(): Return an entry to spq free pool list.
261 * @p_hwfn: HW device data.
266 void qed_spq_return_entry(struct qed_hwfn
*p_hwfn
,
267 struct qed_spq_entry
*p_ent
);
269 * qed_eq_alloc(): Allocates & initializes an EQ struct.
271 * @p_hwfn: HW device data.
272 * @num_elem: number of elements in the eq.
276 int qed_eq_alloc(struct qed_hwfn
*p_hwfn
, u16 num_elem
);
279 * qed_eq_setup(): Reset the EQ to its start state.
281 * @p_hwfn: HW device data.
285 void qed_eq_setup(struct qed_hwfn
*p_hwfn
);
288 * qed_eq_free(): deallocates the given EQ struct.
290 * @p_hwfn: HW device data.
294 void qed_eq_free(struct qed_hwfn
*p_hwfn
);
297 * qed_eq_prod_update(): update the FW with default EQ producer.
299 * @p_hwfn: HW device data.
304 void qed_eq_prod_update(struct qed_hwfn
*p_hwfn
,
308 * qed_eq_completion(): Completes currently pending EQ elements.
310 * @p_hwfn: HW device data.
315 int qed_eq_completion(struct qed_hwfn
*p_hwfn
,
319 * qed_spq_completion(): Completes a single event.
321 * @p_hwfn: HW device data.
322 * @echo: echo value from cookie (used for determining completion).
323 * @fw_return_code: FW return code.
324 * @p_data: data from cookie (used in callback function if applicable).
328 int qed_spq_completion(struct qed_hwfn
*p_hwfn
,
331 union event_ring_data
*p_data
);
334 * qed_spq_get_cid(): Given p_hwfn, return cid for the hwfn's SPQ.
336 * @p_hwfn: HW device data.
338 * Return: u32 - SPQ CID.
340 u32
qed_spq_get_cid(struct qed_hwfn
*p_hwfn
);
343 * qed_consq_alloc(): Allocates & initializes an ConsQ struct.
345 * @p_hwfn: HW device data.
349 int qed_consq_alloc(struct qed_hwfn
*p_hwfn
);
352 * qed_consq_setup(): Reset the ConsQ to its start state.
354 * @p_hwfn: HW device data.
358 void qed_consq_setup(struct qed_hwfn
*p_hwfn
);
361 * qed_consq_free(): deallocates the given ConsQ struct.
363 * @p_hwfn: HW device data.
367 void qed_consq_free(struct qed_hwfn
*p_hwfn
);
368 int qed_spq_pend_post(struct qed_hwfn
*p_hwfn
);
370 /* Slow-hwfn low-level commands (Ramrods) function definitions. */
372 #define QED_SP_EQ_COMPLETION 0x01
373 #define QED_SP_CQE_COMPLETION 0x02
375 struct qed_sp_init_data
{
379 /* Information regarding operation upon sending & completion */
380 enum spq_mode comp_mode
;
381 struct qed_spq_comp_cb
*p_comp_data
;
385 * qed_sp_destroy_request(): Returns a SPQ entry to the pool / frees the
386 * entry if allocated. Should be called on in error
387 * flows after initializing the SPQ entry
388 * and before posting it.
390 * @p_hwfn: HW device data.
395 void qed_sp_destroy_request(struct qed_hwfn
*p_hwfn
,
396 struct qed_spq_entry
*p_ent
);
398 int qed_sp_init_request(struct qed_hwfn
*p_hwfn
,
399 struct qed_spq_entry
**pp_ent
,
402 struct qed_sp_init_data
*p_data
);
405 * qed_sp_pf_start(): PF Function Start Ramrod.
407 * @p_hwfn: HW device data.
410 * @allow_npar_tx_switch: Allow NPAR TX Switch.
414 * This ramrod is sent to initialize a physical function (PF). It will
415 * configure the function related parameters and write its completion to the
416 * event ring specified in the parameters.
418 * Ramrods complete on the common event ring for the PF. This ring is
419 * allocated by the driver on host memory and its parameters are written
420 * to the internal RAM of the UStorm by the Function Start Ramrod.
424 int qed_sp_pf_start(struct qed_hwfn
*p_hwfn
,
425 struct qed_ptt
*p_ptt
,
426 struct qed_tunnel_info
*p_tunn
,
427 bool allow_npar_tx_switch
);
430 * qed_sp_pf_update(): PF Function Update Ramrod.
432 * @p_hwfn: HW device data.
436 * This ramrod updates function-related parameters. Every parameter can be
437 * updated independently, according to configuration flags.
440 int qed_sp_pf_update(struct qed_hwfn
*p_hwfn
);
443 * qed_sp_pf_update_stag(): Update firmware of new outer tag.
445 * @p_hwfn: HW device data.
449 int qed_sp_pf_update_stag(struct qed_hwfn
*p_hwfn
);
452 * qed_sp_pf_update_ufp(): PF ufp update Ramrod.
454 * @p_hwfn: HW device data.
458 int qed_sp_pf_update_ufp(struct qed_hwfn
*p_hwfn
);
460 int qed_sp_pf_stop(struct qed_hwfn
*p_hwfn
);
462 int qed_sp_pf_update_tunn_cfg(struct qed_hwfn
*p_hwfn
,
463 struct qed_ptt
*p_ptt
,
464 struct qed_tunnel_info
*p_tunn
,
465 enum spq_mode comp_mode
,
466 struct qed_spq_comp_cb
*p_comp_data
);
468 * qed_sp_heartbeat_ramrod(): Send empty Ramrod.
470 * @p_hwfn: HW device data.
475 int qed_sp_heartbeat_ramrod(struct qed_hwfn
*p_hwfn
);