Merge branches 'for-4.6/upstream-fixes', 'for-4.7/asus', 'for-4.7/hidraw' and 'for...
[cascardo/linux.git] / drivers / infiniband / hw / i40iw / i40iw_type.h
1 /*******************************************************************************
2 *
3 * Copyright (c) 2015-2016 Intel Corporation.  All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses.  You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenFabrics.org BSD license below:
10 *
11 *   Redistribution and use in source and binary forms, with or
12 *   without modification, are permitted provided that the following
13 *   conditions are met:
14 *
15 *    - Redistributions of source code must retain the above
16 *       copyright notice, this list of conditions and the following
17 *       disclaimer.
18 *
19 *    - Redistributions in binary form must reproduce the above
20 *       copyright notice, this list of conditions and the following
21 *       disclaimer in the documentation and/or other materials
22 *       provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 *
33 *******************************************************************************/
34
35 #ifndef I40IW_TYPE_H
36 #define I40IW_TYPE_H
37 #include "i40iw_user.h"
38 #include "i40iw_hmc.h"
39 #include "i40iw_vf.h"
40 #include "i40iw_virtchnl.h"
41
42 struct i40iw_cqp_sq_wqe {
43         u64 buf[I40IW_CQP_WQE_SIZE];
44 };
45
46 struct i40iw_sc_aeqe {
47         u64 buf[I40IW_AEQE_SIZE];
48 };
49
50 struct i40iw_ceqe {
51         u64 buf[I40IW_CEQE_SIZE];
52 };
53
54 struct i40iw_cqp_ctx {
55         u64 buf[I40IW_CQP_CTX_SIZE];
56 };
57
58 struct i40iw_cq_shadow_area {
59         u64 buf[I40IW_SHADOW_AREA_SIZE];
60 };
61
62 struct i40iw_sc_dev;
63 struct i40iw_hmc_info;
64 struct i40iw_dev_pestat;
65
66 struct i40iw_cqp_ops;
67 struct i40iw_ccq_ops;
68 struct i40iw_ceq_ops;
69 struct i40iw_aeq_ops;
70 struct i40iw_mr_ops;
71 struct i40iw_cqp_misc_ops;
72 struct i40iw_pd_ops;
73 struct i40iw_priv_qp_ops;
74 struct i40iw_priv_cq_ops;
75 struct i40iw_hmc_ops;
76
77 enum i40iw_resource_indicator_type {
78         I40IW_RSRC_INDICATOR_TYPE_ADAPTER = 0,
79         I40IW_RSRC_INDICATOR_TYPE_CQ,
80         I40IW_RSRC_INDICATOR_TYPE_QP,
81         I40IW_RSRC_INDICATOR_TYPE_SRQ
82 };
83
84 enum i40iw_hdrct_flags {
85         DDP_LEN_FLAG = 0x80,
86         DDP_HDR_FLAG = 0x40,
87         RDMA_HDR_FLAG = 0x20
88 };
89
90 enum i40iw_term_layers {
91         LAYER_RDMA = 0,
92         LAYER_DDP = 1,
93         LAYER_MPA = 2
94 };
95
96 enum i40iw_term_error_types {
97         RDMAP_REMOTE_PROT = 1,
98         RDMAP_REMOTE_OP = 2,
99         DDP_CATASTROPHIC = 0,
100         DDP_TAGGED_BUFFER = 1,
101         DDP_UNTAGGED_BUFFER = 2,
102         DDP_LLP = 3
103 };
104
105 enum i40iw_term_rdma_errors {
106         RDMAP_INV_STAG = 0x00,
107         RDMAP_INV_BOUNDS = 0x01,
108         RDMAP_ACCESS = 0x02,
109         RDMAP_UNASSOC_STAG = 0x03,
110         RDMAP_TO_WRAP = 0x04,
111         RDMAP_INV_RDMAP_VER = 0x05,
112         RDMAP_UNEXPECTED_OP = 0x06,
113         RDMAP_CATASTROPHIC_LOCAL = 0x07,
114         RDMAP_CATASTROPHIC_GLOBAL = 0x08,
115         RDMAP_CANT_INV_STAG = 0x09,
116         RDMAP_UNSPECIFIED = 0xff
117 };
118
119 enum i40iw_term_ddp_errors {
120         DDP_CATASTROPHIC_LOCAL = 0x00,
121         DDP_TAGGED_INV_STAG = 0x00,
122         DDP_TAGGED_BOUNDS = 0x01,
123         DDP_TAGGED_UNASSOC_STAG = 0x02,
124         DDP_TAGGED_TO_WRAP = 0x03,
125         DDP_TAGGED_INV_DDP_VER = 0x04,
126         DDP_UNTAGGED_INV_QN = 0x01,
127         DDP_UNTAGGED_INV_MSN_NO_BUF = 0x02,
128         DDP_UNTAGGED_INV_MSN_RANGE = 0x03,
129         DDP_UNTAGGED_INV_MO = 0x04,
130         DDP_UNTAGGED_INV_TOO_LONG = 0x05,
131         DDP_UNTAGGED_INV_DDP_VER = 0x06
132 };
133
134 enum i40iw_term_mpa_errors {
135         MPA_CLOSED = 0x01,
136         MPA_CRC = 0x02,
137         MPA_MARKER = 0x03,
138         MPA_REQ_RSP = 0x04,
139 };
140
141 enum i40iw_flush_opcode {
142         FLUSH_INVALID = 0,
143         FLUSH_PROT_ERR,
144         FLUSH_REM_ACCESS_ERR,
145         FLUSH_LOC_QP_OP_ERR,
146         FLUSH_REM_OP_ERR,
147         FLUSH_LOC_LEN_ERR,
148         FLUSH_GENERAL_ERR,
149         FLUSH_FATAL_ERR
150 };
151
152 enum i40iw_term_eventtypes {
153         TERM_EVENT_QP_FATAL,
154         TERM_EVENT_QP_ACCESS_ERR
155 };
156
157 struct i40iw_terminate_hdr {
158         u8 layer_etype;
159         u8 error_code;
160         u8 hdrct;
161         u8 rsvd;
162 };
163
164 enum i40iw_debug_flag {
165         I40IW_DEBUG_NONE        = 0x00000000,
166         I40IW_DEBUG_ERR         = 0x00000001,
167         I40IW_DEBUG_INIT        = 0x00000002,
168         I40IW_DEBUG_DEV         = 0x00000004,
169         I40IW_DEBUG_CM          = 0x00000008,
170         I40IW_DEBUG_VERBS       = 0x00000010,
171         I40IW_DEBUG_PUDA        = 0x00000020,
172         I40IW_DEBUG_ILQ         = 0x00000040,
173         I40IW_DEBUG_IEQ         = 0x00000080,
174         I40IW_DEBUG_QP          = 0x00000100,
175         I40IW_DEBUG_CQ          = 0x00000200,
176         I40IW_DEBUG_MR          = 0x00000400,
177         I40IW_DEBUG_PBLE        = 0x00000800,
178         I40IW_DEBUG_WQE         = 0x00001000,
179         I40IW_DEBUG_AEQ         = 0x00002000,
180         I40IW_DEBUG_CQP         = 0x00004000,
181         I40IW_DEBUG_HMC         = 0x00008000,
182         I40IW_DEBUG_USER        = 0x00010000,
183         I40IW_DEBUG_VIRT        = 0x00020000,
184         I40IW_DEBUG_DCB         = 0x00040000,
185         I40IW_DEBUG_CQE         = 0x00800000,
186         I40IW_DEBUG_ALL         = 0xFFFFFFFF
187 };
188
189 enum i40iw_hw_stat_index_32b {
190         I40IW_HW_STAT_INDEX_IP4RXDISCARD = 0,
191         I40IW_HW_STAT_INDEX_IP4RXTRUNC,
192         I40IW_HW_STAT_INDEX_IP4TXNOROUTE,
193         I40IW_HW_STAT_INDEX_IP6RXDISCARD,
194         I40IW_HW_STAT_INDEX_IP6RXTRUNC,
195         I40IW_HW_STAT_INDEX_IP6TXNOROUTE,
196         I40IW_HW_STAT_INDEX_TCPRTXSEG,
197         I40IW_HW_STAT_INDEX_TCPRXOPTERR,
198         I40IW_HW_STAT_INDEX_TCPRXPROTOERR,
199         I40IW_HW_STAT_INDEX_MAX_32
200 };
201
202 enum i40iw_hw_stat_index_64b {
203         I40IW_HW_STAT_INDEX_IP4RXOCTS = 0,
204         I40IW_HW_STAT_INDEX_IP4RXPKTS,
205         I40IW_HW_STAT_INDEX_IP4RXFRAGS,
206         I40IW_HW_STAT_INDEX_IP4RXMCPKTS,
207         I40IW_HW_STAT_INDEX_IP4TXOCTS,
208         I40IW_HW_STAT_INDEX_IP4TXPKTS,
209         I40IW_HW_STAT_INDEX_IP4TXFRAGS,
210         I40IW_HW_STAT_INDEX_IP4TXMCPKTS,
211         I40IW_HW_STAT_INDEX_IP6RXOCTS,
212         I40IW_HW_STAT_INDEX_IP6RXPKTS,
213         I40IW_HW_STAT_INDEX_IP6RXFRAGS,
214         I40IW_HW_STAT_INDEX_IP6RXMCPKTS,
215         I40IW_HW_STAT_INDEX_IP6TXOCTS,
216         I40IW_HW_STAT_INDEX_IP6TXPKTS,
217         I40IW_HW_STAT_INDEX_IP6TXFRAGS,
218         I40IW_HW_STAT_INDEX_IP6TXMCPKTS,
219         I40IW_HW_STAT_INDEX_TCPRXSEGS,
220         I40IW_HW_STAT_INDEX_TCPTXSEG,
221         I40IW_HW_STAT_INDEX_RDMARXRDS,
222         I40IW_HW_STAT_INDEX_RDMARXSNDS,
223         I40IW_HW_STAT_INDEX_RDMARXWRS,
224         I40IW_HW_STAT_INDEX_RDMATXRDS,
225         I40IW_HW_STAT_INDEX_RDMATXSNDS,
226         I40IW_HW_STAT_INDEX_RDMATXWRS,
227         I40IW_HW_STAT_INDEX_RDMAVBND,
228         I40IW_HW_STAT_INDEX_RDMAVINV,
229         I40IW_HW_STAT_INDEX_MAX_64
230 };
231
232 struct i40iw_dev_hw_stat_offsets {
233         u32 stat_offset_32[I40IW_HW_STAT_INDEX_MAX_32];
234         u32 stat_offset_64[I40IW_HW_STAT_INDEX_MAX_64];
235 };
236
237 struct i40iw_dev_hw_stats {
238         u64 stat_value_32[I40IW_HW_STAT_INDEX_MAX_32];
239         u64 stat_value_64[I40IW_HW_STAT_INDEX_MAX_64];
240 };
241
242 struct i40iw_device_pestat_ops {
243         void (*iw_hw_stat_init)(struct i40iw_dev_pestat *, u8, struct i40iw_hw *, bool);
244         void (*iw_hw_stat_read_32)(struct i40iw_dev_pestat *, enum i40iw_hw_stat_index_32b, u64 *);
245         void (*iw_hw_stat_read_64)(struct i40iw_dev_pestat *, enum i40iw_hw_stat_index_64b, u64 *);
246         void (*iw_hw_stat_read_all)(struct i40iw_dev_pestat *, struct i40iw_dev_hw_stats *);
247         void (*iw_hw_stat_refresh_all)(struct i40iw_dev_pestat *);
248 };
249
250 struct i40iw_dev_pestat {
251         struct i40iw_hw *hw;
252         struct i40iw_device_pestat_ops ops;
253         struct i40iw_dev_hw_stats hw_stats;
254         struct i40iw_dev_hw_stats last_read_hw_stats;
255         struct i40iw_dev_hw_stat_offsets hw_stat_offsets;
256         struct timer_list stats_timer;
257         spinlock_t stats_lock; /* rdma stats lock */
258 };
259
260 struct i40iw_hw {
261         u8 __iomem *hw_addr;
262         void *dev_context;
263         struct i40iw_hmc_info hmc;
264 };
265
266 struct i40iw_pfpdu {
267         struct list_head rxlist;
268         u32 rcv_nxt;
269         u32 fps;
270         u32 max_fpdu_data;
271         bool mode;
272         bool mpa_crc_err;
273         u64 total_ieq_bufs;
274         u64 fpdu_processed;
275         u64 bad_seq_num;
276         u64 crc_err;
277         u64 no_tx_bufs;
278         u64 tx_err;
279         u64 out_of_order;
280         u64 pmode_count;
281 };
282
283 struct i40iw_sc_pd {
284         u32 size;
285         struct i40iw_sc_dev *dev;
286         u16 pd_id;
287 };
288
289 struct i40iw_cqp_quanta {
290         u64 elem[I40IW_CQP_WQE_SIZE];
291 };
292
293 struct i40iw_sc_cqp {
294         u32 size;
295         u64 sq_pa;
296         u64 host_ctx_pa;
297         void *back_cqp;
298         struct i40iw_sc_dev *dev;
299         enum i40iw_status_code (*process_cqp_sds)(struct i40iw_sc_dev *,
300                                                   struct i40iw_update_sds_info *);
301         struct i40iw_dma_mem sdbuf;
302         struct i40iw_ring sq_ring;
303         struct i40iw_cqp_quanta *sq_base;
304         u64 *host_ctx;
305         u64 *scratch_array;
306         u32 cqp_id;
307         u32 sq_size;
308         u32 hw_sq_size;
309         u8 struct_ver;
310         u8 polarity;
311         bool en_datacenter_tcp;
312         u8 hmc_profile;
313         u8 enabled_vf_count;
314         u8 timeout_count;
315 };
316
317 struct i40iw_sc_aeq {
318         u32 size;
319         u64 aeq_elem_pa;
320         struct i40iw_sc_dev *dev;
321         struct i40iw_sc_aeqe *aeqe_base;
322         void *pbl_list;
323         u32 elem_cnt;
324         struct i40iw_ring aeq_ring;
325         bool virtual_map;
326         u8 pbl_chunk_size;
327         u32 first_pm_pbl_idx;
328         u8 polarity;
329 };
330
331 struct i40iw_sc_ceq {
332         u32 size;
333         u64 ceq_elem_pa;
334         struct i40iw_sc_dev *dev;
335         struct i40iw_ceqe *ceqe_base;
336         void *pbl_list;
337         u32 ceq_id;
338         u32 elem_cnt;
339         struct i40iw_ring ceq_ring;
340         bool virtual_map;
341         u8 pbl_chunk_size;
342         bool tph_en;
343         u8 tph_val;
344         u32 first_pm_pbl_idx;
345         u8 polarity;
346 };
347
348 struct i40iw_sc_cq {
349         struct i40iw_cq_uk cq_uk;
350         u64 cq_pa;
351         u64 shadow_area_pa;
352         struct i40iw_sc_dev *dev;
353         void *pbl_list;
354         void *back_cq;
355         u32 ceq_id;
356         u32 shadow_read_threshold;
357         bool ceqe_mask;
358         bool virtual_map;
359         u8 pbl_chunk_size;
360         u8 cq_type;
361         bool ceq_id_valid;
362         bool tph_en;
363         u8 tph_val;
364         u32 first_pm_pbl_idx;
365         bool check_overflow;
366 };
367
368 struct i40iw_sc_qp {
369         struct i40iw_qp_uk qp_uk;
370         u64 sq_pa;
371         u64 rq_pa;
372         u64 hw_host_ctx_pa;
373         u64 shadow_area_pa;
374         u64 q2_pa;
375         struct i40iw_sc_dev *dev;
376         struct i40iw_sc_pd *pd;
377         u64 *hw_host_ctx;
378         void *llp_stream_handle;
379         void *back_qp;
380         struct i40iw_pfpdu pfpdu;
381         u8 *q2_buf;
382         u64 qp_compl_ctx;
383         u16 qs_handle;
384         u16 exception_lan_queue;
385         u16 push_idx;
386         u8 sq_tph_val;
387         u8 rq_tph_val;
388         u8 qp_state;
389         u8 qp_type;
390         u8 hw_sq_size;
391         u8 hw_rq_size;
392         u8 src_mac_addr_idx;
393         bool sq_tph_en;
394         bool rq_tph_en;
395         bool rcv_tph_en;
396         bool xmit_tph_en;
397         bool virtual_map;
398         bool flush_sq;
399         bool flush_rq;
400         bool sq_flush;
401         enum i40iw_flush_opcode flush_code;
402         enum i40iw_term_eventtypes eventtype;
403         u8 term_flags;
404 };
405
406 struct i40iw_hmc_fpm_misc {
407         u32 max_ceqs;
408         u32 max_sds;
409         u32 xf_block_size;
410         u32 q1_block_size;
411         u32 ht_multiplier;
412         u32 timer_bucket;
413 };
414
415 struct i40iw_vchnl_if {
416         enum i40iw_status_code (*vchnl_recv)(struct i40iw_sc_dev *, u32, u8 *, u16);
417         enum i40iw_status_code (*vchnl_send)(struct i40iw_sc_dev *dev, u32, u8 *, u16);
418 };
419
420 #define I40IW_VCHNL_MAX_VF_MSG_SIZE 512
421
422 struct i40iw_vchnl_vf_msg_buffer {
423         struct i40iw_virtchnl_op_buf vchnl_msg;
424         char parm_buffer[I40IW_VCHNL_MAX_VF_MSG_SIZE - 1];
425 };
426
427 struct i40iw_vfdev {
428         struct i40iw_sc_dev *pf_dev;
429         u8 *hmc_info_mem;
430         struct i40iw_dev_pestat dev_pestat;
431         struct i40iw_hmc_pble_info *pble_info;
432         struct i40iw_hmc_info hmc_info;
433         struct i40iw_vchnl_vf_msg_buffer vf_msg_buffer;
434         u64 fpm_query_buf_pa;
435         u64 *fpm_query_buf;
436         u32 vf_id;
437         u32 msg_count;
438         bool pf_hmc_initialized;
439         u16 pmf_index;
440         u16 iw_vf_idx;          /* VF Device table index */
441         bool stats_initialized;
442 };
443
444 struct i40iw_sc_dev {
445         struct list_head cqp_cmd_head;  /* head of the CQP command list */
446         spinlock_t cqp_lock; /* cqp list sync */
447         struct i40iw_dev_uk dev_uk;
448         struct i40iw_dev_pestat dev_pestat;
449         struct i40iw_dma_mem vf_fpm_query_buf[I40IW_MAX_PE_ENABLED_VF_COUNT];
450         u64 fpm_query_buf_pa;
451         u64 fpm_commit_buf_pa;
452         u64 *fpm_query_buf;
453         u64 *fpm_commit_buf;
454         void *back_dev;
455         struct i40iw_hw *hw;
456         u8 __iomem *db_addr;
457         struct i40iw_hmc_info *hmc_info;
458         struct i40iw_hmc_pble_info *pble_info;
459         struct i40iw_vfdev *vf_dev[I40IW_MAX_PE_ENABLED_VF_COUNT];
460         struct i40iw_sc_cqp *cqp;
461         struct i40iw_sc_aeq *aeq;
462         struct i40iw_sc_ceq *ceq[I40IW_CEQ_MAX_COUNT];
463         struct i40iw_sc_cq *ccq;
464         struct i40iw_cqp_ops *cqp_ops;
465         struct i40iw_ccq_ops *ccq_ops;
466         struct i40iw_ceq_ops *ceq_ops;
467         struct i40iw_aeq_ops *aeq_ops;
468         struct i40iw_pd_ops *iw_pd_ops;
469         struct i40iw_priv_qp_ops *iw_priv_qp_ops;
470         struct i40iw_priv_cq_ops *iw_priv_cq_ops;
471         struct i40iw_mr_ops *mr_ops;
472         struct i40iw_cqp_misc_ops *cqp_misc_ops;
473         struct i40iw_hmc_ops *hmc_ops;
474         struct i40iw_vchnl_if vchnl_if;
475         u32 ilq_count;
476         struct i40iw_virt_mem ilq_mem;
477         struct i40iw_puda_rsrc *ilq;
478         u32 ieq_count;
479         struct i40iw_virt_mem ieq_mem;
480         struct i40iw_puda_rsrc *ieq;
481
482         struct i40iw_vf_cqp_ops *iw_vf_cqp_ops;
483
484         struct i40iw_hmc_fpm_misc hmc_fpm_misc;
485         u16 qs_handle;
486         u32     debug_mask;
487         u16 exception_lan_queue;
488         u8 hmc_fn_id;
489         bool is_pf;
490         bool vchnl_up;
491         u8 vf_id;
492         u64 cqp_cmd_stats[OP_SIZE_CQP_STAT_ARRAY];
493         struct i40iw_vchnl_vf_msg_buffer vchnl_vf_msg_buf;
494         u8 hw_rev;
495 };
496
497 struct i40iw_modify_cq_info {
498         u64 cq_pa;
499         struct i40iw_cqe *cq_base;
500         void *pbl_list;
501         u32 ceq_id;
502         u32 cq_size;
503         u32 shadow_read_threshold;
504         bool virtual_map;
505         u8 pbl_chunk_size;
506         bool check_overflow;
507         bool cq_resize;
508         bool ceq_change;
509         bool check_overflow_change;
510         u32 first_pm_pbl_idx;
511         bool ceq_valid;
512 };
513
514 struct i40iw_create_qp_info {
515         u8 next_iwarp_state;
516         bool ord_valid;
517         bool tcp_ctx_valid;
518         bool cq_num_valid;
519         bool static_rsrc;
520         bool arp_cache_idx_valid;
521 };
522
523 struct i40iw_modify_qp_info {
524         u64 rx_win0;
525         u64 rx_win1;
526         u16 new_mss;
527         u8 next_iwarp_state;
528         u8 termlen;
529         bool ord_valid;
530         bool tcp_ctx_valid;
531         bool cq_num_valid;
532         bool static_rsrc;
533         bool arp_cache_idx_valid;
534         bool reset_tcp_conn;
535         bool remove_hash_idx;
536         bool dont_send_term;
537         bool dont_send_fin;
538         bool cached_var_valid;
539         bool mss_change;
540         bool force_loopback;
541 };
542
543 struct i40iw_ccq_cqe_info {
544         struct i40iw_sc_cqp *cqp;
545         u64 scratch;
546         u32 op_ret_val;
547         u16 maj_err_code;
548         u16 min_err_code;
549         u8 op_code;
550         bool error;
551 };
552
553 struct i40iw_l2params {
554         u16 qs_handle_list[I40IW_MAX_USER_PRIORITY];
555         u16 mss;
556 };
557
558 struct i40iw_device_init_info {
559         u64 fpm_query_buf_pa;
560         u64 fpm_commit_buf_pa;
561         u64 *fpm_query_buf;
562         u64 *fpm_commit_buf;
563         struct i40iw_hw *hw;
564         void __iomem *bar0;
565         enum i40iw_status_code (*vchnl_send)(struct i40iw_sc_dev *, u32, u8 *, u16);
566         u16 qs_handle;
567         u16 exception_lan_queue;
568         u8 hmc_fn_id;
569         bool is_pf;
570         u32 debug_mask;
571 };
572
573 enum i40iw_cqp_hmc_profile {
574         I40IW_HMC_PROFILE_DEFAULT = 1,
575         I40IW_HMC_PROFILE_FAVOR_VF = 2,
576         I40IW_HMC_PROFILE_EQUAL = 3,
577 };
578
579 struct i40iw_cqp_init_info {
580         u64 cqp_compl_ctx;
581         u64 host_ctx_pa;
582         u64 sq_pa;
583         struct i40iw_sc_dev *dev;
584         struct i40iw_cqp_quanta *sq;
585         u64 *host_ctx;
586         u64 *scratch_array;
587         u32 sq_size;
588         u8 struct_ver;
589         bool en_datacenter_tcp;
590         u8 hmc_profile;
591         u8 enabled_vf_count;
592 };
593
594 struct i40iw_ceq_init_info {
595         u64 ceqe_pa;
596         struct i40iw_sc_dev *dev;
597         u64 *ceqe_base;
598         void *pbl_list;
599         u32 elem_cnt;
600         u32 ceq_id;
601         bool virtual_map;
602         u8 pbl_chunk_size;
603         bool tph_en;
604         u8 tph_val;
605         u32 first_pm_pbl_idx;
606 };
607
608 struct i40iw_aeq_init_info {
609         u64 aeq_elem_pa;
610         struct i40iw_sc_dev *dev;
611         u32 *aeqe_base;
612         void *pbl_list;
613         u32 elem_cnt;
614         bool virtual_map;
615         u8 pbl_chunk_size;
616         u32 first_pm_pbl_idx;
617 };
618
619 struct i40iw_ccq_init_info {
620         u64 cq_pa;
621         u64 shadow_area_pa;
622         struct i40iw_sc_dev *dev;
623         struct i40iw_cqe *cq_base;
624         u64 *shadow_area;
625         void *pbl_list;
626         u32 num_elem;
627         u32 ceq_id;
628         u32 shadow_read_threshold;
629         bool ceqe_mask;
630         bool ceq_id_valid;
631         bool tph_en;
632         u8 tph_val;
633         bool avoid_mem_cflct;
634         bool virtual_map;
635         u8 pbl_chunk_size;
636         u32 first_pm_pbl_idx;
637 };
638
639 struct i40iwarp_offload_info {
640         u16 rcv_mark_offset;
641         u16 snd_mark_offset;
642         u16 pd_id;
643         u8 ddp_ver;
644         u8 rdmap_ver;
645         u8 ord_size;
646         u8 ird_size;
647         bool wr_rdresp_en;
648         bool rd_enable;
649         bool snd_mark_en;
650         bool rcv_mark_en;
651         bool bind_en;
652         bool fast_reg_en;
653         bool priv_mode_en;
654         bool lsmm_present;
655         u8 iwarp_mode;
656         bool align_hdrs;
657         bool rcv_no_mpa_crc;
658
659         u8 last_byte_sent;
660 };
661
662 struct i40iw_tcp_offload_info {
663         bool ipv4;
664         bool no_nagle;
665         bool insert_vlan_tag;
666         bool time_stamp;
667         u8 cwnd_inc_limit;
668         bool drop_ooo_seg;
669         bool dup_ack_thresh;
670         u8 ttl;
671         u8 src_mac_addr_idx;
672         bool avoid_stretch_ack;
673         u8 tos;
674         u16 src_port;
675         u16 dst_port;
676         u32 dest_ip_addr0;
677         u32 dest_ip_addr1;
678         u32 dest_ip_addr2;
679         u32 dest_ip_addr3;
680         u32 snd_mss;
681         u16 vlan_tag;
682         u16 arp_idx;
683         u32 flow_label;
684         bool wscale;
685         u8 tcp_state;
686         u8 snd_wscale;
687         u8 rcv_wscale;
688         u32 time_stamp_recent;
689         u32 time_stamp_age;
690         u32 snd_nxt;
691         u32 snd_wnd;
692         u32 rcv_nxt;
693         u32 rcv_wnd;
694         u32 snd_max;
695         u32 snd_una;
696         u32 srtt;
697         u32 rtt_var;
698         u32 ss_thresh;
699         u32 cwnd;
700         u32 snd_wl1;
701         u32 snd_wl2;
702         u32 max_snd_window;
703         u8 rexmit_thresh;
704         u32 local_ipaddr0;
705         u32 local_ipaddr1;
706         u32 local_ipaddr2;
707         u32 local_ipaddr3;
708         bool ignore_tcp_opt;
709         bool ignore_tcp_uns_opt;
710 };
711
712 struct i40iw_qp_host_ctx_info {
713         u64 qp_compl_ctx;
714         struct i40iw_tcp_offload_info *tcp_info;
715         struct i40iwarp_offload_info *iwarp_info;
716         u32 send_cq_num;
717         u32 rcv_cq_num;
718         u16 push_idx;
719         bool push_mode_en;
720         bool tcp_info_valid;
721         bool iwarp_info_valid;
722         bool err_rq_idx_valid;
723         u16 err_rq_idx;
724 };
725
726 struct i40iw_aeqe_info {
727         u64 compl_ctx;
728         u32 qp_cq_id;
729         u16 ae_id;
730         u16 wqe_idx;
731         u8 tcp_state;
732         u8 iwarp_state;
733         bool qp;
734         bool cq;
735         bool sq;
736         bool in_rdrsp_wr;
737         bool out_rdrsp;
738         u8 q2_data_written;
739         bool aeqe_overflow;
740 };
741
742 struct i40iw_allocate_stag_info {
743         u64 total_len;
744         u32 chunk_size;
745         u32 stag_idx;
746         u32 page_size;
747         u16 pd_id;
748         u16 access_rights;
749         bool remote_access;
750         bool use_hmc_fcn_index;
751         u8 hmc_fcn_index;
752         bool use_pf_rid;
753 };
754
755 struct i40iw_reg_ns_stag_info {
756         u64 reg_addr_pa;
757         u64 fbo;
758         void *va;
759         u64 total_len;
760         u32 page_size;
761         u32 chunk_size;
762         u32 first_pm_pbl_index;
763         enum i40iw_addressing_type addr_type;
764         i40iw_stag_index stag_idx;
765         u16 access_rights;
766         u16 pd_id;
767         i40iw_stag_key stag_key;
768         bool use_hmc_fcn_index;
769         u8 hmc_fcn_index;
770         bool use_pf_rid;
771 };
772
773 struct i40iw_fast_reg_stag_info {
774         u64 wr_id;
775         u64 reg_addr_pa;
776         u64 fbo;
777         void *va;
778         u64 total_len;
779         u32 page_size;
780         u32 chunk_size;
781         u32 first_pm_pbl_index;
782         enum i40iw_addressing_type addr_type;
783         i40iw_stag_index stag_idx;
784         u16 access_rights;
785         u16 pd_id;
786         i40iw_stag_key stag_key;
787         bool local_fence;
788         bool read_fence;
789         bool signaled;
790         bool use_hmc_fcn_index;
791         u8 hmc_fcn_index;
792         bool use_pf_rid;
793         bool defer_flag;
794 };
795
796 struct i40iw_dealloc_stag_info {
797         u32 stag_idx;
798         u16 pd_id;
799         bool mr;
800         bool dealloc_pbl;
801 };
802
803 struct i40iw_register_shared_stag {
804         void *va;
805         enum i40iw_addressing_type addr_type;
806         i40iw_stag_index new_stag_idx;
807         i40iw_stag_index parent_stag_idx;
808         u32 access_rights;
809         u16 pd_id;
810         i40iw_stag_key new_stag_key;
811 };
812
813 struct i40iw_qp_init_info {
814         struct i40iw_qp_uk_init_info qp_uk_init_info;
815         struct i40iw_sc_pd *pd;
816         u64 *host_ctx;
817         u8 *q2;
818         u64 sq_pa;
819         u64 rq_pa;
820         u64 host_ctx_pa;
821         u64 q2_pa;
822         u64 shadow_area_pa;
823         u8 sq_tph_val;
824         u8 rq_tph_val;
825         u8 type;
826         bool sq_tph_en;
827         bool rq_tph_en;
828         bool rcv_tph_en;
829         bool xmit_tph_en;
830         bool virtual_map;
831 };
832
833 struct i40iw_cq_init_info {
834         struct i40iw_sc_dev *dev;
835         u64 cq_base_pa;
836         u64 shadow_area_pa;
837         u32 ceq_id;
838         u32 shadow_read_threshold;
839         bool virtual_map;
840         bool ceqe_mask;
841         u8 pbl_chunk_size;
842         u32 first_pm_pbl_idx;
843         bool ceq_id_valid;
844         bool tph_en;
845         u8 tph_val;
846         u8 type;
847         struct i40iw_cq_uk_init_info cq_uk_init_info;
848 };
849
850 struct i40iw_upload_context_info {
851         u64 buf_pa;
852         bool freeze_qp;
853         bool raw_format;
854         u32 qp_id;
855         u8 qp_type;
856 };
857
858 struct i40iw_add_arp_cache_entry_info {
859         u8 mac_addr[6];
860         u32 reach_max;
861         u16 arp_index;
862         bool permanent;
863 };
864
865 struct i40iw_apbvt_info {
866         u16 port;
867         bool add;
868 };
869
870 enum i40iw_quad_entry_type {
871         I40IW_QHASH_TYPE_TCP_ESTABLISHED = 1,
872         I40IW_QHASH_TYPE_TCP_SYN,
873 };
874
875 enum i40iw_quad_hash_manage_type {
876         I40IW_QHASH_MANAGE_TYPE_DELETE = 0,
877         I40IW_QHASH_MANAGE_TYPE_ADD,
878         I40IW_QHASH_MANAGE_TYPE_MODIFY
879 };
880
881 struct i40iw_qhash_table_info {
882         enum i40iw_quad_hash_manage_type manage;
883         enum i40iw_quad_entry_type entry_type;
884         bool vlan_valid;
885         bool ipv4_valid;
886         u8 mac_addr[6];
887         u16 vlan_id;
888         u16 qs_handle;
889         u32 qp_num;
890         u32 dest_ip[4];
891         u32 src_ip[4];
892         u32 dest_port;
893         u32 src_port;
894 };
895
896 struct i40iw_local_mac_ipaddr_entry_info {
897         u8 mac_addr[6];
898         u8 entry_idx;
899 };
900
901 struct i40iw_cqp_manage_push_page_info {
902         u32 push_idx;
903         u16 qs_handle;
904         u8 free_page;
905 };
906
907 struct i40iw_qp_flush_info {
908         u16 sq_minor_code;
909         u16 sq_major_code;
910         u16 rq_minor_code;
911         u16 rq_major_code;
912         u16 ae_code;
913         u8 ae_source;
914         bool sq;
915         bool rq;
916         bool userflushcode;
917         bool generate_ae;
918 };
919
920 struct i40iw_cqp_commit_fpm_values {
921         u64 qp_base;
922         u64 cq_base;
923         u32 hte_base;
924         u32 arp_base;
925         u32 apbvt_inuse_base;
926         u32 mr_base;
927         u32 xf_base;
928         u32 xffl_base;
929         u32 q1_base;
930         u32 q1fl_base;
931         u32 fsimc_base;
932         u32 fsiav_base;
933         u32 pbl_base;
934
935         u32 qp_cnt;
936         u32 cq_cnt;
937         u32 hte_cnt;
938         u32 arp_cnt;
939         u32 mr_cnt;
940         u32 xf_cnt;
941         u32 xffl_cnt;
942         u32 q1_cnt;
943         u32 q1fl_cnt;
944         u32 fsimc_cnt;
945         u32 fsiav_cnt;
946         u32 pbl_cnt;
947 };
948
949 struct i40iw_cqp_query_fpm_values {
950         u16 first_pe_sd_index;
951         u32 qp_objsize;
952         u32 cq_objsize;
953         u32 hte_objsize;
954         u32 arp_objsize;
955         u32 mr_objsize;
956         u32 xf_objsize;
957         u32 q1_objsize;
958         u32 fsimc_objsize;
959         u32 fsiav_objsize;
960
961         u32 qp_max;
962         u32 cq_max;
963         u32 hte_max;
964         u32 arp_max;
965         u32 mr_max;
966         u32 xf_max;
967         u32 xffl_max;
968         u32 q1_max;
969         u32 q1fl_max;
970         u32 fsimc_max;
971         u32 fsiav_max;
972         u32 pbl_max;
973 };
974
975 struct i40iw_cqp_ops {
976         enum i40iw_status_code (*cqp_init)(struct i40iw_sc_cqp *,
977                                            struct i40iw_cqp_init_info *);
978         enum i40iw_status_code (*cqp_create)(struct i40iw_sc_cqp *, bool, u16 *, u16 *);
979         void (*cqp_post_sq)(struct i40iw_sc_cqp *);
980         u64 *(*cqp_get_next_send_wqe)(struct i40iw_sc_cqp *, u64 scratch);
981         enum i40iw_status_code (*cqp_destroy)(struct i40iw_sc_cqp *);
982         enum i40iw_status_code (*poll_for_cqp_op_done)(struct i40iw_sc_cqp *, u8,
983                                                        struct i40iw_ccq_cqe_info *);
984 };
985
986 struct i40iw_ccq_ops {
987         enum i40iw_status_code (*ccq_init)(struct i40iw_sc_cq *,
988                                            struct i40iw_ccq_init_info *);
989         enum i40iw_status_code (*ccq_create)(struct i40iw_sc_cq *, u64, bool, bool);
990         enum i40iw_status_code (*ccq_destroy)(struct i40iw_sc_cq *, u64, bool);
991         enum i40iw_status_code (*ccq_create_done)(struct i40iw_sc_cq *);
992         enum i40iw_status_code (*ccq_get_cqe_info)(struct i40iw_sc_cq *,
993                                                    struct i40iw_ccq_cqe_info *);
994         void (*ccq_arm)(struct i40iw_sc_cq *);
995 };
996
997 struct i40iw_ceq_ops {
998         enum i40iw_status_code (*ceq_init)(struct i40iw_sc_ceq *,
999                                            struct i40iw_ceq_init_info *);
1000         enum i40iw_status_code (*ceq_create)(struct i40iw_sc_ceq *, u64, bool);
1001         enum i40iw_status_code (*cceq_create_done)(struct i40iw_sc_ceq *);
1002         enum i40iw_status_code (*cceq_destroy_done)(struct i40iw_sc_ceq *);
1003         enum i40iw_status_code (*cceq_create)(struct i40iw_sc_ceq *, u64);
1004         enum i40iw_status_code (*ceq_destroy)(struct i40iw_sc_ceq *, u64, bool);
1005         void *(*process_ceq)(struct i40iw_sc_dev *, struct i40iw_sc_ceq *);
1006 };
1007
1008 struct i40iw_aeq_ops {
1009         enum i40iw_status_code (*aeq_init)(struct i40iw_sc_aeq *,
1010                                            struct i40iw_aeq_init_info *);
1011         enum i40iw_status_code (*aeq_create)(struct i40iw_sc_aeq *, u64, bool);
1012         enum i40iw_status_code (*aeq_destroy)(struct i40iw_sc_aeq *, u64, bool);
1013         enum i40iw_status_code (*get_next_aeqe)(struct i40iw_sc_aeq *,
1014                                                 struct i40iw_aeqe_info *);
1015         enum i40iw_status_code (*repost_aeq_entries)(struct i40iw_sc_dev *, u32);
1016         enum i40iw_status_code (*aeq_create_done)(struct i40iw_sc_aeq *);
1017         enum i40iw_status_code (*aeq_destroy_done)(struct i40iw_sc_aeq *);
1018 };
1019
1020 struct i40iw_pd_ops {
1021         void (*pd_init)(struct i40iw_sc_dev *, struct i40iw_sc_pd *, u16);
1022 };
1023
1024 struct i40iw_priv_qp_ops {
1025         enum i40iw_status_code (*qp_init)(struct i40iw_sc_qp *, struct i40iw_qp_init_info *);
1026         enum i40iw_status_code (*qp_create)(struct i40iw_sc_qp *,
1027                                             struct i40iw_create_qp_info *, u64, bool);
1028         enum i40iw_status_code (*qp_modify)(struct i40iw_sc_qp *,
1029                                             struct i40iw_modify_qp_info *, u64, bool);
1030         enum i40iw_status_code (*qp_destroy)(struct i40iw_sc_qp *, u64, bool, bool, bool);
1031         enum i40iw_status_code (*qp_flush_wqes)(struct i40iw_sc_qp *,
1032                                                 struct i40iw_qp_flush_info *, u64, bool);
1033         enum i40iw_status_code (*qp_upload_context)(struct i40iw_sc_dev *,
1034                                                     struct i40iw_upload_context_info *,
1035                                                     u64, bool);
1036         enum i40iw_status_code (*qp_setctx)(struct i40iw_sc_qp *, u64 *,
1037                                             struct i40iw_qp_host_ctx_info *);
1038
1039         void (*qp_send_lsmm)(struct i40iw_sc_qp *, void *, u32, i40iw_stag);
1040         void (*qp_send_lsmm_nostag)(struct i40iw_sc_qp *, void *, u32);
1041         void (*qp_send_rtt)(struct i40iw_sc_qp *, bool);
1042         enum i40iw_status_code (*qp_post_wqe0)(struct i40iw_sc_qp *, u8);
1043 };
1044
1045 struct i40iw_priv_cq_ops {
1046         enum i40iw_status_code (*cq_init)(struct i40iw_sc_cq *, struct i40iw_cq_init_info *);
1047         enum i40iw_status_code (*cq_create)(struct i40iw_sc_cq *, u64, bool, bool);
1048         enum i40iw_status_code (*cq_destroy)(struct i40iw_sc_cq *, u64, bool);
1049         enum i40iw_status_code (*cq_modify)(struct i40iw_sc_cq *,
1050                                             struct i40iw_modify_cq_info *, u64, bool);
1051 };
1052
1053 struct i40iw_mr_ops {
1054         enum i40iw_status_code (*alloc_stag)(struct i40iw_sc_dev *,
1055                                              struct i40iw_allocate_stag_info *, u64, bool);
1056         enum i40iw_status_code (*mr_reg_non_shared)(struct i40iw_sc_dev *,
1057                                                     struct i40iw_reg_ns_stag_info *,
1058                                                     u64, bool);
1059         enum i40iw_status_code (*mr_reg_shared)(struct i40iw_sc_dev *,
1060                                                 struct i40iw_register_shared_stag *,
1061                                                 u64, bool);
1062         enum i40iw_status_code (*dealloc_stag)(struct i40iw_sc_dev *,
1063                                                struct i40iw_dealloc_stag_info *,
1064                                                u64, bool);
1065         enum i40iw_status_code (*query_stag)(struct i40iw_sc_dev *, u64, u32, bool);
1066         enum i40iw_status_code (*mw_alloc)(struct i40iw_sc_dev *, u64, u32, u16, bool);
1067 };
1068
1069 struct i40iw_cqp_misc_ops {
1070         enum i40iw_status_code (*manage_push_page)(struct i40iw_sc_cqp *,
1071                                                    struct i40iw_cqp_manage_push_page_info *,
1072                                                    u64, bool);
1073         enum i40iw_status_code (*manage_hmc_pm_func_table)(struct i40iw_sc_cqp *,
1074                                                            u64, u8, bool, bool);
1075         enum i40iw_status_code (*set_hmc_resource_profile)(struct i40iw_sc_cqp *,
1076                                                            u64, u8, u8, bool, bool);
1077         enum i40iw_status_code (*commit_fpm_values)(struct i40iw_sc_cqp *, u64, u8,
1078                                                     struct i40iw_dma_mem *, bool, u8);
1079         enum i40iw_status_code (*query_fpm_values)(struct i40iw_sc_cqp *, u64, u8,
1080                                                    struct i40iw_dma_mem *, bool, u8);
1081         enum i40iw_status_code (*static_hmc_pages_allocated)(struct i40iw_sc_cqp *,
1082                                                              u64, u8, bool, bool);
1083         enum i40iw_status_code (*add_arp_cache_entry)(struct i40iw_sc_cqp *,
1084                                                       struct i40iw_add_arp_cache_entry_info *,
1085                                                       u64, bool);
1086         enum i40iw_status_code (*del_arp_cache_entry)(struct i40iw_sc_cqp *, u64, u16, bool);
1087         enum i40iw_status_code (*query_arp_cache_entry)(struct i40iw_sc_cqp *, u64, u16, bool);
1088         enum i40iw_status_code (*manage_apbvt_entry)(struct i40iw_sc_cqp *,
1089                                                      struct i40iw_apbvt_info *, u64, bool);
1090         enum i40iw_status_code (*manage_qhash_table_entry)(struct i40iw_sc_cqp *,
1091                                                            struct i40iw_qhash_table_info *, u64, bool);
1092         enum i40iw_status_code (*alloc_local_mac_ipaddr_table_entry)(struct i40iw_sc_cqp *, u64, bool);
1093         enum i40iw_status_code (*add_local_mac_ipaddr_entry)(struct i40iw_sc_cqp *,
1094                                                              struct i40iw_local_mac_ipaddr_entry_info *,
1095                                                              u64, bool);
1096         enum i40iw_status_code (*del_local_mac_ipaddr_entry)(struct i40iw_sc_cqp *, u64, u8, u8, bool);
1097         enum i40iw_status_code (*cqp_nop)(struct i40iw_sc_cqp *, u64, bool);
1098         enum i40iw_status_code (*commit_fpm_values_done)(struct i40iw_sc_cqp
1099                                                           *);
1100         enum i40iw_status_code (*query_fpm_values_done)(struct i40iw_sc_cqp *);
1101         enum i40iw_status_code (*manage_hmc_pm_func_table_done)(struct i40iw_sc_cqp *);
1102         enum i40iw_status_code (*update_suspend_qp)(struct i40iw_sc_cqp *, struct i40iw_sc_qp *, u64);
1103         enum i40iw_status_code (*update_resume_qp)(struct i40iw_sc_cqp *, struct i40iw_sc_qp *, u64);
1104 };
1105
1106 struct i40iw_hmc_ops {
1107         enum i40iw_status_code (*init_iw_hmc)(struct i40iw_sc_dev *, u8);
1108         enum i40iw_status_code (*parse_fpm_query_buf)(u64 *, struct i40iw_hmc_info *,
1109                                                       struct i40iw_hmc_fpm_misc *);
1110         enum i40iw_status_code (*configure_iw_fpm)(struct i40iw_sc_dev *, u8);
1111         enum i40iw_status_code (*parse_fpm_commit_buf)(u64 *, struct i40iw_hmc_obj_info *);
1112         enum i40iw_status_code (*create_hmc_object)(struct i40iw_sc_dev *dev,
1113                                                     struct i40iw_hmc_create_obj_info *);
1114         enum i40iw_status_code (*del_hmc_object)(struct i40iw_sc_dev *dev,
1115                                                  struct i40iw_hmc_del_obj_info *,
1116                                                  bool reset);
1117         enum i40iw_status_code (*pf_init_vfhmc)(struct i40iw_sc_dev *, u8, u32 *);
1118         enum i40iw_status_code (*vf_configure_vffpm)(struct i40iw_sc_dev *, u32 *);
1119 };
1120
1121 struct cqp_info {
1122         union {
1123                 struct {
1124                         struct i40iw_sc_qp *qp;
1125                         struct i40iw_create_qp_info info;
1126                         u64 scratch;
1127                 } qp_create;
1128
1129                 struct {
1130                         struct i40iw_sc_qp *qp;
1131                         struct i40iw_modify_qp_info info;
1132                         u64 scratch;
1133                 } qp_modify;
1134
1135                 struct {
1136                         struct i40iw_sc_qp *qp;
1137                         u64 scratch;
1138                         bool remove_hash_idx;
1139                         bool ignore_mw_bnd;
1140                 } qp_destroy;
1141
1142                 struct {
1143                         struct i40iw_sc_cq *cq;
1144                         u64 scratch;
1145                         bool check_overflow;
1146                 } cq_create;
1147
1148                 struct {
1149                         struct i40iw_sc_cq *cq;
1150                         u64 scratch;
1151                 } cq_destroy;
1152
1153                 struct {
1154                         struct i40iw_sc_dev *dev;
1155                         struct i40iw_allocate_stag_info info;
1156                         u64 scratch;
1157                 } alloc_stag;
1158
1159                 struct {
1160                         struct i40iw_sc_dev *dev;
1161                         u64 scratch;
1162                         u32 mw_stag_index;
1163                         u16 pd_id;
1164                 } mw_alloc;
1165
1166                 struct {
1167                         struct i40iw_sc_dev *dev;
1168                         struct i40iw_reg_ns_stag_info info;
1169                         u64 scratch;
1170                 } mr_reg_non_shared;
1171
1172                 struct {
1173                         struct i40iw_sc_dev *dev;
1174                         struct i40iw_dealloc_stag_info info;
1175                         u64 scratch;
1176                 } dealloc_stag;
1177
1178                 struct {
1179                         struct i40iw_sc_cqp *cqp;
1180                         struct i40iw_local_mac_ipaddr_entry_info info;
1181                         u64 scratch;
1182                 } add_local_mac_ipaddr_entry;
1183
1184                 struct {
1185                         struct i40iw_sc_cqp *cqp;
1186                         struct i40iw_add_arp_cache_entry_info info;
1187                         u64 scratch;
1188                 } add_arp_cache_entry;
1189
1190                 struct {
1191                         struct i40iw_sc_cqp *cqp;
1192                         u64 scratch;
1193                         u8 entry_idx;
1194                         u8 ignore_ref_count;
1195                 } del_local_mac_ipaddr_entry;
1196
1197                 struct {
1198                         struct i40iw_sc_cqp *cqp;
1199                         u64 scratch;
1200                         u16 arp_index;
1201                 } del_arp_cache_entry;
1202
1203                 struct {
1204                         struct i40iw_sc_cqp *cqp;
1205                         struct i40iw_manage_vf_pble_info info;
1206                         u64 scratch;
1207                 } manage_vf_pble_bp;
1208
1209                 struct {
1210                         struct i40iw_sc_cqp *cqp;
1211                         struct i40iw_cqp_manage_push_page_info info;
1212                         u64 scratch;
1213                 } manage_push_page;
1214
1215                 struct {
1216                         struct i40iw_sc_dev *dev;
1217                         struct i40iw_upload_context_info info;
1218                         u64 scratch;
1219                 } qp_upload_context;
1220
1221                 struct {
1222                         struct i40iw_sc_cqp *cqp;
1223                         u64 scratch;
1224                 } alloc_local_mac_ipaddr_entry;
1225
1226                 struct {
1227                         struct i40iw_sc_dev *dev;
1228                         struct i40iw_hmc_fcn_info info;
1229                         u64 scratch;
1230                 } manage_hmc_pm;
1231
1232                 struct {
1233                         struct i40iw_sc_ceq *ceq;
1234                         u64 scratch;
1235                 } ceq_create;
1236
1237                 struct {
1238                         struct i40iw_sc_ceq *ceq;
1239                         u64 scratch;
1240                 } ceq_destroy;
1241
1242                 struct {
1243                         struct i40iw_sc_aeq *aeq;
1244                         u64 scratch;
1245                 } aeq_create;
1246
1247                 struct {
1248                         struct i40iw_sc_aeq *aeq;
1249                         u64 scratch;
1250                 } aeq_destroy;
1251
1252                 struct {
1253                         struct i40iw_sc_qp *qp;
1254                         struct i40iw_qp_flush_info info;
1255                         u64 scratch;
1256                 } qp_flush_wqes;
1257
1258                 struct {
1259                         struct i40iw_sc_cqp *cqp;
1260                         void *fpm_values_va;
1261                         u64 fpm_values_pa;
1262                         u8 hmc_fn_id;
1263                         u64 scratch;
1264                 } query_fpm_values;
1265
1266                 struct {
1267                         struct i40iw_sc_cqp *cqp;
1268                         void *fpm_values_va;
1269                         u64 fpm_values_pa;
1270                         u8 hmc_fn_id;
1271                         u64 scratch;
1272                 } commit_fpm_values;
1273
1274                 struct {
1275                         struct i40iw_sc_cqp *cqp;
1276                         struct i40iw_apbvt_info info;
1277                         u64 scratch;
1278                 } manage_apbvt_entry;
1279
1280                 struct {
1281                         struct i40iw_sc_cqp *cqp;
1282                         struct i40iw_qhash_table_info info;
1283                         u64 scratch;
1284                 } manage_qhash_table_entry;
1285
1286                 struct {
1287                         struct i40iw_sc_dev *dev;
1288                         struct i40iw_update_sds_info info;
1289                         u64 scratch;
1290                 } update_pe_sds;
1291
1292                 struct {
1293                         struct i40iw_sc_cqp *cqp;
1294                         struct i40iw_sc_qp *qp;
1295                         u64 scratch;
1296                 } suspend_resume;
1297         } u;
1298 };
1299
1300 struct cqp_commands_info {
1301         struct list_head cqp_cmd_entry;
1302         u8 cqp_cmd;
1303         u8 post_sq;
1304         struct cqp_info in;
1305 };
1306
1307 struct i40iw_virtchnl_work_info {
1308         void (*callback_fcn)(void *vf_dev);
1309         void *worker_vf_dev;
1310 };
1311
1312 #endif