1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2016 6WIND S.A.
3 * Copyright 2016 Mellanox Technologies, Ltd
6 #ifndef RTE_PMD_MLX5_PRM_H_
7 #define RTE_PMD_MLX5_PRM_H_
12 #include <rte_byteorder.h>
14 #include <mlx5_glue.h>
15 #include "mlx5_autoconf.h"
17 /* RSS hash key size. */
18 #define MLX5_RSS_HASH_KEY_LEN 40
20 /* Get CQE owner bit. */
21 #define MLX5_CQE_OWNER(op_own) ((op_own) & MLX5_CQE_OWNER_MASK)
24 #define MLX5_CQE_FORMAT(op_own) (((op_own) & MLX5E_CQE_FORMAT_MASK) >> 2)
27 #define MLX5_CQE_OPCODE(op_own) (((op_own) & 0xf0) >> 4)
29 /* Get CQE solicited event. */
30 #define MLX5_CQE_SE(op_own) (((op_own) >> 1) & 1)
32 /* Invalidate a CQE. */
33 #define MLX5_CQE_INVALIDATE (MLX5_CQE_INVALID << 4)
35 /* Hardware index widths. */
36 #define MLX5_CQ_INDEX_WIDTH 24
37 #define MLX5_WQ_INDEX_WIDTH 16
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)
45 /* WQE/WQEBB size in bytes. */
46 #define MLX5_WQE_SIZE sizeof(struct mlx5_wqe)
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.
53 #define MLX5_WQE_SIZE_MAX (60 * MLX5_WSEG_SIZE)
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.
62 #define MLX5_INLINE_MAX_TXQS 8u
63 #define MLX5_INLINE_MAX_TXQS_BLUEFIELD 16u
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
72 #define MLX5_EMPW_DEF_INLINE_LEN (4u * MLX5_WQE_SIZE + \
73 MLX5_DSEG_MIN_INLINE_SIZE)
75 * Maximal inline data length sent with enhanced MPW.
76 * Is based on maximal WQE size.
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)
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.
89 #define MLX5_EMPW_MIN_PACKETS (2u + 3u * 4u)
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.
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
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
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 - \
114 * Maximal inline data length sent with ordinary SEND.
115 * Is based on maximal WQE size.
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)
123 /* Missed in mlx5dv.h, should define here. */
124 #ifndef HAVE_MLX5_OPCODE_ENHANCED_MPSW
125 #define MLX5_OPCODE_ENHANCED_MPSW 0x29u
128 #ifndef HAVE_MLX5_OPCODE_SEND_EN
129 #define MLX5_OPCODE_SEND_EN 0x17u
132 #ifndef HAVE_MLX5_OPCODE_WAIT
133 #define MLX5_OPCODE_WAIT 0x0fu
136 #ifndef HAVE_MLX5_OPCODE_ACCESS_ASO
137 #define MLX5_OPCODE_ACCESS_ASO 0x2du
140 /* CQE value to inform that VLAN is stripped. */
141 #define MLX5_CQE_VLAN_STRIPPED (1u << 0)
144 #define MLX5_CQE_RX_IP_EXT_OPTS_PACKET (1u << 1)
147 #define MLX5_CQE_RX_IPV6_PACKET (1u << 2)
150 #define MLX5_CQE_RX_IPV4_PACKET (1u << 3)
153 #define MLX5_CQE_RX_TCP_PACKET (1u << 4)
156 #define MLX5_CQE_RX_UDP_PACKET (1u << 5)
158 /* IP is fragmented. */
159 #define MLX5_CQE_RX_IP_FRAG_PACKET (1u << 7)
161 /* L2 header is valid. */
162 #define MLX5_CQE_RX_L2_HDR_VALID (1u << 8)
164 /* L3 header is valid. */
165 #define MLX5_CQE_RX_L3_HDR_VALID (1u << 9)
167 /* L4 header is valid. */
168 #define MLX5_CQE_RX_L4_HDR_VALID (1u << 10)
170 /* Outer packet, 0 IPv4, 1 IPv6. */
171 #define MLX5_CQE_RX_OUTER_PACKET (1u << 1)
173 /* Tunnel packet bit in the CQE. */
174 #define MLX5_CQE_RX_TUNNEL_PACKET (1u << 0)
176 /* Mask for LRO push flag in the CQE lro_tcppsh_abort_dupack field. */
177 #define MLX5_CQE_LRO_PUSH_MASK 0x40
179 /* Mask for L4 type in the CQE hdr_type_etc field. */
180 #define MLX5_CQE_L4_TYPE_MASK 0x70
182 /* The bit index of L4 type in CQE hdr_type_etc field. */
183 #define MLX5_CQE_L4_TYPE_SHIFT 0x4
185 /* L4 type to indicate TCP packet without acknowledgment. */
186 #define MLX5_L4_HDR_TYPE_TCP_EMPTY_ACK 0x3
188 /* L4 type to indicate TCP packet with acknowledgment. */
189 #define MLX5_L4_HDR_TYPE_TCP_WITH_ACL 0x4
191 /* Inner L3 checksum offload (Tunneled packets only). */
192 #define MLX5_ETH_WQE_L3_INNER_CSUM (1u << 4)
194 /* Inner L4 checksum offload (Tunneled packets only). */
195 #define MLX5_ETH_WQE_L4_INNER_CSUM (1u << 5)
197 /* Outer L4 type is TCP. */
198 #define MLX5_ETH_WQE_L4_OUTER_TCP (0u << 5)
200 /* Outer L4 type is UDP. */
201 #define MLX5_ETH_WQE_L4_OUTER_UDP (1u << 5)
203 /* Outer L3 type is IPV4. */
204 #define MLX5_ETH_WQE_L3_OUTER_IPV4 (0u << 4)
206 /* Outer L3 type is IPV6. */
207 #define MLX5_ETH_WQE_L3_OUTER_IPV6 (1u << 4)
209 /* Inner L4 type is TCP. */
210 #define MLX5_ETH_WQE_L4_INNER_TCP (0u << 1)
212 /* Inner L4 type is UDP. */
213 #define MLX5_ETH_WQE_L4_INNER_UDP (1u << 1)
215 /* Inner L3 type is IPV4. */
216 #define MLX5_ETH_WQE_L3_INNER_IPV4 (0u << 0)
218 /* Inner L3 type is IPV6. */
219 #define MLX5_ETH_WQE_L3_INNER_IPV6 (1u << 0)
221 /* VLAN insertion flag. */
222 #define MLX5_ETH_WQE_VLAN_INSERT (1u << 31)
224 /* Data inline segment flag. */
225 #define MLX5_ETH_WQE_DATA_INLINE (1u << 31)
227 /* Is flow mark valid. */
228 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
229 #define MLX5_FLOW_MARK_IS_VALID(val) ((val) & 0xffffff00)
231 #define MLX5_FLOW_MARK_IS_VALID(val) ((val) & 0xffffff)
234 /* INVALID is used by packets matching no flow rules. */
235 #define MLX5_FLOW_MARK_INVALID 0
237 /* Maximum allowed value to mark a packet. */
238 #define MLX5_FLOW_MARK_MAX 0xfffff0
240 /* Default mark value used when none is provided. */
241 #define MLX5_FLOW_MARK_DEFAULT 0xffffff
243 /* Default mark mask for metadata legacy mode. */
244 #define MLX5_FLOW_MARK_MASK 0xffffff
246 /* Byte length mask when mark is enable in miniCQE */
247 #define MLX5_LEN_WITH_MARK_MASK 0xffffff00
249 /* Maximum number of DS in WQE. Limited by 6-bit field. */
250 #define MLX5_DSEG_MAX 63
252 /* The completion mode offset in the WQE control segment line 2. */
253 #define MLX5_COMP_MODE_OFFSET 2
255 /* Amount of data bytes in minimal inline data segment. */
256 #define MLX5_DSEG_MIN_INLINE_SIZE 12u
258 /* Amount of data bytes in minimal inline eth segment. */
259 #define MLX5_ESEG_MIN_INLINE_SIZE 18u
261 /* Amount of data bytes after eth data segment. */
262 #define MLX5_ESEG_EXTRA_DATA_SIZE 32u
264 /* The maximum log value of segments per RQ WQE. */
265 #define MLX5_MAX_LOG_RQ_SEGS 5u
267 /* The alignment needed for WQ buffer. */
268 #define MLX5_WQE_BUF_ALIGNMENT rte_mem_page_size()
270 /* The alignment needed for CQ buffer. */
271 #define MLX5_CQE_BUF_ALIGNMENT rte_mem_page_size()
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,
285 MLX5_MPW_ENHANCED, /* Enhanced Multi-Packet Send WQE, a.k.a MPWv2. */
288 /* WQE Control segment. */
289 struct mlx5_wqe_cseg {
294 } __rte_packed __rte_aligned(MLX5_WSEG_SIZE);
297 * WQE CSEG opcode field size is 32 bits, divided:
299 * Bits 23:8 wqe_index
302 #define WQE_CSEG_OPC_MOD_OFFSET 24
303 #define WQE_CSEG_WQE_INDEX_OFFSET 8
305 /* Header of data segment. Minimal size Data Segment */
306 struct mlx5_wqe_dseg {
309 uint8_t inline_data[MLX5_DSEG_MIN_INLINE_SIZE];
317 /* Subset of struct WQE Ethernet Segment. */
318 struct mlx5_wqe_eseg {
326 uint16_t inline_hdr_sz;
328 uint16_t inline_data;
335 uint32_t flow_metadata;
341 struct mlx5_wqe_qseg {
348 /* The title WQEBB, header of WQE. */
351 struct mlx5_wqe_cseg cseg;
354 struct mlx5_wqe_eseg eseg;
356 struct mlx5_wqe_dseg dseg[2];
357 uint8_t data[MLX5_ESEG_EXTRA_DATA_SIZE];
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;
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
374 #define MLX5_MPRQ_STRIDE_SHIFT_BYTE 2
376 /* CQ element structure - should be equal to the cache line size */
378 #if (RTE_CACHE_LINE_SIZE == 128)
384 uint8_t lro_tcppsh_abort_dupack;
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;
393 uint16_t hdr_type_etc;
397 uint32_t flow_table_metadata;
401 uint32_t sop_drop_qpn;
402 uint16_t wqe_counter;
409 uint32_t sop_drop_qpn;
410 uint16_t wqe_counter;
415 /* MMO metadata segment */
417 #define MLX5_OPCODE_MMO 0x2f
418 #define MLX5_OPC_MOD_MMO_REGEX 0x4
420 struct mlx5_wqe_metadata_seg {
421 uint32_t mmo_control_31_0; /* mmo_control_63_32 is in ctrl_seg.imm */
426 struct mlx5_ifc_regexp_mmo_control_bits {
427 uint8_t reserved_at_31[0x2];
429 uint8_t reserved_at_28[0x1];
430 uint8_t subset_id_0[0xc];
431 uint8_t reserved_at_16[0x4];
432 uint8_t subset_id_1[0xc];
434 uint8_t subset_id_2[0xc];
435 uint8_t reserved_at_16_1[0x4];
436 uint8_t subset_id_3[0xc];
439 struct mlx5_ifc_regexp_metadata_bits {
440 uint8_t rof_version[0x10];
441 uint8_t latency_count[0x10];
442 uint8_t instruction_count[0x10];
443 uint8_t primary_thread_count[0x10];
444 uint8_t match_count[0x8];
445 uint8_t detected_match_count[0x8];
446 uint8_t status[0x10];
447 uint8_t job_id[0x20];
448 uint8_t reserved[0x80];
451 struct mlx5_ifc_regexp_match_tuple_bits {
452 uint8_t length[0x10];
453 uint8_t start_ptr[0x10];
454 uint8_t rule_id[0x20];
457 /* Adding direct verbs to data-path. */
459 /* CQ sequence number mask. */
460 #define MLX5_CQ_SQN_MASK 0x3
462 /* CQ sequence number index. */
463 #define MLX5_CQ_SQN_OFFSET 28
465 /* CQ doorbell index mask. */
466 #define MLX5_CI_MASK 0xffffff
468 /* CQ doorbell offset. */
469 #define MLX5_CQ_ARM_DB 1
471 /* CQ doorbell offset*/
472 #define MLX5_CQ_DOORBELL 0x20
474 /* CQE format value. */
475 #define MLX5_COMPRESSED 0x3
477 /* CQ doorbell cmd types. */
478 #define MLX5_CQ_DBR_CMD_SOL_ONLY (1 << 24)
479 #define MLX5_CQ_DBR_CMD_ALL (0 << 24)
481 /* Action type of header modification. */
483 MLX5_MODIFICATION_TYPE_SET = 0x1,
484 MLX5_MODIFICATION_TYPE_ADD = 0x2,
485 MLX5_MODIFICATION_TYPE_COPY = 0x3,
488 /* The field of packet to be modified. */
489 enum mlx5_modification_field {
490 MLX5_MODI_OUT_NONE = -1,
491 MLX5_MODI_OUT_SMAC_47_16 = 1,
492 MLX5_MODI_OUT_SMAC_15_0,
493 MLX5_MODI_OUT_ETHERTYPE,
494 MLX5_MODI_OUT_DMAC_47_16,
495 MLX5_MODI_OUT_DMAC_15_0,
496 MLX5_MODI_OUT_IP_DSCP,
497 MLX5_MODI_OUT_TCP_FLAGS,
498 MLX5_MODI_OUT_TCP_SPORT,
499 MLX5_MODI_OUT_TCP_DPORT,
500 MLX5_MODI_OUT_IPV4_TTL,
501 MLX5_MODI_OUT_UDP_SPORT,
502 MLX5_MODI_OUT_UDP_DPORT,
503 MLX5_MODI_OUT_SIPV6_127_96,
504 MLX5_MODI_OUT_SIPV6_95_64,
505 MLX5_MODI_OUT_SIPV6_63_32,
506 MLX5_MODI_OUT_SIPV6_31_0,
507 MLX5_MODI_OUT_DIPV6_127_96,
508 MLX5_MODI_OUT_DIPV6_95_64,
509 MLX5_MODI_OUT_DIPV6_63_32,
510 MLX5_MODI_OUT_DIPV6_31_0,
513 MLX5_MODI_OUT_FIRST_VID,
514 MLX5_MODI_IN_SMAC_47_16 = 0x31,
515 MLX5_MODI_IN_SMAC_15_0,
516 MLX5_MODI_IN_ETHERTYPE,
517 MLX5_MODI_IN_DMAC_47_16,
518 MLX5_MODI_IN_DMAC_15_0,
519 MLX5_MODI_IN_IP_DSCP,
520 MLX5_MODI_IN_TCP_FLAGS,
521 MLX5_MODI_IN_TCP_SPORT,
522 MLX5_MODI_IN_TCP_DPORT,
523 MLX5_MODI_IN_IPV4_TTL,
524 MLX5_MODI_IN_UDP_SPORT,
525 MLX5_MODI_IN_UDP_DPORT,
526 MLX5_MODI_IN_SIPV6_127_96,
527 MLX5_MODI_IN_SIPV6_95_64,
528 MLX5_MODI_IN_SIPV6_63_32,
529 MLX5_MODI_IN_SIPV6_31_0,
530 MLX5_MODI_IN_DIPV6_127_96,
531 MLX5_MODI_IN_DIPV6_95_64,
532 MLX5_MODI_IN_DIPV6_63_32,
533 MLX5_MODI_IN_DIPV6_31_0,
536 MLX5_MODI_OUT_IPV6_HOPLIMIT,
537 MLX5_MODI_IN_IPV6_HOPLIMIT,
538 MLX5_MODI_META_DATA_REG_A,
539 MLX5_MODI_META_DATA_REG_B = 0x50,
540 MLX5_MODI_META_REG_C_0,
541 MLX5_MODI_META_REG_C_1,
542 MLX5_MODI_META_REG_C_2,
543 MLX5_MODI_META_REG_C_3,
544 MLX5_MODI_META_REG_C_4,
545 MLX5_MODI_META_REG_C_5,
546 MLX5_MODI_META_REG_C_6,
547 MLX5_MODI_META_REG_C_7,
548 MLX5_MODI_OUT_TCP_SEQ_NUM,
549 MLX5_MODI_IN_TCP_SEQ_NUM,
550 MLX5_MODI_OUT_TCP_ACK_NUM,
551 MLX5_MODI_IN_TCP_ACK_NUM = 0x5C,
554 /* Total number of metadata reg_c's. */
555 #define MLX5_MREG_C_NUM (MLX5_MODI_META_REG_C_7 - MLX5_MODI_META_REG_C_0 + 1)
571 /* Modification sub command. */
572 struct mlx5_modification_cmd {
576 unsigned int length:5;
577 unsigned int rsvd0:3;
578 unsigned int offset:5;
579 unsigned int rsvd1:3;
580 unsigned int field:12;
581 unsigned int action_type:4;
588 unsigned int rsvd2:8;
589 unsigned int dst_offset:5;
590 unsigned int rsvd3:3;
591 unsigned int dst_field:12;
592 unsigned int rsvd4:4;
597 typedef uint64_t u64;
598 typedef uint32_t u32;
599 typedef uint16_t u16;
602 #define __mlx5_nullp(typ) ((struct mlx5_ifc_##typ##_bits *)0)
603 #define __mlx5_bit_sz(typ, fld) sizeof(__mlx5_nullp(typ)->fld)
604 #define __mlx5_bit_off(typ, fld) ((unsigned int)(unsigned long) \
605 (&(__mlx5_nullp(typ)->fld)))
606 #define __mlx5_dw_bit_off(typ, fld) (32 - __mlx5_bit_sz(typ, fld) - \
607 (__mlx5_bit_off(typ, fld) & 0x1f))
608 #define __mlx5_dw_off(typ, fld) (__mlx5_bit_off(typ, fld) / 32)
609 #define __mlx5_64_off(typ, fld) (__mlx5_bit_off(typ, fld) / 64)
610 #define __mlx5_dw_mask(typ, fld) (__mlx5_mask(typ, fld) << \
611 __mlx5_dw_bit_off(typ, fld))
612 #define __mlx5_mask(typ, fld) ((u32)((1ull << __mlx5_bit_sz(typ, fld)) - 1))
613 #define __mlx5_16_off(typ, fld) (__mlx5_bit_off(typ, fld) / 16)
614 #define __mlx5_16_bit_off(typ, fld) (16 - __mlx5_bit_sz(typ, fld) - \
615 (__mlx5_bit_off(typ, fld) & 0xf))
616 #define __mlx5_mask16(typ, fld) ((u16)((1ull << __mlx5_bit_sz(typ, fld)) - 1))
617 #define __mlx5_16_mask(typ, fld) (__mlx5_mask16(typ, fld) << \
618 __mlx5_16_bit_off(typ, fld))
619 #define MLX5_ST_SZ_BYTES(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 8)
620 #define MLX5_ST_SZ_DW(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 32)
621 #define MLX5_BYTE_OFF(typ, fld) (__mlx5_bit_off(typ, fld) / 8)
622 #define MLX5_ADDR_OF(typ, p, fld) ((char *)(p) + MLX5_BYTE_OFF(typ, fld))
624 /* insert a value to a struct */
625 #define MLX5_SET(typ, p, fld, v) \
628 *((rte_be32_t *)(p) + __mlx5_dw_off(typ, fld)) = \
629 rte_cpu_to_be_32((rte_be_to_cpu_32(*((u32 *)(p) + \
630 __mlx5_dw_off(typ, fld))) & \
631 (~__mlx5_dw_mask(typ, fld))) | \
632 (((_v) & __mlx5_mask(typ, fld)) << \
633 __mlx5_dw_bit_off(typ, fld))); \
636 #define MLX5_SET64(typ, p, fld, v) \
638 MLX5_ASSERT(__mlx5_bit_sz(typ, fld) == 64); \
639 *((rte_be64_t *)(p) + __mlx5_64_off(typ, fld)) = \
640 rte_cpu_to_be_64(v); \
643 #define MLX5_SET16(typ, p, fld, v) \
646 *((rte_be16_t *)(p) + __mlx5_16_off(typ, fld)) = \
647 rte_cpu_to_be_16((rte_be_to_cpu_16(*((rte_be16_t *)(p) + \
648 __mlx5_16_off(typ, fld))) & \
649 (~__mlx5_16_mask(typ, fld))) | \
650 (((_v) & __mlx5_mask16(typ, fld)) << \
651 __mlx5_16_bit_off(typ, fld))); \
654 #define MLX5_GET_VOLATILE(typ, p, fld) \
655 ((rte_be_to_cpu_32(*((volatile __be32 *)(p) +\
656 __mlx5_dw_off(typ, fld))) >> __mlx5_dw_bit_off(typ, fld)) & \
657 __mlx5_mask(typ, fld))
658 #define MLX5_GET(typ, p, fld) \
659 ((rte_be_to_cpu_32(*((rte_be32_t *)(p) +\
660 __mlx5_dw_off(typ, fld))) >> __mlx5_dw_bit_off(typ, fld)) & \
661 __mlx5_mask(typ, fld))
662 #define MLX5_GET16(typ, p, fld) \
663 ((rte_be_to_cpu_16(*((rte_be16_t *)(p) + \
664 __mlx5_16_off(typ, fld))) >> __mlx5_16_bit_off(typ, fld)) & \
665 __mlx5_mask16(typ, fld))
666 #define MLX5_GET64(typ, p, fld) rte_be_to_cpu_64(*((rte_be64_t *)(p) + \
667 __mlx5_64_off(typ, fld)))
668 #define MLX5_FLD_SZ_BYTES(typ, fld) (__mlx5_bit_sz(typ, fld) / 8)
669 #define MLX5_UN_SZ_BYTES(typ) (sizeof(union mlx5_ifc_##typ##_bits) / 8)
671 struct mlx5_ifc_fte_match_set_misc_bits {
672 u8 gre_c_present[0x1];
673 u8 reserved_at_1[0x1];
674 u8 gre_k_present[0x1];
675 u8 gre_s_present[0x1];
676 u8 source_vhci_port[0x4];
678 u8 reserved_at_20[0x10];
679 u8 source_port[0x10];
680 u8 outer_second_prio[0x3];
681 u8 outer_second_cfi[0x1];
682 u8 outer_second_vid[0xc];
683 u8 inner_second_prio[0x3];
684 u8 inner_second_cfi[0x1];
685 u8 inner_second_vid[0xc];
686 u8 outer_second_cvlan_tag[0x1];
687 u8 inner_second_cvlan_tag[0x1];
688 u8 outer_second_svlan_tag[0x1];
689 u8 inner_second_svlan_tag[0x1];
690 u8 reserved_at_64[0xc];
691 u8 gre_protocol[0x10];
695 u8 reserved_at_b8[0x8];
697 u8 reserved_at_e4[0x7];
699 u8 reserved_at_e0[0xc];
700 u8 outer_ipv6_flow_label[0x14];
701 u8 reserved_at_100[0xc];
702 u8 inner_ipv6_flow_label[0x14];
703 u8 reserved_at_120[0xa];
704 u8 geneve_opt_len[0x6];
705 u8 geneve_protocol_type[0x10];
706 u8 reserved_at_140[0xc0];
709 struct mlx5_ifc_ipv4_layout_bits {
710 u8 reserved_at_0[0x60];
714 struct mlx5_ifc_ipv6_layout_bits {
718 union mlx5_ifc_ipv6_layout_ipv4_layout_auto_bits {
719 struct mlx5_ifc_ipv6_layout_bits ipv6_layout;
720 struct mlx5_ifc_ipv4_layout_bits ipv4_layout;
721 u8 reserved_at_0[0x80];
724 struct mlx5_ifc_fte_match_set_lyr_2_4_bits {
743 u8 reserved_at_c0[0x18];
744 u8 ip_ttl_hoplimit[0x8];
747 union mlx5_ifc_ipv6_layout_ipv4_layout_auto_bits src_ipv4_src_ipv6;
748 union mlx5_ifc_ipv6_layout_ipv4_layout_auto_bits dst_ipv4_dst_ipv6;
751 struct mlx5_ifc_fte_match_mpls_bits {
758 struct mlx5_ifc_fte_match_set_misc2_bits {
759 struct mlx5_ifc_fte_match_mpls_bits outer_first_mpls;
760 struct mlx5_ifc_fte_match_mpls_bits inner_first_mpls;
761 struct mlx5_ifc_fte_match_mpls_bits outer_first_mpls_over_gre;
762 struct mlx5_ifc_fte_match_mpls_bits outer_first_mpls_over_udp;
763 u8 metadata_reg_c_7[0x20];
764 u8 metadata_reg_c_6[0x20];
765 u8 metadata_reg_c_5[0x20];
766 u8 metadata_reg_c_4[0x20];
767 u8 metadata_reg_c_3[0x20];
768 u8 metadata_reg_c_2[0x20];
769 u8 metadata_reg_c_1[0x20];
770 u8 metadata_reg_c_0[0x20];
771 u8 metadata_reg_a[0x20];
772 u8 metadata_reg_b[0x20];
773 u8 reserved_at_1c0[0x40];
776 struct mlx5_ifc_fte_match_set_misc3_bits {
777 u8 inner_tcp_seq_num[0x20];
778 u8 outer_tcp_seq_num[0x20];
779 u8 inner_tcp_ack_num[0x20];
780 u8 outer_tcp_ack_num[0x20];
781 u8 reserved_at_auto1[0x8];
782 u8 outer_vxlan_gpe_vni[0x18];
783 u8 outer_vxlan_gpe_next_protocol[0x8];
784 u8 outer_vxlan_gpe_flags[0x8];
785 u8 reserved_at_a8[0x10];
786 u8 icmp_header_data[0x20];
787 u8 icmpv6_header_data[0x20];
792 u8 reserved_at_120[0x20];
794 u8 gtpu_msg_type[0x08];
795 u8 gtpu_msg_flags[0x08];
796 u8 reserved_at_170[0x90];
799 struct mlx5_ifc_fte_match_set_misc4_bits {
800 u8 prog_sample_field_value_0[0x20];
801 u8 prog_sample_field_id_0[0x20];
802 u8 prog_sample_field_value_1[0x20];
803 u8 prog_sample_field_id_1[0x20];
804 u8 prog_sample_field_value_2[0x20];
805 u8 prog_sample_field_id_2[0x20];
806 u8 prog_sample_field_value_3[0x20];
807 u8 prog_sample_field_id_3[0x20];
808 u8 reserved_at_100[0x100];
812 struct mlx5_ifc_fte_match_param_bits {
813 struct mlx5_ifc_fte_match_set_lyr_2_4_bits outer_headers;
814 struct mlx5_ifc_fte_match_set_misc_bits misc_parameters;
815 struct mlx5_ifc_fte_match_set_lyr_2_4_bits inner_headers;
816 struct mlx5_ifc_fte_match_set_misc2_bits misc_parameters_2;
817 struct mlx5_ifc_fte_match_set_misc3_bits misc_parameters_3;
818 struct mlx5_ifc_fte_match_set_misc4_bits misc_parameters_4;
820 * Add reserved bit to match the struct size with the size defined in PRM.
821 * This extension is not required in Linux.
823 #ifndef HAVE_INFINIBAND_VERBS_H
824 u8 reserved_0[0x400];
828 struct mlx5_ifc_dest_format_struct_bits {
829 u8 destination_type[0x8];
830 u8 destination_id[0x18];
835 MLX5_MATCH_CRITERIA_ENABLE_OUTER_BIT,
836 MLX5_MATCH_CRITERIA_ENABLE_MISC_BIT,
837 MLX5_MATCH_CRITERIA_ENABLE_INNER_BIT,
838 MLX5_MATCH_CRITERIA_ENABLE_MISC2_BIT,
839 MLX5_MATCH_CRITERIA_ENABLE_MISC3_BIT,
840 MLX5_MATCH_CRITERIA_ENABLE_MISC4_BIT,
844 MLX5_CMD_OP_QUERY_HCA_CAP = 0x100,
845 MLX5_CMD_OP_CREATE_MKEY = 0x200,
846 MLX5_CMD_OP_CREATE_CQ = 0x400,
847 MLX5_CMD_OP_CREATE_QP = 0x500,
848 MLX5_CMD_OP_RST2INIT_QP = 0x502,
849 MLX5_CMD_OP_INIT2RTR_QP = 0x503,
850 MLX5_CMD_OP_RTR2RTS_QP = 0x504,
851 MLX5_CMD_OP_RTS2RTS_QP = 0x505,
852 MLX5_CMD_OP_SQERR2RTS_QP = 0x506,
853 MLX5_CMD_OP_QP_2ERR = 0x507,
854 MLX5_CMD_OP_QP_2RST = 0x50A,
855 MLX5_CMD_OP_QUERY_QP = 0x50B,
856 MLX5_CMD_OP_SQD2RTS_QP = 0x50C,
857 MLX5_CMD_OP_INIT2INIT_QP = 0x50E,
858 MLX5_CMD_OP_SUSPEND_QP = 0x50F,
859 MLX5_CMD_OP_RESUME_QP = 0x510,
860 MLX5_CMD_OP_QUERY_NIC_VPORT_CONTEXT = 0x754,
861 MLX5_CMD_OP_ALLOC_PD = 0x800,
862 MLX5_CMD_OP_DEALLOC_PD = 0x801,
863 MLX5_CMD_OP_ACCESS_REGISTER = 0x805,
864 MLX5_CMD_OP_ALLOC_TRANSPORT_DOMAIN = 0x816,
865 MLX5_CMD_OP_CREATE_TIR = 0x900,
866 MLX5_CMD_OP_MODIFY_TIR = 0x901,
867 MLX5_CMD_OP_CREATE_SQ = 0X904,
868 MLX5_CMD_OP_MODIFY_SQ = 0X905,
869 MLX5_CMD_OP_CREATE_RQ = 0x908,
870 MLX5_CMD_OP_MODIFY_RQ = 0x909,
871 MLX5_CMD_OP_CREATE_TIS = 0x912,
872 MLX5_CMD_OP_QUERY_TIS = 0x915,
873 MLX5_CMD_OP_CREATE_RQT = 0x916,
874 MLX5_CMD_OP_MODIFY_RQT = 0x917,
875 MLX5_CMD_OP_ALLOC_FLOW_COUNTER = 0x939,
876 MLX5_CMD_OP_QUERY_FLOW_COUNTER = 0x93b,
877 MLX5_CMD_OP_CREATE_GENERAL_OBJECT = 0xa00,
878 MLX5_CMD_OP_MODIFY_GENERAL_OBJECT = 0xa01,
879 MLX5_CMD_OP_QUERY_GENERAL_OBJECT = 0xa02,
880 MLX5_CMD_SET_REGEX_PARAMS = 0xb04,
881 MLX5_CMD_QUERY_REGEX_PARAMS = 0xb05,
882 MLX5_CMD_SET_REGEX_REGISTERS = 0xb06,
883 MLX5_CMD_QUERY_REGEX_REGISTERS = 0xb07,
884 MLX5_CMD_OP_ACCESS_REGISTER_USER = 0xb0c,
888 MLX5_MKC_ACCESS_MODE_MTT = 0x1,
889 MLX5_MKC_ACCESS_MODE_KLM = 0x2,
890 MLX5_MKC_ACCESS_MODE_KLM_FBS = 0x3,
893 #define MLX5_ADAPTER_PAGE_SHIFT 12
894 #define MLX5_LOG_RQ_STRIDE_SHIFT 4
896 * The batch counter dcs id starts from 0x800000 and none batch counter
897 * starts from 0. As currently, the counter is changed to be indexed by
898 * pool index and the offset of the counter in the pool counters_raw array.
899 * It means now the counter index is same for batch and none batch counter.
900 * Add the 0x800000 batch counter offset to the batch counter index helps
901 * indicate the counter index is from batch or none batch container pool.
903 #define MLX5_CNT_BATCH_OFFSET 0x800000
905 /* The counter batch query requires ID align with 4. */
906 #define MLX5_CNT_BATCH_QUERY_ID_ALIGNMENT 4
909 struct mlx5_ifc_alloc_flow_counter_out_bits {
911 u8 reserved_at_8[0x18];
913 u8 flow_counter_id[0x20];
914 u8 reserved_at_60[0x20];
917 struct mlx5_ifc_alloc_flow_counter_in_bits {
919 u8 reserved_at_10[0x10];
920 u8 reserved_at_20[0x10];
922 u8 flow_counter_id[0x20];
923 u8 reserved_at_40[0x18];
924 u8 flow_counter_bulk[0x8];
927 struct mlx5_ifc_dealloc_flow_counter_out_bits {
929 u8 reserved_at_8[0x18];
931 u8 reserved_at_40[0x40];
934 struct mlx5_ifc_dealloc_flow_counter_in_bits {
936 u8 reserved_at_10[0x10];
937 u8 reserved_at_20[0x10];
939 u8 flow_counter_id[0x20];
940 u8 reserved_at_60[0x20];
943 struct mlx5_ifc_traffic_counter_bits {
948 struct mlx5_ifc_query_flow_counter_out_bits {
950 u8 reserved_at_8[0x18];
952 u8 reserved_at_40[0x40];
953 struct mlx5_ifc_traffic_counter_bits flow_statistics[];
956 struct mlx5_ifc_query_flow_counter_in_bits {
958 u8 reserved_at_10[0x10];
959 u8 reserved_at_20[0x10];
961 u8 reserved_at_40[0x20];
965 u8 dump_to_memory[0x1];
966 u8 num_of_counters[0x1e];
967 u8 flow_counter_id[0x20];
970 #define MLX5_MAX_KLM_BYTE_COUNT 0x80000000u
971 #define MLX5_MIN_KLM_FIXED_BUFFER_SIZE 0x1000u
974 struct mlx5_ifc_klm_bits {
980 struct mlx5_ifc_mkc_bits {
981 u8 reserved_at_0[0x1];
983 u8 reserved_at_2[0x1];
984 u8 access_mode_4_2[0x3];
985 u8 reserved_at_6[0x7];
986 u8 relaxed_ordering_write[0x1];
987 u8 reserved_at_e[0x1];
988 u8 small_fence_on_rdma_read_response[0x1];
995 u8 access_mode_1_0[0x2];
996 u8 reserved_at_18[0x8];
1001 u8 reserved_at_40[0x20];
1006 u8 reserved_at_63[0x2];
1007 u8 expected_sigerr_count[0x1];
1008 u8 reserved_at_66[0x1];
1012 u8 start_addr[0x40];
1016 u8 bsf_octword_size[0x20];
1018 u8 reserved_at_120[0x80];
1020 u8 translations_octword_size[0x20];
1022 u8 reserved_at_1c0[0x19];
1023 u8 relaxed_ordering_read[0x1];
1024 u8 reserved_at_1da[0x1];
1025 u8 log_page_size[0x5];
1027 u8 reserved_at_1e0[0x20];
1030 struct mlx5_ifc_create_mkey_out_bits {
1032 u8 reserved_at_8[0x18];
1036 u8 reserved_at_40[0x8];
1037 u8 mkey_index[0x18];
1039 u8 reserved_at_60[0x20];
1042 struct mlx5_ifc_create_mkey_in_bits {
1044 u8 reserved_at_10[0x10];
1046 u8 reserved_at_20[0x10];
1049 u8 reserved_at_40[0x20];
1052 u8 reserved_at_61[0x1f];
1054 struct mlx5_ifc_mkc_bits memory_key_mkey_entry;
1056 u8 reserved_at_280[0x80];
1058 u8 translations_octword_actual_size[0x20];
1060 u8 mkey_umem_id[0x20];
1062 u8 mkey_umem_offset[0x40];
1064 u8 reserved_at_380[0x500];
1066 u8 klm_pas_mtt[][0x20];
1070 MLX5_GET_HCA_CAP_OP_MOD_GENERAL_DEVICE = 0x0 << 1,
1071 MLX5_GET_HCA_CAP_OP_MOD_ETHERNET_OFFLOAD_CAPS = 0x1 << 1,
1072 MLX5_GET_HCA_CAP_OP_MOD_QOS_CAP = 0xc << 1,
1073 MLX5_GET_HCA_CAP_OP_MOD_NIC_FLOW_TABLE = 0x7 << 1,
1074 MLX5_GET_HCA_CAP_OP_MOD_VDPA_EMULATION = 0x13 << 1,
1077 #define MLX5_GENERAL_OBJ_TYPES_CAP_VIRTQ_NET_Q \
1078 (1ULL << MLX5_GENERAL_OBJ_TYPE_VIRTQ)
1079 #define MLX5_GENERAL_OBJ_TYPES_CAP_VIRTIO_Q_COUNTERS \
1080 (1ULL << MLX5_GENERAL_OBJ_TYPE_VIRTIO_Q_COUNTERS)
1081 #define MLX5_GENERAL_OBJ_TYPES_CAP_PARSE_GRAPH_FLEX_NODE \
1082 (1ULL << MLX5_GENERAL_OBJ_TYPE_FLEX_PARSE_GRAPH)
1083 #define MLX5_GENERAL_OBJ_TYPES_CAP_FLOW_HIT_ASO \
1084 (1ULL << MLX5_GENERAL_OBJ_TYPE_FLOW_HIT_ASO)
1087 MLX5_HCA_CAP_OPMOD_GET_MAX = 0,
1088 MLX5_HCA_CAP_OPMOD_GET_CUR = 1,
1092 MLX5_CAP_INLINE_MODE_L2,
1093 MLX5_CAP_INLINE_MODE_VPORT_CONTEXT,
1094 MLX5_CAP_INLINE_MODE_NOT_REQUIRED,
1098 MLX5_INLINE_MODE_NONE,
1099 MLX5_INLINE_MODE_L2,
1100 MLX5_INLINE_MODE_IP,
1101 MLX5_INLINE_MODE_TCP_UDP,
1102 MLX5_INLINE_MODE_RESERVED4,
1103 MLX5_INLINE_MODE_INNER_L2,
1104 MLX5_INLINE_MODE_INNER_IP,
1105 MLX5_INLINE_MODE_INNER_TCP_UDP,
1108 /* HCA bit masks indicating which Flex parser protocols are already enabled. */
1109 #define MLX5_HCA_FLEX_IPV4_OVER_VXLAN_ENABLED (1UL << 0)
1110 #define MLX5_HCA_FLEX_IPV6_OVER_VXLAN_ENABLED (1UL << 1)
1111 #define MLX5_HCA_FLEX_IPV6_OVER_IP_ENABLED (1UL << 2)
1112 #define MLX5_HCA_FLEX_GENEVE_ENABLED (1UL << 3)
1113 #define MLX5_HCA_FLEX_CW_MPLS_OVER_GRE_ENABLED (1UL << 4)
1114 #define MLX5_HCA_FLEX_CW_MPLS_OVER_UDP_ENABLED (1UL << 5)
1115 #define MLX5_HCA_FLEX_P_BIT_VXLAN_GPE_ENABLED (1UL << 6)
1116 #define MLX5_HCA_FLEX_VXLAN_GPE_ENABLED (1UL << 7)
1117 #define MLX5_HCA_FLEX_ICMP_ENABLED (1UL << 8)
1118 #define MLX5_HCA_FLEX_ICMPV6_ENABLED (1UL << 9)
1120 struct mlx5_ifc_cmd_hca_cap_bits {
1121 u8 reserved_at_0[0x30];
1123 u8 reserved_at_40[0x40];
1124 u8 log_max_srq_sz[0x8];
1125 u8 log_max_qp_sz[0x8];
1126 u8 reserved_at_90[0x9];
1127 u8 wqe_index_ignore_cap[0x1];
1128 u8 dynamic_qp_allocation[0x1];
1131 u8 reserved_at_a1[0x3];
1132 u8 regexp_num_of_engines[0x4];
1133 u8 reserved_at_a8[0x3];
1134 u8 log_max_srq[0x5];
1135 u8 reserved_at_b0[0x3];
1136 u8 regexp_log_crspace_size[0x5];
1137 u8 reserved_at_b8[0x3];
1138 u8 scatter_fcs_w_decap_disable[0x1];
1139 u8 reserved_at_bc[0x4];
1140 u8 reserved_at_c0[0x8];
1141 u8 log_max_cq_sz[0x8];
1142 u8 reserved_at_d0[0xb];
1144 u8 log_max_eq_sz[0x8];
1145 u8 relaxed_ordering_write[0x1];
1146 u8 relaxed_ordering_read[0x1];
1147 u8 access_register_user[0x1];
1148 u8 log_max_mkey[0x5];
1149 u8 reserved_at_f0[0x8];
1150 u8 dump_fill_mkey[0x1];
1151 u8 reserved_at_f9[0x3];
1153 u8 max_indirection[0x8];
1154 u8 fixed_buffer_size[0x1];
1155 u8 log_max_mrw_sz[0x7];
1156 u8 force_teardown[0x1];
1157 u8 reserved_at_111[0x1];
1158 u8 log_max_bsf_list_size[0x6];
1159 u8 umr_extended_translation_offset[0x1];
1161 u8 log_max_klm_list_size[0x6];
1162 u8 non_wire_sq[0x1];
1163 u8 reserved_at_121[0x9];
1164 u8 log_max_ra_req_dc[0x6];
1165 u8 reserved_at_130[0x3];
1166 u8 log_max_static_sq_wq[0x5];
1167 u8 reserved_at_138[0x2];
1168 u8 log_max_ra_res_dc[0x6];
1169 u8 reserved_at_140[0xa];
1170 u8 log_max_ra_req_qp[0x6];
1171 u8 reserved_at_150[0xa];
1172 u8 log_max_ra_res_qp[0x6];
1174 u8 cc_query_allowed[0x1];
1175 u8 cc_modify_allowed[0x1];
1177 u8 cache_line_128byte[0x1];
1178 u8 reserved_at_165[0xa];
1180 u8 gid_table_size[0x10];
1181 u8 out_of_seq_cnt[0x1];
1182 u8 vport_counters[0x1];
1183 u8 retransmission_q_counters[0x1];
1185 u8 modify_rq_counter_set_id[0x1];
1186 u8 rq_delay_drop[0x1];
1188 u8 pkey_table_size[0x10];
1189 u8 vport_group_manager[0x1];
1190 u8 vhca_group_manager[0x1];
1193 u8 vnic_env_queue_counters[0x1];
1195 u8 nic_flow_table[0x1];
1196 u8 eswitch_manager[0x1];
1197 u8 device_memory[0x1];
1200 u8 local_ca_ack_delay[0x5];
1201 u8 port_module_event[0x1];
1202 u8 enhanced_error_q_counters[0x1];
1203 u8 ports_check[0x1];
1204 u8 reserved_at_1b3[0x1];
1205 u8 disable_link_up[0x1];
1209 u8 reserved_at_1c0[0x1];
1212 u8 log_max_msg[0x5];
1213 u8 reserved_at_1c8[0x4];
1215 u8 temp_warn_event[0x1];
1217 u8 general_notification_event[0x1];
1218 u8 reserved_at_1d3[0x2];
1222 u8 reserved_at_1d8[0x1];
1230 u8 stat_rate_support[0x10];
1231 u8 reserved_at_1f0[0xc];
1232 u8 cqe_version[0x4];
1233 u8 compact_address_vector[0x1];
1234 u8 striding_rq[0x1];
1235 u8 reserved_at_202[0x1];
1236 u8 ipoib_enhanced_offloads[0x1];
1237 u8 ipoib_basic_offloads[0x1];
1238 u8 reserved_at_205[0x1];
1239 u8 repeated_block_disabled[0x1];
1240 u8 umr_modify_entity_size_disabled[0x1];
1241 u8 umr_modify_atomic_disabled[0x1];
1242 u8 umr_indirect_mkey_disabled[0x1];
1244 u8 reserved_at_20c[0x3];
1245 u8 drain_sigerr[0x1];
1246 u8 cmdif_checksum[0x2];
1248 u8 reserved_at_213[0x1];
1249 u8 wq_signature[0x1];
1250 u8 sctr_data_cqe[0x1];
1251 u8 reserved_at_216[0x1];
1257 u8 eth_net_offloads[0x1];
1260 u8 reserved_at_21f[0x1];
1263 u8 cq_moderation[0x1];
1264 u8 reserved_at_223[0x3];
1265 u8 cq_eq_remap[0x1];
1267 u8 block_lb_mc[0x1];
1268 u8 reserved_at_229[0x1];
1269 u8 scqe_break_moderation[0x1];
1270 u8 cq_period_start_from_cqe[0x1];
1272 u8 reserved_at_22d[0x1];
1274 u8 vector_calc[0x1];
1275 u8 umr_ptr_rlky[0x1];
1277 u8 reserved_at_232[0x4];
1280 u8 set_deth_sqpn[0x1];
1281 u8 reserved_at_239[0x3];
1287 u8 reserved_at_241[0x9];
1289 u8 reserved_at_250[0x8];
1292 u8 driver_version[0x1];
1293 u8 pad_tx_eth_packet[0x1];
1294 u8 reserved_at_263[0x8];
1295 u8 log_bf_reg_size[0x5];
1296 u8 reserved_at_270[0xb];
1298 u8 num_lag_ports[0x4];
1299 u8 reserved_at_280[0x10];
1300 u8 max_wqe_sz_sq[0x10];
1301 u8 reserved_at_2a0[0x10];
1302 u8 max_wqe_sz_rq[0x10];
1303 u8 max_flow_counter_31_16[0x10];
1304 u8 max_wqe_sz_sq_dc[0x10];
1305 u8 reserved_at_2e0[0x7];
1306 u8 max_qp_mcg[0x19];
1307 u8 reserved_at_300[0x10];
1308 u8 flow_counter_bulk_alloc[0x08];
1309 u8 log_max_mcg[0x8];
1310 u8 reserved_at_320[0x3];
1311 u8 log_max_transport_domain[0x5];
1312 u8 reserved_at_328[0x3];
1314 u8 reserved_at_330[0xb];
1315 u8 log_max_xrcd[0x5];
1316 u8 nic_receive_steering_discard[0x1];
1317 u8 receive_discard_vport_down[0x1];
1318 u8 transmit_discard_vport_down[0x1];
1319 u8 reserved_at_343[0x5];
1320 u8 log_max_flow_counter_bulk[0x8];
1321 u8 max_flow_counter_15_0[0x10];
1323 u8 flow_counters_dump[0x1];
1324 u8 reserved_at_360[0x1];
1326 u8 reserved_at_368[0x3];
1328 u8 reserved_at_370[0x3];
1329 u8 log_max_tir[0x5];
1330 u8 reserved_at_378[0x3];
1331 u8 log_max_tis[0x5];
1332 u8 basic_cyclic_rcv_wqe[0x1];
1333 u8 reserved_at_381[0x2];
1334 u8 log_max_rmp[0x5];
1335 u8 reserved_at_388[0x3];
1336 u8 log_max_rqt[0x5];
1337 u8 reserved_at_390[0x3];
1338 u8 log_max_rqt_size[0x5];
1339 u8 reserved_at_398[0x3];
1340 u8 log_max_tis_per_sq[0x5];
1341 u8 ext_stride_num_range[0x1];
1342 u8 reserved_at_3a1[0x2];
1343 u8 log_max_stride_sz_rq[0x5];
1344 u8 reserved_at_3a8[0x3];
1345 u8 log_min_stride_sz_rq[0x5];
1346 u8 reserved_at_3b0[0x3];
1347 u8 log_max_stride_sz_sq[0x5];
1348 u8 reserved_at_3b8[0x3];
1349 u8 log_min_stride_sz_sq[0x5];
1351 u8 reserved_at_3c1[0x2];
1352 u8 log_max_hairpin_queues[0x5];
1353 u8 reserved_at_3c8[0x3];
1354 u8 log_max_hairpin_wq_data_sz[0x5];
1355 u8 reserved_at_3d0[0x3];
1356 u8 log_max_hairpin_num_packets[0x5];
1357 u8 reserved_at_3d8[0x3];
1358 u8 log_max_wq_sz[0x5];
1359 u8 nic_vport_change_event[0x1];
1360 u8 disable_local_lb_uc[0x1];
1361 u8 disable_local_lb_mc[0x1];
1362 u8 log_min_hairpin_wq_data_sz[0x5];
1363 u8 reserved_at_3e8[0x3];
1364 u8 log_max_vlan_list[0x5];
1365 u8 reserved_at_3f0[0x3];
1366 u8 log_max_current_mc_list[0x5];
1367 u8 reserved_at_3f8[0x3];
1368 u8 log_max_current_uc_list[0x5];
1369 u8 general_obj_types[0x40];
1370 u8 reserved_at_440[0x20];
1371 u8 reserved_at_460[0x10];
1372 u8 max_num_eqs[0x10];
1373 u8 reserved_at_480[0x3];
1374 u8 log_max_l2_table[0x5];
1375 u8 reserved_at_488[0x8];
1376 u8 log_uar_page_sz[0x10];
1377 u8 reserved_at_4a0[0x20];
1378 u8 device_frequency_mhz[0x20];
1379 u8 device_frequency_khz[0x20];
1380 u8 reserved_at_500[0x20];
1381 u8 num_of_uars_per_page[0x20];
1382 u8 flex_parser_protocols[0x20];
1383 u8 reserved_at_560[0x20];
1384 u8 reserved_at_580[0x3c];
1385 u8 mini_cqe_resp_stride_index[0x1];
1386 u8 cqe_128_always[0x1];
1387 u8 cqe_compression_128[0x1];
1388 u8 cqe_compression[0x1];
1389 u8 cqe_compression_timeout[0x10];
1390 u8 cqe_compression_max_num[0x10];
1391 u8 reserved_at_5e0[0x10];
1392 u8 tag_matching[0x1];
1393 u8 rndv_offload_rc[0x1];
1394 u8 rndv_offload_dc[0x1];
1395 u8 log_tag_matching_list_sz[0x5];
1396 u8 reserved_at_5f8[0x3];
1397 u8 log_max_xrq[0x5];
1398 u8 affiliate_nic_vport_criteria[0x8];
1399 u8 native_port_num[0x8];
1400 u8 num_vhca_ports[0x8];
1401 u8 reserved_at_618[0x6];
1402 u8 sw_owner_id[0x1];
1403 u8 reserved_at_61f[0x1e1];
1406 struct mlx5_ifc_qos_cap_bits {
1407 u8 packet_pacing[0x1];
1408 u8 esw_scheduling[0x1];
1409 u8 esw_bw_share[0x1];
1410 u8 esw_rate_limit[0x1];
1411 u8 reserved_at_4[0x1];
1412 u8 packet_pacing_burst_bound[0x1];
1413 u8 packet_pacing_typical_size[0x1];
1414 u8 flow_meter_srtcm[0x1];
1415 u8 reserved_at_8[0x8];
1416 u8 log_max_flow_meter[0x8];
1417 u8 flow_meter_reg_id[0x8];
1418 u8 wqe_rate_pp[0x1];
1419 u8 reserved_at_25[0x7];
1420 u8 flow_meter_reg_share[0x1];
1421 u8 reserved_at_2e[0x17];
1422 u8 packet_pacing_max_rate[0x20];
1423 u8 packet_pacing_min_rate[0x20];
1424 u8 reserved_at_80[0x10];
1425 u8 packet_pacing_rate_table_size[0x10];
1426 u8 esw_element_type[0x10];
1427 u8 esw_tsar_type[0x10];
1428 u8 reserved_at_c0[0x10];
1429 u8 max_qos_para_vport[0x10];
1430 u8 max_tsar_bw_share[0x20];
1431 u8 reserved_at_100[0x6e8];
1434 struct mlx5_ifc_per_protocol_networking_offload_caps_bits {
1438 u8 lro_psh_flag[0x1];
1439 u8 lro_time_stamp[0x1];
1440 u8 lro_max_msg_sz_mode[0x2];
1441 u8 wqe_vlan_insert[0x1];
1442 u8 self_lb_en_modifiable[0x1];
1445 u8 max_lso_cap[0x5];
1446 u8 multi_pkt_send_wqe[0x2];
1447 u8 wqe_inline_mode[0x2];
1448 u8 rss_ind_tbl_cap[0x4];
1450 u8 scatter_fcs[0x1];
1451 u8 enhanced_multi_pkt_send_wqe[0x1];
1452 u8 tunnel_lso_const_out_ip_id[0x1];
1453 u8 tunnel_lro_gre[0x1];
1454 u8 tunnel_lro_vxlan[0x1];
1455 u8 tunnel_stateless_gre[0x1];
1456 u8 tunnel_stateless_vxlan[0x1];
1460 u8 reserved_at_23[0x8];
1461 u8 tunnel_stateless_gtp[0x1];
1462 u8 reserved_at_25[0x4];
1463 u8 max_vxlan_udp_ports[0x8];
1464 u8 reserved_at_38[0x6];
1465 u8 max_geneve_opt_len[0x1];
1466 u8 tunnel_stateless_geneve_rx[0x1];
1467 u8 reserved_at_40[0x10];
1468 u8 lro_min_mss_size[0x10];
1469 u8 reserved_at_60[0x120];
1470 u8 lro_timer_supported_periods[4][0x20];
1471 u8 reserved_at_200[0x600];
1475 MLX5_VIRTQ_TYPE_SPLIT = 0,
1476 MLX5_VIRTQ_TYPE_PACKED = 1,
1480 MLX5_VIRTQ_EVENT_MODE_NO_MSIX = 0,
1481 MLX5_VIRTQ_EVENT_MODE_QP = 1,
1482 MLX5_VIRTQ_EVENT_MODE_MSIX = 2,
1485 struct mlx5_ifc_virtio_emulation_cap_bits {
1486 u8 desc_tunnel_offload_type[0x1];
1487 u8 eth_frame_offload_type[0x1];
1488 u8 virtio_version_1_0[0x1];
1493 u8 reserved_at_7[0x1][0x9];
1495 u8 virtio_queue_type[0x8];
1496 u8 reserved_at_20[0x13];
1497 u8 log_doorbell_stride[0x5];
1498 u8 reserved_at_3b[0x3];
1499 u8 log_doorbell_bar_size[0x5];
1500 u8 doorbell_bar_offset[0x40];
1501 u8 reserved_at_80[0x8];
1502 u8 max_num_virtio_queues[0x18];
1503 u8 reserved_at_a0[0x60];
1504 u8 umem_1_buffer_param_a[0x20];
1505 u8 umem_1_buffer_param_b[0x20];
1506 u8 umem_2_buffer_param_a[0x20];
1507 u8 umem_2_buffer_param_b[0x20];
1508 u8 umem_3_buffer_param_a[0x20];
1509 u8 umem_3_buffer_param_b[0x20];
1510 u8 reserved_at_1c0[0x620];
1513 struct mlx5_ifc_flow_table_prop_layout_bits {
1516 u8 flow_counter[0x1];
1517 u8 flow_modify_en[0x1];
1518 u8 modify_root[0x1];
1519 u8 identified_miss_table[0x1];
1520 u8 flow_table_modify[0x1];
1523 u8 reset_root_to_default[0x1];
1526 u8 fpga_vendor_acceleration[0x1];
1528 u8 push_vlan_2[0x1];
1529 u8 reformat_and_vlan_action[0x1];
1530 u8 modify_and_vlan_action[0x1];
1532 u8 reformat_l3_tunnel_to_l2[0x1];
1533 u8 reformat_l2_to_l3_tunnel[0x1];
1534 u8 reformat_and_modify_action[0x1];
1535 u8 reserved_at_15[0x9];
1536 u8 sw_owner_v2[0x1];
1537 u8 reserved_at_1f[0x1];
1538 u8 reserved_at_20[0x2];
1539 u8 log_max_ft_size[0x6];
1540 u8 log_max_modify_header_context[0x8];
1541 u8 max_modify_header_actions[0x8];
1542 u8 max_ft_level[0x8];
1543 u8 reserved_at_40[0x8];
1544 u8 log_max_ft_sampler_num[8];
1545 u8 metadata_reg_b_width[0x8];
1546 u8 metadata_reg_a_width[0x8];
1547 u8 reserved_at_60[0x18];
1548 u8 log_max_ft_num[0x8];
1549 u8 reserved_at_80[0x10];
1550 u8 log_max_flow_counter[0x8];
1551 u8 log_max_destination[0x8];
1552 u8 reserved_at_a0[0x18];
1553 u8 log_max_flow[0x8];
1554 u8 reserved_at_c0[0x140];
1557 struct mlx5_ifc_flow_table_nic_cap_bits {
1558 u8 reserved_at_0[0x200];
1559 struct mlx5_ifc_flow_table_prop_layout_bits flow_table_properties;
1562 union mlx5_ifc_hca_cap_union_bits {
1563 struct mlx5_ifc_cmd_hca_cap_bits cmd_hca_cap;
1564 struct mlx5_ifc_per_protocol_networking_offload_caps_bits
1565 per_protocol_networking_offload_caps;
1566 struct mlx5_ifc_qos_cap_bits qos_cap;
1567 struct mlx5_ifc_virtio_emulation_cap_bits vdpa_caps;
1568 struct mlx5_ifc_flow_table_nic_cap_bits flow_table_nic_cap;
1569 u8 reserved_at_0[0x8000];
1572 struct mlx5_ifc_set_action_in_bits {
1573 u8 action_type[0x4];
1575 u8 reserved_at_10[0x3];
1577 u8 reserved_at_18[0x3];
1582 struct mlx5_ifc_query_hca_cap_out_bits {
1584 u8 reserved_at_8[0x18];
1586 u8 reserved_at_40[0x40];
1587 union mlx5_ifc_hca_cap_union_bits capability;
1590 struct mlx5_ifc_query_hca_cap_in_bits {
1592 u8 reserved_at_10[0x10];
1593 u8 reserved_at_20[0x10];
1595 u8 reserved_at_40[0x40];
1598 struct mlx5_ifc_mac_address_layout_bits {
1599 u8 reserved_at_0[0x10];
1600 u8 mac_addr_47_32[0x10];
1601 u8 mac_addr_31_0[0x20];
1604 struct mlx5_ifc_nic_vport_context_bits {
1605 u8 reserved_at_0[0x5];
1606 u8 min_wqe_inline_mode[0x3];
1607 u8 reserved_at_8[0x15];
1608 u8 disable_mc_local_lb[0x1];
1609 u8 disable_uc_local_lb[0x1];
1611 u8 arm_change_event[0x1];
1612 u8 reserved_at_21[0x1a];
1613 u8 event_on_mtu[0x1];
1614 u8 event_on_promisc_change[0x1];
1615 u8 event_on_vlan_change[0x1];
1616 u8 event_on_mc_address_change[0x1];
1617 u8 event_on_uc_address_change[0x1];
1618 u8 reserved_at_40[0xc];
1619 u8 affiliation_criteria[0x4];
1620 u8 affiliated_vhca_id[0x10];
1621 u8 reserved_at_60[0xd0];
1623 u8 system_image_guid[0x40];
1626 u8 reserved_at_200[0x140];
1627 u8 qkey_violation_counter[0x10];
1628 u8 reserved_at_350[0x430];
1631 u8 promisc_all[0x1];
1632 u8 reserved_at_783[0x2];
1633 u8 allowed_list_type[0x3];
1634 u8 reserved_at_788[0xc];
1635 u8 allowed_list_size[0xc];
1636 struct mlx5_ifc_mac_address_layout_bits permanent_address;
1637 u8 reserved_at_7e0[0x20];
1640 struct mlx5_ifc_query_nic_vport_context_out_bits {
1642 u8 reserved_at_8[0x18];
1644 u8 reserved_at_40[0x40];
1645 struct mlx5_ifc_nic_vport_context_bits nic_vport_context;
1648 struct mlx5_ifc_query_nic_vport_context_in_bits {
1650 u8 reserved_at_10[0x10];
1651 u8 reserved_at_20[0x10];
1653 u8 other_vport[0x1];
1654 u8 reserved_at_41[0xf];
1655 u8 vport_number[0x10];
1656 u8 reserved_at_60[0x5];
1657 u8 allowed_list_type[0x3];
1658 u8 reserved_at_68[0x18];
1661 struct mlx5_ifc_tisc_bits {
1662 u8 strict_lag_tx_port_affinity[0x1];
1663 u8 reserved_at_1[0x3];
1664 u8 lag_tx_port_affinity[0x04];
1665 u8 reserved_at_8[0x4];
1667 u8 reserved_at_10[0x10];
1668 u8 reserved_at_20[0x100];
1669 u8 reserved_at_120[0x8];
1670 u8 transport_domain[0x18];
1671 u8 reserved_at_140[0x8];
1672 u8 underlay_qpn[0x18];
1673 u8 reserved_at_160[0x3a0];
1676 struct mlx5_ifc_query_tis_out_bits {
1678 u8 reserved_at_8[0x18];
1680 u8 reserved_at_40[0x40];
1681 struct mlx5_ifc_tisc_bits tis_context;
1684 struct mlx5_ifc_query_tis_in_bits {
1686 u8 reserved_at_10[0x10];
1687 u8 reserved_at_20[0x10];
1689 u8 reserved_at_40[0x8];
1691 u8 reserved_at_60[0x20];
1694 struct mlx5_ifc_alloc_transport_domain_out_bits {
1696 u8 reserved_at_8[0x18];
1698 u8 reserved_at_40[0x8];
1699 u8 transport_domain[0x18];
1700 u8 reserved_at_60[0x20];
1703 struct mlx5_ifc_alloc_transport_domain_in_bits {
1705 u8 reserved_at_10[0x10];
1706 u8 reserved_at_20[0x10];
1708 u8 reserved_at_40[0x40];
1712 MLX5_WQ_TYPE_LINKED_LIST = 0x0,
1713 MLX5_WQ_TYPE_CYCLIC = 0x1,
1714 MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ = 0x2,
1715 MLX5_WQ_TYPE_CYCLIC_STRIDING_RQ = 0x3,
1719 MLX5_WQ_END_PAD_MODE_NONE = 0x0,
1720 MLX5_WQ_END_PAD_MODE_ALIGN = 0x1,
1723 struct mlx5_ifc_wq_bits {
1725 u8 wq_signature[0x1];
1726 u8 end_padding_mode[0x2];
1728 u8 reserved_at_8[0x18];
1729 u8 hds_skip_first_sge[0x1];
1730 u8 log2_hds_buf_size[0x3];
1731 u8 reserved_at_24[0x7];
1732 u8 page_offset[0x5];
1734 u8 reserved_at_40[0x8];
1736 u8 reserved_at_60[0x8];
1739 u8 hw_counter[0x20];
1740 u8 sw_counter[0x20];
1741 u8 reserved_at_100[0xc];
1742 u8 log_wq_stride[0x4];
1743 u8 reserved_at_110[0x3];
1744 u8 log_wq_pg_sz[0x5];
1745 u8 reserved_at_118[0x3];
1747 u8 dbr_umem_valid[0x1];
1748 u8 wq_umem_valid[0x1];
1749 u8 reserved_at_122[0x1];
1750 u8 log_hairpin_num_packets[0x5];
1751 u8 reserved_at_128[0x3];
1752 u8 log_hairpin_data_sz[0x5];
1753 u8 reserved_at_130[0x4];
1754 u8 single_wqe_log_num_of_strides[0x4];
1755 u8 two_byte_shift_en[0x1];
1756 u8 reserved_at_139[0x4];
1757 u8 single_stride_log_num_of_bytes[0x3];
1758 u8 dbr_umem_id[0x20];
1759 u8 wq_umem_id[0x20];
1760 u8 wq_umem_offset[0x40];
1761 u8 reserved_at_1c0[0x440];
1765 MLX5_RQC_MEM_RQ_TYPE_MEMORY_RQ_INLINE = 0x0,
1766 MLX5_RQC_MEM_RQ_TYPE_MEMORY_RQ_RMP = 0x1,
1770 MLX5_RQC_STATE_RST = 0x0,
1771 MLX5_RQC_STATE_RDY = 0x1,
1772 MLX5_RQC_STATE_ERR = 0x3,
1775 struct mlx5_ifc_rqc_bits {
1777 u8 delay_drop_en[0x1];
1778 u8 scatter_fcs[0x1];
1780 u8 mem_rq_type[0x4];
1782 u8 reserved_at_c[0x1];
1783 u8 flush_in_error_en[0x1];
1785 u8 reserved_at_f[0x11];
1786 u8 reserved_at_20[0x8];
1787 u8 user_index[0x18];
1788 u8 reserved_at_40[0x8];
1790 u8 counter_set_id[0x8];
1791 u8 reserved_at_68[0x18];
1792 u8 reserved_at_80[0x8];
1794 u8 reserved_at_a0[0x8];
1795 u8 hairpin_peer_sq[0x18];
1796 u8 reserved_at_c0[0x10];
1797 u8 hairpin_peer_vhca[0x10];
1798 u8 reserved_at_e0[0xa0];
1799 struct mlx5_ifc_wq_bits wq; /* Not used in LRO RQ. */
1802 struct mlx5_ifc_create_rq_out_bits {
1804 u8 reserved_at_8[0x18];
1806 u8 reserved_at_40[0x8];
1808 u8 reserved_at_60[0x20];
1811 struct mlx5_ifc_create_rq_in_bits {
1814 u8 reserved_at_20[0x10];
1816 u8 reserved_at_40[0xc0];
1817 struct mlx5_ifc_rqc_bits ctx;
1820 struct mlx5_ifc_modify_rq_out_bits {
1822 u8 reserved_at_8[0x18];
1824 u8 reserved_at_40[0x40];
1827 struct mlx5_ifc_create_tis_out_bits {
1829 u8 reserved_at_8[0x18];
1831 u8 reserved_at_40[0x8];
1833 u8 reserved_at_60[0x20];
1836 struct mlx5_ifc_create_tis_in_bits {
1839 u8 reserved_at_20[0x10];
1841 u8 reserved_at_40[0xc0];
1842 struct mlx5_ifc_tisc_bits ctx;
1846 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_WQ_LWM = 1ULL << 0,
1847 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_VSD = 1ULL << 1,
1848 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_SCATTER_FCS = 1ULL << 2,
1849 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_RQ_COUNTER_SET_ID = 1ULL << 3,
1852 struct mlx5_ifc_modify_rq_in_bits {
1855 u8 reserved_at_20[0x10];
1858 u8 reserved_at_44[0x4];
1860 u8 reserved_at_60[0x20];
1861 u8 modify_bitmask[0x40];
1862 u8 reserved_at_c0[0x40];
1863 struct mlx5_ifc_rqc_bits ctx;
1867 MLX5_L3_PROT_TYPE_IPV4 = 0,
1868 MLX5_L3_PROT_TYPE_IPV6 = 1,
1872 MLX5_L4_PROT_TYPE_TCP = 0,
1873 MLX5_L4_PROT_TYPE_UDP = 1,
1877 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_SRC_IP = 0x0,
1878 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_DST_IP = 0x1,
1879 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_L4_SPORT = 0x2,
1880 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_L4_DPORT = 0x3,
1881 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_IPSEC_SPI = 0x4,
1884 struct mlx5_ifc_rx_hash_field_select_bits {
1885 u8 l3_prot_type[0x1];
1886 u8 l4_prot_type[0x1];
1887 u8 selected_fields[0x1e];
1891 MLX5_TIRC_DISP_TYPE_DIRECT = 0x0,
1892 MLX5_TIRC_DISP_TYPE_INDIRECT = 0x1,
1896 MLX5_TIRC_LRO_ENABLE_MASK_IPV4_LRO = 0x1,
1897 MLX5_TIRC_LRO_ENABLE_MASK_IPV6_LRO = 0x2,
1901 MLX5_RX_HASH_FN_NONE = 0x0,
1902 MLX5_RX_HASH_FN_INVERTED_XOR8 = 0x1,
1903 MLX5_RX_HASH_FN_TOEPLITZ = 0x2,
1907 MLX5_TIRC_SELF_LB_BLOCK_BLOCK_UNICAST = 0x1,
1908 MLX5_TIRC_SELF_LB_BLOCK_BLOCK_MULTICAST = 0x2,
1912 MLX5_LRO_MAX_MSG_SIZE_START_FROM_L4 = 0x0,
1913 MLX5_LRO_MAX_MSG_SIZE_START_FROM_L2 = 0x1,
1916 struct mlx5_ifc_tirc_bits {
1917 u8 reserved_at_0[0x20];
1919 u8 reserved_at_24[0x1c];
1920 u8 reserved_at_40[0x40];
1921 u8 reserved_at_80[0x4];
1922 u8 lro_timeout_period_usecs[0x10];
1923 u8 lro_enable_mask[0x4];
1924 u8 lro_max_msg_sz[0x8];
1925 u8 reserved_at_a0[0x40];
1926 u8 reserved_at_e0[0x8];
1927 u8 inline_rqn[0x18];
1928 u8 rx_hash_symmetric[0x1];
1929 u8 reserved_at_101[0x1];
1930 u8 tunneled_offload_en[0x1];
1931 u8 reserved_at_103[0x5];
1932 u8 indirect_table[0x18];
1934 u8 reserved_at_124[0x2];
1935 u8 self_lb_block[0x2];
1936 u8 transport_domain[0x18];
1937 u8 rx_hash_toeplitz_key[10][0x20];
1938 struct mlx5_ifc_rx_hash_field_select_bits rx_hash_field_selector_outer;
1939 struct mlx5_ifc_rx_hash_field_select_bits rx_hash_field_selector_inner;
1940 u8 reserved_at_2c0[0x4c0];
1943 struct mlx5_ifc_create_tir_out_bits {
1945 u8 reserved_at_8[0x18];
1947 u8 reserved_at_40[0x8];
1949 u8 reserved_at_60[0x20];
1952 struct mlx5_ifc_create_tir_in_bits {
1955 u8 reserved_at_20[0x10];
1957 u8 reserved_at_40[0xc0];
1958 struct mlx5_ifc_tirc_bits ctx;
1962 MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_LRO = 1ULL << 0,
1963 MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_INDIRECT_TABLE = 1ULL << 1,
1964 MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_HASH = 1ULL << 2,
1965 /* bit 3 - tunneled_offload_en modify not supported. */
1966 MLX5_MODIFY_TIR_IN_MODIFY_BITMASK_SELF_LB_EN = 1ULL << 4,
1969 struct mlx5_ifc_modify_tir_out_bits {
1971 u8 reserved_at_8[0x18];
1973 u8 reserved_at_40[0x40];
1976 struct mlx5_ifc_modify_tir_in_bits {
1979 u8 reserved_at_20[0x10];
1981 u8 reserved_at_40[0x8];
1983 u8 reserved_at_60[0x20];
1984 u8 modify_bitmask[0x40];
1985 u8 reserved_at_c0[0x40];
1986 struct mlx5_ifc_tirc_bits ctx;
1990 MLX5_INLINE_Q_TYPE_RQ = 0x0,
1991 MLX5_INLINE_Q_TYPE_VIRTQ = 0x1,
1994 struct mlx5_ifc_rq_num_bits {
1995 u8 reserved_at_0[0x8];
1999 struct mlx5_ifc_rqtc_bits {
2000 u8 reserved_at_0[0xa5];
2001 u8 list_q_type[0x3];
2002 u8 reserved_at_a8[0x8];
2003 u8 rqt_max_size[0x10];
2004 u8 reserved_at_c0[0x10];
2005 u8 rqt_actual_size[0x10];
2006 u8 reserved_at_e0[0x6a0];
2007 struct mlx5_ifc_rq_num_bits rq_num[];
2010 struct mlx5_ifc_create_rqt_out_bits {
2012 u8 reserved_at_8[0x18];
2014 u8 reserved_at_40[0x8];
2016 u8 reserved_at_60[0x20];
2020 #pragma GCC diagnostic ignored "-Wpedantic"
2022 struct mlx5_ifc_create_rqt_in_bits {
2025 u8 reserved_at_20[0x10];
2027 u8 reserved_at_40[0xc0];
2028 struct mlx5_ifc_rqtc_bits rqt_context;
2031 struct mlx5_ifc_modify_rqt_in_bits {
2034 u8 reserved_at_20[0x10];
2036 u8 reserved_at_40[0x8];
2038 u8 reserved_at_60[0x20];
2039 u8 modify_bitmask[0x40];
2040 u8 reserved_at_c0[0x40];
2041 struct mlx5_ifc_rqtc_bits rqt_context;
2044 #pragma GCC diagnostic error "-Wpedantic"
2047 struct mlx5_ifc_modify_rqt_out_bits {
2049 u8 reserved_at_8[0x18];
2051 u8 reserved_at_40[0x40];
2055 MLX5_SQC_STATE_RST = 0x0,
2056 MLX5_SQC_STATE_RDY = 0x1,
2057 MLX5_SQC_STATE_ERR = 0x3,
2060 struct mlx5_ifc_sqc_bits {
2064 u8 flush_in_error_en[0x1];
2065 u8 allow_multi_pkt_send_wqe[0x1];
2066 u8 min_wqe_inline_mode[0x3];
2072 u8 static_sq_wq[0x1];
2073 u8 reserved_at_11[0xf];
2074 u8 reserved_at_20[0x8];
2075 u8 user_index[0x18];
2076 u8 reserved_at_40[0x8];
2078 u8 reserved_at_60[0x8];
2079 u8 hairpin_peer_rq[0x18];
2080 u8 reserved_at_80[0x10];
2081 u8 hairpin_peer_vhca[0x10];
2082 u8 reserved_at_a0[0x50];
2083 u8 packet_pacing_rate_limit_index[0x10];
2084 u8 tis_lst_sz[0x10];
2085 u8 reserved_at_110[0x10];
2086 u8 reserved_at_120[0x40];
2087 u8 reserved_at_160[0x8];
2089 struct mlx5_ifc_wq_bits wq;
2092 struct mlx5_ifc_query_sq_in_bits {
2094 u8 reserved_at_10[0x10];
2095 u8 reserved_at_20[0x10];
2097 u8 reserved_at_40[0x8];
2099 u8 reserved_at_60[0x20];
2102 struct mlx5_ifc_modify_sq_out_bits {
2104 u8 reserved_at_8[0x18];
2106 u8 reserved_at_40[0x40];
2109 struct mlx5_ifc_modify_sq_in_bits {
2112 u8 reserved_at_20[0x10];
2115 u8 reserved_at_44[0x4];
2117 u8 reserved_at_60[0x20];
2118 u8 modify_bitmask[0x40];
2119 u8 reserved_at_c0[0x40];
2120 struct mlx5_ifc_sqc_bits ctx;
2123 struct mlx5_ifc_create_sq_out_bits {
2125 u8 reserved_at_8[0x18];
2127 u8 reserved_at_40[0x8];
2129 u8 reserved_at_60[0x20];
2132 struct mlx5_ifc_create_sq_in_bits {
2135 u8 reserved_at_20[0x10];
2137 u8 reserved_at_40[0xc0];
2138 struct mlx5_ifc_sqc_bits ctx;
2142 MLX5_FLOW_METER_OBJ_MODIFY_FIELD_ACTIVE = (1ULL << 0),
2143 MLX5_FLOW_METER_OBJ_MODIFY_FIELD_CBS = (1ULL << 1),
2144 MLX5_FLOW_METER_OBJ_MODIFY_FIELD_CIR = (1ULL << 2),
2145 MLX5_FLOW_METER_OBJ_MODIFY_FIELD_EBS = (1ULL << 3),
2146 MLX5_FLOW_METER_OBJ_MODIFY_FIELD_EIR = (1ULL << 4),
2149 struct mlx5_ifc_flow_meter_parameters_bits {
2150 u8 valid[0x1]; // 00h
2151 u8 bucket_overflow[0x1];
2152 u8 start_color[0x2];
2153 u8 both_buckets_on_green[0x1];
2155 u8 reserved_at_1[0x19];
2156 u8 reserved_at_2[0x20]; //04h
2157 u8 reserved_at_3[0x3];
2158 u8 cbs_exponent[0x5]; // 08h
2159 u8 cbs_mantissa[0x8];
2160 u8 reserved_at_4[0x3];
2161 u8 cir_exponent[0x5];
2162 u8 cir_mantissa[0x8];
2163 u8 reserved_at_5[0x20]; // 0Ch
2164 u8 reserved_at_6[0x3];
2165 u8 ebs_exponent[0x5]; // 10h
2166 u8 ebs_mantissa[0x8];
2167 u8 reserved_at_7[0x3];
2168 u8 eir_exponent[0x5];
2169 u8 eir_mantissa[0x8];
2170 u8 reserved_at_8[0x60]; // 14h-1Ch
2174 MLX5_CQE_SIZE_64B = 0x0,
2175 MLX5_CQE_SIZE_128B = 0x1,
2178 struct mlx5_ifc_cqc_bits {
2181 u8 initiator_src_dct[0x1];
2182 u8 dbr_umem_valid[0x1];
2183 u8 reserved_at_7[0x1];
2186 u8 reserved_at_c[0x1];
2187 u8 scqe_break_moderation_en[0x1];
2189 u8 cq_period_mode[0x2];
2190 u8 cqe_comp_en[0x1];
2191 u8 mini_cqe_res_format[0x2];
2193 u8 reserved_at_18[0x1];
2194 u8 cqe_comp_layout[0x7];
2195 u8 dbr_umem_id[0x20];
2196 u8 reserved_at_40[0x14];
2197 u8 page_offset[0x6];
2198 u8 reserved_at_5a[0x2];
2199 u8 mini_cqe_res_format_ext[0x2];
2200 u8 cq_timestamp_format[0x2];
2201 u8 reserved_at_60[0x3];
2202 u8 log_cq_size[0x5];
2204 u8 reserved_at_80[0x4];
2206 u8 cq_max_count[0x10];
2207 u8 reserved_at_a0[0x18];
2209 u8 reserved_at_c0[0x3];
2210 u8 log_page_size[0x5];
2211 u8 reserved_at_c8[0x18];
2212 u8 reserved_at_e0[0x20];
2213 u8 reserved_at_100[0x8];
2214 u8 last_notified_index[0x18];
2215 u8 reserved_at_120[0x8];
2216 u8 last_solicit_index[0x18];
2217 u8 reserved_at_140[0x8];
2218 u8 consumer_counter[0x18];
2219 u8 reserved_at_160[0x8];
2220 u8 producer_counter[0x18];
2221 u8 local_partition_id[0xc];
2222 u8 process_id[0x14];
2223 u8 reserved_at_1A0[0x20];
2227 struct mlx5_ifc_health_buffer_bits {
2228 u8 reserved_0[0x100];
2229 u8 assert_existptr[0x20];
2230 u8 assert_callra[0x20];
2231 u8 reserved_1[0x40];
2232 u8 fw_version[0x20];
2234 u8 reserved_2[0x20];
2235 u8 irisc_index[0x8];
2240 struct mlx5_ifc_initial_seg_bits {
2241 u8 fw_rev_minor[0x10];
2242 u8 fw_rev_major[0x10];
2243 u8 cmd_interface_rev[0x10];
2244 u8 fw_rev_subminor[0x10];
2245 u8 reserved_0[0x40];
2246 u8 cmdq_phy_addr_63_32[0x20];
2247 u8 cmdq_phy_addr_31_12[0x14];
2249 u8 nic_interface[0x2];
2250 u8 log_cmdq_size[0x4];
2251 u8 log_cmdq_stride[0x4];
2252 u8 command_doorbell_vector[0x20];
2253 u8 reserved_2[0xf00];
2254 u8 initializing[0x1];
2255 u8 nic_interface_supported[0x7];
2256 u8 reserved_4[0x18];
2257 struct mlx5_ifc_health_buffer_bits health_buffer;
2258 u8 no_dram_nic_offset[0x20];
2259 u8 reserved_5[0x6de0];
2260 u8 internal_timer_h[0x20];
2261 u8 internal_timer_l[0x20];
2262 u8 reserved_6[0x20];
2263 u8 reserved_7[0x1f];
2265 u8 health_syndrome[0x8];
2266 u8 health_counter[0x18];
2267 u8 reserved_8[0x17fc0];
2270 struct mlx5_ifc_create_cq_out_bits {
2272 u8 reserved_at_8[0x18];
2274 u8 reserved_at_40[0x8];
2276 u8 reserved_at_60[0x20];
2279 struct mlx5_ifc_create_cq_in_bits {
2282 u8 reserved_at_20[0x10];
2284 u8 reserved_at_40[0x40];
2285 struct mlx5_ifc_cqc_bits cq_context;
2286 u8 cq_umem_offset[0x40];
2287 u8 cq_umem_id[0x20];
2288 u8 cq_umem_valid[0x1];
2289 u8 reserved_at_2e1[0x1f];
2290 u8 reserved_at_300[0x580];
2295 MLX5_GENERAL_OBJ_TYPE_VIRTQ = 0x000d,
2296 MLX5_GENERAL_OBJ_TYPE_VIRTIO_Q_COUNTERS = 0x001c,
2297 MLX5_GENERAL_OBJ_TYPE_FLEX_PARSE_GRAPH = 0x0022,
2298 MLX5_GENERAL_OBJ_TYPE_FLOW_HIT_ASO = 0x0025,
2301 struct mlx5_ifc_general_obj_in_cmd_hdr_bits {
2303 u8 reserved_at_10[0x20];
2306 u8 reserved_at_60[0x20];
2309 struct mlx5_ifc_general_obj_out_cmd_hdr_bits {
2311 u8 reserved_at_8[0x18];
2314 u8 reserved_at_60[0x20];
2317 struct mlx5_ifc_virtio_q_counters_bits {
2318 u8 modify_field_select[0x40];
2319 u8 reserved_at_40[0x40];
2320 u8 received_desc[0x40];
2321 u8 completed_desc[0x40];
2322 u8 error_cqes[0x20];
2323 u8 bad_desc_errors[0x20];
2324 u8 exceed_max_chain[0x20];
2325 u8 invalid_buffer[0x20];
2326 u8 reserved_at_180[0x50];
2329 struct mlx5_ifc_create_virtio_q_counters_in_bits {
2330 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2331 struct mlx5_ifc_virtio_q_counters_bits virtio_q_counters;
2334 struct mlx5_ifc_query_virtio_q_counters_out_bits {
2335 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2336 struct mlx5_ifc_virtio_q_counters_bits virtio_q_counters;
2339 MLX5_VIRTQ_STATE_INIT = 0,
2340 MLX5_VIRTQ_STATE_RDY = 1,
2341 MLX5_VIRTQ_STATE_SUSPEND = 2,
2342 MLX5_VIRTQ_STATE_ERROR = 3,
2346 MLX5_VIRTQ_MODIFY_TYPE_STATE = (1UL << 0),
2347 MLX5_VIRTQ_MODIFY_TYPE_DIRTY_BITMAP_PARAMS = (1UL << 3),
2348 MLX5_VIRTQ_MODIFY_TYPE_DIRTY_BITMAP_DUMP_ENABLE = (1UL << 4),
2351 struct mlx5_ifc_virtio_q_bits {
2352 u8 virtio_q_type[0x8];
2353 u8 reserved_at_8[0x5];
2355 u8 queue_index[0x10];
2356 u8 full_emulation[0x1];
2357 u8 virtio_version_1_0[0x1];
2358 u8 reserved_at_22[0x2];
2359 u8 offload_type[0x4];
2360 u8 event_qpn_or_msix[0x18];
2361 u8 doorbell_stride_idx[0x10];
2362 u8 queue_size[0x10];
2363 u8 device_emulation_id[0x20];
2366 u8 available_addr[0x40];
2367 u8 virtio_q_mkey[0x20];
2368 u8 reserved_at_160[0x18];
2371 u8 umem_1_size[0x20];
2372 u8 umem_1_offset[0x40];
2374 u8 umem_2_size[0x20];
2375 u8 umem_2_offset[0x40];
2377 u8 umem_3_size[0x20];
2378 u8 umem_3_offset[0x40];
2379 u8 counter_set_id[0x20];
2380 u8 reserved_at_320[0x8];
2382 u8 reserved_at_340[0xc0];
2385 struct mlx5_ifc_virtio_net_q_bits {
2386 u8 modify_field_select[0x40];
2387 u8 reserved_at_40[0x40];
2392 u8 reserved_at_84[0x6];
2393 u8 dirty_bitmap_dump_enable[0x1];
2394 u8 vhost_log_page[0x5];
2395 u8 reserved_at_90[0xc];
2397 u8 reserved_at_a0[0x8];
2398 u8 tisn_or_qpn[0x18];
2399 u8 dirty_bitmap_mkey[0x20];
2400 u8 dirty_bitmap_size[0x20];
2401 u8 dirty_bitmap_addr[0x40];
2402 u8 hw_available_index[0x10];
2403 u8 hw_used_index[0x10];
2404 u8 reserved_at_160[0xa0];
2405 struct mlx5_ifc_virtio_q_bits virtio_q_context;
2408 struct mlx5_ifc_create_virtq_in_bits {
2409 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2410 struct mlx5_ifc_virtio_net_q_bits virtq;
2413 struct mlx5_ifc_query_virtq_out_bits {
2414 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2415 struct mlx5_ifc_virtio_net_q_bits virtq;
2418 struct mlx5_ifc_flow_hit_aso_bits {
2419 u8 modify_field_select[0x40];
2420 u8 reserved_at_40[0x48];
2422 u8 reserved_at_a0[0x160];
2426 struct mlx5_ifc_create_flow_hit_aso_in_bits {
2427 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2428 struct mlx5_ifc_flow_hit_aso_bits flow_hit_aso;
2431 enum mlx5_access_aso_opc_mod {
2432 ASO_OPC_MOD_IPSEC = 0x0,
2433 ASO_OPC_MOD_CONNECTION_TRACKING = 0x1,
2434 ASO_OPC_MOD_POLICER = 0x2,
2435 ASO_OPC_MOD_RACE_AVOIDANCE = 0x3,
2436 ASO_OPC_MOD_FLOW_HIT = 0x4,
2439 #define ASO_CSEG_DATA_MASK_MODE_OFFSET 30
2441 enum mlx5_aso_data_mask_mode {
2442 BITWISE_64BIT = 0x0,
2443 BYTEWISE_64BYTE = 0x1,
2444 CALCULATED_64BYTE = 0x2,
2447 #define ASO_CSEG_COND_0_OPER_OFFSET 20
2448 #define ASO_CSEG_COND_1_OPER_OFFSET 16
2450 enum mlx5_aso_pre_cond_op {
2451 ASO_OP_ALWAYS_FALSE = 0x0,
2452 ASO_OP_ALWAYS_TRUE = 0x1,
2454 ASO_OP_NOT_EQUAL = 0x3,
2455 ASO_OP_GREATER_OR_EQUAL = 0x4,
2456 ASO_OP_LESSER_OR_EQUAL = 0x5,
2457 ASO_OP_LESSER = 0x6,
2458 ASO_OP_GREATER = 0x7,
2459 ASO_OP_CYCLIC_GREATER = 0x8,
2460 ASO_OP_CYCLIC_LESSER = 0x9,
2463 #define ASO_CSEG_COND_OPER_OFFSET 6
2466 ASO_OPER_LOGICAL_AND = 0x0,
2467 ASO_OPER_LOGICAL_OR = 0x1,
2470 /* ASO WQE CTRL segment. */
2471 struct mlx5_aso_cseg {
2475 uint32_t operand_masks;
2476 uint32_t condition_0_data;
2477 uint32_t condition_0_mask;
2478 uint32_t condition_1_data;
2479 uint32_t condition_1_mask;
2480 uint64_t bitwise_data;
2484 #define MLX5_ASO_WQE_DSEG_SIZE 0x40
2486 /* ASO WQE Data segment. */
2487 struct mlx5_aso_dseg {
2488 uint8_t data[MLX5_ASO_WQE_DSEG_SIZE];
2492 struct mlx5_aso_wqe {
2493 struct mlx5_wqe_cseg general_cseg;
2494 struct mlx5_aso_cseg aso_cseg;
2495 struct mlx5_aso_dseg aso_dseg;
2499 MLX5_EVENT_TYPE_OBJECT_CHANGE = 0x27,
2503 MLX5_QP_ST_RC = 0x0,
2507 MLX5_QP_PM_MIGRATED = 0x3,
2511 MLX5_NON_ZERO_RQ = 0x0,
2514 MLX5_ZERO_LEN_RQ = 0x3,
2517 struct mlx5_ifc_ads_bits {
2520 u8 reserved_at_2[0xe];
2521 u8 pkey_index[0x10];
2522 u8 reserved_at_20[0x8];
2526 u8 ack_timeout[0x5];
2527 u8 reserved_at_45[0x3];
2528 u8 src_addr_index[0x8];
2529 u8 reserved_at_50[0x4];
2532 u8 reserved_at_60[0x4];
2534 u8 flow_label[0x14];
2535 u8 rgid_rip[16][0x8];
2536 u8 reserved_at_100[0x4];
2539 u8 reserved_at_106[0x1];
2547 u8 vhca_port_num[0x8];
2548 u8 rmac_47_32[0x10];
2552 struct mlx5_ifc_qpc_bits {
2554 u8 lag_tx_port_affinity[0x4];
2556 u8 reserved_at_10[0x3];
2558 u8 reserved_at_15[0x1];
2559 u8 req_e2e_credit_mode[0x2];
2560 u8 offload_type[0x4];
2561 u8 end_padding_mode[0x2];
2562 u8 reserved_at_1e[0x2];
2563 u8 wq_signature[0x1];
2564 u8 block_lb_mc[0x1];
2565 u8 atomic_like_write_en[0x1];
2566 u8 latency_sensitive[0x1];
2567 u8 reserved_at_24[0x1];
2568 u8 drain_sigerr[0x1];
2569 u8 reserved_at_26[0x2];
2572 u8 log_msg_max[0x5];
2573 u8 reserved_at_48[0x1];
2574 u8 log_rq_size[0x4];
2575 u8 log_rq_stride[0x3];
2577 u8 log_sq_size[0x4];
2578 u8 reserved_at_55[0x6];
2580 u8 ulp_stateless_offload_mode[0x4];
2581 u8 counter_set_id[0x8];
2583 u8 reserved_at_80[0x8];
2584 u8 user_index[0x18];
2585 u8 reserved_at_a0[0x3];
2586 u8 log_page_size[0x5];
2587 u8 remote_qpn[0x18];
2588 struct mlx5_ifc_ads_bits primary_address_path;
2589 struct mlx5_ifc_ads_bits secondary_address_path;
2590 u8 log_ack_req_freq[0x4];
2591 u8 reserved_at_384[0x4];
2592 u8 log_sra_max[0x3];
2593 u8 reserved_at_38b[0x2];
2594 u8 retry_count[0x3];
2596 u8 reserved_at_393[0x1];
2598 u8 cur_rnr_retry[0x3];
2599 u8 cur_retry_count[0x3];
2600 u8 reserved_at_39b[0x5];
2601 u8 reserved_at_3a0[0x20];
2602 u8 reserved_at_3c0[0x8];
2603 u8 next_send_psn[0x18];
2604 u8 reserved_at_3e0[0x8];
2606 u8 reserved_at_400[0x8];
2608 u8 reserved_at_420[0x20];
2609 u8 reserved_at_440[0x8];
2610 u8 last_acked_psn[0x18];
2611 u8 reserved_at_460[0x8];
2613 u8 reserved_at_480[0x8];
2614 u8 log_rra_max[0x3];
2615 u8 reserved_at_48b[0x1];
2616 u8 atomic_mode[0x4];
2620 u8 reserved_at_493[0x1];
2621 u8 page_offset[0x6];
2622 u8 reserved_at_49a[0x3];
2623 u8 cd_slave_receive[0x1];
2624 u8 cd_slave_send[0x1];
2626 u8 reserved_at_4a0[0x3];
2627 u8 min_rnr_nak[0x5];
2628 u8 next_rcv_psn[0x18];
2629 u8 reserved_at_4c0[0x8];
2631 u8 reserved_at_4e0[0x8];
2635 u8 reserved_at_560[0x5];
2637 u8 srqn_rmpn_xrqn[0x18];
2638 u8 reserved_at_580[0x8];
2640 u8 hw_sq_wqebb_counter[0x10];
2641 u8 sw_sq_wqebb_counter[0x10];
2642 u8 hw_rq_counter[0x20];
2643 u8 sw_rq_counter[0x20];
2644 u8 reserved_at_600[0x20];
2645 u8 reserved_at_620[0xf];
2649 u8 dc_access_key[0x40];
2650 u8 reserved_at_680[0x3];
2651 u8 dbr_umem_valid[0x1];
2652 u8 reserved_at_684[0x9c];
2653 u8 dbr_umem_id[0x20];
2656 struct mlx5_ifc_create_qp_out_bits {
2658 u8 reserved_at_8[0x18];
2660 u8 reserved_at_40[0x8];
2662 u8 reserved_at_60[0x20];
2666 #pragma GCC diagnostic ignored "-Wpedantic"
2668 struct mlx5_ifc_create_qp_in_bits {
2671 u8 reserved_at_20[0x10];
2673 u8 reserved_at_40[0x40];
2674 u8 opt_param_mask[0x20];
2675 u8 reserved_at_a0[0x20];
2676 struct mlx5_ifc_qpc_bits qpc;
2677 u8 wq_umem_offset[0x40];
2678 u8 wq_umem_id[0x20];
2679 u8 wq_umem_valid[0x1];
2680 u8 reserved_at_861[0x1f];
2684 #pragma GCC diagnostic error "-Wpedantic"
2687 struct mlx5_ifc_sqerr2rts_qp_out_bits {
2689 u8 reserved_at_8[0x18];
2691 u8 reserved_at_40[0x40];
2694 struct mlx5_ifc_sqerr2rts_qp_in_bits {
2697 u8 reserved_at_20[0x10];
2699 u8 reserved_at_40[0x8];
2701 u8 reserved_at_60[0x20];
2702 u8 opt_param_mask[0x20];
2703 u8 reserved_at_a0[0x20];
2704 struct mlx5_ifc_qpc_bits qpc;
2705 u8 reserved_at_800[0x80];
2708 struct mlx5_ifc_sqd2rts_qp_out_bits {
2710 u8 reserved_at_8[0x18];
2712 u8 reserved_at_40[0x40];
2715 struct mlx5_ifc_sqd2rts_qp_in_bits {
2718 u8 reserved_at_20[0x10];
2720 u8 reserved_at_40[0x8];
2722 u8 reserved_at_60[0x20];
2723 u8 opt_param_mask[0x20];
2724 u8 reserved_at_a0[0x20];
2725 struct mlx5_ifc_qpc_bits qpc;
2726 u8 reserved_at_800[0x80];
2729 struct mlx5_ifc_rts2rts_qp_out_bits {
2731 u8 reserved_at_8[0x18];
2733 u8 reserved_at_40[0x40];
2736 struct mlx5_ifc_rts2rts_qp_in_bits {
2739 u8 reserved_at_20[0x10];
2741 u8 reserved_at_40[0x8];
2743 u8 reserved_at_60[0x20];
2744 u8 opt_param_mask[0x20];
2745 u8 reserved_at_a0[0x20];
2746 struct mlx5_ifc_qpc_bits qpc;
2747 u8 reserved_at_800[0x80];
2750 struct mlx5_ifc_rtr2rts_qp_out_bits {
2752 u8 reserved_at_8[0x18];
2754 u8 reserved_at_40[0x40];
2757 struct mlx5_ifc_rtr2rts_qp_in_bits {
2760 u8 reserved_at_20[0x10];
2762 u8 reserved_at_40[0x8];
2764 u8 reserved_at_60[0x20];
2765 u8 opt_param_mask[0x20];
2766 u8 reserved_at_a0[0x20];
2767 struct mlx5_ifc_qpc_bits qpc;
2768 u8 reserved_at_800[0x80];
2771 struct mlx5_ifc_rst2init_qp_out_bits {
2773 u8 reserved_at_8[0x18];
2775 u8 reserved_at_40[0x40];
2778 struct mlx5_ifc_rst2init_qp_in_bits {
2781 u8 reserved_at_20[0x10];
2783 u8 reserved_at_40[0x8];
2785 u8 reserved_at_60[0x20];
2786 u8 opt_param_mask[0x20];
2787 u8 reserved_at_a0[0x20];
2788 struct mlx5_ifc_qpc_bits qpc;
2789 u8 reserved_at_800[0x80];
2792 struct mlx5_ifc_init2rtr_qp_out_bits {
2794 u8 reserved_at_8[0x18];
2796 u8 reserved_at_40[0x40];
2799 struct mlx5_ifc_init2rtr_qp_in_bits {
2802 u8 reserved_at_20[0x10];
2804 u8 reserved_at_40[0x8];
2806 u8 reserved_at_60[0x20];
2807 u8 opt_param_mask[0x20];
2808 u8 reserved_at_a0[0x20];
2809 struct mlx5_ifc_qpc_bits qpc;
2810 u8 reserved_at_800[0x80];
2813 struct mlx5_ifc_init2init_qp_out_bits {
2815 u8 reserved_at_8[0x18];
2817 u8 reserved_at_40[0x40];
2820 struct mlx5_ifc_init2init_qp_in_bits {
2823 u8 reserved_at_20[0x10];
2825 u8 reserved_at_40[0x8];
2827 u8 reserved_at_60[0x20];
2828 u8 opt_param_mask[0x20];
2829 u8 reserved_at_a0[0x20];
2830 struct mlx5_ifc_qpc_bits qpc;
2831 u8 reserved_at_800[0x80];
2834 struct mlx5_ifc_dealloc_pd_out_bits {
2836 u8 reserved_0[0x18];
2838 u8 reserved_1[0x40];
2841 struct mlx5_ifc_dealloc_pd_in_bits {
2843 u8 reserved_0[0x10];
2844 u8 reserved_1[0x10];
2848 u8 reserved_3[0x20];
2851 struct mlx5_ifc_alloc_pd_out_bits {
2853 u8 reserved_0[0x18];
2857 u8 reserved_2[0x20];
2860 struct mlx5_ifc_alloc_pd_in_bits {
2862 u8 reserved_0[0x10];
2863 u8 reserved_1[0x10];
2865 u8 reserved_2[0x40];
2869 #pragma GCC diagnostic ignored "-Wpedantic"
2871 struct mlx5_ifc_query_qp_out_bits {
2873 u8 reserved_at_8[0x18];
2875 u8 reserved_at_40[0x40];
2876 u8 opt_param_mask[0x20];
2877 u8 reserved_at_a0[0x20];
2878 struct mlx5_ifc_qpc_bits qpc;
2879 u8 reserved_at_800[0x80];
2883 #pragma GCC diagnostic error "-Wpedantic"
2886 struct mlx5_ifc_query_qp_in_bits {
2888 u8 reserved_at_10[0x10];
2889 u8 reserved_at_20[0x10];
2891 u8 reserved_at_40[0x8];
2893 u8 reserved_at_60[0x20];
2897 MLX5_DATA_RATE = 0x0,
2898 MLX5_WQE_RATE = 0x1,
2901 struct mlx5_ifc_set_pp_rate_limit_context_bits {
2902 u8 rate_limit[0x20];
2903 u8 burst_upper_bound[0x20];
2904 u8 reserved_at_40[0xC];
2906 u8 typical_packet_size[0x10];
2907 u8 reserved_at_60[0x120];
2910 #define MLX5_ACCESS_REGISTER_DATA_DWORD_MAX 8u
2913 #pragma GCC diagnostic ignored "-Wpedantic"
2915 struct mlx5_ifc_access_register_out_bits {
2917 u8 reserved_at_8[0x18];
2919 u8 reserved_at_40[0x40];
2920 u8 register_data[0][0x20];
2923 struct mlx5_ifc_access_register_in_bits {
2925 u8 reserved_at_10[0x10];
2926 u8 reserved_at_20[0x10];
2928 u8 reserved_at_40[0x10];
2929 u8 register_id[0x10];
2931 u8 register_data[0][0x20];
2934 #pragma GCC diagnostic error "-Wpedantic"
2938 MLX5_ACCESS_REGISTER_IN_OP_MOD_WRITE = 0x0,
2939 MLX5_ACCESS_REGISTER_IN_OP_MOD_READ = 0x1,
2943 MLX5_REGISTER_ID_MTUTC = 0x9055,
2946 struct mlx5_ifc_register_mtutc_bits {
2947 u8 time_stamp_mode[0x2];
2948 u8 time_stamp_state[0x2];
2949 u8 reserved_at_4[0x18];
2951 u8 freq_adjustment[0x20];
2952 u8 reserved_at_40[0x40];
2955 u8 time_adjustment[0x20];
2958 #define MLX5_MTUTC_TIMESTAMP_MODE_INTERNAL_TIMER 0
2959 #define MLX5_MTUTC_TIMESTAMP_MODE_REAL_TIME 1
2961 struct mlx5_ifc_parse_graph_arc_bits {
2962 u8 start_inner_tunnel[0x1];
2963 u8 reserved_at_1[0x7];
2964 u8 arc_parse_graph_node[0x8];
2965 u8 compare_condition_value[0x10];
2966 u8 parse_graph_node_handle[0x20];
2967 u8 reserved_at_40[0x40];
2970 struct mlx5_ifc_parse_graph_flow_match_sample_bits {
2971 u8 flow_match_sample_en[0x1];
2972 u8 reserved_at_1[0x3];
2973 u8 flow_match_sample_offset_mode[0x4];
2974 u8 reserved_at_5[0x8];
2975 u8 flow_match_sample_field_offset[0x10];
2976 u8 reserved_at_32[0x4];
2977 u8 flow_match_sample_field_offset_shift[0x4];
2978 u8 flow_match_sample_field_base_offset[0x8];
2979 u8 reserved_at_48[0xd];
2980 u8 flow_match_sample_tunnel_mode[0x3];
2981 u8 flow_match_sample_field_offset_mask[0x20];
2982 u8 flow_match_sample_field_id[0x20];
2985 struct mlx5_ifc_parse_graph_flex_bits {
2986 u8 modify_field_select[0x40];
2987 u8 reserved_at_64[0x20];
2988 u8 header_length_base_value[0x10];
2989 u8 reserved_at_112[0x4];
2990 u8 header_length_field_shift[0x4];
2991 u8 reserved_at_120[0x4];
2992 u8 header_length_mode[0x4];
2993 u8 header_length_field_offset[0x10];
2994 u8 next_header_field_offset[0x10];
2995 u8 reserved_at_160[0x1b];
2996 u8 next_header_field_size[0x5];
2997 u8 header_length_field_mask[0x20];
2998 u8 reserved_at_224[0x20];
2999 struct mlx5_ifc_parse_graph_flow_match_sample_bits sample_table[0x8];
3000 struct mlx5_ifc_parse_graph_arc_bits input_arc[0x8];
3001 struct mlx5_ifc_parse_graph_arc_bits output_arc[0x8];
3004 struct mlx5_ifc_create_flex_parser_in_bits {
3005 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
3006 struct mlx5_ifc_parse_graph_flex_bits flex;
3009 struct mlx5_ifc_create_flex_parser_out_bits {
3010 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
3011 struct mlx5_ifc_parse_graph_flex_bits flex;
3014 struct mlx5_ifc_parse_graph_flex_out_bits {
3016 u8 reserved_at_8[0x18];
3018 u8 reserved_at_40[0x40];
3019 struct mlx5_ifc_parse_graph_flex_bits capability;
3022 struct regexp_params_field_select_bits {
3023 u8 reserved_at_0[0x1e];
3024 u8 stop_engine[0x1];
3028 struct mlx5_ifc_regexp_params_bits {
3029 u8 reserved_at_0[0x1f];
3030 u8 stop_engine[0x1];
3031 u8 db_umem_id[0x20];
3032 u8 db_umem_offset[0x40];
3033 u8 reserved_at_80[0x100];
3036 struct mlx5_ifc_set_regexp_params_in_bits {
3039 u8 reserved_at_20[0x10];
3041 u8 reserved_at_40[0x18];
3043 struct regexp_params_field_select_bits field_select;
3044 struct mlx5_ifc_regexp_params_bits regexp_params;
3047 struct mlx5_ifc_set_regexp_params_out_bits {
3049 u8 reserved_at_8[0x18];
3051 u8 reserved_at_18[0x40];
3054 struct mlx5_ifc_query_regexp_params_in_bits {
3057 u8 reserved_at_20[0x10];
3059 u8 reserved_at_40[0x18];
3064 struct mlx5_ifc_query_regexp_params_out_bits {
3066 u8 reserved_at_8[0x18];
3069 struct mlx5_ifc_regexp_params_bits regexp_params;
3072 struct mlx5_ifc_set_regexp_register_in_bits {
3075 u8 reserved_at_20[0x10];
3077 u8 reserved_at_40[0x18];
3079 u8 register_address[0x20];
3080 u8 register_data[0x20];
3084 struct mlx5_ifc_set_regexp_register_out_bits {
3086 u8 reserved_at_8[0x18];
3091 struct mlx5_ifc_query_regexp_register_in_bits {
3094 u8 reserved_at_20[0x10];
3096 u8 reserved_at_40[0x18];
3098 u8 register_address[0x20];
3101 struct mlx5_ifc_query_regexp_register_out_bits {
3103 u8 reserved_at_8[0x18];
3106 u8 register_data[0x20];
3109 /* CQE format mask. */
3110 #define MLX5E_CQE_FORMAT_MASK 0xc
3113 #define MLX5_OPC_MOD_MPW 0x01
3115 /* Compressed Rx CQE structure. */
3116 struct mlx5_mini_cqe8 {
3118 uint32_t rx_hash_result;
3122 uint16_t flow_tag_high;
3128 uint16_t stride_idx;
3131 uint16_t wqe_counter;
3132 uint8_t s_wqe_opcode;
3137 uint32_t byte_cnt_flow;
3142 /* Mini CQE responder format. */
3144 MLX5_CQE_RESP_FORMAT_HASH = 0x0,
3145 MLX5_CQE_RESP_FORMAT_CSUM = 0x1,
3146 MLX5_CQE_RESP_FORMAT_FTAG_STRIDX = 0x2,
3147 MLX5_CQE_RESP_FORMAT_CSUM_STRIDX = 0x3,
3148 MLX5_CQE_RESP_FORMAT_L34H_STRIDX = 0x4,
3151 /* srTCM PRM flow meter parameters. */
3153 MLX5_FLOW_COLOR_RED = 0,
3154 MLX5_FLOW_COLOR_YELLOW,
3155 MLX5_FLOW_COLOR_GREEN,
3156 MLX5_FLOW_COLOR_UNDEFINED,
3159 /* Maximum value of srTCM metering parameters. */
3160 #define MLX5_SRTCM_CBS_MAX (0xFF * (1ULL << 0x1F))
3161 #define MLX5_SRTCM_CIR_MAX (8 * (1ULL << 30) * 0xFF)
3162 #define MLX5_SRTCM_EBS_MAX 0
3164 /* The bits meter color use. */
3165 #define MLX5_MTR_COLOR_BITS 8
3167 /* Length mode of dynamic flex parser graph node. */
3168 enum mlx5_parse_graph_node_len_mode {
3169 MLX5_GRAPH_NODE_LEN_FIXED = 0x0,
3170 MLX5_GRAPH_NODE_LEN_FIELD = 0x1,
3171 MLX5_GRAPH_NODE_LEN_BITMASK = 0x2,
3174 /* Offset mode of the samples of flex parser. */
3175 enum mlx5_parse_graph_flow_match_sample_offset_mode {
3176 MLX5_GRAPH_SAMPLE_OFFSET_FIXED = 0x0,
3177 MLX5_GRAPH_SAMPLE_OFFSET_FIELD = 0x1,
3178 MLX5_GRAPH_SAMPLE_OFFSET_BITMASK = 0x2,
3181 /* Node index for an input / output arc of the flex parser graph. */
3182 enum mlx5_parse_graph_arc_node_index {
3183 MLX5_GRAPH_ARC_NODE_NULL = 0x0,
3184 MLX5_GRAPH_ARC_NODE_HEAD = 0x1,
3185 MLX5_GRAPH_ARC_NODE_MAC = 0x2,
3186 MLX5_GRAPH_ARC_NODE_IP = 0x3,
3187 MLX5_GRAPH_ARC_NODE_GRE = 0x4,
3188 MLX5_GRAPH_ARC_NODE_UDP = 0x5,
3189 MLX5_GRAPH_ARC_NODE_MPLS = 0x6,
3190 MLX5_GRAPH_ARC_NODE_TCP = 0x7,
3191 MLX5_GRAPH_ARC_NODE_VXLAN_GPE = 0x8,
3192 MLX5_GRAPH_ARC_NODE_GENEVE = 0x9,
3193 MLX5_GRAPH_ARC_NODE_IPSEC_ESP = 0xa,
3194 MLX5_GRAPH_ARC_NODE_PROGRAMMABLE = 0x1f,
3198 * Convert a user mark to flow mark.
3201 * Mark value to convert.
3204 * Converted mark value.
3206 static inline uint32_t
3207 mlx5_flow_mark_set(uint32_t val)
3212 * Add one to the user value to differentiate un-marked flows from
3213 * marked flows, if the ID is equal to MLX5_FLOW_MARK_DEFAULT it
3214 * remains untouched.
3216 if (val != MLX5_FLOW_MARK_DEFAULT)
3218 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
3220 * Mark is 24 bits (minus reserved values) but is stored on a 32 bit
3221 * word, byte-swapped by the kernel on little-endian systems. In this
3222 * case, left-shifting the resulting big-endian value ensures the
3223 * least significant 24 bits are retained when converting it back.
3225 ret = rte_cpu_to_be_32(val) >> 8;
3233 * Convert a mark to user mark.
3236 * Mark value to convert.
3239 * Converted mark value.
3241 static inline uint32_t
3242 mlx5_flow_mark_get(uint32_t val)
3245 * Subtract one from the retrieved value. It was added by
3246 * mlx5_flow_mark_set() to distinguish unmarked flows.
3248 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
3249 return (val >> 8) - 1;
3255 #endif /* RTE_PMD_MLX5_PRM_H_ */