Linux Audio

Check our new training course

Loading...
v6.8
  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.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  5 */
  6
  7#ifndef _QED_SP_H
  8#define _QED_SP_H
  9
 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>
 16#include "qed.h"
 17#include "qed_hsi.h"
 18
 19enum spq_mode {
 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 */
 23};
 24
 25struct qed_spq_comp_cb {
 26	void	(*function)(struct qed_hwfn *p_hwfn,
 27			    void *cookie,
 28			    union event_ring_data *data,
 29			    u8 fw_return_code);
 30	void	*cookie;
 31};
 32
 33/**
 34 * qed_eth_cqe_completion(): handles the completion of a
 35 *                           ramrod on the cqe ring.
 36 *
 37 * @p_hwfn: HW device data.
 38 * @cqe: CQE.
 39 *
 40 * Return: Int.
 41 */
 42int qed_eth_cqe_completion(struct qed_hwfn *p_hwfn,
 43			   struct eth_slow_path_rx_cqe *cqe);
 44
 45 /*  QED Slow-hwfn queue interface */
 
 
 
 
 
 46union ramrod_data {
 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;
 63
 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;
 91
 
 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;
 97
 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;
102
103	struct vf_start_ramrod_data vf_start;
104	struct vf_stop_ramrod_data vf_stop;
105};
106
107#define EQ_MAX_CREDIT   0xffffffff
108
109enum spq_priority {
110	QED_SPQ_PRIORITY_NORMAL,
111	QED_SPQ_PRIORITY_HIGH,
112};
113
114union qed_spq_req_comp {
115	struct qed_spq_comp_cb	cb;
116	u64			*done_addr;
117};
118
119struct qed_spq_comp_done {
120	unsigned int	done;
121	u8		fw_return_code;
122};
123
124struct qed_spq_entry {
125	struct list_head		list;
126
127	u8				flags;
128
129	/* HSI slow path element */
130	struct slow_path_element	elem;
131
132	union ramrod_data		ramrod;
133
134	enum spq_priority		priority;
135
136	/* pending queue for this entry */
137	struct list_head		*queue;
138
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 */
142
143	/* Posted entry for unlimited list entry in EBLOCK mode */
144	struct qed_spq_entry		*post_ent;
145};
146
147struct qed_eq {
148	struct qed_chain	chain;
149	u8			eq_sb_index;    /* index within the SB */
150	__le16			*p_fw_cons;     /* ptr to index value */
151};
152
153struct qed_consq {
154	struct qed_chain chain;
155};
156
157typedef int (*qed_spq_async_comp_cb)(struct qed_hwfn *p_hwfn, u8 opcode,
158				     __le16 echo, union event_ring_data *data,
159				     u8 fw_return_code);
 
 
 
160
161int
162qed_spq_register_async_cb(struct qed_hwfn *p_hwfn,
163			  enum protocol_type protocol_id,
164			  qed_spq_async_comp_cb cb);
165
166void
167qed_spq_unregister_async_cb(struct qed_hwfn *p_hwfn,
168			    enum protocol_type protocol_id);
169
170struct qed_spq {
171	spinlock_t		lock; /* SPQ lock */
172
173	struct list_head	unlimited_pending;
174	struct list_head	pending;
175	struct list_head	completion_pending;
176	struct list_head	free_pool;
177
178	struct qed_chain	chain;
179
180	/* allocated dma-able memory for spq entries (+ramrod data) */
181	dma_addr_t		p_phys;
182	struct qed_spq_entry	*p_virt;
183
184#define SPQ_RING_SIZE \
185	(CORE_SPQE_PAGE_SIZE_BYTES / sizeof(struct slow_path_element))
186
187	/* Bitmap for handling out-of-order completions */
188	DECLARE_BITMAP(p_comp_bitmap, SPQ_RING_SIZE);
189	u8			comp_bitmap_idx;
190
191	/* Statistics */
192	u32			unlimited_pending_count;
193	u32			normal_count;
194	u32			high_count;
195	u32			comp_sent_count;
196	u32			comp_count;
197
198	u32			cid;
199	u32			db_addr_offset;
200	struct core_db_data	db_data;
201	qed_spq_async_comp_cb	async_comp_cb[MAX_PROTOCOL_TYPE];
202};
203
204/**
205 * qed_spq_post(): Posts a Slow hwfn request to FW, or lacking that
206 *                 Pends it to the future list.
207 *
208 * @p_hwfn: HW device data.
209 * @p_ent: Ent.
210 * @fw_return_code: Return code from firmware.
211 *
212 * Return: Int.
213 */
214int qed_spq_post(struct qed_hwfn *p_hwfn,
215		 struct qed_spq_entry *p_ent,
216		 u8 *fw_return_code);
217
218/**
219 * qed_spq_alloc(): Alloocates & initializes the SPQ and EQ.
220 *
221 * @p_hwfn: HW device data.
222 *
223 * Return: Int.
224 */
225int qed_spq_alloc(struct qed_hwfn *p_hwfn);
226
227/**
228 * qed_spq_setup(): Reset the SPQ to its start state.
229 *
230 * @p_hwfn: HW device data.
231 *
232 * Return: Void.
233 */
234void qed_spq_setup(struct qed_hwfn *p_hwfn);
235
236/**
237 * qed_spq_free(): Deallocates the given SPQ struct.
238 *
239 * @p_hwfn: HW device data.
240 *
241 * Return: Void.
242 */
243void qed_spq_free(struct qed_hwfn *p_hwfn);
244
245/**
246 * qed_spq_get_entry(): Obtain an entrry from the spq
247 *                      free pool list.
 
248 *
249 * @p_hwfn: HW device data.
250 * @pp_ent: PP ENT.
251 *
252 * Return: Int.
 
 
 
253 */
254int
255qed_spq_get_entry(struct qed_hwfn *p_hwfn,
256		  struct qed_spq_entry **pp_ent);
257
258/**
259 * qed_spq_return_entry(): Return an entry to spq free pool list.
260 *
261 * @p_hwfn: HW device data.
262 * @p_ent: P ENT.
263 *
264 * Return: Void.
 
265 */
266void qed_spq_return_entry(struct qed_hwfn *p_hwfn,
267			  struct qed_spq_entry *p_ent);
268/**
269 * qed_eq_alloc(): Allocates & initializes an EQ struct.
270 *
271 * @p_hwfn: HW device data.
272 * @num_elem: number of elements in the eq.
273 *
274 * Return: Int.
275 */
276int qed_eq_alloc(struct qed_hwfn *p_hwfn, u16 num_elem);
277
278/**
279 * qed_eq_setup(): Reset the EQ to its start state.
280 *
281 * @p_hwfn: HW device data.
282 *
283 * Return: Void.
284 */
285void qed_eq_setup(struct qed_hwfn *p_hwfn);
286
287/**
288 * qed_eq_free(): deallocates the given EQ struct.
289 *
290 * @p_hwfn: HW device data.
291 *
292 * Return: Void.
293 */
294void qed_eq_free(struct qed_hwfn *p_hwfn);
295
296/**
297 * qed_eq_prod_update(): update the FW with default EQ producer.
298 *
299 * @p_hwfn: HW device data.
300 * @prod: Prod.
301 *
302 * Return: Void.
303 */
304void qed_eq_prod_update(struct qed_hwfn *p_hwfn,
305			u16 prod);
306
307/**
308 * qed_eq_completion(): Completes currently pending EQ elements.
309 *
310 * @p_hwfn: HW device data.
311 * @cookie: Cookie.
312 *
313 * Return: Int.
314 */
315int qed_eq_completion(struct qed_hwfn *p_hwfn,
316		      void *cookie);
317
318/**
319 * qed_spq_completion(): Completes a single event.
320 *
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).
325 *
326 * Return: Int.
327 */
328int qed_spq_completion(struct qed_hwfn *p_hwfn,
329		       __le16 echo,
330		       u8 fw_return_code,
331		       union event_ring_data *p_data);
332
333/**
334 * qed_spq_get_cid(): Given p_hwfn, return cid for the hwfn's SPQ.
335 *
336 * @p_hwfn: HW device data.
337 *
338 * Return: u32 - SPQ CID.
339 */
340u32 qed_spq_get_cid(struct qed_hwfn *p_hwfn);
341
342/**
343 * qed_consq_alloc(): Allocates & initializes an ConsQ struct.
 
344 *
345 * @p_hwfn: HW device data.
346 *
347 * Return: Int.
348 */
349int qed_consq_alloc(struct qed_hwfn *p_hwfn);
350
351/**
352 * qed_consq_setup(): Reset the ConsQ to its start state.
353 *
354 * @p_hwfn: HW device data.
355 *
356 * Return Void.
357 */
358void qed_consq_setup(struct qed_hwfn *p_hwfn);
359
360/**
361 * qed_consq_free(): deallocates the given ConsQ struct.
362 *
363 * @p_hwfn: HW device data.
364 *
365 * Return Void.
366 */
367void qed_consq_free(struct qed_hwfn *p_hwfn);
368int qed_spq_pend_post(struct qed_hwfn *p_hwfn);
369
370/* Slow-hwfn low-level commands (Ramrods) function definitions. */
 
 
 
 
371
372#define QED_SP_EQ_COMPLETION  0x01
373#define QED_SP_CQE_COMPLETION 0x02
374
375struct qed_sp_init_data {
376	u32			cid;
377	u16			opaque_fid;
378
379	/* Information regarding operation upon sending & completion */
380	enum spq_mode		comp_mode;
381	struct qed_spq_comp_cb *p_comp_data;
382};
383
384/**
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.
389 *
390 * @p_hwfn: HW device data.
391 * @p_ent: Ent.
392 *
393 * Return: Void.
 
394 */
395void qed_sp_destroy_request(struct qed_hwfn *p_hwfn,
396			    struct qed_spq_entry *p_ent);
397
398int qed_sp_init_request(struct qed_hwfn *p_hwfn,
399			struct qed_spq_entry **pp_ent,
400			u8 cmd,
401			u8 protocol,
402			struct qed_sp_init_data *p_data);
403
404/**
405 * qed_sp_pf_start(): PF Function Start Ramrod.
406 *
407 * @p_hwfn: HW device data.
408 * @p_ptt: P_ptt.
409 * @p_tunn: P_tunn.
410 * @allow_npar_tx_switch: Allow NPAR TX Switch.
411 *
412 * Return: Int.
413 *
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.
417 *
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.
421 *
 
 
 
 
 
 
422 */
423
424int 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);
428
429/**
430 * qed_sp_pf_update(): PF Function Update Ramrod.
431 *
432 * @p_hwfn: HW device data.
433 *
434 * Return: Int.
435 *
436 * This ramrod updates function-related parameters. Every parameter can be
437 * updated independently, according to configuration flags.
 
 
 
 
438 */
439
440int qed_sp_pf_update(struct qed_hwfn *p_hwfn);
441
442/**
443 * qed_sp_pf_update_stag(): Update firmware of new outer tag.
444 *
445 * @p_hwfn: HW device data.
446 *
447 * Return: Int.
448 */
449int qed_sp_pf_update_stag(struct qed_hwfn *p_hwfn);
450
451/**
452 * qed_sp_pf_update_ufp(): PF ufp update Ramrod.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
453 *
454 * @p_hwfn: HW device data.
455 *
456 * Return: Int.
457 */
458int qed_sp_pf_update_ufp(struct qed_hwfn *p_hwfn);
459
460int qed_sp_pf_stop(struct qed_hwfn *p_hwfn);
461
462int 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);
467/**
468 * qed_sp_heartbeat_ramrod(): Send empty Ramrod.
469 *
470 * @p_hwfn: HW device data.
471 *
472 * Return: Int.
473 */
474
475int qed_sp_heartbeat_ramrod(struct qed_hwfn *p_hwfn);
476
477#endif
v5.4
 
  1/* QLogic qed NIC Driver
  2 * Copyright (c) 2015-2017  QLogic Corporation
  3 *
  4 * 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.
 31 */
 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
 59/**
 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
 77union ramrod_data {
 78	struct pf_start_ramrod_data pf_start;
 79	struct pf_update_ramrod_data pf_update;
 80	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;
 87	struct rx_update_gft_filter_data rx_update_gft;
 88	struct vport_update_ramrod_data vport_update;
 89	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;
 93	struct vport_filter_update_ramrod_data vport_filter_update;
 94
 95	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 roce_init_func_ramrod_data roce_init_func;
108	struct rdma_create_cq_ramrod_data rdma_create_cq;
109	struct rdma_destroy_cq_ramrod_data rdma_destroy_cq;
110	struct rdma_srq_create_ramrod_data rdma_create_srq;
111	struct rdma_srq_destroy_ramrod_data rdma_destroy_srq;
112	struct rdma_srq_modify_ramrod_data rdma_modify_srq;
113	struct iwarp_create_qp_ramrod_data iwarp_create_qp;
114	struct iwarp_tcp_offload_ramrod_data iwarp_tcp_offload;
115	struct iwarp_mpa_offload_ramrod_data iwarp_mpa_offload;
116	struct iwarp_modify_qp_ramrod_data iwarp_modify_qp;
117	struct iwarp_init_func_ramrod_data iwarp_init_func;
118	struct fcoe_init_ramrod_params fcoe_init;
119	struct fcoe_conn_offload_ramrod_params fcoe_conn_ofld;
120	struct fcoe_conn_terminate_ramrod_params fcoe_conn_terminate;
121	struct fcoe_stat_ramrod_params fcoe_stat;
122
123	struct iscsi_slow_path_hdr iscsi_empty;
124	struct iscsi_init_ramrod_params iscsi_init;
125	struct iscsi_spe_func_dstry iscsi_destroy;
126	struct iscsi_spe_conn_offload iscsi_conn_offload;
127	struct iscsi_conn_update_ramrod_params iscsi_conn_update;
128	struct iscsi_spe_conn_mac_update iscsi_conn_mac_update;
129	struct iscsi_spe_conn_termination iscsi_conn_terminate;
130
 
 
 
 
 
131	struct vf_start_ramrod_data vf_start;
132	struct vf_stop_ramrod_data vf_stop;
133};
134
135#define EQ_MAX_CREDIT   0xffffffff
136
137enum spq_priority {
138	QED_SPQ_PRIORITY_NORMAL,
139	QED_SPQ_PRIORITY_HIGH,
140};
141
142union qed_spq_req_comp {
143	struct qed_spq_comp_cb	cb;
144	u64			*done_addr;
145};
146
147struct qed_spq_comp_done {
148	unsigned int	done;
149	u8		fw_return_code;
150};
151
152struct qed_spq_entry {
153	struct list_head		list;
154
155	u8				flags;
156
157	/* HSI slow path element */
158	struct slow_path_element	elem;
159
160	union ramrod_data		ramrod;
161
162	enum spq_priority		priority;
163
164	/* pending queue for this entry */
165	struct list_head		*queue;
166
167	enum spq_mode			comp_mode;
168	struct qed_spq_comp_cb		comp_cb;
169	struct qed_spq_comp_done	comp_done; /* SPQ_MODE_EBLOCK */
170
171	/* Posted entry for unlimited list entry in EBLOCK mode */
172	struct qed_spq_entry		*post_ent;
173};
174
175struct qed_eq {
176	struct qed_chain	chain;
177	u8			eq_sb_index;    /* index within the SB */
178	__le16			*p_fw_cons;     /* ptr to index value */
179};
180
181struct qed_consq {
182	struct qed_chain chain;
183};
184
185typedef int
186(*qed_spq_async_comp_cb)(struct qed_hwfn *p_hwfn,
187			 u8 opcode,
188			 u16 echo,
189			 union event_ring_data *data,
190			 u8 fw_return_code);
191
192int
193qed_spq_register_async_cb(struct qed_hwfn *p_hwfn,
194			  enum protocol_type protocol_id,
195			  qed_spq_async_comp_cb cb);
196
197void
198qed_spq_unregister_async_cb(struct qed_hwfn *p_hwfn,
199			    enum protocol_type protocol_id);
200
201struct qed_spq {
202	spinlock_t		lock; /* SPQ lock */
203
204	struct list_head	unlimited_pending;
205	struct list_head	pending;
206	struct list_head	completion_pending;
207	struct list_head	free_pool;
208
209	struct qed_chain	chain;
210
211	/* allocated dma-able memory for spq entries (+ramrod data) */
212	dma_addr_t		p_phys;
213	struct qed_spq_entry	*p_virt;
214
215#define SPQ_RING_SIZE \
216	(CORE_SPQE_PAGE_SIZE_BYTES / sizeof(struct slow_path_element))
217
218	/* Bitmap for handling out-of-order completions */
219	DECLARE_BITMAP(p_comp_bitmap, SPQ_RING_SIZE);
220	u8			comp_bitmap_idx;
221
222	/* Statistics */
223	u32			unlimited_pending_count;
224	u32			normal_count;
225	u32			high_count;
226	u32			comp_sent_count;
227	u32			comp_count;
228
229	u32			cid;
230	u32			db_addr_offset;
231	struct core_db_data	db_data;
232	qed_spq_async_comp_cb	async_comp_cb[MAX_PROTOCOL_TYPE];
233};
234
235/**
236 * @brief qed_spq_post - Posts a Slow hwfn request to FW, or lacking that
237 *        Pends it to the future list.
238 *
239 * @param p_hwfn
240 * @param p_req
 
241 *
242 * @return int
243 */
244int qed_spq_post(struct qed_hwfn *p_hwfn,
245		 struct qed_spq_entry *p_ent,
246		 u8 *fw_return_code);
247
248/**
249 * @brief qed_spq_allocate - Alloocates & initializes the SPQ and EQ.
250 *
251 * @param p_hwfn
252 *
253 * @return int
254 */
255int qed_spq_alloc(struct qed_hwfn *p_hwfn);
256
257/**
258 * @brief qed_spq_setup - Reset the SPQ to its start state.
 
 
259 *
260 * @param p_hwfn
261 */
262void qed_spq_setup(struct qed_hwfn *p_hwfn);
263
264/**
265 * @brief qed_spq_deallocate - Deallocates the given SPQ struct.
266 *
267 * @param p_hwfn
 
 
268 */
269void qed_spq_free(struct qed_hwfn *p_hwfn);
270
271/**
272 * @brief qed_spq_get_entry - Obtain an entrry from the spq
273 *        free pool list.
274 *
275 *
 
 
276 *
277 * @param p_hwfn
278 * @param pp_ent
279 *
280 * @return int
281 */
282int
283qed_spq_get_entry(struct qed_hwfn *p_hwfn,
284		  struct qed_spq_entry **pp_ent);
285
286/**
287 * @brief qed_spq_return_entry - Return an entry to spq free
288 *                                 pool list
 
 
289 *
290 * @param p_hwfn
291 * @param p_ent
292 */
293void qed_spq_return_entry(struct qed_hwfn *p_hwfn,
294			  struct qed_spq_entry *p_ent);
295/**
296 * @brief qed_eq_allocate - Allocates & initializes an EQ struct
297 *
298 * @param p_hwfn
299 * @param num_elem number of elements in the eq
300 *
301 * @return int
302 */
303int qed_eq_alloc(struct qed_hwfn *p_hwfn, u16 num_elem);
304
305/**
306 * @brief qed_eq_setup - Reset the EQ to its start state.
307 *
308 * @param p_hwfn
 
 
309 */
310void qed_eq_setup(struct qed_hwfn *p_hwfn);
311
312/**
313 * @brief qed_eq_free - deallocates the given EQ struct.
 
 
314 *
315 * @param p_hwfn
316 */
317void qed_eq_free(struct qed_hwfn *p_hwfn);
318
319/**
320 * @brief qed_eq_prod_update - update the FW with default EQ producer
321 *
322 * @param p_hwfn
323 * @param prod
 
 
324 */
325void qed_eq_prod_update(struct qed_hwfn *p_hwfn,
326			u16 prod);
327
328/**
329 * @brief qed_eq_completion - Completes currently pending EQ elements
330 *
331 * @param p_hwfn
332 * @param cookie
333 *
334 * @return int
335 */
336int qed_eq_completion(struct qed_hwfn *p_hwfn,
337		      void *cookie);
338
339/**
340 * @brief qed_spq_completion - Completes a single event
341 *
342 * @param p_hwfn
343 * @param echo - echo value from cookie (used for determining completion)
344 * @param p_data - data from cookie (used in callback function if applicable)
 
345 *
346 * @return int
347 */
348int qed_spq_completion(struct qed_hwfn *p_hwfn,
349		       __le16 echo,
350		       u8 fw_return_code,
351		       union event_ring_data *p_data);
352
353/**
354 * @brief qed_spq_get_cid - Given p_hwfn, return cid for the hwfn's SPQ
355 *
356 * @param p_hwfn
357 *
358 * @return u32 - SPQ CID
359 */
360u32 qed_spq_get_cid(struct qed_hwfn *p_hwfn);
361
362/**
363 * @brief qed_consq_alloc - Allocates & initializes an ConsQ
364 *        struct
365 *
366 * @param p_hwfn
367 *
368 * @return int
369 */
370int qed_consq_alloc(struct qed_hwfn *p_hwfn);
371
372/**
373 * @brief qed_consq_setup - Reset the ConsQ to its start state.
 
 
374 *
375 * @param p_hwfn
376 */
377void qed_consq_setup(struct qed_hwfn *p_hwfn);
378
379/**
380 * @brief qed_consq_free - deallocates the given ConsQ struct.
381 *
382 * @param p_hwfn
 
 
383 */
384void qed_consq_free(struct qed_hwfn *p_hwfn);
385int qed_spq_pend_post(struct qed_hwfn *p_hwfn);
386
387/**
388 * @file
389 *
390 * @brief Slow-hwfn low-level commands (Ramrods) function definitions.
391 */
392
393#define QED_SP_EQ_COMPLETION  0x01
394#define QED_SP_CQE_COMPLETION 0x02
395
396struct qed_sp_init_data {
397	u32			cid;
398	u16			opaque_fid;
399
400	/* Information regarding operation upon sending & completion */
401	enum spq_mode		comp_mode;
402	struct qed_spq_comp_cb *p_comp_data;
403};
404
405/**
406 * @brief Returns a SPQ entry to the pool / frees the entry if allocated.
407 *        Should be called on in error flows after initializing the SPQ entry
408 *        and before posting it.
 
 
 
 
409 *
410 * @param p_hwfn
411 * @param p_ent
412 */
413void qed_sp_destroy_request(struct qed_hwfn *p_hwfn,
414			    struct qed_spq_entry *p_ent);
415
416int qed_sp_init_request(struct qed_hwfn *p_hwfn,
417			struct qed_spq_entry **pp_ent,
418			u8 cmd,
419			u8 protocol,
420			struct qed_sp_init_data *p_data);
421
422/**
423 * @brief qed_sp_pf_start - PF Function Start Ramrod
 
 
 
 
 
 
 
424 *
425 * This ramrod is sent to initialize a physical function (PF). It will
426 * configure the function related parameters and write its completion to the
427 * event ring specified in the parameters.
428 *
429 * Ramrods complete on the common event ring for the PF. This ring is
430 * allocated by the driver on host memory and its parameters are written
431 * to the internal RAM of the UStorm by the Function Start Ramrod.
432 *
433 * @param p_hwfn
434 * @param p_ptt
435 * @param p_tunn
436 * @param allow_npar_tx_switch
437 *
438 * @return int
439 */
440
441int qed_sp_pf_start(struct qed_hwfn *p_hwfn,
442		    struct qed_ptt *p_ptt,
443		    struct qed_tunnel_info *p_tunn,
444		    bool allow_npar_tx_switch);
445
446/**
447 * @brief qed_sp_pf_update - PF Function Update Ramrod
 
 
 
 
448 *
449 * This ramrod updates function-related parameters. Every parameter can be
450 * updated independently, according to configuration flags.
451 *
452 * @param p_hwfn
453 *
454 * @return int
455 */
456
457int qed_sp_pf_update(struct qed_hwfn *p_hwfn);
458
459/**
460 * @brief qed_sp_pf_update_stag - Update firmware of new outer tag
461 *
462 * @param p_hwfn
463 *
464 * @return int
465 */
466int qed_sp_pf_update_stag(struct qed_hwfn *p_hwfn);
467
468/**
469 * @brief qed_sp_pf_stop - PF Function Stop Ramrod
470 *
471 * This ramrod is sent to close a Physical Function (PF). It is the last ramrod
472 * sent and the last completion written to the PFs Event Ring. This ramrod also
473 * deletes the context for the Slowhwfn connection on this PF.
474 *
475 * @note Not required for first packet.
476 *
477 * @param p_hwfn
478 *
479 * @return int
480 */
481
482/**
483 * @brief qed_sp_pf_update_ufp - PF ufp update Ramrod
484 *
485 * @param p_hwfn
486 *
487 * @return int
488 */
489int qed_sp_pf_update_ufp(struct qed_hwfn *p_hwfn);
490
491int qed_sp_pf_stop(struct qed_hwfn *p_hwfn);
492
493int qed_sp_pf_update_tunn_cfg(struct qed_hwfn *p_hwfn,
494			      struct qed_ptt *p_ptt,
495			      struct qed_tunnel_info *p_tunn,
496			      enum spq_mode comp_mode,
497			      struct qed_spq_comp_cb *p_comp_data);
498/**
499 * @brief qed_sp_heartbeat_ramrod - Send empty Ramrod
500 *
501 * @param p_hwfn
502 *
503 * @return int
504 */
505
506int qed_sp_heartbeat_ramrod(struct qed_hwfn *p_hwfn);
507
508#endif