blob: 56c95fb9a26d527e54dd96338d618618eede1ee7 [file] [log] [blame]
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001/* QLogic qed NIC Driver
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +02002 * Copyright (c) 2015-2017 QLogic Corporation
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02003 *
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +02004 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and /or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
Yuval Mintzfe56b9e2015-10-26 11:02:25 +020031 */
32
33#ifndef _QED_SP_H
34#define _QED_SP_H
35
36#include <linux/types.h>
37#include <linux/kernel.h>
38#include <linux/list.h>
39#include <linux/slab.h>
40#include <linux/spinlock.h>
41#include <linux/qed/qed_chain.h>
42#include "qed.h"
43#include "qed_hsi.h"
44
45enum spq_mode {
46 QED_SPQ_MODE_BLOCK, /* Client will poll a designated mem. address */
47 QED_SPQ_MODE_CB, /* Client supplies a callback */
48 QED_SPQ_MODE_EBLOCK, /* QED should block until completion */
49};
50
51struct qed_spq_comp_cb {
52 void (*function)(struct qed_hwfn *,
53 void *,
54 union event_ring_data *,
55 u8 fw_return_code);
56 void *cookie;
57};
58
Manish Chopracee4d262015-10-26 11:02:28 +020059/**
60 * @brief qed_eth_cqe_completion - handles the completion of a
61 * ramrod on the cqe ring
62 *
63 * @param p_hwfn
64 * @param cqe
65 *
66 * @return int
67 */
68int qed_eth_cqe_completion(struct qed_hwfn *p_hwfn,
69 struct eth_slow_path_rx_cqe *cqe);
70
71/**
72 * @file
73 *
74 * QED Slow-hwfn queue interface
75 */
76
Yuval Mintzfe56b9e2015-10-26 11:02:25 +020077union ramrod_data {
78 struct pf_start_ramrod_data pf_start;
Manish Chopra464f6642016-04-14 01:38:29 -040079 struct pf_update_ramrod_data pf_update;
Manish Chopracee4d262015-10-26 11:02:28 +020080 struct rx_queue_start_ramrod_data rx_queue_start;
81 struct rx_queue_update_ramrod_data rx_queue_update;
82 struct rx_queue_stop_ramrod_data rx_queue_stop;
83 struct tx_queue_start_ramrod_data tx_queue_start;
84 struct tx_queue_stop_ramrod_data tx_queue_stop;
85 struct vport_start_ramrod_data vport_start;
86 struct vport_stop_ramrod_data vport_stop;
Chopra, Manishd51e4af2017-04-13 04:54:44 -070087 struct rx_update_gft_filter_data rx_update_gft;
Manish Chopracee4d262015-10-26 11:02:28 +020088 struct vport_update_ramrod_data vport_update;
Yuval Mintz0a7fb112016-10-01 21:59:55 +030089 struct core_rx_start_ramrod_data core_rx_queue_start;
90 struct core_rx_stop_ramrod_data core_rx_queue_stop;
91 struct core_tx_start_ramrod_data core_tx_queue_start;
92 struct core_tx_stop_ramrod_data core_tx_queue_stop;
Manish Chopracee4d262015-10-26 11:02:28 +020093 struct vport_filter_update_ramrod_data vport_filter_update;
Yuval Mintz1408cc1f2016-05-11 16:36:14 +030094
Yuval Mintz7a9b6b82016-06-03 14:35:33 +030095 struct rdma_init_func_ramrod_data rdma_init_func;
96 struct rdma_close_func_ramrod_data rdma_close_func;
97 struct rdma_register_tid_ramrod_data rdma_register_tid;
98 struct rdma_deregister_tid_ramrod_data rdma_deregister_tid;
99 struct roce_create_qp_resp_ramrod_data roce_create_qp_resp;
100 struct roce_create_qp_req_ramrod_data roce_create_qp_req;
101 struct roce_modify_qp_resp_ramrod_data roce_modify_qp_resp;
102 struct roce_modify_qp_req_ramrod_data roce_modify_qp_req;
103 struct roce_query_qp_resp_ramrod_data roce_query_qp_resp;
104 struct roce_query_qp_req_ramrod_data roce_query_qp_req;
105 struct roce_destroy_qp_resp_ramrod_data roce_destroy_qp_resp;
106 struct roce_destroy_qp_req_ramrod_data roce_destroy_qp_req;
107 struct rdma_create_cq_ramrod_data rdma_create_cq;
Yuval Mintz7a9b6b82016-06-03 14:35:33 +0300108 struct rdma_destroy_cq_ramrod_data rdma_destroy_cq;
109 struct rdma_srq_create_ramrod_data rdma_create_srq;
110 struct rdma_srq_destroy_ramrod_data rdma_destroy_srq;
111 struct rdma_srq_modify_ramrod_data rdma_modify_srq;
Ram Amrani51ff1722016-10-01 21:59:57 +0300112 struct roce_init_func_ramrod_data roce_init_func;
Arun Easi1e128c82017-02-15 06:28:22 -0800113 struct fcoe_init_ramrod_params fcoe_init;
114 struct fcoe_conn_offload_ramrod_params fcoe_conn_ofld;
115 struct fcoe_conn_terminate_ramrod_params fcoe_conn_terminate;
116 struct fcoe_stat_ramrod_params fcoe_stat;
Yuval Mintz7a9b6b82016-06-03 14:35:33 +0300117
118 struct iscsi_slow_path_hdr iscsi_empty;
119 struct iscsi_init_ramrod_params iscsi_init;
120 struct iscsi_spe_func_dstry iscsi_destroy;
121 struct iscsi_spe_conn_offload iscsi_conn_offload;
122 struct iscsi_conn_update_ramrod_params iscsi_conn_update;
Mintz, Yuvaldc4528e2017-06-02 08:58:33 +0300123 struct iscsi_spe_conn_mac_update iscsi_conn_mac_update;
Yuval Mintz7a9b6b82016-06-03 14:35:33 +0300124 struct iscsi_spe_conn_termination iscsi_conn_terminate;
125
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300126 struct vf_start_ramrod_data vf_start;
Yuval Mintz0b55e272016-05-11 16:36:15 +0300127 struct vf_stop_ramrod_data vf_stop;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200128};
129
130#define EQ_MAX_CREDIT 0xffffffff
131
132enum spq_priority {
133 QED_SPQ_PRIORITY_NORMAL,
134 QED_SPQ_PRIORITY_HIGH,
135};
136
137union qed_spq_req_comp {
138 struct qed_spq_comp_cb cb;
139 u64 *done_addr;
140};
141
142struct qed_spq_comp_done {
Manish Choprad5df7682016-10-14 05:19:23 -0400143 unsigned int done;
144 u8 fw_return_code;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200145};
146
147struct qed_spq_entry {
148 struct list_head list;
149
150 u8 flags;
151
152 /* HSI slow path element */
153 struct slow_path_element elem;
154
155 union ramrod_data ramrod;
156
157 enum spq_priority priority;
158
159 /* pending queue for this entry */
160 struct list_head *queue;
161
162 enum spq_mode comp_mode;
163 struct qed_spq_comp_cb comp_cb;
164 struct qed_spq_comp_done comp_done; /* SPQ_MODE_EBLOCK */
165};
166
167struct qed_eq {
168 struct qed_chain chain;
169 u8 eq_sb_index; /* index within the SB */
170 __le16 *p_fw_cons; /* ptr to index value */
171};
172
173struct qed_consq {
174 struct qed_chain chain;
175};
176
Michal Kalderon6c9e80e2017-06-20 16:00:06 +0300177typedef int
178(*qed_spq_async_comp_cb)(struct qed_hwfn *p_hwfn,
179 u8 opcode,
180 u16 echo,
181 union event_ring_data *data,
182 u8 fw_return_code);
183
184int
185qed_spq_register_async_cb(struct qed_hwfn *p_hwfn,
186 enum protocol_type protocol_id,
187 qed_spq_async_comp_cb cb);
188
189void
190qed_spq_unregister_async_cb(struct qed_hwfn *p_hwfn,
191 enum protocol_type protocol_id);
192
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200193struct qed_spq {
194 spinlock_t lock; /* SPQ lock */
195
196 struct list_head unlimited_pending;
197 struct list_head pending;
198 struct list_head completion_pending;
199 struct list_head free_pool;
200
201 struct qed_chain chain;
202
203 /* allocated dma-able memory for spq entries (+ramrod data) */
204 dma_addr_t p_phys;
205 struct qed_spq_entry *p_virt;
206
Tomer Tayar76a9a362015-12-07 06:25:57 -0500207#define SPQ_RING_SIZE \
208 (CORE_SPQE_PAGE_SIZE_BYTES / sizeof(struct slow_path_element))
209
210 /* Bitmap for handling out-of-order completions */
211 DECLARE_BITMAP(p_comp_bitmap, SPQ_RING_SIZE);
212 u8 comp_bitmap_idx;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200213
214 /* Statistics */
215 u32 unlimited_pending_count;
216 u32 normal_count;
217 u32 high_count;
218 u32 comp_sent_count;
219 u32 comp_count;
220
221 u32 cid;
Michal Kalderon6c9e80e2017-06-20 16:00:06 +0300222 qed_spq_async_comp_cb async_comp_cb[MAX_PROTOCOL_TYPE];
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200223};
224
225/**
226 * @brief qed_spq_post - Posts a Slow hwfn request to FW, or lacking that
227 * Pends it to the future list.
228 *
229 * @param p_hwfn
230 * @param p_req
231 *
232 * @return int
233 */
234int qed_spq_post(struct qed_hwfn *p_hwfn,
235 struct qed_spq_entry *p_ent,
236 u8 *fw_return_code);
237
238/**
239 * @brief qed_spq_allocate - Alloocates & initializes the SPQ and EQ.
240 *
241 * @param p_hwfn
242 *
243 * @return int
244 */
245int qed_spq_alloc(struct qed_hwfn *p_hwfn);
246
247/**
248 * @brief qed_spq_setup - Reset the SPQ to its start state.
249 *
250 * @param p_hwfn
251 */
252void qed_spq_setup(struct qed_hwfn *p_hwfn);
253
254/**
255 * @brief qed_spq_deallocate - Deallocates the given SPQ struct.
256 *
257 * @param p_hwfn
258 */
259void qed_spq_free(struct qed_hwfn *p_hwfn);
260
261/**
262 * @brief qed_spq_get_entry - Obtain an entrry from the spq
263 * free pool list.
264 *
265 *
266 *
267 * @param p_hwfn
268 * @param pp_ent
269 *
270 * @return int
271 */
272int
273qed_spq_get_entry(struct qed_hwfn *p_hwfn,
274 struct qed_spq_entry **pp_ent);
275
276/**
277 * @brief qed_spq_return_entry - Return an entry to spq free
278 * pool list
279 *
280 * @param p_hwfn
281 * @param p_ent
282 */
283void qed_spq_return_entry(struct qed_hwfn *p_hwfn,
284 struct qed_spq_entry *p_ent);
285/**
286 * @brief qed_eq_allocate - Allocates & initializes an EQ struct
287 *
288 * @param p_hwfn
289 * @param num_elem number of elements in the eq
290 *
Tomer Tayar3587cb82017-05-21 12:10:56 +0300291 * @return int
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200292 */
Tomer Tayar3587cb82017-05-21 12:10:56 +0300293int qed_eq_alloc(struct qed_hwfn *p_hwfn, u16 num_elem);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200294
295/**
Tomer Tayar3587cb82017-05-21 12:10:56 +0300296 * @brief qed_eq_setup - Reset the EQ to its start state.
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200297 *
298 * @param p_hwfn
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200299 */
Tomer Tayar3587cb82017-05-21 12:10:56 +0300300void qed_eq_setup(struct qed_hwfn *p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200301
302/**
Tomer Tayar3587cb82017-05-21 12:10:56 +0300303 * @brief qed_eq_free - deallocates the given EQ struct.
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200304 *
305 * @param p_hwfn
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200306 */
Tomer Tayar3587cb82017-05-21 12:10:56 +0300307void qed_eq_free(struct qed_hwfn *p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200308
309/**
310 * @brief qed_eq_prod_update - update the FW with default EQ producer
311 *
312 * @param p_hwfn
313 * @param prod
314 */
315void qed_eq_prod_update(struct qed_hwfn *p_hwfn,
316 u16 prod);
317
318/**
319 * @brief qed_eq_completion - Completes currently pending EQ elements
320 *
321 * @param p_hwfn
322 * @param cookie
323 *
324 * @return int
325 */
326int qed_eq_completion(struct qed_hwfn *p_hwfn,
327 void *cookie);
328
329/**
330 * @brief qed_spq_completion - Completes a single event
331 *
332 * @param p_hwfn
333 * @param echo - echo value from cookie (used for determining completion)
334 * @param p_data - data from cookie (used in callback function if applicable)
335 *
336 * @return int
337 */
338int qed_spq_completion(struct qed_hwfn *p_hwfn,
339 __le16 echo,
340 u8 fw_return_code,
341 union event_ring_data *p_data);
342
343/**
344 * @brief qed_spq_get_cid - Given p_hwfn, return cid for the hwfn's SPQ
345 *
346 * @param p_hwfn
347 *
348 * @return u32 - SPQ CID
349 */
350u32 qed_spq_get_cid(struct qed_hwfn *p_hwfn);
351
352/**
353 * @brief qed_consq_alloc - Allocates & initializes an ConsQ
354 * struct
355 *
356 * @param p_hwfn
357 *
Tomer Tayar3587cb82017-05-21 12:10:56 +0300358 * @return int
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200359 */
Tomer Tayar3587cb82017-05-21 12:10:56 +0300360int qed_consq_alloc(struct qed_hwfn *p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200361
362/**
Tomer Tayar3587cb82017-05-21 12:10:56 +0300363 * @brief qed_consq_setup - Reset the ConsQ to its start state.
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200364 *
365 * @param p_hwfn
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200366 */
Tomer Tayar3587cb82017-05-21 12:10:56 +0300367void qed_consq_setup(struct qed_hwfn *p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200368
369/**
370 * @brief qed_consq_free - deallocates the given ConsQ struct.
371 *
372 * @param p_hwfn
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200373 */
Tomer Tayar3587cb82017-05-21 12:10:56 +0300374void qed_consq_free(struct qed_hwfn *p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200375
376/**
377 * @file
378 *
379 * @brief Slow-hwfn low-level commands (Ramrods) function definitions.
380 */
381
382#define QED_SP_EQ_COMPLETION 0x01
383#define QED_SP_CQE_COMPLETION 0x02
384
Yuval Mintz06f56b82016-02-21 11:40:09 +0200385struct qed_sp_init_data {
386 u32 cid;
387 u16 opaque_fid;
388
389 /* Information regarding operation upon sending & completion */
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200390 enum spq_mode comp_mode;
391 struct qed_spq_comp_cb *p_comp_data;
392};
393
394int qed_sp_init_request(struct qed_hwfn *p_hwfn,
395 struct qed_spq_entry **pp_ent,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200396 u8 cmd,
397 u8 protocol,
Yuval Mintz06f56b82016-02-21 11:40:09 +0200398 struct qed_sp_init_data *p_data);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200399
400/**
401 * @brief qed_sp_pf_start - PF Function Start Ramrod
402 *
403 * This ramrod is sent to initialize a physical function (PF). It will
404 * configure the function related parameters and write its completion to the
405 * event ring specified in the parameters.
406 *
407 * Ramrods complete on the common event ring for the PF. This ring is
408 * allocated by the driver on host memory and its parameters are written
409 * to the internal RAM of the UStorm by the Function Start Ramrod.
410 *
411 * @param p_hwfn
Manish Chopra4f646752017-05-23 09:41:20 +0300412 * @param p_ptt
Manish Chopra464f6642016-04-14 01:38:29 -0400413 * @param p_tunn
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200414 * @param mode
Yuval Mintz831bfb0e2016-05-11 16:36:25 +0300415 * @param allow_npar_tx_switch
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200416 *
417 * @return int
418 */
419
420int qed_sp_pf_start(struct qed_hwfn *p_hwfn,
Manish Chopra4f646752017-05-23 09:41:20 +0300421 struct qed_ptt *p_ptt,
Chopra, Manish199684302017-04-24 10:00:44 -0700422 struct qed_tunnel_info *p_tunn,
Yuval Mintz831bfb0e2016-05-11 16:36:25 +0300423 enum qed_mf_mode mode, bool allow_npar_tx_switch);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200424
425/**
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400426 * @brief qed_sp_pf_update - PF Function Update Ramrod
427 *
428 * This ramrod updates function-related parameters. Every parameter can be
429 * updated independently, according to configuration flags.
430 *
431 * @param p_hwfn
432 *
433 * @return int
434 */
435
436int qed_sp_pf_update(struct qed_hwfn *p_hwfn);
437
438/**
Mintz, Yuval2a351fd92017-05-29 09:53:09 +0300439 * @brief qed_sp_pf_update_stag - Update firmware of new outer tag
440 *
441 * @param p_hwfn
442 *
443 * @return int
444 */
445int qed_sp_pf_update_stag(struct qed_hwfn *p_hwfn);
446
447/**
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200448 * @brief qed_sp_pf_stop - PF Function Stop Ramrod
449 *
450 * This ramrod is sent to close a Physical Function (PF). It is the last ramrod
451 * sent and the last completion written to the PFs Event Ring. This ramrod also
452 * deletes the context for the Slowhwfn connection on this PF.
453 *
454 * @note Not required for first packet.
455 *
456 * @param p_hwfn
457 *
458 * @return int
459 */
460
461int qed_sp_pf_stop(struct qed_hwfn *p_hwfn);
462
Manish Chopra464f6642016-04-14 01:38:29 -0400463int qed_sp_pf_update_tunn_cfg(struct qed_hwfn *p_hwfn,
Manish Chopra4f646752017-05-23 09:41:20 +0300464 struct qed_ptt *p_ptt,
Chopra, Manish199684302017-04-24 10:00:44 -0700465 struct qed_tunnel_info *p_tunn,
Manish Chopra464f6642016-04-14 01:38:29 -0400466 enum spq_mode comp_mode,
467 struct qed_spq_comp_cb *p_comp_data);
Sudarsana Reddy Kalluru03dc76c2016-04-28 20:20:52 -0400468/**
469 * @brief qed_sp_heartbeat_ramrod - Send empty Ramrod
470 *
471 * @param p_hwfn
472 *
473 * @return int
474 */
475
476int qed_sp_heartbeat_ramrod(struct qed_hwfn *p_hwfn);
477
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200478#endif