common/mlx5: add crypto BSF struct and definitions
[dpdk.git] / drivers / common / mlx5 / mlx5_prm.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2016 6WIND S.A.
3  * Copyright 2016 Mellanox Technologies, Ltd
4  */
5
6 #ifndef RTE_PMD_MLX5_PRM_H_
7 #define RTE_PMD_MLX5_PRM_H_
8
9 #include <unistd.h>
10
11 #include <rte_vect.h>
12 #include <rte_byteorder.h>
13
14 #include <mlx5_glue.h>
15 #include "mlx5_autoconf.h"
16
17 /* RSS hash key size. */
18 #define MLX5_RSS_HASH_KEY_LEN 40
19
20 /* Get CQE owner bit. */
21 #define MLX5_CQE_OWNER(op_own) ((op_own) & MLX5_CQE_OWNER_MASK)
22
23 /* Get CQE format. */
24 #define MLX5_CQE_FORMAT(op_own) (((op_own) & MLX5E_CQE_FORMAT_MASK) >> 2)
25
26 /* Get CQE opcode. */
27 #define MLX5_CQE_OPCODE(op_own) (((op_own) & 0xf0) >> 4)
28
29 /* Get CQE solicited event. */
30 #define MLX5_CQE_SE(op_own) (((op_own) >> 1) & 1)
31
32 /* Invalidate a CQE. */
33 #define MLX5_CQE_INVALIDATE (MLX5_CQE_INVALID << 4)
34
35 /* Hardware index widths. */
36 #define MLX5_CQ_INDEX_WIDTH 24
37 #define MLX5_WQ_INDEX_WIDTH 16
38
39 /* WQE Segment sizes in bytes. */
40 #define MLX5_WSEG_SIZE 16u
41 #define MLX5_WQE_CSEG_SIZE sizeof(struct mlx5_wqe_cseg)
42 #define MLX5_WQE_DSEG_SIZE sizeof(struct mlx5_wqe_dseg)
43 #define MLX5_WQE_ESEG_SIZE sizeof(struct mlx5_wqe_eseg)
44
45 /* WQE/WQEBB size in bytes. */
46 #define MLX5_WQE_SIZE sizeof(struct mlx5_wqe)
47
48 /*
49  * Max size of a WQE session.
50  * Absolute maximum size is 63 (MLX5_DSEG_MAX) segments,
51  * the WQE size field in Control Segment is 6 bits wide.
52  */
53 #define MLX5_WQE_SIZE_MAX (60 * MLX5_WSEG_SIZE)
54
55 /*
56  * Default minimum number of Tx queues for inlining packets.
57  * If there are less queues as specified we assume we have
58  * no enough CPU resources (cycles) to perform inlining,
59  * the PCIe throughput is not supposed as bottleneck and
60  * inlining is disabled.
61  */
62 #define MLX5_INLINE_MAX_TXQS 8u
63 #define MLX5_INLINE_MAX_TXQS_BLUEFIELD 16u
64
65 /*
66  * Default packet length threshold to be inlined with
67  * enhanced MPW. If packet length exceeds the threshold
68  * the data are not inlined. Should be aligned in WQEBB
69  * boundary with accounting the title Control and Ethernet
70  * segments.
71  */
72 #define MLX5_EMPW_DEF_INLINE_LEN (4u * MLX5_WQE_SIZE + \
73                                   MLX5_DSEG_MIN_INLINE_SIZE)
74 /*
75  * Maximal inline data length sent with enhanced MPW.
76  * Is based on maximal WQE size.
77  */
78 #define MLX5_EMPW_MAX_INLINE_LEN (MLX5_WQE_SIZE_MAX - \
79                                   MLX5_WQE_CSEG_SIZE - \
80                                   MLX5_WQE_ESEG_SIZE - \
81                                   MLX5_WQE_DSEG_SIZE + \
82                                   MLX5_DSEG_MIN_INLINE_SIZE)
83 /*
84  * Minimal amount of packets to be sent with EMPW.
85  * This limits the minimal required size of sent EMPW.
86  * If there are no enough resources to built minimal
87  * EMPW the sending loop exits.
88  */
89 #define MLX5_EMPW_MIN_PACKETS (2u + 3u * 4u)
90 /*
91  * Maximal amount of packets to be sent with EMPW.
92  * This value is not recommended to exceed MLX5_TX_COMP_THRESH,
93  * otherwise there might be up to MLX5_EMPW_MAX_PACKETS mbufs
94  * without CQE generation request, being multiplied by
95  * MLX5_TX_COMP_MAX_CQE it may cause significant latency
96  * in tx burst routine at the moment of freeing multiple mbufs.
97  */
98 #define MLX5_EMPW_MAX_PACKETS MLX5_TX_COMP_THRESH
99 #define MLX5_MPW_MAX_PACKETS 6
100 #define MLX5_MPW_INLINE_MAX_PACKETS 6
101
102 /*
103  * Default packet length threshold to be inlined with
104  * ordinary SEND. Inlining saves the MR key search
105  * and extra PCIe data fetch transaction, but eats the
106  * CPU cycles.
107  */
108 #define MLX5_SEND_DEF_INLINE_LEN (5U * MLX5_WQE_SIZE + \
109                                   MLX5_ESEG_MIN_INLINE_SIZE - \
110                                   MLX5_WQE_CSEG_SIZE - \
111                                   MLX5_WQE_ESEG_SIZE - \
112                                   MLX5_WQE_DSEG_SIZE)
113 /*
114  * Maximal inline data length sent with ordinary SEND.
115  * Is based on maximal WQE size.
116  */
117 #define MLX5_SEND_MAX_INLINE_LEN (MLX5_WQE_SIZE_MAX - \
118                                   MLX5_WQE_CSEG_SIZE - \
119                                   MLX5_WQE_ESEG_SIZE - \
120                                   MLX5_WQE_DSEG_SIZE + \
121                                   MLX5_ESEG_MIN_INLINE_SIZE)
122
123 /* Missed in mlx5dv.h, should define here. */
124 #ifndef HAVE_MLX5_OPCODE_ENHANCED_MPSW
125 #define MLX5_OPCODE_ENHANCED_MPSW 0x29u
126 #endif
127
128 #ifndef HAVE_MLX5_OPCODE_SEND_EN
129 #define MLX5_OPCODE_SEND_EN 0x17u
130 #endif
131
132 #ifndef HAVE_MLX5_OPCODE_WAIT
133 #define MLX5_OPCODE_WAIT 0x0fu
134 #endif
135
136 #ifndef HAVE_MLX5_OPCODE_ACCESS_ASO
137 #define MLX5_OPCODE_ACCESS_ASO 0x2du
138 #endif
139
140 /* CQE value to inform that VLAN is stripped. */
141 #define MLX5_CQE_VLAN_STRIPPED (1u << 0)
142
143 /* IPv4 options. */
144 #define MLX5_CQE_RX_IP_EXT_OPTS_PACKET (1u << 1)
145
146 /* IPv6 packet. */
147 #define MLX5_CQE_RX_IPV6_PACKET (1u << 2)
148
149 /* IPv4 packet. */
150 #define MLX5_CQE_RX_IPV4_PACKET (1u << 3)
151
152 /* TCP packet. */
153 #define MLX5_CQE_RX_TCP_PACKET (1u << 4)
154
155 /* UDP packet. */
156 #define MLX5_CQE_RX_UDP_PACKET (1u << 5)
157
158 /* IP is fragmented. */
159 #define MLX5_CQE_RX_IP_FRAG_PACKET (1u << 7)
160
161 /* L2 header is valid. */
162 #define MLX5_CQE_RX_L2_HDR_VALID (1u << 8)
163
164 /* L3 header is valid. */
165 #define MLX5_CQE_RX_L3_HDR_VALID (1u << 9)
166
167 /* L4 header is valid. */
168 #define MLX5_CQE_RX_L4_HDR_VALID (1u << 10)
169
170 /* Outer packet, 0 IPv4, 1 IPv6. */
171 #define MLX5_CQE_RX_OUTER_PACKET (1u << 1)
172
173 /* Tunnel packet bit in the CQE. */
174 #define MLX5_CQE_RX_TUNNEL_PACKET (1u << 0)
175
176 /* Mask for LRO push flag in the CQE lro_tcppsh_abort_dupack field. */
177 #define MLX5_CQE_LRO_PUSH_MASK 0x40
178
179 /* Mask for L4 type in the CQE hdr_type_etc field. */
180 #define MLX5_CQE_L4_TYPE_MASK 0x70
181
182 /* The bit index of L4 type in CQE hdr_type_etc field. */
183 #define MLX5_CQE_L4_TYPE_SHIFT 0x4
184
185 /* L4 type to indicate TCP packet without acknowledgment. */
186 #define MLX5_L4_HDR_TYPE_TCP_EMPTY_ACK 0x3
187
188 /* L4 type to indicate TCP packet with acknowledgment. */
189 #define MLX5_L4_HDR_TYPE_TCP_WITH_ACL 0x4
190
191 /* Inner L3 checksum offload (Tunneled packets only). */
192 #define MLX5_ETH_WQE_L3_INNER_CSUM (1u << 4)
193
194 /* Inner L4 checksum offload (Tunneled packets only). */
195 #define MLX5_ETH_WQE_L4_INNER_CSUM (1u << 5)
196
197 /* Outer L4 type is TCP. */
198 #define MLX5_ETH_WQE_L4_OUTER_TCP  (0u << 5)
199
200 /* Outer L4 type is UDP. */
201 #define MLX5_ETH_WQE_L4_OUTER_UDP  (1u << 5)
202
203 /* Outer L3 type is IPV4. */
204 #define MLX5_ETH_WQE_L3_OUTER_IPV4 (0u << 4)
205
206 /* Outer L3 type is IPV6. */
207 #define MLX5_ETH_WQE_L3_OUTER_IPV6 (1u << 4)
208
209 /* Inner L4 type is TCP. */
210 #define MLX5_ETH_WQE_L4_INNER_TCP (0u << 1)
211
212 /* Inner L4 type is UDP. */
213 #define MLX5_ETH_WQE_L4_INNER_UDP (1u << 1)
214
215 /* Inner L3 type is IPV4. */
216 #define MLX5_ETH_WQE_L3_INNER_IPV4 (0u << 0)
217
218 /* Inner L3 type is IPV6. */
219 #define MLX5_ETH_WQE_L3_INNER_IPV6 (1u << 0)
220
221 /* VLAN insertion flag. */
222 #define MLX5_ETH_WQE_VLAN_INSERT (1u << 31)
223
224 /* Data inline segment flag. */
225 #define MLX5_ETH_WQE_DATA_INLINE (1u << 31)
226
227 /* Is flow mark valid. */
228 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
229 #define MLX5_FLOW_MARK_IS_VALID(val) ((val) & 0xffffff00)
230 #else
231 #define MLX5_FLOW_MARK_IS_VALID(val) ((val) & 0xffffff)
232 #endif
233
234 /* INVALID is used by packets matching no flow rules. */
235 #define MLX5_FLOW_MARK_INVALID 0
236
237 /* Maximum allowed value to mark a packet. */
238 #define MLX5_FLOW_MARK_MAX 0xfffff0
239
240 /* Default mark value used when none is provided. */
241 #define MLX5_FLOW_MARK_DEFAULT 0xffffff
242
243 /* Default mark mask for metadata legacy mode. */
244 #define MLX5_FLOW_MARK_MASK 0xffffff
245
246 /* Byte length mask when mark is enable in miniCQE */
247 #define MLX5_LEN_WITH_MARK_MASK 0xffffff00
248
249 /* Maximum number of DS in WQE. Limited by 6-bit field. */
250 #define MLX5_DSEG_MAX 63
251
252 /* The completion mode offset in the WQE control segment line 2. */
253 #define MLX5_COMP_MODE_OFFSET 2
254
255 /* Amount of data bytes in minimal inline data segment. */
256 #define MLX5_DSEG_MIN_INLINE_SIZE 12u
257
258 /* Amount of data bytes in minimal inline eth segment. */
259 #define MLX5_ESEG_MIN_INLINE_SIZE 18u
260
261 /* Amount of data bytes after eth data segment. */
262 #define MLX5_ESEG_EXTRA_DATA_SIZE 32u
263
264 /* The maximum log value of segments per RQ WQE. */
265 #define MLX5_MAX_LOG_RQ_SEGS 5u
266
267 /* The alignment needed for WQ buffer. */
268 #define MLX5_WQE_BUF_ALIGNMENT rte_mem_page_size()
269
270 /* The alignment needed for CQ buffer. */
271 #define MLX5_CQE_BUF_ALIGNMENT rte_mem_page_size()
272
273 /* Completion mode. */
274 enum mlx5_completion_mode {
275         MLX5_COMP_ONLY_ERR = 0x0,
276         MLX5_COMP_ONLY_FIRST_ERR = 0x1,
277         MLX5_COMP_ALWAYS = 0x2,
278         MLX5_COMP_CQE_AND_EQE = 0x3,
279 };
280
281 /* MPW mode. */
282 enum mlx5_mpw_mode {
283         MLX5_MPW_DISABLED,
284         MLX5_MPW,
285         MLX5_MPW_ENHANCED, /* Enhanced Multi-Packet Send WQE, a.k.a MPWv2. */
286 };
287
288 /* WQE Control segment. */
289 struct mlx5_wqe_cseg {
290         uint32_t opcode;
291         uint32_t sq_ds;
292         uint32_t flags;
293         uint32_t misc;
294 } __rte_packed __rte_aligned(MLX5_WSEG_SIZE);
295
296 /*
297  * WQE CSEG opcode field size is 32 bits, divided:
298  * Bits 31:24 OPC_MOD
299  * Bits 23:8 wqe_index
300  * Bits 7:0 OPCODE
301  */
302 #define WQE_CSEG_OPC_MOD_OFFSET         24
303 #define WQE_CSEG_WQE_INDEX_OFFSET        8
304
305 /* Header of data segment. Minimal size Data Segment */
306 struct mlx5_wqe_dseg {
307         uint32_t bcount;
308         union {
309                 uint8_t inline_data[MLX5_DSEG_MIN_INLINE_SIZE];
310                 struct {
311                         uint32_t lkey;
312                         uint64_t pbuf;
313                 } __rte_packed;
314         };
315 } __rte_packed;
316
317 /* Subset of struct WQE Ethernet Segment. */
318 struct mlx5_wqe_eseg {
319         union {
320                 struct {
321                         uint32_t swp_offs;
322                         uint8_t cs_flags;
323                         uint8_t swp_flags;
324                         uint16_t mss;
325                         uint32_t metadata;
326                         uint16_t inline_hdr_sz;
327                         union {
328                                 uint16_t inline_data;
329                                 uint16_t vlan_tag;
330                         };
331                 } __rte_packed;
332                 struct {
333                         uint32_t offsets;
334                         uint32_t flags;
335                         uint32_t flow_metadata;
336                         uint32_t inline_hdr;
337                 } __rte_packed;
338         };
339 } __rte_packed;
340
341 struct mlx5_wqe_qseg {
342         uint32_t reserved0;
343         uint32_t reserved1;
344         uint32_t max_index;
345         uint32_t qpn_cqn;
346 } __rte_packed;
347
348 /* The title WQEBB, header of WQE. */
349 struct mlx5_wqe {
350         union {
351                 struct mlx5_wqe_cseg cseg;
352                 uint32_t ctrl[4];
353         };
354         struct mlx5_wqe_eseg eseg;
355         union {
356                 struct mlx5_wqe_dseg dseg[2];
357                 uint8_t data[MLX5_ESEG_EXTRA_DATA_SIZE];
358         };
359 } __rte_packed;
360
361 /* WQE for Multi-Packet RQ. */
362 struct mlx5_wqe_mprq {
363         struct mlx5_wqe_srq_next_seg next_seg;
364         struct mlx5_wqe_data_seg dseg;
365 };
366
367 #define MLX5_MPRQ_LEN_MASK 0x000ffff
368 #define MLX5_MPRQ_LEN_SHIFT 0
369 #define MLX5_MPRQ_STRIDE_NUM_MASK 0x3fff0000
370 #define MLX5_MPRQ_STRIDE_NUM_SHIFT 16
371 #define MLX5_MPRQ_FILLER_MASK 0x80000000
372 #define MLX5_MPRQ_FILLER_SHIFT 31
373
374 #define MLX5_MPRQ_STRIDE_SHIFT_BYTE 2
375
376 /* CQ element structure - should be equal to the cache line size */
377 struct mlx5_cqe {
378 #if (RTE_CACHE_LINE_SIZE == 128)
379         uint8_t padding[64];
380 #endif
381         uint8_t pkt_info;
382         uint8_t rsvd0;
383         uint16_t wqe_id;
384         uint8_t lro_tcppsh_abort_dupack;
385         uint8_t lro_min_ttl;
386         uint16_t lro_tcp_win;
387         uint32_t lro_ack_seq_num;
388         uint32_t rx_hash_res;
389         uint8_t rx_hash_type;
390         uint8_t rsvd1[3];
391         uint16_t csum;
392         uint8_t rsvd2[6];
393         uint16_t hdr_type_etc;
394         uint16_t vlan_info;
395         uint8_t lro_num_seg;
396         uint8_t rsvd3[3];
397         uint32_t flow_table_metadata;
398         uint8_t rsvd4[4];
399         uint32_t byte_cnt;
400         uint64_t timestamp;
401         uint32_t sop_drop_qpn;
402         uint16_t wqe_counter;
403         uint8_t rsvd5;
404         uint8_t op_own;
405 };
406
407 struct mlx5_cqe_ts {
408         uint64_t timestamp;
409         uint32_t sop_drop_qpn;
410         uint16_t wqe_counter;
411         uint8_t rsvd5;
412         uint8_t op_own;
413 };
414
415 enum {
416         MLX5_BSF_SIZE_16B = 0x0,
417         MLX5_BSF_SIZE_32B = 0x1,
418         MLX5_BSF_SIZE_64B = 0x2,
419         MLX5_BSF_SIZE_128B = 0x3,
420 };
421
422 enum {
423         MLX5_BSF_P_TYPE_SIGNATURE = 0x0,
424         MLX5_BSF_P_TYPE_CRYPTO = 0x1,
425 };
426
427 enum {
428         MLX5_ENCRYPTION_ORDER_ENCRYPTED_WIRE_SIGNATURE = 0x0,
429         MLX5_ENCRYPTION_ORDER_ENCRYPTED_MEMORY_SIGNATURE = 0x1,
430         MLX5_ENCRYPTION_ORDER_ENCRYPTED_RAW_WIRE = 0x2,
431         MLX5_ENCRYPTION_ORDER_ENCRYPTED_RAW_MEMORY = 0x3,
432 };
433
434 enum {
435         MLX5_ENCRYPTION_STANDARD_AES_XTS = 0x0,
436 };
437
438 enum {
439         MLX5_BLOCK_SIZE_512B    = 0x1,
440         MLX5_BLOCK_SIZE_520B    = 0x2,
441         MLX5_BLOCK_SIZE_4096B   = 0x3,
442         MLX5_BLOCK_SIZE_4160B   = 0x4,
443         MLX5_BLOCK_SIZE_1MB     = 0x5,
444         MLX5_BLOCK_SIZE_4048B   = 0x6,
445 };
446
447 #define MLX5_BSF_SIZE_OFFSET            30
448 #define MLX5_BSF_P_TYPE_OFFSET          24
449 #define MLX5_ENCRYPTION_ORDER_OFFSET    16
450 #define MLX5_BLOCK_SIZE_OFFSET          24
451
452 struct mlx5_wqe_umr_bsf_seg {
453         /*
454          * bs_bpt_eo_es contains:
455          * bs   bsf_size                2 bits at MLX5_BSF_SIZE_OFFSET
456          * bpt  bsf_p_type              2 bits at MLX5_BSF_P_TYPE_OFFSET
457          * eo   encryption_order        4 bits at MLX5_ENCRYPTION_ORDER_OFFSET
458          * es   encryption_standard     4 bits at offset 0
459          */
460         uint32_t bs_bpt_eo_es;
461         uint32_t raw_data_size;
462         /*
463          * bsp_res contains:
464          * bsp  crypto_block_size_pointer       8 bits at MLX5_BLOCK_SIZE_OFFSET
465          * res  reserved 24 bits
466          */
467         uint32_t bsp_res;
468         uint32_t reserved0;
469         uint8_t xts_initial_tweak[16];
470         /*
471          * res_dp contains:
472          * res  reserved 8 bits
473          * dp   dek_pointer             24 bits at offset 0
474          */
475         uint32_t res_dp;
476         uint32_t reserved1;
477         uint64_t keytag;
478         uint32_t reserved2[4];
479 } __rte_packed;
480
481 /* GGA */
482 /* MMO metadata segment */
483
484 #define MLX5_OPCODE_MMO 0x2fu
485 #define MLX5_OPC_MOD_MMO_REGEX 0x4u
486 #define MLX5_OPC_MOD_MMO_COMP 0x2u
487 #define MLX5_OPC_MOD_MMO_DECOMP 0x3u
488 #define MLX5_OPC_MOD_MMO_DMA 0x1u
489
490 #define WQE_GGA_COMP_WIN_SIZE_OFFSET 12u
491 #define WQE_GGA_COMP_BLOCK_SIZE_OFFSET 16u
492 #define WQE_GGA_COMP_DYNAMIC_SIZE_OFFSET 20u
493 #define MLX5_GGA_COMP_WIN_SIZE_UNITS 1024u
494 #define MLX5_GGA_COMP_WIN_SIZE_MAX (32u * MLX5_GGA_COMP_WIN_SIZE_UNITS)
495 #define MLX5_GGA_COMP_LOG_BLOCK_SIZE_MAX 15u
496 #define MLX5_GGA_COMP_LOG_DYNAMIC_SIZE_MAX 15u
497 #define MLX5_GGA_COMP_LOG_DYNAMIC_SIZE_MIN 0u
498
499 struct mlx5_wqe_metadata_seg {
500         uint32_t mmo_control_31_0; /* mmo_control_63_32 is in ctrl_seg.imm */
501         uint32_t lkey;
502         uint64_t addr;
503 };
504
505 struct mlx5_gga_wqe {
506         uint32_t opcode;
507         uint32_t sq_ds;
508         uint32_t flags;
509         uint32_t gga_ctrl1;  /* ws 12-15, bs 16-19, dyns 20-23. */
510         uint32_t gga_ctrl2;
511         uint32_t opaque_lkey;
512         uint64_t opaque_vaddr;
513         struct mlx5_wqe_dseg gather;
514         struct mlx5_wqe_dseg scatter;
515 } __rte_packed;
516
517 struct mlx5_gga_compress_opaque {
518         uint32_t syndrom;
519         uint32_t reserved0;
520         uint32_t scattered_length;
521         uint32_t gathered_length;
522         uint64_t scatter_crc;
523         uint64_t gather_crc;
524         uint32_t crc32;
525         uint32_t adler32;
526         uint8_t reserved1[216];
527 } __rte_packed;
528
529 struct mlx5_ifc_regexp_mmo_control_bits {
530         uint8_t reserved_at_31[0x2];
531         uint8_t le[0x1];
532         uint8_t reserved_at_28[0x1];
533         uint8_t subset_id_0[0xc];
534         uint8_t reserved_at_16[0x4];
535         uint8_t subset_id_1[0xc];
536         uint8_t ctrl[0x4];
537         uint8_t subset_id_2[0xc];
538         uint8_t reserved_at_16_1[0x4];
539         uint8_t subset_id_3[0xc];
540 };
541
542 struct mlx5_ifc_regexp_metadata_bits {
543         uint8_t rof_version[0x10];
544         uint8_t latency_count[0x10];
545         uint8_t instruction_count[0x10];
546         uint8_t primary_thread_count[0x10];
547         uint8_t match_count[0x8];
548         uint8_t detected_match_count[0x8];
549         uint8_t status[0x10];
550         uint8_t job_id[0x20];
551         uint8_t reserved[0x80];
552 };
553
554 struct mlx5_ifc_regexp_match_tuple_bits {
555         uint8_t length[0x10];
556         uint8_t start_ptr[0x10];
557         uint8_t rule_id[0x20];
558 };
559
560 /* Adding direct verbs to data-path. */
561
562 /* CQ sequence number mask. */
563 #define MLX5_CQ_SQN_MASK 0x3
564
565 /* CQ sequence number index. */
566 #define MLX5_CQ_SQN_OFFSET 28
567
568 /* CQ doorbell index mask. */
569 #define MLX5_CI_MASK 0xffffff
570
571 /* CQ doorbell offset. */
572 #define MLX5_CQ_ARM_DB 1
573
574 /* CQ doorbell offset*/
575 #define MLX5_CQ_DOORBELL 0x20
576
577 /* CQE format value. */
578 #define MLX5_COMPRESSED 0x3
579
580 /* CQ doorbell cmd types. */
581 #define MLX5_CQ_DBR_CMD_SOL_ONLY (1 << 24)
582 #define MLX5_CQ_DBR_CMD_ALL (0 << 24)
583
584 /* Action type of header modification. */
585 enum {
586         MLX5_MODIFICATION_TYPE_SET = 0x1,
587         MLX5_MODIFICATION_TYPE_ADD = 0x2,
588         MLX5_MODIFICATION_TYPE_COPY = 0x3,
589 };
590
591 /* The field of packet to be modified. */
592 enum mlx5_modification_field {
593         MLX5_MODI_OUT_NONE = -1,
594         MLX5_MODI_OUT_SMAC_47_16 = 1,
595         MLX5_MODI_OUT_SMAC_15_0,
596         MLX5_MODI_OUT_ETHERTYPE,
597         MLX5_MODI_OUT_DMAC_47_16,
598         MLX5_MODI_OUT_DMAC_15_0,
599         MLX5_MODI_OUT_IP_DSCP,
600         MLX5_MODI_OUT_TCP_FLAGS,
601         MLX5_MODI_OUT_TCP_SPORT,
602         MLX5_MODI_OUT_TCP_DPORT,
603         MLX5_MODI_OUT_IPV4_TTL,
604         MLX5_MODI_OUT_UDP_SPORT,
605         MLX5_MODI_OUT_UDP_DPORT,
606         MLX5_MODI_OUT_SIPV6_127_96,
607         MLX5_MODI_OUT_SIPV6_95_64,
608         MLX5_MODI_OUT_SIPV6_63_32,
609         MLX5_MODI_OUT_SIPV6_31_0,
610         MLX5_MODI_OUT_DIPV6_127_96,
611         MLX5_MODI_OUT_DIPV6_95_64,
612         MLX5_MODI_OUT_DIPV6_63_32,
613         MLX5_MODI_OUT_DIPV6_31_0,
614         MLX5_MODI_OUT_SIPV4,
615         MLX5_MODI_OUT_DIPV4,
616         MLX5_MODI_OUT_FIRST_VID,
617         MLX5_MODI_IN_SMAC_47_16 = 0x31,
618         MLX5_MODI_IN_SMAC_15_0,
619         MLX5_MODI_IN_ETHERTYPE,
620         MLX5_MODI_IN_DMAC_47_16,
621         MLX5_MODI_IN_DMAC_15_0,
622         MLX5_MODI_IN_IP_DSCP,
623         MLX5_MODI_IN_TCP_FLAGS,
624         MLX5_MODI_IN_TCP_SPORT,
625         MLX5_MODI_IN_TCP_DPORT,
626         MLX5_MODI_IN_IPV4_TTL,
627         MLX5_MODI_IN_UDP_SPORT,
628         MLX5_MODI_IN_UDP_DPORT,
629         MLX5_MODI_IN_SIPV6_127_96,
630         MLX5_MODI_IN_SIPV6_95_64,
631         MLX5_MODI_IN_SIPV6_63_32,
632         MLX5_MODI_IN_SIPV6_31_0,
633         MLX5_MODI_IN_DIPV6_127_96,
634         MLX5_MODI_IN_DIPV6_95_64,
635         MLX5_MODI_IN_DIPV6_63_32,
636         MLX5_MODI_IN_DIPV6_31_0,
637         MLX5_MODI_IN_SIPV4,
638         MLX5_MODI_IN_DIPV4,
639         MLX5_MODI_OUT_IPV6_HOPLIMIT,
640         MLX5_MODI_IN_IPV6_HOPLIMIT,
641         MLX5_MODI_META_DATA_REG_A,
642         MLX5_MODI_META_DATA_REG_B = 0x50,
643         MLX5_MODI_META_REG_C_0,
644         MLX5_MODI_META_REG_C_1,
645         MLX5_MODI_META_REG_C_2,
646         MLX5_MODI_META_REG_C_3,
647         MLX5_MODI_META_REG_C_4,
648         MLX5_MODI_META_REG_C_5,
649         MLX5_MODI_META_REG_C_6,
650         MLX5_MODI_META_REG_C_7,
651         MLX5_MODI_OUT_TCP_SEQ_NUM,
652         MLX5_MODI_IN_TCP_SEQ_NUM,
653         MLX5_MODI_OUT_TCP_ACK_NUM,
654         MLX5_MODI_IN_TCP_ACK_NUM = 0x5C,
655         MLX5_MODI_GTP_TEID = 0x6E,
656 };
657
658 /* Total number of metadata reg_c's. */
659 #define MLX5_MREG_C_NUM (MLX5_MODI_META_REG_C_7 - MLX5_MODI_META_REG_C_0 + 1)
660
661 enum modify_reg {
662         REG_NON = 0,
663         REG_A,
664         REG_B,
665         REG_C_0,
666         REG_C_1,
667         REG_C_2,
668         REG_C_3,
669         REG_C_4,
670         REG_C_5,
671         REG_C_6,
672         REG_C_7,
673 };
674
675 /* Modification sub command. */
676 struct mlx5_modification_cmd {
677         union {
678                 uint32_t data0;
679                 struct {
680                         unsigned int length:5;
681                         unsigned int rsvd0:3;
682                         unsigned int offset:5;
683                         unsigned int rsvd1:3;
684                         unsigned int field:12;
685                         unsigned int action_type:4;
686                 };
687         };
688         union {
689                 uint32_t data1;
690                 uint8_t data[4];
691                 struct {
692                         unsigned int rsvd2:8;
693                         unsigned int dst_offset:5;
694                         unsigned int rsvd3:3;
695                         unsigned int dst_field:12;
696                         unsigned int rsvd4:4;
697                 };
698         };
699 };
700
701 typedef uint64_t u64;
702 typedef uint32_t u32;
703 typedef uint16_t u16;
704 typedef uint8_t u8;
705
706 #define __mlx5_nullp(typ) ((struct mlx5_ifc_##typ##_bits *)0)
707 #define __mlx5_bit_sz(typ, fld) sizeof(__mlx5_nullp(typ)->fld)
708 #define __mlx5_bit_off(typ, fld) ((unsigned int)(uintptr_t) \
709                                   (&(__mlx5_nullp(typ)->fld)))
710 #define __mlx5_dw_bit_off(typ, fld) (32 - __mlx5_bit_sz(typ, fld) - \
711                                     (__mlx5_bit_off(typ, fld) & 0x1f))
712 #define __mlx5_dw_off(typ, fld) (__mlx5_bit_off(typ, fld) / 32)
713 #define __mlx5_64_off(typ, fld) (__mlx5_bit_off(typ, fld) / 64)
714 #define __mlx5_dw_mask(typ, fld) (__mlx5_mask(typ, fld) << \
715                                   __mlx5_dw_bit_off(typ, fld))
716 #define __mlx5_mask(typ, fld) ((u32)((1ull << __mlx5_bit_sz(typ, fld)) - 1))
717 #define __mlx5_16_off(typ, fld) (__mlx5_bit_off(typ, fld) / 16)
718 #define __mlx5_16_bit_off(typ, fld) (16 - __mlx5_bit_sz(typ, fld) - \
719                                     (__mlx5_bit_off(typ, fld) & 0xf))
720 #define __mlx5_mask16(typ, fld) ((u16)((1ull << __mlx5_bit_sz(typ, fld)) - 1))
721 #define __mlx5_16_mask(typ, fld) (__mlx5_mask16(typ, fld) << \
722                                   __mlx5_16_bit_off(typ, fld))
723 #define MLX5_ST_SZ_BYTES(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 8)
724 #define MLX5_ST_SZ_DW(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 32)
725 #define MLX5_BYTE_OFF(typ, fld) (__mlx5_bit_off(typ, fld) / 8)
726 #define MLX5_ADDR_OF(typ, p, fld) ((char *)(p) + MLX5_BYTE_OFF(typ, fld))
727
728 /* insert a value to a struct */
729 #define MLX5_SET(typ, p, fld, v) \
730         do { \
731                 u32 _v = v; \
732                 *((rte_be32_t *)(p) + __mlx5_dw_off(typ, fld)) = \
733                 rte_cpu_to_be_32((rte_be_to_cpu_32(*((u32 *)(p) + \
734                                   __mlx5_dw_off(typ, fld))) & \
735                                   (~__mlx5_dw_mask(typ, fld))) | \
736                                  (((_v) & __mlx5_mask(typ, fld)) << \
737                                    __mlx5_dw_bit_off(typ, fld))); \
738         } while (0)
739
740 #define MLX5_SET64(typ, p, fld, v) \
741         do { \
742                 MLX5_ASSERT(__mlx5_bit_sz(typ, fld) == 64); \
743                 *((rte_be64_t *)(p) + __mlx5_64_off(typ, fld)) = \
744                         rte_cpu_to_be_64(v); \
745         } while (0)
746
747 #define MLX5_SET16(typ, p, fld, v) \
748         do { \
749                 u16 _v = v; \
750                 *((rte_be16_t *)(p) + __mlx5_16_off(typ, fld)) = \
751                 rte_cpu_to_be_16((rte_be_to_cpu_16(*((rte_be16_t *)(p) + \
752                                   __mlx5_16_off(typ, fld))) & \
753                                   (~__mlx5_16_mask(typ, fld))) | \
754                                  (((_v) & __mlx5_mask16(typ, fld)) << \
755                                   __mlx5_16_bit_off(typ, fld))); \
756         } while (0)
757
758 #define MLX5_GET_VOLATILE(typ, p, fld) \
759         ((rte_be_to_cpu_32(*((volatile __be32 *)(p) +\
760         __mlx5_dw_off(typ, fld))) >> __mlx5_dw_bit_off(typ, fld)) & \
761         __mlx5_mask(typ, fld))
762 #define MLX5_GET(typ, p, fld) \
763         ((rte_be_to_cpu_32(*((rte_be32_t *)(p) +\
764         __mlx5_dw_off(typ, fld))) >> __mlx5_dw_bit_off(typ, fld)) & \
765         __mlx5_mask(typ, fld))
766 #define MLX5_GET16(typ, p, fld) \
767         ((rte_be_to_cpu_16(*((rte_be16_t *)(p) + \
768           __mlx5_16_off(typ, fld))) >> __mlx5_16_bit_off(typ, fld)) & \
769          __mlx5_mask16(typ, fld))
770 #define MLX5_GET64(typ, p, fld) rte_be_to_cpu_64(*((rte_be64_t *)(p) + \
771                                                    __mlx5_64_off(typ, fld)))
772 #define MLX5_FLD_SZ_BYTES(typ, fld) (__mlx5_bit_sz(typ, fld) / 8)
773 #define MLX5_UN_SZ_BYTES(typ) (sizeof(union mlx5_ifc_##typ##_bits) / 8)
774
775 struct mlx5_ifc_fte_match_set_misc_bits {
776         u8 gre_c_present[0x1];
777         u8 reserved_at_1[0x1];
778         u8 gre_k_present[0x1];
779         u8 gre_s_present[0x1];
780         u8 source_vhci_port[0x4];
781         u8 source_sqn[0x18];
782         u8 reserved_at_20[0x10];
783         u8 source_port[0x10];
784         u8 outer_second_prio[0x3];
785         u8 outer_second_cfi[0x1];
786         u8 outer_second_vid[0xc];
787         u8 inner_second_prio[0x3];
788         u8 inner_second_cfi[0x1];
789         u8 inner_second_vid[0xc];
790         u8 outer_second_cvlan_tag[0x1];
791         u8 inner_second_cvlan_tag[0x1];
792         u8 outer_second_svlan_tag[0x1];
793         u8 inner_second_svlan_tag[0x1];
794         u8 reserved_at_64[0xc];
795         u8 gre_protocol[0x10];
796         u8 gre_key_h[0x18];
797         u8 gre_key_l[0x8];
798         u8 vxlan_vni[0x18];
799         u8 reserved_at_b8[0x8];
800         u8 geneve_vni[0x18];
801         u8 reserved_at_e4[0x7];
802         u8 geneve_oam[0x1];
803         u8 reserved_at_e0[0xc];
804         u8 outer_ipv6_flow_label[0x14];
805         u8 reserved_at_100[0xc];
806         u8 inner_ipv6_flow_label[0x14];
807         u8 reserved_at_120[0xa];
808         u8 geneve_opt_len[0x6];
809         u8 geneve_protocol_type[0x10];
810         u8 reserved_at_140[0xc0];
811 };
812
813 struct mlx5_ifc_ipv4_layout_bits {
814         u8 reserved_at_0[0x60];
815         u8 ipv4[0x20];
816 };
817
818 struct mlx5_ifc_ipv6_layout_bits {
819         u8 ipv6[16][0x8];
820 };
821
822 union mlx5_ifc_ipv6_layout_ipv4_layout_auto_bits {
823         struct mlx5_ifc_ipv6_layout_bits ipv6_layout;
824         struct mlx5_ifc_ipv4_layout_bits ipv4_layout;
825         u8 reserved_at_0[0x80];
826 };
827
828 struct mlx5_ifc_fte_match_set_lyr_2_4_bits {
829         u8 smac_47_16[0x20];
830         u8 smac_15_0[0x10];
831         u8 ethertype[0x10];
832         u8 dmac_47_16[0x20];
833         u8 dmac_15_0[0x10];
834         u8 first_prio[0x3];
835         u8 first_cfi[0x1];
836         u8 first_vid[0xc];
837         u8 ip_protocol[0x8];
838         u8 ip_dscp[0x6];
839         u8 ip_ecn[0x2];
840         u8 cvlan_tag[0x1];
841         u8 svlan_tag[0x1];
842         u8 frag[0x1];
843         u8 ip_version[0x4];
844         u8 tcp_flags[0x9];
845         u8 tcp_sport[0x10];
846         u8 tcp_dport[0x10];
847         u8 reserved_at_c0[0x18];
848         u8 ip_ttl_hoplimit[0x8];
849         u8 udp_sport[0x10];
850         u8 udp_dport[0x10];
851         union mlx5_ifc_ipv6_layout_ipv4_layout_auto_bits src_ipv4_src_ipv6;
852         union mlx5_ifc_ipv6_layout_ipv4_layout_auto_bits dst_ipv4_dst_ipv6;
853 };
854
855 struct mlx5_ifc_fte_match_mpls_bits {
856         u8 mpls_label[0x14];
857         u8 mpls_exp[0x3];
858         u8 mpls_s_bos[0x1];
859         u8 mpls_ttl[0x8];
860 };
861
862 struct mlx5_ifc_fte_match_set_misc2_bits {
863         struct mlx5_ifc_fte_match_mpls_bits outer_first_mpls;
864         struct mlx5_ifc_fte_match_mpls_bits inner_first_mpls;
865         struct mlx5_ifc_fte_match_mpls_bits outer_first_mpls_over_gre;
866         struct mlx5_ifc_fte_match_mpls_bits outer_first_mpls_over_udp;
867         u8 metadata_reg_c_7[0x20];
868         u8 metadata_reg_c_6[0x20];
869         u8 metadata_reg_c_5[0x20];
870         u8 metadata_reg_c_4[0x20];
871         u8 metadata_reg_c_3[0x20];
872         u8 metadata_reg_c_2[0x20];
873         u8 metadata_reg_c_1[0x20];
874         u8 metadata_reg_c_0[0x20];
875         u8 metadata_reg_a[0x20];
876         u8 metadata_reg_b[0x20];
877         u8 reserved_at_1c0[0x40];
878 };
879
880 struct mlx5_ifc_fte_match_set_misc3_bits {
881         u8 inner_tcp_seq_num[0x20];
882         u8 outer_tcp_seq_num[0x20];
883         u8 inner_tcp_ack_num[0x20];
884         u8 outer_tcp_ack_num[0x20];
885         u8 reserved_at_auto1[0x8];
886         u8 outer_vxlan_gpe_vni[0x18];
887         u8 outer_vxlan_gpe_next_protocol[0x8];
888         u8 outer_vxlan_gpe_flags[0x8];
889         u8 reserved_at_a8[0x10];
890         u8 icmp_header_data[0x20];
891         u8 icmpv6_header_data[0x20];
892         u8 icmp_type[0x8];
893         u8 icmp_code[0x8];
894         u8 icmpv6_type[0x8];
895         u8 icmpv6_code[0x8];
896         u8 geneve_tlv_option_0_data[0x20];
897         u8 gtpu_teid[0x20];
898         u8 gtpu_msg_type[0x08];
899         u8 gtpu_msg_flags[0x08];
900         u8 reserved_at_170[0x10];
901         u8 gtpu_dw_2[0x20];
902         u8 gtpu_first_ext_dw_0[0x20];
903         u8 gtpu_dw_0[0x20];
904         u8 reserved_at_240[0x20];
905
906 };
907
908 struct mlx5_ifc_fte_match_set_misc4_bits {
909         u8 prog_sample_field_value_0[0x20];
910         u8 prog_sample_field_id_0[0x20];
911         u8 prog_sample_field_value_1[0x20];
912         u8 prog_sample_field_id_1[0x20];
913         u8 prog_sample_field_value_2[0x20];
914         u8 prog_sample_field_id_2[0x20];
915         u8 prog_sample_field_value_3[0x20];
916         u8 prog_sample_field_id_3[0x20];
917         u8 reserved_at_100[0x100];
918 };
919
920 /* Flow matcher. */
921 struct mlx5_ifc_fte_match_param_bits {
922         struct mlx5_ifc_fte_match_set_lyr_2_4_bits outer_headers;
923         struct mlx5_ifc_fte_match_set_misc_bits misc_parameters;
924         struct mlx5_ifc_fte_match_set_lyr_2_4_bits inner_headers;
925         struct mlx5_ifc_fte_match_set_misc2_bits misc_parameters_2;
926         struct mlx5_ifc_fte_match_set_misc3_bits misc_parameters_3;
927         struct mlx5_ifc_fte_match_set_misc4_bits misc_parameters_4;
928 /*
929  * Add reserved bit to match the struct size with the size defined in PRM.
930  * This extension is not required in Linux.
931  */
932 #ifndef HAVE_INFINIBAND_VERBS_H
933         u8 reserved_0[0x400];
934 #endif
935 };
936
937 struct mlx5_ifc_dest_format_struct_bits {
938         u8 destination_type[0x8];
939         u8 destination_id[0x18];
940         u8 reserved_0[0x20];
941 };
942
943 enum {
944         MLX5_MATCH_CRITERIA_ENABLE_OUTER_BIT,
945         MLX5_MATCH_CRITERIA_ENABLE_MISC_BIT,
946         MLX5_MATCH_CRITERIA_ENABLE_INNER_BIT,
947         MLX5_MATCH_CRITERIA_ENABLE_MISC2_BIT,
948         MLX5_MATCH_CRITERIA_ENABLE_MISC3_BIT,
949         MLX5_MATCH_CRITERIA_ENABLE_MISC4_BIT,
950 };
951
952 enum {
953         MLX5_CMD_OP_QUERY_HCA_CAP = 0x100,
954         MLX5_CMD_OP_CREATE_MKEY = 0x200,
955         MLX5_CMD_OP_CREATE_CQ = 0x400,
956         MLX5_CMD_OP_CREATE_QP = 0x500,
957         MLX5_CMD_OP_RST2INIT_QP = 0x502,
958         MLX5_CMD_OP_INIT2RTR_QP = 0x503,
959         MLX5_CMD_OP_RTR2RTS_QP = 0x504,
960         MLX5_CMD_OP_RTS2RTS_QP = 0x505,
961         MLX5_CMD_OP_SQERR2RTS_QP = 0x506,
962         MLX5_CMD_OP_QP_2ERR = 0x507,
963         MLX5_CMD_OP_QP_2RST = 0x50A,
964         MLX5_CMD_OP_QUERY_QP = 0x50B,
965         MLX5_CMD_OP_SQD2RTS_QP = 0x50C,
966         MLX5_CMD_OP_INIT2INIT_QP = 0x50E,
967         MLX5_CMD_OP_SUSPEND_QP = 0x50F,
968         MLX5_CMD_OP_RESUME_QP = 0x510,
969         MLX5_CMD_OP_QUERY_NIC_VPORT_CONTEXT = 0x754,
970         MLX5_CMD_OP_ALLOC_Q_COUNTER = 0x771,
971         MLX5_CMD_OP_QUERY_Q_COUNTER = 0x773,
972         MLX5_CMD_OP_ALLOC_PD = 0x800,
973         MLX5_CMD_OP_DEALLOC_PD = 0x801,
974         MLX5_CMD_OP_ACCESS_REGISTER = 0x805,
975         MLX5_CMD_OP_ALLOC_TRANSPORT_DOMAIN = 0x816,
976         MLX5_CMD_OP_CREATE_TIR = 0x900,
977         MLX5_CMD_OP_MODIFY_TIR = 0x901,
978         MLX5_CMD_OP_CREATE_SQ = 0X904,
979         MLX5_CMD_OP_MODIFY_SQ = 0X905,
980         MLX5_CMD_OP_CREATE_RQ = 0x908,
981         MLX5_CMD_OP_MODIFY_RQ = 0x909,
982         MLX5_CMD_OP_QUERY_RQ = 0x90b,
983         MLX5_CMD_OP_CREATE_TIS = 0x912,
984         MLX5_CMD_OP_QUERY_TIS = 0x915,
985         MLX5_CMD_OP_CREATE_RQT = 0x916,
986         MLX5_CMD_OP_MODIFY_RQT = 0x917,
987         MLX5_CMD_OP_ALLOC_FLOW_COUNTER = 0x939,
988         MLX5_CMD_OP_QUERY_FLOW_COUNTER = 0x93b,
989         MLX5_CMD_OP_CREATE_GENERAL_OBJECT = 0xa00,
990         MLX5_CMD_OP_MODIFY_GENERAL_OBJECT = 0xa01,
991         MLX5_CMD_OP_QUERY_GENERAL_OBJECT = 0xa02,
992         MLX5_CMD_SET_REGEX_PARAMS = 0xb04,
993         MLX5_CMD_QUERY_REGEX_PARAMS = 0xb05,
994         MLX5_CMD_SET_REGEX_REGISTERS = 0xb06,
995         MLX5_CMD_QUERY_REGEX_REGISTERS = 0xb07,
996         MLX5_CMD_OP_ACCESS_REGISTER_USER = 0xb0c,
997 };
998
999 enum {
1000         MLX5_MKC_ACCESS_MODE_MTT   = 0x1,
1001         MLX5_MKC_ACCESS_MODE_KLM   = 0x2,
1002         MLX5_MKC_ACCESS_MODE_KLM_FBS = 0x3,
1003 };
1004
1005 #define MLX5_ADAPTER_PAGE_SHIFT 12
1006 #define MLX5_LOG_RQ_STRIDE_SHIFT 4
1007 /**
1008  * The batch counter dcs id starts from 0x800000 and none batch counter
1009  * starts from 0. As currently, the counter is changed to be indexed by
1010  * pool index and the offset of the counter in the pool counters_raw array.
1011  * It means now the counter index is same for batch and none batch counter.
1012  * Add the 0x800000 batch counter offset to the batch counter index helps
1013  * indicate the counter index is from batch or none batch container pool.
1014  */
1015 #define MLX5_CNT_BATCH_OFFSET 0x800000
1016
1017 /* The counter batch query requires ID align with 4. */
1018 #define MLX5_CNT_BATCH_QUERY_ID_ALIGNMENT 4
1019
1020 /* Flow counters. */
1021 struct mlx5_ifc_alloc_flow_counter_out_bits {
1022         u8 status[0x8];
1023         u8 reserved_at_8[0x18];
1024         u8 syndrome[0x20];
1025         u8 flow_counter_id[0x20];
1026         u8 reserved_at_60[0x20];
1027 };
1028
1029 struct mlx5_ifc_alloc_flow_counter_in_bits {
1030         u8 opcode[0x10];
1031         u8 reserved_at_10[0x10];
1032         u8 reserved_at_20[0x10];
1033         u8 op_mod[0x10];
1034         u8 flow_counter_id[0x20];
1035         u8 reserved_at_40[0x18];
1036         u8 flow_counter_bulk[0x8];
1037 };
1038
1039 struct mlx5_ifc_dealloc_flow_counter_out_bits {
1040         u8 status[0x8];
1041         u8 reserved_at_8[0x18];
1042         u8 syndrome[0x20];
1043         u8 reserved_at_40[0x40];
1044 };
1045
1046 struct mlx5_ifc_dealloc_flow_counter_in_bits {
1047         u8 opcode[0x10];
1048         u8 reserved_at_10[0x10];
1049         u8 reserved_at_20[0x10];
1050         u8 op_mod[0x10];
1051         u8 flow_counter_id[0x20];
1052         u8 reserved_at_60[0x20];
1053 };
1054
1055 struct mlx5_ifc_traffic_counter_bits {
1056         u8 packets[0x40];
1057         u8 octets[0x40];
1058 };
1059
1060 struct mlx5_ifc_query_flow_counter_out_bits {
1061         u8 status[0x8];
1062         u8 reserved_at_8[0x18];
1063         u8 syndrome[0x20];
1064         u8 reserved_at_40[0x40];
1065         struct mlx5_ifc_traffic_counter_bits flow_statistics[];
1066 };
1067
1068 struct mlx5_ifc_query_flow_counter_in_bits {
1069         u8 opcode[0x10];
1070         u8 reserved_at_10[0x10];
1071         u8 reserved_at_20[0x10];
1072         u8 op_mod[0x10];
1073         u8 reserved_at_40[0x20];
1074         u8 mkey[0x20];
1075         u8 address[0x40];
1076         u8 clear[0x1];
1077         u8 dump_to_memory[0x1];
1078         u8 num_of_counters[0x1e];
1079         u8 flow_counter_id[0x20];
1080 };
1081
1082 #define MLX5_MAX_KLM_BYTE_COUNT 0x80000000u
1083 #define MLX5_MIN_KLM_FIXED_BUFFER_SIZE 0x1000u
1084
1085 struct mlx5_ifc_klm_bits {
1086         u8 byte_count[0x20];
1087         u8 mkey[0x20];
1088         u8 address[0x40];
1089 };
1090
1091 struct mlx5_ifc_mkc_bits {
1092         u8 reserved_at_0[0x1];
1093         u8 free[0x1];
1094         u8 reserved_at_2[0x1];
1095         u8 access_mode_4_2[0x3];
1096         u8 reserved_at_6[0x7];
1097         u8 relaxed_ordering_write[0x1];
1098         u8 reserved_at_e[0x1];
1099         u8 small_fence_on_rdma_read_response[0x1];
1100         u8 umr_en[0x1];
1101         u8 a[0x1];
1102         u8 rw[0x1];
1103         u8 rr[0x1];
1104         u8 lw[0x1];
1105         u8 lr[0x1];
1106         u8 access_mode_1_0[0x2];
1107         u8 reserved_at_18[0x8];
1108         u8 qpn[0x18];
1109         u8 mkey_7_0[0x8];
1110         u8 reserved_at_40[0x20];
1111         u8 length64[0x1];
1112         u8 bsf_en[0x1];
1113         u8 sync_umr[0x1];
1114         u8 reserved_at_63[0x2];
1115         u8 expected_sigerr_count[0x1];
1116         u8 reserved_at_66[0x1];
1117         u8 en_rinval[0x1];
1118         u8 pd[0x18];
1119         u8 start_addr[0x40];
1120         u8 len[0x40];
1121         u8 bsf_octword_size[0x20];
1122         u8 reserved_at_120[0x80];
1123         u8 translations_octword_size[0x20];
1124         u8 reserved_at_1c0[0x19];
1125         u8 relaxed_ordering_read[0x1];
1126         u8 reserved_at_1da[0x1];
1127         u8 log_page_size[0x5];
1128         u8 reserved_at_1e0[0x3];
1129         u8 crypto_en[0x2];
1130         u8 reserved_at_1e5[0x1b];
1131 };
1132
1133 /* Range of values for MKEY context crypto_en field. */
1134 enum {
1135         MLX5_MKEY_CRYPTO_DISABLED = 0x0,
1136         MLX5_MKEY_CRYPTO_ENABLED = 0x1,
1137 };
1138
1139 struct mlx5_ifc_create_mkey_out_bits {
1140         u8 status[0x8];
1141         u8 reserved_at_8[0x18];
1142         u8 syndrome[0x20];
1143         u8 reserved_at_40[0x8];
1144         u8 mkey_index[0x18];
1145         u8 reserved_at_60[0x20];
1146 };
1147
1148 struct mlx5_ifc_create_mkey_in_bits {
1149         u8 opcode[0x10];
1150         u8 reserved_at_10[0x10];
1151         u8 reserved_at_20[0x10];
1152         u8 op_mod[0x10];
1153         u8 reserved_at_40[0x20];
1154         u8 pg_access[0x1];
1155         u8 reserved_at_61[0x1f];
1156         struct mlx5_ifc_mkc_bits memory_key_mkey_entry;
1157         u8 reserved_at_280[0x80];
1158         u8 translations_octword_actual_size[0x20];
1159         u8 mkey_umem_id[0x20];
1160         u8 mkey_umem_offset[0x40];
1161         u8 reserved_at_380[0x500];
1162         u8 klm_pas_mtt[][0x20];
1163 };
1164
1165 enum {
1166         MLX5_GET_HCA_CAP_OP_MOD_GENERAL_DEVICE = 0x0 << 1,
1167         MLX5_GET_HCA_CAP_OP_MOD_ETHERNET_OFFLOAD_CAPS = 0x1 << 1,
1168         MLX5_GET_HCA_CAP_OP_MOD_QOS_CAP = 0xc << 1,
1169         MLX5_GET_HCA_CAP_OP_MOD_ROCE = 0x4 << 1,
1170         MLX5_GET_HCA_CAP_OP_MOD_NIC_FLOW_TABLE = 0x7 << 1,
1171         MLX5_GET_HCA_CAP_OP_MOD_VDPA_EMULATION = 0x13 << 1,
1172 };
1173
1174 #define MLX5_GENERAL_OBJ_TYPES_CAP_VIRTQ_NET_Q \
1175                         (1ULL << MLX5_GENERAL_OBJ_TYPE_VIRTQ)
1176 #define MLX5_GENERAL_OBJ_TYPES_CAP_VIRTIO_Q_COUNTERS \
1177                         (1ULL << MLX5_GENERAL_OBJ_TYPE_VIRTIO_Q_COUNTERS)
1178 #define MLX5_GENERAL_OBJ_TYPES_CAP_PARSE_GRAPH_FLEX_NODE \
1179                         (1ULL << MLX5_GENERAL_OBJ_TYPE_FLEX_PARSE_GRAPH)
1180 #define MLX5_GENERAL_OBJ_TYPES_CAP_FLOW_HIT_ASO \
1181                         (1ULL << MLX5_GENERAL_OBJ_TYPE_FLOW_HIT_ASO)
1182 #define MLX5_GENERAL_OBJ_TYPES_CAP_FLOW_METER_ASO \
1183                         (1ULL << MLX5_GENERAL_OBJ_TYPE_FLOW_METER_ASO)
1184 #define MLX5_GENERAL_OBJ_TYPES_CAP_GENEVE_TLV_OPT \
1185                         (1ULL << MLX5_GENERAL_OBJ_TYPE_GENEVE_TLV_OPT)
1186 #define MLX5_GENERAL_OBJ_TYPES_CAP_DEK \
1187                         (1ULL << MLX5_GENERAL_OBJ_TYPE_DEK)
1188 #define MLX5_GENERAL_OBJ_TYPES_CAP_IMPORT_KEK \
1189                         (1ULL << MLX5_GENERAL_OBJ_TYPE_IMPORT_KEK)
1190 #define MLX5_GENERAL_OBJ_TYPES_CAP_CRYPTO_LOGIN \
1191                         (1ULL << MLX5_GENERAL_OBJ_TYPE_CRYPTO_LOGIN)
1192
1193 enum {
1194         MLX5_HCA_CAP_OPMOD_GET_MAX   = 0,
1195         MLX5_HCA_CAP_OPMOD_GET_CUR   = 1,
1196 };
1197
1198 enum {
1199         MLX5_CAP_INLINE_MODE_L2,
1200         MLX5_CAP_INLINE_MODE_VPORT_CONTEXT,
1201         MLX5_CAP_INLINE_MODE_NOT_REQUIRED,
1202 };
1203
1204 enum {
1205         MLX5_INLINE_MODE_NONE,
1206         MLX5_INLINE_MODE_L2,
1207         MLX5_INLINE_MODE_IP,
1208         MLX5_INLINE_MODE_TCP_UDP,
1209         MLX5_INLINE_MODE_RESERVED4,
1210         MLX5_INLINE_MODE_INNER_L2,
1211         MLX5_INLINE_MODE_INNER_IP,
1212         MLX5_INLINE_MODE_INNER_TCP_UDP,
1213 };
1214
1215 /* The supported timestamp formats reported in HCA attributes. */
1216 enum {
1217         MLX5_HCA_CAP_TIMESTAMP_FORMAT_FR = 0x0,
1218         MLX5_HCA_CAP_TIMESTAMP_FORMAT_RT = 0x1,
1219         MLX5_HCA_CAP_TIMESTAMP_FORMAT_FR_RT = 0x2,
1220 };
1221
1222 /* The timestamp format attributes to configure queues (RQ/SQ/QP). */
1223 enum {
1224         MLX5_QPC_TIMESTAMP_FORMAT_FREE_RUNNING = 0x0,
1225         MLX5_QPC_TIMESTAMP_FORMAT_DEFAULT      = 0x1,
1226         MLX5_QPC_TIMESTAMP_FORMAT_REAL_TIME    = 0x2,
1227 };
1228
1229 /* HCA bit masks indicating which Flex parser protocols are already enabled. */
1230 #define MLX5_HCA_FLEX_IPV4_OVER_VXLAN_ENABLED (1UL << 0)
1231 #define MLX5_HCA_FLEX_IPV6_OVER_VXLAN_ENABLED (1UL << 1)
1232 #define MLX5_HCA_FLEX_IPV6_OVER_IP_ENABLED (1UL << 2)
1233 #define MLX5_HCA_FLEX_GENEVE_ENABLED (1UL << 3)
1234 #define MLX5_HCA_FLEX_CW_MPLS_OVER_GRE_ENABLED (1UL << 4)
1235 #define MLX5_HCA_FLEX_CW_MPLS_OVER_UDP_ENABLED (1UL << 5)
1236 #define MLX5_HCA_FLEX_P_BIT_VXLAN_GPE_ENABLED (1UL << 6)
1237 #define MLX5_HCA_FLEX_VXLAN_GPE_ENABLED (1UL << 7)
1238 #define MLX5_HCA_FLEX_ICMP_ENABLED (1UL << 8)
1239 #define MLX5_HCA_FLEX_ICMPV6_ENABLED (1UL << 9)
1240
1241 struct mlx5_ifc_cmd_hca_cap_bits {
1242         u8 reserved_at_0[0x30];
1243         u8 vhca_id[0x10];
1244         u8 reserved_at_40[0x20];
1245         u8 reserved_at_60[0x3];
1246         u8 log_regexp_scatter_gather_size[0x5];
1247         u8 reserved_at_68[0x3];
1248         u8 log_dma_mmo_size[0x5];
1249         u8 reserved_at_70[0x3];
1250         u8 log_compress_mmo_size[0x5];
1251         u8 reserved_at_78[0x3];
1252         u8 log_decompress_mmo_size[0x5];
1253         u8 log_max_srq_sz[0x8];
1254         u8 log_max_qp_sz[0x8];
1255         u8 reserved_at_90[0x9];
1256         u8 wqe_index_ignore_cap[0x1];
1257         u8 dynamic_qp_allocation[0x1];
1258         u8 log_max_qp[0x5];
1259         u8 regexp[0x1];
1260         u8 reserved_at_a1[0x3];
1261         u8 regexp_num_of_engines[0x4];
1262         u8 reserved_at_a8[0x1];
1263         u8 reg_c_preserve[0x1];
1264         u8 reserved_at_aa[0x1];
1265         u8 log_max_srq[0x5];
1266         u8 reserved_at_b0[0x3];
1267         u8 regexp_log_crspace_size[0x5];
1268         u8 reserved_at_b8[0x3];
1269         u8 scatter_fcs_w_decap_disable[0x1];
1270         u8 reserved_at_bc[0x4];
1271         u8 reserved_at_c0[0x8];
1272         u8 log_max_cq_sz[0x8];
1273         u8 reserved_at_d0[0xb];
1274         u8 log_max_cq[0x5];
1275         u8 log_max_eq_sz[0x8];
1276         u8 relaxed_ordering_write[0x1];
1277         u8 relaxed_ordering_read[0x1];
1278         u8 access_register_user[0x1];
1279         u8 log_max_mkey[0x5];
1280         u8 reserved_at_f0[0x8];
1281         u8 dump_fill_mkey[0x1];
1282         u8 reserved_at_f9[0x3];
1283         u8 log_max_eq[0x4];
1284         u8 max_indirection[0x8];
1285         u8 fixed_buffer_size[0x1];
1286         u8 log_max_mrw_sz[0x7];
1287         u8 force_teardown[0x1];
1288         u8 reserved_at_111[0x1];
1289         u8 log_max_bsf_list_size[0x6];
1290         u8 umr_extended_translation_offset[0x1];
1291         u8 null_mkey[0x1];
1292         u8 log_max_klm_list_size[0x6];
1293         u8 non_wire_sq[0x1];
1294         u8 reserved_at_121[0x9];
1295         u8 log_max_ra_req_dc[0x6];
1296         u8 reserved_at_130[0x3];
1297         u8 log_max_static_sq_wq[0x5];
1298         u8 reserved_at_138[0x2];
1299         u8 log_max_ra_res_dc[0x6];
1300         u8 reserved_at_140[0xa];
1301         u8 log_max_ra_req_qp[0x6];
1302         u8 rtr2rts_qp_counters_set_id[0x1];
1303         u8 rts2rts_udp_sport[0x1];
1304         u8 rts2rts_lag_tx_port_affinity[0x1];
1305         u8 dma_mmo[0x1];
1306         u8 compress_min_block_size[0x4];
1307         u8 compress[0x1];
1308         u8 decompress[0x1];
1309         u8 log_max_ra_res_qp[0x6];
1310         u8 end_pad[0x1];
1311         u8 cc_query_allowed[0x1];
1312         u8 cc_modify_allowed[0x1];
1313         u8 start_pad[0x1];
1314         u8 cache_line_128byte[0x1];
1315         u8 reserved_at_165[0xa];
1316         u8 qcam_reg[0x1];
1317         u8 gid_table_size[0x10];
1318         u8 out_of_seq_cnt[0x1];
1319         u8 vport_counters[0x1];
1320         u8 retransmission_q_counters[0x1];
1321         u8 debug[0x1];
1322         u8 modify_rq_counter_set_id[0x1];
1323         u8 rq_delay_drop[0x1];
1324         u8 max_qp_cnt[0xa];
1325         u8 pkey_table_size[0x10];
1326         u8 vport_group_manager[0x1];
1327         u8 vhca_group_manager[0x1];
1328         u8 ib_virt[0x1];
1329         u8 eth_virt[0x1];
1330         u8 vnic_env_queue_counters[0x1];
1331         u8 ets[0x1];
1332         u8 nic_flow_table[0x1];
1333         u8 eswitch_manager[0x1];
1334         u8 device_memory[0x1];
1335         u8 mcam_reg[0x1];
1336         u8 pcam_reg[0x1];
1337         u8 local_ca_ack_delay[0x5];
1338         u8 port_module_event[0x1];
1339         u8 enhanced_error_q_counters[0x1];
1340         u8 ports_check[0x1];
1341         u8 reserved_at_1b3[0x1];
1342         u8 disable_link_up[0x1];
1343         u8 beacon_led[0x1];
1344         u8 port_type[0x2];
1345         u8 num_ports[0x8];
1346         u8 reserved_at_1c0[0x1];
1347         u8 pps[0x1];
1348         u8 pps_modify[0x1];
1349         u8 log_max_msg[0x5];
1350         u8 reserved_at_1c8[0x4];
1351         u8 max_tc[0x4];
1352         u8 temp_warn_event[0x1];
1353         u8 dcbx[0x1];
1354         u8 general_notification_event[0x1];
1355         u8 reserved_at_1d3[0x2];
1356         u8 fpga[0x1];
1357         u8 rol_s[0x1];
1358         u8 rol_g[0x1];
1359         u8 reserved_at_1d8[0x1];
1360         u8 wol_s[0x1];
1361         u8 wol_g[0x1];
1362         u8 wol_a[0x1];
1363         u8 wol_b[0x1];
1364         u8 wol_m[0x1];
1365         u8 wol_u[0x1];
1366         u8 wol_p[0x1];
1367         u8 stat_rate_support[0x10];
1368         u8 reserved_at_1f0[0xc];
1369         u8 cqe_version[0x4];
1370         u8 compact_address_vector[0x1];
1371         u8 striding_rq[0x1];
1372         u8 reserved_at_202[0x1];
1373         u8 ipoib_enhanced_offloads[0x1];
1374         u8 ipoib_basic_offloads[0x1];
1375         u8 reserved_at_205[0x1];
1376         u8 repeated_block_disabled[0x1];
1377         u8 umr_modify_entity_size_disabled[0x1];
1378         u8 umr_modify_atomic_disabled[0x1];
1379         u8 umr_indirect_mkey_disabled[0x1];
1380         u8 umr_fence[0x2];
1381         u8 reserved_at_20c[0x3];
1382         u8 drain_sigerr[0x1];
1383         u8 cmdif_checksum[0x2];
1384         u8 sigerr_cqe[0x1];
1385         u8 reserved_at_213[0x1];
1386         u8 wq_signature[0x1];
1387         u8 sctr_data_cqe[0x1];
1388         u8 reserved_at_216[0x1];
1389         u8 sho[0x1];
1390         u8 tph[0x1];
1391         u8 rf[0x1];
1392         u8 dct[0x1];
1393         u8 qos[0x1];
1394         u8 eth_net_offloads[0x1];
1395         u8 roce[0x1];
1396         u8 atomic[0x1];
1397         u8 reserved_at_21f[0x1];
1398         u8 cq_oi[0x1];
1399         u8 cq_resize[0x1];
1400         u8 cq_moderation[0x1];
1401         u8 reserved_at_223[0x3];
1402         u8 cq_eq_remap[0x1];
1403         u8 pg[0x1];
1404         u8 block_lb_mc[0x1];
1405         u8 reserved_at_229[0x1];
1406         u8 scqe_break_moderation[0x1];
1407         u8 cq_period_start_from_cqe[0x1];
1408         u8 cd[0x1];
1409         u8 reserved_at_22d[0x1];
1410         u8 apm[0x1];
1411         u8 vector_calc[0x1];
1412         u8 umr_ptr_rlky[0x1];
1413         u8 imaicl[0x1];
1414         u8 reserved_at_232[0x4];
1415         u8 qkv[0x1];
1416         u8 pkv[0x1];
1417         u8 set_deth_sqpn[0x1];
1418         u8 reserved_at_239[0x3];
1419         u8 xrc[0x1];
1420         u8 ud[0x1];
1421         u8 uc[0x1];
1422         u8 rc[0x1];
1423         u8 uar_4k[0x1];
1424         u8 reserved_at_241[0x9];
1425         u8 uar_sz[0x6];
1426         u8 reserved_at_250[0x8];
1427         u8 log_pg_sz[0x8];
1428         u8 bf[0x1];
1429         u8 driver_version[0x1];
1430         u8 pad_tx_eth_packet[0x1];
1431         u8 reserved_at_263[0x8];
1432         u8 log_bf_reg_size[0x5];
1433         u8 reserved_at_270[0xb];
1434         u8 lag_master[0x1];
1435         u8 num_lag_ports[0x4];
1436         u8 reserved_at_280[0x10];
1437         u8 max_wqe_sz_sq[0x10];
1438         u8 reserved_at_2a0[0x10];
1439         u8 max_wqe_sz_rq[0x10];
1440         u8 max_flow_counter_31_16[0x10];
1441         u8 max_wqe_sz_sq_dc[0x10];
1442         u8 reserved_at_2e0[0x7];
1443         u8 max_qp_mcg[0x19];
1444         u8 reserved_at_300[0x10];
1445         u8 flow_counter_bulk_alloc[0x08];
1446         u8 log_max_mcg[0x8];
1447         u8 reserved_at_320[0x3];
1448         u8 log_max_transport_domain[0x5];
1449         u8 reserved_at_328[0x3];
1450         u8 log_max_pd[0x5];
1451         u8 reserved_at_330[0xb];
1452         u8 log_max_xrcd[0x5];
1453         u8 nic_receive_steering_discard[0x1];
1454         u8 receive_discard_vport_down[0x1];
1455         u8 transmit_discard_vport_down[0x1];
1456         u8 reserved_at_343[0x5];
1457         u8 log_max_flow_counter_bulk[0x8];
1458         u8 max_flow_counter_15_0[0x10];
1459         u8 modify_tis[0x1];
1460         u8 flow_counters_dump[0x1];
1461         u8 reserved_at_360[0x1];
1462         u8 log_max_rq[0x5];
1463         u8 reserved_at_368[0x3];
1464         u8 log_max_sq[0x5];
1465         u8 reserved_at_370[0x3];
1466         u8 log_max_tir[0x5];
1467         u8 reserved_at_378[0x3];
1468         u8 log_max_tis[0x5];
1469         u8 basic_cyclic_rcv_wqe[0x1];
1470         u8 reserved_at_381[0x2];
1471         u8 log_max_rmp[0x5];
1472         u8 reserved_at_388[0x3];
1473         u8 log_max_rqt[0x5];
1474         u8 reserved_at_390[0x3];
1475         u8 log_max_rqt_size[0x5];
1476         u8 reserved_at_398[0x3];
1477         u8 log_max_tis_per_sq[0x5];
1478         u8 ext_stride_num_range[0x1];
1479         u8 reserved_at_3a1[0x2];
1480         u8 log_max_stride_sz_rq[0x5];
1481         u8 reserved_at_3a8[0x3];
1482         u8 log_min_stride_sz_rq[0x5];
1483         u8 reserved_at_3b0[0x3];
1484         u8 log_max_stride_sz_sq[0x5];
1485         u8 reserved_at_3b8[0x3];
1486         u8 log_min_stride_sz_sq[0x5];
1487         u8 hairpin[0x1];
1488         u8 reserved_at_3c1[0x2];
1489         u8 log_max_hairpin_queues[0x5];
1490         u8 reserved_at_3c8[0x3];
1491         u8 log_max_hairpin_wq_data_sz[0x5];
1492         u8 reserved_at_3d0[0x3];
1493         u8 log_max_hairpin_num_packets[0x5];
1494         u8 reserved_at_3d8[0x3];
1495         u8 log_max_wq_sz[0x5];
1496         u8 nic_vport_change_event[0x1];
1497         u8 disable_local_lb_uc[0x1];
1498         u8 disable_local_lb_mc[0x1];
1499         u8 log_min_hairpin_wq_data_sz[0x5];
1500         u8 reserved_at_3e8[0x3];
1501         u8 log_max_vlan_list[0x5];
1502         u8 reserved_at_3f0[0x3];
1503         u8 log_max_current_mc_list[0x5];
1504         u8 reserved_at_3f8[0x3];
1505         u8 log_max_current_uc_list[0x5];
1506         u8 general_obj_types[0x40];
1507         u8 sq_ts_format[0x2];
1508         u8 rq_ts_format[0x2];
1509         u8 reserved_at_444[0x1C];
1510         u8 reserved_at_460[0x8];
1511         u8 aes_xts[0x1];
1512         u8 crypto[0x1];
1513         u8 reserved_at_46a[0x6];
1514         u8 max_num_eqs[0x10];
1515         u8 reserved_at_480[0x3];
1516         u8 log_max_l2_table[0x5];
1517         u8 reserved_at_488[0x8];
1518         u8 log_uar_page_sz[0x10];
1519         u8 reserved_at_4a0[0x20];
1520         u8 device_frequency_mhz[0x20];
1521         u8 device_frequency_khz[0x20];
1522         u8 reserved_at_500[0x20];
1523         u8 num_of_uars_per_page[0x20];
1524         u8 flex_parser_protocols[0x20];
1525         u8 max_geneve_tlv_options[0x8];
1526         u8 reserved_at_568[0x3];
1527         u8 max_geneve_tlv_option_data_len[0x5];
1528         u8 reserved_at_570[0x49];
1529         u8 mini_cqe_resp_l3_l4_tag[0x1];
1530         u8 mini_cqe_resp_flow_tag[0x1];
1531         u8 enhanced_cqe_compression[0x1];
1532         u8 mini_cqe_resp_stride_index[0x1];
1533         u8 cqe_128_always[0x1];
1534         u8 cqe_compression_128[0x1];
1535         u8 cqe_compression[0x1];
1536         u8 cqe_compression_timeout[0x10];
1537         u8 cqe_compression_max_num[0x10];
1538         u8 reserved_at_5e0[0x10];
1539         u8 tag_matching[0x1];
1540         u8 rndv_offload_rc[0x1];
1541         u8 rndv_offload_dc[0x1];
1542         u8 log_tag_matching_list_sz[0x5];
1543         u8 reserved_at_5f8[0x3];
1544         u8 log_max_xrq[0x5];
1545         u8 affiliate_nic_vport_criteria[0x8];
1546         u8 native_port_num[0x8];
1547         u8 num_vhca_ports[0x8];
1548         u8 reserved_at_618[0x6];
1549         u8 sw_owner_id[0x1];
1550         u8 reserved_at_61f[0x1e1];
1551 };
1552
1553 struct mlx5_ifc_qos_cap_bits {
1554         u8 packet_pacing[0x1];
1555         u8 esw_scheduling[0x1];
1556         u8 esw_bw_share[0x1];
1557         u8 esw_rate_limit[0x1];
1558         u8 reserved_at_4[0x1];
1559         u8 packet_pacing_burst_bound[0x1];
1560         u8 packet_pacing_typical_size[0x1];
1561         u8 flow_meter_old[0x1];
1562         u8 reserved_at_8[0x8];
1563         u8 log_max_flow_meter[0x8];
1564         u8 flow_meter_reg_id[0x8];
1565         u8 wqe_rate_pp[0x1];
1566         u8 reserved_at_25[0x7];
1567         u8 flow_meter[0x1];
1568         u8 reserved_at_2e[0x17];
1569         u8 packet_pacing_max_rate[0x20];
1570         u8 packet_pacing_min_rate[0x20];
1571         u8 reserved_at_80[0x10];
1572         u8 packet_pacing_rate_table_size[0x10];
1573         u8 esw_element_type[0x10];
1574         u8 esw_tsar_type[0x10];
1575         u8 reserved_at_c0[0x10];
1576         u8 max_qos_para_vport[0x10];
1577         u8 max_tsar_bw_share[0x20];
1578         u8 nic_element_type[0x10];
1579         u8 nic_tsar_type[0x10];
1580         u8 reserved_at_120[0x3];
1581         u8 log_meter_aso_granularity[0x5];
1582         u8 reserved_at_128[0x3];
1583         u8 log_meter_aso_max_alloc[0x5];
1584         u8 reserved_at_130[0x3];
1585         u8 log_max_num_meter_aso[0x5];
1586         u8 reserved_at_138[0x6b0];
1587 };
1588
1589 struct mlx5_ifc_per_protocol_networking_offload_caps_bits {
1590         u8 csum_cap[0x1];
1591         u8 vlan_cap[0x1];
1592         u8 lro_cap[0x1];
1593         u8 lro_psh_flag[0x1];
1594         u8 lro_time_stamp[0x1];
1595         u8 lro_max_msg_sz_mode[0x2];
1596         u8 wqe_vlan_insert[0x1];
1597         u8 self_lb_en_modifiable[0x1];
1598         u8 self_lb_mc[0x1];
1599         u8 self_lb_uc[0x1];
1600         u8 max_lso_cap[0x5];
1601         u8 multi_pkt_send_wqe[0x2];
1602         u8 wqe_inline_mode[0x2];
1603         u8 rss_ind_tbl_cap[0x4];
1604         u8 reg_umr_sq[0x1];
1605         u8 scatter_fcs[0x1];
1606         u8 enhanced_multi_pkt_send_wqe[0x1];
1607         u8 tunnel_lso_const_out_ip_id[0x1];
1608         u8 tunnel_lro_gre[0x1];
1609         u8 tunnel_lro_vxlan[0x1];
1610         u8 tunnel_stateless_gre[0x1];
1611         u8 tunnel_stateless_vxlan[0x1];
1612         u8 swp[0x1];
1613         u8 swp_csum[0x1];
1614         u8 swp_lso[0x1];
1615         u8 reserved_at_23[0x8];
1616         u8 tunnel_stateless_gtp[0x1];
1617         u8 reserved_at_25[0x4];
1618         u8 max_vxlan_udp_ports[0x8];
1619         u8 reserved_at_38[0x6];
1620         u8 max_geneve_opt_len[0x1];
1621         u8 tunnel_stateless_geneve_rx[0x1];
1622         u8 reserved_at_40[0x10];
1623         u8 lro_min_mss_size[0x10];
1624         u8 reserved_at_60[0x120];
1625         u8 lro_timer_supported_periods[4][0x20];
1626         u8 reserved_at_200[0x600];
1627 };
1628
1629 enum {
1630         MLX5_VIRTQ_TYPE_SPLIT = 0,
1631         MLX5_VIRTQ_TYPE_PACKED = 1,
1632 };
1633
1634 enum {
1635         MLX5_VIRTQ_EVENT_MODE_NO_MSIX = 0,
1636         MLX5_VIRTQ_EVENT_MODE_QP = 1,
1637         MLX5_VIRTQ_EVENT_MODE_MSIX = 2,
1638 };
1639
1640 struct mlx5_ifc_virtio_emulation_cap_bits {
1641         u8 desc_tunnel_offload_type[0x1];
1642         u8 eth_frame_offload_type[0x1];
1643         u8 virtio_version_1_0[0x1];
1644         u8 tso_ipv4[0x1];
1645         u8 tso_ipv6[0x1];
1646         u8 tx_csum[0x1];
1647         u8 rx_csum[0x1];
1648         u8 reserved_at_7[0x1][0x9];
1649         u8 event_mode[0x8];
1650         u8 virtio_queue_type[0x8];
1651         u8 reserved_at_20[0x13];
1652         u8 log_doorbell_stride[0x5];
1653         u8 reserved_at_3b[0x3];
1654         u8 log_doorbell_bar_size[0x5];
1655         u8 doorbell_bar_offset[0x40];
1656         u8 reserved_at_80[0x8];
1657         u8 max_num_virtio_queues[0x18];
1658         u8 reserved_at_a0[0x60];
1659         u8 umem_1_buffer_param_a[0x20];
1660         u8 umem_1_buffer_param_b[0x20];
1661         u8 umem_2_buffer_param_a[0x20];
1662         u8 umem_2_buffer_param_b[0x20];
1663         u8 umem_3_buffer_param_a[0x20];
1664         u8 umem_3_buffer_param_b[0x20];
1665         u8 reserved_at_1c0[0x620];
1666 };
1667
1668 struct mlx5_ifc_flow_table_prop_layout_bits {
1669         u8 ft_support[0x1];
1670         u8 flow_tag[0x1];
1671         u8 flow_counter[0x1];
1672         u8 flow_modify_en[0x1];
1673         u8 modify_root[0x1];
1674         u8 identified_miss_table[0x1];
1675         u8 flow_table_modify[0x1];
1676         u8 reformat[0x1];
1677         u8 decap[0x1];
1678         u8 reset_root_to_default[0x1];
1679         u8 pop_vlan[0x1];
1680         u8 push_vlan[0x1];
1681         u8 fpga_vendor_acceleration[0x1];
1682         u8 pop_vlan_2[0x1];
1683         u8 push_vlan_2[0x1];
1684         u8 reformat_and_vlan_action[0x1];
1685         u8 modify_and_vlan_action[0x1];
1686         u8 sw_owner[0x1];
1687         u8 reformat_l3_tunnel_to_l2[0x1];
1688         u8 reformat_l2_to_l3_tunnel[0x1];
1689         u8 reformat_and_modify_action[0x1];
1690         u8 reserved_at_15[0x9];
1691         u8 sw_owner_v2[0x1];
1692         u8 reserved_at_1f[0x1];
1693         u8 reserved_at_20[0x2];
1694         u8 log_max_ft_size[0x6];
1695         u8 log_max_modify_header_context[0x8];
1696         u8 max_modify_header_actions[0x8];
1697         u8 max_ft_level[0x8];
1698         u8 reserved_at_40[0x8];
1699         u8 log_max_ft_sampler_num[8];
1700         u8 metadata_reg_b_width[0x8];
1701         u8 metadata_reg_a_width[0x8];
1702         u8 reserved_at_60[0x18];
1703         u8 log_max_ft_num[0x8];
1704         u8 reserved_at_80[0x10];
1705         u8 log_max_flow_counter[0x8];
1706         u8 log_max_destination[0x8];
1707         u8 reserved_at_a0[0x18];
1708         u8 log_max_flow[0x8];
1709         u8 reserved_at_c0[0x140];
1710 };
1711
1712 struct mlx5_ifc_roce_caps_bits {
1713         u8 reserved_0[0x1e];
1714         u8 qp_ts_format[0x2];
1715         u8 reserved_at_20[0x7e0];
1716 };
1717
1718 struct mlx5_ifc_flow_table_nic_cap_bits {
1719         u8         reserved_at_0[0x200];
1720         struct mlx5_ifc_flow_table_prop_layout_bits flow_table_properties;
1721 };
1722
1723 union mlx5_ifc_hca_cap_union_bits {
1724         struct mlx5_ifc_cmd_hca_cap_bits cmd_hca_cap;
1725         struct mlx5_ifc_per_protocol_networking_offload_caps_bits
1726                per_protocol_networking_offload_caps;
1727         struct mlx5_ifc_qos_cap_bits qos_cap;
1728         struct mlx5_ifc_virtio_emulation_cap_bits vdpa_caps;
1729         struct mlx5_ifc_flow_table_nic_cap_bits flow_table_nic_cap;
1730         struct mlx5_ifc_roce_caps_bits roce_caps;
1731         u8 reserved_at_0[0x8000];
1732 };
1733
1734 struct mlx5_ifc_set_action_in_bits {
1735         u8 action_type[0x4];
1736         u8 field[0xc];
1737         u8 reserved_at_10[0x3];
1738         u8 offset[0x5];
1739         u8 reserved_at_18[0x3];
1740         u8 length[0x5];
1741         u8 data[0x20];
1742 };
1743
1744 struct mlx5_ifc_query_hca_cap_out_bits {
1745         u8 status[0x8];
1746         u8 reserved_at_8[0x18];
1747         u8 syndrome[0x20];
1748         u8 reserved_at_40[0x40];
1749         union mlx5_ifc_hca_cap_union_bits capability;
1750 };
1751
1752 struct mlx5_ifc_query_hca_cap_in_bits {
1753         u8 opcode[0x10];
1754         u8 reserved_at_10[0x10];
1755         u8 reserved_at_20[0x10];
1756         u8 op_mod[0x10];
1757         u8 reserved_at_40[0x40];
1758 };
1759
1760 struct mlx5_ifc_mac_address_layout_bits {
1761         u8 reserved_at_0[0x10];
1762         u8 mac_addr_47_32[0x10];
1763         u8 mac_addr_31_0[0x20];
1764 };
1765
1766 struct mlx5_ifc_nic_vport_context_bits {
1767         u8 reserved_at_0[0x5];
1768         u8 min_wqe_inline_mode[0x3];
1769         u8 reserved_at_8[0x15];
1770         u8 disable_mc_local_lb[0x1];
1771         u8 disable_uc_local_lb[0x1];
1772         u8 roce_en[0x1];
1773         u8 arm_change_event[0x1];
1774         u8 reserved_at_21[0x1a];
1775         u8 event_on_mtu[0x1];
1776         u8 event_on_promisc_change[0x1];
1777         u8 event_on_vlan_change[0x1];
1778         u8 event_on_mc_address_change[0x1];
1779         u8 event_on_uc_address_change[0x1];
1780         u8 reserved_at_40[0xc];
1781         u8 affiliation_criteria[0x4];
1782         u8 affiliated_vhca_id[0x10];
1783         u8 reserved_at_60[0xd0];
1784         u8 mtu[0x10];
1785         u8 system_image_guid[0x40];
1786         u8 port_guid[0x40];
1787         u8 node_guid[0x40];
1788         u8 reserved_at_200[0x140];
1789         u8 qkey_violation_counter[0x10];
1790         u8 reserved_at_350[0x430];
1791         u8 promisc_uc[0x1];
1792         u8 promisc_mc[0x1];
1793         u8 promisc_all[0x1];
1794         u8 reserved_at_783[0x2];
1795         u8 allowed_list_type[0x3];
1796         u8 reserved_at_788[0xc];
1797         u8 allowed_list_size[0xc];
1798         struct mlx5_ifc_mac_address_layout_bits permanent_address;
1799         u8 reserved_at_7e0[0x20];
1800 };
1801
1802 struct mlx5_ifc_query_nic_vport_context_out_bits {
1803         u8 status[0x8];
1804         u8 reserved_at_8[0x18];
1805         u8 syndrome[0x20];
1806         u8 reserved_at_40[0x40];
1807         struct mlx5_ifc_nic_vport_context_bits nic_vport_context;
1808 };
1809
1810 struct mlx5_ifc_query_nic_vport_context_in_bits {
1811         u8 opcode[0x10];
1812         u8 reserved_at_10[0x10];
1813         u8 reserved_at_20[0x10];
1814         u8 op_mod[0x10];
1815         u8 other_vport[0x1];
1816         u8 reserved_at_41[0xf];
1817         u8 vport_number[0x10];
1818         u8 reserved_at_60[0x5];
1819         u8 allowed_list_type[0x3];
1820         u8 reserved_at_68[0x18];
1821 };
1822
1823 struct mlx5_ifc_tisc_bits {
1824         u8 strict_lag_tx_port_affinity[0x1];
1825         u8 reserved_at_1[0x3];
1826         u8 lag_tx_port_affinity[0x04];
1827         u8 reserved_at_8[0x4];
1828         u8 prio[0x4];
1829         u8 reserved_at_10[0x10];
1830         u8 reserved_at_20[0x100];
1831         u8 reserved_at_120[0x8];
1832         u8 transport_domain[0x18];
1833         u8 reserved_at_140[0x8];
1834         u8 underlay_qpn[0x18];
1835         u8 reserved_at_160[0x3a0];
1836 };
1837
1838 struct mlx5_ifc_query_tis_out_bits {
1839         u8 status[0x8];
1840         u8 reserved_at_8[0x18];
1841         u8 syndrome[0x20];
1842         u8 reserved_at_40[0x40];
1843         struct mlx5_ifc_tisc_bits tis_context;
1844 };
1845
1846 struct mlx5_ifc_query_tis_in_bits {
1847         u8 opcode[0x10];
1848         u8 reserved_at_10[0x10];
1849         u8 reserved_at_20[0x10];
1850         u8 op_mod[0x10];
1851         u8 reserved_at_40[0x8];
1852         u8 tisn[0x18];
1853         u8 reserved_at_60[0x20];
1854 };
1855
1856 struct mlx5_ifc_alloc_transport_domain_out_bits {
1857         u8 status[0x8];
1858         u8 reserved_at_8[0x18];
1859         u8 syndrome[0x20];
1860         u8 reserved_at_40[0x8];
1861         u8 transport_domain[0x18];
1862         u8 reserved_at_60[0x20];
1863 };
1864
1865 struct mlx5_ifc_alloc_transport_domain_in_bits {
1866         u8 opcode[0x10];
1867         u8 reserved_at_10[0x10];
1868         u8 reserved_at_20[0x10];
1869         u8 op_mod[0x10];
1870         u8 reserved_at_40[0x40];
1871 };
1872
1873 enum {
1874         MLX5_WQ_TYPE_LINKED_LIST                = 0x0,
1875         MLX5_WQ_TYPE_CYCLIC                     = 0x1,
1876         MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ    = 0x2,
1877         MLX5_WQ_TYPE_CYCLIC_STRIDING_RQ         = 0x3,
1878 };
1879
1880 enum {
1881         MLX5_WQ_END_PAD_MODE_NONE  = 0x0,
1882         MLX5_WQ_END_PAD_MODE_ALIGN = 0x1,
1883 };
1884
1885 struct mlx5_ifc_wq_bits {
1886         u8 wq_type[0x4];
1887         u8 wq_signature[0x1];
1888         u8 end_padding_mode[0x2];
1889         u8 cd_slave[0x1];
1890         u8 reserved_at_8[0x18];
1891         u8 hds_skip_first_sge[0x1];
1892         u8 log2_hds_buf_size[0x3];
1893         u8 reserved_at_24[0x7];
1894         u8 page_offset[0x5];
1895         u8 lwm[0x10];
1896         u8 reserved_at_40[0x8];
1897         u8 pd[0x18];
1898         u8 reserved_at_60[0x8];
1899         u8 uar_page[0x18];
1900         u8 dbr_addr[0x40];
1901         u8 hw_counter[0x20];
1902         u8 sw_counter[0x20];
1903         u8 reserved_at_100[0xc];
1904         u8 log_wq_stride[0x4];
1905         u8 reserved_at_110[0x3];
1906         u8 log_wq_pg_sz[0x5];
1907         u8 reserved_at_118[0x3];
1908         u8 log_wq_sz[0x5];
1909         u8 dbr_umem_valid[0x1];
1910         u8 wq_umem_valid[0x1];
1911         u8 reserved_at_122[0x1];
1912         u8 log_hairpin_num_packets[0x5];
1913         u8 reserved_at_128[0x3];
1914         u8 log_hairpin_data_sz[0x5];
1915         u8 reserved_at_130[0x4];
1916         u8 single_wqe_log_num_of_strides[0x4];
1917         u8 two_byte_shift_en[0x1];
1918         u8 reserved_at_139[0x4];
1919         u8 single_stride_log_num_of_bytes[0x3];
1920         u8 dbr_umem_id[0x20];
1921         u8 wq_umem_id[0x20];
1922         u8 wq_umem_offset[0x40];
1923         u8 reserved_at_1c0[0x440];
1924 };
1925
1926 enum {
1927         MLX5_RQC_MEM_RQ_TYPE_MEMORY_RQ_INLINE  = 0x0,
1928         MLX5_RQC_MEM_RQ_TYPE_MEMORY_RQ_RMP     = 0x1,
1929 };
1930
1931 enum {
1932         MLX5_RQC_STATE_RST  = 0x0,
1933         MLX5_RQC_STATE_RDY  = 0x1,
1934         MLX5_RQC_STATE_ERR  = 0x3,
1935 };
1936
1937 struct mlx5_ifc_rqc_bits {
1938         u8 rlky[0x1];
1939         u8 delay_drop_en[0x1];
1940         u8 scatter_fcs[0x1];
1941         u8 vsd[0x1];
1942         u8 mem_rq_type[0x4];
1943         u8 state[0x4];
1944         u8 reserved_at_c[0x1];
1945         u8 flush_in_error_en[0x1];
1946         u8 hairpin[0x1];
1947         u8 reserved_at_f[0xB];
1948         u8 ts_format[0x02];
1949         u8 reserved_at_1c[0x4];
1950         u8 reserved_at_20[0x8];
1951         u8 user_index[0x18];
1952         u8 reserved_at_40[0x8];
1953         u8 cqn[0x18];
1954         u8 counter_set_id[0x8];
1955         u8 reserved_at_68[0x18];
1956         u8 reserved_at_80[0x8];
1957         u8 rmpn[0x18];
1958         u8 reserved_at_a0[0x8];
1959         u8 hairpin_peer_sq[0x18];
1960         u8 reserved_at_c0[0x10];
1961         u8 hairpin_peer_vhca[0x10];
1962         u8 reserved_at_e0[0xa0];
1963         struct mlx5_ifc_wq_bits wq; /* Not used in LRO RQ. */
1964 };
1965
1966 struct mlx5_ifc_create_rq_out_bits {
1967         u8 status[0x8];
1968         u8 reserved_at_8[0x18];
1969         u8 syndrome[0x20];
1970         u8 reserved_at_40[0x8];
1971         u8 rqn[0x18];
1972         u8 reserved_at_60[0x20];
1973 };
1974
1975 struct mlx5_ifc_create_rq_in_bits {
1976         u8 opcode[0x10];
1977         u8 uid[0x10];
1978         u8 reserved_at_20[0x10];
1979         u8 op_mod[0x10];
1980         u8 reserved_at_40[0xc0];
1981         struct mlx5_ifc_rqc_bits ctx;
1982 };
1983
1984 struct mlx5_ifc_modify_rq_out_bits {
1985         u8 status[0x8];
1986         u8 reserved_at_8[0x18];
1987         u8 syndrome[0x20];
1988         u8 reserved_at_40[0x40];
1989 };
1990
1991 struct mlx5_ifc_query_rq_out_bits {
1992         u8 status[0x8];
1993         u8 reserved_at_8[0x18];
1994         u8 syndrome[0x20];
1995         u8 reserved_at_40[0xc0];
1996         struct mlx5_ifc_rqc_bits rq_context;
1997 };
1998
1999 struct mlx5_ifc_query_rq_in_bits {
2000         u8 opcode[0x10];
2001         u8 reserved_at_10[0x10];
2002         u8 reserved_at_20[0x10];
2003         u8 op_mod[0x10];
2004         u8 reserved_at_40[0x8];
2005         u8 rqn[0x18];
2006         u8 reserved_at_60[0x20];
2007 };
2008
2009 struct mlx5_ifc_create_tis_out_bits {
2010         u8 status[0x8];
2011         u8 reserved_at_8[0x18];
2012         u8 syndrome[0x20];
2013         u8 reserved_at_40[0x8];
2014         u8 tisn[0x18];
2015         u8 reserved_at_60[0x20];
2016 };
2017
2018 struct mlx5_ifc_create_tis_in_bits {
2019         u8 opcode[0x10];
2020         u8 uid[0x10];
2021         u8 reserved_at_20[0x10];
2022         u8 op_mod[0x10];
2023         u8 reserved_at_40[0xc0];
2024         struct mlx5_ifc_tisc_bits ctx;
2025 };
2026
2027 enum {
2028         MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_WQ_LWM = 1ULL << 0,
2029         MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_VSD = 1ULL << 1,
2030         MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_SCATTER_FCS = 1ULL << 2,
2031         MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_RQ_COUNTER_SET_ID = 1ULL << 3,
2032 };
2033
2034 struct mlx5_ifc_modify_rq_in_bits {
2035         u8 opcode[0x10];
2036         u8 uid[0x10];
2037         u8 reserved_at_20[0x10];
2038         u8 op_mod[0x10];
2039         u8 rq_state[0x4];
2040         u8 reserved_at_44[0x4];
2041         u8 rqn[0x18];
2042         u8 reserved_at_60[0x20];
2043         u8 modify_bitmask[0x40];
2044         u8 reserved_at_c0[0x40];
2045         struct mlx5_ifc_rqc_bits ctx;
2046 };
2047
2048 enum {
2049         MLX5_L3_PROT_TYPE_IPV4 = 0,
2050         MLX5_L3_PROT_TYPE_IPV6 = 1,
2051 };
2052
2053 enum {
2054         MLX5_L4_PROT_TYPE_TCP = 0,
2055         MLX5_L4_PROT_TYPE_UDP = 1,
2056 };
2057
2058 enum {
2059         MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_SRC_IP     = 0x0,
2060         MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_DST_IP     = 0x1,
2061         MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_L4_SPORT   = 0x2,
2062         MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_L4_DPORT   = 0x3,
2063         MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_IPSEC_SPI  = 0x4,
2064 };
2065
2066 struct mlx5_ifc_rx_hash_field_select_bits {
2067         u8 l3_prot_type[0x1];
2068         u8 l4_prot_type[0x1];
2069         u8 selected_fields[0x1e];
2070 };
2071
2072 enum {
2073         MLX5_TIRC_DISP_TYPE_DIRECT    = 0x0,
2074         MLX5_TIRC_DISP_TYPE_INDIRECT  = 0x1,
2075 };
2076
2077 enum {
2078         MLX5_TIRC_LRO_ENABLE_MASK_IPV4_LRO  = 0x1,
2079         MLX5_TIRC_LRO_ENABLE_MASK_IPV6_LRO  = 0x2,
2080 };
2081
2082 enum {
2083         MLX5_RX_HASH_FN_NONE           = 0x0,
2084         MLX5_RX_HASH_FN_INVERTED_XOR8  = 0x1,
2085         MLX5_RX_HASH_FN_TOEPLITZ       = 0x2,
2086 };
2087
2088 enum {
2089         MLX5_TIRC_SELF_LB_BLOCK_BLOCK_UNICAST    = 0x1,
2090         MLX5_TIRC_SELF_LB_BLOCK_BLOCK_MULTICAST  = 0x2,
2091 };
2092
2093 enum {
2094         MLX5_LRO_MAX_MSG_SIZE_START_FROM_L4    = 0x0,
2095         MLX5_LRO_MAX_MSG_SIZE_START_FROM_L2  = 0x1,
2096 };
2097
2098 struct mlx5_ifc_tirc_bits {
2099         u8 reserved_at_0[0x20];
2100         u8 disp_type[0x4];
2101         u8 reserved_at_24[0x1c];
2102         u8 reserved_at_40[0x40];
2103         u8 reserved_at_80[0x4];
2104         u8 lro_timeout_period_usecs[0x10];
2105         u8 lro_enable_mask[0x4];
2106         u8 lro_max_msg_sz[0x8];
2107         u8 reserved_at_a0[0x40];
2108         u8 reserved_at_e0[0x8];
2109         u8 inline_rqn[0x18];
2110         u8 rx_hash_symmetric[0x1];
2111         u8 reserved_at_101[0x1];
2112         u8 tunneled_offload_en[0x1];
2113         u8 reserved_at_103[0x5];
2114         u8 indirect_table[0x18];
2115         u8 rx_hash_fn[0x4];
2116         u8 reserved_at_124[0x2];
2117         u8 self_lb_block[0x2];
2118         u8 transport_domain[0x18];
2119         u8 rx_hash_toeplitz_key[10][0x20];
2120         struct mlx5_ifc_rx_hash_field_select_bits rx_hash_field_selector_outer;
2121         struct mlx5_ifc_rx_hash_field_select_bits rx_hash_field_selector_inner;
2122         u8 reserved_at_2c0[0x4c0];
2123 };
2124
2125 struct mlx5_ifc_create_tir_out_bits {
2126         u8 status[0x8];
2127         u8 reserved_at_8[0x18];
2128         u8 syndrome[0x20];
2129         u8 reserved_at_40[0x8];
2130         u8 tirn[0x18];
2131         u8 reserved_at_60[0x20];
2132 };
2133
2134 struct mlx5_ifc_create_tir_in_bits {
2135         u8 opcode[0x10];
2136         u8 uid[0x10];
2137         u8 reserved_at_20[0x10];
2138         u8 op_mod[0x10];
2139         u8 reserved_at_40[0xc0];
2140         struct mlx5_ifc_tirc_bits ctx;
2141 };
2142
2143 enum {
2144         MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_LRO = 1ULL << 0,
2145         MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_INDIRECT_TABLE = 1ULL << 1,
2146         MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_HASH = 1ULL << 2,
2147         /* bit 3 - tunneled_offload_en modify not supported. */
2148         MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_SELF_LB_EN = 1ULL << 4,
2149 };
2150
2151 struct mlx5_ifc_modify_tir_out_bits {
2152         u8 status[0x8];
2153         u8 reserved_at_8[0x18];
2154         u8 syndrome[0x20];
2155         u8 reserved_at_40[0x40];
2156 };
2157
2158 struct mlx5_ifc_modify_tir_in_bits {
2159         u8 opcode[0x10];
2160         u8 uid[0x10];
2161         u8 reserved_at_20[0x10];
2162         u8 op_mod[0x10];
2163         u8 reserved_at_40[0x8];
2164         u8 tirn[0x18];
2165         u8 reserved_at_60[0x20];
2166         u8 modify_bitmask[0x40];
2167         u8 reserved_at_c0[0x40];
2168         struct mlx5_ifc_tirc_bits ctx;
2169 };
2170
2171 enum {
2172         MLX5_INLINE_Q_TYPE_RQ = 0x0,
2173         MLX5_INLINE_Q_TYPE_VIRTQ = 0x1,
2174 };
2175
2176 struct mlx5_ifc_rq_num_bits {
2177         u8 reserved_at_0[0x8];
2178         u8 rq_num[0x18];
2179 };
2180
2181 struct mlx5_ifc_rqtc_bits {
2182         u8 reserved_at_0[0xa5];
2183         u8 list_q_type[0x3];
2184         u8 reserved_at_a8[0x8];
2185         u8 rqt_max_size[0x10];
2186         u8 reserved_at_c0[0x10];
2187         u8 rqt_actual_size[0x10];
2188         u8 reserved_at_e0[0x6a0];
2189         struct mlx5_ifc_rq_num_bits rq_num[];
2190 };
2191
2192 struct mlx5_ifc_create_rqt_out_bits {
2193         u8 status[0x8];
2194         u8 reserved_at_8[0x18];
2195         u8 syndrome[0x20];
2196         u8 reserved_at_40[0x8];
2197         u8 rqtn[0x18];
2198         u8 reserved_at_60[0x20];
2199 };
2200
2201 #ifdef PEDANTIC
2202 #pragma GCC diagnostic ignored "-Wpedantic"
2203 #endif
2204 struct mlx5_ifc_create_rqt_in_bits {
2205         u8 opcode[0x10];
2206         u8 uid[0x10];
2207         u8 reserved_at_20[0x10];
2208         u8 op_mod[0x10];
2209         u8 reserved_at_40[0xc0];
2210         struct mlx5_ifc_rqtc_bits rqt_context;
2211 };
2212
2213 struct mlx5_ifc_modify_rqt_in_bits {
2214         u8 opcode[0x10];
2215         u8 uid[0x10];
2216         u8 reserved_at_20[0x10];
2217         u8 op_mod[0x10];
2218         u8 reserved_at_40[0x8];
2219         u8 rqtn[0x18];
2220         u8 reserved_at_60[0x20];
2221         u8 modify_bitmask[0x40];
2222         u8 reserved_at_c0[0x40];
2223         struct mlx5_ifc_rqtc_bits rqt_context;
2224 };
2225 #ifdef PEDANTIC
2226 #pragma GCC diagnostic error "-Wpedantic"
2227 #endif
2228
2229 struct mlx5_ifc_modify_rqt_out_bits {
2230         u8 status[0x8];
2231         u8 reserved_at_8[0x18];
2232         u8 syndrome[0x20];
2233         u8 reserved_at_40[0x40];
2234 };
2235
2236 enum {
2237         MLX5_SQC_STATE_RST  = 0x0,
2238         MLX5_SQC_STATE_RDY  = 0x1,
2239         MLX5_SQC_STATE_ERR  = 0x3,
2240 };
2241
2242 struct mlx5_ifc_sqc_bits {
2243         u8 rlky[0x1];
2244         u8 cd_master[0x1];
2245         u8 fre[0x1];
2246         u8 flush_in_error_en[0x1];
2247         u8 allow_multi_pkt_send_wqe[0x1];
2248         u8 min_wqe_inline_mode[0x3];
2249         u8 state[0x4];
2250         u8 reg_umr[0x1];
2251         u8 allow_swp[0x1];
2252         u8 hairpin[0x1];
2253         u8 non_wire[0x1];
2254         u8 static_sq_wq[0x1];
2255         u8 reserved_at_11[0x9];
2256         u8 ts_format[0x02];
2257         u8 reserved_at_1c[0x4];
2258         u8 reserved_at_20[0x8];
2259         u8 user_index[0x18];
2260         u8 reserved_at_40[0x8];
2261         u8 cqn[0x18];
2262         u8 reserved_at_60[0x8];
2263         u8 hairpin_peer_rq[0x18];
2264         u8 reserved_at_80[0x10];
2265         u8 hairpin_peer_vhca[0x10];
2266         u8 reserved_at_a0[0x50];
2267         u8 packet_pacing_rate_limit_index[0x10];
2268         u8 tis_lst_sz[0x10];
2269         u8 reserved_at_110[0x10];
2270         u8 reserved_at_120[0x40];
2271         u8 reserved_at_160[0x8];
2272         u8 tis_num_0[0x18];
2273         struct mlx5_ifc_wq_bits wq;
2274 };
2275
2276 struct mlx5_ifc_query_sq_in_bits {
2277         u8 opcode[0x10];
2278         u8 reserved_at_10[0x10];
2279         u8 reserved_at_20[0x10];
2280         u8 op_mod[0x10];
2281         u8 reserved_at_40[0x8];
2282         u8 sqn[0x18];
2283         u8 reserved_at_60[0x20];
2284 };
2285
2286 struct mlx5_ifc_modify_sq_out_bits {
2287         u8 status[0x8];
2288         u8 reserved_at_8[0x18];
2289         u8 syndrome[0x20];
2290         u8 reserved_at_40[0x40];
2291 };
2292
2293 struct mlx5_ifc_modify_sq_in_bits {
2294         u8 opcode[0x10];
2295         u8 uid[0x10];
2296         u8 reserved_at_20[0x10];
2297         u8 op_mod[0x10];
2298         u8 sq_state[0x4];
2299         u8 reserved_at_44[0x4];
2300         u8 sqn[0x18];
2301         u8 reserved_at_60[0x20];
2302         u8 modify_bitmask[0x40];
2303         u8 reserved_at_c0[0x40];
2304         struct mlx5_ifc_sqc_bits ctx;
2305 };
2306
2307 struct mlx5_ifc_create_sq_out_bits {
2308         u8 status[0x8];
2309         u8 reserved_at_8[0x18];
2310         u8 syndrome[0x20];
2311         u8 reserved_at_40[0x8];
2312         u8 sqn[0x18];
2313         u8 reserved_at_60[0x20];
2314 };
2315
2316 struct mlx5_ifc_create_sq_in_bits {
2317         u8 opcode[0x10];
2318         u8 uid[0x10];
2319         u8 reserved_at_20[0x10];
2320         u8 op_mod[0x10];
2321         u8 reserved_at_40[0xc0];
2322         struct mlx5_ifc_sqc_bits ctx;
2323 };
2324
2325 enum {
2326         MLX5_FLOW_METER_OBJ_MODIFY_FIELD_ACTIVE = (1ULL << 0),
2327         MLX5_FLOW_METER_OBJ_MODIFY_FIELD_CBS = (1ULL << 1),
2328         MLX5_FLOW_METER_OBJ_MODIFY_FIELD_CIR = (1ULL << 2),
2329         MLX5_FLOW_METER_OBJ_MODIFY_FIELD_EBS = (1ULL << 3),
2330         MLX5_FLOW_METER_OBJ_MODIFY_FIELD_EIR = (1ULL << 4),
2331 };
2332
2333 struct mlx5_ifc_flow_meter_parameters_bits {
2334         u8 valid[0x1];
2335         u8 bucket_overflow[0x1];
2336         u8 start_color[0x2];
2337         u8 both_buckets_on_green[0x1];
2338         u8 meter_mode[0x2];
2339         u8 reserved_at_1[0x19];
2340         u8 reserved_at_2[0x20];
2341         u8 reserved_at_3[0x3];
2342         u8 cbs_exponent[0x5];
2343         u8 cbs_mantissa[0x8];
2344         u8 reserved_at_4[0x3];
2345         u8 cir_exponent[0x5];
2346         u8 cir_mantissa[0x8];
2347         u8 reserved_at_5[0x20];
2348         u8 reserved_at_6[0x3];
2349         u8 ebs_exponent[0x5];
2350         u8 ebs_mantissa[0x8];
2351         u8 reserved_at_7[0x3];
2352         u8 eir_exponent[0x5];
2353         u8 eir_mantissa[0x8];
2354         u8 reserved_at_8[0x60];
2355 };
2356 #define MLX5_IFC_FLOW_METER_PARAM_MASK UINT64_C(0x80FFFFFF)
2357 #define MLX5_IFC_FLOW_METER_DISABLE_CBS_CIR_VAL 0x14BF00C8
2358
2359 enum {
2360         MLX5_CQE_SIZE_64B = 0x0,
2361         MLX5_CQE_SIZE_128B = 0x1,
2362 };
2363
2364 struct mlx5_ifc_cqc_bits {
2365         u8 status[0x4];
2366         u8 as_notify[0x1];
2367         u8 initiator_src_dct[0x1];
2368         u8 dbr_umem_valid[0x1];
2369         u8 reserved_at_7[0x1];
2370         u8 cqe_sz[0x3];
2371         u8 cc[0x1];
2372         u8 reserved_at_c[0x1];
2373         u8 scqe_break_moderation_en[0x1];
2374         u8 oi[0x1];
2375         u8 cq_period_mode[0x2];
2376         u8 cqe_comp_en[0x1];
2377         u8 mini_cqe_res_format[0x2];
2378         u8 st[0x4];
2379         u8 reserved_at_18[0x1];
2380         u8 cqe_comp_layout[0x7];
2381         u8 dbr_umem_id[0x20];
2382         u8 reserved_at_40[0x14];
2383         u8 page_offset[0x6];
2384         u8 reserved_at_5a[0x2];
2385         u8 mini_cqe_res_format_ext[0x2];
2386         u8 cq_timestamp_format[0x2];
2387         u8 reserved_at_60[0x3];
2388         u8 log_cq_size[0x5];
2389         u8 uar_page[0x18];
2390         u8 reserved_at_80[0x4];
2391         u8 cq_period[0xc];
2392         u8 cq_max_count[0x10];
2393         u8 reserved_at_a0[0x18];
2394         u8 c_eqn[0x8];
2395         u8 reserved_at_c0[0x3];
2396         u8 log_page_size[0x5];
2397         u8 reserved_at_c8[0x18];
2398         u8 reserved_at_e0[0x20];
2399         u8 reserved_at_100[0x8];
2400         u8 last_notified_index[0x18];
2401         u8 reserved_at_120[0x8];
2402         u8 last_solicit_index[0x18];
2403         u8 reserved_at_140[0x8];
2404         u8 consumer_counter[0x18];
2405         u8 reserved_at_160[0x8];
2406         u8 producer_counter[0x18];
2407         u8 local_partition_id[0xc];
2408         u8 process_id[0x14];
2409         u8 reserved_at_1A0[0x20];
2410         u8 dbr_addr[0x40];
2411 };
2412
2413 struct mlx5_ifc_health_buffer_bits {
2414         u8 reserved_0[0x100];
2415         u8 assert_existptr[0x20];
2416         u8 assert_callra[0x20];
2417         u8 reserved_1[0x40];
2418         u8 fw_version[0x20];
2419         u8 hw_id[0x20];
2420         u8 reserved_2[0x20];
2421         u8 irisc_index[0x8];
2422         u8 synd[0x8];
2423         u8 ext_synd[0x10];
2424 };
2425
2426 struct mlx5_ifc_initial_seg_bits {
2427         u8 fw_rev_minor[0x10];
2428         u8 fw_rev_major[0x10];
2429         u8 cmd_interface_rev[0x10];
2430         u8 fw_rev_subminor[0x10];
2431         u8 reserved_0[0x40];
2432         u8 cmdq_phy_addr_63_32[0x20];
2433         u8 cmdq_phy_addr_31_12[0x14];
2434         u8 reserved_1[0x2];
2435         u8 nic_interface[0x2];
2436         u8 log_cmdq_size[0x4];
2437         u8 log_cmdq_stride[0x4];
2438         u8 command_doorbell_vector[0x20];
2439         u8 reserved_2[0xf00];
2440         u8 initializing[0x1];
2441         u8 nic_interface_supported[0x7];
2442         u8 reserved_4[0x18];
2443         struct mlx5_ifc_health_buffer_bits health_buffer;
2444         u8 no_dram_nic_offset[0x20];
2445         u8 reserved_5[0x6de0];
2446         u8 internal_timer_h[0x20];
2447         u8 internal_timer_l[0x20];
2448         u8 reserved_6[0x20];
2449         u8 reserved_7[0x1f];
2450         u8 clear_int[0x1];
2451         u8 health_syndrome[0x8];
2452         u8 health_counter[0x18];
2453         u8 reserved_8[0x17fc0];
2454 };
2455
2456 struct mlx5_ifc_create_cq_out_bits {
2457         u8 status[0x8];
2458         u8 reserved_at_8[0x18];
2459         u8 syndrome[0x20];
2460         u8 reserved_at_40[0x8];
2461         u8 cqn[0x18];
2462         u8 reserved_at_60[0x20];
2463 };
2464
2465 struct mlx5_ifc_create_cq_in_bits {
2466         u8 opcode[0x10];
2467         u8 uid[0x10];
2468         u8 reserved_at_20[0x10];
2469         u8 op_mod[0x10];
2470         u8 reserved_at_40[0x40];
2471         struct mlx5_ifc_cqc_bits cq_context;
2472         u8 cq_umem_offset[0x40];
2473         u8 cq_umem_id[0x20];
2474         u8 cq_umem_valid[0x1];
2475         u8 reserved_at_2e1[0x1f];
2476         u8 reserved_at_300[0x580];
2477         u8 pas[];
2478 };
2479
2480 enum {
2481         MLX5_GENERAL_OBJ_TYPE_GENEVE_TLV_OPT = 0x000b,
2482         MLX5_GENERAL_OBJ_TYPE_DEK = 0x000c,
2483         MLX5_GENERAL_OBJ_TYPE_VIRTQ = 0x000d,
2484         MLX5_GENERAL_OBJ_TYPE_VIRTIO_Q_COUNTERS = 0x001c,
2485         MLX5_GENERAL_OBJ_TYPE_IMPORT_KEK = 0x001d,
2486         MLX5_GENERAL_OBJ_TYPE_CRYPTO_LOGIN = 0x001f,
2487         MLX5_GENERAL_OBJ_TYPE_FLEX_PARSE_GRAPH = 0x0022,
2488         MLX5_GENERAL_OBJ_TYPE_FLOW_METER_ASO = 0x0024,
2489         MLX5_GENERAL_OBJ_TYPE_FLOW_HIT_ASO = 0x0025,
2490 };
2491
2492 struct mlx5_ifc_general_obj_in_cmd_hdr_bits {
2493         u8 opcode[0x10];
2494         u8 reserved_at_10[0x20];
2495         u8 obj_type[0x10];
2496         u8 obj_id[0x20];
2497         u8 reserved_at_60[0x3];
2498         u8 log_obj_range[0x5];
2499         u8 reserved_at_58[0x18];
2500 };
2501
2502 struct mlx5_ifc_general_obj_out_cmd_hdr_bits {
2503         u8 status[0x8];
2504         u8 reserved_at_8[0x18];
2505         u8 syndrome[0x20];
2506         u8 obj_id[0x20];
2507         u8 reserved_at_60[0x20];
2508 };
2509
2510 struct mlx5_ifc_virtio_q_counters_bits {
2511         u8 modify_field_select[0x40];
2512         u8 reserved_at_40[0x40];
2513         u8 received_desc[0x40];
2514         u8 completed_desc[0x40];
2515         u8 error_cqes[0x20];
2516         u8 bad_desc_errors[0x20];
2517         u8 exceed_max_chain[0x20];
2518         u8 invalid_buffer[0x20];
2519         u8 reserved_at_180[0x50];
2520 };
2521
2522 struct mlx5_ifc_geneve_tlv_option_bits {
2523         u8 modify_field_select[0x40];
2524         u8 reserved_at_40[0x18];
2525         u8 geneve_option_fte_index[0x8];
2526         u8 option_class[0x10];
2527         u8 option_type[0x8];
2528         u8 reserved_at_78[0x3];
2529         u8 option_data_length[0x5];
2530         u8 reserved_at_80[0x180];
2531 };
2532
2533 struct mlx5_ifc_create_virtio_q_counters_in_bits {
2534         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2535         struct mlx5_ifc_virtio_q_counters_bits virtio_q_counters;
2536 };
2537
2538 struct mlx5_ifc_query_virtio_q_counters_out_bits {
2539         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2540         struct mlx5_ifc_virtio_q_counters_bits virtio_q_counters;
2541 };
2542
2543 struct mlx5_ifc_create_geneve_tlv_option_in_bits {
2544         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2545         struct mlx5_ifc_geneve_tlv_option_bits geneve_tlv_opt;
2546 };
2547
2548 enum {
2549         MLX5_CRYPTO_KEY_SIZE_128b = 0x0,
2550         MLX5_CRYPTO_KEY_SIZE_256b = 0x1,
2551 };
2552
2553 enum {
2554         MLX5_CRYPTO_KEY_PURPOSE_TLS     = 0x1,
2555         MLX5_CRYPTO_KEY_PURPOSE_IPSEC   = 0x2,
2556         MLX5_CRYPTO_KEY_PURPOSE_AES_XTS = 0x3,
2557         MLX5_CRYPTO_KEY_PURPOSE_MACSEC  = 0x4,
2558         MLX5_CRYPTO_KEY_PURPOSE_GCM     = 0x5,
2559         MLX5_CRYPTO_KEY_PURPOSE_PSP     = 0x6,
2560 };
2561
2562 struct mlx5_ifc_dek_bits {
2563         u8 modify_field_select[0x40];
2564         u8 state[0x8];
2565         u8 reserved_at_48[0xc];
2566         u8 key_size[0x4];
2567         u8 has_keytag[0x1];
2568         u8 reserved_at_59[0x3];
2569         u8 key_purpose[0x4];
2570         u8 reserved_at_60[0x8];
2571         u8 pd[0x18];
2572         u8 reserved_at_80[0x100];
2573         u8 opaque[0x40];
2574         u8 reserved_at_1c0[0x40];
2575         u8 key[0x400];
2576         u8 reserved_at_600[0x200];
2577 };
2578
2579 struct mlx5_ifc_create_dek_in_bits {
2580         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2581         struct mlx5_ifc_dek_bits dek;
2582 };
2583
2584 struct mlx5_ifc_import_kek_bits {
2585         u8 modify_field_select[0x40];
2586         u8 state[0x8];
2587         u8 reserved_at_48[0xc];
2588         u8 key_size[0x4];
2589         u8 reserved_at_58[0x1a8];
2590         u8 key[0x400];
2591         u8 reserved_at_600[0x200];
2592 };
2593
2594 struct mlx5_ifc_create_import_kek_in_bits {
2595         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2596         struct mlx5_ifc_import_kek_bits import_kek;
2597 };
2598
2599 struct mlx5_ifc_crypto_login_bits {
2600         u8 modify_field_select[0x40];
2601         u8 reserved_at_40[0x48];
2602         u8 credential_pointer[0x18];
2603         u8 reserved_at_a0[0x8];
2604         u8 session_import_kek_ptr[0x18];
2605         u8 reserved_at_c0[0x140];
2606         u8 credential[0x180];
2607         u8 reserved_at_380[0x480];
2608 };
2609
2610 struct mlx5_ifc_create_crypto_login_in_bits {
2611         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2612         struct mlx5_ifc_crypto_login_bits crypto_login;
2613 };
2614
2615 enum {
2616         MLX5_VIRTQ_STATE_INIT = 0,
2617         MLX5_VIRTQ_STATE_RDY = 1,
2618         MLX5_VIRTQ_STATE_SUSPEND = 2,
2619         MLX5_VIRTQ_STATE_ERROR = 3,
2620 };
2621
2622 enum {
2623         MLX5_VIRTQ_MODIFY_TYPE_STATE = (1UL << 0),
2624         MLX5_VIRTQ_MODIFY_TYPE_DIRTY_BITMAP_PARAMS = (1UL << 3),
2625         MLX5_VIRTQ_MODIFY_TYPE_DIRTY_BITMAP_DUMP_ENABLE = (1UL << 4),
2626 };
2627
2628 struct mlx5_ifc_virtio_q_bits {
2629         u8 virtio_q_type[0x8];
2630         u8 reserved_at_8[0x5];
2631         u8 event_mode[0x3];
2632         u8 queue_index[0x10];
2633         u8 full_emulation[0x1];
2634         u8 virtio_version_1_0[0x1];
2635         u8 reserved_at_22[0x2];
2636         u8 offload_type[0x4];
2637         u8 event_qpn_or_msix[0x18];
2638         u8 doorbell_stride_idx[0x10];
2639         u8 queue_size[0x10];
2640         u8 device_emulation_id[0x20];
2641         u8 desc_addr[0x40];
2642         u8 used_addr[0x40];
2643         u8 available_addr[0x40];
2644         u8 virtio_q_mkey[0x20];
2645         u8 reserved_at_160[0x18];
2646         u8 error_type[0x8];
2647         u8 umem_1_id[0x20];
2648         u8 umem_1_size[0x20];
2649         u8 umem_1_offset[0x40];
2650         u8 umem_2_id[0x20];
2651         u8 umem_2_size[0x20];
2652         u8 umem_2_offset[0x40];
2653         u8 umem_3_id[0x20];
2654         u8 umem_3_size[0x20];
2655         u8 umem_3_offset[0x40];
2656         u8 counter_set_id[0x20];
2657         u8 reserved_at_320[0x8];
2658         u8 pd[0x18];
2659         u8 reserved_at_340[0x2];
2660         u8 queue_period_mode[0x2];
2661         u8 queue_period_us[0xc];
2662         u8 queue_max_count[0x10];
2663         u8 reserved_at_360[0xa0];
2664 };
2665
2666 struct mlx5_ifc_virtio_net_q_bits {
2667         u8 modify_field_select[0x40];
2668         u8 reserved_at_40[0x40];
2669         u8 tso_ipv4[0x1];
2670         u8 tso_ipv6[0x1];
2671         u8 tx_csum[0x1];
2672         u8 rx_csum[0x1];
2673         u8 reserved_at_84[0x6];
2674         u8 dirty_bitmap_dump_enable[0x1];
2675         u8 vhost_log_page[0x5];
2676         u8 reserved_at_90[0xc];
2677         u8 state[0x4];
2678         u8 reserved_at_a0[0x8];
2679         u8 tisn_or_qpn[0x18];
2680         u8 dirty_bitmap_mkey[0x20];
2681         u8 dirty_bitmap_size[0x20];
2682         u8 dirty_bitmap_addr[0x40];
2683         u8 hw_available_index[0x10];
2684         u8 hw_used_index[0x10];
2685         u8 reserved_at_160[0xa0];
2686         struct mlx5_ifc_virtio_q_bits virtio_q_context;
2687 };
2688
2689 struct mlx5_ifc_create_virtq_in_bits {
2690         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2691         struct mlx5_ifc_virtio_net_q_bits virtq;
2692 };
2693
2694 struct mlx5_ifc_query_virtq_out_bits {
2695         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2696         struct mlx5_ifc_virtio_net_q_bits virtq;
2697 };
2698
2699 struct mlx5_ifc_flow_hit_aso_bits {
2700         u8 modify_field_select[0x40];
2701         u8 reserved_at_40[0x48];
2702         u8 access_pd[0x18];
2703         u8 reserved_at_a0[0x160];
2704         u8 flag[0x200];
2705 };
2706
2707 struct mlx5_ifc_create_flow_hit_aso_in_bits {
2708         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2709         struct mlx5_ifc_flow_hit_aso_bits flow_hit_aso;
2710 };
2711
2712 struct mlx5_ifc_flow_meter_aso_bits {
2713         u8 modify_field_select[0x40];
2714         u8 reserved_at_40[0x48];
2715         u8 access_pd[0x18];
2716         u8 reserved_at_a0[0x160];
2717         u8 parameters[0x200];
2718 };
2719
2720 struct mlx5_ifc_create_flow_meter_aso_in_bits {
2721         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2722         struct mlx5_ifc_flow_meter_aso_bits flow_meter_aso;
2723 };
2724 enum mlx5_access_aso_opc_mod {
2725         ASO_OPC_MOD_IPSEC = 0x0,
2726         ASO_OPC_MOD_CONNECTION_TRACKING = 0x1,
2727         ASO_OPC_MOD_POLICER = 0x2,
2728         ASO_OPC_MOD_RACE_AVOIDANCE = 0x3,
2729         ASO_OPC_MOD_FLOW_HIT = 0x4,
2730 };
2731
2732 #define ASO_CSEG_DATA_MASK_MODE_OFFSET  30
2733
2734 enum mlx5_aso_data_mask_mode {
2735         BITWISE_64BIT = 0x0,
2736         BYTEWISE_64BYTE = 0x1,
2737         CALCULATED_64BYTE = 0x2,
2738 };
2739
2740 #define ASO_CSEG_COND_0_OPER_OFFSET     20
2741 #define ASO_CSEG_COND_1_OPER_OFFSET     16
2742
2743 enum mlx5_aso_pre_cond_op {
2744         ASO_OP_ALWAYS_FALSE = 0x0,
2745         ASO_OP_ALWAYS_TRUE = 0x1,
2746         ASO_OP_EQUAL = 0x2,
2747         ASO_OP_NOT_EQUAL = 0x3,
2748         ASO_OP_GREATER_OR_EQUAL = 0x4,
2749         ASO_OP_LESSER_OR_EQUAL = 0x5,
2750         ASO_OP_LESSER = 0x6,
2751         ASO_OP_GREATER = 0x7,
2752         ASO_OP_CYCLIC_GREATER = 0x8,
2753         ASO_OP_CYCLIC_LESSER = 0x9,
2754 };
2755
2756 #define ASO_CSEG_COND_OPER_OFFSET       6
2757
2758 enum mlx5_aso_op {
2759         ASO_OPER_LOGICAL_AND = 0x0,
2760         ASO_OPER_LOGICAL_OR = 0x1,
2761 };
2762
2763 /* ASO WQE CTRL segment. */
2764 struct mlx5_aso_cseg {
2765         uint32_t va_h;
2766         uint32_t va_l_r;
2767         uint32_t lkey;
2768         uint32_t operand_masks;
2769         uint32_t condition_0_data;
2770         uint32_t condition_0_mask;
2771         uint32_t condition_1_data;
2772         uint32_t condition_1_mask;
2773         uint64_t bitwise_data;
2774         uint64_t data_mask;
2775 } __rte_packed;
2776
2777 /* A meter data segment - 2 per ASO WQE. */
2778 struct mlx5_aso_mtr_dseg {
2779         uint32_t v_bo_sc_bbog_mm;
2780         /*
2781          * bit 31: valid, 30: bucket overflow, 28-29: start color,
2782          * 27: both buckets on green, 24-25: meter mode.
2783          */
2784         uint32_t reserved;
2785         uint32_t cbs_cir;
2786         /*
2787          * bit 24-28: cbs_exponent, bit 16-23 cbs_mantissa,
2788          * bit 8-12: cir_exponent, bit 0-7 cir_mantissa.
2789          */
2790         uint32_t c_tokens;
2791         uint32_t ebs_eir;
2792         /*
2793          * bit 24-28: ebs_exponent, bit 16-23 ebs_mantissa,
2794          * bit 8-12: eir_exponent, bit 0-7 eir_mantissa.
2795          */
2796         uint32_t e_tokens;
2797         uint64_t timestamp;
2798 } __rte_packed;
2799
2800 #define ASO_DSEG_VALID_OFFSET 31
2801 #define ASO_DSEG_BO_OFFSET 30
2802 #define ASO_DSEG_SC_OFFSET 28
2803 #define ASO_DSEG_CBS_EXP_OFFSET 24
2804 #define ASO_DSEG_CBS_MAN_OFFSET 16
2805 #define ASO_DSEG_CIR_EXP_MASK 0x1F
2806 #define ASO_DSEG_CIR_EXP_OFFSET 8
2807 #define ASO_DSEG_EBS_EXP_OFFSET 24
2808 #define ASO_DSEG_EBS_MAN_OFFSET 16
2809 #define ASO_DSEG_EXP_MASK 0x1F
2810 #define ASO_DSEG_MAN_MASK 0xFF
2811
2812 #define MLX5_ASO_WQE_DSEG_SIZE  0x40
2813 #define MLX5_ASO_METERS_PER_WQE 2
2814 #define MLX5_ASO_MTRS_PER_POOL 128
2815
2816 /* ASO WQE data segment. */
2817 struct mlx5_aso_dseg {
2818         union {
2819                 uint8_t data[MLX5_ASO_WQE_DSEG_SIZE];
2820                 struct mlx5_aso_mtr_dseg mtrs[MLX5_ASO_METERS_PER_WQE];
2821         };
2822 } __rte_packed;
2823
2824 /* ASO WQE. */
2825 struct mlx5_aso_wqe {
2826         struct mlx5_wqe_cseg general_cseg;
2827         struct mlx5_aso_cseg aso_cseg;
2828         struct mlx5_aso_dseg aso_dseg;
2829 } __rte_packed;
2830
2831 enum {
2832         MLX5_EVENT_TYPE_OBJECT_CHANGE = 0x27,
2833 };
2834
2835 enum {
2836         MLX5_QP_ST_RC = 0x0,
2837 };
2838
2839 enum {
2840         MLX5_QP_PM_MIGRATED = 0x3,
2841 };
2842
2843 enum {
2844         MLX5_NON_ZERO_RQ = 0x0,
2845         MLX5_SRQ_RQ = 0x1,
2846         MLX5_CRQ_RQ = 0x2,
2847         MLX5_ZERO_LEN_RQ = 0x3,
2848 };
2849
2850 struct mlx5_ifc_ads_bits {
2851         u8 fl[0x1];
2852         u8 free_ar[0x1];
2853         u8 reserved_at_2[0xe];
2854         u8 pkey_index[0x10];
2855         u8 reserved_at_20[0x8];
2856         u8 grh[0x1];
2857         u8 mlid[0x7];
2858         u8 rlid[0x10];
2859         u8 ack_timeout[0x5];
2860         u8 reserved_at_45[0x3];
2861         u8 src_addr_index[0x8];
2862         u8 reserved_at_50[0x4];
2863         u8 stat_rate[0x4];
2864         u8 hop_limit[0x8];
2865         u8 reserved_at_60[0x4];
2866         u8 tclass[0x8];
2867         u8 flow_label[0x14];
2868         u8 rgid_rip[16][0x8];
2869         u8 reserved_at_100[0x4];
2870         u8 f_dscp[0x1];
2871         u8 f_ecn[0x1];
2872         u8 reserved_at_106[0x1];
2873         u8 f_eth_prio[0x1];
2874         u8 ecn[0x2];
2875         u8 dscp[0x6];
2876         u8 udp_sport[0x10];
2877         u8 dei_cfi[0x1];
2878         u8 eth_prio[0x3];
2879         u8 sl[0x4];
2880         u8 vhca_port_num[0x8];
2881         u8 rmac_47_32[0x10];
2882         u8 rmac_31_0[0x20];
2883 };
2884
2885 struct mlx5_ifc_qpc_bits {
2886         u8 state[0x4];
2887         u8 lag_tx_port_affinity[0x4];
2888         u8 st[0x8];
2889         u8 reserved_at_10[0x3];
2890         u8 pm_state[0x2];
2891         u8 reserved_at_15[0x1];
2892         u8 req_e2e_credit_mode[0x2];
2893         u8 offload_type[0x4];
2894         u8 end_padding_mode[0x2];
2895         u8 reserved_at_1e[0x2];
2896         u8 wq_signature[0x1];
2897         u8 block_lb_mc[0x1];
2898         u8 atomic_like_write_en[0x1];
2899         u8 latency_sensitive[0x1];
2900         u8 reserved_at_24[0x1];
2901         u8 drain_sigerr[0x1];
2902         u8 reserved_at_26[0x2];
2903         u8 pd[0x18];
2904         u8 mtu[0x3];
2905         u8 log_msg_max[0x5];
2906         u8 reserved_at_48[0x1];
2907         u8 log_rq_size[0x4];
2908         u8 log_rq_stride[0x3];
2909         u8 no_sq[0x1];
2910         u8 log_sq_size[0x4];
2911         u8 reserved_at_55[0x3];
2912         u8 ts_format[0x2];
2913         u8 reserved_at_5a[0x1];
2914         u8 rlky[0x1];
2915         u8 ulp_stateless_offload_mode[0x4];
2916         u8 counter_set_id[0x8];
2917         u8 uar_page[0x18];
2918         u8 reserved_at_80[0x8];
2919         u8 user_index[0x18];
2920         u8 reserved_at_a0[0x3];
2921         u8 log_page_size[0x5];
2922         u8 remote_qpn[0x18];
2923         struct mlx5_ifc_ads_bits primary_address_path;
2924         struct mlx5_ifc_ads_bits secondary_address_path;
2925         u8 log_ack_req_freq[0x4];
2926         u8 reserved_at_384[0x4];
2927         u8 log_sra_max[0x3];
2928         u8 reserved_at_38b[0x2];
2929         u8 retry_count[0x3];
2930         u8 rnr_retry[0x3];
2931         u8 reserved_at_393[0x1];
2932         u8 fre[0x1];
2933         u8 cur_rnr_retry[0x3];
2934         u8 cur_retry_count[0x3];
2935         u8 reserved_at_39b[0x5];
2936         u8 reserved_at_3a0[0x20];
2937         u8 reserved_at_3c0[0x8];
2938         u8 next_send_psn[0x18];
2939         u8 reserved_at_3e0[0x8];
2940         u8 cqn_snd[0x18];
2941         u8 reserved_at_400[0x8];
2942         u8 deth_sqpn[0x18];
2943         u8 reserved_at_420[0x20];
2944         u8 reserved_at_440[0x8];
2945         u8 last_acked_psn[0x18];
2946         u8 reserved_at_460[0x8];
2947         u8 ssn[0x18];
2948         u8 reserved_at_480[0x8];
2949         u8 log_rra_max[0x3];
2950         u8 reserved_at_48b[0x1];
2951         u8 atomic_mode[0x4];
2952         u8 rre[0x1];
2953         u8 rwe[0x1];
2954         u8 rae[0x1];
2955         u8 reserved_at_493[0x1];
2956         u8 page_offset[0x6];
2957         u8 reserved_at_49a[0x3];
2958         u8 cd_slave_receive[0x1];
2959         u8 cd_slave_send[0x1];
2960         u8 cd_master[0x1];
2961         u8 reserved_at_4a0[0x3];
2962         u8 min_rnr_nak[0x5];
2963         u8 next_rcv_psn[0x18];
2964         u8 reserved_at_4c0[0x8];
2965         u8 xrcd[0x18];
2966         u8 reserved_at_4e0[0x8];
2967         u8 cqn_rcv[0x18];
2968         u8 dbr_addr[0x40];
2969         u8 q_key[0x20];
2970         u8 reserved_at_560[0x5];
2971         u8 rq_type[0x3];
2972         u8 srqn_rmpn_xrqn[0x18];
2973         u8 reserved_at_580[0x8];
2974         u8 rmsn[0x18];
2975         u8 hw_sq_wqebb_counter[0x10];
2976         u8 sw_sq_wqebb_counter[0x10];
2977         u8 hw_rq_counter[0x20];
2978         u8 sw_rq_counter[0x20];
2979         u8 reserved_at_600[0x20];
2980         u8 reserved_at_620[0xf];
2981         u8 cgs[0x1];
2982         u8 cs_req[0x8];
2983         u8 cs_res[0x8];
2984         u8 dc_access_key[0x40];
2985         u8 reserved_at_680[0x3];
2986         u8 dbr_umem_valid[0x1];
2987         u8 reserved_at_684[0x9c];
2988         u8 dbr_umem_id[0x20];
2989 };
2990
2991 struct mlx5_ifc_create_qp_out_bits {
2992         u8 status[0x8];
2993         u8 reserved_at_8[0x18];
2994         u8 syndrome[0x20];
2995         u8 reserved_at_40[0x8];
2996         u8 qpn[0x18];
2997         u8 reserved_at_60[0x20];
2998 };
2999
3000 #ifdef PEDANTIC
3001 #pragma GCC diagnostic ignored "-Wpedantic"
3002 #endif
3003 struct mlx5_ifc_create_qp_in_bits {
3004         u8 opcode[0x10];
3005         u8 uid[0x10];
3006         u8 reserved_at_20[0x10];
3007         u8 op_mod[0x10];
3008         u8 reserved_at_40[0x40];
3009         u8 opt_param_mask[0x20];
3010         u8 reserved_at_a0[0x20];
3011         struct mlx5_ifc_qpc_bits qpc;
3012         u8 wq_umem_offset[0x40];
3013         u8 wq_umem_id[0x20];
3014         u8 wq_umem_valid[0x1];
3015         u8 reserved_at_861[0x1f];
3016         u8 pas[0][0x40];
3017 };
3018 #ifdef PEDANTIC
3019 #pragma GCC diagnostic error "-Wpedantic"
3020 #endif
3021
3022 struct mlx5_ifc_sqerr2rts_qp_out_bits {
3023         u8 status[0x8];
3024         u8 reserved_at_8[0x18];
3025         u8 syndrome[0x20];
3026         u8 reserved_at_40[0x40];
3027 };
3028
3029 struct mlx5_ifc_sqerr2rts_qp_in_bits {
3030         u8 opcode[0x10];
3031         u8 uid[0x10];
3032         u8 reserved_at_20[0x10];
3033         u8 op_mod[0x10];
3034         u8 reserved_at_40[0x8];
3035         u8 qpn[0x18];
3036         u8 reserved_at_60[0x20];
3037         u8 opt_param_mask[0x20];
3038         u8 reserved_at_a0[0x20];
3039         struct mlx5_ifc_qpc_bits qpc;
3040         u8 reserved_at_800[0x80];
3041 };
3042
3043 struct mlx5_ifc_sqd2rts_qp_out_bits {
3044         u8 status[0x8];
3045         u8 reserved_at_8[0x18];
3046         u8 syndrome[0x20];
3047         u8 reserved_at_40[0x40];
3048 };
3049
3050 struct mlx5_ifc_sqd2rts_qp_in_bits {
3051         u8 opcode[0x10];
3052         u8 uid[0x10];
3053         u8 reserved_at_20[0x10];
3054         u8 op_mod[0x10];
3055         u8 reserved_at_40[0x8];
3056         u8 qpn[0x18];
3057         u8 reserved_at_60[0x20];
3058         u8 opt_param_mask[0x20];
3059         u8 reserved_at_a0[0x20];
3060         struct mlx5_ifc_qpc_bits qpc;
3061         u8 reserved_at_800[0x80];
3062 };
3063
3064 struct mlx5_ifc_rts2rts_qp_out_bits {
3065         u8 status[0x8];
3066         u8 reserved_at_8[0x18];
3067         u8 syndrome[0x20];
3068         u8 reserved_at_40[0x40];
3069 };
3070
3071 struct mlx5_ifc_rts2rts_qp_in_bits {
3072         u8 opcode[0x10];
3073         u8 uid[0x10];
3074         u8 reserved_at_20[0x10];
3075         u8 op_mod[0x10];
3076         u8 reserved_at_40[0x8];
3077         u8 qpn[0x18];
3078         u8 reserved_at_60[0x20];
3079         u8 opt_param_mask[0x20];
3080         u8 reserved_at_a0[0x20];
3081         struct mlx5_ifc_qpc_bits qpc;
3082         u8 reserved_at_800[0x80];
3083 };
3084
3085 struct mlx5_ifc_rtr2rts_qp_out_bits {
3086         u8 status[0x8];
3087         u8 reserved_at_8[0x18];
3088         u8 syndrome[0x20];
3089         u8 reserved_at_40[0x40];
3090 };
3091
3092 struct mlx5_ifc_rtr2rts_qp_in_bits {
3093         u8 opcode[0x10];
3094         u8 uid[0x10];
3095         u8 reserved_at_20[0x10];
3096         u8 op_mod[0x10];
3097         u8 reserved_at_40[0x8];
3098         u8 qpn[0x18];
3099         u8 reserved_at_60[0x20];
3100         u8 opt_param_mask[0x20];
3101         u8 reserved_at_a0[0x20];
3102         struct mlx5_ifc_qpc_bits qpc;
3103         u8 reserved_at_800[0x80];
3104 };
3105
3106 struct mlx5_ifc_rst2init_qp_out_bits {
3107         u8 status[0x8];
3108         u8 reserved_at_8[0x18];
3109         u8 syndrome[0x20];
3110         u8 reserved_at_40[0x40];
3111 };
3112
3113 struct mlx5_ifc_rst2init_qp_in_bits {
3114         u8 opcode[0x10];
3115         u8 uid[0x10];
3116         u8 reserved_at_20[0x10];
3117         u8 op_mod[0x10];
3118         u8 reserved_at_40[0x8];
3119         u8 qpn[0x18];
3120         u8 reserved_at_60[0x20];
3121         u8 opt_param_mask[0x20];
3122         u8 reserved_at_a0[0x20];
3123         struct mlx5_ifc_qpc_bits qpc;
3124         u8 reserved_at_800[0x80];
3125 };
3126
3127 struct mlx5_ifc_init2rtr_qp_out_bits {
3128         u8 status[0x8];
3129         u8 reserved_at_8[0x18];
3130         u8 syndrome[0x20];
3131         u8 reserved_at_40[0x40];
3132 };
3133
3134 struct mlx5_ifc_init2rtr_qp_in_bits {
3135         u8 opcode[0x10];
3136         u8 uid[0x10];
3137         u8 reserved_at_20[0x10];
3138         u8 op_mod[0x10];
3139         u8 reserved_at_40[0x8];
3140         u8 qpn[0x18];
3141         u8 reserved_at_60[0x20];
3142         u8 opt_param_mask[0x20];
3143         u8 reserved_at_a0[0x20];
3144         struct mlx5_ifc_qpc_bits qpc;
3145         u8 reserved_at_800[0x80];
3146 };
3147
3148 struct mlx5_ifc_init2init_qp_out_bits {
3149         u8 status[0x8];
3150         u8 reserved_at_8[0x18];
3151         u8 syndrome[0x20];
3152         u8 reserved_at_40[0x40];
3153 };
3154
3155 struct mlx5_ifc_init2init_qp_in_bits {
3156         u8 opcode[0x10];
3157         u8 uid[0x10];
3158         u8 reserved_at_20[0x10];
3159         u8 op_mod[0x10];
3160         u8 reserved_at_40[0x8];
3161         u8 qpn[0x18];
3162         u8 reserved_at_60[0x20];
3163         u8 opt_param_mask[0x20];
3164         u8 reserved_at_a0[0x20];
3165         struct mlx5_ifc_qpc_bits qpc;
3166         u8 reserved_at_800[0x80];
3167 };
3168
3169 struct mlx5_ifc_dealloc_pd_out_bits {
3170         u8 status[0x8];
3171         u8 reserved_0[0x18];
3172         u8 syndrome[0x20];
3173         u8 reserved_1[0x40];
3174 };
3175
3176 struct mlx5_ifc_dealloc_pd_in_bits {
3177         u8 opcode[0x10];
3178         u8 reserved_0[0x10];
3179         u8 reserved_1[0x10];
3180         u8 op_mod[0x10];
3181         u8 reserved_2[0x8];
3182         u8 pd[0x18];
3183         u8 reserved_3[0x20];
3184 };
3185
3186 struct mlx5_ifc_alloc_pd_out_bits {
3187         u8 status[0x8];
3188         u8 reserved_0[0x18];
3189         u8 syndrome[0x20];
3190         u8 reserved_1[0x8];
3191         u8 pd[0x18];
3192         u8 reserved_2[0x20];
3193 };
3194
3195 struct mlx5_ifc_alloc_pd_in_bits {
3196         u8 opcode[0x10];
3197         u8 reserved_0[0x10];
3198         u8 reserved_1[0x10];
3199         u8 op_mod[0x10];
3200         u8 reserved_2[0x40];
3201 };
3202
3203 #ifdef PEDANTIC
3204 #pragma GCC diagnostic ignored "-Wpedantic"
3205 #endif
3206 struct mlx5_ifc_query_qp_out_bits {
3207         u8 status[0x8];
3208         u8 reserved_at_8[0x18];
3209         u8 syndrome[0x20];
3210         u8 reserved_at_40[0x40];
3211         u8 opt_param_mask[0x20];
3212         u8 reserved_at_a0[0x20];
3213         struct mlx5_ifc_qpc_bits qpc;
3214         u8 reserved_at_800[0x80];
3215         u8 pas[0][0x40];
3216 };
3217 #ifdef PEDANTIC
3218 #pragma GCC diagnostic error "-Wpedantic"
3219 #endif
3220
3221 struct mlx5_ifc_query_qp_in_bits {
3222         u8 opcode[0x10];
3223         u8 reserved_at_10[0x10];
3224         u8 reserved_at_20[0x10];
3225         u8 op_mod[0x10];
3226         u8 reserved_at_40[0x8];
3227         u8 qpn[0x18];
3228         u8 reserved_at_60[0x20];
3229 };
3230
3231 enum {
3232         MLX5_DATA_RATE = 0x0,
3233         MLX5_WQE_RATE = 0x1,
3234 };
3235
3236 struct mlx5_ifc_set_pp_rate_limit_context_bits {
3237         u8 rate_limit[0x20];
3238         u8 burst_upper_bound[0x20];
3239         u8 reserved_at_40[0xC];
3240         u8 rate_mode[0x4];
3241         u8 typical_packet_size[0x10];
3242         u8 reserved_at_60[0x120];
3243 };
3244
3245 #define MLX5_ACCESS_REGISTER_DATA_DWORD_MAX 8u
3246
3247 #ifdef PEDANTIC
3248 #pragma GCC diagnostic ignored "-Wpedantic"
3249 #endif
3250 struct mlx5_ifc_access_register_out_bits {
3251         u8 status[0x8];
3252         u8 reserved_at_8[0x18];
3253         u8 syndrome[0x20];
3254         u8 reserved_at_40[0x40];
3255         u8 register_data[0][0x20];
3256 };
3257
3258 struct mlx5_ifc_access_register_in_bits {
3259         u8 opcode[0x10];
3260         u8 reserved_at_10[0x10];
3261         u8 reserved_at_20[0x10];
3262         u8 op_mod[0x10];
3263         u8 reserved_at_40[0x10];
3264         u8 register_id[0x10];
3265         u8 argument[0x20];
3266         u8 register_data[0][0x20];
3267 };
3268 #ifdef PEDANTIC
3269 #pragma GCC diagnostic error "-Wpedantic"
3270 #endif
3271
3272 enum {
3273         MLX5_ACCESS_REGISTER_IN_OP_MOD_WRITE  = 0x0,
3274         MLX5_ACCESS_REGISTER_IN_OP_MOD_READ   = 0x1,
3275 };
3276
3277 enum {
3278         MLX5_REGISTER_ID_MTUTC  = 0x9055,
3279 };
3280
3281 struct mlx5_ifc_register_mtutc_bits {
3282         u8 time_stamp_mode[0x2];
3283         u8 time_stamp_state[0x2];
3284         u8 reserved_at_4[0x18];
3285         u8 operation[0x4];
3286         u8 freq_adjustment[0x20];
3287         u8 reserved_at_40[0x40];
3288         u8 utc_sec[0x20];
3289         u8 utc_nsec[0x20];
3290         u8 time_adjustment[0x20];
3291 };
3292
3293 #define MLX5_MTUTC_TIMESTAMP_MODE_INTERNAL_TIMER 0
3294 #define MLX5_MTUTC_TIMESTAMP_MODE_REAL_TIME 1
3295
3296 struct mlx5_ifc_parse_graph_arc_bits {
3297         u8 start_inner_tunnel[0x1];
3298         u8 reserved_at_1[0x7];
3299         u8 arc_parse_graph_node[0x8];
3300         u8 compare_condition_value[0x10];
3301         u8 parse_graph_node_handle[0x20];
3302         u8 reserved_at_40[0x40];
3303 };
3304
3305 struct mlx5_ifc_parse_graph_flow_match_sample_bits {
3306         u8 flow_match_sample_en[0x1];
3307         u8 reserved_at_1[0x3];
3308         u8 flow_match_sample_offset_mode[0x4];
3309         u8 reserved_at_5[0x8];
3310         u8 flow_match_sample_field_offset[0x10];
3311         u8 reserved_at_32[0x4];
3312         u8 flow_match_sample_field_offset_shift[0x4];
3313         u8 flow_match_sample_field_base_offset[0x8];
3314         u8 reserved_at_48[0xd];
3315         u8 flow_match_sample_tunnel_mode[0x3];
3316         u8 flow_match_sample_field_offset_mask[0x20];
3317         u8 flow_match_sample_field_id[0x20];
3318 };
3319
3320 struct mlx5_ifc_parse_graph_flex_bits {
3321         u8 modify_field_select[0x40];
3322         u8 reserved_at_64[0x20];
3323         u8 header_length_base_value[0x10];
3324         u8 reserved_at_112[0x4];
3325         u8 header_length_field_shift[0x4];
3326         u8 reserved_at_120[0x4];
3327         u8 header_length_mode[0x4];
3328         u8 header_length_field_offset[0x10];
3329         u8 next_header_field_offset[0x10];
3330         u8 reserved_at_160[0x1b];
3331         u8 next_header_field_size[0x5];
3332         u8 header_length_field_mask[0x20];
3333         u8 reserved_at_224[0x20];
3334         struct mlx5_ifc_parse_graph_flow_match_sample_bits sample_table[0x8];
3335         struct mlx5_ifc_parse_graph_arc_bits input_arc[0x8];
3336         struct mlx5_ifc_parse_graph_arc_bits output_arc[0x8];
3337 };
3338
3339 struct mlx5_ifc_create_flex_parser_in_bits {
3340         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
3341         struct mlx5_ifc_parse_graph_flex_bits flex;
3342 };
3343
3344 struct mlx5_ifc_create_flex_parser_out_bits {
3345         struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
3346         struct mlx5_ifc_parse_graph_flex_bits flex;
3347 };
3348
3349 struct mlx5_ifc_parse_graph_flex_out_bits {
3350         u8 status[0x8];
3351         u8 reserved_at_8[0x18];
3352         u8 syndrome[0x20];
3353         u8 reserved_at_40[0x40];
3354         struct mlx5_ifc_parse_graph_flex_bits capability;
3355 };
3356
3357 struct regexp_params_field_select_bits {
3358         u8 reserved_at_0[0x1e];
3359         u8 stop_engine[0x1];
3360         u8 db_umem_id[0x1];
3361 };
3362
3363 struct mlx5_ifc_regexp_params_bits {
3364         u8 reserved_at_0[0x1f];
3365         u8 stop_engine[0x1];
3366         u8 db_umem_id[0x20];
3367         u8 db_umem_offset[0x40];
3368         u8 reserved_at_80[0x100];
3369 };
3370
3371 struct mlx5_ifc_set_regexp_params_in_bits {
3372         u8 opcode[0x10];
3373         u8 uid[0x10];
3374         u8 reserved_at_20[0x10];
3375         u8 op_mod[0x10];
3376         u8 reserved_at_40[0x18];
3377         u8 engine_id[0x8];
3378         struct regexp_params_field_select_bits field_select;
3379         struct mlx5_ifc_regexp_params_bits regexp_params;
3380 };
3381
3382 struct mlx5_ifc_set_regexp_params_out_bits {
3383         u8 status[0x8];
3384         u8 reserved_at_8[0x18];
3385         u8 syndrome[0x20];
3386         u8 reserved_at_18[0x40];
3387 };
3388
3389 struct mlx5_ifc_query_regexp_params_in_bits {
3390         u8 opcode[0x10];
3391         u8 uid[0x10];
3392         u8 reserved_at_20[0x10];
3393         u8 op_mod[0x10];
3394         u8 reserved_at_40[0x18];
3395         u8 engine_id[0x8];
3396         u8 reserved[0x20];
3397 };
3398
3399 struct mlx5_ifc_query_regexp_params_out_bits {
3400         u8 status[0x8];
3401         u8 reserved_at_8[0x18];
3402         u8 syndrome[0x20];
3403         u8 reserved[0x40];
3404         struct mlx5_ifc_regexp_params_bits regexp_params;
3405 };
3406
3407 struct mlx5_ifc_set_regexp_register_in_bits {
3408         u8 opcode[0x10];
3409         u8 uid[0x10];
3410         u8 reserved_at_20[0x10];
3411         u8 op_mod[0x10];
3412         u8 reserved_at_40[0x18];
3413         u8 engine_id[0x8];
3414         u8 register_address[0x20];
3415         u8 register_data[0x20];
3416         u8 reserved[0x60];
3417 };
3418
3419 struct mlx5_ifc_set_regexp_register_out_bits {
3420         u8 status[0x8];
3421         u8 reserved_at_8[0x18];
3422         u8 syndrome[0x20];
3423         u8 reserved[0x40];
3424 };
3425
3426 struct mlx5_ifc_query_regexp_register_in_bits {
3427         u8 opcode[0x10];
3428         u8 uid[0x10];
3429         u8 reserved_at_20[0x10];
3430         u8 op_mod[0x10];
3431         u8 reserved_at_40[0x18];
3432         u8 engine_id[0x8];
3433         u8 register_address[0x20];
3434 };
3435
3436 struct mlx5_ifc_query_regexp_register_out_bits {
3437         u8 status[0x8];
3438         u8 reserved_at_8[0x18];
3439         u8 syndrome[0x20];
3440         u8 reserved[0x20];
3441         u8 register_data[0x20];
3442 };
3443
3444 /* Queue counters. */
3445 struct mlx5_ifc_alloc_q_counter_out_bits {
3446         u8 status[0x8];
3447         u8 reserved_at_8[0x18];
3448         u8 syndrome[0x20];
3449         u8 reserved_at_40[0x18];
3450         u8 counter_set_id[0x8];
3451         u8 reserved_at_60[0x20];
3452 };
3453
3454 struct mlx5_ifc_alloc_q_counter_in_bits {
3455         u8 opcode[0x10];
3456         u8 uid[0x10];
3457         u8 reserved_at_20[0x10];
3458         u8 op_mod[0x10];
3459         u8 reserved_at_40[0x40];
3460 };
3461
3462 struct mlx5_ifc_query_q_counter_out_bits {
3463         u8 status[0x8];
3464         u8 reserved_at_8[0x18];
3465         u8 syndrome[0x20];
3466         u8 reserved_at_40[0x40];
3467         u8 rx_write_requests[0x20];
3468         u8 reserved_at_a0[0x20];
3469         u8 rx_read_requests[0x20];
3470         u8 reserved_at_e0[0x20];
3471         u8 rx_atomic_requests[0x20];
3472         u8 reserved_at_120[0x20];
3473         u8 rx_dct_connect[0x20];
3474         u8 reserved_at_160[0x20];
3475         u8 out_of_buffer[0x20];
3476         u8 reserved_at_1a0[0x20];
3477         u8 out_of_sequence[0x20];
3478         u8 reserved_at_1e0[0x20];
3479         u8 duplicate_request[0x20];
3480         u8 reserved_at_220[0x20];
3481         u8 rnr_nak_retry_err[0x20];
3482         u8 reserved_at_260[0x20];
3483         u8 packet_seq_err[0x20];
3484         u8 reserved_at_2a0[0x20];
3485         u8 implied_nak_seq_err[0x20];
3486         u8 reserved_at_2e0[0x20];
3487         u8 local_ack_timeout_err[0x20];
3488         u8 reserved_at_320[0xa0];
3489         u8 resp_local_length_error[0x20];
3490         u8 req_local_length_error[0x20];
3491         u8 resp_local_qp_error[0x20];
3492         u8 local_operation_error[0x20];
3493         u8 resp_local_protection[0x20];
3494         u8 req_local_protection[0x20];
3495         u8 resp_cqe_error[0x20];
3496         u8 req_cqe_error[0x20];
3497         u8 req_mw_binding[0x20];
3498         u8 req_bad_response[0x20];
3499         u8 req_remote_invalid_request[0x20];
3500         u8 resp_remote_invalid_request[0x20];
3501         u8 req_remote_access_errors[0x20];
3502         u8 resp_remote_access_errors[0x20];
3503         u8 req_remote_operation_errors[0x20];
3504         u8 req_transport_retries_exceeded[0x20];
3505         u8 cq_overflow[0x20];
3506         u8 resp_cqe_flush_error[0x20];
3507         u8 req_cqe_flush_error[0x20];
3508         u8 reserved_at_620[0x1e0];
3509 };
3510
3511 struct mlx5_ifc_query_q_counter_in_bits {
3512         u8 opcode[0x10];
3513         u8 uid[0x10];
3514         u8 reserved_at_20[0x10];
3515         u8 op_mod[0x10];
3516         u8 reserved_at_40[0x80];
3517         u8 clear[0x1];
3518         u8 reserved_at_c1[0x1f];
3519         u8 reserved_at_e0[0x18];
3520         u8 counter_set_id[0x8];
3521 };
3522
3523 /* CQE format mask. */
3524 #define MLX5E_CQE_FORMAT_MASK 0xc
3525
3526 /* MPW opcode. */
3527 #define MLX5_OPC_MOD_MPW 0x01
3528
3529 /* Compressed Rx CQE structure. */
3530 struct mlx5_mini_cqe8 {
3531         union {
3532                 uint32_t rx_hash_result;
3533                 struct {
3534                         union {
3535                                 uint16_t checksum;
3536                                 uint16_t flow_tag_high;
3537                                 struct {
3538                                         uint8_t reserved;
3539                                         uint8_t hdr_type;
3540                                 };
3541                         };
3542                         uint16_t stride_idx;
3543                 };
3544                 struct {
3545                         uint16_t wqe_counter;
3546                         uint8_t  s_wqe_opcode;
3547                         uint8_t  reserved;
3548                 } s_wqe_info;
3549         };
3550         union {
3551                 uint32_t byte_cnt_flow;
3552                 uint32_t byte_cnt;
3553         };
3554 };
3555
3556 /* Mini CQE responder format. */
3557 enum {
3558         MLX5_CQE_RESP_FORMAT_HASH = 0x0,
3559         MLX5_CQE_RESP_FORMAT_CSUM = 0x1,
3560         MLX5_CQE_RESP_FORMAT_FTAG_STRIDX = 0x2,
3561         MLX5_CQE_RESP_FORMAT_CSUM_STRIDX = 0x3,
3562         MLX5_CQE_RESP_FORMAT_L34H_STRIDX = 0x4,
3563 };
3564
3565 /* srTCM PRM flow meter parameters. */
3566 enum {
3567         MLX5_FLOW_COLOR_RED = 0,
3568         MLX5_FLOW_COLOR_YELLOW,
3569         MLX5_FLOW_COLOR_GREEN,
3570         MLX5_FLOW_COLOR_UNDEFINED,
3571 };
3572
3573 /* Maximum value of srTCM metering parameters. */
3574 #define MLX5_SRTCM_CBS_MAX (0xFF * (1ULL << 0x1F))
3575 #define MLX5_SRTCM_CIR_MAX (8 * (1ULL << 30) * 0xFF)
3576 #define MLX5_SRTCM_EBS_MAX 0
3577
3578 /* The bits meter color use. */
3579 #define MLX5_MTR_COLOR_BITS 8
3580
3581 /* The bit size of one register. */
3582 #define MLX5_REG_BITS 32
3583
3584 /* Idle bits for non-color usage in color register. */
3585 #define MLX5_MTR_IDLE_BITS_IN_COLOR_REG (MLX5_REG_BITS - MLX5_MTR_COLOR_BITS)
3586
3587 /* Length mode of dynamic flex parser graph node. */
3588 enum mlx5_parse_graph_node_len_mode {
3589         MLX5_GRAPH_NODE_LEN_FIXED = 0x0,
3590         MLX5_GRAPH_NODE_LEN_FIELD = 0x1,
3591         MLX5_GRAPH_NODE_LEN_BITMASK = 0x2,
3592 };
3593
3594 /* Offset mode of the samples of flex parser. */
3595 enum mlx5_parse_graph_flow_match_sample_offset_mode {
3596         MLX5_GRAPH_SAMPLE_OFFSET_FIXED = 0x0,
3597         MLX5_GRAPH_SAMPLE_OFFSET_FIELD = 0x1,
3598         MLX5_GRAPH_SAMPLE_OFFSET_BITMASK = 0x2,
3599 };
3600
3601 /* Node index for an input / output arc of the flex parser graph. */
3602 enum mlx5_parse_graph_arc_node_index {
3603         MLX5_GRAPH_ARC_NODE_NULL = 0x0,
3604         MLX5_GRAPH_ARC_NODE_HEAD = 0x1,
3605         MLX5_GRAPH_ARC_NODE_MAC = 0x2,
3606         MLX5_GRAPH_ARC_NODE_IP = 0x3,
3607         MLX5_GRAPH_ARC_NODE_GRE = 0x4,
3608         MLX5_GRAPH_ARC_NODE_UDP = 0x5,
3609         MLX5_GRAPH_ARC_NODE_MPLS = 0x6,
3610         MLX5_GRAPH_ARC_NODE_TCP = 0x7,
3611         MLX5_GRAPH_ARC_NODE_VXLAN_GPE = 0x8,
3612         MLX5_GRAPH_ARC_NODE_GENEVE = 0x9,
3613         MLX5_GRAPH_ARC_NODE_IPSEC_ESP = 0xa,
3614         MLX5_GRAPH_ARC_NODE_PROGRAMMABLE = 0x1f,
3615 };
3616
3617 /**
3618  * Convert a user mark to flow mark.
3619  *
3620  * @param val
3621  *   Mark value to convert.
3622  *
3623  * @return
3624  *   Converted mark value.
3625  */
3626 static inline uint32_t
3627 mlx5_flow_mark_set(uint32_t val)
3628 {
3629         uint32_t ret;
3630
3631         /*
3632          * Add one to the user value to differentiate un-marked flows from
3633          * marked flows, if the ID is equal to MLX5_FLOW_MARK_DEFAULT it
3634          * remains untouched.
3635          */
3636         if (val != MLX5_FLOW_MARK_DEFAULT)
3637                 ++val;
3638 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
3639         /*
3640          * Mark is 24 bits (minus reserved values) but is stored on a 32 bit
3641          * word, byte-swapped by the kernel on little-endian systems. In this
3642          * case, left-shifting the resulting big-endian value ensures the
3643          * least significant 24 bits are retained when converting it back.
3644          */
3645         ret = rte_cpu_to_be_32(val) >> 8;
3646 #else
3647         ret = val;
3648 #endif
3649         return ret;
3650 }
3651
3652 /**
3653  * Convert a mark to user mark.
3654  *
3655  * @param val
3656  *   Mark value to convert.
3657  *
3658  * @return
3659  *   Converted mark value.
3660  */
3661 static inline uint32_t
3662 mlx5_flow_mark_get(uint32_t val)
3663 {
3664         /*
3665          * Subtract one from the retrieved value. It was added by
3666          * mlx5_flow_mark_set() to distinguish unmarked flows.
3667          */
3668 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
3669         return (val >> 8) - 1;
3670 #else
3671         return val - 1;
3672 #endif
3673 }
3674
3675 /**
3676  * Convert a timestamp format to configure settings in the queue context.
3677  *
3678  * @param val
3679  *   timestamp format supported by the queue.
3680  *
3681  * @return
3682  *   Converted timstamp format settings.
3683  */
3684 static inline uint32_t
3685 mlx5_ts_format_conv(uint32_t ts_format)
3686 {
3687         return ts_format == MLX5_HCA_CAP_TIMESTAMP_FORMAT_FR ?
3688                         MLX5_QPC_TIMESTAMP_FORMAT_FREE_RUNNING :
3689                         MLX5_QPC_TIMESTAMP_FORMAT_DEFAULT;
3690 }
3691
3692 #endif /* RTE_PMD_MLX5_PRM_H_ */