net/mlx5: make Rx queue thread safe
[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 <netinet/in.h>
14 #include <sys/queue.h>
15
16 #include <rte_pci.h>
17 #include <rte_ether.h>
18 #include <rte_ethdev_driver.h>
19 #include <rte_rwlock.h>
20 #include <rte_interrupts.h>
21 #include <rte_errno.h>
22 #include <rte_flow.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
30 #include "mlx5_defs.h"
31 #include "mlx5_utils.h"
32 #include "mlx5_os.h"
33 #include "mlx5_autoconf.h"
34
35 enum mlx5_ipool_index {
36 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
37         MLX5_IPOOL_DECAP_ENCAP = 0, /* Pool for encap/decap resource. */
38         MLX5_IPOOL_PUSH_VLAN, /* Pool for push vlan resource. */
39         MLX5_IPOOL_TAG, /* Pool for tag resource. */
40         MLX5_IPOOL_PORT_ID, /* Pool for port id resource. */
41         MLX5_IPOOL_JUMP, /* Pool for jump resource. */
42         MLX5_IPOOL_SAMPLE, /* Pool for sample resource. */
43         MLX5_IPOOL_DEST_ARRAY, /* Pool for destination array resource. */
44 #endif
45         MLX5_IPOOL_MTR, /* Pool for meter resource. */
46         MLX5_IPOOL_MCP, /* Pool for metadata resource. */
47         MLX5_IPOOL_HRXQ, /* Pool for hrxq resource. */
48         MLX5_IPOOL_MLX5_FLOW, /* Pool for mlx5 flow handle. */
49         MLX5_IPOOL_RTE_FLOW, /* Pool for rte_flow. */
50         MLX5_IPOOL_RSS_EXPANTION_FLOW_ID, /* Pool for Queue/RSS flow ID. */
51         MLX5_IPOOL_TUNNEL_ID, /* Pool for flow tunnel ID. */
52         MLX5_IPOOL_TNL_TBL_ID, /* Pool for tunnel table ID. */
53         MLX5_IPOOL_MAX,
54 };
55
56 /*
57  * There are three reclaim memory mode supported.
58  * 0(none) means no memory reclaim.
59  * 1(light) means only PMD level reclaim.
60  * 2(aggressive) means both PMD and rdma-core level reclaim.
61  */
62 enum mlx5_reclaim_mem_mode {
63         MLX5_RCM_NONE, /* Don't reclaim memory. */
64         MLX5_RCM_LIGHT, /* Reclaim PMD level. */
65         MLX5_RCM_AGGR, /* Reclaim PMD and rdma-core level. */
66 };
67
68 /* Hash and cache list callback context. */
69 struct mlx5_flow_cb_ctx {
70         struct rte_eth_dev *dev;
71         struct rte_flow_error *error;
72         void *data;
73 };
74
75 /* Device attributes used in mlx5 PMD */
76 struct mlx5_dev_attr {
77         uint64_t        device_cap_flags_ex;
78         int             max_qp_wr;
79         int             max_sge;
80         int             max_cq;
81         int             max_qp;
82         uint32_t        raw_packet_caps;
83         uint32_t        max_rwq_indirection_table_size;
84         uint32_t        max_tso;
85         uint32_t        tso_supported_qpts;
86         uint64_t        flags;
87         uint64_t        comp_mask;
88         uint32_t        sw_parsing_offloads;
89         uint32_t        min_single_stride_log_num_of_bytes;
90         uint32_t        max_single_stride_log_num_of_bytes;
91         uint32_t        min_single_wqe_log_num_of_strides;
92         uint32_t        max_single_wqe_log_num_of_strides;
93         uint32_t        stride_supported_qpts;
94         uint32_t        tunnel_offloads_caps;
95         char            fw_ver[64];
96 };
97
98 /** Data associated with devices to spawn. */
99 struct mlx5_dev_spawn_data {
100         uint32_t ifindex; /**< Network interface index. */
101         uint32_t max_port; /**< Device maximal port index. */
102         uint32_t phys_port; /**< Device physical port index. */
103         int pf_bond; /**< bonding device PF index. < 0 - no bonding */
104         struct mlx5_switch_info info; /**< Switch information. */
105         void *phys_dev; /**< Associated physical device. */
106         struct rte_eth_dev *eth_dev; /**< Associated Ethernet device. */
107         struct rte_pci_device *pci_dev; /**< Backend PCI device. */
108 };
109
110 /** Key string for IPC. */
111 #define MLX5_MP_NAME "net_mlx5_mp"
112
113
114 LIST_HEAD(mlx5_dev_list, mlx5_dev_ctx_shared);
115
116 /* Shared data between primary and secondary processes. */
117 struct mlx5_shared_data {
118         rte_spinlock_t lock;
119         /* Global spinlock for primary and secondary processes. */
120         int init_done; /* Whether primary has done initialization. */
121         unsigned int secondary_cnt; /* Number of secondary processes init'd. */
122         struct mlx5_dev_list mem_event_cb_list;
123         rte_rwlock_t mem_event_rwlock;
124 };
125
126 /* Per-process data structure, not visible to other processes. */
127 struct mlx5_local_data {
128         int init_done; /* Whether a secondary has done initialization. */
129 };
130
131 extern struct mlx5_shared_data *mlx5_shared_data;
132
133 /* Dev ops structs */
134 extern const struct eth_dev_ops mlx5_os_dev_ops;
135 extern const struct eth_dev_ops mlx5_os_dev_sec_ops;
136 extern const struct eth_dev_ops mlx5_os_dev_ops_isolate;
137
138 struct mlx5_counter_ctrl {
139         /* Name of the counter. */
140         char dpdk_name[RTE_ETH_XSTATS_NAME_SIZE];
141         /* Name of the counter on the device table. */
142         char ctr_name[RTE_ETH_XSTATS_NAME_SIZE];
143         uint32_t dev:1; /**< Nonzero for dev counters. */
144 };
145
146 struct mlx5_xstats_ctrl {
147         /* Number of device stats. */
148         uint16_t stats_n;
149         /* Number of device stats identified by PMD. */
150         uint16_t  mlx5_stats_n;
151         /* Index in the device counters table. */
152         uint16_t dev_table_idx[MLX5_MAX_XSTATS];
153         uint64_t base[MLX5_MAX_XSTATS];
154         uint64_t xstats[MLX5_MAX_XSTATS];
155         uint64_t hw_stats[MLX5_MAX_XSTATS];
156         struct mlx5_counter_ctrl info[MLX5_MAX_XSTATS];
157 };
158
159 struct mlx5_stats_ctrl {
160         /* Base for imissed counter. */
161         uint64_t imissed_base;
162         uint64_t imissed;
163 };
164
165 /* Default PMD specific parameter value. */
166 #define MLX5_ARG_UNSET (-1)
167
168 #define MLX5_LRO_SUPPORTED(dev) \
169         (((struct mlx5_priv *)((dev)->data->dev_private))->config.lro.supported)
170
171 /* Maximal size of coalesced segment for LRO is set in chunks of 256 Bytes. */
172 #define MLX5_LRO_SEG_CHUNK_SIZE 256u
173
174 /* Maximal size of aggregated LRO packet. */
175 #define MLX5_MAX_LRO_SIZE (UINT8_MAX * MLX5_LRO_SEG_CHUNK_SIZE)
176
177 /* Maximal number of segments to split. */
178 #define MLX5_MAX_RXQ_NSEG (1u << MLX5_MAX_LOG_RQ_SEGS)
179
180 /* LRO configurations structure. */
181 struct mlx5_lro_config {
182         uint32_t supported:1; /* Whether LRO is supported. */
183         uint32_t timeout; /* User configuration. */
184 };
185
186 /*
187  * Device configuration structure.
188  *
189  * Merged configuration from:
190  *
191  *  - Device capabilities,
192  *  - User device parameters disabled features.
193  */
194 struct mlx5_dev_config {
195         unsigned int hw_csum:1; /* Checksum offload is supported. */
196         unsigned int hw_vlan_strip:1; /* VLAN stripping is supported. */
197         unsigned int hw_vlan_insert:1; /* VLAN insertion in WQE is supported. */
198         unsigned int hw_fcs_strip:1; /* FCS stripping is supported. */
199         unsigned int hw_padding:1; /* End alignment padding is supported. */
200         unsigned int vf:1; /* This is a VF. */
201         unsigned int tunnel_en:1;
202         /* Whether tunnel stateless offloads are supported. */
203         unsigned int mpls_en:1; /* MPLS over GRE/UDP is enabled. */
204         unsigned int cqe_comp:1; /* CQE compression is enabled. */
205         unsigned int cqe_pad:1; /* CQE padding is enabled. */
206         unsigned int tso:1; /* Whether TSO is supported. */
207         unsigned int rx_vec_en:1; /* Rx vector is enabled. */
208         unsigned int mr_ext_memseg_en:1;
209         /* Whether memseg should be extended for MR creation. */
210         unsigned int l3_vxlan_en:1; /* Enable L3 VXLAN flow creation. */
211         unsigned int vf_nl_en:1; /* Enable Netlink requests in VF mode. */
212         unsigned int dv_esw_en:1; /* Enable E-Switch DV flow. */
213         unsigned int dv_flow_en:1; /* Enable DV flow. */
214         unsigned int dv_xmeta_en:2; /* Enable extensive flow metadata. */
215         unsigned int lacp_by_user:1;
216         /* Enable user to manage LACP traffic. */
217         unsigned int swp:1; /* Tx generic tunnel checksum and TSO offload. */
218         unsigned int devx:1; /* Whether devx interface is available or not. */
219         unsigned int dest_tir:1; /* Whether advanced DR API is available. */
220         unsigned int reclaim_mode:2; /* Memory reclaim mode. */
221         unsigned int rt_timestamp:1; /* realtime timestamp format. */
222         unsigned int sys_mem_en:1; /* The default memory allocator. */
223         unsigned int decap_en:1; /* Whether decap will be used or not. */
224         unsigned int dv_miss_info:1; /* restore packet after partial hw miss */
225         struct {
226                 unsigned int enabled:1; /* Whether MPRQ is enabled. */
227                 unsigned int stride_num_n; /* Number of strides. */
228                 unsigned int stride_size_n; /* Size of a stride. */
229                 unsigned int min_stride_size_n; /* Min size of a stride. */
230                 unsigned int max_stride_size_n; /* Max size of a stride. */
231                 unsigned int max_memcpy_len;
232                 /* Maximum packet size to memcpy Rx packets. */
233                 unsigned int min_rxqs_num;
234                 /* Rx queue count threshold to enable MPRQ. */
235         } mprq; /* Configurations for Multi-Packet RQ. */
236         int mps; /* Multi-packet send supported mode. */
237         int dbnc; /* Skip doorbell register write barrier. */
238         unsigned int flow_prio; /* Number of flow priorities. */
239         enum modify_reg flow_mreg_c[MLX5_MREG_C_NUM];
240         /* Availibility of mreg_c's. */
241         unsigned int tso_max_payload_sz; /* Maximum TCP payload for TSO. */
242         unsigned int ind_table_max_size; /* Maximum indirection table size. */
243         unsigned int max_dump_files_num; /* Maximum dump files per queue. */
244         unsigned int log_hp_size; /* Single hairpin queue data size in total. */
245         int txqs_inline; /* Queue number threshold for inlining. */
246         int txq_inline_min; /* Minimal amount of data bytes to inline. */
247         int txq_inline_max; /* Max packet size for inlining with SEND. */
248         int txq_inline_mpw; /* Max packet size for inlining with eMPW. */
249         int tx_pp; /* Timestamp scheduling granularity in nanoseconds. */
250         int tx_skew; /* Tx scheduling skew between WQE and data on wire. */
251         struct mlx5_hca_attr hca_attr; /* HCA attributes. */
252         struct mlx5_lro_config lro; /* LRO configuration. */
253 };
254
255
256 /**
257  * Type of object being allocated.
258  */
259 enum mlx5_verbs_alloc_type {
260         MLX5_VERBS_ALLOC_TYPE_NONE,
261         MLX5_VERBS_ALLOC_TYPE_TX_QUEUE,
262         MLX5_VERBS_ALLOC_TYPE_RX_QUEUE,
263 };
264
265 /* Structure for VF VLAN workaround. */
266 struct mlx5_vf_vlan {
267         uint32_t tag:12;
268         uint32_t created:1;
269 };
270
271 /**
272  * Verbs allocator needs a context to know in the callback which kind of
273  * resources it is allocating.
274  */
275 struct mlx5_verbs_alloc_ctx {
276         enum mlx5_verbs_alloc_type type; /* Kind of object being allocated. */
277         const void *obj; /* Pointer to the DPDK object. */
278 };
279
280 /* Flow drop context necessary due to Verbs API. */
281 struct mlx5_drop {
282         struct mlx5_hrxq *hrxq; /* Hash Rx queue queue. */
283         struct mlx5_rxq_obj *rxq; /* Rx queue object. */
284 };
285
286 #define MLX5_COUNTERS_PER_POOL 512
287 #define MLX5_MAX_PENDING_QUERIES 4
288 #define MLX5_CNT_CONTAINER_RESIZE 64
289 #define MLX5_CNT_SHARED_OFFSET 0x80000000
290 #define IS_SHARED_CNT(cnt) (!!((cnt) & MLX5_CNT_SHARED_OFFSET))
291 #define IS_BATCH_CNT(cnt) (((cnt) & (MLX5_CNT_SHARED_OFFSET - 1)) >= \
292                            MLX5_CNT_BATCH_OFFSET)
293 #define MLX5_CNT_SIZE (sizeof(struct mlx5_flow_counter))
294 #define MLX5_AGE_SIZE (sizeof(struct mlx5_age_param))
295
296 #define MLX5_CNT_LEN(pool) \
297         (MLX5_CNT_SIZE + \
298         ((pool)->is_aged ? MLX5_AGE_SIZE : 0))
299 #define MLX5_POOL_GET_CNT(pool, index) \
300         ((struct mlx5_flow_counter *) \
301         ((uint8_t *)((pool) + 1) + (index) * (MLX5_CNT_LEN(pool))))
302 #define MLX5_CNT_ARRAY_IDX(pool, cnt) \
303         ((int)(((uint8_t *)(cnt) - (uint8_t *)((pool) + 1)) / \
304         MLX5_CNT_LEN(pool)))
305 /*
306  * The pool index and offset of counter in the pool array makes up the
307  * counter index. In case the counter is from pool 0 and offset 0, it
308  * should plus 1 to avoid index 0, since 0 means invalid counter index
309  * currently.
310  */
311 #define MLX5_MAKE_CNT_IDX(pi, offset) \
312         ((pi) * MLX5_COUNTERS_PER_POOL + (offset) + 1)
313 #define MLX5_CNT_TO_AGE(cnt) \
314         ((struct mlx5_age_param *)((cnt) + 1))
315 /*
316  * The maximum single counter is 0x800000 as MLX5_CNT_BATCH_OFFSET
317  * defines. The pool size is 512, pool index should never reach
318  * INT16_MAX.
319  */
320 #define POOL_IDX_INVALID UINT16_MAX
321
322 /* Age status. */
323 enum {
324         AGE_FREE, /* Initialized state. */
325         AGE_CANDIDATE, /* Counter assigned to flows. */
326         AGE_TMOUT, /* Timeout, wait for rte_flow_get_aged_flows and destroy. */
327 };
328
329 enum mlx5_counter_type {
330         MLX5_COUNTER_TYPE_ORIGIN,
331         MLX5_COUNTER_TYPE_AGE,
332         MLX5_COUNTER_TYPE_MAX,
333 };
334
335 /* Counter age parameter. */
336 struct mlx5_age_param {
337         uint16_t state; /**< Age state (atomically accessed). */
338         uint16_t port_id; /**< Port id of the counter. */
339         uint32_t timeout:24; /**< Aging timeout in seconds. */
340         uint32_t sec_since_last_hit;
341         /**< Time in seconds since last hit (atomically accessed). */
342         void *context; /**< Flow counter age context. */
343 };
344
345 struct flow_counter_stats {
346         uint64_t hits;
347         uint64_t bytes;
348 };
349
350 /* Shared counters information for counters. */
351 struct mlx5_flow_counter_shared {
352         uint32_t id; /**< User counter ID. */
353 };
354
355 /* Shared counter configuration. */
356 struct mlx5_shared_counter_conf {
357         struct rte_eth_dev *dev; /* The device shared counter belongs to. */
358         uint32_t id; /* The shared counter ID. */
359 };
360
361 struct mlx5_flow_counter_pool;
362 /* Generic counters information. */
363 struct mlx5_flow_counter {
364         union {
365                 /*
366                  * User-defined counter shared info is only used during
367                  * counter active time. And aging counter sharing is not
368                  * supported, so active shared counter will not be chained
369                  * to the aging list. For shared counter, only when it is
370                  * released, the TAILQ entry memory will be used, at that
371                  * time, shared memory is not used anymore.
372                  *
373                  * Similarly to none-batch counter dcs, since it doesn't
374                  * support aging, while counter is allocated, the entry
375                  * memory is not used anymore. In this case, as bytes
376                  * memory is used only when counter is allocated, and
377                  * entry memory is used only when counter is free. The
378                  * dcs pointer can be saved to these two different place
379                  * at different stage. It will eliminate the individual
380                  * counter extend struct.
381                  */
382                 TAILQ_ENTRY(mlx5_flow_counter) next;
383                 /**< Pointer to the next flow counter structure. */
384                 struct {
385                         struct mlx5_flow_counter_shared shared_info;
386                         /**< Shared counter information. */
387                         void *dcs_when_active;
388                         /*
389                          * For non-batch mode, the dcs will be saved
390                          * here when the counter is free.
391                          */
392                 };
393         };
394         union {
395                 uint64_t hits; /**< Reset value of hits packets. */
396                 struct mlx5_flow_counter_pool *pool; /**< Counter pool. */
397         };
398         union {
399                 uint64_t bytes; /**< Reset value of bytes. */
400                 void *dcs_when_free;
401                 /*
402                  * For non-batch mode, the dcs will be saved here
403                  * when the counter is free.
404                  */
405         };
406         void *action; /**< Pointer to the dv action. */
407 };
408
409 TAILQ_HEAD(mlx5_counters, mlx5_flow_counter);
410
411 /* Generic counter pool structure - query is in pool resolution. */
412 struct mlx5_flow_counter_pool {
413         TAILQ_ENTRY(mlx5_flow_counter_pool) next;
414         struct mlx5_counters counters[2]; /* Free counter list. */
415         struct mlx5_devx_obj *min_dcs;
416         /* The devx object of the minimum counter ID. */
417         uint64_t time_of_last_age_check;
418         /* System time (from rte_rdtsc()) read in the last aging check. */
419         uint32_t index:30; /* Pool index in container. */
420         uint32_t is_aged:1; /* Pool with aging counter. */
421         volatile uint32_t query_gen:1; /* Query round. */
422         rte_spinlock_t sl; /* The pool lock. */
423         rte_spinlock_t csl; /* The pool counter free list lock. */
424         struct mlx5_counter_stats_raw *raw;
425         struct mlx5_counter_stats_raw *raw_hw;
426         /* The raw on HW working. */
427 };
428
429 /* Memory management structure for group of counter statistics raws. */
430 struct mlx5_counter_stats_mem_mng {
431         LIST_ENTRY(mlx5_counter_stats_mem_mng) next;
432         struct mlx5_counter_stats_raw *raws;
433         struct mlx5_devx_obj *dm;
434         void *umem;
435 };
436
437 /* Raw memory structure for the counter statistics values of a pool. */
438 struct mlx5_counter_stats_raw {
439         LIST_ENTRY(mlx5_counter_stats_raw) next;
440         struct mlx5_counter_stats_mem_mng *mem_mng;
441         volatile struct flow_counter_stats *data;
442 };
443
444 TAILQ_HEAD(mlx5_counter_pools, mlx5_flow_counter_pool);
445
446 /* Counter global management structure. */
447 struct mlx5_flow_counter_mng {
448         volatile uint16_t n_valid; /* Number of valid pools. */
449         uint16_t n; /* Number of pools. */
450         uint16_t last_pool_idx; /* Last used pool index */
451         int min_id; /* The minimum counter ID in the pools. */
452         int max_id; /* The maximum counter ID in the pools. */
453         rte_spinlock_t pool_update_sl; /* The pool update lock. */
454         rte_spinlock_t csl[MLX5_COUNTER_TYPE_MAX];
455         /* The counter free list lock. */
456         struct mlx5_counters counters[MLX5_COUNTER_TYPE_MAX];
457         /* Free counter list. */
458         struct mlx5_flow_counter_pool **pools; /* Counter pool array. */
459         struct mlx5_counter_stats_mem_mng *mem_mng;
460         /* Hold the memory management for the next allocated pools raws. */
461         struct mlx5_counters flow_counters; /* Legacy flow counter list. */
462         uint8_t pending_queries;
463         uint16_t pool_index;
464         uint8_t query_thread_on;
465         bool relaxed_ordering;
466         bool counter_fallback; /* Use counter fallback management. */
467         LIST_HEAD(mem_mngs, mlx5_counter_stats_mem_mng) mem_mngs;
468         LIST_HEAD(stat_raws, mlx5_counter_stats_raw) free_stat_raws;
469 };
470
471 #define MLX5_AGE_EVENT_NEW              1
472 #define MLX5_AGE_TRIGGER                2
473 #define MLX5_AGE_SET(age_info, BIT) \
474         ((age_info)->flags |= (1 << (BIT)))
475 #define MLX5_AGE_GET(age_info, BIT) \
476         ((age_info)->flags & (1 << (BIT)))
477 #define GET_PORT_AGE_INFO(priv) \
478         (&((priv)->sh->port[(priv)->dev_port - 1].age_info))
479 /* Current time in seconds. */
480 #define MLX5_CURR_TIME_SEC      (rte_rdtsc() / rte_get_tsc_hz())
481
482 /* Aging information for per port. */
483 struct mlx5_age_info {
484         uint8_t flags; /* Indicate if is new event or need to be triggered. */
485         struct mlx5_counters aged_counters; /* Aged flow counter list. */
486         rte_spinlock_t aged_sl; /* Aged flow counter list lock. */
487 };
488
489 /* Per port data of shared IB device. */
490 struct mlx5_dev_shared_port {
491         uint32_t ih_port_id;
492         uint32_t devx_ih_port_id;
493         /*
494          * Interrupt handler port_id. Used by shared interrupt
495          * handler to find the corresponding rte_eth device
496          * by IB port index. If value is equal or greater
497          * RTE_MAX_ETHPORTS it means there is no subhandler
498          * installed for specified IB port index.
499          */
500         struct mlx5_age_info age_info;
501         /* Aging information for per port. */
502 };
503
504 /* Table key of the hash organization. */
505 union mlx5_flow_tbl_key {
506         struct {
507                 /* Table ID should be at the lowest address. */
508                 uint32_t table_id;      /**< ID of the table. */
509                 uint16_t dummy;         /**< Dummy table for DV API. */
510                 uint8_t domain;         /**< 1 - FDB, 0 - NIC TX/RX. */
511                 uint8_t direction;      /**< 1 - egress, 0 - ingress. */
512         };
513         uint64_t v64;                   /**< full 64bits value of key */
514 };
515
516 /* Table structure. */
517 struct mlx5_flow_tbl_resource {
518         void *obj; /**< Pointer to DR table object. */
519         uint32_t refcnt; /**< Reference counter. */
520 };
521
522 #define MLX5_MAX_TABLES UINT16_MAX
523 #define MLX5_HAIRPIN_TX_TABLE (UINT16_MAX - 1)
524 /* Reserve the last two tables for metadata register copy. */
525 #define MLX5_FLOW_MREG_ACT_TABLE_GROUP (MLX5_MAX_TABLES - 1)
526 #define MLX5_FLOW_MREG_CP_TABLE_GROUP (MLX5_MAX_TABLES - 2)
527 /* Tables for metering splits should be added here. */
528 #define MLX5_MAX_TABLES_EXTERNAL (MLX5_MAX_TABLES - 3)
529 #define MLX5_FLOW_TABLE_LEVEL_METER (MLX5_MAX_TABLES - 4)
530 #define MLX5_FLOW_TABLE_LEVEL_SUFFIX (MLX5_MAX_TABLES - 3)
531 #define MLX5_MAX_TABLES_FDB UINT16_MAX
532 #define MLX5_FLOW_TABLE_FACTOR 10
533
534 /* ID generation structure. */
535 struct mlx5_flow_id_pool {
536         uint32_t *free_arr; /**< Pointer to the a array of free values. */
537         uint32_t base_index;
538         /**< The next index that can be used without any free elements. */
539         uint32_t *curr; /**< Pointer to the index to pop. */
540         uint32_t *last; /**< Pointer to the last element in the empty arrray. */
541         uint32_t max_id; /**< Maximum id can be allocated from the pool. */
542 };
543
544 /* Tx pacing queue structure - for Clock and Rearm queues. */
545 struct mlx5_txpp_wq {
546         /* Completion Queue related data.*/
547         struct mlx5_devx_obj *cq;
548         void *cq_umem;
549         union {
550                 volatile void *cq_buf;
551                 volatile struct mlx5_cqe *cqes;
552         };
553         volatile uint32_t *cq_dbrec;
554         uint32_t cq_ci:24;
555         uint32_t arm_sn:2;
556         /* Send Queue related data.*/
557         struct mlx5_devx_obj *sq;
558         void *sq_umem;
559         union {
560                 volatile void *sq_buf;
561                 volatile struct mlx5_wqe *wqes;
562         };
563         uint16_t sq_size; /* Number of WQEs in the queue. */
564         uint16_t sq_ci; /* Next WQE to execute. */
565         volatile uint32_t *sq_dbrec;
566 };
567
568 /* Tx packet pacing internal timestamp. */
569 struct mlx5_txpp_ts {
570         rte_atomic64_t ci_ts;
571         rte_atomic64_t ts;
572 };
573
574 /* Tx packet pacing structure. */
575 struct mlx5_dev_txpp {
576         pthread_mutex_t mutex; /* Pacing create/destroy mutex. */
577         uint32_t refcnt; /* Pacing reference counter. */
578         uint32_t freq; /* Timestamp frequency, Hz. */
579         uint32_t tick; /* Completion tick duration in nanoseconds. */
580         uint32_t test; /* Packet pacing test mode. */
581         int32_t skew; /* Scheduling skew. */
582         struct rte_intr_handle intr_handle; /* Periodic interrupt. */
583         void *echan; /* Event Channel. */
584         struct mlx5_txpp_wq clock_queue; /* Clock Queue. */
585         struct mlx5_txpp_wq rearm_queue; /* Clock Queue. */
586         void *pp; /* Packet pacing context. */
587         uint16_t pp_id; /* Packet pacing context index. */
588         uint16_t ts_n; /* Number of captured timestamps. */
589         uint16_t ts_p; /* Pointer to statisticks timestamp. */
590         struct mlx5_txpp_ts *tsa; /* Timestamps sliding window stats. */
591         struct mlx5_txpp_ts ts; /* Cached completion id/timestamp. */
592         uint32_t sync_lost:1; /* ci/timestamp synchronization lost. */
593         /* Statistics counters. */
594         rte_atomic32_t err_miss_int; /* Missed service interrupt. */
595         rte_atomic32_t err_rearm_queue; /* Rearm Queue errors. */
596         rte_atomic32_t err_clock_queue; /* Clock Queue errors. */
597         rte_atomic32_t err_ts_past; /* Timestamp in the past. */
598         rte_atomic32_t err_ts_future; /* Timestamp in the distant future. */
599 };
600
601 /* Supported flex parser profile ID. */
602 enum mlx5_flex_parser_profile_id {
603         MLX5_FLEX_PARSER_ECPRI_0 = 0,
604         MLX5_FLEX_PARSER_MAX = 8,
605 };
606
607 /* Sample ID information of flex parser structure. */
608 struct mlx5_flex_parser_profiles {
609         uint32_t num;           /* Actual number of samples. */
610         uint32_t ids[8];        /* Sample IDs for this profile. */
611         uint8_t offset[8];      /* Bytes offset of each parser. */
612         void *obj;              /* Flex parser node object. */
613 };
614
615 /*
616  * Shared Infiniband device context for Master/Representors
617  * which belong to same IB device with multiple IB ports.
618  **/
619 struct mlx5_dev_ctx_shared {
620         LIST_ENTRY(mlx5_dev_ctx_shared) next;
621         uint32_t refcnt;
622         uint32_t devx:1; /* Opened with DV. */
623         uint32_t eqn; /* Event Queue number. */
624         uint32_t max_port; /* Maximal IB device port index. */
625         void *ctx; /* Verbs/DV/DevX context. */
626         void *pd; /* Protection Domain. */
627         uint32_t pdn; /* Protection Domain number. */
628         uint32_t tdn; /* Transport Domain number. */
629         char ibdev_name[DEV_SYSFS_NAME_MAX]; /* SYSFS dev name. */
630         char ibdev_path[DEV_SYSFS_PATH_MAX]; /* SYSFS dev path for secondary */
631         struct mlx5_dev_attr device_attr; /* Device properties. */
632         int numa_node; /* Numa node of backing physical device. */
633         LIST_ENTRY(mlx5_dev_ctx_shared) mem_event_cb;
634         /**< Called by memory event callback. */
635         struct mlx5_mr_share_cache share_cache;
636         /* Packet pacing related structure. */
637         struct mlx5_dev_txpp txpp;
638         /* Shared DV/DR flow data section. */
639         pthread_mutex_t dv_mutex; /* DV context mutex. */
640         uint32_t dv_meta_mask; /* flow META metadata supported mask. */
641         uint32_t dv_mark_mask; /* flow MARK metadata supported mask. */
642         uint32_t dv_regc0_mask; /* available bits of metatada reg_c[0]. */
643         void *fdb_domain; /* FDB Direct Rules name space handle. */
644         void *rx_domain; /* RX Direct Rules name space handle. */
645         void *tx_domain; /* TX Direct Rules name space handle. */
646 #ifndef RTE_ARCH_64
647         rte_spinlock_t uar_lock_cq; /* CQs share a common distinct UAR */
648         rte_spinlock_t uar_lock[MLX5_UAR_PAGE_NUM_MAX];
649         /* UAR same-page access control required in 32bit implementations. */
650 #endif
651         struct mlx5_hlist *flow_tbls;
652         struct mlx5_flow_tunnel_hub *tunnel_hub;
653         /* Direct Rules tables for FDB, NIC TX+RX */
654         void *esw_drop_action; /* Pointer to DR E-Switch drop action. */
655         void *pop_vlan_action; /* Pointer to DR pop VLAN action. */
656         struct mlx5_hlist *encaps_decaps; /* Encap/decap action hash list. */
657         struct mlx5_hlist *modify_cmds;
658         struct mlx5_hlist *tag_table;
659         uint32_t port_id_action_list; /* List of port ID actions. */
660         uint32_t push_vlan_action_list; /* List of push VLAN actions. */
661         uint32_t sample_action_list; /* List of sample actions. */
662         uint32_t dest_array_list; /* List of destination array actions. */
663         struct mlx5_flow_counter_mng cmng; /* Counters management structure. */
664         void *default_miss_action; /* Default miss action. */
665         struct mlx5_indexed_pool *ipool[MLX5_IPOOL_MAX];
666         /* Memory Pool for mlx5 flow resources. */
667         struct mlx5_l3t_tbl *cnt_id_tbl; /* Shared counter lookup table. */
668         /* Shared interrupt handler section. */
669         struct rte_intr_handle intr_handle; /* Interrupt handler for device. */
670         struct rte_intr_handle intr_handle_devx; /* DEVX interrupt handler. */
671         void *devx_comp; /* DEVX async comp obj. */
672         struct mlx5_devx_obj *tis; /* TIS object. */
673         struct mlx5_devx_obj *td; /* Transport domain. */
674         void *tx_uar; /* Tx/packet pacing shared UAR. */
675         struct mlx5_flex_parser_profiles fp[MLX5_FLEX_PARSER_MAX];
676         /* Flex parser profiles information. */
677         void *devx_rx_uar; /* DevX UAR for Rx. */
678         struct mlx5_dev_shared_port port[]; /* per device port data array. */
679 };
680
681 /* Per-process private structure. */
682 struct mlx5_proc_priv {
683         size_t uar_table_sz;
684         /* Size of UAR register table. */
685         void *uar_table[];
686         /* Table of UAR registers for each process. */
687 };
688
689 /* MTR profile list. */
690 TAILQ_HEAD(mlx5_mtr_profiles, mlx5_flow_meter_profile);
691 /* MTR list. */
692 TAILQ_HEAD(mlx5_flow_meters, mlx5_flow_meter);
693
694 /* RSS description. */
695 struct mlx5_flow_rss_desc {
696         uint32_t level;
697         uint32_t queue_num; /**< Number of entries in @p queue. */
698         uint64_t types; /**< Specific RSS hash types (see ETH_RSS_*). */
699         uint64_t hash_fields; /* Verbs Hash fields. */
700         uint8_t key[MLX5_RSS_HASH_KEY_LEN]; /**< RSS hash key. */
701         uint32_t key_len; /**< RSS hash key len. */
702         uint32_t tunnel; /**< Queue in tunnel. */
703         union {
704                 uint16_t *queue; /**< Destination queues. */
705                 const uint16_t *const_q; /**< Const pointer convert. */
706         };
707         bool standalone; /**< Queue is standalone or not. */
708 };
709
710 #define MLX5_PROC_PRIV(port_id) \
711         ((struct mlx5_proc_priv *)rte_eth_devices[port_id].process_private)
712
713 /* Verbs/DevX Rx queue elements. */
714 struct mlx5_rxq_obj {
715         LIST_ENTRY(mlx5_rxq_obj) next; /* Pointer to the next element. */
716         struct mlx5_rxq_ctrl *rxq_ctrl; /* Back pointer to parent. */
717         int fd; /* File descriptor for event channel */
718         RTE_STD_C11
719         union {
720                 struct {
721                         void *wq; /* Work Queue. */
722                         void *ibv_cq; /* Completion Queue. */
723                         void *ibv_channel;
724                 };
725                 struct {
726                         struct mlx5_devx_obj *rq; /* DevX Rx Queue object. */
727                         struct mlx5_devx_obj *devx_cq; /* DevX CQ object. */
728                         void *devx_channel;
729                 };
730         };
731 };
732
733 /* Indirection table. */
734 struct mlx5_ind_table_obj {
735         LIST_ENTRY(mlx5_ind_table_obj) next; /* Pointer to the next element. */
736         uint32_t refcnt; /* Reference counter. */
737         RTE_STD_C11
738         union {
739                 void *ind_table; /**< Indirection table. */
740                 struct mlx5_devx_obj *rqt; /* DevX RQT object. */
741         };
742         uint32_t queues_n; /**< Number of queues in the list. */
743         uint16_t queues[]; /**< Queue list. */
744 };
745
746 /* Hash Rx queue. */
747 __extension__
748 struct mlx5_hrxq {
749         struct mlx5_cache_entry entry; /* Cache entry. */
750         uint32_t refcnt; /* Reference counter. */
751         uint32_t standalone:1; /* This object used in shared action. */
752         struct mlx5_ind_table_obj *ind_table; /* Indirection table. */
753         RTE_STD_C11
754         union {
755                 void *qp; /* Verbs queue pair. */
756                 struct mlx5_devx_obj *tir; /* DevX TIR object. */
757         };
758 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
759         void *action; /* DV QP action pointer. */
760 #endif
761         uint64_t hash_fields; /* Verbs Hash fields. */
762         uint32_t rss_key_len; /* Hash key length in bytes. */
763         uint32_t idx; /* Hash Rx queue index. */
764         uint8_t rss_key[]; /* Hash key. */
765 };
766
767 /* Verbs/DevX Tx queue elements. */
768 struct mlx5_txq_obj {
769         LIST_ENTRY(mlx5_txq_obj) next; /* Pointer to the next element. */
770         struct mlx5_txq_ctrl *txq_ctrl; /* Pointer to the control queue. */
771         RTE_STD_C11
772         union {
773                 struct {
774                         void *cq; /* Completion Queue. */
775                         void *qp; /* Queue Pair. */
776                 };
777                 struct {
778                         struct mlx5_devx_obj *sq;
779                         /* DevX object for Sx queue. */
780                         struct mlx5_devx_obj *tis; /* The TIS object. */
781                 };
782                 struct {
783                         struct rte_eth_dev *dev;
784                         struct mlx5_devx_obj *cq_devx;
785                         void *cq_umem;
786                         void *cq_buf;
787                         int64_t cq_dbrec_offset;
788                         struct mlx5_devx_dbr_page *cq_dbrec_page;
789                         struct mlx5_devx_obj *sq_devx;
790                         void *sq_umem;
791                         void *sq_buf;
792                         int64_t sq_dbrec_offset;
793                         struct mlx5_devx_dbr_page *sq_dbrec_page;
794                 };
795         };
796 };
797
798 enum mlx5_rxq_modify_type {
799         MLX5_RXQ_MOD_ERR2RST, /* modify state from error to reset. */
800         MLX5_RXQ_MOD_RST2RDY, /* modify state from reset to ready. */
801         MLX5_RXQ_MOD_RDY2ERR, /* modify state from ready to error. */
802         MLX5_RXQ_MOD_RDY2RST, /* modify state from ready to reset. */
803 };
804
805 enum mlx5_txq_modify_type {
806         MLX5_TXQ_MOD_RST2RDY, /* modify state from reset to ready. */
807         MLX5_TXQ_MOD_RDY2RST, /* modify state from ready to reset. */
808         MLX5_TXQ_MOD_ERR2RDY, /* modify state from error to ready. */
809 };
810
811 /* HW objects operations structure. */
812 struct mlx5_obj_ops {
813         int (*rxq_obj_modify_vlan_strip)(struct mlx5_rxq_obj *rxq_obj, int on);
814         int (*rxq_obj_new)(struct rte_eth_dev *dev, uint16_t idx);
815         int (*rxq_event_get)(struct mlx5_rxq_obj *rxq_obj);
816         int (*rxq_obj_modify)(struct mlx5_rxq_obj *rxq_obj, uint8_t type);
817         void (*rxq_obj_release)(struct mlx5_rxq_obj *rxq_obj);
818         int (*ind_table_new)(struct rte_eth_dev *dev, const unsigned int log_n,
819                              struct mlx5_ind_table_obj *ind_tbl);
820         void (*ind_table_destroy)(struct mlx5_ind_table_obj *ind_tbl);
821         int (*hrxq_new)(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq,
822                         int tunnel __rte_unused);
823         int (*hrxq_modify)(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq,
824                            const uint8_t *rss_key,
825                            uint64_t hash_fields,
826                            const struct mlx5_ind_table_obj *ind_tbl);
827         void (*hrxq_destroy)(struct mlx5_hrxq *hrxq);
828         int (*drop_action_create)(struct rte_eth_dev *dev);
829         void (*drop_action_destroy)(struct rte_eth_dev *dev);
830         int (*txq_obj_new)(struct rte_eth_dev *dev, uint16_t idx);
831         int (*txq_obj_modify)(struct mlx5_txq_obj *obj,
832                               enum mlx5_txq_modify_type type, uint8_t dev_port);
833         void (*txq_obj_release)(struct mlx5_txq_obj *txq_obj);
834 };
835
836 struct mlx5_priv {
837         struct rte_eth_dev_data *dev_data;  /* Pointer to device data. */
838         struct mlx5_dev_ctx_shared *sh; /* Shared device context. */
839         uint32_t dev_port; /* Device port number. */
840         struct rte_pci_device *pci_dev; /* Backend PCI device. */
841         struct rte_ether_addr mac[MLX5_MAX_MAC_ADDRESSES]; /* MAC addresses. */
842         BITFIELD_DECLARE(mac_own, uint64_t, MLX5_MAX_MAC_ADDRESSES);
843         /* Bit-field of MAC addresses owned by the PMD. */
844         uint16_t vlan_filter[MLX5_MAX_VLAN_IDS]; /* VLAN filters table. */
845         unsigned int vlan_filter_n; /* Number of configured VLAN filters. */
846         /* Device properties. */
847         uint16_t mtu; /* Configured MTU. */
848         unsigned int isolated:1; /* Whether isolated mode is enabled. */
849         unsigned int representor:1; /* Device is a port representor. */
850         unsigned int master:1; /* Device is a E-Switch master. */
851         unsigned int txpp_en:1; /* Tx packet pacing enabled. */
852         unsigned int mtr_en:1; /* Whether support meter. */
853         unsigned int mtr_reg_share:1; /* Whether support meter REG_C share. */
854         unsigned int sampler_en:1; /* Whether support sampler. */
855         uint16_t domain_id; /* Switch domain identifier. */
856         uint16_t vport_id; /* Associated VF vport index (if any). */
857         uint32_t vport_meta_tag; /* Used for vport index match ove VF LAG. */
858         uint32_t vport_meta_mask; /* Used for vport index field match mask. */
859         int32_t representor_id; /* Port representor identifier. */
860         int32_t pf_bond; /* >=0 means PF index in bonding configuration. */
861         unsigned int if_index; /* Associated kernel network device index. */
862         uint32_t bond_ifindex; /**< Bond interface index. */
863         char bond_name[IF_NAMESIZE]; /**< Bond interface name. */
864         /* RX/TX queues. */
865         unsigned int rxqs_n; /* RX queues array size. */
866         unsigned int txqs_n; /* TX queues array size. */
867         struct mlx5_rxq_data *(*rxqs)[]; /* RX queues. */
868         struct mlx5_txq_data *(*txqs)[]; /* TX queues. */
869         struct rte_mempool *mprq_mp; /* Mempool for Multi-Packet RQ. */
870         struct rte_eth_rss_conf rss_conf; /* RSS configuration. */
871         unsigned int (*reta_idx)[]; /* RETA index table. */
872         unsigned int reta_idx_n; /* RETA index size. */
873         struct mlx5_drop drop_queue; /* Flow drop queues. */
874         uint32_t flows; /* RTE Flow rules. */
875         uint32_t ctrl_flows; /* Control flow rules. */
876         rte_spinlock_t flow_list_lock;
877         struct mlx5_obj_ops obj_ops; /* HW objects operations. */
878         LIST_HEAD(rxq, mlx5_rxq_ctrl) rxqsctrl; /* DPDK Rx queues. */
879         LIST_HEAD(rxqobj, mlx5_rxq_obj) rxqsobj; /* Verbs/DevX Rx queues. */
880         struct mlx5_cache_list hrxqs; /* Hash Rx queues. */
881         LIST_HEAD(txq, mlx5_txq_ctrl) txqsctrl; /* DPDK Tx queues. */
882         LIST_HEAD(txqobj, mlx5_txq_obj) txqsobj; /* Verbs/DevX Tx queues. */
883         /* Indirection tables. */
884         LIST_HEAD(ind_tables, mlx5_ind_table_obj) ind_tbls;
885         /* Pointer to next element. */
886         uint32_t refcnt; /**< Reference counter. */
887         /**< Verbs modify header action object. */
888         uint8_t ft_type; /**< Flow table type, Rx or Tx. */
889         uint8_t max_lro_msg_size;
890         /* Tags resources cache. */
891         uint32_t link_speed_capa; /* Link speed capabilities. */
892         struct mlx5_xstats_ctrl xstats_ctrl; /* Extended stats control. */
893         struct mlx5_stats_ctrl stats_ctrl; /* Stats control. */
894         struct mlx5_dev_config config; /* Device configuration. */
895         struct mlx5_verbs_alloc_ctx verbs_alloc_ctx;
896         /* Context for Verbs allocator. */
897         int nl_socket_rdma; /* Netlink socket (NETLINK_RDMA). */
898         int nl_socket_route; /* Netlink socket (NETLINK_ROUTE). */
899         struct mlx5_dbr_page_list dbrpgs; /* Door-bell pages. */
900         struct mlx5_nl_vlan_vmwa_context *vmwa_context; /* VLAN WA context. */
901         struct mlx5_hlist *mreg_cp_tbl;
902         /* Hash table of Rx metadata register copy table. */
903         uint8_t mtr_sfx_reg; /* Meter prefix-suffix flow match REG_C. */
904         uint8_t mtr_color_reg; /* Meter color match REG_C. */
905         struct mlx5_mtr_profiles flow_meter_profiles; /* MTR profile list. */
906         struct mlx5_flow_meters flow_meters; /* MTR list. */
907         uint8_t skip_default_rss_reta; /* Skip configuration of default reta. */
908         uint8_t fdb_def_rule; /* Whether fdb jump to table 1 is configured. */
909         struct mlx5_mp_id mp_id; /* ID of a multi-process process */
910         LIST_HEAD(fdir, mlx5_fdir_flow) fdir_flows; /* fdir flows. */
911         LIST_HEAD(shared_action, rte_flow_shared_action) shared_actions;
912         /* shared actions */
913 };
914
915 #define PORT_ID(priv) ((priv)->dev_data->port_id)
916 #define ETH_DEV(priv) (&rte_eth_devices[PORT_ID(priv)])
917
918 struct rte_hairpin_peer_info {
919         uint32_t qp_id;
920         uint32_t vhca_id;
921         uint16_t peer_q;
922         uint16_t tx_explicit;
923         uint16_t manual_bind;
924 };
925
926 /* mlx5.c */
927
928 int mlx5_getenv_int(const char *);
929 int mlx5_proc_priv_init(struct rte_eth_dev *dev);
930 int mlx5_udp_tunnel_port_add(struct rte_eth_dev *dev,
931                               struct rte_eth_udp_tunnel *udp_tunnel);
932 uint16_t mlx5_eth_find_next(uint16_t port_id, struct rte_pci_device *pci_dev);
933 int mlx5_dev_close(struct rte_eth_dev *dev);
934
935 /* Macro to iterate over all valid ports for mlx5 driver. */
936 #define MLX5_ETH_FOREACH_DEV(port_id, pci_dev) \
937         for (port_id = mlx5_eth_find_next(0, pci_dev); \
938              port_id < RTE_MAX_ETHPORTS; \
939              port_id = mlx5_eth_find_next(port_id + 1, pci_dev))
940 int mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs);
941 struct mlx5_dev_ctx_shared *
942 mlx5_alloc_shared_dev_ctx(const struct mlx5_dev_spawn_data *spawn,
943                            const struct mlx5_dev_config *config);
944 void mlx5_free_shared_dev_ctx(struct mlx5_dev_ctx_shared *sh);
945 void mlx5_free_table_hash_list(struct mlx5_priv *priv);
946 int mlx5_alloc_table_hash_list(struct mlx5_priv *priv);
947 void mlx5_set_min_inline(struct mlx5_dev_spawn_data *spawn,
948                          struct mlx5_dev_config *config);
949 void mlx5_set_metadata_mask(struct rte_eth_dev *dev);
950 int mlx5_dev_check_sibling_config(struct mlx5_priv *priv,
951                                   struct mlx5_dev_config *config);
952 int mlx5_dev_configure(struct rte_eth_dev *dev);
953 int mlx5_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info);
954 int mlx5_fw_version_get(struct rte_eth_dev *dev, char *fw_ver, size_t fw_size);
955 int mlx5_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
956 int mlx5_hairpin_cap_get(struct rte_eth_dev *dev,
957                          struct rte_eth_hairpin_cap *cap);
958 bool mlx5_flex_parser_ecpri_exist(struct rte_eth_dev *dev);
959 int mlx5_flex_parser_ecpri_alloc(struct rte_eth_dev *dev);
960
961 /* mlx5_ethdev.c */
962
963 int mlx5_dev_configure(struct rte_eth_dev *dev);
964 int mlx5_fw_version_get(struct rte_eth_dev *dev, char *fw_ver,
965                         size_t fw_size);
966 int mlx5_dev_infos_get(struct rte_eth_dev *dev,
967                        struct rte_eth_dev_info *info);
968 const uint32_t *mlx5_dev_supported_ptypes_get(struct rte_eth_dev *dev);
969 int mlx5_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
970 int mlx5_hairpin_cap_get(struct rte_eth_dev *dev,
971                          struct rte_eth_hairpin_cap *cap);
972 eth_rx_burst_t mlx5_select_rx_function(struct rte_eth_dev *dev);
973 struct mlx5_priv *mlx5_port_to_eswitch_info(uint16_t port, bool valid);
974 struct mlx5_priv *mlx5_dev_to_eswitch_info(struct rte_eth_dev *dev);
975 int mlx5_dev_configure_rss_reta(struct rte_eth_dev *dev);
976
977 /* mlx5_ethdev_os.c */
978
979 unsigned int mlx5_ifindex(const struct rte_eth_dev *dev);
980 int mlx5_get_mac(struct rte_eth_dev *dev, uint8_t (*mac)[RTE_ETHER_ADDR_LEN]);
981 int mlx5_get_mtu(struct rte_eth_dev *dev, uint16_t *mtu);
982 int mlx5_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
983 int mlx5_read_clock(struct rte_eth_dev *dev, uint64_t *clock);
984 int mlx5_link_update(struct rte_eth_dev *dev, int wait_to_complete);
985 int mlx5_dev_get_flow_ctrl(struct rte_eth_dev *dev,
986                            struct rte_eth_fc_conf *fc_conf);
987 int mlx5_dev_set_flow_ctrl(struct rte_eth_dev *dev,
988                            struct rte_eth_fc_conf *fc_conf);
989 void mlx5_dev_interrupt_handler(void *arg);
990 void mlx5_dev_interrupt_handler_devx(void *arg);
991 int mlx5_set_link_down(struct rte_eth_dev *dev);
992 int mlx5_set_link_up(struct rte_eth_dev *dev);
993 int mlx5_is_removed(struct rte_eth_dev *dev);
994 int mlx5_sysfs_switch_info(unsigned int ifindex,
995                            struct mlx5_switch_info *info);
996 void mlx5_translate_port_name(const char *port_name_in,
997                               struct mlx5_switch_info *port_info_out);
998 void mlx5_intr_callback_unregister(const struct rte_intr_handle *handle,
999                                    rte_intr_callback_fn cb_fn, void *cb_arg);
1000 int mlx5_sysfs_bond_info(unsigned int pf_ifindex, unsigned int *ifindex,
1001                          char *ifname);
1002 int mlx5_get_module_info(struct rte_eth_dev *dev,
1003                          struct rte_eth_dev_module_info *modinfo);
1004 int mlx5_get_module_eeprom(struct rte_eth_dev *dev,
1005                            struct rte_dev_eeprom_info *info);
1006 int mlx5_os_read_dev_stat(struct mlx5_priv *priv,
1007                           const char *ctr_name, uint64_t *stat);
1008 int mlx5_os_read_dev_counters(struct rte_eth_dev *dev, uint64_t *stats);
1009 int mlx5_os_get_stats_n(struct rte_eth_dev *dev);
1010 void mlx5_os_stats_init(struct rte_eth_dev *dev);
1011
1012 /* mlx5_mac.c */
1013
1014 void mlx5_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index);
1015 int mlx5_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
1016                       uint32_t index, uint32_t vmdq);
1017 int mlx5_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr);
1018 int mlx5_set_mc_addr_list(struct rte_eth_dev *dev,
1019                         struct rte_ether_addr *mc_addr_set,
1020                         uint32_t nb_mc_addr);
1021
1022 /* mlx5_rss.c */
1023
1024 int mlx5_rss_hash_update(struct rte_eth_dev *dev,
1025                          struct rte_eth_rss_conf *rss_conf);
1026 int mlx5_rss_hash_conf_get(struct rte_eth_dev *dev,
1027                            struct rte_eth_rss_conf *rss_conf);
1028 int mlx5_rss_reta_index_resize(struct rte_eth_dev *dev, unsigned int reta_size);
1029 int mlx5_dev_rss_reta_query(struct rte_eth_dev *dev,
1030                             struct rte_eth_rss_reta_entry64 *reta_conf,
1031                             uint16_t reta_size);
1032 int mlx5_dev_rss_reta_update(struct rte_eth_dev *dev,
1033                              struct rte_eth_rss_reta_entry64 *reta_conf,
1034                              uint16_t reta_size);
1035
1036 /* mlx5_rxmode.c */
1037
1038 int mlx5_promiscuous_enable(struct rte_eth_dev *dev);
1039 int mlx5_promiscuous_disable(struct rte_eth_dev *dev);
1040 int mlx5_allmulticast_enable(struct rte_eth_dev *dev);
1041 int mlx5_allmulticast_disable(struct rte_eth_dev *dev);
1042
1043 /* mlx5_stats.c */
1044
1045 int mlx5_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats);
1046 int mlx5_stats_reset(struct rte_eth_dev *dev);
1047 int mlx5_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *stats,
1048                     unsigned int n);
1049 int mlx5_xstats_reset(struct rte_eth_dev *dev);
1050 int mlx5_xstats_get_names(struct rte_eth_dev *dev __rte_unused,
1051                           struct rte_eth_xstat_name *xstats_names,
1052                           unsigned int n);
1053
1054 /* mlx5_vlan.c */
1055
1056 int mlx5_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on);
1057 void mlx5_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on);
1058 int mlx5_vlan_offload_set(struct rte_eth_dev *dev, int mask);
1059
1060 /* mlx5_vlan_os.c */
1061
1062 void mlx5_vlan_vmwa_exit(void *ctx);
1063 void mlx5_vlan_vmwa_release(struct rte_eth_dev *dev,
1064                             struct mlx5_vf_vlan *vf_vlan);
1065 void mlx5_vlan_vmwa_acquire(struct rte_eth_dev *dev,
1066                             struct mlx5_vf_vlan *vf_vlan);
1067 void *mlx5_vlan_vmwa_init(struct rte_eth_dev *dev, uint32_t ifindex);
1068
1069 /* mlx5_trigger.c */
1070
1071 int mlx5_dev_start(struct rte_eth_dev *dev);
1072 int mlx5_dev_stop(struct rte_eth_dev *dev);
1073 int mlx5_traffic_enable(struct rte_eth_dev *dev);
1074 void mlx5_traffic_disable(struct rte_eth_dev *dev);
1075 int mlx5_traffic_restart(struct rte_eth_dev *dev);
1076 int mlx5_hairpin_queue_peer_update(struct rte_eth_dev *dev, uint16_t peer_queue,
1077                                    struct rte_hairpin_peer_info *current_info,
1078                                    struct rte_hairpin_peer_info *peer_info,
1079                                    uint32_t direction);
1080 int mlx5_hairpin_queue_peer_bind(struct rte_eth_dev *dev, uint16_t cur_queue,
1081                                  struct rte_hairpin_peer_info *peer_info,
1082                                  uint32_t direction);
1083 int mlx5_hairpin_queue_peer_unbind(struct rte_eth_dev *dev, uint16_t cur_queue,
1084                                    uint32_t direction);
1085 int mlx5_hairpin_bind(struct rte_eth_dev *dev, uint16_t rx_port);
1086 int mlx5_hairpin_unbind(struct rte_eth_dev *dev, uint16_t rx_port);
1087 int mlx5_hairpin_get_peer_ports(struct rte_eth_dev *dev, uint16_t *peer_ports,
1088                                 size_t len, uint32_t direction);
1089
1090 /* mlx5_flow.c */
1091
1092 int mlx5_flow_discover_mreg_c(struct rte_eth_dev *eth_dev);
1093 bool mlx5_flow_ext_mreg_supported(struct rte_eth_dev *dev);
1094 void mlx5_flow_print(struct rte_flow *flow);
1095 int mlx5_flow_validate(struct rte_eth_dev *dev,
1096                        const struct rte_flow_attr *attr,
1097                        const struct rte_flow_item items[],
1098                        const struct rte_flow_action actions[],
1099                        struct rte_flow_error *error);
1100 struct rte_flow *mlx5_flow_create(struct rte_eth_dev *dev,
1101                                   const struct rte_flow_attr *attr,
1102                                   const struct rte_flow_item items[],
1103                                   const struct rte_flow_action actions[],
1104                                   struct rte_flow_error *error);
1105 int mlx5_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow,
1106                       struct rte_flow_error *error);
1107 void mlx5_flow_list_flush(struct rte_eth_dev *dev, uint32_t *list, bool active);
1108 int mlx5_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *error);
1109 int mlx5_flow_query(struct rte_eth_dev *dev, struct rte_flow *flow,
1110                     const struct rte_flow_action *action, void *data,
1111                     struct rte_flow_error *error);
1112 int mlx5_flow_isolate(struct rte_eth_dev *dev, int enable,
1113                       struct rte_flow_error *error);
1114 int mlx5_dev_filter_ctrl(struct rte_eth_dev *dev,
1115                          enum rte_filter_type filter_type,
1116                          enum rte_filter_op filter_op,
1117                          void *arg);
1118 int mlx5_flow_start_default(struct rte_eth_dev *dev);
1119 void mlx5_flow_stop_default(struct rte_eth_dev *dev);
1120 int mlx5_flow_verify(struct rte_eth_dev *dev);
1121 int mlx5_ctrl_flow_source_queue(struct rte_eth_dev *dev, uint32_t queue);
1122 int mlx5_ctrl_flow_vlan(struct rte_eth_dev *dev,
1123                         struct rte_flow_item_eth *eth_spec,
1124                         struct rte_flow_item_eth *eth_mask,
1125                         struct rte_flow_item_vlan *vlan_spec,
1126                         struct rte_flow_item_vlan *vlan_mask);
1127 int mlx5_ctrl_flow(struct rte_eth_dev *dev,
1128                    struct rte_flow_item_eth *eth_spec,
1129                    struct rte_flow_item_eth *eth_mask);
1130 int mlx5_flow_lacp_miss(struct rte_eth_dev *dev);
1131 struct rte_flow *mlx5_flow_create_esw_table_zero_flow(struct rte_eth_dev *dev);
1132 int mlx5_flow_create_drop_queue(struct rte_eth_dev *dev);
1133 void mlx5_flow_delete_drop_queue(struct rte_eth_dev *dev);
1134 void mlx5_flow_async_pool_query_handle(struct mlx5_dev_ctx_shared *sh,
1135                                        uint64_t async_id, int status);
1136 void mlx5_set_query_alarm(struct mlx5_dev_ctx_shared *sh);
1137 void mlx5_flow_query_alarm(void *arg);
1138 uint32_t mlx5_counter_alloc(struct rte_eth_dev *dev);
1139 void mlx5_counter_free(struct rte_eth_dev *dev, uint32_t cnt);
1140 int mlx5_counter_query(struct rte_eth_dev *dev, uint32_t cnt,
1141                        bool clear, uint64_t *pkts, uint64_t *bytes);
1142 int mlx5_flow_dev_dump(struct rte_eth_dev *dev, FILE *file,
1143                        struct rte_flow_error *error);
1144 void mlx5_flow_rxq_dynf_metadata_set(struct rte_eth_dev *dev);
1145 int mlx5_flow_get_aged_flows(struct rte_eth_dev *dev, void **contexts,
1146                         uint32_t nb_contexts, struct rte_flow_error *error);
1147
1148 /* mlx5_mp_os.c */
1149
1150 int mlx5_mp_os_primary_handle(const struct rte_mp_msg *mp_msg,
1151                               const void *peer);
1152 int mlx5_mp_os_secondary_handle(const struct rte_mp_msg *mp_msg,
1153                                 const void *peer);
1154 void mlx5_mp_os_req_start_rxtx(struct rte_eth_dev *dev);
1155 void mlx5_mp_os_req_stop_rxtx(struct rte_eth_dev *dev);
1156 int mlx5_mp_os_req_queue_control(struct rte_eth_dev *dev, uint16_t queue_id,
1157                                  enum mlx5_mp_req_type req_type);
1158
1159 /* mlx5_socket.c */
1160
1161 int mlx5_pmd_socket_init(void);
1162
1163 /* mlx5_flow_meter.c */
1164
1165 int mlx5_flow_meter_ops_get(struct rte_eth_dev *dev, void *arg);
1166 struct mlx5_flow_meter *mlx5_flow_meter_find(struct mlx5_priv *priv,
1167                                              uint32_t meter_id);
1168 struct mlx5_flow_meter *mlx5_flow_meter_attach
1169                                         (struct mlx5_priv *priv,
1170                                          uint32_t meter_id,
1171                                          const struct rte_flow_attr *attr,
1172                                          struct rte_flow_error *error);
1173 void mlx5_flow_meter_detach(struct mlx5_flow_meter *fm);
1174
1175 /* mlx5_os.c */
1176 struct rte_pci_driver;
1177 int mlx5_os_get_dev_attr(void *ctx, struct mlx5_dev_attr *dev_attr);
1178 void mlx5_os_free_shared_dr(struct mlx5_priv *priv);
1179 int mlx5_os_open_device(const struct mlx5_dev_spawn_data *spawn,
1180                          const struct mlx5_dev_config *config,
1181                          struct mlx5_dev_ctx_shared *sh);
1182 int mlx5_os_get_pdn(void *pd, uint32_t *pdn);
1183 int mlx5_os_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1184                        struct rte_pci_device *pci_dev);
1185 void mlx5_os_dev_shared_handler_install(struct mlx5_dev_ctx_shared *sh);
1186 void mlx5_os_dev_shared_handler_uninstall(struct mlx5_dev_ctx_shared *sh);
1187 void mlx5_os_set_reg_mr_cb(mlx5_reg_mr_t *reg_mr_cb,
1188                            mlx5_dereg_mr_t *dereg_mr_cb);
1189 void mlx5_os_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index);
1190 int mlx5_os_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
1191                          uint32_t index);
1192 int mlx5_os_vf_mac_addr_modify(struct mlx5_priv *priv, unsigned int iface_idx,
1193                                struct rte_ether_addr *mac_addr,
1194                                int vf_index);
1195 int mlx5_os_set_promisc(struct rte_eth_dev *dev, int enable);
1196 int mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable);
1197 int mlx5_os_set_nonblock_channel_fd(int fd);
1198 void mlx5_os_mac_addr_flush(struct rte_eth_dev *dev);
1199
1200 /* mlx5_txpp.c */
1201
1202 int mlx5_txpp_start(struct rte_eth_dev *dev);
1203 void mlx5_txpp_stop(struct rte_eth_dev *dev);
1204 int mlx5_txpp_read_clock(struct rte_eth_dev *dev, uint64_t *timestamp);
1205 int mlx5_txpp_xstats_get(struct rte_eth_dev *dev,
1206                          struct rte_eth_xstat *stats,
1207                          unsigned int n, unsigned int n_used);
1208 int mlx5_txpp_xstats_reset(struct rte_eth_dev *dev);
1209 int mlx5_txpp_xstats_get_names(struct rte_eth_dev *dev,
1210                                struct rte_eth_xstat_name *xstats_names,
1211                                unsigned int n, unsigned int n_used);
1212 void mlx5_txpp_interrupt_handler(void *cb_arg);
1213
1214 /* mlx5_rxtx.c */
1215
1216 eth_tx_burst_t mlx5_select_tx_function(struct rte_eth_dev *dev);
1217
1218 #endif /* RTE_PMD_MLX5_H_ */