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