xref: /dpdk/drivers/net/mlx5/mlx5.h (revision e9fd1ebf981f361844aea9ec94e17f4bda5e1479)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2015 6WIND S.A.
3  * Copyright 2015 Mellanox Technologies, Ltd
4  */
5 
6 #ifndef RTE_PMD_MLX5_H_
7 #define RTE_PMD_MLX5_H_
8 
9 #include <stddef.h>
10 #include <stdbool.h>
11 #include <stdint.h>
12 #include <limits.h>
13 #include <sys/queue.h>
14 
15 #include <rte_pci.h>
16 #include <rte_ether.h>
17 #include <ethdev_driver.h>
18 #include <rte_rwlock.h>
19 #include <rte_interrupts.h>
20 #include <rte_errno.h>
21 #include <rte_flow.h>
22 #include <rte_mtr.h>
23 
24 #include <mlx5_glue.h>
25 #include <mlx5_devx_cmds.h>
26 #include <mlx5_prm.h>
27 #include <mlx5_common_mp.h>
28 #include <mlx5_common_mr.h>
29 #include <mlx5_common_devx.h>
30 #include <mlx5_common_defs.h>
31 
32 #include "mlx5_defs.h"
33 #include "mlx5_utils.h"
34 #include "mlx5_os.h"
35 #include "mlx5_autoconf.h"
36 #include "rte_pmd_mlx5.h"
37 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
38 #ifndef RTE_EXEC_ENV_WINDOWS
39 #define HAVE_MLX5_HWS_SUPPORT 1
40 #else
41 #define __be64 uint64_t
42 #endif
43 #include "hws/mlx5dr.h"
44 #endif
45 
46 #define MLX5_SH(dev) (((struct mlx5_priv *)(dev)->data->dev_private)->sh)
47 
48 #define MLX5_HW_INV_QUEUE UINT32_MAX
49 
50 /*
51  * The default ipool threshold value indicates which per_core_cache
52  * value to set.
53  */
54 #define MLX5_HW_IPOOL_SIZE_THRESHOLD (1 << 19)
55 /* The default min local cache size. */
56 #define MLX5_HW_IPOOL_CACHE_MIN (1 << 9)
57 
58 /*
59  * Number of modification commands.
60  * The maximal actions amount in FW is some constant, and it is 16 in the
61  * latest releases. In some old releases, it will be limited to 8.
62  * Since there is no interface to query the capacity, the maximal value should
63  * be used to allow PMD to create the flow. The validation will be done in the
64  * lower driver layer or FW. A failure will be returned if exceeds the maximal
65  * supported actions number on the root table.
66  * On non-root tables, there is no limitation, but 32 is enough right now.
67  */
68 #define MLX5_MAX_MODIFY_NUM			32
69 #define MLX5_ROOT_TBL_MODIFY_NUM		16
70 
71 /* Maximal number of flex items created on the port.*/
72 #define MLX5_PORT_FLEX_ITEM_NUM			4
73 
74 /* Maximal number of field/field parts to map into sample registers .*/
75 #define MLX5_FLEX_ITEM_MAPPING_NUM		32
76 
77 enum mlx5_ipool_index {
78 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
79 	MLX5_IPOOL_DECAP_ENCAP = 0, /* Pool for encap/decap resource. */
80 	MLX5_IPOOL_PUSH_VLAN, /* Pool for push vlan resource. */
81 	MLX5_IPOOL_TAG, /* Pool for tag resource. */
82 	MLX5_IPOOL_PORT_ID, /* Pool for port id resource. */
83 	MLX5_IPOOL_JUMP, /* Pool for SWS jump resource. */
84 	/* Pool for HWS group. Jump action will be created internally. */
85 	MLX5_IPOOL_HW_GRP = MLX5_IPOOL_JUMP,
86 	MLX5_IPOOL_SAMPLE, /* Pool for sample resource. */
87 	MLX5_IPOOL_DEST_ARRAY, /* Pool for destination array resource. */
88 	MLX5_IPOOL_TUNNEL_ID, /* Pool for tunnel offload context */
89 	MLX5_IPOOL_TNL_TBL_ID, /* Pool for tunnel table ID. */
90 #endif
91 	MLX5_IPOOL_MTR, /* Pool for meter resource. */
92 	MLX5_IPOOL_MCP, /* Pool for metadata resource. */
93 	MLX5_IPOOL_HRXQ, /* Pool for hrxq resource. */
94 	MLX5_IPOOL_MLX5_FLOW, /* Pool for mlx5 flow handle. */
95 	MLX5_IPOOL_RTE_FLOW, /* Pool for rte_flow. */
96 	MLX5_IPOOL_RSS_EXPANTION_FLOW_ID, /* Pool for Queue/RSS flow ID. */
97 	MLX5_IPOOL_RSS_SHARED_ACTIONS, /* Pool for RSS shared actions. */
98 	MLX5_IPOOL_MTR_POLICY, /* Pool for meter policy resource. */
99 	MLX5_IPOOL_MAX,
100 };
101 
102 /*
103  * There are three reclaim memory mode supported.
104  * 0(none) means no memory reclaim.
105  * 1(light) means only PMD level reclaim.
106  * 2(aggressive) means both PMD and rdma-core level reclaim.
107  */
108 enum mlx5_reclaim_mem_mode {
109 	MLX5_RCM_NONE, /* Don't reclaim memory. */
110 	MLX5_RCM_LIGHT, /* Reclaim PMD level. */
111 	MLX5_RCM_AGGR, /* Reclaim PMD and rdma-core level. */
112 };
113 
114 /* The type of flow. */
115 enum mlx5_flow_type {
116 	MLX5_FLOW_TYPE_CTL, /* Control flow. */
117 	MLX5_FLOW_TYPE_GEN, /* General flow. */
118 	MLX5_FLOW_TYPE_MCP, /* MCP flow. */
119 	MLX5_FLOW_TYPE_MAXI,
120 };
121 
122 /* The mode of delay drop for Rx queues. */
123 enum mlx5_delay_drop_mode {
124 	MLX5_DELAY_DROP_NONE = 0, /* All disabled. */
125 	MLX5_DELAY_DROP_STANDARD = RTE_BIT32(0), /* Standard queues enable. */
126 	MLX5_DELAY_DROP_HAIRPIN = RTE_BIT32(1), /* Hairpin queues enable. */
127 };
128 
129 /* The HWS action type root/non-root. */
130 enum mlx5_hw_action_flag_type {
131 	MLX5_HW_ACTION_FLAG_ROOT, /* Root action. */
132 	MLX5_HW_ACTION_FLAG_NONE_ROOT, /* Non-root ation. */
133 	MLX5_HW_ACTION_FLAG_MAX, /* Maximum action flag. */
134 };
135 
136 /* Hlist and list callback context. */
137 struct mlx5_flow_cb_ctx {
138 	struct rte_eth_dev *dev;
139 	struct rte_flow_error *error;
140 	void *data;
141 	void *data2;
142 };
143 
144 /* Device capabilities structure which isn't changed in any stage. */
145 struct mlx5_dev_cap {
146 	int max_cq; /* Maximum number of supported CQs */
147 	int max_qp; /* Maximum number of supported QPs. */
148 	int max_qp_wr; /* Maximum number of outstanding WR on any WQ. */
149 	int max_sge;
150 	/* Maximum number of s/g per WR for SQ & RQ of QP for non RDMA Read
151 	 * operations.
152 	 */
153 	int mps; /* Multi-packet send supported mode. */
154 	uint32_t vf:1; /* This is a VF. */
155 	uint32_t sf:1; /* This is a SF. */
156 	uint32_t txpp_en:1; /* Tx packet pacing is supported. */
157 	uint32_t mpls_en:1; /* MPLS over GRE/UDP is supported. */
158 	uint32_t cqe_comp:1; /* CQE compression is supported. */
159 	uint32_t hw_csum:1; /* Checksum offload is supported. */
160 	uint32_t hw_padding:1; /* End alignment padding is supported. */
161 	uint32_t dest_tir:1; /* Whether advanced DR API is available. */
162 	uint32_t dv_esw_en:1; /* E-Switch DV flow is supported. */
163 	uint32_t dv_flow_en:1; /* DV flow is supported. */
164 	uint32_t swp:3; /* Tx generic tunnel checksum and TSO offload. */
165 	uint32_t hw_vlan_strip:1; /* VLAN stripping is supported. */
166 	uint32_t scatter_fcs_w_decap_disable:1;
167 	/* HW has bug working with tunnel packet decap and scatter FCS. */
168 	uint32_t hw_fcs_strip:1; /* FCS stripping is supported. */
169 	uint32_t rt_timestamp:1; /* Realtime timestamp format. */
170 	uint32_t rq_delay_drop_en:1; /* Enable RxQ delay drop. */
171 	uint32_t tunnel_en:3;
172 	/* Whether tunnel stateless offloads are supported. */
173 	uint32_t ind_table_max_size;
174 	/* Maximum receive WQ indirection table size. */
175 	uint32_t tso:1; /* Whether TSO is supported. */
176 	uint32_t tso_max_payload_sz; /* Maximum TCP payload for TSO. */
177 	struct {
178 		uint32_t enabled:1; /* Whether MPRQ is enabled. */
179 		uint32_t log_min_stride_size; /* Log min size of a stride. */
180 		uint32_t log_max_stride_size; /* Log max size of a stride. */
181 		uint32_t log_min_stride_num; /* Log min num of strides. */
182 		uint32_t log_max_stride_num; /* Log max num of strides. */
183 		uint32_t log_min_stride_wqe_size;
184 		/* Log min WQE size, (size of single stride)*(num of strides).*/
185 	} mprq; /* Capability for Multi-Packet RQ. */
186 	char fw_ver[64]; /* Firmware version of this device. */
187 };
188 
189 #define MLX5_MPESW_PORT_INVALID (-1)
190 
191 /** Data associated with devices to spawn. */
192 struct mlx5_dev_spawn_data {
193 	uint32_t ifindex; /**< Network interface index. */
194 	uint32_t max_port; /**< Device maximal port index. */
195 	uint32_t phys_port; /**< Device physical port index. */
196 	int pf_bond; /**< bonding device PF index. < 0 - no bonding */
197 	int mpesw_port; /**< MPESW uplink index. Valid if mpesw_owner_port >= 0. */
198 	struct mlx5_switch_info info; /**< Switch information. */
199 	const char *phys_dev_name; /**< Name of physical device. */
200 	struct rte_eth_dev *eth_dev; /**< Associated Ethernet device. */
201 	struct rte_pci_device *pci_dev; /**< Backend PCI device. */
202 	struct mlx5_common_device *cdev; /**< Backend common device. */
203 	struct mlx5_bond_info *bond_info;
204 };
205 
206 /**
207  * Check if the port requested to be probed is MPESW physical device
208  * or a representor port.
209  *
210  * @param spawn
211  *   Parameters of the probed port.
212  *
213  * @return
214  *   True if the probed port is a physical device or representor in MPESW setup.
215  *   False otherwise or MPESW was not configured.
216  */
217 static inline bool
218 mlx5_is_probed_port_on_mpesw_device(struct mlx5_dev_spawn_data *spawn)
219 {
220 	return spawn->mpesw_port >= 0;
221 }
222 
223 /** Data associated with socket messages. */
224 struct mlx5_flow_dump_req  {
225 	uint32_t port_id; /**< There are plans in DPDK to extend port_id. */
226 	uint64_t flow_id;
227 } __rte_packed;
228 
229 struct mlx5_flow_dump_ack {
230 	int rc; /**< Return code. */
231 };
232 
233 LIST_HEAD(mlx5_dev_list, mlx5_dev_ctx_shared);
234 
235 /* Shared data between primary and secondary processes. */
236 struct mlx5_shared_data {
237 	rte_spinlock_t lock;
238 	/* Global spinlock for primary and secondary processes. */
239 	int init_done; /* Whether primary has done initialization. */
240 	unsigned int secondary_cnt; /* Number of secondary processes init'd. */
241 };
242 
243 /* Per-process data structure, not visible to other processes. */
244 struct mlx5_local_data {
245 	int init_done; /* Whether a secondary has done initialization. */
246 };
247 
248 extern struct mlx5_shared_data *mlx5_shared_data;
249 
250 /* Dev ops structs */
251 extern const struct eth_dev_ops mlx5_dev_ops;
252 extern const struct eth_dev_ops mlx5_dev_sec_ops;
253 extern const struct eth_dev_ops mlx5_dev_ops_isolate;
254 
255 struct mlx5_counter_ctrl {
256 	/* Name of the counter. */
257 	char dpdk_name[RTE_ETH_XSTATS_NAME_SIZE];
258 	/* Name of the counter on the device table. */
259 	char ctr_name[RTE_ETH_XSTATS_NAME_SIZE];
260 	uint32_t dev:1; /**< Nonzero for dev counters. */
261 };
262 
263 struct mlx5_xstats_ctrl {
264 	/* Number of device stats. */
265 	uint16_t stats_n;
266 	/* Number of device stats identified by PMD. */
267 	uint16_t  mlx5_stats_n;
268 	/* Index in the device counters table. */
269 	uint16_t dev_table_idx[MLX5_MAX_XSTATS];
270 	uint64_t base[MLX5_MAX_XSTATS];
271 	uint64_t xstats[MLX5_MAX_XSTATS];
272 	uint64_t hw_stats[MLX5_MAX_XSTATS];
273 	struct mlx5_counter_ctrl info[MLX5_MAX_XSTATS];
274 };
275 
276 struct mlx5_stats_ctrl {
277 	/* Base for imissed counter. */
278 	uint64_t imissed_base;
279 	uint64_t imissed;
280 };
281 
282 /* Maximal size of coalesced segment for LRO is set in chunks of 256 Bytes. */
283 #define MLX5_LRO_SEG_CHUNK_SIZE	256u
284 
285 /* Maximal size of aggregated LRO packet. */
286 #define MLX5_MAX_LRO_SIZE (UINT8_MAX * MLX5_LRO_SEG_CHUNK_SIZE)
287 
288 /* Maximal number of segments to split. */
289 #define MLX5_MAX_RXQ_NSEG (1u << MLX5_MAX_LOG_RQ_SEGS)
290 
291 /*
292  * Port configuration structure.
293  * User device parameters disabled features.
294  * This structure contains all configurations coming from devargs which
295  * oriented to port. When probing again, devargs doesn't have to be compatible
296  * with primary devargs. It is updated for each port in spawn function.
297  */
298 struct mlx5_port_config {
299 	unsigned int hw_vlan_insert:1; /* VLAN insertion in WQE is supported. */
300 	unsigned int hw_padding:1; /* End alignment padding is supported. */
301 	unsigned int cqe_comp:1; /* CQE compression is enabled. */
302 	unsigned int enh_cqe_comp:1; /* Enhanced CQE compression is enabled. */
303 	unsigned int cqe_comp_fmt:3; /* CQE compression format. */
304 	unsigned int rx_vec_en:1; /* Rx vector is enabled. */
305 	unsigned int std_delay_drop:1; /* Enable standard Rxq delay drop. */
306 	unsigned int hp_delay_drop:1; /* Enable hairpin Rxq delay drop. */
307 	struct {
308 		unsigned int enabled:1; /* Whether MPRQ is enabled. */
309 		unsigned int log_stride_num; /* Log number of strides. */
310 		unsigned int log_stride_size; /* Log size of a stride. */
311 		unsigned int max_memcpy_len;
312 		/* Maximum packet size to memcpy Rx packets. */
313 		unsigned int min_rxqs_num;
314 		/* Rx queue count threshold to enable MPRQ. */
315 	} mprq; /* Configurations for Multi-Packet RQ. */
316 	int mps; /* Multi-packet send supported mode. */
317 	unsigned int max_dump_files_num; /* Maximum dump files per queue. */
318 	unsigned int log_hp_size; /* Single hairpin queue data size in total. */
319 	unsigned int lro_timeout; /* LRO user configuration. */
320 	int txqs_inline; /* Queue number threshold for inlining. */
321 	int txq_inline_min; /* Minimal amount of data bytes to inline. */
322 	int txq_inline_max; /* Max packet size for inlining with SEND. */
323 	int txq_inline_mpw; /* Max packet size for inlining with eMPW. */
324 };
325 
326 /*
327  * Share context device configuration structure.
328  * User device parameters disabled features.
329  * This structure updated once for device in mlx5_alloc_shared_dev_ctx()
330  * function and cannot change even when probing again.
331  */
332 struct mlx5_sh_config {
333 	int tx_pp; /* Timestamp scheduling granularity in nanoseconds. */
334 	int tx_skew; /* Tx scheduling skew between WQE and data on wire. */
335 	uint32_t reclaim_mode:2; /* Memory reclaim mode. */
336 	uint32_t dv_esw_en:1; /* Enable E-Switch DV flow. */
337 	/* Enable DV flow. 1 means SW steering, 2 means HW steering. */
338 	uint32_t dv_flow_en:2; /* Enable DV flow. */
339 	uint32_t dv_xmeta_en:3; /* Enable extensive flow metadata. */
340 	uint32_t dv_miss_info:1; /* Restore packet after partial hw miss. */
341 	uint32_t l3_vxlan_en:1; /* Enable L3 VXLAN flow creation. */
342 	uint32_t vf_nl_en:1; /* Enable Netlink requests in VF mode. */
343 	uint32_t lacp_by_user:1; /* Enable user to manage LACP traffic. */
344 	uint32_t decap_en:1; /* Whether decap will be used or not. */
345 	uint32_t hw_fcs_strip:1; /* FCS stripping is supported. */
346 	uint32_t allow_duplicate_pattern:1;
347 	uint32_t lro_allowed:1; /* Whether LRO is allowed. */
348 	struct {
349 		uint16_t service_core;
350 		uint32_t cycle_time; /* query cycle time in milli-second. */
351 	} cnt_svc; /* configure for HW steering's counter's service. */
352 	/* Allow/Prevent the duplicate rules pattern. */
353 	uint32_t fdb_def_rule:1; /* Create FDB default jump rule */
354 	uint32_t repr_matching:1; /* Enable implicit vport matching in HWS FDB. */
355 };
356 
357 /* Structure for VF VLAN workaround. */
358 struct mlx5_vf_vlan {
359 	uint32_t tag:12;
360 	uint32_t created:1;
361 };
362 
363 /* Flow drop context necessary due to Verbs API. */
364 struct mlx5_drop {
365 	struct mlx5_hrxq *hrxq; /* Hash Rx queue queue. */
366 	struct mlx5_rxq_priv *rxq; /* Rx queue. */
367 };
368 
369 /* Loopback dummy queue resources required due to Verbs API. */
370 struct mlx5_lb_ctx {
371 	struct ibv_qp *qp; /* QP object. */
372 	void *ibv_cq; /* Completion queue. */
373 	uint16_t refcnt; /* Reference count for representors. */
374 };
375 
376 /* HW steering queue job descriptor type. */
377 enum mlx5_hw_job_type {
378 	MLX5_HW_Q_JOB_TYPE_CREATE, /* Flow create job type. */
379 	MLX5_HW_Q_JOB_TYPE_DESTROY, /* Flow destroy job type. */
380 	MLX5_HW_Q_JOB_TYPE_UPDATE, /* Flow update job type. */
381 	MLX5_HW_Q_JOB_TYPE_QUERY, /* Flow query job type. */
382 	MLX5_HW_Q_JOB_TYPE_UPDATE_QUERY, /* Flow update and query job type. */
383 };
384 
385 enum mlx5_hw_indirect_type {
386 	MLX5_HW_INDIRECT_TYPE_LEGACY,
387 	MLX5_HW_INDIRECT_TYPE_LIST
388 };
389 
390 #define MLX5_HW_MAX_ITEMS (16)
391 
392 /* HW steering flow management job descriptor. */
393 struct mlx5_hw_q_job {
394 	uint32_t type; /* Job type. */
395 	uint32_t indirect_type;
396 	union {
397 		struct rte_flow_hw *flow; /* Flow attached to the job. */
398 		const void *action; /* Indirect action attached to the job. */
399 	};
400 	void *user_data; /* Job user data. */
401 	uint8_t *encap_data; /* Encap data. */
402 	uint8_t *push_data; /* IPv6 routing push data. */
403 	struct mlx5_modification_cmd *mhdr_cmd;
404 	struct rte_flow_item *items;
405 	union {
406 		struct {
407 			/* User memory for query output */
408 			void *user;
409 			/* Data extracted from hardware */
410 			void *hw;
411 		} __rte_packed query;
412 		struct rte_flow_item_ethdev port_spec;
413 		struct rte_flow_item_tag tag_spec;
414 	} __rte_packed;
415 	struct rte_flow_hw *upd_flow; /* Flow with updated values. */
416 };
417 
418 /* HW steering job descriptor LIFO pool. */
419 struct mlx5_hw_q {
420 	uint32_t job_idx; /* Free job index. */
421 	uint32_t size; /* LIFO size. */
422 	struct mlx5_hw_q_job **job; /* LIFO header. */
423 	struct rte_ring *indir_cq; /* Indirect action SW completion queue. */
424 	struct rte_ring *indir_iq; /* Indirect action SW in progress queue. */
425 } __rte_cache_aligned;
426 
427 
428 #define MLX5_COUNTER_POOLS_MAX_NUM (1 << 15)
429 #define MLX5_COUNTERS_PER_POOL 512
430 #define MLX5_MAX_PENDING_QUERIES 4
431 #define MLX5_CNT_MR_ALLOC_BULK 64
432 #define MLX5_CNT_SHARED_OFFSET 0x80000000
433 #define IS_BATCH_CNT(cnt) (((cnt) & (MLX5_CNT_SHARED_OFFSET - 1)) >= \
434 			   MLX5_CNT_BATCH_OFFSET)
435 #define MLX5_CNT_SIZE (sizeof(struct mlx5_flow_counter))
436 #define MLX5_AGE_SIZE (sizeof(struct mlx5_age_param))
437 
438 #define MLX5_CNT_LEN(pool) \
439 	(MLX5_CNT_SIZE + \
440 	((pool)->is_aged ? MLX5_AGE_SIZE : 0))
441 #define MLX5_POOL_GET_CNT(pool, index) \
442 	((struct mlx5_flow_counter *) \
443 	((uint8_t *)((pool) + 1) + (index) * (MLX5_CNT_LEN(pool))))
444 #define MLX5_CNT_ARRAY_IDX(pool, cnt) \
445 	((int)(((uint8_t *)(cnt) - (uint8_t *)((pool) + 1)) / \
446 	MLX5_CNT_LEN(pool)))
447 #define MLX5_TS_MASK_SECS 8ull
448 /* timestamp wrapping in seconds, must be  power of 2. */
449 
450 /*
451  * The pool index and offset of counter in the pool array makes up the
452  * counter index. In case the counter is from pool 0 and offset 0, it
453  * should plus 1 to avoid index 0, since 0 means invalid counter index
454  * currently.
455  */
456 #define MLX5_MAKE_CNT_IDX(pi, offset) \
457 	((pi) * MLX5_COUNTERS_PER_POOL + (offset) + 1)
458 #define MLX5_CNT_TO_AGE(cnt) \
459 	((struct mlx5_age_param *)((cnt) + 1))
460 /*
461  * The maximum single counter is 0x800000 as MLX5_CNT_BATCH_OFFSET
462  * defines. The pool size is 512, pool index should never reach
463  * INT16_MAX.
464  */
465 #define POOL_IDX_INVALID UINT16_MAX
466 
467 /* Age status. */
468 enum {
469 	AGE_FREE, /* Initialized state. */
470 	AGE_CANDIDATE, /* Counter assigned to flows. */
471 	AGE_TMOUT, /* Timeout, wait for rte_flow_get_aged_flows and destroy. */
472 };
473 
474 enum mlx5_counter_type {
475 	MLX5_COUNTER_TYPE_ORIGIN,
476 	MLX5_COUNTER_TYPE_AGE,
477 	MLX5_COUNTER_TYPE_MAX,
478 };
479 
480 /* Counter age parameter. */
481 struct mlx5_age_param {
482 	uint16_t state; /**< Age state (atomically accessed). */
483 	uint16_t port_id; /**< Port id of the counter. */
484 	uint32_t timeout:24; /**< Aging timeout in seconds. */
485 	uint32_t sec_since_last_hit;
486 	/**< Time in seconds since last hit (atomically accessed). */
487 	void *context; /**< Flow counter age context. */
488 };
489 
490 struct flow_counter_stats {
491 	uint64_t hits;
492 	uint64_t bytes;
493 };
494 
495 /* Shared counters information for counters. */
496 struct mlx5_flow_counter_shared {
497 	union {
498 		uint32_t refcnt; /* Only for shared action management. */
499 		uint32_t id; /* User counter ID for legacy sharing. */
500 	};
501 };
502 
503 struct mlx5_flow_counter_pool;
504 /* Generic counters information. */
505 struct mlx5_flow_counter {
506 	union {
507 		/*
508 		 * User-defined counter shared info is only used during
509 		 * counter active time. And aging counter sharing is not
510 		 * supported, so active shared counter will not be chained
511 		 * to the aging list. For shared counter, only when it is
512 		 * released, the TAILQ entry memory will be used, at that
513 		 * time, shared memory is not used anymore.
514 		 *
515 		 * Similarly to none-batch counter dcs, since it doesn't
516 		 * support aging, while counter is allocated, the entry
517 		 * memory is not used anymore. In this case, as bytes
518 		 * memory is used only when counter is allocated, and
519 		 * entry memory is used only when counter is free. The
520 		 * dcs pointer can be saved to these two different place
521 		 * at different stage. It will eliminate the individual
522 		 * counter extend struct.
523 		 */
524 		TAILQ_ENTRY(mlx5_flow_counter) next;
525 		/**< Pointer to the next flow counter structure. */
526 		struct {
527 			struct mlx5_flow_counter_shared shared_info;
528 			/**< Shared counter information. */
529 			void *dcs_when_active;
530 			/*
531 			 * For non-batch mode, the dcs will be saved
532 			 * here when the counter is free.
533 			 */
534 		};
535 	};
536 	union {
537 		uint64_t hits; /**< Reset value of hits packets. */
538 		struct mlx5_flow_counter_pool *pool; /**< Counter pool. */
539 	};
540 	union {
541 		uint64_t bytes; /**< Reset value of bytes. */
542 		void *dcs_when_free;
543 		/*
544 		 * For non-batch mode, the dcs will be saved here
545 		 * when the counter is free.
546 		 */
547 	};
548 	void *action; /**< Pointer to the dv action. */
549 };
550 
551 TAILQ_HEAD(mlx5_counters, mlx5_flow_counter);
552 
553 /* Generic counter pool structure - query is in pool resolution. */
554 struct mlx5_flow_counter_pool {
555 	TAILQ_ENTRY(mlx5_flow_counter_pool) next;
556 	struct mlx5_counters counters[2]; /* Free counter list. */
557 	struct mlx5_devx_obj *min_dcs;
558 	/* The devx object of the minimum counter ID. */
559 	uint64_t time_of_last_age_check;
560 	/* System time (from rte_rdtsc()) read in the last aging check. */
561 	uint32_t index:30; /* Pool index in container. */
562 	uint32_t is_aged:1; /* Pool with aging counter. */
563 	volatile uint32_t query_gen:1; /* Query round. */
564 	rte_spinlock_t sl; /* The pool lock. */
565 	rte_spinlock_t csl; /* The pool counter free list lock. */
566 	struct mlx5_counter_stats_raw *raw;
567 	struct mlx5_counter_stats_raw *raw_hw;
568 	/* The raw on HW working. */
569 };
570 
571 /* Memory management structure for group of counter statistics raws. */
572 struct mlx5_counter_stats_mem_mng {
573 	LIST_ENTRY(mlx5_counter_stats_mem_mng) next;
574 	struct mlx5_counter_stats_raw *raws;
575 	struct mlx5_pmd_wrapped_mr wm;
576 };
577 
578 /* Raw memory structure for the counter statistics values of a pool. */
579 struct mlx5_counter_stats_raw {
580 	LIST_ENTRY(mlx5_counter_stats_raw) next;
581 	struct mlx5_counter_stats_mem_mng *mem_mng;
582 	volatile struct flow_counter_stats *data;
583 };
584 
585 TAILQ_HEAD(mlx5_counter_pools, mlx5_flow_counter_pool);
586 
587 /* Counter global management structure. */
588 struct mlx5_flow_counter_mng {
589 	volatile uint16_t n_valid; /* Number of valid pools. */
590 	uint16_t last_pool_idx; /* Last used pool index */
591 	int min_id; /* The minimum counter ID in the pools. */
592 	int max_id; /* The maximum counter ID in the pools. */
593 	rte_spinlock_t pool_update_sl; /* The pool update lock. */
594 	rte_spinlock_t csl[MLX5_COUNTER_TYPE_MAX];
595 	/* The counter free list lock. */
596 	struct mlx5_counters counters[MLX5_COUNTER_TYPE_MAX];
597 	/* Free counter list. */
598 	struct mlx5_flow_counter_pool **pools; /* Counter pool array. */
599 	struct mlx5_counter_stats_mem_mng *mem_mng;
600 	/* Hold the memory management for the next allocated pools raws. */
601 	struct mlx5_counters flow_counters; /* Legacy flow counter list. */
602 	uint8_t pending_queries;
603 	uint16_t pool_index;
604 	uint8_t query_thread_on;
605 	bool counter_fallback; /* Use counter fallback management. */
606 	LIST_HEAD(mem_mngs, mlx5_counter_stats_mem_mng) mem_mngs;
607 	LIST_HEAD(stat_raws, mlx5_counter_stats_raw) free_stat_raws;
608 };
609 
610 /* ASO structures. */
611 #define MLX5_ASO_QUEUE_LOG_DESC 10
612 
613 struct mlx5_aso_cq {
614 	uint16_t log_desc_n;
615 	uint32_t cq_ci:24;
616 	struct mlx5_devx_cq cq_obj;
617 	uint64_t errors;
618 };
619 
620 struct mlx5_aso_sq_elem {
621 	union {
622 		struct {
623 			struct mlx5_aso_age_pool *pool;
624 			uint16_t burst_size;
625 		};
626 		struct mlx5_aso_mtr *mtr;
627 		struct {
628 			struct mlx5_aso_ct_action *ct;
629 			char *query_data;
630 		};
631 		void *user_data;
632 		struct mlx5_quota *quota_obj;
633 	};
634 };
635 
636 struct mlx5_aso_sq {
637 	uint16_t log_desc_n;
638 	rte_spinlock_t sqsl;
639 	struct mlx5_aso_cq cq;
640 	struct mlx5_devx_sq sq_obj;
641 	struct mlx5_pmd_mr mr;
642 	volatile struct mlx5_aso_wqe *db;
643 	uint16_t pi;
644 	uint16_t db_pi;
645 	uint32_t head;
646 	uint32_t tail;
647 	uint32_t sqn;
648 	struct mlx5_aso_sq_elem elts[1 << MLX5_ASO_QUEUE_LOG_DESC];
649 	uint16_t next; /* Pool index of the next pool to query. */
650 };
651 
652 struct mlx5_aso_age_action {
653 	LIST_ENTRY(mlx5_aso_age_action) next;
654 	void *dr_action;
655 	uint32_t refcnt;
656 	/* Following fields relevant only when action is active. */
657 	uint16_t offset; /* Offset of ASO Flow Hit flag in DevX object. */
658 	struct mlx5_age_param age_params;
659 };
660 
661 #define MLX5_ASO_AGE_ACTIONS_PER_POOL 512
662 #define MLX5_ASO_AGE_CONTAINER_RESIZE 64
663 
664 struct mlx5_aso_age_pool {
665 	struct mlx5_devx_obj *flow_hit_aso_obj;
666 	uint16_t index; /* Pool index in pools array. */
667 	uint64_t time_of_last_age_check; /* In seconds. */
668 	struct mlx5_aso_age_action actions[MLX5_ASO_AGE_ACTIONS_PER_POOL];
669 };
670 
671 LIST_HEAD(aso_age_list, mlx5_aso_age_action);
672 
673 struct mlx5_aso_age_mng {
674 	struct mlx5_aso_age_pool **pools;
675 	uint16_t n; /* Total number of pools. */
676 	uint16_t next; /* Number of pools in use, index of next free pool. */
677 	rte_rwlock_t resize_rwl; /* Lock for resize objects. */
678 	rte_spinlock_t free_sl; /* Lock for free list access. */
679 	struct aso_age_list free; /* Free age actions list - ready to use. */
680 	struct mlx5_aso_sq aso_sq; /* ASO queue objects. */
681 };
682 
683 /* Management structure for geneve tlv option */
684 struct mlx5_geneve_tlv_option_resource {
685 	struct mlx5_devx_obj *obj; /* Pointer to the geneve tlv opt object. */
686 	rte_be16_t option_class; /* geneve tlv opt class.*/
687 	uint8_t option_type; /* geneve tlv opt type.*/
688 	uint8_t length; /* geneve tlv opt length. */
689 	uint32_t refcnt; /* geneve tlv object reference counter */
690 };
691 
692 
693 #define MLX5_AGE_EVENT_NEW		1
694 #define MLX5_AGE_TRIGGER		2
695 #define MLX5_AGE_SET(age_info, BIT) \
696 	((age_info)->flags |= (1 << (BIT)))
697 #define MLX5_AGE_UNSET(age_info, BIT) \
698 	((age_info)->flags &= ~(1 << (BIT)))
699 #define MLX5_AGE_GET(age_info, BIT) \
700 	((age_info)->flags & (1 << (BIT)))
701 #define GET_PORT_AGE_INFO(priv) \
702 	(&((priv)->sh->port[(priv)->dev_port - 1].age_info))
703 /* Current time in seconds. */
704 #define MLX5_CURR_TIME_SEC	(rte_rdtsc() / rte_get_tsc_hz())
705 
706 /*
707  * HW steering queue oriented AGE info.
708  * It contains an array of rings, one for each HWS queue.
709  */
710 struct mlx5_hws_q_age_info {
711 	uint16_t nb_rings; /* Number of aged-out ring lists. */
712 	struct rte_ring *aged_lists[]; /* Aged-out lists. */
713 };
714 
715 /*
716  * HW steering AGE info.
717  * It has a ring list containing all aged out flow rules.
718  */
719 struct mlx5_hws_age_info {
720 	struct rte_ring *aged_list; /* Aged out lists. */
721 };
722 
723 /* Aging information for per port. */
724 struct mlx5_age_info {
725 	uint8_t flags; /* Indicate if is new event or need to be triggered. */
726 	union {
727 		/* SW/FW steering AGE info. */
728 		struct {
729 			struct mlx5_counters aged_counters;
730 			/* Aged counter list. */
731 			struct aso_age_list aged_aso;
732 			/* Aged ASO actions list. */
733 			rte_spinlock_t aged_sl; /* Aged flow list lock. */
734 		};
735 		struct {
736 			struct mlx5_indexed_pool *ages_ipool;
737 			union {
738 				struct mlx5_hws_age_info hw_age;
739 				/* HW steering AGE info. */
740 				struct mlx5_hws_q_age_info *hw_q_age;
741 				/* HW steering queue oriented AGE info. */
742 			};
743 		};
744 	};
745 };
746 
747 /* Per port data of shared IB device. */
748 struct mlx5_dev_shared_port {
749 	uint32_t ih_port_id;
750 	uint32_t devx_ih_port_id;
751 	uint32_t nl_ih_port_id;
752 	/*
753 	 * Interrupt handler port_id. Used by shared interrupt
754 	 * handler to find the corresponding rte_eth device
755 	 * by IB port index. If value is equal or greater
756 	 * RTE_MAX_ETHPORTS it means there is no subhandler
757 	 * installed for specified IB port index.
758 	 */
759 	struct mlx5_age_info age_info;
760 	/* Aging information for per port. */
761 };
762 
763 /*
764  * Max number of actions per DV flow.
765  * See CREATE_FLOW_MAX_FLOW_ACTIONS_SUPPORTED
766  * in rdma-core file providers/mlx5/verbs.c.
767  */
768 #define MLX5_DV_MAX_NUMBER_OF_ACTIONS 8
769 
770 /* ASO flow meter structures */
771 /* Modify this value if enum rte_mtr_color changes. */
772 #define RTE_MTR_DROPPED RTE_COLORS
773 /* Yellow is now supported. */
774 #define MLX5_MTR_RTE_COLORS (RTE_COLOR_YELLOW + 1)
775 /* table_id 22 bits in mlx5_flow_tbl_key so limit policy number. */
776 #define MLX5_MAX_SUB_POLICY_TBL_NUM 0x3FFFFF
777 #define MLX5_INVALID_POLICY_ID UINT32_MAX
778 /* Suffix table_id on MLX5_FLOW_TABLE_LEVEL_METER. */
779 #define MLX5_MTR_TABLE_ID_SUFFIX 1
780 /* Drop table_id on MLX5_FLOW_TABLE_LEVEL_METER. */
781 #define MLX5_MTR_TABLE_ID_DROP 2
782 /* Priority of the meter policy matcher. */
783 #define MLX5_MTR_POLICY_MATCHER_PRIO 0
784 /* Green & yellow color valid for now. */
785 #define MLX5_MTR_POLICY_MODE_ALL 0
786 /* Default policy. */
787 #define MLX5_MTR_POLICY_MODE_DEF 1
788 /* Only green color valid. */
789 #define MLX5_MTR_POLICY_MODE_OG 2
790 /* Only yellow color valid. */
791 #define MLX5_MTR_POLICY_MODE_OY 3
792 
793 enum mlx5_meter_domain {
794 	MLX5_MTR_DOMAIN_INGRESS,
795 	MLX5_MTR_DOMAIN_EGRESS,
796 	MLX5_MTR_DOMAIN_TRANSFER,
797 	MLX5_MTR_DOMAIN_MAX,
798 };
799 #define MLX5_MTR_DOMAIN_INGRESS_BIT  (1 << MLX5_MTR_DOMAIN_INGRESS)
800 #define MLX5_MTR_DOMAIN_EGRESS_BIT   (1 << MLX5_MTR_DOMAIN_EGRESS)
801 #define MLX5_MTR_DOMAIN_TRANSFER_BIT (1 << MLX5_MTR_DOMAIN_TRANSFER)
802 #define MLX5_MTR_ALL_DOMAIN_BIT      (MLX5_MTR_DOMAIN_INGRESS_BIT | \
803 					MLX5_MTR_DOMAIN_EGRESS_BIT | \
804 					MLX5_MTR_DOMAIN_TRANSFER_BIT)
805 
806 /* The color tag rule structure. */
807 struct mlx5_sub_policy_color_rule {
808 	void *rule;
809 	/* The color rule. */
810 	struct mlx5_flow_dv_matcher *matcher;
811 	/* The color matcher. */
812 	TAILQ_ENTRY(mlx5_sub_policy_color_rule) next_port;
813 	/**< Pointer to the next color rule structure. */
814 	int32_t src_port;
815 	/* On which src port this rule applied. */
816 };
817 
818 TAILQ_HEAD(mlx5_sub_policy_color_rules, mlx5_sub_policy_color_rule);
819 
820 /*
821  * Meter sub-policy structure.
822  * Each RSS TIR in meter policy need its own sub-policy resource.
823  */
824 struct mlx5_flow_meter_sub_policy {
825 	uint32_t main_policy_id:1;
826 	/* Main policy id is same as this sub_policy id. */
827 	uint32_t idx:31;
828 	/* Index to sub_policy ipool entity. */
829 	void *main_policy;
830 	/* Point to struct mlx5_flow_meter_policy. */
831 	struct mlx5_flow_tbl_resource *tbl_rsc;
832 	/* The sub-policy table resource. */
833 	uint32_t rix_hrxq[MLX5_MTR_RTE_COLORS];
834 	/* Index to TIR resource. */
835 	struct mlx5_flow_tbl_resource *jump_tbl[MLX5_MTR_RTE_COLORS];
836 	/* Meter jump/drop table. */
837 	struct mlx5_sub_policy_color_rules color_rules[RTE_COLORS];
838 	/* List for the color rules. */
839 };
840 
841 struct mlx5_meter_policy_acts {
842 	uint8_t actions_n;
843 	/* Number of actions. */
844 	void *dv_actions[MLX5_DV_MAX_NUMBER_OF_ACTIONS];
845 	/* Action list. */
846 };
847 
848 struct mlx5_meter_policy_action_container {
849 	uint32_t rix_mark;
850 	/* Index to the mark action. */
851 	struct mlx5_flow_dv_modify_hdr_resource *modify_hdr;
852 	/* Pointer to modify header resource in cache. */
853 	uint8_t fate_action;
854 	/* Fate action type. */
855 	union {
856 		struct rte_flow_action *rss;
857 		/* Rss action configuration. */
858 		uint32_t rix_port_id_action;
859 		/* Index to port ID action resource. */
860 		void *dr_jump_action[MLX5_MTR_DOMAIN_MAX];
861 		/* Jump/drop action per color. */
862 		uint16_t queue;
863 		/* Queue action configuration. */
864 		struct {
865 			uint32_t next_mtr_id;
866 			/* The next meter id. */
867 			void *next_sub_policy;
868 			/* Next meter's sub-policy. */
869 		};
870 	};
871 };
872 
873 /* Flow meter policy parameter structure. */
874 struct mlx5_flow_meter_policy {
875 	uint32_t is_rss:1;
876 	/* Is RSS policy table. */
877 	uint32_t ingress:1;
878 	/* Rule applies to ingress domain. */
879 	uint32_t egress:1;
880 	/* Rule applies to egress domain. */
881 	uint32_t transfer:1;
882 	/* Rule applies to transfer domain. */
883 	uint32_t is_queue:1;
884 	/* Is queue action in policy table. */
885 	uint32_t is_hierarchy:1;
886 	/* Is meter action in policy table. */
887 	uint32_t match_port:1;
888 	/* If policy flows match src port. */
889 	uint32_t hierarchy_match_port:1;
890 	/* Is any meter in hierarchy contains policy flow that matches src port. */
891 	uint32_t skip_r:1;
892 	/* If red color policy is skipped. */
893 	uint32_t skip_y:1;
894 	/* If yellow color policy is skipped. */
895 	uint32_t skip_g:1;
896 	/* If green color policy is skipped. */
897 	uint32_t mark:1;
898 	/* If policy contains mark action. */
899 	uint32_t initialized:1;
900 	/* Initialized. */
901 	uint16_t group;
902 	/* The group. */
903 	rte_spinlock_t sl;
904 	uint32_t ref_cnt;
905 	/* Use count. */
906 	struct rte_flow_pattern_template *hws_item_templ;
907 	/* Hardware steering item templates. */
908 	struct rte_flow_actions_template *hws_act_templ[MLX5_MTR_DOMAIN_MAX];
909 	/* Hardware steering action templates. */
910 	struct rte_flow_template_table *hws_flow_table[MLX5_MTR_DOMAIN_MAX];
911 	/* Hardware steering tables. */
912 	struct rte_flow *hws_flow_rule[MLX5_MTR_DOMAIN_MAX][RTE_COLORS];
913 	/* Hardware steering rules. */
914 	struct mlx5_meter_policy_action_container act_cnt[MLX5_MTR_RTE_COLORS];
915 	/* Policy actions container. */
916 	void *dr_drop_action[MLX5_MTR_DOMAIN_MAX];
917 	/* drop action for red color. */
918 	uint16_t sub_policy_num;
919 	/* Count sub policy tables, 3 bits per domain. */
920 	struct mlx5_flow_meter_sub_policy **sub_policys[MLX5_MTR_DOMAIN_MAX];
921 	/* Sub policy table array must be the end of struct. */
922 };
923 
924 /* The maximum sub policy is relate to struct mlx5_rss_hash_fields[]. */
925 #define MLX5_MTR_RSS_MAX_SUB_POLICY 7
926 #define MLX5_MTR_SUB_POLICY_NUM_SHIFT  3
927 #define MLX5_MTR_SUB_POLICY_NUM_MASK  0x7
928 #define MLX5_MTRS_DEFAULT_RULE_PRIORITY 0xFFFF
929 #define MLX5_MTR_CHAIN_MAX_NUM 8
930 
931 /* Flow meter default policy parameter structure.
932  * Policy index 0 is reserved by default policy table.
933  * Action per color as below:
934  * green - do nothing, yellow - do nothing, red - drop
935  */
936 struct mlx5_flow_meter_def_policy {
937 	struct mlx5_flow_meter_sub_policy sub_policy;
938 	/* Policy rules jump to other tables. */
939 	void *dr_jump_action[RTE_COLORS];
940 	/* Jump action per color. */
941 };
942 
943 /* Meter parameter structure. */
944 struct mlx5_flow_meter_info {
945 	uint32_t meter_id;
946 	/**< Meter id. */
947 	uint32_t policy_id;
948 	/* Policy id, the first sub_policy idx. */
949 	struct mlx5_flow_meter_profile *profile;
950 	/**< Meter profile parameters. */
951 	rte_spinlock_t sl; /**< Meter action spinlock. */
952 	/** Set of stats counters to be enabled.
953 	 * @see enum rte_mtr_stats_type
954 	 */
955 	uint32_t bytes_dropped:1;
956 	/** Set bytes dropped stats to be enabled. */
957 	uint32_t pkts_dropped:1;
958 	/** Set packets dropped stats to be enabled. */
959 	uint32_t active_state:1;
960 	/**< Meter hw active state. */
961 	uint32_t shared:1;
962 	/**< Meter shared or not. */
963 	uint32_t is_enable:1;
964 	/**< Meter disable/enable state. */
965 	uint32_t ingress:1;
966 	/**< Rule applies to egress traffic. */
967 	uint32_t egress:1;
968 	/**
969 	 * Instead of simply matching the properties of traffic as it would
970 	 * appear on a given DPDK port ID, enabling this attribute transfers
971 	 * a flow rule to the lowest possible level of any device endpoints
972 	 * found in the pattern.
973 	 *
974 	 * When supported, this effectively enables an application to
975 	 * re-route traffic not necessarily intended for it (e.g. coming
976 	 * from or addressed to different physical ports, VFs or
977 	 * applications) at the device level.
978 	 *
979 	 * It complements the behavior of some pattern items such as
980 	 * RTE_FLOW_ITEM_TYPE_REPRESENTED_PORT and is meaningless without them.
981 	 *
982 	 * When transferring flow rules, ingress and egress attributes keep
983 	 * their original meaning, as if processing traffic emitted or
984 	 * received by the application.
985 	 */
986 	uint32_t transfer:1;
987 	uint32_t def_policy:1;
988 	uint32_t initialized:1;
989 	/* Meter points to default policy. */
990 	uint32_t color_aware:1;
991 	/* Meter is color aware mode. */
992 	void *drop_rule[MLX5_MTR_DOMAIN_MAX];
993 	/* Meter drop rule in drop table. */
994 	uint32_t drop_cnt;
995 	/**< Color counter for drop. */
996 	uint32_t ref_cnt;
997 	/**< Use count. */
998 	struct mlx5_indexed_pool *flow_ipool;
999 	/**< Index pool for flow id. */
1000 	void *meter_action_g;
1001 	/**< Flow meter action. */
1002 	void *meter_action_y;
1003 	/**< Flow meter action for yellow init_color. */
1004 	uint32_t meter_offset;
1005 	/**< Flow meter offset. */
1006 	uint16_t group;
1007 	/**< Flow meter group. */
1008 };
1009 
1010 /* PPS(packets per second) map to BPS(Bytes per second).
1011  * HW treat packet as 128bytes in PPS mode
1012  */
1013 #define MLX5_MTRS_PPS_MAP_BPS_SHIFT 7
1014 
1015 /* RFC2697 parameter structure. */
1016 struct mlx5_flow_meter_srtcm_rfc2697_prm {
1017 	rte_be32_t cbs_cir;
1018 	/*
1019 	 * bit 24-28: cbs_exponent, bit 16-23 cbs_mantissa,
1020 	 * bit 8-12: cir_exponent, bit 0-7 cir_mantissa.
1021 	 */
1022 	rte_be32_t ebs_eir;
1023 	/*
1024 	 * bit 24-28: ebs_exponent, bit 16-23 ebs_mantissa,
1025 	 * bit 8-12: eir_exponent, bit 0-7 eir_mantissa.
1026 	 */
1027 };
1028 
1029 /* Flow meter profile structure. */
1030 struct mlx5_flow_meter_profile {
1031 	TAILQ_ENTRY(mlx5_flow_meter_profile) next;
1032 	/**< Pointer to the next flow meter structure. */
1033 	uint32_t id; /**< Profile id. */
1034 	struct rte_mtr_meter_profile profile; /**< Profile detail. */
1035 	union {
1036 		struct mlx5_flow_meter_srtcm_rfc2697_prm srtcm_prm;
1037 		/**< srtcm_rfc2697 struct. */
1038 	};
1039 	uint32_t ref_cnt; /**< Use count. */
1040 	uint32_t g_support:1; /**< If G color will be generated. */
1041 	uint32_t y_support:1; /**< If Y color will be generated. */
1042 	uint32_t initialized:1; /**< Initialized. */
1043 };
1044 
1045 /* 2 meters in each ASO cache line */
1046 #define MLX5_MTRS_CONTAINER_RESIZE 64
1047 /*
1048  * The pool index and offset of meter in the pool array makes up the
1049  * meter index. In case the meter is from pool 0 and offset 0, it
1050  * should plus 1 to avoid index 0, since 0 means invalid meter index
1051  * currently.
1052  */
1053 #define MLX5_MAKE_MTR_IDX(pi, offset) \
1054 		((pi) * MLX5_ASO_MTRS_PER_POOL + (offset) + 1)
1055 
1056 /*aso flow meter state*/
1057 enum mlx5_aso_mtr_state {
1058 	ASO_METER_FREE, /* In free list. */
1059 	ASO_METER_WAIT, /* ACCESS_ASO WQE in progress. */
1060 	ASO_METER_WAIT_ASYNC, /* CQE will be handled by async pull. */
1061 	ASO_METER_READY, /* CQE received. */
1062 };
1063 
1064 /*aso flow meter type*/
1065 enum mlx5_aso_mtr_type {
1066 	ASO_METER_INDIRECT,
1067 	ASO_METER_DIRECT,
1068 };
1069 
1070 /* Generic aso_flow_meter information. */
1071 struct mlx5_aso_mtr {
1072 	union {
1073 		LIST_ENTRY(mlx5_aso_mtr) next;
1074 		struct mlx5_aso_mtr_pool *pool;
1075 	};
1076 	enum mlx5_aso_mtr_type type;
1077 	struct mlx5_flow_meter_info fm;
1078 	/**< Pointer to the next aso flow meter structure. */
1079 	uint8_t state; /**< ASO flow meter state. */
1080 	uint32_t offset;
1081 	enum rte_color init_color;
1082 };
1083 
1084 /* Generic aso_flow_meter pool structure. */
1085 struct mlx5_aso_mtr_pool {
1086 	struct mlx5_aso_mtr mtrs[MLX5_ASO_MTRS_PER_POOL];
1087 	/*Must be the first in pool*/
1088 	struct mlx5_devx_obj *devx_obj;
1089 	/* The devx object of the minimum aso flow meter ID. */
1090 	struct mlx5dr_action *action; /* HWS action. */
1091 	struct mlx5_indexed_pool *idx_pool; /* HWS index pool. */
1092 	uint32_t index; /* Pool index in management structure. */
1093 	uint32_t nb_sq; /* Number of ASO SQ. */
1094 	struct mlx5_aso_sq *sq; /* ASO SQs. */
1095 };
1096 
1097 LIST_HEAD(aso_meter_list, mlx5_aso_mtr);
1098 /* Pools management structure for ASO flow meter pools. */
1099 struct mlx5_aso_mtr_pools_mng {
1100 	volatile uint16_t n_valid; /* Number of valid pools. */
1101 	uint16_t n; /* Number of pools. */
1102 	rte_spinlock_t mtrsl; /* The ASO flow meter free list lock. */
1103 	rte_rwlock_t resize_mtrwl; /* Lock for resize objects. */
1104 	struct aso_meter_list meters; /* Free ASO flow meter list. */
1105 	struct mlx5_aso_sq sq; /*SQ using by ASO flow meter. */
1106 	struct mlx5_aso_mtr_pool **pools; /* ASO flow meter pool array. */
1107 };
1108 
1109 /* Bulk management structure for ASO flow meter. */
1110 struct mlx5_mtr_bulk {
1111 	uint32_t size; /* Number of ASO objects. */
1112 	struct mlx5dr_action *action; /* HWS action */
1113 	struct mlx5_devx_obj *devx_obj; /* DEVX object. */
1114 	struct mlx5_aso_mtr *aso; /* Array of ASO objects. */
1115 };
1116 
1117 /* Meter management structure for global flow meter resource. */
1118 struct mlx5_flow_mtr_mng {
1119 	struct mlx5_aso_mtr_pools_mng pools_mng;
1120 	/* Pools management structure for ASO flow meter pools. */
1121 	struct mlx5_flow_meter_def_policy *def_policy[MLX5_MTR_DOMAIN_MAX];
1122 	/* Default policy table. */
1123 	uint32_t def_policy_id;
1124 	/* Default policy id. */
1125 	uint32_t def_policy_ref_cnt;
1126 	/** def_policy meter use count. */
1127 	struct mlx5_flow_tbl_resource *drop_tbl[MLX5_MTR_DOMAIN_MAX];
1128 	/* Meter drop table. */
1129 	struct mlx5_flow_dv_matcher *
1130 			drop_matcher[MLX5_MTR_DOMAIN_MAX][MLX5_REG_BITS];
1131 	/* Matcher meter in drop table. */
1132 	struct mlx5_flow_dv_matcher *def_matcher[MLX5_MTR_DOMAIN_MAX];
1133 	/* Default matcher in drop table. */
1134 	void *def_rule[MLX5_MTR_DOMAIN_MAX];
1135 	/* Default rule in drop table. */
1136 	uint8_t max_mtr_bits;
1137 	/* Indicate how many bits are used by meter id at the most. */
1138 	uint8_t max_mtr_flow_bits;
1139 	/* Indicate how many bits are used by meter flow id at the most. */
1140 };
1141 
1142 /* Table key of the hash organization. */
1143 union mlx5_flow_tbl_key {
1144 	struct {
1145 		/* Table ID should be at the lowest address. */
1146 		uint32_t level;	/**< Level of the table. */
1147 		uint32_t id:22;	/**< ID of the table. */
1148 		uint32_t dummy:1;	/**< Dummy table for DV API. */
1149 		uint32_t is_fdb:1;	/**< 1 - FDB, 0 - NIC TX/RX. */
1150 		uint32_t is_egress:1;	/**< 1 - egress, 0 - ingress. */
1151 		uint32_t reserved:7;	/**< must be zero for comparison. */
1152 	};
1153 	uint64_t v64;			/**< full 64bits value of key */
1154 };
1155 
1156 /* Table structure. */
1157 struct mlx5_flow_tbl_resource {
1158 	void *obj; /**< Pointer to DR table object. */
1159 };
1160 
1161 #define MLX5_MAX_TABLES UINT16_MAX
1162 #define MLX5_HAIRPIN_TX_TABLE (UINT16_MAX - 1)
1163 /* Reserve the last two tables for metadata register copy. */
1164 #define MLX5_FLOW_MREG_ACT_TABLE_GROUP (MLX5_MAX_TABLES - 1)
1165 #define MLX5_FLOW_MREG_CP_TABLE_GROUP (MLX5_MAX_TABLES - 2)
1166 /* Tables for metering splits should be added here. */
1167 #define MLX5_FLOW_TABLE_LEVEL_METER (MLX5_MAX_TABLES - 3)
1168 #define MLX5_FLOW_TABLE_LEVEL_POLICY (MLX5_MAX_TABLES - 4)
1169 #define MLX5_MAX_TABLES_EXTERNAL MLX5_FLOW_TABLE_LEVEL_POLICY
1170 #define MLX5_FLOW_TABLE_HWS_POLICY (MLX5_MAX_TABLES - 10)
1171 #define MLX5_MAX_TABLES_FDB UINT16_MAX
1172 #define MLX5_FLOW_TABLE_FACTOR 10
1173 
1174 /* ID generation structure. */
1175 struct mlx5_flow_id_pool {
1176 	uint32_t *free_arr; /**< Pointer to the a array of free values. */
1177 	uint32_t base_index;
1178 	/**< The next index that can be used without any free elements. */
1179 	uint32_t *curr; /**< Pointer to the index to pop. */
1180 	uint32_t *last; /**< Pointer to the last element in the empty array. */
1181 	uint32_t max_id; /**< Maximum id can be allocated from the pool. */
1182 };
1183 
1184 /* Tx pacing queue structure - for Clock and Rearm queues. */
1185 struct mlx5_txpp_wq {
1186 	/* Completion Queue related data.*/
1187 	struct mlx5_devx_cq cq_obj;
1188 	uint32_t cq_ci:24;
1189 	uint32_t arm_sn:2;
1190 	/* Send Queue related data.*/
1191 	struct mlx5_devx_sq sq_obj;
1192 	uint16_t sq_size; /* Number of WQEs in the queue. */
1193 	uint16_t sq_ci; /* Next WQE to execute. */
1194 };
1195 
1196 /* Tx packet pacing internal timestamp. */
1197 struct mlx5_txpp_ts {
1198 	uint64_t ci_ts;
1199 	uint64_t ts;
1200 };
1201 
1202 /* Tx packet pacing structure. */
1203 struct mlx5_dev_txpp {
1204 	pthread_mutex_t mutex; /* Pacing create/destroy mutex. */
1205 	uint32_t refcnt; /* Pacing reference counter. */
1206 	uint32_t freq; /* Timestamp frequency, Hz. */
1207 	uint32_t tick; /* Completion tick duration in nanoseconds. */
1208 	uint32_t test; /* Packet pacing test mode. */
1209 	int32_t skew; /* Scheduling skew. */
1210 	struct rte_intr_handle *intr_handle; /* Periodic interrupt. */
1211 	void *echan; /* Event Channel. */
1212 	struct mlx5_txpp_wq clock_queue; /* Clock Queue. */
1213 	struct mlx5_txpp_wq rearm_queue; /* Clock Queue. */
1214 	void *pp; /* Packet pacing context. */
1215 	uint16_t pp_id; /* Packet pacing context index. */
1216 	uint16_t ts_n; /* Number of captured timestamps. */
1217 	uint16_t ts_p; /* Pointer to statistics timestamp. */
1218 	struct mlx5_txpp_ts *tsa; /* Timestamps sliding window stats. */
1219 	struct mlx5_txpp_ts ts; /* Cached completion id/timestamp. */
1220 	uint32_t sync_lost:1; /* ci/timestamp synchronization lost. */
1221 	/* Statistics counters. */
1222 	uint64_t err_miss_int; /* Missed service interrupt. */
1223 	uint64_t err_rearm_queue; /* Rearm Queue errors. */
1224 	uint64_t err_clock_queue; /* Clock Queue errors. */
1225 	uint64_t err_ts_past; /* Timestamp in the past. */
1226 	uint64_t err_ts_future; /* Timestamp in the distant future. */
1227 	uint64_t err_ts_order; /* Timestamp not in ascending order. */
1228 };
1229 
1230 /* Sample ID information of eCPRI flex parser structure. */
1231 struct mlx5_ecpri_parser_profile {
1232 	uint32_t num;		/* Actual number of samples. */
1233 	uint32_t ids[8];	/* Sample IDs for this profile. */
1234 	uint8_t offset[8];	/* Bytes offset of each parser. */
1235 	void *obj;		/* Flex parser node object. */
1236 };
1237 
1238 /* Max member ports per bonding device. */
1239 #define MLX5_BOND_MAX_PORTS 2
1240 
1241 /* Bonding device information. */
1242 struct mlx5_bond_info {
1243 	int n_port; /* Number of bond member ports. */
1244 	uint32_t ifindex;
1245 	char ifname[MLX5_NAMESIZE + 1];
1246 	struct {
1247 		char ifname[MLX5_NAMESIZE + 1];
1248 		uint32_t ifindex;
1249 		struct rte_pci_addr pci_addr;
1250 	} ports[MLX5_BOND_MAX_PORTS];
1251 };
1252 
1253 /* Number of connection tracking objects per pool: must be a power of 2. */
1254 #define MLX5_ASO_CT_ACTIONS_PER_POOL 64
1255 
1256 /* Generate incremental and unique CT index from pool and offset. */
1257 #define MLX5_MAKE_CT_IDX(pool, offset) \
1258 	((pool) * MLX5_ASO_CT_ACTIONS_PER_POOL + (offset) + 1)
1259 
1260 /* ASO Conntrack state. */
1261 enum mlx5_aso_ct_state {
1262 	ASO_CONNTRACK_FREE, /* Inactive, in the free list. */
1263 	ASO_CONNTRACK_WAIT, /* WQE sent in the SQ. */
1264 	ASO_CONNTRACK_WAIT_ASYNC, /* CQE will be handled by async pull. */
1265 	ASO_CONNTRACK_READY, /* CQE received w/o error. */
1266 	ASO_CONNTRACK_QUERY, /* WQE for query sent. */
1267 	ASO_CONNTRACK_MAX, /* Guard. */
1268 };
1269 
1270 /* Generic ASO connection tracking structure. */
1271 struct mlx5_aso_ct_action {
1272 	union {
1273 		/* SWS mode struct. */
1274 		struct {
1275 			/* Pointer to the next ASO CT. Used only in SWS. */
1276 			LIST_ENTRY(mlx5_aso_ct_action) next;
1277 		};
1278 		/* HWS mode struct. */
1279 		struct {
1280 			/* Pointer to action pool. Used only in HWS. */
1281 			struct mlx5_aso_ct_pool *pool;
1282 		};
1283 	};
1284 	/* General action object for original dir. */
1285 	void *dr_action_orig;
1286 	/* General action object for reply dir. */
1287 	void *dr_action_rply;
1288 	uint32_t refcnt; /* Action used count in device flows. */
1289 	uint32_t offset; /* Offset of ASO CT in DevX objects bulk. */
1290 	uint16_t peer; /* The only peer port index could also use this CT. */
1291 	enum mlx5_aso_ct_state state; /* ASO CT state. */
1292 	bool is_original; /* The direction of the DR action to be used. */
1293 };
1294 
1295 /* CT action object state update. */
1296 #define MLX5_ASO_CT_UPDATE_STATE(c, s) \
1297 	__atomic_store_n(&((c)->state), (s), __ATOMIC_RELAXED)
1298 
1299 #ifdef PEDANTIC
1300 #pragma GCC diagnostic ignored "-Wpedantic"
1301 #endif
1302 
1303 /* ASO connection tracking software pool definition. */
1304 struct mlx5_aso_ct_pool {
1305 	uint16_t index; /* Pool index in pools array. */
1306 	/* Free ASO CT index in the pool. Used by HWS. */
1307 	struct mlx5_indexed_pool *cts;
1308 	struct mlx5_devx_obj *devx_obj;
1309 	union {
1310 		void *dummy_action;
1311 		/* Dummy action to increase the reference count in the driver. */
1312 		struct mlx5dr_action *dr_action;
1313 		/* HWS action. */
1314 	};
1315 	struct mlx5_aso_sq *sq; /* Async ASO SQ. */
1316 	struct mlx5_aso_sq *shared_sq; /* Shared ASO SQ. */
1317 	struct mlx5_aso_ct_action actions[];
1318 	/* CT action structures bulk. */
1319 };
1320 
1321 LIST_HEAD(aso_ct_list, mlx5_aso_ct_action);
1322 
1323 #define MLX5_ASO_CT_SQ_NUM 16
1324 
1325 /* Pools management structure for ASO connection tracking pools. */
1326 struct mlx5_aso_ct_pools_mng {
1327 	struct mlx5_aso_ct_pool **pools;
1328 	uint16_t n; /* Total number of pools. */
1329 	uint16_t next; /* Number of pools in use, index of next free pool. */
1330 	uint32_t nb_sq; /* Number of ASO SQ. */
1331 	rte_spinlock_t ct_sl; /* The ASO CT free list lock. */
1332 	rte_rwlock_t resize_rwl; /* The ASO CT pool resize lock. */
1333 	struct aso_ct_list free_cts; /* Free ASO CT objects list. */
1334 	struct mlx5_aso_sq aso_sqs[]; /* ASO queue objects. */
1335 };
1336 
1337 #ifdef PEDANTIC
1338 #pragma GCC diagnostic error "-Wpedantic"
1339 #endif
1340 
1341 /* LAG attr. */
1342 struct mlx5_lag {
1343 	uint8_t tx_remap_affinity[16]; /* The PF port number of affinity */
1344 	uint8_t affinity_mode; /* TIS or hash based affinity */
1345 };
1346 
1347 /* DevX flex parser context. */
1348 struct mlx5_flex_parser_devx {
1349 	struct mlx5_list_entry entry;  /* List element at the beginning. */
1350 	uint32_t num_samples;
1351 	uint8_t anchor_id;
1352 	void *devx_obj;
1353 	struct mlx5_devx_graph_node_attr devx_conf;
1354 	uint32_t sample_ids[MLX5_GRAPH_NODE_SAMPLE_NUM];
1355 	struct mlx5_devx_match_sample_info_query_attr sample_info[MLX5_GRAPH_NODE_SAMPLE_NUM];
1356 };
1357 
1358 /* Pattern field descriptor - how to translate flex pattern into samples. */
1359 __extension__
1360 struct mlx5_flex_pattern_field {
1361 	uint16_t width:6;
1362 	uint16_t shift:5;
1363 	uint16_t reg_id:5;
1364 };
1365 
1366 #define MLX5_INVALID_SAMPLE_REG_ID 0x1F
1367 
1368 /* Port flex item context. */
1369 struct mlx5_flex_item {
1370 	struct mlx5_flex_parser_devx *devx_fp; /* DevX flex parser object. */
1371 	uint32_t refcnt; /* Atomically accessed refcnt by flows. */
1372 	enum rte_flow_item_flex_tunnel_mode tunnel_mode; /* Tunnel mode. */
1373 	uint32_t mapnum; /* Number of pattern translation entries. */
1374 	struct mlx5_flex_pattern_field map[MLX5_FLEX_ITEM_MAPPING_NUM];
1375 };
1376 
1377 /*
1378  * Sample an IPv6 address and the first dword of SRv6 header.
1379  * Then it is 16 + 4 = 20 bytes which is 5 dwords.
1380  */
1381 #define MLX5_SRV6_SAMPLE_NUM 5
1382 /* Mlx5 internal flex parser profile structure. */
1383 struct mlx5_internal_flex_parser_profile {
1384 	uint32_t refcnt;
1385 	struct mlx5_flex_item flex; /* Hold map info for modify field. */
1386 };
1387 
1388 struct mlx5_send_to_kernel_action {
1389 	void *action;
1390 	void *tbl;
1391 };
1392 
1393 #define HWS_CNT_ASO_SQ_NUM 4
1394 
1395 struct mlx5_hws_aso_mng {
1396 	uint16_t sq_num;
1397 	struct mlx5_aso_sq sqs[HWS_CNT_ASO_SQ_NUM];
1398 };
1399 
1400 struct mlx5_hws_cnt_svc_mng {
1401 	uint32_t refcnt;
1402 	uint32_t service_core;
1403 	uint32_t query_interval;
1404 	rte_thread_t service_thread;
1405 	uint8_t svc_running;
1406 	struct mlx5_hws_aso_mng aso_mng __rte_cache_aligned;
1407 };
1408 
1409 #define MLX5_FLOW_HW_TAGS_MAX 12
1410 
1411 struct mlx5_dev_registers {
1412 	enum modify_reg aso_reg;
1413 	enum modify_reg hw_avl_tags[MLX5_FLOW_HW_TAGS_MAX];
1414 };
1415 
1416 #if defined(HAVE_MLX5DV_DR) && \
1417 	(defined(HAVE_MLX5_DR_CREATE_ACTION_FLOW_METER) || \
1418 	 defined(HAVE_MLX5_DR_CREATE_ACTION_ASO))
1419 #define HAVE_MLX5_DR_CREATE_ACTION_ASO_EXT
1420 #endif
1421 
1422 struct mlx5_geneve_tlv_options;
1423 
1424 /**
1425  * Physical device structure.
1426  * This device is created once per NIC to manage recourses shared by all ports
1427  * under same physical device.
1428  */
1429 struct mlx5_physical_device {
1430 	LIST_ENTRY(mlx5_physical_device) next;
1431 	struct mlx5_dev_ctx_shared *sh; /* Created on sherd context. */
1432 	uint64_t guid; /* System image guid, the uniq ID of physical device. */
1433 	struct mlx5_geneve_tlv_options *tlv_options;
1434 	uint32_t refcnt;
1435 };
1436 
1437 /*
1438  * Shared Infiniband device context for Master/Representors
1439  * which belong to same IB device with multiple IB ports.
1440  **/
1441 struct mlx5_dev_ctx_shared {
1442 	LIST_ENTRY(mlx5_dev_ctx_shared) next;
1443 	uint32_t refcnt;
1444 	uint32_t esw_mode:1; /* Whether is E-Switch mode. */
1445 	uint32_t flow_hit_aso_en:1; /* Flow Hit ASO is supported. */
1446 	uint32_t steering_format_version:4;
1447 	/* Indicates the device steering logic format. */
1448 	uint32_t meter_aso_en:1; /* Flow Meter ASO is supported. */
1449 	uint32_t ct_aso_en:1; /* Connection Tracking ASO is supported. */
1450 	uint32_t tunnel_header_0_1:1; /* tunnel_header_0_1 is supported. */
1451 	uint32_t tunnel_header_2_3:1; /* tunnel_header_2_3 is supported. */
1452 	uint32_t misc5_cap:1; /* misc5 matcher parameter is supported. */
1453 	uint32_t dr_root_drop_action_en:1; /* DR drop action is usable on root tables. */
1454 	uint32_t drop_action_check_flag:1; /* Check Flag for drop action. */
1455 	uint32_t flow_priority_check_flag:1; /* Check Flag for flow priority. */
1456 	uint32_t metadata_regc_check_flag:1; /* Check Flag for metadata REGC. */
1457 	uint32_t shared_mark_enabled:1;
1458 	/* If mark action is enabled on Rxqs (shared E-Switch domain). */
1459 	uint32_t lag_rx_port_affinity_en:1;
1460 	/* lag_rx_port_affinity is supported. */
1461 	uint32_t hws_max_log_bulk_sz:5;
1462 	uint32_t ipv6_tc_fallback:1;
1463 	/* Log of minimal HWS counters created hard coded. */
1464 	uint32_t hws_max_nb_counters; /* Maximal number for HWS counters. */
1465 	uint32_t max_port; /* Maximal IB device port index. */
1466 	struct mlx5_bond_info bond; /* Bonding information. */
1467 	struct mlx5_common_device *cdev; /* Backend mlx5 device. */
1468 	struct mlx5_physical_device *phdev; /* Backend physical device. */
1469 	uint32_t tdn; /* Transport Domain number. */
1470 	char ibdev_name[MLX5_FS_NAME_MAX]; /* SYSFS dev name. */
1471 	char ibdev_path[MLX5_FS_PATH_MAX]; /* SYSFS dev path for secondary */
1472 	struct mlx5_dev_cap dev_cap; /* Device capabilities. */
1473 	struct mlx5_sh_config config; /* Device configuration. */
1474 	int numa_node; /* Numa node of backing physical device. */
1475 	/* Packet pacing related structure. */
1476 	struct mlx5_dev_txpp txpp;
1477 	/* Shared DV/DR flow data section. */
1478 	uint32_t dv_meta_mask; /* flow META metadata supported mask. */
1479 	uint32_t dv_mark_mask; /* flow MARK metadata supported mask. */
1480 	uint32_t dv_regc0_mask; /* available bits of metadata reg_c[0]. */
1481 	void *fdb_domain; /* FDB Direct Rules name space handle. */
1482 	void *rx_domain; /* RX Direct Rules name space handle. */
1483 	void *tx_domain; /* TX Direct Rules name space handle. */
1484 #ifndef RTE_ARCH_64
1485 	rte_spinlock_t uar_lock_cq; /* CQs share a common distinct UAR. */
1486 	rte_spinlock_t uar_lock[MLX5_UAR_PAGE_NUM_MAX];
1487 	/* UAR same-page access control required in 32bit implementations. */
1488 #endif
1489 	union {
1490 		struct mlx5_hlist *flow_tbls; /* SWS flow table. */
1491 		struct mlx5_hlist *groups; /* HWS flow group. */
1492 	};
1493 	struct mlx5_flow_tunnel_hub *tunnel_hub;
1494 	/* Direct Rules tables for FDB, NIC TX+RX */
1495 	void *dr_drop_action; /* Pointer to DR drop action, any domain. */
1496 	void *pop_vlan_action; /* Pointer to DR pop VLAN action. */
1497 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
1498 	struct mlx5_send_to_kernel_action send_to_kernel_action[MLX5DR_TABLE_TYPE_MAX];
1499 #endif
1500 	struct mlx5_hlist *encaps_decaps; /* Encap/decap action hash list. */
1501 	struct mlx5_hlist *modify_cmds;
1502 	struct mlx5_hlist *tag_table;
1503 	struct mlx5_list *port_id_action_list; /* Port ID action list. */
1504 	struct mlx5_list *push_vlan_action_list; /* Push VLAN actions. */
1505 	struct mlx5_list *sample_action_list; /* List of sample actions. */
1506 	struct mlx5_list *dest_array_list;
1507 	struct mlx5_list *flex_parsers_dv; /* Flex Item parsers. */
1508 	/* List of destination array actions. */
1509 	struct mlx5_flow_counter_mng sws_cmng;
1510 	/* SW steering counters management structure. */
1511 	void *default_miss_action; /* Default miss action. */
1512 	struct mlx5_indexed_pool *ipool[MLX5_IPOOL_MAX];
1513 	struct mlx5_indexed_pool *mdh_ipools[MLX5_MAX_MODIFY_NUM];
1514 	/* Shared interrupt handler section. */
1515 	struct rte_intr_handle *intr_handle; /* Interrupt handler for device. */
1516 	struct rte_intr_handle *intr_handle_devx; /* DEVX interrupt handler. */
1517 	struct rte_intr_handle *intr_handle_nl; /* Netlink interrupt handler. */
1518 	void *devx_comp; /* DEVX async comp obj. */
1519 	struct mlx5_devx_obj *tis[16]; /* TIS object. */
1520 	struct mlx5_devx_obj *td; /* Transport domain. */
1521 	struct mlx5_lag lag; /* LAG attributes */
1522 	struct mlx5_uar tx_uar; /* DevX UAR for Tx and Txpp and ASO SQs. */
1523 	struct mlx5_uar rx_uar; /* DevX UAR for Rx. */
1524 	struct mlx5_proc_priv *pppriv; /* Pointer to primary private process. */
1525 	struct mlx5_ecpri_parser_profile ecpri_parser;
1526 	struct mlx5_internal_flex_parser_profile srh_flex_parser; /* srh flex parser structure. */
1527 	/* Flex parser profiles information. */
1528 	LIST_HEAD(shared_rxqs, mlx5_rxq_ctrl) shared_rxqs; /* Shared RXQs. */
1529 	struct mlx5_aso_age_mng *aso_age_mng;
1530 	/* Management data for aging mechanism using ASO Flow Hit. */
1531 	struct mlx5_geneve_tlv_option_resource *geneve_tlv_option_resource;
1532 	/* Management structure for geneve tlv option */
1533 	rte_spinlock_t geneve_tlv_opt_sl; /* Lock for geneve tlv resource */
1534 	struct mlx5_flow_mtr_mng *mtrmng;
1535 	/* Meter management structure. */
1536 	struct mlx5_aso_ct_pools_mng *ct_mng; /* Management data for ASO CT in HWS only. */
1537 	struct mlx5_lb_ctx self_lb; /* QP to enable self loopback for Devx. */
1538 	unsigned int flow_max_priority;
1539 	enum modify_reg flow_mreg_c[MLX5_MREG_C_NUM];
1540 	/* Availability of mreg_c's. */
1541 	void *devx_channel_lwm;
1542 	struct rte_intr_handle *intr_handle_lwm;
1543 	pthread_mutex_t lwm_config_lock;
1544 	uint32_t host_shaper_rate:8;
1545 	uint32_t lwm_triggered:1;
1546 	struct mlx5_hws_cnt_svc_mng *cnt_svc;
1547 	rte_spinlock_t cpool_lock;
1548 	LIST_HEAD(hws_cpool_list, mlx5_hws_cnt_pool) hws_cpool_list; /* Count pool list. */
1549 	struct mlx5_dev_registers registers;
1550 	struct mlx5_dev_shared_port port[]; /* per device port data array. */
1551 };
1552 
1553 /*
1554  * Per-process private structure.
1555  * Caution, secondary process may rebuild the struct during port start.
1556  */
1557 struct mlx5_proc_priv {
1558 	void *hca_bar;
1559 	/* Mapped HCA PCI BAR area. */
1560 	size_t uar_table_sz;
1561 	/* Size of UAR register table. */
1562 	struct mlx5_uar_data uar_table[];
1563 	/* Table of UAR registers for each process. */
1564 };
1565 
1566 /* MTR profile list. */
1567 TAILQ_HEAD(mlx5_mtr_profiles, mlx5_flow_meter_profile);
1568 /* MTR list. */
1569 TAILQ_HEAD(mlx5_legacy_flow_meters, mlx5_legacy_flow_meter);
1570 
1571 struct mlx5_mtr_config {
1572 	uint32_t nb_meters; /**< Number of configured meters */
1573 	uint32_t nb_meter_profiles; /**< Number of configured meter profiles */
1574 	uint32_t nb_meter_policies; /**< Number of configured meter policies */
1575 };
1576 
1577 /* RSS description. */
1578 struct mlx5_flow_rss_desc {
1579 	bool symmetric_hash_function; /**< Symmetric hash function */
1580 	uint32_t level;
1581 	uint32_t queue_num; /**< Number of entries in @p queue. */
1582 	uint64_t types; /**< Specific RSS hash types (see RTE_ETH_RSS_*). */
1583 	uint64_t hash_fields; /* Verbs Hash fields. */
1584 	uint8_t key[MLX5_RSS_HASH_KEY_LEN]; /**< RSS hash key. */
1585 	uint32_t key_len; /**< RSS hash key len. */
1586 	uint32_t hws_flags; /**< HW steering action. */
1587 	uint32_t tunnel; /**< Queue in tunnel. */
1588 	uint32_t shared_rss; /**< Shared RSS index. */
1589 	struct mlx5_ind_table_obj *ind_tbl;
1590 	/**< Indirection table for shared RSS hash RX queues. */
1591 	union {
1592 		uint16_t *queue; /**< Destination queues. */
1593 		const uint16_t *const_q; /**< Const pointer convert. */
1594 	};
1595 };
1596 
1597 #define MLX5_PROC_PRIV(port_id) \
1598 	((struct mlx5_proc_priv *)rte_eth_devices[port_id].process_private)
1599 
1600 /* Verbs/DevX Rx queue elements. */
1601 struct mlx5_rxq_obj {
1602 	LIST_ENTRY(mlx5_rxq_obj) next; /* Pointer to the next element. */
1603 	struct mlx5_rxq_ctrl *rxq_ctrl; /* Back pointer to parent. */
1604 	int fd; /* File descriptor for event channel */
1605 	union {
1606 		struct {
1607 			void *wq; /* Work Queue. */
1608 			void *ibv_cq; /* Completion Queue. */
1609 			void *ibv_channel;
1610 		};
1611 		struct mlx5_devx_obj *rq; /* DevX RQ object for hairpin. */
1612 		struct {
1613 			struct mlx5_devx_rmp devx_rmp; /* RMP for shared RQ. */
1614 			struct mlx5_devx_cq cq_obj; /* DevX CQ object. */
1615 			void *devx_channel;
1616 		};
1617 	};
1618 };
1619 
1620 /* Indirection table. */
1621 struct mlx5_ind_table_obj {
1622 	LIST_ENTRY(mlx5_ind_table_obj) next; /* Pointer to the next element. */
1623 	uint32_t refcnt; /* Reference counter. */
1624 	union {
1625 		void *ind_table; /**< Indirection table. */
1626 		struct mlx5_devx_obj *rqt; /* DevX RQT object. */
1627 	};
1628 	uint32_t queues_n; /**< Number of queues in the list. */
1629 	uint16_t *queues; /**< Queue list. */
1630 };
1631 
1632 /* Hash Rx queue. */
1633 __extension__
1634 struct mlx5_hrxq {
1635 	struct mlx5_list_entry entry; /* List entry. */
1636 	uint32_t standalone:1; /* This object used in shared action. */
1637 	struct mlx5_ind_table_obj *ind_table; /* Indirection table. */
1638 	union {
1639 		void *qp; /* Verbs queue pair. */
1640 		struct mlx5_devx_obj *tir; /* DevX TIR object. */
1641 	};
1642 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
1643 	void *action; /* DV QP action pointer. */
1644 #endif
1645 	bool symmetric_hash_function; /* Symmetric hash function */
1646 	uint32_t hws_flags; /* Hw steering flags. */
1647 	uint64_t hash_fields; /* Verbs Hash fields. */
1648 	uint32_t rss_key_len; /* Hash key length in bytes. */
1649 	uint32_t idx; /* Hash Rx queue index. */
1650 	uint8_t rss_key[]; /* Hash key. */
1651 };
1652 
1653 /* Verbs/DevX Tx queue elements. */
1654 struct mlx5_txq_obj {
1655 	LIST_ENTRY(mlx5_txq_obj) next; /* Pointer to the next element. */
1656 	struct mlx5_txq_ctrl *txq_ctrl; /* Pointer to the control queue. */
1657 	union {
1658 		struct {
1659 			void *cq; /* Completion Queue. */
1660 			void *qp; /* Queue Pair. */
1661 		};
1662 		struct {
1663 			struct mlx5_devx_obj *sq;
1664 			/* DevX object for Sx queue. */
1665 			struct mlx5_devx_obj *tis; /* The TIS object. */
1666 			void *umem_buf_wq_buffer;
1667 			void *umem_obj_wq_buffer;
1668 		};
1669 		struct {
1670 			struct rte_eth_dev *dev;
1671 			struct mlx5_devx_cq cq_obj;
1672 			/* DevX CQ object and its resources. */
1673 			struct mlx5_devx_sq sq_obj;
1674 			/* DevX SQ object and its resources. */
1675 		};
1676 	};
1677 };
1678 
1679 enum mlx5_rxq_modify_type {
1680 	MLX5_RXQ_MOD_ERR2RST, /* modify state from error to reset. */
1681 	MLX5_RXQ_MOD_RST2RDY, /* modify state from reset to ready. */
1682 	MLX5_RXQ_MOD_RDY2ERR, /* modify state from ready to error. */
1683 	MLX5_RXQ_MOD_RDY2RST, /* modify state from ready to reset. */
1684 	MLX5_RXQ_MOD_RDY2RDY, /* modify state from ready to ready. */
1685 };
1686 
1687 enum mlx5_txq_modify_type {
1688 	MLX5_TXQ_MOD_RST2RDY, /* modify state from reset to ready. */
1689 	MLX5_TXQ_MOD_RDY2RST, /* modify state from ready to reset. */
1690 	MLX5_TXQ_MOD_ERR2RDY, /* modify state from error to ready. */
1691 };
1692 
1693 struct mlx5_rxq_priv;
1694 struct mlx5_priv;
1695 
1696 /* HW objects operations structure. */
1697 struct mlx5_obj_ops {
1698 	int (*rxq_obj_modify_vlan_strip)(struct mlx5_rxq_priv *rxq, int on);
1699 	int (*rxq_obj_new)(struct mlx5_rxq_priv *rxq);
1700 	int (*rxq_event_get)(struct mlx5_rxq_obj *rxq_obj);
1701 	int (*rxq_obj_modify)(struct mlx5_rxq_priv *rxq, uint8_t type);
1702 	void (*rxq_obj_release)(struct mlx5_rxq_priv *rxq);
1703 	int (*rxq_event_get_lwm)(struct mlx5_priv *priv, int *rxq_idx, int *port_id);
1704 	int (*ind_table_new)(struct rte_eth_dev *dev, const unsigned int log_n,
1705 			     struct mlx5_ind_table_obj *ind_tbl);
1706 	int (*ind_table_modify)(struct rte_eth_dev *dev,
1707 				const unsigned int log_n,
1708 				const uint16_t *queues, const uint32_t queues_n,
1709 				struct mlx5_ind_table_obj *ind_tbl);
1710 	void (*ind_table_destroy)(struct mlx5_ind_table_obj *ind_tbl);
1711 	int (*hrxq_new)(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq,
1712 			int tunnel __rte_unused);
1713 	int (*hrxq_modify)(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq,
1714 			   const uint8_t *rss_key,
1715 			   uint64_t hash_fields,
1716 			   bool symmetric_hash_function,
1717 			   const struct mlx5_ind_table_obj *ind_tbl);
1718 	void (*hrxq_destroy)(struct mlx5_hrxq *hrxq);
1719 	int (*drop_action_create)(struct rte_eth_dev *dev);
1720 	void (*drop_action_destroy)(struct rte_eth_dev *dev);
1721 	int (*txq_obj_new)(struct rte_eth_dev *dev, uint16_t idx);
1722 	int (*txq_obj_modify)(struct mlx5_txq_obj *obj,
1723 			      enum mlx5_txq_modify_type type, uint8_t dev_port);
1724 	void (*txq_obj_release)(struct mlx5_txq_obj *txq_obj);
1725 	int (*lb_dummy_queue_create)(struct rte_eth_dev *dev);
1726 	void (*lb_dummy_queue_release)(struct rte_eth_dev *dev);
1727 };
1728 
1729 #define MLX5_RSS_HASH_FIELDS_LEN RTE_DIM(mlx5_rss_hash_fields)
1730 
1731 enum mlx5_hw_ctrl_flow_type {
1732 	MLX5_HW_CTRL_FLOW_TYPE_GENERAL,
1733 	MLX5_HW_CTRL_FLOW_TYPE_SQ_MISS_ROOT,
1734 	MLX5_HW_CTRL_FLOW_TYPE_SQ_MISS,
1735 	MLX5_HW_CTRL_FLOW_TYPE_DEFAULT_JUMP,
1736 	MLX5_HW_CTRL_FLOW_TYPE_TX_META_COPY,
1737 	MLX5_HW_CTRL_FLOW_TYPE_TX_REPR_MATCH,
1738 	MLX5_HW_CTRL_FLOW_TYPE_LACP_RX,
1739 	MLX5_HW_CTRL_FLOW_TYPE_DEFAULT_RX_RSS,
1740 };
1741 
1742 /** Additional info about control flow rule. */
1743 struct mlx5_hw_ctrl_flow_info {
1744 	/** Determines the kind of control flow rule. */
1745 	enum mlx5_hw_ctrl_flow_type type;
1746 	union {
1747 		/**
1748 		 * If control flow is a SQ miss flow (root or not),
1749 		 * then fields contains matching SQ number.
1750 		 */
1751 		uint32_t esw_mgr_sq;
1752 		/**
1753 		 * If control flow is a Tx representor matching,
1754 		 * then fields contains matching SQ number.
1755 		 */
1756 		uint32_t tx_repr_sq;
1757 	};
1758 };
1759 
1760 /** Entry for tracking control flow rules in HWS. */
1761 struct mlx5_hw_ctrl_flow {
1762 	LIST_ENTRY(mlx5_hw_ctrl_flow) next;
1763 	/**
1764 	 * Owner device is a port on behalf of which flow rule was created.
1765 	 *
1766 	 * It's different from the port which really created the flow rule
1767 	 * if and only if flow rule is created on transfer proxy port
1768 	 * on behalf of representor port.
1769 	 */
1770 	struct rte_eth_dev *owner_dev;
1771 	/** Pointer to flow rule handle. */
1772 	struct rte_flow *flow;
1773 	/** Additional information about the control flow rule. */
1774 	struct mlx5_hw_ctrl_flow_info info;
1775 };
1776 
1777 /*
1778  * Flow rule structure for flow engine mode control, focus on group 0.
1779  * Apply to all supported domains.
1780  */
1781 struct mlx5_dv_flow_info {
1782 	LIST_ENTRY(mlx5_dv_flow_info) next;
1783 	uint32_t orig_prio; /* prio set by user */
1784 	uint32_t flow_idx_high_prio;
1785 	/* flow index owned by standby mode. priority is lower unless DUP flags. */
1786 	uint32_t flow_idx_low_prio;
1787 	struct rte_flow_item *items;
1788 	struct rte_flow_action *actions;
1789 	struct rte_flow_attr attr;
1790 };
1791 
1792 struct rte_pmd_mlx5_flow_engine_mode_info {
1793 	enum rte_pmd_mlx5_flow_engine_mode mode;
1794 	uint32_t mode_flag;
1795 	/* The list is maintained in insertion order. */
1796 	LIST_HEAD(hot_up_info, mlx5_dv_flow_info) hot_upgrade;
1797 };
1798 /* HW Steering port configuration passed to rte_flow_configure(). */
1799 struct mlx5_flow_hw_attr {
1800 	struct rte_flow_port_attr port_attr;
1801 	uint16_t nb_queue;
1802 	struct rte_flow_queue_attr *queue_attr;
1803 };
1804 
1805 struct mlx5_flow_hw_ctrl_rx;
1806 
1807 enum mlx5_quota_state {
1808 	MLX5_QUOTA_STATE_FREE,	/* quota not in use */
1809 	MLX5_QUOTA_STATE_READY, /* quota is ready   */
1810 	MLX5_QUOTA_STATE_WAIT	/* quota waits WR completion */
1811 };
1812 
1813 struct mlx5_quota {
1814 	uint8_t state; /* object state */
1815 	uint8_t mode;  /* metering mode */
1816 	/**
1817 	 * Keep track of application update types.
1818 	 * PMD does not allow 2 consecutive ADD updates.
1819 	 */
1820 	enum rte_flow_update_quota_op last_update;
1821 };
1822 
1823 /* Bulk management structure for flow quota. */
1824 struct mlx5_quota_ctx {
1825 	struct mlx5dr_action *dr_action; /* HWS action */
1826 	struct mlx5_devx_obj *devx_obj; /* DEVX ranged object. */
1827 	struct mlx5_pmd_mr mr; /* MR for READ from MTR ASO */
1828 	struct mlx5_aso_mtr_dseg **read_buf; /* Buffers for READ */
1829 	struct mlx5_aso_sq *sq; /* SQs for sync/async ACCESS_ASO WRs */
1830 	struct mlx5_indexed_pool *quota_ipool; /* Manage quota objects */
1831 };
1832 
1833 struct mlx5_priv {
1834 	struct rte_eth_dev_data *dev_data;  /* Pointer to device data. */
1835 	struct mlx5_dev_ctx_shared *sh; /* Shared device context. */
1836 	uint32_t dev_port; /* Device port number. */
1837 	struct rte_pci_device *pci_dev; /* Backend PCI device. */
1838 	struct rte_ether_addr mac[MLX5_MAX_MAC_ADDRESSES]; /* MAC addresses. */
1839 	BITFIELD_DECLARE(mac_own, uint64_t, MLX5_MAX_MAC_ADDRESSES);
1840 	/* Bit-field of MAC addresses owned by the PMD. */
1841 	uint16_t vlan_filter[MLX5_MAX_VLAN_IDS]; /* VLAN filters table. */
1842 	unsigned int vlan_filter_n; /* Number of configured VLAN filters. */
1843 	/* Device properties. */
1844 	uint16_t mtu; /* Configured MTU. */
1845 	unsigned int isolated:1; /* Whether isolated mode is enabled. */
1846 	unsigned int representor:1; /* Device is a port representor. */
1847 	unsigned int master:1; /* Device is a E-Switch master. */
1848 	unsigned int txpp_en:1; /* Tx packet pacing enabled. */
1849 	unsigned int sampler_en:1; /* Whether support sampler. */
1850 	unsigned int mtr_en:1; /* Whether support meter. */
1851 	unsigned int mtr_reg_share:1; /* Whether support meter REG_C share. */
1852 	unsigned int lb_used:1; /* Loopback queue is referred to. */
1853 	unsigned int rmv_notified:1; /* Notified about removal event */
1854 	uint32_t mark_enabled:1; /* If mark action is enabled on rxqs. */
1855 	uint32_t num_lag_ports:4; /* Number of ports can be bonded. */
1856 	uint32_t tunnel_enabled:1; /* If tunnel offloading is enabled on rxqs. */
1857 	uint16_t domain_id; /* Switch domain identifier. */
1858 	uint16_t vport_id; /* Associated VF vport index (if any). */
1859 	uint32_t vport_meta_tag; /* Used for vport index match ove VF LAG. */
1860 	uint32_t vport_meta_mask; /* Used for vport index field match mask. */
1861 	uint16_t representor_id; /* UINT16_MAX if not a representor. */
1862 	int32_t pf_bond; /* >=0, representor owner PF index in bonding. */
1863 	int32_t mpesw_owner; /* >=0, representor owner PF index in MPESW. */
1864 	int32_t mpesw_port; /* Related port index of MPESW device. < 0 - no MPESW. */
1865 	bool mpesw_uplink; /* If true, port is an uplink port. */
1866 	unsigned int if_index; /* Associated kernel network device index. */
1867 	/* RX/TX queues. */
1868 	unsigned int rxqs_n; /* RX queues array size. */
1869 	unsigned int txqs_n; /* TX queues array size. */
1870 	struct mlx5_external_rxq *ext_rxqs; /* External RX queues array. */
1871 	struct mlx5_rxq_priv *(*rxq_privs)[]; /* RX queue non-shared data. */
1872 	struct mlx5_txq_data *(*txqs)[]; /* TX queues. */
1873 	struct rte_mempool *mprq_mp; /* Mempool for Multi-Packet RQ. */
1874 	struct rte_eth_rss_conf rss_conf; /* RSS configuration. */
1875 	unsigned int (*reta_idx)[]; /* RETA index table. */
1876 	unsigned int reta_idx_n; /* RETA index size. */
1877 	struct mlx5_drop drop_queue; /* Flow drop queues. */
1878 	void *root_drop_action; /* Pointer to root drop action. */
1879 	rte_spinlock_t hw_ctrl_lock;
1880 	LIST_HEAD(hw_ctrl_flow, mlx5_hw_ctrl_flow) hw_ctrl_flows;
1881 	LIST_HEAD(hw_ext_ctrl_flow, mlx5_hw_ctrl_flow) hw_ext_ctrl_flows;
1882 	struct rte_flow_template_table *hw_esw_sq_miss_root_tbl;
1883 	struct rte_flow_template_table *hw_esw_sq_miss_tbl;
1884 	struct rte_flow_template_table *hw_esw_zero_tbl;
1885 	struct rte_flow_template_table *hw_tx_meta_cpy_tbl;
1886 	struct rte_flow_template_table *hw_lacp_rx_tbl;
1887 	struct rte_flow_pattern_template *hw_tx_repr_tagging_pt;
1888 	struct rte_flow_actions_template *hw_tx_repr_tagging_at;
1889 	struct rte_flow_template_table *hw_tx_repr_tagging_tbl;
1890 	struct mlx5_indexed_pool *flows[MLX5_FLOW_TYPE_MAXI];
1891 	/* RTE Flow rules. */
1892 	uint32_t ctrl_flows; /* Control flow rules. */
1893 	rte_spinlock_t flow_list_lock;
1894 	struct mlx5_obj_ops obj_ops; /* HW objects operations. */
1895 	LIST_HEAD(rxq, mlx5_rxq_ctrl) rxqsctrl; /* DPDK Rx queues. */
1896 	LIST_HEAD(rxqobj, mlx5_rxq_obj) rxqsobj; /* Verbs/DevX Rx queues. */
1897 	struct mlx5_list *hrxqs; /* Hash Rx queues. */
1898 	LIST_HEAD(txq, mlx5_txq_ctrl) txqsctrl; /* DPDK Tx queues. */
1899 	LIST_HEAD(txqobj, mlx5_txq_obj) txqsobj; /* Verbs/DevX Tx queues. */
1900 	/* Indirection tables. */
1901 	LIST_HEAD(ind_tables, mlx5_ind_table_obj) ind_tbls;
1902 	/* Standalone indirect tables. */
1903 	LIST_HEAD(stdl_ind_tables, mlx5_ind_table_obj) standalone_ind_tbls;
1904 	/* Objects created with indirect list action */
1905 	LIST_HEAD(indirect_list, mlx5_indirect_list) indirect_list_head;
1906 	/* Pointer to next element. */
1907 	rte_rwlock_t ind_tbls_lock;
1908 	uint32_t refcnt; /**< Reference counter. */
1909 	/**< Verbs modify header action object. */
1910 	uint8_t ft_type; /**< Flow table type, Rx or Tx. */
1911 	uint32_t max_lro_msg_size;
1912 	uint32_t link_speed_capa; /* Link speed capabilities. */
1913 	struct mlx5_xstats_ctrl xstats_ctrl; /* Extended stats control. */
1914 	struct mlx5_stats_ctrl stats_ctrl; /* Stats control. */
1915 	struct mlx5_port_config config; /* Port configuration. */
1916 	/* Context for Verbs allocator. */
1917 	int nl_socket_rdma; /* Netlink socket (NETLINK_RDMA). */
1918 	int nl_socket_route; /* Netlink socket (NETLINK_ROUTE). */
1919 	struct mlx5_nl_vlan_vmwa_context *vmwa_context; /* VLAN WA context. */
1920 	struct mlx5_hlist *mreg_cp_tbl;
1921 	/* Hash table of Rx metadata register copy table. */
1922 	struct mlx5_mtr_config mtr_config; /* Meter configuration */
1923 	uint8_t mtr_sfx_reg; /* Meter prefix-suffix flow match REG_C. */
1924 	struct mlx5_legacy_flow_meters flow_meters; /* MTR list. */
1925 	struct mlx5_l3t_tbl *mtr_profile_tbl; /* Meter index lookup table. */
1926 	struct mlx5_flow_meter_profile *mtr_profile_arr; /* Profile array. */
1927 	struct mlx5_l3t_tbl *policy_idx_tbl; /* Policy index lookup table. */
1928 	struct mlx5_flow_meter_policy *mtr_policy_arr; /* Policy array. */
1929 	struct mlx5_l3t_tbl *mtr_idx_tbl; /* Meter index lookup table. */
1930 	struct mlx5_mtr_bulk mtr_bulk; /* Meter index mapping for HWS */
1931 	struct mlx5_quota_ctx quota_ctx; /* Quota index mapping for HWS */
1932 	uint8_t skip_default_rss_reta; /* Skip configuration of default reta. */
1933 	uint8_t fdb_def_rule; /* Whether fdb jump to table 1 is configured. */
1934 	struct mlx5_mp_id mp_id; /* ID of a multi-process process */
1935 	LIST_HEAD(fdir, mlx5_fdir_flow) fdir_flows; /* fdir flows. */
1936 	rte_spinlock_t shared_act_sl; /* Shared actions spinlock. */
1937 	uint32_t rss_shared_actions; /* RSS shared actions. */
1938 	struct mlx5_devx_obj *q_counters; /* DevX queue counter object. */
1939 	uint32_t counter_set_id; /* Queue counter ID to set in DevX objects. */
1940 	uint32_t lag_affinity_idx; /* LAG mode queue 0 affinity starting. */
1941 	rte_spinlock_t flex_item_sl; /* Flex item list spinlock. */
1942 	struct mlx5_flex_item flex_item[MLX5_PORT_FLEX_ITEM_NUM];
1943 	/* Flex items have been created on the port. */
1944 	uint32_t flex_item_map; /* Map of allocated flex item elements. */
1945 	uint32_t nb_queue; /* HW steering queue number. */
1946 	struct mlx5_hws_cnt_pool *hws_cpool; /* HW steering's counter pool. */
1947 	uint32_t hws_mark_refcnt; /* HWS mark action reference counter. */
1948 	struct rte_pmd_mlx5_flow_engine_mode_info mode_info; /* Process set flow engine info. */
1949 	struct mlx5_flow_hw_attr *hw_attr; /* HW Steering port configuration. */
1950 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
1951 	/* Item template list. */
1952 	LIST_HEAD(flow_hw_itt, rte_flow_pattern_template) flow_hw_itt;
1953 	/* Action template list. */
1954 	LIST_HEAD(flow_hw_at, rte_flow_actions_template) flow_hw_at;
1955 	struct mlx5dr_context *dr_ctx; /**< HW steering DR context. */
1956 	/* Pointer to the GENEVE TLV options. */
1957 	struct mlx5_geneve_tlv_options *tlv_options;
1958 	/* HW steering queue polling mechanism job descriptor LIFO. */
1959 	uint32_t hws_strict_queue:1;
1960 	/**< Whether all operations strictly happen on the same HWS queue. */
1961 	uint32_t hws_age_req:1; /**< Whether this port has AGE indexed pool. */
1962 	struct mlx5_hw_q *hw_q;
1963 	/* HW steering rte flow table list header. */
1964 	LIST_HEAD(flow_hw_tbl, rte_flow_template_table) flow_hw_tbl;
1965 	/* HW steering rte flow group list header */
1966 	LIST_HEAD(flow_hw_grp, mlx5_flow_group) flow_hw_grp;
1967 	struct mlx5dr_action *hw_push_vlan[MLX5DR_TABLE_TYPE_MAX];
1968 	struct mlx5dr_action *hw_pop_vlan[MLX5DR_TABLE_TYPE_MAX];
1969 	struct mlx5dr_action **hw_vport;
1970 	/* HW steering global drop action. */
1971 	struct mlx5dr_action *hw_drop[2];
1972 	/* HW steering global tag action. */
1973 	struct mlx5dr_action *hw_tag[2];
1974 	/* HW steering global default miss action. */
1975 	struct mlx5dr_action *hw_def_miss;
1976 	/* HW steering global send to kernel action. */
1977 	struct mlx5dr_action *hw_send_to_kernel[MLX5DR_TABLE_TYPE_MAX];
1978 	/* HW steering create ongoing rte flow table list header. */
1979 	LIST_HEAD(flow_hw_tbl_ongo, rte_flow_template_table) flow_hw_tbl_ongo;
1980 	struct mlx5_indexed_pool *acts_ipool; /* Action data indexed pool. */
1981 	struct mlx5_aso_ct_pools_mng *ct_mng;
1982 	/* Management data for ASO connection tracking. */
1983 	struct mlx5_aso_ct_pool *hws_ctpool; /* HW steering's CT pool. */
1984 	struct mlx5_aso_mtr_pool *hws_mpool; /* HW steering's Meter pool. */
1985 	struct mlx5_flow_hw_ctrl_rx *hw_ctrl_rx;
1986 	/**< HW steering templates used to create control flow rules. */
1987 #endif
1988 	struct rte_eth_dev *shared_host; /* Host device for HW steering. */
1989 	uint16_t shared_refcnt; /* HW steering host reference counter. */
1990 };
1991 
1992 #define PORT_ID(priv) ((priv)->dev_data->port_id)
1993 #define ETH_DEV(priv) (&rte_eth_devices[PORT_ID(priv)])
1994 #define CTRL_QUEUE_ID(priv) ((priv)->nb_queue - 1)
1995 
1996 struct rte_hairpin_peer_info {
1997 	uint32_t qp_id;
1998 	uint32_t vhca_id;
1999 	uint16_t peer_q;
2000 	uint16_t tx_explicit;
2001 	uint16_t manual_bind;
2002 };
2003 
2004 #define BUF_SIZE 1024
2005 enum dr_dump_rec_type {
2006 	DR_DUMP_REC_TYPE_PMD_PKT_REFORMAT = 4410,
2007 	DR_DUMP_REC_TYPE_PMD_MODIFY_HDR = 4420,
2008 	DR_DUMP_REC_TYPE_PMD_COUNTER = 4430,
2009 };
2010 
2011 /**
2012  * Indicates whether HW objects operations can be created by DevX.
2013  *
2014  * This function is used for both:
2015  *  Before creation - deciding whether to create HW objects operations by DevX.
2016  *  After creation - indicator if HW objects operations were created by DevX.
2017  *
2018  * @param sh
2019  *   Pointer to shared device context.
2020  *
2021  * @return
2022  *   True if HW objects were created by DevX, False otherwise.
2023  */
2024 static inline bool
2025 mlx5_devx_obj_ops_en(struct mlx5_dev_ctx_shared *sh)
2026 {
2027 	/*
2028 	 * When advanced DR API is available and DV flow is supported and
2029 	 * DevX is supported, HW objects operations are created by DevX.
2030 	 */
2031 	return (sh->cdev->config.devx && sh->config.dv_flow_en &&
2032 		sh->dev_cap.dest_tir);
2033 }
2034 
2035 /**
2036  * Check if the port is either MPESW physical device or a representor port.
2037  *
2038  * @param priv
2039  *   Pointer to port's private data.
2040  *
2041  * @return
2042  *   True if the port is a physical device or representor in MPESW setup.
2043  *   False otherwise or MPESW was not configured.
2044  */
2045 static inline bool
2046 mlx5_is_port_on_mpesw_device(struct mlx5_priv *priv)
2047 {
2048 	return priv->mpesw_port >= 0;
2049 }
2050 
2051 /* mlx5.c */
2052 
2053 int mlx5_getenv_int(const char *);
2054 int mlx5_proc_priv_init(struct rte_eth_dev *dev);
2055 void mlx5_proc_priv_uninit(struct rte_eth_dev *dev);
2056 int mlx5_udp_tunnel_port_add(struct rte_eth_dev *dev,
2057 			      struct rte_eth_udp_tunnel *udp_tunnel);
2058 uint16_t mlx5_eth_find_next(uint16_t port_id, struct rte_device *odev);
2059 int mlx5_dev_close(struct rte_eth_dev *dev);
2060 int mlx5_net_remove(struct mlx5_common_device *cdev);
2061 bool mlx5_is_hpf(struct rte_eth_dev *dev);
2062 bool mlx5_is_sf_repr(struct rte_eth_dev *dev);
2063 void mlx5_age_event_prepare(struct mlx5_dev_ctx_shared *sh);
2064 int mlx5_lwm_setup(struct mlx5_priv *priv);
2065 void mlx5_lwm_unset(struct mlx5_dev_ctx_shared *sh);
2066 
2067 /* Macro to iterate over all valid ports for mlx5 driver. */
2068 #define MLX5_ETH_FOREACH_DEV(port_id, dev) \
2069 	for (port_id = mlx5_eth_find_next(0, dev); \
2070 	     port_id < RTE_MAX_ETHPORTS; \
2071 	     port_id = mlx5_eth_find_next(port_id + 1, dev))
2072 void mlx5_rt_timestamp_config(struct mlx5_dev_ctx_shared *sh,
2073 			      struct mlx5_hca_attr *hca_attr);
2074 struct mlx5_dev_ctx_shared *
2075 mlx5_alloc_shared_dev_ctx(const struct mlx5_dev_spawn_data *spawn,
2076 			  struct mlx5_kvargs_ctrl *mkvlist);
2077 void mlx5_free_shared_dev_ctx(struct mlx5_dev_ctx_shared *sh);
2078 int mlx5_dev_ctx_shared_mempool_subscribe(struct rte_eth_dev *dev);
2079 void mlx5_free_table_hash_list(struct mlx5_priv *priv);
2080 int mlx5_alloc_table_hash_list(struct mlx5_priv *priv);
2081 void mlx5_set_min_inline(struct mlx5_priv *priv);
2082 void mlx5_set_metadata_mask(struct rte_eth_dev *dev);
2083 int mlx5_probe_again_args_validate(struct mlx5_common_device *cdev,
2084 				   struct mlx5_kvargs_ctrl *mkvlist);
2085 int mlx5_port_args_config(struct mlx5_priv *priv,
2086 			  struct mlx5_kvargs_ctrl *mkvlist,
2087 			  struct mlx5_port_config *config);
2088 void mlx5_port_args_set_used(const char *name, uint16_t port_id,
2089 			     struct mlx5_kvargs_ctrl *mkvlist);
2090 bool mlx5_flex_parser_ecpri_exist(struct rte_eth_dev *dev);
2091 int mlx5_flex_parser_ecpri_alloc(struct rte_eth_dev *dev);
2092 void mlx5_flow_counter_mode_config(struct rte_eth_dev *dev);
2093 int mlx5_flow_aso_age_mng_init(struct mlx5_dev_ctx_shared *sh);
2094 int mlx5_aso_flow_mtrs_mng_init(struct mlx5_dev_ctx_shared *sh);
2095 int mlx5_flow_aso_ct_mng_init(struct mlx5_dev_ctx_shared *sh);
2096 struct mlx5_physical_device *
2097 mlx5_get_locked_physical_device(struct mlx5_priv *priv);
2098 void mlx5_unlock_physical_device(void);
2099 
2100 /* mlx5_ethdev.c */
2101 
2102 int mlx5_dev_configure(struct rte_eth_dev *dev);
2103 int mlx5_representor_info_get(struct rte_eth_dev *dev,
2104 			      struct rte_eth_representor_info *info);
2105 #define MLX5_REPRESENTOR_ID(pf, type, repr) \
2106 		(((pf) << 14) + ((type) << 12) + ((repr) & 0xfff))
2107 #define MLX5_REPRESENTOR_REPR(repr_id) \
2108 		((repr_id) & 0xfff)
2109 #define MLX5_REPRESENTOR_TYPE(repr_id) \
2110 		(((repr_id) >> 12) & 3)
2111 uint16_t mlx5_representor_id_encode(const struct mlx5_switch_info *info,
2112 				    enum rte_eth_representor_type hpf_type);
2113 int mlx5_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info);
2114 int mlx5_fw_version_get(struct rte_eth_dev *dev, char *fw_ver, size_t fw_size);
2115 const uint32_t *mlx5_dev_supported_ptypes_get(struct rte_eth_dev *dev,
2116 					      size_t *no_of_elements);
2117 int mlx5_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
2118 int mlx5_hairpin_cap_get(struct rte_eth_dev *dev,
2119 			 struct rte_eth_hairpin_cap *cap);
2120 eth_rx_burst_t mlx5_select_rx_function(struct rte_eth_dev *dev);
2121 struct mlx5_priv *mlx5_port_to_eswitch_info(uint16_t port, bool valid);
2122 struct mlx5_priv *mlx5_dev_to_eswitch_info(struct rte_eth_dev *dev);
2123 int mlx5_dev_configure_rss_reta(struct rte_eth_dev *dev);
2124 
2125 /* mlx5_ethdev_os.c */
2126 
2127 int mlx5_get_ifname(const struct rte_eth_dev *dev,
2128 			char (*ifname)[MLX5_NAMESIZE]);
2129 unsigned int mlx5_ifindex(const struct rte_eth_dev *dev);
2130 int mlx5_get_mac(struct rte_eth_dev *dev, uint8_t (*mac)[RTE_ETHER_ADDR_LEN]);
2131 int mlx5_get_mtu(struct rte_eth_dev *dev, uint16_t *mtu);
2132 int mlx5_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
2133 int mlx5_read_clock(struct rte_eth_dev *dev, uint64_t *clock);
2134 int mlx5_link_update(struct rte_eth_dev *dev, int wait_to_complete);
2135 int mlx5_dev_get_flow_ctrl(struct rte_eth_dev *dev,
2136 			   struct rte_eth_fc_conf *fc_conf);
2137 int mlx5_dev_set_flow_ctrl(struct rte_eth_dev *dev,
2138 			   struct rte_eth_fc_conf *fc_conf);
2139 void mlx5_dev_interrupt_handler(void *arg);
2140 void mlx5_dev_interrupt_handler_devx(void *arg);
2141 void mlx5_dev_interrupt_handler_nl(void *arg);
2142 int mlx5_set_link_down(struct rte_eth_dev *dev);
2143 int mlx5_set_link_up(struct rte_eth_dev *dev);
2144 int mlx5_is_removed(struct rte_eth_dev *dev);
2145 int mlx5_sysfs_switch_info(unsigned int ifindex,
2146 			   struct mlx5_switch_info *info);
2147 void mlx5_translate_port_name(const char *port_name_in,
2148 			      struct mlx5_switch_info *port_info_out);
2149 int mlx5_sysfs_bond_info(unsigned int pf_ifindex, unsigned int *ifindex,
2150 			 char *ifname);
2151 int mlx5_get_module_info(struct rte_eth_dev *dev,
2152 			 struct rte_eth_dev_module_info *modinfo);
2153 int mlx5_get_module_eeprom(struct rte_eth_dev *dev,
2154 			   struct rte_dev_eeprom_info *info);
2155 int mlx5_os_read_dev_stat(struct mlx5_priv *priv,
2156 			  const char *ctr_name, uint64_t *stat);
2157 int mlx5_os_read_dev_counters(struct rte_eth_dev *dev, uint64_t *stats);
2158 int mlx5_os_get_stats_n(struct rte_eth_dev *dev);
2159 void mlx5_os_stats_init(struct rte_eth_dev *dev);
2160 int mlx5_get_flag_dropless_rq(struct rte_eth_dev *dev);
2161 
2162 /* mlx5_mac.c */
2163 
2164 void mlx5_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index);
2165 int mlx5_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
2166 		      uint32_t index, uint32_t vmdq);
2167 int mlx5_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr);
2168 int mlx5_set_mc_addr_list(struct rte_eth_dev *dev,
2169 			struct rte_ether_addr *mc_addr_set,
2170 			uint32_t nb_mc_addr);
2171 
2172 /* mlx5_rss.c */
2173 
2174 int mlx5_rss_hash_update(struct rte_eth_dev *dev,
2175 			 struct rte_eth_rss_conf *rss_conf);
2176 int mlx5_rss_hash_conf_get(struct rte_eth_dev *dev,
2177 			   struct rte_eth_rss_conf *rss_conf);
2178 int mlx5_rss_reta_index_resize(struct rte_eth_dev *dev, unsigned int reta_size);
2179 int mlx5_dev_rss_reta_query(struct rte_eth_dev *dev,
2180 			    struct rte_eth_rss_reta_entry64 *reta_conf,
2181 			    uint16_t reta_size);
2182 int mlx5_dev_rss_reta_update(struct rte_eth_dev *dev,
2183 			     struct rte_eth_rss_reta_entry64 *reta_conf,
2184 			     uint16_t reta_size);
2185 
2186 /* mlx5_rxmode.c */
2187 
2188 int mlx5_promiscuous_enable(struct rte_eth_dev *dev);
2189 int mlx5_promiscuous_disable(struct rte_eth_dev *dev);
2190 int mlx5_allmulticast_enable(struct rte_eth_dev *dev);
2191 int mlx5_allmulticast_disable(struct rte_eth_dev *dev);
2192 
2193 /* mlx5_stats.c */
2194 
2195 int mlx5_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats);
2196 int mlx5_stats_reset(struct rte_eth_dev *dev);
2197 int mlx5_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *stats,
2198 		    unsigned int n);
2199 int mlx5_xstats_reset(struct rte_eth_dev *dev);
2200 int mlx5_xstats_get_names(struct rte_eth_dev *dev __rte_unused,
2201 			  struct rte_eth_xstat_name *xstats_names,
2202 			  unsigned int n);
2203 
2204 /* mlx5_vlan.c */
2205 
2206 int mlx5_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on);
2207 void mlx5_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on);
2208 int mlx5_vlan_offload_set(struct rte_eth_dev *dev, int mask);
2209 
2210 /* mlx5_vlan_os.c */
2211 
2212 void mlx5_vlan_vmwa_exit(void *ctx);
2213 void mlx5_vlan_vmwa_release(struct rte_eth_dev *dev,
2214 			    struct mlx5_vf_vlan *vf_vlan);
2215 void mlx5_vlan_vmwa_acquire(struct rte_eth_dev *dev,
2216 			    struct mlx5_vf_vlan *vf_vlan);
2217 void *mlx5_vlan_vmwa_init(struct rte_eth_dev *dev, uint32_t ifindex);
2218 
2219 /* mlx5_trigger.c */
2220 
2221 int mlx5_dev_start(struct rte_eth_dev *dev);
2222 int mlx5_dev_stop(struct rte_eth_dev *dev);
2223 int mlx5_traffic_enable(struct rte_eth_dev *dev);
2224 void mlx5_traffic_disable(struct rte_eth_dev *dev);
2225 int mlx5_traffic_restart(struct rte_eth_dev *dev);
2226 int mlx5_hairpin_queue_peer_update(struct rte_eth_dev *dev, uint16_t peer_queue,
2227 				   struct rte_hairpin_peer_info *current_info,
2228 				   struct rte_hairpin_peer_info *peer_info,
2229 				   uint32_t direction);
2230 int mlx5_hairpin_queue_peer_bind(struct rte_eth_dev *dev, uint16_t cur_queue,
2231 				 struct rte_hairpin_peer_info *peer_info,
2232 				 uint32_t direction);
2233 int mlx5_hairpin_queue_peer_unbind(struct rte_eth_dev *dev, uint16_t cur_queue,
2234 				   uint32_t direction);
2235 int mlx5_hairpin_bind(struct rte_eth_dev *dev, uint16_t rx_port);
2236 int mlx5_hairpin_unbind(struct rte_eth_dev *dev, uint16_t rx_port);
2237 int mlx5_hairpin_get_peer_ports(struct rte_eth_dev *dev, uint16_t *peer_ports,
2238 				size_t len, uint32_t direction);
2239 
2240 /* mlx5_flow.c */
2241 
2242 int mlx5_flow_discover_mreg_c(struct rte_eth_dev *eth_dev);
2243 bool mlx5_flow_ext_mreg_supported(struct rte_eth_dev *dev);
2244 void mlx5_flow_print(struct rte_flow *flow);
2245 int mlx5_flow_validate(struct rte_eth_dev *dev,
2246 		       const struct rte_flow_attr *attr,
2247 		       const struct rte_flow_item items[],
2248 		       const struct rte_flow_action actions[],
2249 		       struct rte_flow_error *error);
2250 struct rte_flow *mlx5_flow_create(struct rte_eth_dev *dev,
2251 				  const struct rte_flow_attr *attr,
2252 				  const struct rte_flow_item items[],
2253 				  const struct rte_flow_action actions[],
2254 				  struct rte_flow_error *error);
2255 int mlx5_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow,
2256 		      struct rte_flow_error *error);
2257 void mlx5_flow_list_flush(struct rte_eth_dev *dev, enum mlx5_flow_type type,
2258 			  bool active);
2259 int mlx5_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *error);
2260 int mlx5_flow_query(struct rte_eth_dev *dev, struct rte_flow *flow,
2261 		    const struct rte_flow_action *action, void *data,
2262 		    struct rte_flow_error *error);
2263 int mlx5_flow_isolate(struct rte_eth_dev *dev, int enable,
2264 		      struct rte_flow_error *error);
2265 int mlx5_flow_ops_get(struct rte_eth_dev *dev, const struct rte_flow_ops **ops);
2266 int mlx5_flow_start_default(struct rte_eth_dev *dev);
2267 void mlx5_flow_stop_default(struct rte_eth_dev *dev);
2268 int mlx5_flow_verify(struct rte_eth_dev *dev);
2269 int mlx5_ctrl_flow_source_queue(struct rte_eth_dev *dev, uint32_t sq_num);
2270 int mlx5_ctrl_flow_vlan(struct rte_eth_dev *dev,
2271 			struct rte_flow_item_eth *eth_spec,
2272 			struct rte_flow_item_eth *eth_mask,
2273 			struct rte_flow_item_vlan *vlan_spec,
2274 			struct rte_flow_item_vlan *vlan_mask);
2275 int mlx5_ctrl_flow(struct rte_eth_dev *dev,
2276 		   struct rte_flow_item_eth *eth_spec,
2277 		   struct rte_flow_item_eth *eth_mask);
2278 int mlx5_flow_lacp_miss(struct rte_eth_dev *dev);
2279 struct rte_flow *mlx5_flow_create_esw_table_zero_flow(struct rte_eth_dev *dev);
2280 uint32_t mlx5_flow_create_devx_sq_miss_flow(struct rte_eth_dev *dev,
2281 					    uint32_t sq_num);
2282 void mlx5_flow_async_pool_query_handle(struct mlx5_dev_ctx_shared *sh,
2283 				       uint64_t async_id, int status);
2284 void mlx5_set_query_alarm(struct mlx5_dev_ctx_shared *sh);
2285 void mlx5_flow_query_alarm(void *arg);
2286 uint32_t mlx5_counter_alloc(struct rte_eth_dev *dev);
2287 void mlx5_counter_free(struct rte_eth_dev *dev, uint32_t cnt);
2288 int mlx5_counter_query(struct rte_eth_dev *dev, uint32_t cnt,
2289 		    bool clear, uint64_t *pkts, uint64_t *bytes, void **action);
2290 int mlx5_flow_dev_dump(struct rte_eth_dev *dev, struct rte_flow *flow,
2291 			FILE *file, struct rte_flow_error *error);
2292 int save_dump_file(const unsigned char *data, uint32_t size,
2293 		uint32_t type, uint64_t id, void *arg, FILE *file);
2294 int mlx5_flow_query_counter(struct rte_eth_dev *dev, struct rte_flow *flow,
2295 	struct rte_flow_query_count *count, struct rte_flow_error *error);
2296 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2297 int mlx5_flow_dev_dump_ipool(struct rte_eth_dev *dev, struct rte_flow *flow,
2298 		FILE *file, struct rte_flow_error *error);
2299 #endif
2300 int mlx5_flow_rx_metadata_negotiate(struct rte_eth_dev *dev,
2301 	uint64_t *features);
2302 void mlx5_flow_rxq_dynf_set(struct rte_eth_dev *dev);
2303 int mlx5_flow_get_aged_flows(struct rte_eth_dev *dev, void **contexts,
2304 			uint32_t nb_contexts, struct rte_flow_error *error);
2305 int mlx5_validate_action_ct(struct rte_eth_dev *dev,
2306 			    const struct rte_flow_action_conntrack *conntrack,
2307 			    struct rte_flow_error *error);
2308 
2309 int mlx5_flow_get_q_aged_flows(struct rte_eth_dev *dev, uint32_t queue_id,
2310 			       void **contexts, uint32_t nb_contexts,
2311 			       struct rte_flow_error *error);
2312 
2313 /* mlx5_mp_os.c */
2314 
2315 int mlx5_mp_os_primary_handle(const struct rte_mp_msg *mp_msg,
2316 			      const void *peer);
2317 int mlx5_mp_os_secondary_handle(const struct rte_mp_msg *mp_msg,
2318 				const void *peer);
2319 void mlx5_mp_os_req_start_rxtx(struct rte_eth_dev *dev);
2320 void mlx5_mp_os_req_stop_rxtx(struct rte_eth_dev *dev);
2321 int mlx5_mp_os_req_queue_control(struct rte_eth_dev *dev, uint16_t queue_id,
2322 				 enum mlx5_mp_req_type req_type);
2323 
2324 /* mlx5_socket.c */
2325 
2326 int mlx5_pmd_socket_init(void);
2327 void mlx5_pmd_socket_uninit(void);
2328 
2329 /* mlx5_flow_meter.c */
2330 
2331 int mlx5_flow_meter_init(struct rte_eth_dev *dev,
2332 			 uint32_t nb_meters,
2333 			 uint32_t nb_meter_profiles,
2334 			 uint32_t nb_meter_policies,
2335 			 uint32_t nb_queues);
2336 void mlx5_flow_meter_uninit(struct rte_eth_dev *dev);
2337 int mlx5_flow_meter_ops_get(struct rte_eth_dev *dev, void *arg);
2338 struct mlx5_flow_meter_info *mlx5_flow_meter_find(struct mlx5_priv *priv,
2339 		uint32_t meter_id, uint32_t *mtr_idx);
2340 struct mlx5_flow_meter_info *
2341 flow_dv_meter_find_by_idx(struct mlx5_priv *priv, uint32_t idx);
2342 int mlx5_flow_meter_attach(struct mlx5_priv *priv,
2343 			   struct mlx5_flow_meter_info *fm,
2344 			   const struct rte_flow_attr *attr,
2345 			   struct rte_flow_error *error);
2346 void mlx5_flow_meter_detach(struct mlx5_priv *priv,
2347 			    struct mlx5_flow_meter_info *fm);
2348 struct mlx5_flow_meter_policy *mlx5_flow_meter_policy_find
2349 		(struct rte_eth_dev *dev,
2350 		uint32_t policy_id,
2351 		uint32_t *policy_idx);
2352 struct mlx5_flow_meter_info *
2353 mlx5_flow_meter_hierarchy_next_meter(struct mlx5_priv *priv,
2354 				     struct mlx5_flow_meter_policy *policy,
2355 				     uint32_t *mtr_idx);
2356 struct mlx5_flow_meter_policy *
2357 mlx5_flow_meter_hierarchy_get_final_policy(struct rte_eth_dev *dev,
2358 					struct mlx5_flow_meter_policy *policy);
2359 int mlx5_flow_meter_flush(struct rte_eth_dev *dev,
2360 			  struct rte_mtr_error *error);
2361 void mlx5_flow_meter_rxq_flush(struct rte_eth_dev *dev);
2362 
2363 /* mlx5_os.c */
2364 
2365 struct rte_pci_driver;
2366 int mlx5_os_capabilities_prepare(struct mlx5_dev_ctx_shared *sh);
2367 void mlx5_os_free_shared_dr(struct mlx5_priv *priv);
2368 int mlx5_os_net_probe(struct mlx5_common_device *cdev,
2369 		      struct mlx5_kvargs_ctrl *mkvlist);
2370 void mlx5_os_dev_shared_handler_install(struct mlx5_dev_ctx_shared *sh);
2371 void mlx5_os_dev_shared_handler_uninstall(struct mlx5_dev_ctx_shared *sh);
2372 void mlx5_os_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index);
2373 int mlx5_os_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
2374 			 uint32_t index);
2375 int mlx5_os_vf_mac_addr_modify(struct mlx5_priv *priv, unsigned int iface_idx,
2376 			       struct rte_ether_addr *mac_addr,
2377 			       int vf_index);
2378 int mlx5_os_set_promisc(struct rte_eth_dev *dev, int enable);
2379 int mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable);
2380 int mlx5_os_set_nonblock_channel_fd(int fd);
2381 void mlx5_os_mac_addr_flush(struct rte_eth_dev *dev);
2382 void mlx5_os_net_cleanup(void);
2383 
2384 /* mlx5_txpp.c */
2385 
2386 int mlx5_txpp_start(struct rte_eth_dev *dev);
2387 void mlx5_txpp_stop(struct rte_eth_dev *dev);
2388 int mlx5_txpp_read_clock(struct rte_eth_dev *dev, uint64_t *timestamp);
2389 int mlx5_txpp_xstats_get(struct rte_eth_dev *dev,
2390 			 struct rte_eth_xstat *stats,
2391 			 unsigned int n, unsigned int n_used);
2392 int mlx5_txpp_xstats_reset(struct rte_eth_dev *dev);
2393 int mlx5_txpp_xstats_get_names(struct rte_eth_dev *dev,
2394 			       struct rte_eth_xstat_name *xstats_names,
2395 			       unsigned int n, unsigned int n_used);
2396 void mlx5_txpp_interrupt_handler(void *cb_arg);
2397 int mlx5_txpp_map_hca_bar(struct rte_eth_dev *dev);
2398 void mlx5_txpp_unmap_hca_bar(struct rte_eth_dev *dev);
2399 
2400 /* mlx5_rxtx.c */
2401 
2402 eth_tx_burst_t mlx5_select_tx_function(struct rte_eth_dev *dev);
2403 
2404 /* mlx5_flow_aso.c */
2405 
2406 int mlx5_aso_mtr_queue_init(struct mlx5_dev_ctx_shared *sh,
2407 			    struct mlx5_aso_mtr_pool *hws_pool,
2408 			    struct mlx5_aso_mtr_pools_mng *pool_mng,
2409 			    uint32_t nb_queues);
2410 void mlx5_aso_mtr_queue_uninit(struct mlx5_dev_ctx_shared *sh,
2411 			       struct mlx5_aso_mtr_pool *hws_pool,
2412 			       struct mlx5_aso_mtr_pools_mng *pool_mng);
2413 int mlx5_aso_queue_init(struct mlx5_dev_ctx_shared *sh,
2414 			enum mlx5_access_aso_opc_mod aso_opc_mode,
2415 			uint32_t nb_queues);
2416 int mlx5_aso_flow_hit_queue_poll_start(struct mlx5_dev_ctx_shared *sh);
2417 int mlx5_aso_flow_hit_queue_poll_stop(struct mlx5_dev_ctx_shared *sh);
2418 void mlx5_aso_queue_uninit(struct mlx5_dev_ctx_shared *sh,
2419 			   enum mlx5_access_aso_opc_mod aso_opc_mod);
2420 int mlx5_aso_meter_update_by_wqe(struct mlx5_dev_ctx_shared *sh, uint32_t queue,
2421 		struct mlx5_aso_mtr *mtr, struct mlx5_mtr_bulk *bulk,
2422 		void *user_data, bool push);
2423 int mlx5_aso_mtr_wait(struct mlx5_dev_ctx_shared *sh, uint32_t queue,
2424 		struct mlx5_aso_mtr *mtr);
2425 int mlx5_aso_ct_update_by_wqe(struct mlx5_dev_ctx_shared *sh, uint32_t queue,
2426 			      struct mlx5_aso_ct_action *ct,
2427 			      const struct rte_flow_action_conntrack *profile,
2428 			      void *user_data,
2429 			      bool push);
2430 int mlx5_aso_ct_wait_ready(struct mlx5_dev_ctx_shared *sh, uint32_t queue,
2431 			   struct mlx5_aso_ct_action *ct);
2432 int mlx5_aso_ct_query_by_wqe(struct mlx5_dev_ctx_shared *sh, uint32_t queue,
2433 			     struct mlx5_aso_ct_action *ct,
2434 			     struct rte_flow_action_conntrack *profile,
2435 			     void *user_data, bool push);
2436 int mlx5_aso_ct_available(struct mlx5_dev_ctx_shared *sh, uint32_t queue,
2437 			  struct mlx5_aso_ct_action *ct);
2438 uint32_t
2439 mlx5_get_supported_sw_parsing_offloads(const struct mlx5_hca_attr *attr);
2440 uint32_t
2441 mlx5_get_supported_tunneling_offloads(const struct mlx5_hca_attr *attr);
2442 
2443 void mlx5_aso_ct_obj_analyze(struct rte_flow_action_conntrack *profile,
2444 			     char *wdata);
2445 void mlx5_aso_push_wqe(struct mlx5_dev_ctx_shared *sh,
2446 		       struct mlx5_aso_sq *sq);
2447 int mlx5_aso_pull_completion(struct mlx5_aso_sq *sq,
2448 			     struct rte_flow_op_result res[],
2449 			     uint16_t n_res);
2450 int mlx5_aso_cnt_queue_init(struct mlx5_dev_ctx_shared *sh);
2451 void mlx5_aso_cnt_queue_uninit(struct mlx5_dev_ctx_shared *sh);
2452 int mlx5_aso_cnt_query(struct mlx5_dev_ctx_shared *sh,
2453 		struct mlx5_hws_cnt_pool *cpool);
2454 int mlx5_aso_ct_queue_init(struct mlx5_dev_ctx_shared *sh,
2455 			   struct mlx5_aso_ct_pools_mng *ct_mng,
2456 			   uint32_t nb_queues);
2457 int mlx5_aso_ct_queue_uninit(struct mlx5_dev_ctx_shared *sh,
2458 			     struct mlx5_aso_ct_pools_mng *ct_mng);
2459 int
2460 mlx5_aso_sq_create(struct mlx5_common_device *cdev, struct mlx5_aso_sq *sq,
2461 		   void *uar, uint16_t log_desc_n);
2462 void
2463 mlx5_aso_destroy_sq(struct mlx5_aso_sq *sq);
2464 void
2465 mlx5_aso_mtr_init_sq(struct mlx5_aso_sq *sq);
2466 void
2467 mlx5_aso_cqe_err_handle(struct mlx5_aso_sq *sq);
2468 
2469 /* mlx5_flow_flex.c */
2470 
2471 struct rte_flow_item_flex_handle *
2472 flow_dv_item_create(struct rte_eth_dev *dev,
2473 		    const struct rte_flow_item_flex_conf *conf,
2474 		    struct rte_flow_error *error);
2475 int flow_dv_item_release(struct rte_eth_dev *dev,
2476 		    const struct rte_flow_item_flex_handle *flex_handle,
2477 		    struct rte_flow_error *error);
2478 int mlx5_flex_item_port_init(struct rte_eth_dev *dev);
2479 void mlx5_flex_item_port_cleanup(struct rte_eth_dev *dev);
2480 void mlx5_flex_flow_translate_item(struct rte_eth_dev *dev, void *matcher,
2481 				   void *key, const struct rte_flow_item *item,
2482 				   bool is_inner);
2483 int mlx5_flex_get_sample_id(const struct mlx5_flex_item *tp,
2484 			    uint32_t idx, uint32_t *pos,
2485 			    bool is_inner, uint32_t *def);
2486 int mlx5_flex_get_parser_value_per_byte_off(const struct rte_flow_item_flex *item,
2487 					    void *flex, uint32_t byte_off,
2488 					    bool is_mask, bool tunnel, uint32_t *value);
2489 int mlx5_flex_acquire_index(struct rte_eth_dev *dev,
2490 			    struct rte_flow_item_flex_handle *handle,
2491 			    bool acquire);
2492 int mlx5_flex_release_index(struct rte_eth_dev *dev, int index);
2493 
2494 /* Flex parser list callbacks. */
2495 struct mlx5_list_entry *mlx5_flex_parser_create_cb(void *list_ctx, void *ctx);
2496 int mlx5_flex_parser_match_cb(void *list_ctx,
2497 			      struct mlx5_list_entry *iter, void *ctx);
2498 void mlx5_flex_parser_remove_cb(void *list_ctx,	struct mlx5_list_entry *entry);
2499 struct mlx5_list_entry *mlx5_flex_parser_clone_cb(void *list_ctx,
2500 						  struct mlx5_list_entry *entry,
2501 						  void *ctx);
2502 void mlx5_flex_parser_clone_free_cb(void *tool_ctx,
2503 				    struct mlx5_list_entry *entry);
2504 
2505 int
2506 mlx5_flow_quota_destroy(struct rte_eth_dev *dev);
2507 int
2508 mlx5_flow_quota_init(struct rte_eth_dev *dev, uint32_t nb_quotas);
2509 struct rte_flow_action_handle *
2510 mlx5_quota_alloc(struct rte_eth_dev *dev, uint32_t queue,
2511 		 const struct rte_flow_action_quota *conf,
2512 		 struct mlx5_hw_q_job *job, bool push,
2513 		 struct rte_flow_error *error);
2514 void
2515 mlx5_quota_async_completion(struct rte_eth_dev *dev, uint32_t queue,
2516 			    struct mlx5_hw_q_job *job);
2517 int
2518 mlx5_quota_query_update(struct rte_eth_dev *dev, uint32_t queue,
2519 			struct rte_flow_action_handle *handle,
2520 			const struct rte_flow_action *update,
2521 			struct rte_flow_query_quota *query,
2522 			struct mlx5_hw_q_job *async_job, bool push,
2523 			struct rte_flow_error *error);
2524 int mlx5_quota_query(struct rte_eth_dev *dev, uint32_t queue,
2525 		     const struct rte_flow_action_handle *handle,
2526 		     struct rte_flow_query_quota *query,
2527 		     struct mlx5_hw_q_job *async_job, bool push,
2528 		     struct rte_flow_error *error);
2529 
2530 int mlx5_alloc_srh_flex_parser(struct rte_eth_dev *dev);
2531 
2532 void mlx5_free_srh_flex_parser(struct rte_eth_dev *dev);
2533 #endif /* RTE_PMD_MLX5_H_ */
2534