1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
45 enum spq_mode {
46 QED_SPQ_MODE_BLOCK,
47 QED_SPQ_MODE_CB,
48 QED_SPQ_MODE_EBLOCK,
49 };
50
51 struct 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
61
62
63
64
65
66
67
68 int qed_eth_cqe_completion(struct qed_hwfn *p_hwfn,
69 struct eth_slow_path_rx_cqe *cqe);
70
71
72
73
74
75
76
77 union 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
137 enum spq_priority {
138 QED_SPQ_PRIORITY_NORMAL,
139 QED_SPQ_PRIORITY_HIGH,
140 };
141
142 union qed_spq_req_comp {
143 struct qed_spq_comp_cb cb;
144 u64 *done_addr;
145 };
146
147 struct qed_spq_comp_done {
148 unsigned int done;
149 u8 fw_return_code;
150 };
151
152 struct qed_spq_entry {
153 struct list_head list;
154
155 u8 flags;
156
157
158 struct slow_path_element elem;
159
160 union ramrod_data ramrod;
161
162 enum spq_priority priority;
163
164
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;
170
171
172 struct qed_spq_entry *post_ent;
173 };
174
175 struct qed_eq {
176 struct qed_chain chain;
177 u8 eq_sb_index;
178 __le16 *p_fw_cons;
179 };
180
181 struct qed_consq {
182 struct qed_chain chain;
183 };
184
185 typedef 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
192 int
193 qed_spq_register_async_cb(struct qed_hwfn *p_hwfn,
194 enum protocol_type protocol_id,
195 qed_spq_async_comp_cb cb);
196
197 void
198 qed_spq_unregister_async_cb(struct qed_hwfn *p_hwfn,
199 enum protocol_type protocol_id);
200
201 struct qed_spq {
202 spinlock_t 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
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
219 DECLARE_BITMAP(p_comp_bitmap, SPQ_RING_SIZE);
220 u8 comp_bitmap_idx;
221
222
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
237
238
239
240
241
242
243
244 int qed_spq_post(struct qed_hwfn *p_hwfn,
245 struct qed_spq_entry *p_ent,
246 u8 *fw_return_code);
247
248
249
250
251
252
253
254
255 int qed_spq_alloc(struct qed_hwfn *p_hwfn);
256
257
258
259
260
261
262 void qed_spq_setup(struct qed_hwfn *p_hwfn);
263
264
265
266
267
268
269 void qed_spq_free(struct qed_hwfn *p_hwfn);
270
271
272
273
274
275
276
277
278
279
280
281
282 int
283 qed_spq_get_entry(struct qed_hwfn *p_hwfn,
284 struct qed_spq_entry **pp_ent);
285
286
287
288
289
290
291
292
293 void qed_spq_return_entry(struct qed_hwfn *p_hwfn,
294 struct qed_spq_entry *p_ent);
295
296
297
298
299
300
301
302
303 int qed_eq_alloc(struct qed_hwfn *p_hwfn, u16 num_elem);
304
305
306
307
308
309
310 void qed_eq_setup(struct qed_hwfn *p_hwfn);
311
312
313
314
315
316
317 void qed_eq_free(struct qed_hwfn *p_hwfn);
318
319
320
321
322
323
324
325 void qed_eq_prod_update(struct qed_hwfn *p_hwfn,
326 u16 prod);
327
328
329
330
331
332
333
334
335
336 int qed_eq_completion(struct qed_hwfn *p_hwfn,
337 void *cookie);
338
339
340
341
342
343
344
345
346
347
348 int 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
355
356
357
358
359
360 u32 qed_spq_get_cid(struct qed_hwfn *p_hwfn);
361
362
363
364
365
366
367
368
369
370 int qed_consq_alloc(struct qed_hwfn *p_hwfn);
371
372
373
374
375
376
377 void qed_consq_setup(struct qed_hwfn *p_hwfn);
378
379
380
381
382
383
384 void qed_consq_free(struct qed_hwfn *p_hwfn);
385 int qed_spq_pend_post(struct qed_hwfn *p_hwfn);
386
387
388
389
390
391
392
393 #define QED_SP_EQ_COMPLETION 0x01
394 #define QED_SP_CQE_COMPLETION 0x02
395
396 struct qed_sp_init_data {
397 u32 cid;
398 u16 opaque_fid;
399
400
401 enum spq_mode comp_mode;
402 struct qed_spq_comp_cb *p_comp_data;
403 };
404
405
406
407
408
409
410
411
412
413 void qed_sp_destroy_request(struct qed_hwfn *p_hwfn,
414 struct qed_spq_entry *p_ent);
415
416 int 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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441 int 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
448
449
450
451
452
453
454
455
456
457 int qed_sp_pf_update(struct qed_hwfn *p_hwfn);
458
459
460
461
462
463
464
465
466 int qed_sp_pf_update_stag(struct qed_hwfn *p_hwfn);
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489 int qed_sp_pf_update_ufp(struct qed_hwfn *p_hwfn);
490
491 int qed_sp_pf_stop(struct qed_hwfn *p_hwfn);
492
493 int 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
500
501
502
503
504
505
506 int qed_sp_heartbeat_ramrod(struct qed_hwfn *p_hwfn);
507
508 #endif