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_
10 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
12 #pragma GCC diagnostic ignored "-Wpedantic"
14 #include <infiniband/mlx5dv.h>
16 #pragma GCC diagnostic error "-Wpedantic"
22 #include <rte_byteorder.h>
24 #include "mlx5_autoconf.h"
26 /* RSS hash key size. */
27 #define MLX5_RSS_HASH_KEY_LEN 40
29 /* Get CQE owner bit. */
30 #define MLX5_CQE_OWNER(op_own) ((op_own) & MLX5_CQE_OWNER_MASK)
33 #define MLX5_CQE_FORMAT(op_own) (((op_own) & MLX5E_CQE_FORMAT_MASK) >> 2)
36 #define MLX5_CQE_OPCODE(op_own) (((op_own) & 0xf0) >> 4)
38 /* Get CQE solicited event. */
39 #define MLX5_CQE_SE(op_own) (((op_own) >> 1) & 1)
41 /* Invalidate a CQE. */
42 #define MLX5_CQE_INVALIDATE (MLX5_CQE_INVALID << 4)
44 /* Hardware index widths. */
45 #define MLX5_CQ_INDEX_WIDTH 24
46 #define MLX5_WQ_INDEX_WIDTH 16
48 /* WQE Segment sizes in bytes. */
49 #define MLX5_WSEG_SIZE 16u
50 #define MLX5_WQE_CSEG_SIZE sizeof(struct mlx5_wqe_cseg)
51 #define MLX5_WQE_DSEG_SIZE sizeof(struct mlx5_wqe_dseg)
52 #define MLX5_WQE_ESEG_SIZE sizeof(struct mlx5_wqe_eseg)
54 /* WQE/WQEBB size in bytes. */
55 #define MLX5_WQE_SIZE sizeof(struct mlx5_wqe)
58 * Max size of a WQE session.
59 * Absolute maximum size is 63 (MLX5_DSEG_MAX) segments,
60 * the WQE size field in Control Segment is 6 bits wide.
62 #define MLX5_WQE_SIZE_MAX (60 * MLX5_WSEG_SIZE)
65 * Default minimum number of Tx queues for inlining packets.
66 * If there are less queues as specified we assume we have
67 * no enough CPU resources (cycles) to perform inlining,
68 * the PCIe throughput is not supposed as bottleneck and
69 * inlining is disabled.
71 #define MLX5_INLINE_MAX_TXQS 8u
72 #define MLX5_INLINE_MAX_TXQS_BLUEFIELD 16u
75 * Default packet length threshold to be inlined with
76 * enhanced MPW. If packet length exceeds the threshold
77 * the data are not inlined. Should be aligned in WQEBB
78 * boundary with accounting the title Control and Ethernet
81 #define MLX5_EMPW_DEF_INLINE_LEN (4u * MLX5_WQE_SIZE + \
82 MLX5_DSEG_MIN_INLINE_SIZE)
84 * Maximal inline data length sent with enhanced MPW.
85 * Is based on maximal WQE size.
87 #define MLX5_EMPW_MAX_INLINE_LEN (MLX5_WQE_SIZE_MAX - \
88 MLX5_WQE_CSEG_SIZE - \
89 MLX5_WQE_ESEG_SIZE - \
90 MLX5_WQE_DSEG_SIZE + \
91 MLX5_DSEG_MIN_INLINE_SIZE)
93 * Minimal amount of packets to be sent with EMPW.
94 * This limits the minimal required size of sent EMPW.
95 * If there are no enough resources to built minimal
96 * EMPW the sending loop exits.
98 #define MLX5_EMPW_MIN_PACKETS (2u + 3u * 4u)
100 * Maximal amount of packets to be sent with EMPW.
101 * This value is not recommended to exceed MLX5_TX_COMP_THRESH,
102 * otherwise there might be up to MLX5_EMPW_MAX_PACKETS mbufs
103 * without CQE generation request, being multiplied by
104 * MLX5_TX_COMP_MAX_CQE it may cause significant latency
105 * in tx burst routine at the moment of freeing multiple mbufs.
107 #define MLX5_EMPW_MAX_PACKETS MLX5_TX_COMP_THRESH
108 #define MLX5_MPW_MAX_PACKETS 6
109 #define MLX5_MPW_INLINE_MAX_PACKETS 6
112 * Default packet length threshold to be inlined with
113 * ordinary SEND. Inlining saves the MR key search
114 * and extra PCIe data fetch transaction, but eats the
117 #define MLX5_SEND_DEF_INLINE_LEN (5U * MLX5_WQE_SIZE + \
118 MLX5_ESEG_MIN_INLINE_SIZE - \
119 MLX5_WQE_CSEG_SIZE - \
120 MLX5_WQE_ESEG_SIZE - \
123 * Maximal inline data length sent with ordinary SEND.
124 * Is based on maximal WQE size.
126 #define MLX5_SEND_MAX_INLINE_LEN (MLX5_WQE_SIZE_MAX - \
127 MLX5_WQE_CSEG_SIZE - \
128 MLX5_WQE_ESEG_SIZE - \
129 MLX5_WQE_DSEG_SIZE + \
130 MLX5_ESEG_MIN_INLINE_SIZE)
132 /* Missed in mlv5dv.h, should define here. */
133 #ifndef HAVE_MLX5_OPCODE_ENHANCED_MPSW
134 #define MLX5_OPCODE_ENHANCED_MPSW 0x29u
137 #ifndef HAVE_MLX5_OPCODE_SEND_EN
138 #define MLX5_OPCODE_SEND_EN 0x17u
141 #ifndef HAVE_MLX5_OPCODE_WAIT
142 #define MLX5_OPCODE_WAIT 0x0fu
145 /* CQE value to inform that VLAN is stripped. */
146 #define MLX5_CQE_VLAN_STRIPPED (1u << 0)
149 #define MLX5_CQE_RX_IP_EXT_OPTS_PACKET (1u << 1)
152 #define MLX5_CQE_RX_IPV6_PACKET (1u << 2)
155 #define MLX5_CQE_RX_IPV4_PACKET (1u << 3)
158 #define MLX5_CQE_RX_TCP_PACKET (1u << 4)
161 #define MLX5_CQE_RX_UDP_PACKET (1u << 5)
163 /* IP is fragmented. */
164 #define MLX5_CQE_RX_IP_FRAG_PACKET (1u << 7)
166 /* L2 header is valid. */
167 #define MLX5_CQE_RX_L2_HDR_VALID (1u << 8)
169 /* L3 header is valid. */
170 #define MLX5_CQE_RX_L3_HDR_VALID (1u << 9)
172 /* L4 header is valid. */
173 #define MLX5_CQE_RX_L4_HDR_VALID (1u << 10)
175 /* Outer packet, 0 IPv4, 1 IPv6. */
176 #define MLX5_CQE_RX_OUTER_PACKET (1u << 1)
178 /* Tunnel packet bit in the CQE. */
179 #define MLX5_CQE_RX_TUNNEL_PACKET (1u << 0)
181 /* Mask for LRO push flag in the CQE lro_tcppsh_abort_dupack field. */
182 #define MLX5_CQE_LRO_PUSH_MASK 0x40
184 /* Mask for L4 type in the CQE hdr_type_etc field. */
185 #define MLX5_CQE_L4_TYPE_MASK 0x70
187 /* The bit index of L4 type in CQE hdr_type_etc field. */
188 #define MLX5_CQE_L4_TYPE_SHIFT 0x4
190 /* L4 type to indicate TCP packet without acknowledgment. */
191 #define MLX5_L4_HDR_TYPE_TCP_EMPTY_ACK 0x3
193 /* L4 type to indicate TCP packet with acknowledgment. */
194 #define MLX5_L4_HDR_TYPE_TCP_WITH_ACL 0x4
196 /* Inner L3 checksum offload (Tunneled packets only). */
197 #define MLX5_ETH_WQE_L3_INNER_CSUM (1u << 4)
199 /* Inner L4 checksum offload (Tunneled packets only). */
200 #define MLX5_ETH_WQE_L4_INNER_CSUM (1u << 5)
202 /* Outer L4 type is TCP. */
203 #define MLX5_ETH_WQE_L4_OUTER_TCP (0u << 5)
205 /* Outer L4 type is UDP. */
206 #define MLX5_ETH_WQE_L4_OUTER_UDP (1u << 5)
208 /* Outer L3 type is IPV4. */
209 #define MLX5_ETH_WQE_L3_OUTER_IPV4 (0u << 4)
211 /* Outer L3 type is IPV6. */
212 #define MLX5_ETH_WQE_L3_OUTER_IPV6 (1u << 4)
214 /* Inner L4 type is TCP. */
215 #define MLX5_ETH_WQE_L4_INNER_TCP (0u << 1)
217 /* Inner L4 type is UDP. */
218 #define MLX5_ETH_WQE_L4_INNER_UDP (1u << 1)
220 /* Inner L3 type is IPV4. */
221 #define MLX5_ETH_WQE_L3_INNER_IPV4 (0u << 0)
223 /* Inner L3 type is IPV6. */
224 #define MLX5_ETH_WQE_L3_INNER_IPV6 (1u << 0)
226 /* VLAN insertion flag. */
227 #define MLX5_ETH_WQE_VLAN_INSERT (1u << 31)
229 /* Data inline segment flag. */
230 #define MLX5_ETH_WQE_DATA_INLINE (1u << 31)
232 /* Is flow mark valid. */
233 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
234 #define MLX5_FLOW_MARK_IS_VALID(val) ((val) & 0xffffff00)
236 #define MLX5_FLOW_MARK_IS_VALID(val) ((val) & 0xffffff)
239 /* INVALID is used by packets matching no flow rules. */
240 #define MLX5_FLOW_MARK_INVALID 0
242 /* Maximum allowed value to mark a packet. */
243 #define MLX5_FLOW_MARK_MAX 0xfffff0
245 /* Default mark value used when none is provided. */
246 #define MLX5_FLOW_MARK_DEFAULT 0xffffff
248 /* Default mark mask for metadata legacy mode. */
249 #define MLX5_FLOW_MARK_MASK 0xffffff
251 /* Maximum number of DS in WQE. Limited by 6-bit field. */
252 #define MLX5_DSEG_MAX 63
254 /* The completion mode offset in the WQE control segment line 2. */
255 #define MLX5_COMP_MODE_OFFSET 2
257 /* Amount of data bytes in minimal inline data segment. */
258 #define MLX5_DSEG_MIN_INLINE_SIZE 12u
260 /* Amount of data bytes in minimal inline eth segment. */
261 #define MLX5_ESEG_MIN_INLINE_SIZE 18u
263 /* Amount of data bytes after eth data segment. */
264 #define MLX5_ESEG_EXTRA_DATA_SIZE 32u
266 /* The maximum log value of segments per RQ WQE. */
267 #define MLX5_MAX_LOG_RQ_SEGS 5u
269 /* The alignment needed for WQ buffer. */
270 #define MLX5_WQE_BUF_ALIGNMENT sysconf(_SC_PAGESIZE)
272 /* The alignment needed for CQ buffer. */
273 #define MLX5_CQE_BUF_ALIGNMENT sysconf(_SC_PAGESIZE)
275 /* Completion mode. */
276 enum mlx5_completion_mode {
277 MLX5_COMP_ONLY_ERR = 0x0,
278 MLX5_COMP_ONLY_FIRST_ERR = 0x1,
279 MLX5_COMP_ALWAYS = 0x2,
280 MLX5_COMP_CQE_AND_EQE = 0x3,
287 MLX5_MPW_ENHANCED, /* Enhanced Multi-Packet Send WQE, a.k.a MPWv2. */
290 /* WQE Control segment. */
291 struct mlx5_wqe_cseg {
296 } __rte_packed __rte_aligned(MLX5_WSEG_SIZE);
298 /* Header of data segment. Minimal size Data Segment */
299 struct mlx5_wqe_dseg {
302 uint8_t inline_data[MLX5_DSEG_MIN_INLINE_SIZE];
310 /* Subset of struct WQE Ethernet Segment. */
311 struct mlx5_wqe_eseg {
319 uint16_t inline_hdr_sz;
321 uint16_t inline_data;
328 uint32_t flow_metadata;
334 struct mlx5_wqe_qseg {
341 /* The title WQEBB, header of WQE. */
344 struct mlx5_wqe_cseg cseg;
347 struct mlx5_wqe_eseg eseg;
349 struct mlx5_wqe_dseg dseg[2];
350 uint8_t data[MLX5_ESEG_EXTRA_DATA_SIZE];
354 /* WQE for Multi-Packet RQ. */
355 struct mlx5_wqe_mprq {
356 struct mlx5_wqe_srq_next_seg next_seg;
357 struct mlx5_wqe_data_seg dseg;
360 #define MLX5_MPRQ_LEN_MASK 0x000ffff
361 #define MLX5_MPRQ_LEN_SHIFT 0
362 #define MLX5_MPRQ_STRIDE_NUM_MASK 0x3fff0000
363 #define MLX5_MPRQ_STRIDE_NUM_SHIFT 16
364 #define MLX5_MPRQ_FILLER_MASK 0x80000000
365 #define MLX5_MPRQ_FILLER_SHIFT 31
367 #define MLX5_MPRQ_STRIDE_SHIFT_BYTE 2
369 /* CQ element structure - should be equal to the cache line size */
371 #if (RTE_CACHE_LINE_SIZE == 128)
377 uint8_t lro_tcppsh_abort_dupack;
379 uint16_t lro_tcp_win;
380 uint32_t lro_ack_seq_num;
381 uint32_t rx_hash_res;
382 uint8_t rx_hash_type;
386 uint16_t hdr_type_etc;
390 uint32_t flow_table_metadata;
394 uint32_t sop_drop_qpn;
395 uint16_t wqe_counter;
402 uint32_t sop_drop_qpn;
403 uint16_t wqe_counter;
408 /* MMO metadata segment */
410 #define MLX5_OPCODE_MMO 0x2f
411 #define MLX5_OPC_MOD_MMO_REGEX 0x4
413 struct mlx5_wqe_metadata_seg {
414 uint32_t mmo_control_31_0; /* mmo_control_63_32 is in ctrl_seg.imm */
419 struct mlx5_ifc_regexp_mmo_control_bits {
420 uint8_t reserved_at_31[0x2];
422 uint8_t reserved_at_28[0x1];
423 uint8_t subset_id_0[0xc];
424 uint8_t reserved_at_16[0x4];
425 uint8_t subset_id_1[0xc];
427 uint8_t subset_id_2[0xc];
428 uint8_t reserved_at_16_1[0x4];
429 uint8_t subset_id_3[0xc];
432 struct mlx5_ifc_regexp_metadata_bits {
433 uint8_t rof_version[0x10];
434 uint8_t latency_count[0x10];
435 uint8_t instruction_count[0x10];
436 uint8_t primary_thread_count[0x10];
437 uint8_t match_count[0x8];
438 uint8_t detected_match_count[0x8];
439 uint8_t status[0x10];
440 uint8_t job_id[0x20];
441 uint8_t reserved[0x80];
444 struct mlx5_ifc_regexp_match_tuple_bits {
445 uint8_t length[0x10];
446 uint8_t start_ptr[0x10];
447 uint8_t rule_id[0x20];
450 /* Adding direct verbs to data-path. */
452 /* CQ sequence number mask. */
453 #define MLX5_CQ_SQN_MASK 0x3
455 /* CQ sequence number index. */
456 #define MLX5_CQ_SQN_OFFSET 28
458 /* CQ doorbell index mask. */
459 #define MLX5_CI_MASK 0xffffff
461 /* CQ doorbell offset. */
462 #define MLX5_CQ_ARM_DB 1
464 /* CQ doorbell offset*/
465 #define MLX5_CQ_DOORBELL 0x20
467 /* CQE format value. */
468 #define MLX5_COMPRESSED 0x3
470 /* CQ doorbell cmd types. */
471 #define MLX5_CQ_DBR_CMD_SOL_ONLY (1 << 24)
472 #define MLX5_CQ_DBR_CMD_ALL (0 << 24)
474 /* Action type of header modification. */
476 MLX5_MODIFICATION_TYPE_SET = 0x1,
477 MLX5_MODIFICATION_TYPE_ADD = 0x2,
478 MLX5_MODIFICATION_TYPE_COPY = 0x3,
481 /* The field of packet to be modified. */
482 enum mlx5_modification_field {
483 MLX5_MODI_OUT_NONE = -1,
484 MLX5_MODI_OUT_SMAC_47_16 = 1,
485 MLX5_MODI_OUT_SMAC_15_0,
486 MLX5_MODI_OUT_ETHERTYPE,
487 MLX5_MODI_OUT_DMAC_47_16,
488 MLX5_MODI_OUT_DMAC_15_0,
489 MLX5_MODI_OUT_IP_DSCP,
490 MLX5_MODI_OUT_TCP_FLAGS,
491 MLX5_MODI_OUT_TCP_SPORT,
492 MLX5_MODI_OUT_TCP_DPORT,
493 MLX5_MODI_OUT_IPV4_TTL,
494 MLX5_MODI_OUT_UDP_SPORT,
495 MLX5_MODI_OUT_UDP_DPORT,
496 MLX5_MODI_OUT_SIPV6_127_96,
497 MLX5_MODI_OUT_SIPV6_95_64,
498 MLX5_MODI_OUT_SIPV6_63_32,
499 MLX5_MODI_OUT_SIPV6_31_0,
500 MLX5_MODI_OUT_DIPV6_127_96,
501 MLX5_MODI_OUT_DIPV6_95_64,
502 MLX5_MODI_OUT_DIPV6_63_32,
503 MLX5_MODI_OUT_DIPV6_31_0,
506 MLX5_MODI_OUT_FIRST_VID,
507 MLX5_MODI_IN_SMAC_47_16 = 0x31,
508 MLX5_MODI_IN_SMAC_15_0,
509 MLX5_MODI_IN_ETHERTYPE,
510 MLX5_MODI_IN_DMAC_47_16,
511 MLX5_MODI_IN_DMAC_15_0,
512 MLX5_MODI_IN_IP_DSCP,
513 MLX5_MODI_IN_TCP_FLAGS,
514 MLX5_MODI_IN_TCP_SPORT,
515 MLX5_MODI_IN_TCP_DPORT,
516 MLX5_MODI_IN_IPV4_TTL,
517 MLX5_MODI_IN_UDP_SPORT,
518 MLX5_MODI_IN_UDP_DPORT,
519 MLX5_MODI_IN_SIPV6_127_96,
520 MLX5_MODI_IN_SIPV6_95_64,
521 MLX5_MODI_IN_SIPV6_63_32,
522 MLX5_MODI_IN_SIPV6_31_0,
523 MLX5_MODI_IN_DIPV6_127_96,
524 MLX5_MODI_IN_DIPV6_95_64,
525 MLX5_MODI_IN_DIPV6_63_32,
526 MLX5_MODI_IN_DIPV6_31_0,
529 MLX5_MODI_OUT_IPV6_HOPLIMIT,
530 MLX5_MODI_IN_IPV6_HOPLIMIT,
531 MLX5_MODI_META_DATA_REG_A,
532 MLX5_MODI_META_DATA_REG_B = 0x50,
533 MLX5_MODI_META_REG_C_0,
534 MLX5_MODI_META_REG_C_1,
535 MLX5_MODI_META_REG_C_2,
536 MLX5_MODI_META_REG_C_3,
537 MLX5_MODI_META_REG_C_4,
538 MLX5_MODI_META_REG_C_5,
539 MLX5_MODI_META_REG_C_6,
540 MLX5_MODI_META_REG_C_7,
541 MLX5_MODI_OUT_TCP_SEQ_NUM,
542 MLX5_MODI_IN_TCP_SEQ_NUM,
543 MLX5_MODI_OUT_TCP_ACK_NUM,
544 MLX5_MODI_IN_TCP_ACK_NUM = 0x5C,
547 /* Total number of metadata reg_c's. */
548 #define MLX5_MREG_C_NUM (MLX5_MODI_META_REG_C_7 - MLX5_MODI_META_REG_C_0 + 1)
564 /* Modification sub command. */
565 struct mlx5_modification_cmd {
569 unsigned int length:5;
570 unsigned int rsvd0:3;
571 unsigned int offset:5;
572 unsigned int rsvd1:3;
573 unsigned int field:12;
574 unsigned int action_type:4;
581 unsigned int rsvd2:8;
582 unsigned int dst_offset:5;
583 unsigned int rsvd3:3;
584 unsigned int dst_field:12;
585 unsigned int rsvd4:4;
590 typedef uint32_t u32;
591 typedef uint16_t u16;
594 #define __mlx5_nullp(typ) ((struct mlx5_ifc_##typ##_bits *)0)
595 #define __mlx5_bit_sz(typ, fld) sizeof(__mlx5_nullp(typ)->fld)
596 #define __mlx5_bit_off(typ, fld) ((unsigned int)(unsigned long) \
597 (&(__mlx5_nullp(typ)->fld)))
598 #define __mlx5_dw_bit_off(typ, fld) (32 - __mlx5_bit_sz(typ, fld) - \
599 (__mlx5_bit_off(typ, fld) & 0x1f))
600 #define __mlx5_dw_off(typ, fld) (__mlx5_bit_off(typ, fld) / 32)
601 #define __mlx5_64_off(typ, fld) (__mlx5_bit_off(typ, fld) / 64)
602 #define __mlx5_dw_mask(typ, fld) (__mlx5_mask(typ, fld) << \
603 __mlx5_dw_bit_off(typ, fld))
604 #define __mlx5_mask(typ, fld) ((u32)((1ull << __mlx5_bit_sz(typ, fld)) - 1))
605 #define __mlx5_16_off(typ, fld) (__mlx5_bit_off(typ, fld) / 16)
606 #define __mlx5_16_bit_off(typ, fld) (16 - __mlx5_bit_sz(typ, fld) - \
607 (__mlx5_bit_off(typ, fld) & 0xf))
608 #define __mlx5_mask16(typ, fld) ((u16)((1ull << __mlx5_bit_sz(typ, fld)) - 1))
609 #define __mlx5_16_mask(typ, fld) (__mlx5_mask16(typ, fld) << \
610 __mlx5_16_bit_off(typ, fld))
611 #define MLX5_ST_SZ_BYTES(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 8)
612 #define MLX5_ST_SZ_DW(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 32)
613 #define MLX5_BYTE_OFF(typ, fld) (__mlx5_bit_off(typ, fld) / 8)
614 #define MLX5_ADDR_OF(typ, p, fld) ((char *)(p) + MLX5_BYTE_OFF(typ, fld))
616 /* insert a value to a struct */
617 #define MLX5_SET(typ, p, fld, v) \
620 *((__be32 *)(p) + __mlx5_dw_off(typ, fld)) = \
621 rte_cpu_to_be_32((rte_be_to_cpu_32(*((u32 *)(p) + \
622 __mlx5_dw_off(typ, fld))) & \
623 (~__mlx5_dw_mask(typ, fld))) | \
624 (((_v) & __mlx5_mask(typ, fld)) << \
625 __mlx5_dw_bit_off(typ, fld))); \
628 #define MLX5_SET64(typ, p, fld, v) \
630 MLX5_ASSERT(__mlx5_bit_sz(typ, fld) == 64); \
631 *((__be64 *)(p) + __mlx5_64_off(typ, fld)) = \
632 rte_cpu_to_be_64(v); \
635 #define MLX5_SET16(typ, p, fld, v) \
638 *((__be16 *)(p) + __mlx5_16_off(typ, fld)) = \
639 rte_cpu_to_be_16((rte_be_to_cpu_16(*((__be16 *)(p) + \
640 __mlx5_16_off(typ, fld))) & \
641 (~__mlx5_16_mask(typ, fld))) | \
642 (((_v) & __mlx5_mask16(typ, fld)) << \
643 __mlx5_16_bit_off(typ, fld))); \
646 #define MLX5_GET_VOLATILE(typ, p, fld) \
647 ((rte_be_to_cpu_32(*((volatile __be32 *)(p) +\
648 __mlx5_dw_off(typ, fld))) >> __mlx5_dw_bit_off(typ, fld)) & \
649 __mlx5_mask(typ, fld))
650 #define MLX5_GET(typ, p, fld) \
651 ((rte_be_to_cpu_32(*((__be32 *)(p) +\
652 __mlx5_dw_off(typ, fld))) >> __mlx5_dw_bit_off(typ, fld)) & \
653 __mlx5_mask(typ, fld))
654 #define MLX5_GET16(typ, p, fld) \
655 ((rte_be_to_cpu_16(*((__be16 *)(p) + \
656 __mlx5_16_off(typ, fld))) >> __mlx5_16_bit_off(typ, fld)) & \
657 __mlx5_mask16(typ, fld))
658 #define MLX5_GET64(typ, p, fld) rte_be_to_cpu_64(*((__be64 *)(p) + \
659 __mlx5_64_off(typ, fld)))
660 #define MLX5_FLD_SZ_BYTES(typ, fld) (__mlx5_bit_sz(typ, fld) / 8)
662 struct mlx5_ifc_fte_match_set_misc_bits {
663 u8 gre_c_present[0x1];
664 u8 reserved_at_1[0x1];
665 u8 gre_k_present[0x1];
666 u8 gre_s_present[0x1];
667 u8 source_vhci_port[0x4];
669 u8 reserved_at_20[0x10];
670 u8 source_port[0x10];
671 u8 outer_second_prio[0x3];
672 u8 outer_second_cfi[0x1];
673 u8 outer_second_vid[0xc];
674 u8 inner_second_prio[0x3];
675 u8 inner_second_cfi[0x1];
676 u8 inner_second_vid[0xc];
677 u8 outer_second_cvlan_tag[0x1];
678 u8 inner_second_cvlan_tag[0x1];
679 u8 outer_second_svlan_tag[0x1];
680 u8 inner_second_svlan_tag[0x1];
681 u8 reserved_at_64[0xc];
682 u8 gre_protocol[0x10];
686 u8 reserved_at_b8[0x8];
688 u8 reserved_at_e4[0x7];
690 u8 reserved_at_e0[0xc];
691 u8 outer_ipv6_flow_label[0x14];
692 u8 reserved_at_100[0xc];
693 u8 inner_ipv6_flow_label[0x14];
694 u8 reserved_at_120[0xa];
695 u8 geneve_opt_len[0x6];
696 u8 geneve_protocol_type[0x10];
697 u8 reserved_at_140[0xc0];
700 struct mlx5_ifc_ipv4_layout_bits {
701 u8 reserved_at_0[0x60];
705 struct mlx5_ifc_ipv6_layout_bits {
709 union mlx5_ifc_ipv6_layout_ipv4_layout_auto_bits {
710 struct mlx5_ifc_ipv6_layout_bits ipv6_layout;
711 struct mlx5_ifc_ipv4_layout_bits ipv4_layout;
712 u8 reserved_at_0[0x80];
715 struct mlx5_ifc_fte_match_set_lyr_2_4_bits {
734 u8 reserved_at_c0[0x18];
735 u8 ip_ttl_hoplimit[0x8];
738 union mlx5_ifc_ipv6_layout_ipv4_layout_auto_bits src_ipv4_src_ipv6;
739 union mlx5_ifc_ipv6_layout_ipv4_layout_auto_bits dst_ipv4_dst_ipv6;
742 struct mlx5_ifc_fte_match_mpls_bits {
749 struct mlx5_ifc_fte_match_set_misc2_bits {
750 struct mlx5_ifc_fte_match_mpls_bits outer_first_mpls;
751 struct mlx5_ifc_fte_match_mpls_bits inner_first_mpls;
752 struct mlx5_ifc_fte_match_mpls_bits outer_first_mpls_over_gre;
753 struct mlx5_ifc_fte_match_mpls_bits outer_first_mpls_over_udp;
754 u8 metadata_reg_c_7[0x20];
755 u8 metadata_reg_c_6[0x20];
756 u8 metadata_reg_c_5[0x20];
757 u8 metadata_reg_c_4[0x20];
758 u8 metadata_reg_c_3[0x20];
759 u8 metadata_reg_c_2[0x20];
760 u8 metadata_reg_c_1[0x20];
761 u8 metadata_reg_c_0[0x20];
762 u8 metadata_reg_a[0x20];
763 u8 metadata_reg_b[0x20];
764 u8 reserved_at_1c0[0x40];
767 struct mlx5_ifc_fte_match_set_misc3_bits {
768 u8 inner_tcp_seq_num[0x20];
769 u8 outer_tcp_seq_num[0x20];
770 u8 inner_tcp_ack_num[0x20];
771 u8 outer_tcp_ack_num[0x20];
772 u8 reserved_at_auto1[0x8];
773 u8 outer_vxlan_gpe_vni[0x18];
774 u8 outer_vxlan_gpe_next_protocol[0x8];
775 u8 outer_vxlan_gpe_flags[0x8];
776 u8 reserved_at_a8[0x10];
777 u8 icmp_header_data[0x20];
778 u8 icmpv6_header_data[0x20];
783 u8 reserved_at_120[0x20];
785 u8 gtpu_msg_type[0x08];
786 u8 gtpu_msg_flags[0x08];
787 u8 reserved_at_170[0x90];
790 struct mlx5_ifc_fte_match_set_misc4_bits {
791 u8 prog_sample_field_value_0[0x20];
792 u8 prog_sample_field_id_0[0x20];
793 u8 prog_sample_field_value_1[0x20];
794 u8 prog_sample_field_id_1[0x20];
795 u8 prog_sample_field_value_2[0x20];
796 u8 prog_sample_field_id_2[0x20];
797 u8 prog_sample_field_value_3[0x20];
798 u8 prog_sample_field_id_3[0x20];
799 u8 reserved_at_100[0x100];
803 struct mlx5_ifc_fte_match_param_bits {
804 struct mlx5_ifc_fte_match_set_lyr_2_4_bits outer_headers;
805 struct mlx5_ifc_fte_match_set_misc_bits misc_parameters;
806 struct mlx5_ifc_fte_match_set_lyr_2_4_bits inner_headers;
807 struct mlx5_ifc_fte_match_set_misc2_bits misc_parameters_2;
808 struct mlx5_ifc_fte_match_set_misc3_bits misc_parameters_3;
809 struct mlx5_ifc_fte_match_set_misc4_bits misc_parameters_4;
813 MLX5_MATCH_CRITERIA_ENABLE_OUTER_BIT,
814 MLX5_MATCH_CRITERIA_ENABLE_MISC_BIT,
815 MLX5_MATCH_CRITERIA_ENABLE_INNER_BIT,
816 MLX5_MATCH_CRITERIA_ENABLE_MISC2_BIT,
817 MLX5_MATCH_CRITERIA_ENABLE_MISC3_BIT,
818 MLX5_MATCH_CRITERIA_ENABLE_MISC4_BIT,
822 MLX5_CMD_OP_QUERY_HCA_CAP = 0x100,
823 MLX5_CMD_OP_CREATE_MKEY = 0x200,
824 MLX5_CMD_OP_CREATE_CQ = 0x400,
825 MLX5_CMD_OP_CREATE_QP = 0x500,
826 MLX5_CMD_OP_RST2INIT_QP = 0x502,
827 MLX5_CMD_OP_INIT2RTR_QP = 0x503,
828 MLX5_CMD_OP_RTR2RTS_QP = 0x504,
829 MLX5_CMD_OP_RTS2RTS_QP = 0x505,
830 MLX5_CMD_OP_SQERR2RTS_QP = 0x506,
831 MLX5_CMD_OP_QP_2ERR = 0x507,
832 MLX5_CMD_OP_QP_2RST = 0x50A,
833 MLX5_CMD_OP_QUERY_QP = 0x50B,
834 MLX5_CMD_OP_SQD2RTS_QP = 0x50C,
835 MLX5_CMD_OP_INIT2INIT_QP = 0x50E,
836 MLX5_CMD_OP_SUSPEND_QP = 0x50F,
837 MLX5_CMD_OP_RESUME_QP = 0x510,
838 MLX5_CMD_OP_QUERY_NIC_VPORT_CONTEXT = 0x754,
839 MLX5_CMD_OP_ACCESS_REGISTER = 0x805,
840 MLX5_CMD_OP_ALLOC_TRANSPORT_DOMAIN = 0x816,
841 MLX5_CMD_OP_CREATE_TIR = 0x900,
842 MLX5_CMD_OP_CREATE_SQ = 0X904,
843 MLX5_CMD_OP_MODIFY_SQ = 0X905,
844 MLX5_CMD_OP_CREATE_RQ = 0x908,
845 MLX5_CMD_OP_MODIFY_RQ = 0x909,
846 MLX5_CMD_OP_CREATE_TIS = 0x912,
847 MLX5_CMD_OP_QUERY_TIS = 0x915,
848 MLX5_CMD_OP_CREATE_RQT = 0x916,
849 MLX5_CMD_OP_MODIFY_RQT = 0x917,
850 MLX5_CMD_OP_ALLOC_FLOW_COUNTER = 0x939,
851 MLX5_CMD_OP_QUERY_FLOW_COUNTER = 0x93b,
852 MLX5_CMD_OP_CREATE_GENERAL_OBJECT = 0xa00,
853 MLX5_CMD_OP_MODIFY_GENERAL_OBJECT = 0xa01,
854 MLX5_CMD_OP_QUERY_GENERAL_OBJECT = 0xa02,
855 MLX5_CMD_SET_REGEX_PARAMS = 0xb04,
856 MLX5_CMD_QUERY_REGEX_PARAMS = 0xb05,
857 MLX5_CMD_SET_REGEX_REGISTERS = 0xb06,
858 MLX5_CMD_QUERY_REGEX_REGISTERS = 0xb07,
859 MLX5_CMD_OP_ACCESS_REGISTER_USER = 0xb0c,
863 MLX5_MKC_ACCESS_MODE_MTT = 0x1,
864 MLX5_MKC_ACCESS_MODE_KLM = 0x2,
865 MLX5_MKC_ACCESS_MODE_KLM_FBS = 0x3,
868 #define MLX5_ADAPTER_PAGE_SHIFT 12
869 #define MLX5_LOG_RQ_STRIDE_SHIFT 4
871 * The batch counter dcs id starts from 0x800000 and none batch counter
872 * starts from 0. As currently, the counter is changed to be indexed by
873 * pool index and the offset of the counter in the pool counters_raw array.
874 * It means now the counter index is same for batch and none batch counter.
875 * Add the 0x800000 batch counter offset to the batch counter index helps
876 * indicate the counter index is from batch or none batch container pool.
878 #define MLX5_CNT_BATCH_OFFSET 0x800000
881 struct mlx5_ifc_alloc_flow_counter_out_bits {
883 u8 reserved_at_8[0x18];
885 u8 flow_counter_id[0x20];
886 u8 reserved_at_60[0x20];
889 struct mlx5_ifc_alloc_flow_counter_in_bits {
891 u8 reserved_at_10[0x10];
892 u8 reserved_at_20[0x10];
894 u8 flow_counter_id[0x20];
895 u8 reserved_at_40[0x18];
896 u8 flow_counter_bulk[0x8];
899 struct mlx5_ifc_dealloc_flow_counter_out_bits {
901 u8 reserved_at_8[0x18];
903 u8 reserved_at_40[0x40];
906 struct mlx5_ifc_dealloc_flow_counter_in_bits {
908 u8 reserved_at_10[0x10];
909 u8 reserved_at_20[0x10];
911 u8 flow_counter_id[0x20];
912 u8 reserved_at_60[0x20];
915 struct mlx5_ifc_traffic_counter_bits {
920 struct mlx5_ifc_query_flow_counter_out_bits {
922 u8 reserved_at_8[0x18];
924 u8 reserved_at_40[0x40];
925 struct mlx5_ifc_traffic_counter_bits flow_statistics[];
928 struct mlx5_ifc_query_flow_counter_in_bits {
930 u8 reserved_at_10[0x10];
931 u8 reserved_at_20[0x10];
933 u8 reserved_at_40[0x20];
937 u8 dump_to_memory[0x1];
938 u8 num_of_counters[0x1e];
939 u8 flow_counter_id[0x20];
942 #define MLX5_MAX_KLM_BYTE_COUNT 0x80000000u
943 #define MLX5_MIN_KLM_FIXED_BUFFER_SIZE 0x1000u
946 struct mlx5_ifc_klm_bits {
952 struct mlx5_ifc_mkc_bits {
953 u8 reserved_at_0[0x1];
955 u8 reserved_at_2[0x1];
956 u8 access_mode_4_2[0x3];
957 u8 reserved_at_6[0x7];
958 u8 relaxed_ordering_write[0x1];
959 u8 reserved_at_e[0x1];
960 u8 small_fence_on_rdma_read_response[0x1];
967 u8 access_mode_1_0[0x2];
968 u8 reserved_at_18[0x8];
973 u8 reserved_at_40[0x20];
978 u8 reserved_at_63[0x2];
979 u8 expected_sigerr_count[0x1];
980 u8 reserved_at_66[0x1];
988 u8 bsf_octword_size[0x20];
990 u8 reserved_at_120[0x80];
992 u8 translations_octword_size[0x20];
994 u8 reserved_at_1c0[0x19];
995 u8 relaxed_ordering_read[0x1];
996 u8 reserved_at_1da[0x1];
997 u8 log_page_size[0x5];
999 u8 reserved_at_1e0[0x20];
1002 struct mlx5_ifc_create_mkey_out_bits {
1004 u8 reserved_at_8[0x18];
1008 u8 reserved_at_40[0x8];
1009 u8 mkey_index[0x18];
1011 u8 reserved_at_60[0x20];
1014 struct mlx5_ifc_create_mkey_in_bits {
1016 u8 reserved_at_10[0x10];
1018 u8 reserved_at_20[0x10];
1021 u8 reserved_at_40[0x20];
1024 u8 reserved_at_61[0x1f];
1026 struct mlx5_ifc_mkc_bits memory_key_mkey_entry;
1028 u8 reserved_at_280[0x80];
1030 u8 translations_octword_actual_size[0x20];
1032 u8 mkey_umem_id[0x20];
1034 u8 mkey_umem_offset[0x40];
1036 u8 reserved_at_380[0x500];
1038 u8 klm_pas_mtt[][0x20];
1042 MLX5_GET_HCA_CAP_OP_MOD_GENERAL_DEVICE = 0x0 << 1,
1043 MLX5_GET_HCA_CAP_OP_MOD_ETHERNET_OFFLOAD_CAPS = 0x1 << 1,
1044 MLX5_GET_HCA_CAP_OP_MOD_QOS_CAP = 0xc << 1,
1045 MLX5_GET_HCA_CAP_OP_MOD_VDPA_EMULATION = 0x13 << 1,
1049 MLX5_GENERAL_OBJ_TYPES_CAP_VIRTQ_NET_Q = (1ULL << 0xd),
1050 MLX5_GENERAL_OBJ_TYPES_CAP_VIRTIO_Q_COUNTERS = (1ULL << 0x1c),
1054 MLX5_HCA_CAP_OPMOD_GET_MAX = 0,
1055 MLX5_HCA_CAP_OPMOD_GET_CUR = 1,
1059 MLX5_CAP_INLINE_MODE_L2,
1060 MLX5_CAP_INLINE_MODE_VPORT_CONTEXT,
1061 MLX5_CAP_INLINE_MODE_NOT_REQUIRED,
1065 MLX5_INLINE_MODE_NONE,
1066 MLX5_INLINE_MODE_L2,
1067 MLX5_INLINE_MODE_IP,
1068 MLX5_INLINE_MODE_TCP_UDP,
1069 MLX5_INLINE_MODE_RESERVED4,
1070 MLX5_INLINE_MODE_INNER_L2,
1071 MLX5_INLINE_MODE_INNER_IP,
1072 MLX5_INLINE_MODE_INNER_TCP_UDP,
1075 /* HCA bit masks indicating which Flex parser protocols are already enabled. */
1076 #define MLX5_HCA_FLEX_IPV4_OVER_VXLAN_ENABLED (1UL << 0)
1077 #define MLX5_HCA_FLEX_IPV6_OVER_VXLAN_ENABLED (1UL << 1)
1078 #define MLX5_HCA_FLEX_IPV6_OVER_IP_ENABLED (1UL << 2)
1079 #define MLX5_HCA_FLEX_GENEVE_ENABLED (1UL << 3)
1080 #define MLX5_HCA_FLEX_CW_MPLS_OVER_GRE_ENABLED (1UL << 4)
1081 #define MLX5_HCA_FLEX_CW_MPLS_OVER_UDP_ENABLED (1UL << 5)
1082 #define MLX5_HCA_FLEX_P_BIT_VXLAN_GPE_ENABLED (1UL << 6)
1083 #define MLX5_HCA_FLEX_VXLAN_GPE_ENABLED (1UL << 7)
1084 #define MLX5_HCA_FLEX_ICMP_ENABLED (1UL << 8)
1085 #define MLX5_HCA_FLEX_ICMPV6_ENABLED (1UL << 9)
1087 struct mlx5_ifc_cmd_hca_cap_bits {
1088 u8 reserved_at_0[0x30];
1090 u8 reserved_at_40[0x40];
1091 u8 log_max_srq_sz[0x8];
1092 u8 log_max_qp_sz[0x8];
1093 u8 reserved_at_90[0x9];
1094 u8 wqe_index_ignore_cap[0x1];
1095 u8 dynamic_qp_allocation[0x1];
1098 u8 reserved_at_a1[0x3];
1099 u8 regexp_num_of_engines[0x4];
1100 u8 reserved_at_a8[0x3];
1101 u8 log_max_srq[0x5];
1102 u8 reserved_at_b0[0x3];
1103 u8 regexp_log_crspace_size[0x5];
1104 u8 reserved_at_b8[0x8];
1105 u8 reserved_at_c0[0x8];
1106 u8 log_max_cq_sz[0x8];
1107 u8 reserved_at_d0[0xb];
1109 u8 log_max_eq_sz[0x8];
1110 u8 relaxed_ordering_write[0x1];
1111 u8 relaxed_ordering_read[0x1];
1112 u8 log_max_mkey[0x6];
1113 u8 reserved_at_f0[0x8];
1114 u8 dump_fill_mkey[0x1];
1115 u8 reserved_at_f9[0x3];
1117 u8 max_indirection[0x8];
1118 u8 fixed_buffer_size[0x1];
1119 u8 log_max_mrw_sz[0x7];
1120 u8 force_teardown[0x1];
1121 u8 reserved_at_111[0x1];
1122 u8 log_max_bsf_list_size[0x6];
1123 u8 umr_extended_translation_offset[0x1];
1125 u8 log_max_klm_list_size[0x6];
1126 u8 non_wire_sq[0x1];
1127 u8 reserved_at_121[0x9];
1128 u8 log_max_ra_req_dc[0x6];
1129 u8 reserved_at_130[0x3];
1130 u8 log_max_static_sq_wq[0x5];
1131 u8 reserved_at_138[0x2];
1132 u8 log_max_ra_res_dc[0x6];
1133 u8 reserved_at_140[0xa];
1134 u8 log_max_ra_req_qp[0x6];
1135 u8 reserved_at_150[0xa];
1136 u8 log_max_ra_res_qp[0x6];
1138 u8 cc_query_allowed[0x1];
1139 u8 cc_modify_allowed[0x1];
1141 u8 cache_line_128byte[0x1];
1142 u8 reserved_at_165[0xa];
1144 u8 gid_table_size[0x10];
1145 u8 out_of_seq_cnt[0x1];
1146 u8 vport_counters[0x1];
1147 u8 retransmission_q_counters[0x1];
1149 u8 modify_rq_counter_set_id[0x1];
1150 u8 rq_delay_drop[0x1];
1152 u8 pkey_table_size[0x10];
1153 u8 vport_group_manager[0x1];
1154 u8 vhca_group_manager[0x1];
1157 u8 vnic_env_queue_counters[0x1];
1159 u8 nic_flow_table[0x1];
1160 u8 eswitch_manager[0x1];
1161 u8 device_memory[0x1];
1164 u8 local_ca_ack_delay[0x5];
1165 u8 port_module_event[0x1];
1166 u8 enhanced_error_q_counters[0x1];
1167 u8 ports_check[0x1];
1168 u8 reserved_at_1b3[0x1];
1169 u8 disable_link_up[0x1];
1173 u8 reserved_at_1c0[0x1];
1176 u8 log_max_msg[0x5];
1177 u8 reserved_at_1c8[0x4];
1179 u8 temp_warn_event[0x1];
1181 u8 general_notification_event[0x1];
1182 u8 reserved_at_1d3[0x2];
1186 u8 reserved_at_1d8[0x1];
1194 u8 stat_rate_support[0x10];
1195 u8 reserved_at_1f0[0xc];
1196 u8 cqe_version[0x4];
1197 u8 compact_address_vector[0x1];
1198 u8 striding_rq[0x1];
1199 u8 reserved_at_202[0x1];
1200 u8 ipoib_enhanced_offloads[0x1];
1201 u8 ipoib_basic_offloads[0x1];
1202 u8 reserved_at_205[0x1];
1203 u8 repeated_block_disabled[0x1];
1204 u8 umr_modify_entity_size_disabled[0x1];
1205 u8 umr_modify_atomic_disabled[0x1];
1206 u8 umr_indirect_mkey_disabled[0x1];
1208 u8 reserved_at_20c[0x3];
1209 u8 drain_sigerr[0x1];
1210 u8 cmdif_checksum[0x2];
1212 u8 reserved_at_213[0x1];
1213 u8 wq_signature[0x1];
1214 u8 sctr_data_cqe[0x1];
1215 u8 reserved_at_216[0x1];
1221 u8 eth_net_offloads[0x1];
1224 u8 reserved_at_21f[0x1];
1227 u8 cq_moderation[0x1];
1228 u8 reserved_at_223[0x3];
1229 u8 cq_eq_remap[0x1];
1231 u8 block_lb_mc[0x1];
1232 u8 reserved_at_229[0x1];
1233 u8 scqe_break_moderation[0x1];
1234 u8 cq_period_start_from_cqe[0x1];
1236 u8 reserved_at_22d[0x1];
1238 u8 vector_calc[0x1];
1239 u8 umr_ptr_rlky[0x1];
1241 u8 reserved_at_232[0x4];
1244 u8 set_deth_sqpn[0x1];
1245 u8 reserved_at_239[0x3];
1251 u8 reserved_at_241[0x9];
1253 u8 reserved_at_250[0x8];
1256 u8 driver_version[0x1];
1257 u8 pad_tx_eth_packet[0x1];
1258 u8 reserved_at_263[0x8];
1259 u8 log_bf_reg_size[0x5];
1260 u8 reserved_at_270[0xb];
1262 u8 num_lag_ports[0x4];
1263 u8 reserved_at_280[0x10];
1264 u8 max_wqe_sz_sq[0x10];
1265 u8 reserved_at_2a0[0x10];
1266 u8 max_wqe_sz_rq[0x10];
1267 u8 max_flow_counter_31_16[0x10];
1268 u8 max_wqe_sz_sq_dc[0x10];
1269 u8 reserved_at_2e0[0x7];
1270 u8 max_qp_mcg[0x19];
1271 u8 reserved_at_300[0x10];
1272 u8 flow_counter_bulk_alloc[0x08];
1273 u8 log_max_mcg[0x8];
1274 u8 reserved_at_320[0x3];
1275 u8 log_max_transport_domain[0x5];
1276 u8 reserved_at_328[0x3];
1278 u8 reserved_at_330[0xb];
1279 u8 log_max_xrcd[0x5];
1280 u8 nic_receive_steering_discard[0x1];
1281 u8 receive_discard_vport_down[0x1];
1282 u8 transmit_discard_vport_down[0x1];
1283 u8 reserved_at_343[0x5];
1284 u8 log_max_flow_counter_bulk[0x8];
1285 u8 max_flow_counter_15_0[0x10];
1287 u8 flow_counters_dump[0x1];
1288 u8 reserved_at_360[0x1];
1290 u8 reserved_at_368[0x3];
1292 u8 reserved_at_370[0x3];
1293 u8 log_max_tir[0x5];
1294 u8 reserved_at_378[0x3];
1295 u8 log_max_tis[0x5];
1296 u8 basic_cyclic_rcv_wqe[0x1];
1297 u8 reserved_at_381[0x2];
1298 u8 log_max_rmp[0x5];
1299 u8 reserved_at_388[0x3];
1300 u8 log_max_rqt[0x5];
1301 u8 reserved_at_390[0x3];
1302 u8 log_max_rqt_size[0x5];
1303 u8 reserved_at_398[0x3];
1304 u8 log_max_tis_per_sq[0x5];
1305 u8 ext_stride_num_range[0x1];
1306 u8 reserved_at_3a1[0x2];
1307 u8 log_max_stride_sz_rq[0x5];
1308 u8 reserved_at_3a8[0x3];
1309 u8 log_min_stride_sz_rq[0x5];
1310 u8 reserved_at_3b0[0x3];
1311 u8 log_max_stride_sz_sq[0x5];
1312 u8 reserved_at_3b8[0x3];
1313 u8 log_min_stride_sz_sq[0x5];
1315 u8 reserved_at_3c1[0x2];
1316 u8 log_max_hairpin_queues[0x5];
1317 u8 reserved_at_3c8[0x3];
1318 u8 log_max_hairpin_wq_data_sz[0x5];
1319 u8 reserved_at_3d0[0x3];
1320 u8 log_max_hairpin_num_packets[0x5];
1321 u8 reserved_at_3d8[0x3];
1322 u8 log_max_wq_sz[0x5];
1323 u8 nic_vport_change_event[0x1];
1324 u8 disable_local_lb_uc[0x1];
1325 u8 disable_local_lb_mc[0x1];
1326 u8 log_min_hairpin_wq_data_sz[0x5];
1327 u8 reserved_at_3e8[0x3];
1328 u8 log_max_vlan_list[0x5];
1329 u8 reserved_at_3f0[0x3];
1330 u8 log_max_current_mc_list[0x5];
1331 u8 reserved_at_3f8[0x3];
1332 u8 log_max_current_uc_list[0x5];
1333 u8 general_obj_types[0x40];
1334 u8 reserved_at_440[0x20];
1335 u8 reserved_at_460[0x10];
1336 u8 max_num_eqs[0x10];
1337 u8 reserved_at_480[0x3];
1338 u8 log_max_l2_table[0x5];
1339 u8 reserved_at_488[0x8];
1340 u8 log_uar_page_sz[0x10];
1341 u8 reserved_at_4a0[0x20];
1342 u8 device_frequency_mhz[0x20];
1343 u8 device_frequency_khz[0x20];
1344 u8 reserved_at_500[0x20];
1345 u8 num_of_uars_per_page[0x20];
1346 u8 flex_parser_protocols[0x20];
1347 u8 reserved_at_560[0x20];
1348 u8 reserved_at_580[0x3c];
1349 u8 mini_cqe_resp_stride_index[0x1];
1350 u8 cqe_128_always[0x1];
1351 u8 cqe_compression_128[0x1];
1352 u8 cqe_compression[0x1];
1353 u8 cqe_compression_timeout[0x10];
1354 u8 cqe_compression_max_num[0x10];
1355 u8 reserved_at_5e0[0x10];
1356 u8 tag_matching[0x1];
1357 u8 rndv_offload_rc[0x1];
1358 u8 rndv_offload_dc[0x1];
1359 u8 log_tag_matching_list_sz[0x5];
1360 u8 reserved_at_5f8[0x3];
1361 u8 log_max_xrq[0x5];
1362 u8 affiliate_nic_vport_criteria[0x8];
1363 u8 native_port_num[0x8];
1364 u8 num_vhca_ports[0x8];
1365 u8 reserved_at_618[0x6];
1366 u8 sw_owner_id[0x1];
1367 u8 reserved_at_61f[0x1e1];
1370 struct mlx5_ifc_qos_cap_bits {
1371 u8 packet_pacing[0x1];
1372 u8 esw_scheduling[0x1];
1373 u8 esw_bw_share[0x1];
1374 u8 esw_rate_limit[0x1];
1375 u8 reserved_at_4[0x1];
1376 u8 packet_pacing_burst_bound[0x1];
1377 u8 packet_pacing_typical_size[0x1];
1378 u8 flow_meter_srtcm[0x1];
1379 u8 reserved_at_8[0x8];
1380 u8 log_max_flow_meter[0x8];
1381 u8 flow_meter_reg_id[0x8];
1382 u8 wqe_rate_pp[0x1];
1383 u8 reserved_at_25[0x7];
1384 u8 flow_meter_reg_share[0x1];
1385 u8 reserved_at_2e[0x17];
1386 u8 packet_pacing_max_rate[0x20];
1387 u8 packet_pacing_min_rate[0x20];
1388 u8 reserved_at_80[0x10];
1389 u8 packet_pacing_rate_table_size[0x10];
1390 u8 esw_element_type[0x10];
1391 u8 esw_tsar_type[0x10];
1392 u8 reserved_at_c0[0x10];
1393 u8 max_qos_para_vport[0x10];
1394 u8 max_tsar_bw_share[0x20];
1395 u8 reserved_at_100[0x6e8];
1398 struct mlx5_ifc_per_protocol_networking_offload_caps_bits {
1402 u8 lro_psh_flag[0x1];
1403 u8 lro_time_stamp[0x1];
1404 u8 lro_max_msg_sz_mode[0x2];
1405 u8 wqe_vlan_insert[0x1];
1406 u8 self_lb_en_modifiable[0x1];
1409 u8 max_lso_cap[0x5];
1410 u8 multi_pkt_send_wqe[0x2];
1411 u8 wqe_inline_mode[0x2];
1412 u8 rss_ind_tbl_cap[0x4];
1414 u8 scatter_fcs[0x1];
1415 u8 enhanced_multi_pkt_send_wqe[0x1];
1416 u8 tunnel_lso_const_out_ip_id[0x1];
1417 u8 tunnel_lro_gre[0x1];
1418 u8 tunnel_lro_vxlan[0x1];
1419 u8 tunnel_stateless_gre[0x1];
1420 u8 tunnel_stateless_vxlan[0x1];
1424 u8 reserved_at_23[0x8];
1425 u8 tunnel_stateless_gtp[0x1];
1426 u8 reserved_at_25[0x4];
1427 u8 max_vxlan_udp_ports[0x8];
1428 u8 reserved_at_38[0x6];
1429 u8 max_geneve_opt_len[0x1];
1430 u8 tunnel_stateless_geneve_rx[0x1];
1431 u8 reserved_at_40[0x10];
1432 u8 lro_min_mss_size[0x10];
1433 u8 reserved_at_60[0x120];
1434 u8 lro_timer_supported_periods[4][0x20];
1435 u8 reserved_at_200[0x600];
1439 MLX5_VIRTQ_TYPE_SPLIT = 0,
1440 MLX5_VIRTQ_TYPE_PACKED = 1,
1444 MLX5_VIRTQ_EVENT_MODE_NO_MSIX = 0,
1445 MLX5_VIRTQ_EVENT_MODE_QP = 1,
1446 MLX5_VIRTQ_EVENT_MODE_MSIX = 2,
1449 struct mlx5_ifc_virtio_emulation_cap_bits {
1450 u8 desc_tunnel_offload_type[0x1];
1451 u8 eth_frame_offload_type[0x1];
1452 u8 virtio_version_1_0[0x1];
1457 u8 reserved_at_7[0x1][0x9];
1459 u8 virtio_queue_type[0x8];
1460 u8 reserved_at_20[0x13];
1461 u8 log_doorbell_stride[0x5];
1462 u8 reserved_at_3b[0x3];
1463 u8 log_doorbell_bar_size[0x5];
1464 u8 doorbell_bar_offset[0x40];
1465 u8 reserved_at_80[0x8];
1466 u8 max_num_virtio_queues[0x18];
1467 u8 reserved_at_a0[0x60];
1468 u8 umem_1_buffer_param_a[0x20];
1469 u8 umem_1_buffer_param_b[0x20];
1470 u8 umem_2_buffer_param_a[0x20];
1471 u8 umem_2_buffer_param_b[0x20];
1472 u8 umem_3_buffer_param_a[0x20];
1473 u8 umem_3_buffer_param_b[0x20];
1474 u8 reserved_at_1c0[0x620];
1477 union mlx5_ifc_hca_cap_union_bits {
1478 struct mlx5_ifc_cmd_hca_cap_bits cmd_hca_cap;
1479 struct mlx5_ifc_per_protocol_networking_offload_caps_bits
1480 per_protocol_networking_offload_caps;
1481 struct mlx5_ifc_qos_cap_bits qos_cap;
1482 struct mlx5_ifc_virtio_emulation_cap_bits vdpa_caps;
1483 u8 reserved_at_0[0x8000];
1486 struct mlx5_ifc_query_hca_cap_out_bits {
1488 u8 reserved_at_8[0x18];
1490 u8 reserved_at_40[0x40];
1491 union mlx5_ifc_hca_cap_union_bits capability;
1494 struct mlx5_ifc_query_hca_cap_in_bits {
1496 u8 reserved_at_10[0x10];
1497 u8 reserved_at_20[0x10];
1499 u8 reserved_at_40[0x40];
1502 struct mlx5_ifc_mac_address_layout_bits {
1503 u8 reserved_at_0[0x10];
1504 u8 mac_addr_47_32[0x10];
1505 u8 mac_addr_31_0[0x20];
1508 struct mlx5_ifc_nic_vport_context_bits {
1509 u8 reserved_at_0[0x5];
1510 u8 min_wqe_inline_mode[0x3];
1511 u8 reserved_at_8[0x15];
1512 u8 disable_mc_local_lb[0x1];
1513 u8 disable_uc_local_lb[0x1];
1515 u8 arm_change_event[0x1];
1516 u8 reserved_at_21[0x1a];
1517 u8 event_on_mtu[0x1];
1518 u8 event_on_promisc_change[0x1];
1519 u8 event_on_vlan_change[0x1];
1520 u8 event_on_mc_address_change[0x1];
1521 u8 event_on_uc_address_change[0x1];
1522 u8 reserved_at_40[0xc];
1523 u8 affiliation_criteria[0x4];
1524 u8 affiliated_vhca_id[0x10];
1525 u8 reserved_at_60[0xd0];
1527 u8 system_image_guid[0x40];
1530 u8 reserved_at_200[0x140];
1531 u8 qkey_violation_counter[0x10];
1532 u8 reserved_at_350[0x430];
1535 u8 promisc_all[0x1];
1536 u8 reserved_at_783[0x2];
1537 u8 allowed_list_type[0x3];
1538 u8 reserved_at_788[0xc];
1539 u8 allowed_list_size[0xc];
1540 struct mlx5_ifc_mac_address_layout_bits permanent_address;
1541 u8 reserved_at_7e0[0x20];
1544 struct mlx5_ifc_query_nic_vport_context_out_bits {
1546 u8 reserved_at_8[0x18];
1548 u8 reserved_at_40[0x40];
1549 struct mlx5_ifc_nic_vport_context_bits nic_vport_context;
1552 struct mlx5_ifc_query_nic_vport_context_in_bits {
1554 u8 reserved_at_10[0x10];
1555 u8 reserved_at_20[0x10];
1557 u8 other_vport[0x1];
1558 u8 reserved_at_41[0xf];
1559 u8 vport_number[0x10];
1560 u8 reserved_at_60[0x5];
1561 u8 allowed_list_type[0x3];
1562 u8 reserved_at_68[0x18];
1565 struct mlx5_ifc_tisc_bits {
1566 u8 strict_lag_tx_port_affinity[0x1];
1567 u8 reserved_at_1[0x3];
1568 u8 lag_tx_port_affinity[0x04];
1569 u8 reserved_at_8[0x4];
1571 u8 reserved_at_10[0x10];
1572 u8 reserved_at_20[0x100];
1573 u8 reserved_at_120[0x8];
1574 u8 transport_domain[0x18];
1575 u8 reserved_at_140[0x8];
1576 u8 underlay_qpn[0x18];
1577 u8 reserved_at_160[0x3a0];
1580 struct mlx5_ifc_query_tis_out_bits {
1582 u8 reserved_at_8[0x18];
1584 u8 reserved_at_40[0x40];
1585 struct mlx5_ifc_tisc_bits tis_context;
1588 struct mlx5_ifc_query_tis_in_bits {
1590 u8 reserved_at_10[0x10];
1591 u8 reserved_at_20[0x10];
1593 u8 reserved_at_40[0x8];
1595 u8 reserved_at_60[0x20];
1598 struct mlx5_ifc_alloc_transport_domain_out_bits {
1600 u8 reserved_at_8[0x18];
1602 u8 reserved_at_40[0x8];
1603 u8 transport_domain[0x18];
1604 u8 reserved_at_60[0x20];
1607 struct mlx5_ifc_alloc_transport_domain_in_bits {
1609 u8 reserved_at_10[0x10];
1610 u8 reserved_at_20[0x10];
1612 u8 reserved_at_40[0x40];
1616 MLX5_WQ_TYPE_LINKED_LIST = 0x0,
1617 MLX5_WQ_TYPE_CYCLIC = 0x1,
1618 MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ = 0x2,
1619 MLX5_WQ_TYPE_CYCLIC_STRIDING_RQ = 0x3,
1623 MLX5_WQ_END_PAD_MODE_NONE = 0x0,
1624 MLX5_WQ_END_PAD_MODE_ALIGN = 0x1,
1627 struct mlx5_ifc_wq_bits {
1629 u8 wq_signature[0x1];
1630 u8 end_padding_mode[0x2];
1632 u8 reserved_at_8[0x18];
1633 u8 hds_skip_first_sge[0x1];
1634 u8 log2_hds_buf_size[0x3];
1635 u8 reserved_at_24[0x7];
1636 u8 page_offset[0x5];
1638 u8 reserved_at_40[0x8];
1640 u8 reserved_at_60[0x8];
1643 u8 hw_counter[0x20];
1644 u8 sw_counter[0x20];
1645 u8 reserved_at_100[0xc];
1646 u8 log_wq_stride[0x4];
1647 u8 reserved_at_110[0x3];
1648 u8 log_wq_pg_sz[0x5];
1649 u8 reserved_at_118[0x3];
1651 u8 dbr_umem_valid[0x1];
1652 u8 wq_umem_valid[0x1];
1653 u8 reserved_at_122[0x1];
1654 u8 log_hairpin_num_packets[0x5];
1655 u8 reserved_at_128[0x3];
1656 u8 log_hairpin_data_sz[0x5];
1657 u8 reserved_at_130[0x4];
1658 u8 single_wqe_log_num_of_strides[0x4];
1659 u8 two_byte_shift_en[0x1];
1660 u8 reserved_at_139[0x4];
1661 u8 single_stride_log_num_of_bytes[0x3];
1662 u8 dbr_umem_id[0x20];
1663 u8 wq_umem_id[0x20];
1664 u8 wq_umem_offset[0x40];
1665 u8 reserved_at_1c0[0x440];
1669 MLX5_RQC_MEM_RQ_TYPE_MEMORY_RQ_INLINE = 0x0,
1670 MLX5_RQC_MEM_RQ_TYPE_MEMORY_RQ_RMP = 0x1,
1674 MLX5_RQC_STATE_RST = 0x0,
1675 MLX5_RQC_STATE_RDY = 0x1,
1676 MLX5_RQC_STATE_ERR = 0x3,
1679 struct mlx5_ifc_rqc_bits {
1681 u8 delay_drop_en[0x1];
1682 u8 scatter_fcs[0x1];
1684 u8 mem_rq_type[0x4];
1686 u8 reserved_at_c[0x1];
1687 u8 flush_in_error_en[0x1];
1689 u8 reserved_at_f[0x11];
1690 u8 reserved_at_20[0x8];
1691 u8 user_index[0x18];
1692 u8 reserved_at_40[0x8];
1694 u8 counter_set_id[0x8];
1695 u8 reserved_at_68[0x18];
1696 u8 reserved_at_80[0x8];
1698 u8 reserved_at_a0[0x8];
1699 u8 hairpin_peer_sq[0x18];
1700 u8 reserved_at_c0[0x10];
1701 u8 hairpin_peer_vhca[0x10];
1702 u8 reserved_at_e0[0xa0];
1703 struct mlx5_ifc_wq_bits wq; /* Not used in LRO RQ. */
1706 struct mlx5_ifc_create_rq_out_bits {
1708 u8 reserved_at_8[0x18];
1710 u8 reserved_at_40[0x8];
1712 u8 reserved_at_60[0x20];
1715 struct mlx5_ifc_create_rq_in_bits {
1718 u8 reserved_at_20[0x10];
1720 u8 reserved_at_40[0xc0];
1721 struct mlx5_ifc_rqc_bits ctx;
1724 struct mlx5_ifc_modify_rq_out_bits {
1726 u8 reserved_at_8[0x18];
1728 u8 reserved_at_40[0x40];
1731 struct mlx5_ifc_create_tis_out_bits {
1733 u8 reserved_at_8[0x18];
1735 u8 reserved_at_40[0x8];
1737 u8 reserved_at_60[0x20];
1740 struct mlx5_ifc_create_tis_in_bits {
1743 u8 reserved_at_20[0x10];
1745 u8 reserved_at_40[0xc0];
1746 struct mlx5_ifc_tisc_bits ctx;
1750 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_WQ_LWM = 1ULL << 0,
1751 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_VSD = 1ULL << 1,
1752 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_SCATTER_FCS = 1ULL << 2,
1753 MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_RQ_COUNTER_SET_ID = 1ULL << 3,
1756 struct mlx5_ifc_modify_rq_in_bits {
1759 u8 reserved_at_20[0x10];
1762 u8 reserved_at_44[0x4];
1764 u8 reserved_at_60[0x20];
1765 u8 modify_bitmask[0x40];
1766 u8 reserved_at_c0[0x40];
1767 struct mlx5_ifc_rqc_bits ctx;
1771 MLX5_L3_PROT_TYPE_IPV4 = 0,
1772 MLX5_L3_PROT_TYPE_IPV6 = 1,
1776 MLX5_L4_PROT_TYPE_TCP = 0,
1777 MLX5_L4_PROT_TYPE_UDP = 1,
1781 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_SRC_IP = 0x0,
1782 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_DST_IP = 0x1,
1783 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_L4_SPORT = 0x2,
1784 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_L4_DPORT = 0x3,
1785 MLX5_RX_HASH_FIELD_SELECT_SELECTED_FIELDS_IPSEC_SPI = 0x4,
1788 struct mlx5_ifc_rx_hash_field_select_bits {
1789 u8 l3_prot_type[0x1];
1790 u8 l4_prot_type[0x1];
1791 u8 selected_fields[0x1e];
1795 MLX5_TIRC_DISP_TYPE_DIRECT = 0x0,
1796 MLX5_TIRC_DISP_TYPE_INDIRECT = 0x1,
1800 MLX5_TIRC_LRO_ENABLE_MASK_IPV4_LRO = 0x1,
1801 MLX5_TIRC_LRO_ENABLE_MASK_IPV6_LRO = 0x2,
1805 MLX5_RX_HASH_FN_NONE = 0x0,
1806 MLX5_RX_HASH_FN_INVERTED_XOR8 = 0x1,
1807 MLX5_RX_HASH_FN_TOEPLITZ = 0x2,
1811 MLX5_TIRC_SELF_LB_BLOCK_BLOCK_UNICAST = 0x1,
1812 MLX5_TIRC_SELF_LB_BLOCK_BLOCK_MULTICAST = 0x2,
1816 MLX5_LRO_MAX_MSG_SIZE_START_FROM_L4 = 0x0,
1817 MLX5_LRO_MAX_MSG_SIZE_START_FROM_L2 = 0x1,
1820 struct mlx5_ifc_tirc_bits {
1821 u8 reserved_at_0[0x20];
1823 u8 reserved_at_24[0x1c];
1824 u8 reserved_at_40[0x40];
1825 u8 reserved_at_80[0x4];
1826 u8 lro_timeout_period_usecs[0x10];
1827 u8 lro_enable_mask[0x4];
1828 u8 lro_max_msg_sz[0x8];
1829 u8 reserved_at_a0[0x40];
1830 u8 reserved_at_e0[0x8];
1831 u8 inline_rqn[0x18];
1832 u8 rx_hash_symmetric[0x1];
1833 u8 reserved_at_101[0x1];
1834 u8 tunneled_offload_en[0x1];
1835 u8 reserved_at_103[0x5];
1836 u8 indirect_table[0x18];
1838 u8 reserved_at_124[0x2];
1839 u8 self_lb_block[0x2];
1840 u8 transport_domain[0x18];
1841 u8 rx_hash_toeplitz_key[10][0x20];
1842 struct mlx5_ifc_rx_hash_field_select_bits rx_hash_field_selector_outer;
1843 struct mlx5_ifc_rx_hash_field_select_bits rx_hash_field_selector_inner;
1844 u8 reserved_at_2c0[0x4c0];
1847 struct mlx5_ifc_create_tir_out_bits {
1849 u8 reserved_at_8[0x18];
1851 u8 reserved_at_40[0x8];
1853 u8 reserved_at_60[0x20];
1856 struct mlx5_ifc_create_tir_in_bits {
1859 u8 reserved_at_20[0x10];
1861 u8 reserved_at_40[0xc0];
1862 struct mlx5_ifc_tirc_bits ctx;
1866 MLX5_INLINE_Q_TYPE_RQ = 0x0,
1867 MLX5_INLINE_Q_TYPE_VIRTQ = 0x1,
1870 struct mlx5_ifc_rq_num_bits {
1871 u8 reserved_at_0[0x8];
1875 struct mlx5_ifc_rqtc_bits {
1876 u8 reserved_at_0[0xa5];
1877 u8 list_q_type[0x3];
1878 u8 reserved_at_a8[0x8];
1879 u8 rqt_max_size[0x10];
1880 u8 reserved_at_c0[0x10];
1881 u8 rqt_actual_size[0x10];
1882 u8 reserved_at_e0[0x6a0];
1883 struct mlx5_ifc_rq_num_bits rq_num[];
1886 struct mlx5_ifc_create_rqt_out_bits {
1888 u8 reserved_at_8[0x18];
1890 u8 reserved_at_40[0x8];
1892 u8 reserved_at_60[0x20];
1896 #pragma GCC diagnostic ignored "-Wpedantic"
1898 struct mlx5_ifc_create_rqt_in_bits {
1901 u8 reserved_at_20[0x10];
1903 u8 reserved_at_40[0xc0];
1904 struct mlx5_ifc_rqtc_bits rqt_context;
1907 struct mlx5_ifc_modify_rqt_in_bits {
1910 u8 reserved_at_20[0x10];
1912 u8 reserved_at_40[0x8];
1914 u8 reserved_at_60[0x20];
1915 u8 modify_bitmask[0x40];
1916 u8 reserved_at_c0[0x40];
1917 struct mlx5_ifc_rqtc_bits rqt_context;
1920 #pragma GCC diagnostic error "-Wpedantic"
1923 struct mlx5_ifc_modify_rqt_out_bits {
1925 u8 reserved_at_8[0x18];
1927 u8 reserved_at_40[0x40];
1931 MLX5_SQC_STATE_RST = 0x0,
1932 MLX5_SQC_STATE_RDY = 0x1,
1933 MLX5_SQC_STATE_ERR = 0x3,
1936 struct mlx5_ifc_sqc_bits {
1940 u8 flush_in_error_en[0x1];
1941 u8 allow_multi_pkt_send_wqe[0x1];
1942 u8 min_wqe_inline_mode[0x3];
1948 u8 static_sq_wq[0x1];
1949 u8 reserved_at_11[0xf];
1950 u8 reserved_at_20[0x8];
1951 u8 user_index[0x18];
1952 u8 reserved_at_40[0x8];
1954 u8 reserved_at_60[0x8];
1955 u8 hairpin_peer_rq[0x18];
1956 u8 reserved_at_80[0x10];
1957 u8 hairpin_peer_vhca[0x10];
1958 u8 reserved_at_a0[0x50];
1959 u8 packet_pacing_rate_limit_index[0x10];
1960 u8 tis_lst_sz[0x10];
1961 u8 reserved_at_110[0x10];
1962 u8 reserved_at_120[0x40];
1963 u8 reserved_at_160[0x8];
1965 struct mlx5_ifc_wq_bits wq;
1968 struct mlx5_ifc_query_sq_in_bits {
1970 u8 reserved_at_10[0x10];
1971 u8 reserved_at_20[0x10];
1973 u8 reserved_at_40[0x8];
1975 u8 reserved_at_60[0x20];
1978 struct mlx5_ifc_modify_sq_out_bits {
1980 u8 reserved_at_8[0x18];
1982 u8 reserved_at_40[0x40];
1985 struct mlx5_ifc_modify_sq_in_bits {
1988 u8 reserved_at_20[0x10];
1991 u8 reserved_at_44[0x4];
1993 u8 reserved_at_60[0x20];
1994 u8 modify_bitmask[0x40];
1995 u8 reserved_at_c0[0x40];
1996 struct mlx5_ifc_sqc_bits ctx;
1999 struct mlx5_ifc_create_sq_out_bits {
2001 u8 reserved_at_8[0x18];
2003 u8 reserved_at_40[0x8];
2005 u8 reserved_at_60[0x20];
2008 struct mlx5_ifc_create_sq_in_bits {
2011 u8 reserved_at_20[0x10];
2013 u8 reserved_at_40[0xc0];
2014 struct mlx5_ifc_sqc_bits ctx;
2018 MLX5_FLOW_METER_OBJ_MODIFY_FIELD_ACTIVE = (1ULL << 0),
2019 MLX5_FLOW_METER_OBJ_MODIFY_FIELD_CBS = (1ULL << 1),
2020 MLX5_FLOW_METER_OBJ_MODIFY_FIELD_CIR = (1ULL << 2),
2021 MLX5_FLOW_METER_OBJ_MODIFY_FIELD_EBS = (1ULL << 3),
2022 MLX5_FLOW_METER_OBJ_MODIFY_FIELD_EIR = (1ULL << 4),
2025 struct mlx5_ifc_flow_meter_parameters_bits {
2026 u8 valid[0x1]; // 00h
2027 u8 bucket_overflow[0x1];
2028 u8 start_color[0x2];
2029 u8 both_buckets_on_green[0x1];
2031 u8 reserved_at_1[0x19];
2032 u8 reserved_at_2[0x20]; //04h
2033 u8 reserved_at_3[0x3];
2034 u8 cbs_exponent[0x5]; // 08h
2035 u8 cbs_mantissa[0x8];
2036 u8 reserved_at_4[0x3];
2037 u8 cir_exponent[0x5];
2038 u8 cir_mantissa[0x8];
2039 u8 reserved_at_5[0x20]; // 0Ch
2040 u8 reserved_at_6[0x3];
2041 u8 ebs_exponent[0x5]; // 10h
2042 u8 ebs_mantissa[0x8];
2043 u8 reserved_at_7[0x3];
2044 u8 eir_exponent[0x5];
2045 u8 eir_mantissa[0x8];
2046 u8 reserved_at_8[0x60]; // 14h-1Ch
2050 MLX5_CQE_SIZE_64B = 0x0,
2051 MLX5_CQE_SIZE_128B = 0x1,
2054 struct mlx5_ifc_cqc_bits {
2057 u8 initiator_src_dct[0x1];
2058 u8 dbr_umem_valid[0x1];
2059 u8 reserved_at_7[0x1];
2062 u8 reserved_at_c[0x1];
2063 u8 scqe_break_moderation_en[0x1];
2065 u8 cq_period_mode[0x2];
2066 u8 cqe_comp_en[0x1];
2067 u8 mini_cqe_res_format[0x2];
2069 u8 reserved_at_18[0x8];
2070 u8 dbr_umem_id[0x20];
2071 u8 reserved_at_40[0x14];
2072 u8 page_offset[0x6];
2073 u8 reserved_at_5a[0x6];
2074 u8 reserved_at_60[0x3];
2075 u8 log_cq_size[0x5];
2077 u8 reserved_at_80[0x4];
2079 u8 cq_max_count[0x10];
2080 u8 reserved_at_a0[0x18];
2082 u8 reserved_at_c0[0x3];
2083 u8 log_page_size[0x5];
2084 u8 reserved_at_c8[0x18];
2085 u8 reserved_at_e0[0x20];
2086 u8 reserved_at_100[0x8];
2087 u8 last_notified_index[0x18];
2088 u8 reserved_at_120[0x8];
2089 u8 last_solicit_index[0x18];
2090 u8 reserved_at_140[0x8];
2091 u8 consumer_counter[0x18];
2092 u8 reserved_at_160[0x8];
2093 u8 producer_counter[0x18];
2094 u8 local_partition_id[0xc];
2095 u8 process_id[0x14];
2096 u8 reserved_at_1A0[0x20];
2100 struct mlx5_ifc_create_cq_out_bits {
2102 u8 reserved_at_8[0x18];
2104 u8 reserved_at_40[0x8];
2106 u8 reserved_at_60[0x20];
2109 struct mlx5_ifc_create_cq_in_bits {
2112 u8 reserved_at_20[0x10];
2114 u8 reserved_at_40[0x40];
2115 struct mlx5_ifc_cqc_bits cq_context;
2116 u8 cq_umem_offset[0x40];
2117 u8 cq_umem_id[0x20];
2118 u8 cq_umem_valid[0x1];
2119 u8 reserved_at_2e1[0x1f];
2120 u8 reserved_at_300[0x580];
2125 MLX5_GENERAL_OBJ_TYPE_VIRTQ = 0x000d,
2126 MLX5_GENERAL_OBJ_TYPE_VIRTIO_Q_COUNTERS = 0x001c,
2129 struct mlx5_ifc_general_obj_in_cmd_hdr_bits {
2131 u8 reserved_at_10[0x20];
2134 u8 reserved_at_60[0x20];
2137 struct mlx5_ifc_general_obj_out_cmd_hdr_bits {
2139 u8 reserved_at_8[0x18];
2142 u8 reserved_at_60[0x20];
2145 struct mlx5_ifc_virtio_q_counters_bits {
2146 u8 modify_field_select[0x40];
2147 u8 reserved_at_40[0x40];
2148 u8 received_desc[0x40];
2149 u8 completed_desc[0x40];
2150 u8 error_cqes[0x20];
2151 u8 bad_desc_errors[0x20];
2152 u8 exceed_max_chain[0x20];
2153 u8 invalid_buffer[0x20];
2154 u8 reserved_at_180[0x50];
2157 struct mlx5_ifc_create_virtio_q_counters_in_bits {
2158 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2159 struct mlx5_ifc_virtio_q_counters_bits virtio_q_counters;
2162 struct mlx5_ifc_query_virtio_q_counters_out_bits {
2163 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2164 struct mlx5_ifc_virtio_q_counters_bits virtio_q_counters;
2167 MLX5_VIRTQ_STATE_INIT = 0,
2168 MLX5_VIRTQ_STATE_RDY = 1,
2169 MLX5_VIRTQ_STATE_SUSPEND = 2,
2170 MLX5_VIRTQ_STATE_ERROR = 3,
2174 MLX5_VIRTQ_MODIFY_TYPE_STATE = (1UL << 0),
2175 MLX5_VIRTQ_MODIFY_TYPE_DIRTY_BITMAP_PARAMS = (1UL << 3),
2176 MLX5_VIRTQ_MODIFY_TYPE_DIRTY_BITMAP_DUMP_ENABLE = (1UL << 4),
2179 struct mlx5_ifc_virtio_q_bits {
2180 u8 virtio_q_type[0x8];
2181 u8 reserved_at_8[0x5];
2183 u8 queue_index[0x10];
2184 u8 full_emulation[0x1];
2185 u8 virtio_version_1_0[0x1];
2186 u8 reserved_at_22[0x2];
2187 u8 offload_type[0x4];
2188 u8 event_qpn_or_msix[0x18];
2189 u8 doorbell_stride_idx[0x10];
2190 u8 queue_size[0x10];
2191 u8 device_emulation_id[0x20];
2194 u8 available_addr[0x40];
2195 u8 virtio_q_mkey[0x20];
2196 u8 reserved_at_160[0x20];
2198 u8 umem_1_size[0x20];
2199 u8 umem_1_offset[0x40];
2201 u8 umem_2_size[0x20];
2202 u8 umem_2_offset[0x40];
2204 u8 umem_3_size[0x20];
2205 u8 umem_3_offset[0x40];
2206 u8 counter_set_id[0x20];
2207 u8 reserved_at_320[0x8];
2209 u8 reserved_at_340[0xc0];
2212 struct mlx5_ifc_virtio_net_q_bits {
2213 u8 modify_field_select[0x40];
2214 u8 reserved_at_40[0x40];
2219 u8 reserved_at_84[0x6];
2220 u8 dirty_bitmap_dump_enable[0x1];
2221 u8 vhost_log_page[0x5];
2222 u8 reserved_at_90[0xc];
2225 u8 tisn_or_qpn[0x18];
2226 u8 dirty_bitmap_mkey[0x20];
2227 u8 dirty_bitmap_size[0x20];
2228 u8 dirty_bitmap_addr[0x40];
2229 u8 hw_available_index[0x10];
2230 u8 hw_used_index[0x10];
2231 u8 reserved_at_160[0xa0];
2232 struct mlx5_ifc_virtio_q_bits virtio_q_context;
2235 struct mlx5_ifc_create_virtq_in_bits {
2236 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2237 struct mlx5_ifc_virtio_net_q_bits virtq;
2240 struct mlx5_ifc_query_virtq_out_bits {
2241 struct mlx5_ifc_general_obj_in_cmd_hdr_bits hdr;
2242 struct mlx5_ifc_virtio_net_q_bits virtq;
2246 MLX5_QP_ST_RC = 0x0,
2250 MLX5_QP_PM_MIGRATED = 0x3,
2254 MLX5_NON_ZERO_RQ = 0x0,
2257 MLX5_ZERO_LEN_RQ = 0x3,
2260 struct mlx5_ifc_ads_bits {
2263 u8 reserved_at_2[0xe];
2264 u8 pkey_index[0x10];
2265 u8 reserved_at_20[0x8];
2269 u8 ack_timeout[0x5];
2270 u8 reserved_at_45[0x3];
2271 u8 src_addr_index[0x8];
2272 u8 reserved_at_50[0x4];
2275 u8 reserved_at_60[0x4];
2277 u8 flow_label[0x14];
2278 u8 rgid_rip[16][0x8];
2279 u8 reserved_at_100[0x4];
2282 u8 reserved_at_106[0x1];
2290 u8 vhca_port_num[0x8];
2291 u8 rmac_47_32[0x10];
2295 struct mlx5_ifc_qpc_bits {
2297 u8 lag_tx_port_affinity[0x4];
2299 u8 reserved_at_10[0x3];
2301 u8 reserved_at_15[0x1];
2302 u8 req_e2e_credit_mode[0x2];
2303 u8 offload_type[0x4];
2304 u8 end_padding_mode[0x2];
2305 u8 reserved_at_1e[0x2];
2306 u8 wq_signature[0x1];
2307 u8 block_lb_mc[0x1];
2308 u8 atomic_like_write_en[0x1];
2309 u8 latency_sensitive[0x1];
2310 u8 reserved_at_24[0x1];
2311 u8 drain_sigerr[0x1];
2312 u8 reserved_at_26[0x2];
2315 u8 log_msg_max[0x5];
2316 u8 reserved_at_48[0x1];
2317 u8 log_rq_size[0x4];
2318 u8 log_rq_stride[0x3];
2320 u8 log_sq_size[0x4];
2321 u8 reserved_at_55[0x6];
2323 u8 ulp_stateless_offload_mode[0x4];
2324 u8 counter_set_id[0x8];
2326 u8 reserved_at_80[0x8];
2327 u8 user_index[0x18];
2328 u8 reserved_at_a0[0x3];
2329 u8 log_page_size[0x5];
2330 u8 remote_qpn[0x18];
2331 struct mlx5_ifc_ads_bits primary_address_path;
2332 struct mlx5_ifc_ads_bits secondary_address_path;
2333 u8 log_ack_req_freq[0x4];
2334 u8 reserved_at_384[0x4];
2335 u8 log_sra_max[0x3];
2336 u8 reserved_at_38b[0x2];
2337 u8 retry_count[0x3];
2339 u8 reserved_at_393[0x1];
2341 u8 cur_rnr_retry[0x3];
2342 u8 cur_retry_count[0x3];
2343 u8 reserved_at_39b[0x5];
2344 u8 reserved_at_3a0[0x20];
2345 u8 reserved_at_3c0[0x8];
2346 u8 next_send_psn[0x18];
2347 u8 reserved_at_3e0[0x8];
2349 u8 reserved_at_400[0x8];
2351 u8 reserved_at_420[0x20];
2352 u8 reserved_at_440[0x8];
2353 u8 last_acked_psn[0x18];
2354 u8 reserved_at_460[0x8];
2356 u8 reserved_at_480[0x8];
2357 u8 log_rra_max[0x3];
2358 u8 reserved_at_48b[0x1];
2359 u8 atomic_mode[0x4];
2363 u8 reserved_at_493[0x1];
2364 u8 page_offset[0x6];
2365 u8 reserved_at_49a[0x3];
2366 u8 cd_slave_receive[0x1];
2367 u8 cd_slave_send[0x1];
2369 u8 reserved_at_4a0[0x3];
2370 u8 min_rnr_nak[0x5];
2371 u8 next_rcv_psn[0x18];
2372 u8 reserved_at_4c0[0x8];
2374 u8 reserved_at_4e0[0x8];
2378 u8 reserved_at_560[0x5];
2380 u8 srqn_rmpn_xrqn[0x18];
2381 u8 reserved_at_580[0x8];
2383 u8 hw_sq_wqebb_counter[0x10];
2384 u8 sw_sq_wqebb_counter[0x10];
2385 u8 hw_rq_counter[0x20];
2386 u8 sw_rq_counter[0x20];
2387 u8 reserved_at_600[0x20];
2388 u8 reserved_at_620[0xf];
2392 u8 dc_access_key[0x40];
2393 u8 reserved_at_680[0x3];
2394 u8 dbr_umem_valid[0x1];
2395 u8 reserved_at_684[0x9c];
2396 u8 dbr_umem_id[0x20];
2399 struct mlx5_ifc_create_qp_out_bits {
2401 u8 reserved_at_8[0x18];
2403 u8 reserved_at_40[0x8];
2405 u8 reserved_at_60[0x20];
2409 #pragma GCC diagnostic ignored "-Wpedantic"
2411 struct mlx5_ifc_create_qp_in_bits {
2414 u8 reserved_at_20[0x10];
2416 u8 reserved_at_40[0x40];
2417 u8 opt_param_mask[0x20];
2418 u8 reserved_at_a0[0x20];
2419 struct mlx5_ifc_qpc_bits qpc;
2420 u8 wq_umem_offset[0x40];
2421 u8 wq_umem_id[0x20];
2422 u8 wq_umem_valid[0x1];
2423 u8 reserved_at_861[0x1f];
2427 #pragma GCC diagnostic error "-Wpedantic"
2430 struct mlx5_ifc_sqerr2rts_qp_out_bits {
2432 u8 reserved_at_8[0x18];
2434 u8 reserved_at_40[0x40];
2437 struct mlx5_ifc_sqerr2rts_qp_in_bits {
2440 u8 reserved_at_20[0x10];
2442 u8 reserved_at_40[0x8];
2444 u8 reserved_at_60[0x20];
2445 u8 opt_param_mask[0x20];
2446 u8 reserved_at_a0[0x20];
2447 struct mlx5_ifc_qpc_bits qpc;
2448 u8 reserved_at_800[0x80];
2451 struct mlx5_ifc_sqd2rts_qp_out_bits {
2453 u8 reserved_at_8[0x18];
2455 u8 reserved_at_40[0x40];
2458 struct mlx5_ifc_sqd2rts_qp_in_bits {
2461 u8 reserved_at_20[0x10];
2463 u8 reserved_at_40[0x8];
2465 u8 reserved_at_60[0x20];
2466 u8 opt_param_mask[0x20];
2467 u8 reserved_at_a0[0x20];
2468 struct mlx5_ifc_qpc_bits qpc;
2469 u8 reserved_at_800[0x80];
2472 struct mlx5_ifc_rts2rts_qp_out_bits {
2474 u8 reserved_at_8[0x18];
2476 u8 reserved_at_40[0x40];
2479 struct mlx5_ifc_rts2rts_qp_in_bits {
2482 u8 reserved_at_20[0x10];
2484 u8 reserved_at_40[0x8];
2486 u8 reserved_at_60[0x20];
2487 u8 opt_param_mask[0x20];
2488 u8 reserved_at_a0[0x20];
2489 struct mlx5_ifc_qpc_bits qpc;
2490 u8 reserved_at_800[0x80];
2493 struct mlx5_ifc_rtr2rts_qp_out_bits {
2495 u8 reserved_at_8[0x18];
2497 u8 reserved_at_40[0x40];
2500 struct mlx5_ifc_rtr2rts_qp_in_bits {
2503 u8 reserved_at_20[0x10];
2505 u8 reserved_at_40[0x8];
2507 u8 reserved_at_60[0x20];
2508 u8 opt_param_mask[0x20];
2509 u8 reserved_at_a0[0x20];
2510 struct mlx5_ifc_qpc_bits qpc;
2511 u8 reserved_at_800[0x80];
2514 struct mlx5_ifc_rst2init_qp_out_bits {
2516 u8 reserved_at_8[0x18];
2518 u8 reserved_at_40[0x40];
2521 struct mlx5_ifc_rst2init_qp_in_bits {
2524 u8 reserved_at_20[0x10];
2526 u8 reserved_at_40[0x8];
2528 u8 reserved_at_60[0x20];
2529 u8 opt_param_mask[0x20];
2530 u8 reserved_at_a0[0x20];
2531 struct mlx5_ifc_qpc_bits qpc;
2532 u8 reserved_at_800[0x80];
2535 struct mlx5_ifc_init2rtr_qp_out_bits {
2537 u8 reserved_at_8[0x18];
2539 u8 reserved_at_40[0x40];
2542 struct mlx5_ifc_init2rtr_qp_in_bits {
2545 u8 reserved_at_20[0x10];
2547 u8 reserved_at_40[0x8];
2549 u8 reserved_at_60[0x20];
2550 u8 opt_param_mask[0x20];
2551 u8 reserved_at_a0[0x20];
2552 struct mlx5_ifc_qpc_bits qpc;
2553 u8 reserved_at_800[0x80];
2556 struct mlx5_ifc_init2init_qp_out_bits {
2558 u8 reserved_at_8[0x18];
2560 u8 reserved_at_40[0x40];
2563 struct mlx5_ifc_init2init_qp_in_bits {
2566 u8 reserved_at_20[0x10];
2568 u8 reserved_at_40[0x8];
2570 u8 reserved_at_60[0x20];
2571 u8 opt_param_mask[0x20];
2572 u8 reserved_at_a0[0x20];
2573 struct mlx5_ifc_qpc_bits qpc;
2574 u8 reserved_at_800[0x80];
2578 #pragma GCC diagnostic ignored "-Wpedantic"
2580 struct mlx5_ifc_query_qp_out_bits {
2582 u8 reserved_at_8[0x18];
2584 u8 reserved_at_40[0x40];
2585 u8 opt_param_mask[0x20];
2586 u8 reserved_at_a0[0x20];
2587 struct mlx5_ifc_qpc_bits qpc;
2588 u8 reserved_at_800[0x80];
2592 #pragma GCC diagnostic error "-Wpedantic"
2595 struct mlx5_ifc_query_qp_in_bits {
2597 u8 reserved_at_10[0x10];
2598 u8 reserved_at_20[0x10];
2600 u8 reserved_at_40[0x8];
2602 u8 reserved_at_60[0x20];
2606 MLX5_DATA_RATE = 0x0,
2607 MLX5_WQE_RATE = 0x1,
2610 struct mlx5_ifc_set_pp_rate_limit_context_bits {
2611 u8 rate_limit[0x20];
2612 u8 burst_upper_bound[0x20];
2613 u8 reserved_at_40[0xC];
2615 u8 typical_packet_size[0x10];
2616 u8 reserved_at_60[0x120];
2619 #define MLX5_ACCESS_REGISTER_DATA_DWORD_MAX 8u
2622 #pragma GCC diagnostic ignored "-Wpedantic"
2624 struct mlx5_ifc_access_register_out_bits {
2626 u8 reserved_at_8[0x18];
2628 u8 reserved_at_40[0x40];
2629 u8 register_data[0][0x20];
2632 struct mlx5_ifc_access_register_in_bits {
2634 u8 reserved_at_10[0x10];
2635 u8 reserved_at_20[0x10];
2637 u8 reserved_at_40[0x10];
2638 u8 register_id[0x10];
2640 u8 register_data[0][0x20];
2643 #pragma GCC diagnostic error "-Wpedantic"
2647 MLX5_ACCESS_REGISTER_IN_OP_MOD_WRITE = 0x0,
2648 MLX5_ACCESS_REGISTER_IN_OP_MOD_READ = 0x1,
2652 MLX5_REGISTER_ID_MTUTC = 0x9055,
2655 struct mlx5_ifc_register_mtutc_bits {
2656 u8 time_stamp_mode[0x2];
2657 u8 time_stamp_state[0x2];
2658 u8 reserved_at_4[0x18];
2660 u8 freq_adjustment[0x20];
2661 u8 reserved_at_40[0x40];
2664 u8 time_adjustment[0x20];
2667 #define MLX5_MTUTC_TIMESTAMP_MODE_INTERNAL_TIMER 0
2668 #define MLX5_MTUTC_TIMESTAMP_MODE_REAL_TIME 1
2670 struct regexp_params_field_select_bits {
2671 u8 reserved_at_0[0x1e];
2672 u8 stop_engine[0x1];
2676 struct mlx5_ifc_regexp_params_bits {
2677 u8 reserved_at_0[0x1f];
2678 u8 stop_engine[0x1];
2679 u8 db_umem_id[0x20];
2680 u8 db_umem_offset[0x40];
2681 u8 reserved_at_80[0x100];
2684 struct mlx5_ifc_set_regexp_params_in_bits {
2687 u8 reserved_at_20[0x10];
2689 u8 reserved_at_40[0x18];
2691 struct regexp_params_field_select_bits field_select;
2692 struct mlx5_ifc_regexp_params_bits regexp_params;
2695 struct mlx5_ifc_set_regexp_params_out_bits {
2697 u8 reserved_at_8[0x18];
2699 u8 reserved_at_18[0x40];
2702 struct mlx5_ifc_query_regexp_params_in_bits {
2705 u8 reserved_at_20[0x10];
2707 u8 reserved_at_40[0x18];
2712 struct mlx5_ifc_query_regexp_params_out_bits {
2714 u8 reserved_at_8[0x18];
2717 struct mlx5_ifc_regexp_params_bits regexp_params;
2720 struct mlx5_ifc_set_regexp_register_in_bits {
2723 u8 reserved_at_20[0x10];
2725 u8 reserved_at_40[0x18];
2727 u8 register_address[0x20];
2728 u8 register_data[0x20];
2732 struct mlx5_ifc_set_regexp_register_out_bits {
2734 u8 reserved_at_8[0x18];
2739 struct mlx5_ifc_query_regexp_register_in_bits {
2742 u8 reserved_at_20[0x10];
2744 u8 reserved_at_40[0x18];
2746 u8 register_address[0x20];
2749 struct mlx5_ifc_query_regexp_register_out_bits {
2751 u8 reserved_at_8[0x18];
2754 u8 register_data[0x20];
2757 /* CQE format mask. */
2758 #define MLX5E_CQE_FORMAT_MASK 0xc
2761 #define MLX5_OPC_MOD_MPW 0x01
2763 /* Compressed Rx CQE structure. */
2764 struct mlx5_mini_cqe8 {
2766 uint32_t rx_hash_result;
2769 uint16_t stride_idx;
2772 uint16_t wqe_counter;
2773 uint8_t s_wqe_opcode;
2780 /* srTCM PRM flow meter parameters. */
2782 MLX5_FLOW_COLOR_RED = 0,
2783 MLX5_FLOW_COLOR_YELLOW,
2784 MLX5_FLOW_COLOR_GREEN,
2785 MLX5_FLOW_COLOR_UNDEFINED,
2788 /* Maximum value of srTCM metering parameters. */
2789 #define MLX5_SRTCM_CBS_MAX (0xFF * (1ULL << 0x1F))
2790 #define MLX5_SRTCM_CIR_MAX (8 * (1ULL << 30) * 0xFF)
2791 #define MLX5_SRTCM_EBS_MAX 0
2793 /* The bits meter color use. */
2794 #define MLX5_MTR_COLOR_BITS 8
2796 /* Length mode of dynamic flex parser graph node. */
2797 enum mlx5_parse_graph_node_len_mode {
2798 MLX5_GRAPH_NODE_LEN_FIXED = 0x0,
2799 MLX5_GRAPH_NODE_LEN_FIELD = 0x1,
2800 MLX5_GRAPH_NODE_LEN_BITMASK = 0x2,
2803 /* Offset mode of the samples of flex parser. */
2804 enum mlx5_parse_graph_flow_match_sample_offset_mode {
2805 MLX5_GRAPH_SAMPLE_OFFSET_FIXED = 0x0,
2806 MLX5_GRAPH_SAMPLE_OFFSET_FIELD = 0x1,
2807 MLX5_GRAPH_SAMPLE_OFFSET_BITMASK = 0x2,
2810 /* Node index for an input / output arc of the flex parser graph. */
2811 enum mlx5_parse_graph_arc_node_index {
2812 MLX5_GRAPH_ARC_NODE_NULL = 0x0,
2813 MLX5_GRAPH_ARC_NODE_HEAD = 0x1,
2814 MLX5_GRAPH_ARC_NODE_MAC = 0x2,
2815 MLX5_GRAPH_ARC_NODE_IP = 0x3,
2816 MLX5_GRAPH_ARC_NODE_GRE = 0x4,
2817 MLX5_GRAPH_ARC_NODE_UDP = 0x5,
2818 MLX5_GRAPH_ARC_NODE_MPLS = 0x6,
2819 MLX5_GRAPH_ARC_NODE_TCP = 0x7,
2820 MLX5_GRAPH_ARC_NODE_VXLAN_GPE = 0x8,
2821 MLX5_GRAPH_ARC_NODE_GENEVE = 0x9,
2822 MLX5_GRAPH_ARC_NODE_IPSEC_ESP = 0xa,
2823 MLX5_GRAPH_ARC_NODE_PROGRAMMABLE = 0x1f,
2827 * Convert a user mark to flow mark.
2830 * Mark value to convert.
2833 * Converted mark value.
2835 static inline uint32_t
2836 mlx5_flow_mark_set(uint32_t val)
2841 * Add one to the user value to differentiate un-marked flows from
2842 * marked flows, if the ID is equal to MLX5_FLOW_MARK_DEFAULT it
2843 * remains untouched.
2845 if (val != MLX5_FLOW_MARK_DEFAULT)
2847 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
2849 * Mark is 24 bits (minus reserved values) but is stored on a 32 bit
2850 * word, byte-swapped by the kernel on little-endian systems. In this
2851 * case, left-shifting the resulting big-endian value ensures the
2852 * least significant 24 bits are retained when converting it back.
2854 ret = rte_cpu_to_be_32(val) >> 8;
2862 * Convert a mark to user mark.
2865 * Mark value to convert.
2868 * Converted mark value.
2870 static inline uint32_t
2871 mlx5_flow_mark_get(uint32_t val)
2874 * Subtract one from the retrieved value. It was added by
2875 * mlx5_flow_mark_set() to distinguish unmarked flows.
2877 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
2878 return (val >> 8) - 1;
2884 #endif /* RTE_PMD_MLX5_PRM_H_ */