net/mlx5: add queue and RSS HW steering action
[dpdk.git] / drivers / net / mlx5 / mlx5.h
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 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
37 #include "mlx5_dr.h"
38 #endif
39
40 #define MLX5_SH(dev) (((struct mlx5_priv *)(dev)->data->dev_private)->sh)
41
42 /*
43  * Number of modification commands.
44  * The maximal actions amount in FW is some constant, and it is 16 in the
45  * latest releases. In some old releases, it will be limited to 8.
46  * Since there is no interface to query the capacity, the maximal value should
47  * be used to allow PMD to create the flow. The validation will be done in the
48  * lower driver layer or FW. A failure will be returned if exceeds the maximal
49  * supported actions number on the root table.
50  * On non-root tables, there is no limitation, but 32 is enough right now.
51  */
52 #define MLX5_MAX_MODIFY_NUM                     32
53 #define MLX5_ROOT_TBL_MODIFY_NUM                16
54
55 /* Maximal number of flex items created on the port.*/
56 #define MLX5_PORT_FLEX_ITEM_NUM                 4
57
58 /* Maximal number of field/field parts to map into sample registers .*/
59 #define MLX5_FLEX_ITEM_MAPPING_NUM              32
60
61 enum mlx5_ipool_index {
62 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
63         MLX5_IPOOL_DECAP_ENCAP = 0, /* Pool for encap/decap resource. */
64         MLX5_IPOOL_PUSH_VLAN, /* Pool for push vlan resource. */
65         MLX5_IPOOL_TAG, /* Pool for tag resource. */
66         MLX5_IPOOL_PORT_ID, /* Pool for port id resource. */
67         MLX5_IPOOL_JUMP, /* Pool for SWS jump resource. */
68         /* Pool for HWS group. Jump action will be created internally. */
69         MLX5_IPOOL_HW_GRP = MLX5_IPOOL_JUMP,
70         MLX5_IPOOL_SAMPLE, /* Pool for sample resource. */
71         MLX5_IPOOL_DEST_ARRAY, /* Pool for destination array resource. */
72         MLX5_IPOOL_TUNNEL_ID, /* Pool for tunnel offload context */
73         MLX5_IPOOL_TNL_TBL_ID, /* Pool for tunnel table ID. */
74 #endif
75         MLX5_IPOOL_MTR, /* Pool for meter resource. */
76         MLX5_IPOOL_MCP, /* Pool for metadata resource. */
77         MLX5_IPOOL_HRXQ, /* Pool for hrxq resource. */
78         MLX5_IPOOL_MLX5_FLOW, /* Pool for mlx5 flow handle. */
79         MLX5_IPOOL_RTE_FLOW, /* Pool for rte_flow. */
80         MLX5_IPOOL_RSS_EXPANTION_FLOW_ID, /* Pool for Queue/RSS flow ID. */
81         MLX5_IPOOL_RSS_SHARED_ACTIONS, /* Pool for RSS shared actions. */
82         MLX5_IPOOL_MTR_POLICY, /* Pool for meter policy resource. */
83         MLX5_IPOOL_MAX,
84 };
85
86 /*
87  * There are three reclaim memory mode supported.
88  * 0(none) means no memory reclaim.
89  * 1(light) means only PMD level reclaim.
90  * 2(aggressive) means both PMD and rdma-core level reclaim.
91  */
92 enum mlx5_reclaim_mem_mode {
93         MLX5_RCM_NONE, /* Don't reclaim memory. */
94         MLX5_RCM_LIGHT, /* Reclaim PMD level. */
95         MLX5_RCM_AGGR, /* Reclaim PMD and rdma-core level. */
96 };
97
98 /* The type of flow. */
99 enum mlx5_flow_type {
100         MLX5_FLOW_TYPE_CTL, /* Control flow. */
101         MLX5_FLOW_TYPE_GEN, /* General flow. */
102         MLX5_FLOW_TYPE_MCP, /* MCP flow. */
103         MLX5_FLOW_TYPE_MAXI,
104 };
105
106 /* The mode of delay drop for Rx queues. */
107 enum mlx5_delay_drop_mode {
108         MLX5_DELAY_DROP_NONE = 0, /* All disabled. */
109         MLX5_DELAY_DROP_STANDARD = RTE_BIT32(0), /* Standard queues enable. */
110         MLX5_DELAY_DROP_HAIRPIN = RTE_BIT32(1), /* Hairpin queues enable. */
111 };
112
113 /* The HWS action type root/non-root. */
114 enum mlx5_hw_action_flag_type {
115         MLX5_HW_ACTION_FLAG_ROOT, /* Root action. */
116         MLX5_HW_ACTION_FLAG_NONE_ROOT, /* Non-root ation. */
117         MLX5_HW_ACTION_FLAG_MAX, /* Maximum action flag. */
118 };
119
120 /* Hlist and list callback context. */
121 struct mlx5_flow_cb_ctx {
122         struct rte_eth_dev *dev;
123         struct rte_flow_error *error;
124         void *data;
125         void *data2;
126 };
127
128 /* Device capabilities structure which isn't changed in any stage. */
129 struct mlx5_dev_cap {
130         int max_cq; /* Maximum number of supported CQs */
131         int max_qp; /* Maximum number of supported QPs. */
132         int max_qp_wr; /* Maximum number of outstanding WR on any WQ. */
133         int max_sge;
134         /* Maximum number of s/g per WR for SQ & RQ of QP for non RDMA Read
135          * operations.
136          */
137         int mps; /* Multi-packet send supported mode. */
138         uint32_t vf:1; /* This is a VF. */
139         uint32_t sf:1; /* This is a SF. */
140         uint32_t txpp_en:1; /* Tx packet pacing is supported. */
141         uint32_t mpls_en:1; /* MPLS over GRE/UDP is supported. */
142         uint32_t cqe_comp:1; /* CQE compression is supported. */
143         uint32_t hw_csum:1; /* Checksum offload is supported. */
144         uint32_t hw_padding:1; /* End alignment padding is supported. */
145         uint32_t dest_tir:1; /* Whether advanced DR API is available. */
146         uint32_t dv_esw_en:1; /* E-Switch DV flow is supported. */
147         uint32_t dv_flow_en:1; /* DV flow is supported. */
148         uint32_t swp:3; /* Tx generic tunnel checksum and TSO offload. */
149         uint32_t hw_vlan_strip:1; /* VLAN stripping is supported. */
150         uint32_t scatter_fcs_w_decap_disable:1;
151         /* HW has bug working with tunnel packet decap and scatter FCS. */
152         uint32_t hw_fcs_strip:1; /* FCS stripping is supported. */
153         uint32_t rt_timestamp:1; /* Realtime timestamp format. */
154         uint32_t lro_supported:1; /* Whether LRO is supported. */
155         uint32_t rq_delay_drop_en:1; /* Enable RxQ delay drop. */
156         uint32_t tunnel_en:3;
157         /* Whether tunnel stateless offloads are supported. */
158         uint32_t ind_table_max_size;
159         /* Maximum receive WQ indirection table size. */
160         uint32_t tso:1; /* Whether TSO is supported. */
161         uint32_t tso_max_payload_sz; /* Maximum TCP payload for TSO. */
162         struct {
163                 uint32_t enabled:1; /* Whether MPRQ is enabled. */
164                 uint32_t log_min_stride_size; /* Log min size of a stride. */
165                 uint32_t log_max_stride_size; /* Log max size of a stride. */
166                 uint32_t log_min_stride_num; /* Log min num of strides. */
167                 uint32_t log_max_stride_num; /* Log max num of strides. */
168                 uint32_t log_min_stride_wqe_size;
169                 /* Log min WQE size, (size of single stride)*(num of strides).*/
170         } mprq; /* Capability for Multi-Packet RQ. */
171         char fw_ver[64]; /* Firmware version of this device. */
172 };
173
174 /** Data associated with devices to spawn. */
175 struct mlx5_dev_spawn_data {
176         uint32_t ifindex; /**< Network interface index. */
177         uint32_t max_port; /**< Device maximal port index. */
178         uint32_t phys_port; /**< Device physical port index. */
179         int pf_bond; /**< bonding device PF index. < 0 - no bonding */
180         struct mlx5_switch_info info; /**< Switch information. */
181         const char *phys_dev_name; /**< Name of physical device. */
182         struct rte_eth_dev *eth_dev; /**< Associated Ethernet device. */
183         struct rte_pci_device *pci_dev; /**< Backend PCI device. */
184         struct mlx5_common_device *cdev; /**< Backend common device. */
185         struct mlx5_bond_info *bond_info;
186 };
187
188 /** Data associated with socket messages. */
189 struct mlx5_flow_dump_req  {
190         uint32_t port_id; /**< There are plans in DPDK to extend port_id. */
191         uint64_t flow_id;
192 } __rte_packed;
193
194 struct mlx5_flow_dump_ack {
195         int rc; /**< Return code. */
196 };
197
198 LIST_HEAD(mlx5_dev_list, mlx5_dev_ctx_shared);
199
200 /* Shared data between primary and secondary processes. */
201 struct mlx5_shared_data {
202         rte_spinlock_t lock;
203         /* Global spinlock for primary and secondary processes. */
204         int init_done; /* Whether primary has done initialization. */
205         unsigned int secondary_cnt; /* Number of secondary processes init'd. */
206 };
207
208 /* Per-process data structure, not visible to other processes. */
209 struct mlx5_local_data {
210         int init_done; /* Whether a secondary has done initialization. */
211 };
212
213 extern struct mlx5_shared_data *mlx5_shared_data;
214
215 /* Dev ops structs */
216 extern const struct eth_dev_ops mlx5_dev_ops;
217 extern const struct eth_dev_ops mlx5_dev_sec_ops;
218 extern const struct eth_dev_ops mlx5_dev_ops_isolate;
219
220 struct mlx5_counter_ctrl {
221         /* Name of the counter. */
222         char dpdk_name[RTE_ETH_XSTATS_NAME_SIZE];
223         /* Name of the counter on the device table. */
224         char ctr_name[RTE_ETH_XSTATS_NAME_SIZE];
225         uint32_t dev:1; /**< Nonzero for dev counters. */
226 };
227
228 struct mlx5_xstats_ctrl {
229         /* Number of device stats. */
230         uint16_t stats_n;
231         /* Number of device stats identified by PMD. */
232         uint16_t  mlx5_stats_n;
233         /* Index in the device counters table. */
234         uint16_t dev_table_idx[MLX5_MAX_XSTATS];
235         uint64_t base[MLX5_MAX_XSTATS];
236         uint64_t xstats[MLX5_MAX_XSTATS];
237         uint64_t hw_stats[MLX5_MAX_XSTATS];
238         struct mlx5_counter_ctrl info[MLX5_MAX_XSTATS];
239 };
240
241 struct mlx5_stats_ctrl {
242         /* Base for imissed counter. */
243         uint64_t imissed_base;
244         uint64_t imissed;
245 };
246
247 /* Maximal size of coalesced segment for LRO is set in chunks of 256 Bytes. */
248 #define MLX5_LRO_SEG_CHUNK_SIZE 256u
249
250 /* Maximal size of aggregated LRO packet. */
251 #define MLX5_MAX_LRO_SIZE (UINT8_MAX * MLX5_LRO_SEG_CHUNK_SIZE)
252
253 /* Maximal number of segments to split. */
254 #define MLX5_MAX_RXQ_NSEG (1u << MLX5_MAX_LOG_RQ_SEGS)
255
256 /*
257  * Port configuration structure.
258  * User device parameters disabled features.
259  * This structure contains all configurations coming from devargs which
260  * oriented to port. When probing again, devargs doesn't have to be compatible
261  * with primary devargs. It is updated for each port in spawn function.
262  */
263 struct mlx5_port_config {
264         unsigned int hw_vlan_insert:1; /* VLAN insertion in WQE is supported. */
265         unsigned int hw_padding:1; /* End alignment padding is supported. */
266         unsigned int cqe_comp:1; /* CQE compression is enabled. */
267         unsigned int cqe_comp_fmt:3; /* CQE compression format. */
268         unsigned int rx_vec_en:1; /* Rx vector is enabled. */
269         unsigned int std_delay_drop:1; /* Enable standard Rxq delay drop. */
270         unsigned int hp_delay_drop:1; /* Enable hairpin Rxq delay drop. */
271         struct {
272                 unsigned int enabled:1; /* Whether MPRQ is enabled. */
273                 unsigned int log_stride_num; /* Log number of strides. */
274                 unsigned int log_stride_size; /* Log size of a stride. */
275                 unsigned int max_memcpy_len;
276                 /* Maximum packet size to memcpy Rx packets. */
277                 unsigned int min_rxqs_num;
278                 /* Rx queue count threshold to enable MPRQ. */
279         } mprq; /* Configurations for Multi-Packet RQ. */
280         int mps; /* Multi-packet send supported mode. */
281         unsigned int max_dump_files_num; /* Maximum dump files per queue. */
282         unsigned int log_hp_size; /* Single hairpin queue data size in total. */
283         unsigned int lro_timeout; /* LRO user configuration. */
284         int txqs_inline; /* Queue number threshold for inlining. */
285         int txq_inline_min; /* Minimal amount of data bytes to inline. */
286         int txq_inline_max; /* Max packet size for inlining with SEND. */
287         int txq_inline_mpw; /* Max packet size for inlining with eMPW. */
288 };
289
290 /*
291  * Share context device configuration structure.
292  * User device parameters disabled features.
293  * This structure updated once for device in mlx5_alloc_shared_dev_ctx()
294  * function and cannot change even when probing again.
295  */
296 struct mlx5_sh_config {
297         int tx_pp; /* Timestamp scheduling granularity in nanoseconds. */
298         int tx_skew; /* Tx scheduling skew between WQE and data on wire. */
299         uint32_t reclaim_mode:2; /* Memory reclaim mode. */
300         uint32_t dv_esw_en:1; /* Enable E-Switch DV flow. */
301         /* Enable DV flow. 1 means SW steering, 2 means HW steering. */
302         unsigned int dv_flow_en:2;
303         uint32_t dv_xmeta_en:2; /* Enable extensive flow metadata. */
304         uint32_t dv_miss_info:1; /* Restore packet after partial hw miss. */
305         uint32_t l3_vxlan_en:1; /* Enable L3 VXLAN flow creation. */
306         uint32_t vf_nl_en:1; /* Enable Netlink requests in VF mode. */
307         uint32_t lacp_by_user:1; /* Enable user to manage LACP traffic. */
308         uint32_t decap_en:1; /* Whether decap will be used or not. */
309         uint32_t hw_fcs_strip:1; /* FCS stripping is supported. */
310         uint32_t allow_duplicate_pattern:1;
311         /* Allow/Prevent the duplicate rules pattern. */
312 };
313
314
315 /* Structure for VF VLAN workaround. */
316 struct mlx5_vf_vlan {
317         uint32_t tag:12;
318         uint32_t created:1;
319 };
320
321 /* Flow drop context necessary due to Verbs API. */
322 struct mlx5_drop {
323         struct mlx5_hrxq *hrxq; /* Hash Rx queue queue. */
324         struct mlx5_rxq_priv *rxq; /* Rx queue. */
325 };
326
327 /* Loopback dummy queue resources required due to Verbs API. */
328 struct mlx5_lb_ctx {
329         struct ibv_qp *qp; /* QP object. */
330         void *ibv_cq; /* Completion queue. */
331         uint16_t refcnt; /* Reference count for representors. */
332 };
333
334 /* HW steering queue job descriptor type. */
335 enum {
336         MLX5_HW_Q_JOB_TYPE_CREATE, /* Flow create job type. */
337         MLX5_HW_Q_JOB_TYPE_DESTROY, /* Flow destroy job type. */
338 };
339
340 /* HW steering flow management job descriptor. */
341 struct mlx5_hw_q_job {
342         uint32_t type; /* Job type. */
343         struct rte_flow_hw *flow; /* Flow attached to the job. */
344         void *user_data; /* Job user data. */
345 };
346
347 /* HW steering job descriptor LIFO pool. */
348 struct mlx5_hw_q {
349         uint32_t job_idx; /* Free job index. */
350         uint32_t size; /* LIFO size. */
351         struct mlx5_hw_q_job **job; /* LIFO header. */
352 } __rte_cache_aligned;
353
354 #define MLX5_COUNTERS_PER_POOL 512
355 #define MLX5_MAX_PENDING_QUERIES 4
356 #define MLX5_CNT_CONTAINER_RESIZE 64
357 #define MLX5_CNT_SHARED_OFFSET 0x80000000
358 #define IS_BATCH_CNT(cnt) (((cnt) & (MLX5_CNT_SHARED_OFFSET - 1)) >= \
359                            MLX5_CNT_BATCH_OFFSET)
360 #define MLX5_CNT_SIZE (sizeof(struct mlx5_flow_counter))
361 #define MLX5_AGE_SIZE (sizeof(struct mlx5_age_param))
362
363 #define MLX5_CNT_LEN(pool) \
364         (MLX5_CNT_SIZE + \
365         ((pool)->is_aged ? MLX5_AGE_SIZE : 0))
366 #define MLX5_POOL_GET_CNT(pool, index) \
367         ((struct mlx5_flow_counter *) \
368         ((uint8_t *)((pool) + 1) + (index) * (MLX5_CNT_LEN(pool))))
369 #define MLX5_CNT_ARRAY_IDX(pool, cnt) \
370         ((int)(((uint8_t *)(cnt) - (uint8_t *)((pool) + 1)) / \
371         MLX5_CNT_LEN(pool)))
372 #define MLX5_TS_MASK_SECS 8ull
373 /* timestamp wrapping in seconds, must be  power of 2. */
374
375 /*
376  * The pool index and offset of counter in the pool array makes up the
377  * counter index. In case the counter is from pool 0 and offset 0, it
378  * should plus 1 to avoid index 0, since 0 means invalid counter index
379  * currently.
380  */
381 #define MLX5_MAKE_CNT_IDX(pi, offset) \
382         ((pi) * MLX5_COUNTERS_PER_POOL + (offset) + 1)
383 #define MLX5_CNT_TO_AGE(cnt) \
384         ((struct mlx5_age_param *)((cnt) + 1))
385 /*
386  * The maximum single counter is 0x800000 as MLX5_CNT_BATCH_OFFSET
387  * defines. The pool size is 512, pool index should never reach
388  * INT16_MAX.
389  */
390 #define POOL_IDX_INVALID UINT16_MAX
391
392 /* Age status. */
393 enum {
394         AGE_FREE, /* Initialized state. */
395         AGE_CANDIDATE, /* Counter assigned to flows. */
396         AGE_TMOUT, /* Timeout, wait for rte_flow_get_aged_flows and destroy. */
397 };
398
399 enum mlx5_counter_type {
400         MLX5_COUNTER_TYPE_ORIGIN,
401         MLX5_COUNTER_TYPE_AGE,
402         MLX5_COUNTER_TYPE_MAX,
403 };
404
405 /* Counter age parameter. */
406 struct mlx5_age_param {
407         uint16_t state; /**< Age state (atomically accessed). */
408         uint16_t port_id; /**< Port id of the counter. */
409         uint32_t timeout:24; /**< Aging timeout in seconds. */
410         uint32_t sec_since_last_hit;
411         /**< Time in seconds since last hit (atomically accessed). */
412         void *context; /**< Flow counter age context. */
413 };
414
415 struct flow_counter_stats {
416         uint64_t hits;
417         uint64_t bytes;
418 };
419
420 /* Shared counters information for counters. */
421 struct mlx5_flow_counter_shared {
422         union {
423                 uint32_t refcnt; /* Only for shared action management. */
424                 uint32_t id; /* User counter ID for legacy sharing. */
425         };
426 };
427
428 struct mlx5_flow_counter_pool;
429 /* Generic counters information. */
430 struct mlx5_flow_counter {
431         union {
432                 /*
433                  * User-defined counter shared info is only used during
434                  * counter active time. And aging counter sharing is not
435                  * supported, so active shared counter will not be chained
436                  * to the aging list. For shared counter, only when it is
437                  * released, the TAILQ entry memory will be used, at that
438                  * time, shared memory is not used anymore.
439                  *
440                  * Similarly to none-batch counter dcs, since it doesn't
441                  * support aging, while counter is allocated, the entry
442                  * memory is not used anymore. In this case, as bytes
443                  * memory is used only when counter is allocated, and
444                  * entry memory is used only when counter is free. The
445                  * dcs pointer can be saved to these two different place
446                  * at different stage. It will eliminate the individual
447                  * counter extend struct.
448                  */
449                 TAILQ_ENTRY(mlx5_flow_counter) next;
450                 /**< Pointer to the next flow counter structure. */
451                 struct {
452                         struct mlx5_flow_counter_shared shared_info;
453                         /**< Shared counter information. */
454                         void *dcs_when_active;
455                         /*
456                          * For non-batch mode, the dcs will be saved
457                          * here when the counter is free.
458                          */
459                 };
460         };
461         union {
462                 uint64_t hits; /**< Reset value of hits packets. */
463                 struct mlx5_flow_counter_pool *pool; /**< Counter pool. */
464         };
465         union {
466                 uint64_t bytes; /**< Reset value of bytes. */
467                 void *dcs_when_free;
468                 /*
469                  * For non-batch mode, the dcs will be saved here
470                  * when the counter is free.
471                  */
472         };
473         void *action; /**< Pointer to the dv action. */
474 };
475
476 TAILQ_HEAD(mlx5_counters, mlx5_flow_counter);
477
478 /* Generic counter pool structure - query is in pool resolution. */
479 struct mlx5_flow_counter_pool {
480         TAILQ_ENTRY(mlx5_flow_counter_pool) next;
481         struct mlx5_counters counters[2]; /* Free counter list. */
482         struct mlx5_devx_obj *min_dcs;
483         /* The devx object of the minimum counter ID. */
484         uint64_t time_of_last_age_check;
485         /* System time (from rte_rdtsc()) read in the last aging check. */
486         uint32_t index:30; /* Pool index in container. */
487         uint32_t is_aged:1; /* Pool with aging counter. */
488         volatile uint32_t query_gen:1; /* Query round. */
489         rte_spinlock_t sl; /* The pool lock. */
490         rte_spinlock_t csl; /* The pool counter free list lock. */
491         struct mlx5_counter_stats_raw *raw;
492         struct mlx5_counter_stats_raw *raw_hw;
493         /* The raw on HW working. */
494 };
495
496 /* Memory management structure for group of counter statistics raws. */
497 struct mlx5_counter_stats_mem_mng {
498         LIST_ENTRY(mlx5_counter_stats_mem_mng) next;
499         struct mlx5_counter_stats_raw *raws;
500         struct mlx5_pmd_wrapped_mr wm;
501 };
502
503 /* Raw memory structure for the counter statistics values of a pool. */
504 struct mlx5_counter_stats_raw {
505         LIST_ENTRY(mlx5_counter_stats_raw) next;
506         struct mlx5_counter_stats_mem_mng *mem_mng;
507         volatile struct flow_counter_stats *data;
508 };
509
510 TAILQ_HEAD(mlx5_counter_pools, mlx5_flow_counter_pool);
511
512 /* Counter global management structure. */
513 struct mlx5_flow_counter_mng {
514         volatile uint16_t n_valid; /* Number of valid pools. */
515         uint16_t n; /* Number of pools. */
516         uint16_t last_pool_idx; /* Last used pool index */
517         int min_id; /* The minimum counter ID in the pools. */
518         int max_id; /* The maximum counter ID in the pools. */
519         rte_spinlock_t pool_update_sl; /* The pool update lock. */
520         rte_spinlock_t csl[MLX5_COUNTER_TYPE_MAX];
521         /* The counter free list lock. */
522         struct mlx5_counters counters[MLX5_COUNTER_TYPE_MAX];
523         /* Free counter list. */
524         struct mlx5_flow_counter_pool **pools; /* Counter pool array. */
525         struct mlx5_counter_stats_mem_mng *mem_mng;
526         /* Hold the memory management for the next allocated pools raws. */
527         struct mlx5_counters flow_counters; /* Legacy flow counter list. */
528         uint8_t pending_queries;
529         uint16_t pool_index;
530         uint8_t query_thread_on;
531         bool counter_fallback; /* Use counter fallback management. */
532         LIST_HEAD(mem_mngs, mlx5_counter_stats_mem_mng) mem_mngs;
533         LIST_HEAD(stat_raws, mlx5_counter_stats_raw) free_stat_raws;
534 };
535
536 /* ASO structures. */
537 #define MLX5_ASO_QUEUE_LOG_DESC 10
538
539 struct mlx5_aso_cq {
540         uint16_t log_desc_n;
541         uint32_t cq_ci:24;
542         struct mlx5_devx_cq cq_obj;
543         uint64_t errors;
544 };
545
546 struct mlx5_aso_sq_elem {
547         union {
548                 struct {
549                         struct mlx5_aso_age_pool *pool;
550                         uint16_t burst_size;
551                 };
552                 struct mlx5_aso_mtr *mtr;
553                 struct {
554                         struct mlx5_aso_ct_action *ct;
555                         char *query_data;
556                 };
557         };
558 };
559
560 struct mlx5_aso_sq {
561         uint16_t log_desc_n;
562         rte_spinlock_t sqsl;
563         struct mlx5_aso_cq cq;
564         struct mlx5_devx_sq sq_obj;
565         struct mlx5_pmd_mr mr;
566         uint16_t pi;
567         uint32_t head;
568         uint32_t tail;
569         uint32_t sqn;
570         struct mlx5_aso_sq_elem elts[1 << MLX5_ASO_QUEUE_LOG_DESC];
571         uint16_t next; /* Pool index of the next pool to query. */
572 };
573
574 struct mlx5_aso_age_action {
575         LIST_ENTRY(mlx5_aso_age_action) next;
576         void *dr_action;
577         uint32_t refcnt;
578         /* Following fields relevant only when action is active. */
579         uint16_t offset; /* Offset of ASO Flow Hit flag in DevX object. */
580         struct mlx5_age_param age_params;
581 };
582
583 #define MLX5_ASO_AGE_ACTIONS_PER_POOL 512
584
585 struct mlx5_aso_age_pool {
586         struct mlx5_devx_obj *flow_hit_aso_obj;
587         uint16_t index; /* Pool index in pools array. */
588         uint64_t time_of_last_age_check; /* In seconds. */
589         struct mlx5_aso_age_action actions[MLX5_ASO_AGE_ACTIONS_PER_POOL];
590 };
591
592 LIST_HEAD(aso_age_list, mlx5_aso_age_action);
593
594 struct mlx5_aso_age_mng {
595         struct mlx5_aso_age_pool **pools;
596         uint16_t n; /* Total number of pools. */
597         uint16_t next; /* Number of pools in use, index of next free pool. */
598         rte_rwlock_t resize_rwl; /* Lock for resize objects. */
599         rte_spinlock_t free_sl; /* Lock for free list access. */
600         struct aso_age_list free; /* Free age actions list - ready to use. */
601         struct mlx5_aso_sq aso_sq; /* ASO queue objects. */
602 };
603
604 /* Management structure for geneve tlv option */
605 struct mlx5_geneve_tlv_option_resource {
606         struct mlx5_devx_obj *obj; /* Pointer to the geneve tlv opt object. */
607         rte_be16_t option_class; /* geneve tlv opt class.*/
608         uint8_t option_type; /* geneve tlv opt type.*/
609         uint8_t length; /* geneve tlv opt length. */
610         uint32_t refcnt; /* geneve tlv object reference counter */
611 };
612
613
614 #define MLX5_AGE_EVENT_NEW              1
615 #define MLX5_AGE_TRIGGER                2
616 #define MLX5_AGE_SET(age_info, BIT) \
617         ((age_info)->flags |= (1 << (BIT)))
618 #define MLX5_AGE_UNSET(age_info, BIT) \
619         ((age_info)->flags &= ~(1 << (BIT)))
620 #define MLX5_AGE_GET(age_info, BIT) \
621         ((age_info)->flags & (1 << (BIT)))
622 #define GET_PORT_AGE_INFO(priv) \
623         (&((priv)->sh->port[(priv)->dev_port - 1].age_info))
624 /* Current time in seconds. */
625 #define MLX5_CURR_TIME_SEC      (rte_rdtsc() / rte_get_tsc_hz())
626
627 /* Aging information for per port. */
628 struct mlx5_age_info {
629         uint8_t flags; /* Indicate if is new event or need to be triggered. */
630         struct mlx5_counters aged_counters; /* Aged counter list. */
631         struct aso_age_list aged_aso; /* Aged ASO actions list. */
632         rte_spinlock_t aged_sl; /* Aged flow list lock. */
633 };
634
635 /* Per port data of shared IB device. */
636 struct mlx5_dev_shared_port {
637         uint32_t ih_port_id;
638         uint32_t devx_ih_port_id;
639         /*
640          * Interrupt handler port_id. Used by shared interrupt
641          * handler to find the corresponding rte_eth device
642          * by IB port index. If value is equal or greater
643          * RTE_MAX_ETHPORTS it means there is no subhandler
644          * installed for specified IB port index.
645          */
646         struct mlx5_age_info age_info;
647         /* Aging information for per port. */
648 };
649
650 /*
651  * Max number of actions per DV flow.
652  * See CREATE_FLOW_MAX_FLOW_ACTIONS_SUPPORTED
653  * in rdma-core file providers/mlx5/verbs.c.
654  */
655 #define MLX5_DV_MAX_NUMBER_OF_ACTIONS 8
656
657 /* ASO flow meter structures */
658 /* Modify this value if enum rte_mtr_color changes. */
659 #define RTE_MTR_DROPPED RTE_COLORS
660 /* Yellow is now supported. */
661 #define MLX5_MTR_RTE_COLORS (RTE_COLOR_YELLOW + 1)
662 /* table_id 22 bits in mlx5_flow_tbl_key so limit policy number. */
663 #define MLX5_MAX_SUB_POLICY_TBL_NUM 0x3FFFFF
664 #define MLX5_INVALID_POLICY_ID UINT32_MAX
665 /* Suffix table_id on MLX5_FLOW_TABLE_LEVEL_METER. */
666 #define MLX5_MTR_TABLE_ID_SUFFIX 1
667 /* Drop table_id on MLX5_FLOW_TABLE_LEVEL_METER. */
668 #define MLX5_MTR_TABLE_ID_DROP 2
669 /* Priority of the meter policy matcher. */
670 #define MLX5_MTR_POLICY_MATCHER_PRIO 0
671 /* Green & yellow color valid for now. */
672 #define MLX5_MTR_POLICY_MODE_ALL 0
673 /* Default policy. */
674 #define MLX5_MTR_POLICY_MODE_DEF 1
675 /* Only green color valid. */
676 #define MLX5_MTR_POLICY_MODE_OG 2
677 /* Only yellow color valid. */
678 #define MLX5_MTR_POLICY_MODE_OY 3
679
680 enum mlx5_meter_domain {
681         MLX5_MTR_DOMAIN_INGRESS,
682         MLX5_MTR_DOMAIN_EGRESS,
683         MLX5_MTR_DOMAIN_TRANSFER,
684         MLX5_MTR_DOMAIN_MAX,
685 };
686 #define MLX5_MTR_DOMAIN_INGRESS_BIT  (1 << MLX5_MTR_DOMAIN_INGRESS)
687 #define MLX5_MTR_DOMAIN_EGRESS_BIT   (1 << MLX5_MTR_DOMAIN_EGRESS)
688 #define MLX5_MTR_DOMAIN_TRANSFER_BIT (1 << MLX5_MTR_DOMAIN_TRANSFER)
689 #define MLX5_MTR_ALL_DOMAIN_BIT      (MLX5_MTR_DOMAIN_INGRESS_BIT | \
690                                         MLX5_MTR_DOMAIN_EGRESS_BIT | \
691                                         MLX5_MTR_DOMAIN_TRANSFER_BIT)
692
693 /* The color tag rule structure. */
694 struct mlx5_sub_policy_color_rule {
695         void *rule;
696         /* The color rule. */
697         struct mlx5_flow_dv_matcher *matcher;
698         /* The color matcher. */
699         TAILQ_ENTRY(mlx5_sub_policy_color_rule) next_port;
700         /**< Pointer to the next color rule structure. */
701         int32_t src_port;
702         /* On which src port this rule applied. */
703 };
704
705 TAILQ_HEAD(mlx5_sub_policy_color_rules, mlx5_sub_policy_color_rule);
706
707 /*
708  * Meter sub-policy structure.
709  * Each RSS TIR in meter policy need its own sub-policy resource.
710  */
711 struct mlx5_flow_meter_sub_policy {
712         uint32_t main_policy_id:1;
713         /* Main policy id is same as this sub_policy id. */
714         uint32_t idx:31;
715         /* Index to sub_policy ipool entity. */
716         void *main_policy;
717         /* Point to struct mlx5_flow_meter_policy. */
718         struct mlx5_flow_tbl_resource *tbl_rsc;
719         /* The sub-policy table resource. */
720         uint32_t rix_hrxq[MLX5_MTR_RTE_COLORS];
721         /* Index to TIR resource. */
722         struct mlx5_flow_tbl_resource *jump_tbl[MLX5_MTR_RTE_COLORS];
723         /* Meter jump/drop table. */
724         struct mlx5_sub_policy_color_rules color_rules[RTE_COLORS];
725         /* List for the color rules. */
726 };
727
728 struct mlx5_meter_policy_acts {
729         uint8_t actions_n;
730         /* Number of actions. */
731         void *dv_actions[MLX5_DV_MAX_NUMBER_OF_ACTIONS];
732         /* Action list. */
733 };
734
735 struct mlx5_meter_policy_action_container {
736         uint32_t rix_mark;
737         /* Index to the mark action. */
738         struct mlx5_flow_dv_modify_hdr_resource *modify_hdr;
739         /* Pointer to modify header resource in cache. */
740         uint8_t fate_action;
741         /* Fate action type. */
742         union {
743                 struct rte_flow_action *rss;
744                 /* Rss action configuration. */
745                 uint32_t rix_port_id_action;
746                 /* Index to port ID action resource. */
747                 void *dr_jump_action[MLX5_MTR_DOMAIN_MAX];
748                 /* Jump/drop action per color. */
749                 uint16_t queue;
750                 /* Queue action configuration. */
751                 struct {
752                         uint32_t next_mtr_id;
753                         /* The next meter id. */
754                         void *next_sub_policy;
755                         /* Next meter's sub-policy. */
756                 };
757         };
758 };
759
760 /* Flow meter policy parameter structure. */
761 struct mlx5_flow_meter_policy {
762         struct rte_eth_dev *dev;
763         /* The port dev on which policy is created. */
764         uint32_t is_rss:1;
765         /* Is RSS policy table. */
766         uint32_t ingress:1;
767         /* Rule applies to ingress domain. */
768         uint32_t egress:1;
769         /* Rule applies to egress domain. */
770         uint32_t transfer:1;
771         /* Rule applies to transfer domain. */
772         uint32_t is_queue:1;
773         /* Is queue action in policy table. */
774         uint32_t is_hierarchy:1;
775         /* Is meter action in policy table. */
776         uint32_t skip_y:1;
777         /* If yellow color policy is skipped. */
778         uint32_t skip_g:1;
779         /* If green color policy is skipped. */
780         rte_spinlock_t sl;
781         uint32_t ref_cnt;
782         /* Use count. */
783         struct mlx5_meter_policy_action_container act_cnt[MLX5_MTR_RTE_COLORS];
784         /* Policy actions container. */
785         void *dr_drop_action[MLX5_MTR_DOMAIN_MAX];
786         /* drop action for red color. */
787         uint16_t sub_policy_num;
788         /* Count sub policy tables, 3 bits per domain. */
789         struct mlx5_flow_meter_sub_policy **sub_policys[MLX5_MTR_DOMAIN_MAX];
790         /* Sub policy table array must be the end of struct. */
791 };
792
793 /* The maximum sub policy is relate to struct mlx5_rss_hash_fields[]. */
794 #define MLX5_MTR_RSS_MAX_SUB_POLICY 7
795 #define MLX5_MTR_SUB_POLICY_NUM_SHIFT  3
796 #define MLX5_MTR_SUB_POLICY_NUM_MASK  0x7
797 #define MLX5_MTRS_DEFAULT_RULE_PRIORITY 0xFFFF
798 #define MLX5_MTR_CHAIN_MAX_NUM 8
799
800 /* Flow meter default policy parameter structure.
801  * Policy index 0 is reserved by default policy table.
802  * Action per color as below:
803  * green - do nothing, yellow - do nothing, red - drop
804  */
805 struct mlx5_flow_meter_def_policy {
806         struct mlx5_flow_meter_sub_policy sub_policy;
807         /* Policy rules jump to other tables. */
808         void *dr_jump_action[RTE_COLORS];
809         /* Jump action per color. */
810 };
811
812 /* Meter parameter structure. */
813 struct mlx5_flow_meter_info {
814         uint32_t meter_id;
815         /**< Meter id. */
816         uint32_t policy_id;
817         /* Policy id, the first sub_policy idx. */
818         struct mlx5_flow_meter_profile *profile;
819         /**< Meter profile parameters. */
820         rte_spinlock_t sl; /**< Meter action spinlock. */
821         /** Set of stats counters to be enabled.
822          * @see enum rte_mtr_stats_type
823          */
824         uint32_t bytes_dropped:1;
825         /** Set bytes dropped stats to be enabled. */
826         uint32_t pkts_dropped:1;
827         /** Set packets dropped stats to be enabled. */
828         uint32_t active_state:1;
829         /**< Meter hw active state. */
830         uint32_t shared:1;
831         /**< Meter shared or not. */
832         uint32_t is_enable:1;
833         /**< Meter disable/enable state. */
834         uint32_t ingress:1;
835         /**< Rule applies to egress traffic. */
836         uint32_t egress:1;
837         /**
838          * Instead of simply matching the properties of traffic as it would
839          * appear on a given DPDK port ID, enabling this attribute transfers
840          * a flow rule to the lowest possible level of any device endpoints
841          * found in the pattern.
842          *
843          * When supported, this effectively enables an application to
844          * re-route traffic not necessarily intended for it (e.g. coming
845          * from or addressed to different physical ports, VFs or
846          * applications) at the device level.
847          *
848          * It complements the behavior of some pattern items such as
849          * RTE_FLOW_ITEM_TYPE_PHY_PORT and is meaningless without them.
850          *
851          * When transferring flow rules, ingress and egress attributes keep
852          * their original meaning, as if processing traffic emitted or
853          * received by the application.
854          */
855         uint32_t transfer:1;
856         uint32_t def_policy:1;
857         /* Meter points to default policy. */
858         void *drop_rule[MLX5_MTR_DOMAIN_MAX];
859         /* Meter drop rule in drop table. */
860         uint32_t drop_cnt;
861         /**< Color counter for drop. */
862         uint32_t ref_cnt;
863         /**< Use count. */
864         struct mlx5_indexed_pool *flow_ipool;
865         /**< Index pool for flow id. */
866         void *meter_action;
867         /**< Flow meter action. */
868 };
869
870 /* PPS(packets per second) map to BPS(Bytes per second).
871  * HW treat packet as 128bytes in PPS mode
872  */
873 #define MLX5_MTRS_PPS_MAP_BPS_SHIFT 7
874
875 /* RFC2697 parameter structure. */
876 struct mlx5_flow_meter_srtcm_rfc2697_prm {
877         rte_be32_t cbs_cir;
878         /*
879          * bit 24-28: cbs_exponent, bit 16-23 cbs_mantissa,
880          * bit 8-12: cir_exponent, bit 0-7 cir_mantissa.
881          */
882         rte_be32_t ebs_eir;
883         /*
884          * bit 24-28: ebs_exponent, bit 16-23 ebs_mantissa,
885          * bit 8-12: eir_exponent, bit 0-7 eir_mantissa.
886          */
887 };
888
889 /* Flow meter profile structure. */
890 struct mlx5_flow_meter_profile {
891         TAILQ_ENTRY(mlx5_flow_meter_profile) next;
892         /**< Pointer to the next flow meter structure. */
893         uint32_t id; /**< Profile id. */
894         struct rte_mtr_meter_profile profile; /**< Profile detail. */
895         union {
896                 struct mlx5_flow_meter_srtcm_rfc2697_prm srtcm_prm;
897                 /**< srtcm_rfc2697 struct. */
898         };
899         uint32_t ref_cnt; /**< Use count. */
900         uint32_t g_support:1; /**< If G color will be generated. */
901         uint32_t y_support:1; /**< If Y color will be generated. */
902 };
903
904 /* 2 meters in each ASO cache line */
905 #define MLX5_MTRS_CONTAINER_RESIZE 64
906 /*
907  * The pool index and offset of meter in the pool array makes up the
908  * meter index. In case the meter is from pool 0 and offset 0, it
909  * should plus 1 to avoid index 0, since 0 means invalid meter index
910  * currently.
911  */
912 #define MLX5_MAKE_MTR_IDX(pi, offset) \
913                 ((pi) * MLX5_ASO_MTRS_PER_POOL + (offset) + 1)
914
915 /*aso flow meter state*/
916 enum mlx5_aso_mtr_state {
917         ASO_METER_FREE, /* In free list. */
918         ASO_METER_WAIT, /* ACCESS_ASO WQE in progress. */
919         ASO_METER_READY, /* CQE received. */
920 };
921
922 /* Generic aso_flow_meter information. */
923 struct mlx5_aso_mtr {
924         LIST_ENTRY(mlx5_aso_mtr) next;
925         struct mlx5_flow_meter_info fm;
926         /**< Pointer to the next aso flow meter structure. */
927         uint8_t state; /**< ASO flow meter state. */
928         uint8_t offset;
929 };
930
931 /* Generic aso_flow_meter pool structure. */
932 struct mlx5_aso_mtr_pool {
933         struct mlx5_aso_mtr mtrs[MLX5_ASO_MTRS_PER_POOL];
934         /*Must be the first in pool*/
935         struct mlx5_devx_obj *devx_obj;
936         /* The devx object of the minimum aso flow meter ID. */
937         uint32_t index; /* Pool index in management structure. */
938 };
939
940 LIST_HEAD(aso_meter_list, mlx5_aso_mtr);
941 /* Pools management structure for ASO flow meter pools. */
942 struct mlx5_aso_mtr_pools_mng {
943         volatile uint16_t n_valid; /* Number of valid pools. */
944         uint16_t n; /* Number of pools. */
945         rte_spinlock_t mtrsl; /* The ASO flow meter free list lock. */
946         rte_rwlock_t resize_mtrwl; /* Lock for resize objects. */
947         struct aso_meter_list meters; /* Free ASO flow meter list. */
948         struct mlx5_aso_sq sq; /*SQ using by ASO flow meter. */
949         struct mlx5_aso_mtr_pool **pools; /* ASO flow meter pool array. */
950 };
951
952 /* Meter management structure for global flow meter resource. */
953 struct mlx5_flow_mtr_mng {
954         struct mlx5_aso_mtr_pools_mng pools_mng;
955         /* Pools management structure for ASO flow meter pools. */
956         struct mlx5_flow_meter_def_policy *def_policy[MLX5_MTR_DOMAIN_MAX];
957         /* Default policy table. */
958         uint32_t def_policy_id;
959         /* Default policy id. */
960         uint32_t def_policy_ref_cnt;
961         /** def_policy meter use count. */
962         struct mlx5_flow_tbl_resource *drop_tbl[MLX5_MTR_DOMAIN_MAX];
963         /* Meter drop table. */
964         struct mlx5_flow_dv_matcher *
965                         drop_matcher[MLX5_MTR_DOMAIN_MAX][MLX5_REG_BITS];
966         /* Matcher meter in drop table. */
967         struct mlx5_flow_dv_matcher *def_matcher[MLX5_MTR_DOMAIN_MAX];
968         /* Default matcher in drop table. */
969         void *def_rule[MLX5_MTR_DOMAIN_MAX];
970         /* Default rule in drop table. */
971         uint8_t max_mtr_bits;
972         /* Indicate how many bits are used by meter id at the most. */
973         uint8_t max_mtr_flow_bits;
974         /* Indicate how many bits are used by meter flow id at the most. */
975 };
976
977 /* Table key of the hash organization. */
978 union mlx5_flow_tbl_key {
979         struct {
980                 /* Table ID should be at the lowest address. */
981                 uint32_t level; /**< Level of the table. */
982                 uint32_t id:22; /**< ID of the table. */
983                 uint32_t dummy:1;       /**< Dummy table for DV API. */
984                 uint32_t is_fdb:1;      /**< 1 - FDB, 0 - NIC TX/RX. */
985                 uint32_t is_egress:1;   /**< 1 - egress, 0 - ingress. */
986                 uint32_t reserved:7;    /**< must be zero for comparison. */
987         };
988         uint64_t v64;                   /**< full 64bits value of key */
989 };
990
991 /* Table structure. */
992 struct mlx5_flow_tbl_resource {
993         void *obj; /**< Pointer to DR table object. */
994         uint32_t refcnt; /**< Reference counter. */
995 };
996
997 #define MLX5_MAX_TABLES UINT16_MAX
998 #define MLX5_HAIRPIN_TX_TABLE (UINT16_MAX - 1)
999 /* Reserve the last two tables for metadata register copy. */
1000 #define MLX5_FLOW_MREG_ACT_TABLE_GROUP (MLX5_MAX_TABLES - 1)
1001 #define MLX5_FLOW_MREG_CP_TABLE_GROUP (MLX5_MAX_TABLES - 2)
1002 /* Tables for metering splits should be added here. */
1003 #define MLX5_FLOW_TABLE_LEVEL_METER (MLX5_MAX_TABLES - 3)
1004 #define MLX5_FLOW_TABLE_LEVEL_POLICY (MLX5_MAX_TABLES - 4)
1005 #define MLX5_MAX_TABLES_EXTERNAL MLX5_FLOW_TABLE_LEVEL_POLICY
1006 #define MLX5_MAX_TABLES_FDB UINT16_MAX
1007 #define MLX5_FLOW_TABLE_FACTOR 10
1008
1009 /* ID generation structure. */
1010 struct mlx5_flow_id_pool {
1011         uint32_t *free_arr; /**< Pointer to the a array of free values. */
1012         uint32_t base_index;
1013         /**< The next index that can be used without any free elements. */
1014         uint32_t *curr; /**< Pointer to the index to pop. */
1015         uint32_t *last; /**< Pointer to the last element in the empty array. */
1016         uint32_t max_id; /**< Maximum id can be allocated from the pool. */
1017 };
1018
1019 /* Tx pacing queue structure - for Clock and Rearm queues. */
1020 struct mlx5_txpp_wq {
1021         /* Completion Queue related data.*/
1022         struct mlx5_devx_cq cq_obj;
1023         uint32_t cq_ci:24;
1024         uint32_t arm_sn:2;
1025         /* Send Queue related data.*/
1026         struct mlx5_devx_sq sq_obj;
1027         uint16_t sq_size; /* Number of WQEs in the queue. */
1028         uint16_t sq_ci; /* Next WQE to execute. */
1029 };
1030
1031 /* Tx packet pacing internal timestamp. */
1032 struct mlx5_txpp_ts {
1033         uint64_t ci_ts;
1034         uint64_t ts;
1035 };
1036
1037 /* Tx packet pacing structure. */
1038 struct mlx5_dev_txpp {
1039         pthread_mutex_t mutex; /* Pacing create/destroy mutex. */
1040         uint32_t refcnt; /* Pacing reference counter. */
1041         uint32_t freq; /* Timestamp frequency, Hz. */
1042         uint32_t tick; /* Completion tick duration in nanoseconds. */
1043         uint32_t test; /* Packet pacing test mode. */
1044         int32_t skew; /* Scheduling skew. */
1045         struct rte_intr_handle *intr_handle; /* Periodic interrupt. */
1046         void *echan; /* Event Channel. */
1047         struct mlx5_txpp_wq clock_queue; /* Clock Queue. */
1048         struct mlx5_txpp_wq rearm_queue; /* Clock Queue. */
1049         void *pp; /* Packet pacing context. */
1050         uint16_t pp_id; /* Packet pacing context index. */
1051         uint16_t ts_n; /* Number of captured timestamps. */
1052         uint16_t ts_p; /* Pointer to statistics timestamp. */
1053         struct mlx5_txpp_ts *tsa; /* Timestamps sliding window stats. */
1054         struct mlx5_txpp_ts ts; /* Cached completion id/timestamp. */
1055         uint32_t sync_lost:1; /* ci/timestamp synchronization lost. */
1056         /* Statistics counters. */
1057         uint64_t err_miss_int; /* Missed service interrupt. */
1058         uint64_t err_rearm_queue; /* Rearm Queue errors. */
1059         uint64_t err_clock_queue; /* Clock Queue errors. */
1060         uint64_t err_ts_past; /* Timestamp in the past. */
1061         uint64_t err_ts_future; /* Timestamp in the distant future. */
1062 };
1063
1064 /* Sample ID information of eCPRI flex parser structure. */
1065 struct mlx5_ecpri_parser_profile {
1066         uint32_t num;           /* Actual number of samples. */
1067         uint32_t ids[8];        /* Sample IDs for this profile. */
1068         uint8_t offset[8];      /* Bytes offset of each parser. */
1069         void *obj;              /* Flex parser node object. */
1070 };
1071
1072 /* Max member ports per bonding device. */
1073 #define MLX5_BOND_MAX_PORTS 2
1074
1075 /* Bonding device information. */
1076 struct mlx5_bond_info {
1077         int n_port; /* Number of bond member ports. */
1078         uint32_t ifindex;
1079         char ifname[MLX5_NAMESIZE + 1];
1080         struct {
1081                 char ifname[MLX5_NAMESIZE + 1];
1082                 uint32_t ifindex;
1083                 struct rte_pci_addr pci_addr;
1084         } ports[MLX5_BOND_MAX_PORTS];
1085 };
1086
1087 /* Number of connection tracking objects per pool: must be a power of 2. */
1088 #define MLX5_ASO_CT_ACTIONS_PER_POOL 64
1089
1090 /* Generate incremental and unique CT index from pool and offset. */
1091 #define MLX5_MAKE_CT_IDX(pool, offset) \
1092         ((pool) * MLX5_ASO_CT_ACTIONS_PER_POOL + (offset) + 1)
1093
1094 /* ASO Conntrack state. */
1095 enum mlx5_aso_ct_state {
1096         ASO_CONNTRACK_FREE, /* Inactive, in the free list. */
1097         ASO_CONNTRACK_WAIT, /* WQE sent in the SQ. */
1098         ASO_CONNTRACK_READY, /* CQE received w/o error. */
1099         ASO_CONNTRACK_QUERY, /* WQE for query sent. */
1100         ASO_CONNTRACK_MAX, /* Guard. */
1101 };
1102
1103 /* Generic ASO connection tracking structure. */
1104 struct mlx5_aso_ct_action {
1105         LIST_ENTRY(mlx5_aso_ct_action) next; /* Pointer to the next ASO CT. */
1106         void *dr_action_orig; /* General action object for original dir. */
1107         void *dr_action_rply; /* General action object for reply dir. */
1108         uint32_t refcnt; /* Action used count in device flows. */
1109         uint16_t offset; /* Offset of ASO CT in DevX objects bulk. */
1110         uint16_t peer; /* The only peer port index could also use this CT. */
1111         enum mlx5_aso_ct_state state; /* ASO CT state. */
1112         bool is_original; /* The direction of the DR action to be used. */
1113 };
1114
1115 /* CT action object state update. */
1116 #define MLX5_ASO_CT_UPDATE_STATE(c, s) \
1117         __atomic_store_n(&((c)->state), (s), __ATOMIC_RELAXED)
1118
1119 /* ASO connection tracking software pool definition. */
1120 struct mlx5_aso_ct_pool {
1121         uint16_t index; /* Pool index in pools array. */
1122         struct mlx5_devx_obj *devx_obj;
1123         /* The first devx object in the bulk, used for freeing (not yet). */
1124         struct mlx5_aso_ct_action actions[MLX5_ASO_CT_ACTIONS_PER_POOL];
1125         /* CT action structures bulk. */
1126 };
1127
1128 LIST_HEAD(aso_ct_list, mlx5_aso_ct_action);
1129
1130 /* Pools management structure for ASO connection tracking pools. */
1131 struct mlx5_aso_ct_pools_mng {
1132         struct mlx5_aso_ct_pool **pools;
1133         uint16_t n; /* Total number of pools. */
1134         uint16_t next; /* Number of pools in use, index of next free pool. */
1135         rte_spinlock_t ct_sl; /* The ASO CT free list lock. */
1136         rte_rwlock_t resize_rwl; /* The ASO CT pool resize lock. */
1137         struct aso_ct_list free_cts; /* Free ASO CT objects list. */
1138         struct mlx5_aso_sq aso_sq; /* ASO queue objects. */
1139 };
1140
1141 /* LAG attr. */
1142 struct mlx5_lag {
1143         uint8_t tx_remap_affinity[16]; /* The PF port number of affinity */
1144         uint8_t affinity_mode; /* TIS or hash based affinity */
1145 };
1146
1147 /* DevX flex parser context. */
1148 struct mlx5_flex_parser_devx {
1149         struct mlx5_list_entry entry;  /* List element at the beginning. */
1150         uint32_t num_samples;
1151         void *devx_obj;
1152         struct mlx5_devx_graph_node_attr devx_conf;
1153         uint32_t sample_ids[MLX5_GRAPH_NODE_SAMPLE_NUM];
1154 };
1155
1156 /* Pattern field descriptor - how to translate flex pattern into samples. */
1157 __extension__
1158 struct mlx5_flex_pattern_field {
1159         uint16_t width:6;
1160         uint16_t shift:5;
1161         uint16_t reg_id:5;
1162 };
1163 #define MLX5_INVALID_SAMPLE_REG_ID 0x1F
1164
1165 /* Port flex item context. */
1166 struct mlx5_flex_item {
1167         struct mlx5_flex_parser_devx *devx_fp; /* DevX flex parser object. */
1168         uint32_t refcnt; /* Atomically accessed refcnt by flows. */
1169         enum rte_flow_item_flex_tunnel_mode tunnel_mode; /* Tunnel mode. */
1170         uint32_t mapnum; /* Number of pattern translation entries. */
1171         struct mlx5_flex_pattern_field map[MLX5_FLEX_ITEM_MAPPING_NUM];
1172 };
1173
1174 /*
1175  * Shared Infiniband device context for Master/Representors
1176  * which belong to same IB device with multiple IB ports.
1177  **/
1178 struct mlx5_dev_ctx_shared {
1179         LIST_ENTRY(mlx5_dev_ctx_shared) next;
1180         uint32_t refcnt;
1181         uint32_t esw_mode:1; /* Whether is E-Switch mode. */
1182         uint32_t flow_hit_aso_en:1; /* Flow Hit ASO is supported. */
1183         uint32_t steering_format_version:4;
1184         /* Indicates the device steering logic format. */
1185         uint32_t meter_aso_en:1; /* Flow Meter ASO is supported. */
1186         uint32_t ct_aso_en:1; /* Connection Tracking ASO is supported. */
1187         uint32_t tunnel_header_0_1:1; /* tunnel_header_0_1 is supported. */
1188         uint32_t misc5_cap:1; /* misc5 matcher parameter is supported. */
1189         uint32_t dr_drop_action_en:1; /* Use DR drop action. */
1190         uint32_t drop_action_check_flag:1; /* Check Flag for drop action. */
1191         uint32_t flow_priority_check_flag:1; /* Check Flag for flow priority. */
1192         uint32_t metadata_regc_check_flag:1; /* Check Flag for metadata REGC. */
1193         uint32_t max_port; /* Maximal IB device port index. */
1194         struct mlx5_bond_info bond; /* Bonding information. */
1195         struct mlx5_common_device *cdev; /* Backend mlx5 device. */
1196         uint32_t tdn; /* Transport Domain number. */
1197         char ibdev_name[MLX5_FS_NAME_MAX]; /* SYSFS dev name. */
1198         char ibdev_path[MLX5_FS_PATH_MAX]; /* SYSFS dev path for secondary */
1199         struct mlx5_dev_cap dev_cap; /* Device capabilities. */
1200         struct mlx5_sh_config config; /* Device configuration. */
1201         int numa_node; /* Numa node of backing physical device. */
1202         /* Packet pacing related structure. */
1203         struct mlx5_dev_txpp txpp;
1204         /* Shared DV/DR flow data section. */
1205         uint32_t dv_meta_mask; /* flow META metadata supported mask. */
1206         uint32_t dv_mark_mask; /* flow MARK metadata supported mask. */
1207         uint32_t dv_regc0_mask; /* available bits of metadata reg_c[0]. */
1208         void *fdb_domain; /* FDB Direct Rules name space handle. */
1209         void *rx_domain; /* RX Direct Rules name space handle. */
1210         void *tx_domain; /* TX Direct Rules name space handle. */
1211 #ifndef RTE_ARCH_64
1212         rte_spinlock_t uar_lock_cq; /* CQs share a common distinct UAR. */
1213         rte_spinlock_t uar_lock[MLX5_UAR_PAGE_NUM_MAX];
1214         /* UAR same-page access control required in 32bit implementations. */
1215 #endif
1216         union {
1217                 struct mlx5_hlist *flow_tbls; /* SWS flow table. */
1218                 struct mlx5_hlist *groups; /* HWS flow group. */
1219         };
1220         struct mlx5_flow_tunnel_hub *tunnel_hub;
1221         /* Direct Rules tables for FDB, NIC TX+RX */
1222         void *dr_drop_action; /* Pointer to DR drop action, any domain. */
1223         void *pop_vlan_action; /* Pointer to DR pop VLAN action. */
1224         struct mlx5_hlist *encaps_decaps; /* Encap/decap action hash list. */
1225         struct mlx5_hlist *modify_cmds;
1226         struct mlx5_hlist *tag_table;
1227         struct mlx5_list *port_id_action_list; /* Port ID action list. */
1228         struct mlx5_list *push_vlan_action_list; /* Push VLAN actions. */
1229         struct mlx5_list *sample_action_list; /* List of sample actions. */
1230         struct mlx5_list *dest_array_list;
1231         struct mlx5_list *flex_parsers_dv; /* Flex Item parsers. */
1232         /* List of destination array actions. */
1233         struct mlx5_flow_counter_mng cmng; /* Counters management structure. */
1234         void *default_miss_action; /* Default miss action. */
1235         struct mlx5_indexed_pool *ipool[MLX5_IPOOL_MAX];
1236         struct mlx5_indexed_pool *mdh_ipools[MLX5_MAX_MODIFY_NUM];
1237         /* Shared interrupt handler section. */
1238         struct rte_intr_handle *intr_handle; /* Interrupt handler for device. */
1239         struct rte_intr_handle *intr_handle_devx; /* DEVX interrupt handler. */
1240         void *devx_comp; /* DEVX async comp obj. */
1241         struct mlx5_devx_obj *tis[16]; /* TIS object. */
1242         struct mlx5_devx_obj *td; /* Transport domain. */
1243         struct mlx5_lag lag; /* LAG attributes */
1244         struct mlx5_uar tx_uar; /* DevX UAR for Tx and Txpp and ASO SQs. */
1245         struct mlx5_uar rx_uar; /* DevX UAR for Rx. */
1246         struct mlx5_proc_priv *pppriv; /* Pointer to primary private process. */
1247         struct mlx5_ecpri_parser_profile ecpri_parser;
1248         /* Flex parser profiles information. */
1249         LIST_HEAD(shared_rxqs, mlx5_rxq_ctrl) shared_rxqs; /* Shared RXQs. */
1250         struct mlx5_aso_age_mng *aso_age_mng;
1251         /* Management data for aging mechanism using ASO Flow Hit. */
1252         struct mlx5_geneve_tlv_option_resource *geneve_tlv_option_resource;
1253         /* Management structure for geneve tlv option */
1254         rte_spinlock_t geneve_tlv_opt_sl; /* Lock for geneve tlv resource */
1255         struct mlx5_flow_mtr_mng *mtrmng;
1256         /* Meter management structure. */
1257         struct mlx5_aso_ct_pools_mng *ct_mng;
1258         /* Management data for ASO connection tracking. */
1259         struct mlx5_lb_ctx self_lb; /* QP to enable self loopback for Devx. */
1260         unsigned int flow_max_priority;
1261         enum modify_reg flow_mreg_c[MLX5_MREG_C_NUM];
1262         /* Availability of mreg_c's. */
1263         struct mlx5_dev_shared_port port[]; /* per device port data array. */
1264 };
1265
1266 /*
1267  * Per-process private structure.
1268  * Caution, secondary process may rebuild the struct during port start.
1269  */
1270 struct mlx5_proc_priv {
1271         size_t uar_table_sz;
1272         /* Size of UAR register table. */
1273         struct mlx5_uar_data uar_table[];
1274         /* Table of UAR registers for each process. */
1275 };
1276
1277 /* MTR profile list. */
1278 TAILQ_HEAD(mlx5_mtr_profiles, mlx5_flow_meter_profile);
1279 /* MTR list. */
1280 TAILQ_HEAD(mlx5_legacy_flow_meters, mlx5_legacy_flow_meter);
1281
1282 /* RSS description. */
1283 struct mlx5_flow_rss_desc {
1284         uint32_t level;
1285         uint32_t queue_num; /**< Number of entries in @p queue. */
1286         uint64_t types; /**< Specific RSS hash types (see RTE_ETH_RSS_*). */
1287         uint64_t hash_fields; /* Verbs Hash fields. */
1288         uint8_t key[MLX5_RSS_HASH_KEY_LEN]; /**< RSS hash key. */
1289         uint32_t key_len; /**< RSS hash key len. */
1290         uint32_t hws_flags; /**< HW steering action. */
1291         uint32_t tunnel; /**< Queue in tunnel. */
1292         uint32_t shared_rss; /**< Shared RSS index. */
1293         struct mlx5_ind_table_obj *ind_tbl;
1294         /**< Indirection table for shared RSS hash RX queues. */
1295         union {
1296                 uint16_t *queue; /**< Destination queues. */
1297                 const uint16_t *const_q; /**< Const pointer convert. */
1298         };
1299 };
1300
1301 #define MLX5_PROC_PRIV(port_id) \
1302         ((struct mlx5_proc_priv *)rte_eth_devices[port_id].process_private)
1303
1304 /* Verbs/DevX Rx queue elements. */
1305 struct mlx5_rxq_obj {
1306         LIST_ENTRY(mlx5_rxq_obj) next; /* Pointer to the next element. */
1307         struct mlx5_rxq_ctrl *rxq_ctrl; /* Back pointer to parent. */
1308         int fd; /* File descriptor for event channel */
1309         RTE_STD_C11
1310         union {
1311                 struct {
1312                         void *wq; /* Work Queue. */
1313                         void *ibv_cq; /* Completion Queue. */
1314                         void *ibv_channel;
1315                 };
1316                 struct mlx5_devx_obj *rq; /* DevX RQ object for hairpin. */
1317                 struct {
1318                         struct mlx5_devx_rmp devx_rmp; /* RMP for shared RQ. */
1319                         struct mlx5_devx_cq cq_obj; /* DevX CQ object. */
1320                         void *devx_channel;
1321                 };
1322         };
1323 };
1324
1325 /* Indirection table. */
1326 struct mlx5_ind_table_obj {
1327         LIST_ENTRY(mlx5_ind_table_obj) next; /* Pointer to the next element. */
1328         uint32_t refcnt; /* Reference counter. */
1329         RTE_STD_C11
1330         union {
1331                 void *ind_table; /**< Indirection table. */
1332                 struct mlx5_devx_obj *rqt; /* DevX RQT object. */
1333         };
1334         uint32_t queues_n; /**< Number of queues in the list. */
1335         uint16_t *queues; /**< Queue list. */
1336 };
1337
1338 /* Hash Rx queue. */
1339 __extension__
1340 struct mlx5_hrxq {
1341         struct mlx5_list_entry entry; /* List entry. */
1342         uint32_t standalone:1; /* This object used in shared action. */
1343         struct mlx5_ind_table_obj *ind_table; /* Indirection table. */
1344         RTE_STD_C11
1345         union {
1346                 void *qp; /* Verbs queue pair. */
1347                 struct mlx5_devx_obj *tir; /* DevX TIR object. */
1348         };
1349 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
1350         void *action; /* DV QP action pointer. */
1351 #endif
1352         uint32_t hws_flags; /* Hw steering flags. */
1353         uint64_t hash_fields; /* Verbs Hash fields. */
1354         uint32_t rss_key_len; /* Hash key length in bytes. */
1355         uint32_t idx; /* Hash Rx queue index. */
1356         uint8_t rss_key[]; /* Hash key. */
1357 };
1358
1359 /* Verbs/DevX Tx queue elements. */
1360 struct mlx5_txq_obj {
1361         LIST_ENTRY(mlx5_txq_obj) next; /* Pointer to the next element. */
1362         struct mlx5_txq_ctrl *txq_ctrl; /* Pointer to the control queue. */
1363         RTE_STD_C11
1364         union {
1365                 struct {
1366                         void *cq; /* Completion Queue. */
1367                         void *qp; /* Queue Pair. */
1368                 };
1369                 struct {
1370                         struct mlx5_devx_obj *sq;
1371                         /* DevX object for Sx queue. */
1372                         struct mlx5_devx_obj *tis; /* The TIS object. */
1373                 };
1374                 struct {
1375                         struct rte_eth_dev *dev;
1376                         struct mlx5_devx_cq cq_obj;
1377                         /* DevX CQ object and its resources. */
1378                         struct mlx5_devx_sq sq_obj;
1379                         /* DevX SQ object and its resources. */
1380                 };
1381         };
1382 };
1383
1384 enum mlx5_rxq_modify_type {
1385         MLX5_RXQ_MOD_ERR2RST, /* modify state from error to reset. */
1386         MLX5_RXQ_MOD_RST2RDY, /* modify state from reset to ready. */
1387         MLX5_RXQ_MOD_RDY2ERR, /* modify state from ready to error. */
1388         MLX5_RXQ_MOD_RDY2RST, /* modify state from ready to reset. */
1389 };
1390
1391 enum mlx5_txq_modify_type {
1392         MLX5_TXQ_MOD_RST2RDY, /* modify state from reset to ready. */
1393         MLX5_TXQ_MOD_RDY2RST, /* modify state from ready to reset. */
1394         MLX5_TXQ_MOD_ERR2RDY, /* modify state from error to ready. */
1395 };
1396
1397 struct mlx5_rxq_priv;
1398
1399 /* HW objects operations structure. */
1400 struct mlx5_obj_ops {
1401         int (*rxq_obj_modify_vlan_strip)(struct mlx5_rxq_priv *rxq, int on);
1402         int (*rxq_obj_new)(struct mlx5_rxq_priv *rxq);
1403         int (*rxq_event_get)(struct mlx5_rxq_obj *rxq_obj);
1404         int (*rxq_obj_modify)(struct mlx5_rxq_priv *rxq, uint8_t type);
1405         void (*rxq_obj_release)(struct mlx5_rxq_priv *rxq);
1406         int (*ind_table_new)(struct rte_eth_dev *dev, const unsigned int log_n,
1407                              struct mlx5_ind_table_obj *ind_tbl);
1408         int (*ind_table_modify)(struct rte_eth_dev *dev,
1409                                 const unsigned int log_n,
1410                                 const uint16_t *queues, const uint32_t queues_n,
1411                                 struct mlx5_ind_table_obj *ind_tbl);
1412         void (*ind_table_destroy)(struct mlx5_ind_table_obj *ind_tbl);
1413         int (*hrxq_new)(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq,
1414                         int tunnel __rte_unused);
1415         int (*hrxq_modify)(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq,
1416                            const uint8_t *rss_key,
1417                            uint64_t hash_fields,
1418                            const struct mlx5_ind_table_obj *ind_tbl);
1419         void (*hrxq_destroy)(struct mlx5_hrxq *hrxq);
1420         int (*drop_action_create)(struct rte_eth_dev *dev);
1421         void (*drop_action_destroy)(struct rte_eth_dev *dev);
1422         int (*txq_obj_new)(struct rte_eth_dev *dev, uint16_t idx);
1423         int (*txq_obj_modify)(struct mlx5_txq_obj *obj,
1424                               enum mlx5_txq_modify_type type, uint8_t dev_port);
1425         void (*txq_obj_release)(struct mlx5_txq_obj *txq_obj);
1426         int (*lb_dummy_queue_create)(struct rte_eth_dev *dev);
1427         void (*lb_dummy_queue_release)(struct rte_eth_dev *dev);
1428 };
1429
1430 #define MLX5_RSS_HASH_FIELDS_LEN RTE_DIM(mlx5_rss_hash_fields)
1431
1432 struct mlx5_priv {
1433         struct rte_eth_dev_data *dev_data;  /* Pointer to device data. */
1434         struct mlx5_dev_ctx_shared *sh; /* Shared device context. */
1435         uint32_t dev_port; /* Device port number. */
1436         struct rte_pci_device *pci_dev; /* Backend PCI device. */
1437         struct rte_ether_addr mac[MLX5_MAX_MAC_ADDRESSES]; /* MAC addresses. */
1438         BITFIELD_DECLARE(mac_own, uint64_t, MLX5_MAX_MAC_ADDRESSES);
1439         /* Bit-field of MAC addresses owned by the PMD. */
1440         uint16_t vlan_filter[MLX5_MAX_VLAN_IDS]; /* VLAN filters table. */
1441         unsigned int vlan_filter_n; /* Number of configured VLAN filters. */
1442         /* Device properties. */
1443         uint16_t mtu; /* Configured MTU. */
1444         unsigned int isolated:1; /* Whether isolated mode is enabled. */
1445         unsigned int representor:1; /* Device is a port representor. */
1446         unsigned int master:1; /* Device is a E-Switch master. */
1447         unsigned int txpp_en:1; /* Tx packet pacing enabled. */
1448         unsigned int sampler_en:1; /* Whether support sampler. */
1449         unsigned int mtr_en:1; /* Whether support meter. */
1450         unsigned int mtr_reg_share:1; /* Whether support meter REG_C share. */
1451         unsigned int lb_used:1; /* Loopback queue is referred to. */
1452         uint32_t mark_enabled:1; /* If mark action is enabled on rxqs. */
1453         uint16_t domain_id; /* Switch domain identifier. */
1454         uint16_t vport_id; /* Associated VF vport index (if any). */
1455         uint32_t vport_meta_tag; /* Used for vport index match ove VF LAG. */
1456         uint32_t vport_meta_mask; /* Used for vport index field match mask. */
1457         uint16_t representor_id; /* UINT16_MAX if not a representor. */
1458         int32_t pf_bond; /* >=0, representor owner PF index in bonding. */
1459         unsigned int if_index; /* Associated kernel network device index. */
1460         /* RX/TX queues. */
1461         unsigned int rxqs_n; /* RX queues array size. */
1462         unsigned int txqs_n; /* TX queues array size. */
1463         struct mlx5_rxq_priv *(*rxq_privs)[]; /* RX queue non-shared data. */
1464         struct mlx5_txq_data *(*txqs)[]; /* TX queues. */
1465         struct rte_mempool *mprq_mp; /* Mempool for Multi-Packet RQ. */
1466         struct rte_eth_rss_conf rss_conf; /* RSS configuration. */
1467         unsigned int (*reta_idx)[]; /* RETA index table. */
1468         unsigned int reta_idx_n; /* RETA index size. */
1469         struct mlx5_drop drop_queue; /* Flow drop queues. */
1470         void *root_drop_action; /* Pointer to root drop action. */
1471         struct mlx5_indexed_pool *flows[MLX5_FLOW_TYPE_MAXI];
1472         /* RTE Flow rules. */
1473         uint32_t ctrl_flows; /* Control flow rules. */
1474         rte_spinlock_t flow_list_lock;
1475         struct mlx5_obj_ops obj_ops; /* HW objects operations. */
1476         LIST_HEAD(rxq, mlx5_rxq_ctrl) rxqsctrl; /* DPDK Rx queues. */
1477         LIST_HEAD(rxqobj, mlx5_rxq_obj) rxqsobj; /* Verbs/DevX Rx queues. */
1478         struct mlx5_list *hrxqs; /* Hash Rx queues. */
1479         LIST_HEAD(txq, mlx5_txq_ctrl) txqsctrl; /* DPDK Tx queues. */
1480         LIST_HEAD(txqobj, mlx5_txq_obj) txqsobj; /* Verbs/DevX Tx queues. */
1481         /* Indirection tables. */
1482         LIST_HEAD(ind_tables, mlx5_ind_table_obj) ind_tbls;
1483         /* Standalone indirect tables. */
1484         LIST_HEAD(stdl_ind_tables, mlx5_ind_table_obj) standalone_ind_tbls;
1485         /* Pointer to next element. */
1486         rte_rwlock_t ind_tbls_lock;
1487         uint32_t refcnt; /**< Reference counter. */
1488         /**< Verbs modify header action object. */
1489         uint8_t ft_type; /**< Flow table type, Rx or Tx. */
1490         uint8_t max_lro_msg_size;
1491         uint32_t link_speed_capa; /* Link speed capabilities. */
1492         struct mlx5_xstats_ctrl xstats_ctrl; /* Extended stats control. */
1493         struct mlx5_stats_ctrl stats_ctrl; /* Stats control. */
1494         struct mlx5_port_config config; /* Port configuration. */
1495         /* Context for Verbs allocator. */
1496         int nl_socket_rdma; /* Netlink socket (NETLINK_RDMA). */
1497         int nl_socket_route; /* Netlink socket (NETLINK_ROUTE). */
1498         struct mlx5_nl_vlan_vmwa_context *vmwa_context; /* VLAN WA context. */
1499         struct mlx5_hlist *mreg_cp_tbl;
1500         /* Hash table of Rx metadata register copy table. */
1501         uint8_t mtr_sfx_reg; /* Meter prefix-suffix flow match REG_C. */
1502         uint8_t mtr_color_reg; /* Meter color match REG_C. */
1503         struct mlx5_legacy_flow_meters flow_meters; /* MTR list. */
1504         struct mlx5_l3t_tbl *mtr_profile_tbl; /* Meter index lookup table. */
1505         struct mlx5_l3t_tbl *policy_idx_tbl; /* Policy index lookup table. */
1506         struct mlx5_l3t_tbl *mtr_idx_tbl; /* Meter index lookup table. */
1507         uint8_t skip_default_rss_reta; /* Skip configuration of default reta. */
1508         uint8_t fdb_def_rule; /* Whether fdb jump to table 1 is configured. */
1509         struct mlx5_mp_id mp_id; /* ID of a multi-process process */
1510         LIST_HEAD(fdir, mlx5_fdir_flow) fdir_flows; /* fdir flows. */
1511         rte_spinlock_t shared_act_sl; /* Shared actions spinlock. */
1512         uint32_t rss_shared_actions; /* RSS shared actions. */
1513         struct mlx5_devx_obj *q_counters; /* DevX queue counter object. */
1514         uint32_t counter_set_id; /* Queue counter ID to set in DevX objects. */
1515         uint32_t lag_affinity_idx; /* LAG mode queue 0 affinity starting. */
1516         rte_spinlock_t flex_item_sl; /* Flex item list spinlock. */
1517         struct mlx5_flex_item flex_item[MLX5_PORT_FLEX_ITEM_NUM];
1518         /* Flex items have been created on the port. */
1519         uint32_t flex_item_map; /* Map of allocated flex item elements. */
1520 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
1521         /* Item template list. */
1522         LIST_HEAD(flow_hw_itt, rte_flow_pattern_template) flow_hw_itt;
1523         /* Action template list. */
1524         LIST_HEAD(flow_hw_at, rte_flow_actions_template) flow_hw_at;
1525         struct mlx5dr_context *dr_ctx; /**< HW steering DR context. */
1526         uint32_t nb_queue; /* HW steering queue number. */
1527         /* HW steering queue polling mechanism job descriptor LIFO. */
1528         struct mlx5_hw_q *hw_q;
1529         /* HW steering rte flow table list header. */
1530         LIST_HEAD(flow_hw_tbl, rte_flow_template_table) flow_hw_tbl;
1531         /* HW steering global drop action. */
1532         struct mlx5dr_action *hw_drop[MLX5_HW_ACTION_FLAG_MAX]
1533                                      [MLX5DR_TABLE_TYPE_MAX];
1534         struct mlx5_indexed_pool *acts_ipool; /* Action data indexed pool. */
1535 #endif
1536 };
1537
1538 #define PORT_ID(priv) ((priv)->dev_data->port_id)
1539 #define ETH_DEV(priv) (&rte_eth_devices[PORT_ID(priv)])
1540
1541 struct rte_hairpin_peer_info {
1542         uint32_t qp_id;
1543         uint32_t vhca_id;
1544         uint16_t peer_q;
1545         uint16_t tx_explicit;
1546         uint16_t manual_bind;
1547 };
1548
1549 #define BUF_SIZE 1024
1550 enum dr_dump_rec_type {
1551         DR_DUMP_REC_TYPE_PMD_PKT_REFORMAT = 4410,
1552         DR_DUMP_REC_TYPE_PMD_MODIFY_HDR = 4420,
1553         DR_DUMP_REC_TYPE_PMD_COUNTER = 4430,
1554 };
1555
1556 /**
1557  * Indicates whether HW objects operations can be created by DevX.
1558  *
1559  * This function is used for both:
1560  *  Before creation - deciding whether to create HW objects operations by DevX.
1561  *  After creation - indicator if HW objects operations were created by DevX.
1562  *
1563  * @param sh
1564  *   Pointer to shared device context.
1565  *
1566  * @return
1567  *   True if HW objects were created by DevX, False otherwise.
1568  */
1569 static inline bool
1570 mlx5_devx_obj_ops_en(struct mlx5_dev_ctx_shared *sh)
1571 {
1572         /*
1573          * When advanced DR API is available and DV flow is supported and
1574          * DevX is supported, HW objects operations are created by DevX.
1575          */
1576         return (sh->cdev->config.devx && sh->config.dv_flow_en &&
1577                 sh->dev_cap.dest_tir);
1578 }
1579
1580 /* mlx5.c */
1581
1582 int mlx5_getenv_int(const char *);
1583 int mlx5_proc_priv_init(struct rte_eth_dev *dev);
1584 void mlx5_proc_priv_uninit(struct rte_eth_dev *dev);
1585 int mlx5_udp_tunnel_port_add(struct rte_eth_dev *dev,
1586                               struct rte_eth_udp_tunnel *udp_tunnel);
1587 uint16_t mlx5_eth_find_next(uint16_t port_id, struct rte_device *odev);
1588 int mlx5_dev_close(struct rte_eth_dev *dev);
1589 int mlx5_net_remove(struct mlx5_common_device *cdev);
1590 bool mlx5_is_hpf(struct rte_eth_dev *dev);
1591 bool mlx5_is_sf_repr(struct rte_eth_dev *dev);
1592 void mlx5_age_event_prepare(struct mlx5_dev_ctx_shared *sh);
1593
1594 /* Macro to iterate over all valid ports for mlx5 driver. */
1595 #define MLX5_ETH_FOREACH_DEV(port_id, dev) \
1596         for (port_id = mlx5_eth_find_next(0, dev); \
1597              port_id < RTE_MAX_ETHPORTS; \
1598              port_id = mlx5_eth_find_next(port_id + 1, dev))
1599 void mlx5_rt_timestamp_config(struct mlx5_dev_ctx_shared *sh,
1600                               struct mlx5_hca_attr *hca_attr);
1601 struct mlx5_dev_ctx_shared *
1602 mlx5_alloc_shared_dev_ctx(const struct mlx5_dev_spawn_data *spawn,
1603                           struct mlx5_kvargs_ctrl *mkvlist);
1604 void mlx5_free_shared_dev_ctx(struct mlx5_dev_ctx_shared *sh);
1605 int mlx5_dev_ctx_shared_mempool_subscribe(struct rte_eth_dev *dev);
1606 void mlx5_free_table_hash_list(struct mlx5_priv *priv);
1607 int mlx5_alloc_table_hash_list(struct mlx5_priv *priv);
1608 void mlx5_set_min_inline(struct mlx5_priv *priv);
1609 void mlx5_set_metadata_mask(struct rte_eth_dev *dev);
1610 int mlx5_probe_again_args_validate(struct mlx5_common_device *cdev,
1611                                    struct mlx5_kvargs_ctrl *mkvlist);
1612 int mlx5_port_args_config(struct mlx5_priv *priv,
1613                           struct mlx5_kvargs_ctrl *mkvlist,
1614                           struct mlx5_port_config *config);
1615 void mlx5_port_args_set_used(const char *name, uint16_t port_id,
1616                              struct mlx5_kvargs_ctrl *mkvlist);
1617 bool mlx5_flex_parser_ecpri_exist(struct rte_eth_dev *dev);
1618 int mlx5_flex_parser_ecpri_alloc(struct rte_eth_dev *dev);
1619 void mlx5_flow_counter_mode_config(struct rte_eth_dev *dev);
1620 int mlx5_flow_aso_age_mng_init(struct mlx5_dev_ctx_shared *sh);
1621 int mlx5_aso_flow_mtrs_mng_init(struct mlx5_dev_ctx_shared *sh);
1622 int mlx5_flow_aso_ct_mng_init(struct mlx5_dev_ctx_shared *sh);
1623
1624 /* mlx5_ethdev.c */
1625
1626 int mlx5_dev_configure(struct rte_eth_dev *dev);
1627 int mlx5_representor_info_get(struct rte_eth_dev *dev,
1628                               struct rte_eth_representor_info *info);
1629 #define MLX5_REPRESENTOR_ID(pf, type, repr) \
1630                 (((pf) << 14) + ((type) << 12) + ((repr) & 0xfff))
1631 #define MLX5_REPRESENTOR_REPR(repr_id) \
1632                 ((repr_id) & 0xfff)
1633 #define MLX5_REPRESENTOR_TYPE(repr_id) \
1634                 (((repr_id) >> 12) & 3)
1635 uint16_t mlx5_representor_id_encode(const struct mlx5_switch_info *info,
1636                                     enum rte_eth_representor_type hpf_type);
1637 int mlx5_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info);
1638 int mlx5_fw_version_get(struct rte_eth_dev *dev, char *fw_ver, size_t fw_size);
1639 const uint32_t *mlx5_dev_supported_ptypes_get(struct rte_eth_dev *dev);
1640 int mlx5_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
1641 int mlx5_hairpin_cap_get(struct rte_eth_dev *dev,
1642                          struct rte_eth_hairpin_cap *cap);
1643 eth_rx_burst_t mlx5_select_rx_function(struct rte_eth_dev *dev);
1644 struct mlx5_priv *mlx5_port_to_eswitch_info(uint16_t port, bool valid);
1645 struct mlx5_priv *mlx5_dev_to_eswitch_info(struct rte_eth_dev *dev);
1646 int mlx5_dev_configure_rss_reta(struct rte_eth_dev *dev);
1647
1648 /* mlx5_ethdev_os.c */
1649
1650 int mlx5_get_ifname(const struct rte_eth_dev *dev,
1651                         char (*ifname)[MLX5_NAMESIZE]);
1652 unsigned int mlx5_ifindex(const struct rte_eth_dev *dev);
1653 int mlx5_get_mac(struct rte_eth_dev *dev, uint8_t (*mac)[RTE_ETHER_ADDR_LEN]);
1654 int mlx5_get_mtu(struct rte_eth_dev *dev, uint16_t *mtu);
1655 int mlx5_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
1656 int mlx5_read_clock(struct rte_eth_dev *dev, uint64_t *clock);
1657 int mlx5_link_update(struct rte_eth_dev *dev, int wait_to_complete);
1658 int mlx5_dev_get_flow_ctrl(struct rte_eth_dev *dev,
1659                            struct rte_eth_fc_conf *fc_conf);
1660 int mlx5_dev_set_flow_ctrl(struct rte_eth_dev *dev,
1661                            struct rte_eth_fc_conf *fc_conf);
1662 void mlx5_dev_interrupt_handler(void *arg);
1663 void mlx5_dev_interrupt_handler_devx(void *arg);
1664 int mlx5_set_link_down(struct rte_eth_dev *dev);
1665 int mlx5_set_link_up(struct rte_eth_dev *dev);
1666 int mlx5_is_removed(struct rte_eth_dev *dev);
1667 int mlx5_sysfs_switch_info(unsigned int ifindex,
1668                            struct mlx5_switch_info *info);
1669 void mlx5_translate_port_name(const char *port_name_in,
1670                               struct mlx5_switch_info *port_info_out);
1671 void mlx5_intr_callback_unregister(const struct rte_intr_handle *handle,
1672                                    rte_intr_callback_fn cb_fn, void *cb_arg);
1673 int mlx5_sysfs_bond_info(unsigned int pf_ifindex, unsigned int *ifindex,
1674                          char *ifname);
1675 int mlx5_get_module_info(struct rte_eth_dev *dev,
1676                          struct rte_eth_dev_module_info *modinfo);
1677 int mlx5_get_module_eeprom(struct rte_eth_dev *dev,
1678                            struct rte_dev_eeprom_info *info);
1679 int mlx5_os_read_dev_stat(struct mlx5_priv *priv,
1680                           const char *ctr_name, uint64_t *stat);
1681 int mlx5_os_read_dev_counters(struct rte_eth_dev *dev, uint64_t *stats);
1682 int mlx5_os_get_stats_n(struct rte_eth_dev *dev);
1683 void mlx5_os_stats_init(struct rte_eth_dev *dev);
1684 int mlx5_get_flag_dropless_rq(struct rte_eth_dev *dev);
1685
1686 /* mlx5_mac.c */
1687
1688 void mlx5_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index);
1689 int mlx5_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
1690                       uint32_t index, uint32_t vmdq);
1691 int mlx5_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr);
1692 int mlx5_set_mc_addr_list(struct rte_eth_dev *dev,
1693                         struct rte_ether_addr *mc_addr_set,
1694                         uint32_t nb_mc_addr);
1695
1696 /* mlx5_rss.c */
1697
1698 int mlx5_rss_hash_update(struct rte_eth_dev *dev,
1699                          struct rte_eth_rss_conf *rss_conf);
1700 int mlx5_rss_hash_conf_get(struct rte_eth_dev *dev,
1701                            struct rte_eth_rss_conf *rss_conf);
1702 int mlx5_rss_reta_index_resize(struct rte_eth_dev *dev, unsigned int reta_size);
1703 int mlx5_dev_rss_reta_query(struct rte_eth_dev *dev,
1704                             struct rte_eth_rss_reta_entry64 *reta_conf,
1705                             uint16_t reta_size);
1706 int mlx5_dev_rss_reta_update(struct rte_eth_dev *dev,
1707                              struct rte_eth_rss_reta_entry64 *reta_conf,
1708                              uint16_t reta_size);
1709
1710 /* mlx5_rxmode.c */
1711
1712 int mlx5_promiscuous_enable(struct rte_eth_dev *dev);
1713 int mlx5_promiscuous_disable(struct rte_eth_dev *dev);
1714 int mlx5_allmulticast_enable(struct rte_eth_dev *dev);
1715 int mlx5_allmulticast_disable(struct rte_eth_dev *dev);
1716
1717 /* mlx5_stats.c */
1718
1719 int mlx5_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats);
1720 int mlx5_stats_reset(struct rte_eth_dev *dev);
1721 int mlx5_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *stats,
1722                     unsigned int n);
1723 int mlx5_xstats_reset(struct rte_eth_dev *dev);
1724 int mlx5_xstats_get_names(struct rte_eth_dev *dev __rte_unused,
1725                           struct rte_eth_xstat_name *xstats_names,
1726                           unsigned int n);
1727
1728 /* mlx5_vlan.c */
1729
1730 int mlx5_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on);
1731 void mlx5_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on);
1732 int mlx5_vlan_offload_set(struct rte_eth_dev *dev, int mask);
1733
1734 /* mlx5_vlan_os.c */
1735
1736 void mlx5_vlan_vmwa_exit(void *ctx);
1737 void mlx5_vlan_vmwa_release(struct rte_eth_dev *dev,
1738                             struct mlx5_vf_vlan *vf_vlan);
1739 void mlx5_vlan_vmwa_acquire(struct rte_eth_dev *dev,
1740                             struct mlx5_vf_vlan *vf_vlan);
1741 void *mlx5_vlan_vmwa_init(struct rte_eth_dev *dev, uint32_t ifindex);
1742
1743 /* mlx5_trigger.c */
1744
1745 int mlx5_dev_start(struct rte_eth_dev *dev);
1746 int mlx5_dev_stop(struct rte_eth_dev *dev);
1747 int mlx5_traffic_enable(struct rte_eth_dev *dev);
1748 void mlx5_traffic_disable(struct rte_eth_dev *dev);
1749 int mlx5_traffic_restart(struct rte_eth_dev *dev);
1750 int mlx5_hairpin_queue_peer_update(struct rte_eth_dev *dev, uint16_t peer_queue,
1751                                    struct rte_hairpin_peer_info *current_info,
1752                                    struct rte_hairpin_peer_info *peer_info,
1753                                    uint32_t direction);
1754 int mlx5_hairpin_queue_peer_bind(struct rte_eth_dev *dev, uint16_t cur_queue,
1755                                  struct rte_hairpin_peer_info *peer_info,
1756                                  uint32_t direction);
1757 int mlx5_hairpin_queue_peer_unbind(struct rte_eth_dev *dev, uint16_t cur_queue,
1758                                    uint32_t direction);
1759 int mlx5_hairpin_bind(struct rte_eth_dev *dev, uint16_t rx_port);
1760 int mlx5_hairpin_unbind(struct rte_eth_dev *dev, uint16_t rx_port);
1761 int mlx5_hairpin_get_peer_ports(struct rte_eth_dev *dev, uint16_t *peer_ports,
1762                                 size_t len, uint32_t direction);
1763
1764 /* mlx5_flow.c */
1765
1766 int mlx5_flow_discover_mreg_c(struct rte_eth_dev *eth_dev);
1767 bool mlx5_flow_ext_mreg_supported(struct rte_eth_dev *dev);
1768 void mlx5_flow_print(struct rte_flow *flow);
1769 int mlx5_flow_validate(struct rte_eth_dev *dev,
1770                        const struct rte_flow_attr *attr,
1771                        const struct rte_flow_item items[],
1772                        const struct rte_flow_action actions[],
1773                        struct rte_flow_error *error);
1774 struct rte_flow *mlx5_flow_create(struct rte_eth_dev *dev,
1775                                   const struct rte_flow_attr *attr,
1776                                   const struct rte_flow_item items[],
1777                                   const struct rte_flow_action actions[],
1778                                   struct rte_flow_error *error);
1779 int mlx5_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow,
1780                       struct rte_flow_error *error);
1781 void mlx5_flow_list_flush(struct rte_eth_dev *dev, enum mlx5_flow_type type,
1782                           bool active);
1783 int mlx5_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *error);
1784 int mlx5_flow_query(struct rte_eth_dev *dev, struct rte_flow *flow,
1785                     const struct rte_flow_action *action, void *data,
1786                     struct rte_flow_error *error);
1787 int mlx5_flow_isolate(struct rte_eth_dev *dev, int enable,
1788                       struct rte_flow_error *error);
1789 int mlx5_flow_ops_get(struct rte_eth_dev *dev, const struct rte_flow_ops **ops);
1790 int mlx5_flow_start_default(struct rte_eth_dev *dev);
1791 void mlx5_flow_stop_default(struct rte_eth_dev *dev);
1792 int mlx5_flow_verify(struct rte_eth_dev *dev);
1793 int mlx5_ctrl_flow_source_queue(struct rte_eth_dev *dev, uint32_t queue);
1794 int mlx5_ctrl_flow_vlan(struct rte_eth_dev *dev,
1795                         struct rte_flow_item_eth *eth_spec,
1796                         struct rte_flow_item_eth *eth_mask,
1797                         struct rte_flow_item_vlan *vlan_spec,
1798                         struct rte_flow_item_vlan *vlan_mask);
1799 int mlx5_ctrl_flow(struct rte_eth_dev *dev,
1800                    struct rte_flow_item_eth *eth_spec,
1801                    struct rte_flow_item_eth *eth_mask);
1802 int mlx5_flow_lacp_miss(struct rte_eth_dev *dev);
1803 struct rte_flow *mlx5_flow_create_esw_table_zero_flow(struct rte_eth_dev *dev);
1804 uint32_t mlx5_flow_create_devx_sq_miss_flow(struct rte_eth_dev *dev,
1805                                             uint32_t txq);
1806 void mlx5_flow_async_pool_query_handle(struct mlx5_dev_ctx_shared *sh,
1807                                        uint64_t async_id, int status);
1808 void mlx5_set_query_alarm(struct mlx5_dev_ctx_shared *sh);
1809 void mlx5_flow_query_alarm(void *arg);
1810 uint32_t mlx5_counter_alloc(struct rte_eth_dev *dev);
1811 void mlx5_counter_free(struct rte_eth_dev *dev, uint32_t cnt);
1812 int mlx5_counter_query(struct rte_eth_dev *dev, uint32_t cnt,
1813                     bool clear, uint64_t *pkts, uint64_t *bytes, void **action);
1814 int mlx5_flow_dev_dump(struct rte_eth_dev *dev, struct rte_flow *flow,
1815                         FILE *file, struct rte_flow_error *error);
1816 int save_dump_file(const unsigned char *data, uint32_t size,
1817                 uint32_t type, uint64_t id, void *arg, FILE *file);
1818 int mlx5_flow_query_counter(struct rte_eth_dev *dev, struct rte_flow *flow,
1819         struct rte_flow_query_count *count, struct rte_flow_error *error);
1820 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
1821 int mlx5_flow_dev_dump_ipool(struct rte_eth_dev *dev, struct rte_flow *flow,
1822                 FILE *file, struct rte_flow_error *error);
1823 #endif
1824 void mlx5_flow_rxq_dynf_metadata_set(struct rte_eth_dev *dev);
1825 int mlx5_flow_get_aged_flows(struct rte_eth_dev *dev, void **contexts,
1826                         uint32_t nb_contexts, struct rte_flow_error *error);
1827 int mlx5_validate_action_ct(struct rte_eth_dev *dev,
1828                             const struct rte_flow_action_conntrack *conntrack,
1829                             struct rte_flow_error *error);
1830
1831
1832 /* mlx5_mp_os.c */
1833
1834 int mlx5_mp_os_primary_handle(const struct rte_mp_msg *mp_msg,
1835                               const void *peer);
1836 int mlx5_mp_os_secondary_handle(const struct rte_mp_msg *mp_msg,
1837                                 const void *peer);
1838 void mlx5_mp_os_req_start_rxtx(struct rte_eth_dev *dev);
1839 void mlx5_mp_os_req_stop_rxtx(struct rte_eth_dev *dev);
1840 int mlx5_mp_os_req_queue_control(struct rte_eth_dev *dev, uint16_t queue_id,
1841                                  enum mlx5_mp_req_type req_type);
1842
1843 /* mlx5_socket.c */
1844
1845 int mlx5_pmd_socket_init(void);
1846 void mlx5_pmd_socket_uninit(void);
1847
1848 /* mlx5_flow_meter.c */
1849
1850 int mlx5_flow_meter_ops_get(struct rte_eth_dev *dev, void *arg);
1851 struct mlx5_flow_meter_info *mlx5_flow_meter_find(struct mlx5_priv *priv,
1852                 uint32_t meter_id, uint32_t *mtr_idx);
1853 struct mlx5_flow_meter_info *
1854 flow_dv_meter_find_by_idx(struct mlx5_priv *priv, uint32_t idx);
1855 int mlx5_flow_meter_attach(struct mlx5_priv *priv,
1856                            struct mlx5_flow_meter_info *fm,
1857                            const struct rte_flow_attr *attr,
1858                            struct rte_flow_error *error);
1859 void mlx5_flow_meter_detach(struct mlx5_priv *priv,
1860                             struct mlx5_flow_meter_info *fm);
1861 struct mlx5_flow_meter_policy *mlx5_flow_meter_policy_find
1862                 (struct rte_eth_dev *dev,
1863                 uint32_t policy_id,
1864                 uint32_t *policy_idx);
1865 struct mlx5_flow_meter_policy *
1866 mlx5_flow_meter_hierarchy_get_final_policy(struct rte_eth_dev *dev,
1867                                         struct mlx5_flow_meter_policy *policy);
1868 int mlx5_flow_meter_flush(struct rte_eth_dev *dev,
1869                           struct rte_mtr_error *error);
1870 void mlx5_flow_meter_rxq_flush(struct rte_eth_dev *dev);
1871
1872 /* mlx5_os.c */
1873
1874 struct rte_pci_driver;
1875 int mlx5_os_capabilities_prepare(struct mlx5_dev_ctx_shared *sh);
1876 void mlx5_os_free_shared_dr(struct mlx5_priv *priv);
1877 int mlx5_os_net_probe(struct mlx5_common_device *cdev,
1878                       struct mlx5_kvargs_ctrl *mkvlist);
1879 void mlx5_os_dev_shared_handler_install(struct mlx5_dev_ctx_shared *sh);
1880 void mlx5_os_dev_shared_handler_uninstall(struct mlx5_dev_ctx_shared *sh);
1881 void mlx5_os_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index);
1882 int mlx5_os_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
1883                          uint32_t index);
1884 int mlx5_os_vf_mac_addr_modify(struct mlx5_priv *priv, unsigned int iface_idx,
1885                                struct rte_ether_addr *mac_addr,
1886                                int vf_index);
1887 int mlx5_os_set_promisc(struct rte_eth_dev *dev, int enable);
1888 int mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable);
1889 int mlx5_os_set_nonblock_channel_fd(int fd);
1890 void mlx5_os_mac_addr_flush(struct rte_eth_dev *dev);
1891 void mlx5_os_net_cleanup(void);
1892
1893 /* mlx5_txpp.c */
1894
1895 int mlx5_txpp_start(struct rte_eth_dev *dev);
1896 void mlx5_txpp_stop(struct rte_eth_dev *dev);
1897 int mlx5_txpp_read_clock(struct rte_eth_dev *dev, uint64_t *timestamp);
1898 int mlx5_txpp_xstats_get(struct rte_eth_dev *dev,
1899                          struct rte_eth_xstat *stats,
1900                          unsigned int n, unsigned int n_used);
1901 int mlx5_txpp_xstats_reset(struct rte_eth_dev *dev);
1902 int mlx5_txpp_xstats_get_names(struct rte_eth_dev *dev,
1903                                struct rte_eth_xstat_name *xstats_names,
1904                                unsigned int n, unsigned int n_used);
1905 void mlx5_txpp_interrupt_handler(void *cb_arg);
1906
1907 /* mlx5_rxtx.c */
1908
1909 eth_tx_burst_t mlx5_select_tx_function(struct rte_eth_dev *dev);
1910
1911 /* mlx5_flow_aso.c */
1912
1913 int mlx5_aso_queue_init(struct mlx5_dev_ctx_shared *sh,
1914                 enum mlx5_access_aso_opc_mod aso_opc_mod);
1915 int mlx5_aso_flow_hit_queue_poll_start(struct mlx5_dev_ctx_shared *sh);
1916 int mlx5_aso_flow_hit_queue_poll_stop(struct mlx5_dev_ctx_shared *sh);
1917 void mlx5_aso_queue_uninit(struct mlx5_dev_ctx_shared *sh,
1918                 enum mlx5_access_aso_opc_mod aso_opc_mod);
1919 int mlx5_aso_meter_update_by_wqe(struct mlx5_dev_ctx_shared *sh,
1920                 struct mlx5_aso_mtr *mtr);
1921 int mlx5_aso_mtr_wait(struct mlx5_dev_ctx_shared *sh,
1922                 struct mlx5_aso_mtr *mtr);
1923 int mlx5_aso_ct_update_by_wqe(struct mlx5_dev_ctx_shared *sh,
1924                               struct mlx5_aso_ct_action *ct,
1925                               const struct rte_flow_action_conntrack *profile);
1926 int mlx5_aso_ct_wait_ready(struct mlx5_dev_ctx_shared *sh,
1927                            struct mlx5_aso_ct_action *ct);
1928 int mlx5_aso_ct_query_by_wqe(struct mlx5_dev_ctx_shared *sh,
1929                              struct mlx5_aso_ct_action *ct,
1930                              struct rte_flow_action_conntrack *profile);
1931 int mlx5_aso_ct_available(struct mlx5_dev_ctx_shared *sh,
1932                           struct mlx5_aso_ct_action *ct);
1933 uint32_t
1934 mlx5_get_supported_sw_parsing_offloads(const struct mlx5_hca_attr *attr);
1935 uint32_t
1936 mlx5_get_supported_tunneling_offloads(const struct mlx5_hca_attr *attr);
1937
1938 /* mlx5_flow_flex.c */
1939
1940 struct rte_flow_item_flex_handle *
1941 flow_dv_item_create(struct rte_eth_dev *dev,
1942                     const struct rte_flow_item_flex_conf *conf,
1943                     struct rte_flow_error *error);
1944 int flow_dv_item_release(struct rte_eth_dev *dev,
1945                     const struct rte_flow_item_flex_handle *flex_handle,
1946                     struct rte_flow_error *error);
1947 int mlx5_flex_item_port_init(struct rte_eth_dev *dev);
1948 void mlx5_flex_item_port_cleanup(struct rte_eth_dev *dev);
1949 void mlx5_flex_flow_translate_item(struct rte_eth_dev *dev, void *matcher,
1950                                    void *key, const struct rte_flow_item *item,
1951                                    bool is_inner);
1952 int mlx5_flex_acquire_index(struct rte_eth_dev *dev,
1953                             struct rte_flow_item_flex_handle *handle,
1954                             bool acquire);
1955 int mlx5_flex_release_index(struct rte_eth_dev *dev, int index);
1956
1957 /* Flex parser list callbacks. */
1958 struct mlx5_list_entry *mlx5_flex_parser_create_cb(void *list_ctx, void *ctx);
1959 int mlx5_flex_parser_match_cb(void *list_ctx,
1960                               struct mlx5_list_entry *iter, void *ctx);
1961 void mlx5_flex_parser_remove_cb(void *list_ctx, struct mlx5_list_entry *entry);
1962 struct mlx5_list_entry *mlx5_flex_parser_clone_cb(void *list_ctx,
1963                                                   struct mlx5_list_entry *entry,
1964                                                   void *ctx);
1965 void mlx5_flex_parser_clone_free_cb(void *tool_ctx,
1966                                     struct mlx5_list_entry *entry);
1967 #endif /* RTE_PMD_MLX5_H_ */