net/mlx5: fix recursive inclusion of header file
[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 <stdint.h>
11 #include <limits.h>
12 #include <net/if.h>
13 #include <netinet/in.h>
14 #include <sys/queue.h>
15
16 /* Verbs header. */
17 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
18 #ifdef PEDANTIC
19 #pragma GCC diagnostic ignored "-Wpedantic"
20 #endif
21 #include <infiniband/verbs.h>
22 #ifdef PEDANTIC
23 #pragma GCC diagnostic error "-Wpedantic"
24 #endif
25
26 #include <rte_pci.h>
27 #include <rte_ether.h>
28 #include <rte_ethdev_driver.h>
29 #include <rte_rwlock.h>
30 #include <rte_interrupts.h>
31 #include <rte_errno.h>
32 #include <rte_flow.h>
33
34 #include "mlx5_utils.h"
35 #include "mlx5_mr.h"
36 #include "mlx5_autoconf.h"
37 #include "mlx5_defs.h"
38
39 enum {
40         PCI_VENDOR_ID_MELLANOX = 0x15b3,
41 };
42
43 enum {
44         PCI_DEVICE_ID_MELLANOX_CONNECTX4 = 0x1013,
45         PCI_DEVICE_ID_MELLANOX_CONNECTX4VF = 0x1014,
46         PCI_DEVICE_ID_MELLANOX_CONNECTX4LX = 0x1015,
47         PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF = 0x1016,
48         PCI_DEVICE_ID_MELLANOX_CONNECTX5 = 0x1017,
49         PCI_DEVICE_ID_MELLANOX_CONNECTX5VF = 0x1018,
50         PCI_DEVICE_ID_MELLANOX_CONNECTX5EX = 0x1019,
51         PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF = 0x101a,
52         PCI_DEVICE_ID_MELLANOX_CONNECTX5BF = 0xa2d2,
53         PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF = 0xa2d3,
54         PCI_DEVICE_ID_MELLANOX_CONNECTX6 = 0x101b,
55         PCI_DEVICE_ID_MELLANOX_CONNECTX6VF = 0x101c,
56 };
57
58 /* Request types for IPC. */
59 enum mlx5_mp_req_type {
60         MLX5_MP_REQ_VERBS_CMD_FD = 1,
61         MLX5_MP_REQ_CREATE_MR,
62         MLX5_MP_REQ_START_RXTX,
63         MLX5_MP_REQ_STOP_RXTX,
64 };
65
66 /* Pameters for IPC. */
67 struct mlx5_mp_param {
68         enum mlx5_mp_req_type type;
69         int port_id;
70         int result;
71         RTE_STD_C11
72         union {
73                 uintptr_t addr; /* MLX5_MP_REQ_CREATE_MR */
74         } args;
75 };
76
77 /** Request timeout for IPC. */
78 #define MLX5_MP_REQ_TIMEOUT_SEC 5
79
80 /** Key string for IPC. */
81 #define MLX5_MP_NAME "net_mlx5_mp"
82
83 /** Switch information returned by mlx5_nl_switch_info(). */
84 struct mlx5_switch_info {
85         uint32_t master:1; /**< Master device. */
86         uint32_t representor:1; /**< Representor device. */
87         uint32_t port_name_new:1; /**< Rep. port name is in new format. */
88         int32_t port_name; /**< Representor port name. */
89         uint64_t switch_id; /**< Switch identifier. */
90 };
91
92 LIST_HEAD(mlx5_dev_list, mlx5_priv);
93
94 /* Shared data between primary and secondary processes. */
95 struct mlx5_shared_data {
96         rte_spinlock_t lock;
97         /* Global spinlock for primary and secondary processes. */
98         int init_done; /* Whether primary has done initialization. */
99         unsigned int secondary_cnt; /* Number of secondary processes init'd. */
100         void *uar_base;
101         /* Reserved UAR address space for TXQ UAR(hw doorbell) mapping. */
102         struct mlx5_dev_list mem_event_cb_list;
103         rte_rwlock_t mem_event_rwlock;
104 };
105
106 /* Per-process data structure, not visible to other processes. */
107 struct mlx5_local_data {
108         int init_done; /* Whether a secondary has done initialization. */
109         void *uar_base;
110         /* Reserved UAR address space for TXQ UAR(hw doorbell) mapping. */
111 };
112
113 extern struct mlx5_shared_data *mlx5_shared_data;
114
115 struct mlx5_counter_ctrl {
116         /* Name of the counter. */
117         char dpdk_name[RTE_ETH_XSTATS_NAME_SIZE];
118         /* Name of the counter on the device table. */
119         char ctr_name[RTE_ETH_XSTATS_NAME_SIZE];
120         uint32_t ib:1; /**< Nonzero for IB counters. */
121 };
122
123 struct mlx5_xstats_ctrl {
124         /* Number of device stats. */
125         uint16_t stats_n;
126         /* Number of device stats identified by PMD. */
127         uint16_t  mlx5_stats_n;
128         /* Index in the device counters table. */
129         uint16_t dev_table_idx[MLX5_MAX_XSTATS];
130         uint64_t base[MLX5_MAX_XSTATS];
131         struct mlx5_counter_ctrl info[MLX5_MAX_XSTATS];
132 };
133
134 struct mlx5_stats_ctrl {
135         /* Base for imissed counter. */
136         uint64_t imissed_base;
137 };
138
139 /* devx counter object */
140 struct mlx5_devx_counter_set {
141         struct mlx5dv_devx_obj *obj;
142         int id; /* Flow counter ID */
143 };
144
145 /* Flow list . */
146 TAILQ_HEAD(mlx5_flows, rte_flow);
147
148 /* Default PMD specific parameter value. */
149 #define MLX5_ARG_UNSET (-1)
150
151 /*
152  * Device configuration structure.
153  *
154  * Merged configuration from:
155  *
156  *  - Device capabilities,
157  *  - User device parameters disabled features.
158  */
159 struct mlx5_dev_config {
160         unsigned int hw_csum:1; /* Checksum offload is supported. */
161         unsigned int hw_vlan_strip:1; /* VLAN stripping is supported. */
162         unsigned int hw_fcs_strip:1; /* FCS stripping is supported. */
163         unsigned int hw_padding:1; /* End alignment padding is supported. */
164         unsigned int vf:1; /* This is a VF. */
165         unsigned int tunnel_en:1;
166         /* Whether tunnel stateless offloads are supported. */
167         unsigned int mpls_en:1; /* MPLS over GRE/UDP is enabled. */
168         unsigned int cqe_comp:1; /* CQE compression is enabled. */
169         unsigned int cqe_pad:1; /* CQE padding is enabled. */
170         unsigned int tso:1; /* Whether TSO is supported. */
171         unsigned int tx_vec_en:1; /* Tx vector is enabled. */
172         unsigned int rx_vec_en:1; /* Rx vector is enabled. */
173         unsigned int mpw_hdr_dseg:1; /* Enable DSEGs in the title WQEBB. */
174         unsigned int mr_ext_memseg_en:1;
175         /* Whether memseg should be extended for MR creation. */
176         unsigned int l3_vxlan_en:1; /* Enable L3 VXLAN flow creation. */
177         unsigned int vf_nl_en:1; /* Enable Netlink requests in VF mode. */
178         unsigned int dv_flow_en:1; /* Enable DV flow. */
179         unsigned int swp:1; /* Tx generic tunnel checksum and TSO offload. */
180         unsigned int devx:1; /* Whether devx interface is available or not. */
181         struct {
182                 unsigned int enabled:1; /* Whether MPRQ is enabled. */
183                 unsigned int stride_num_n; /* Number of strides. */
184                 unsigned int min_stride_size_n; /* Min size of a stride. */
185                 unsigned int max_stride_size_n; /* Max size of a stride. */
186                 unsigned int max_memcpy_len;
187                 /* Maximum packet size to memcpy Rx packets. */
188                 unsigned int min_rxqs_num;
189                 /* Rx queue count threshold to enable MPRQ. */
190         } mprq; /* Configurations for Multi-Packet RQ. */
191         int mps; /* Multi-packet send supported mode. */
192         unsigned int flow_prio; /* Number of flow priorities. */
193         unsigned int tso_max_payload_sz; /* Maximum TCP payload for TSO. */
194         unsigned int ind_table_max_size; /* Maximum indirection table size. */
195         int txq_inline; /* Maximum packet size for inlining. */
196         int txqs_inline; /* Queue number threshold for inlining. */
197         int txqs_vec; /* Queue number threshold for vectorized Tx. */
198         int inline_max_packet_sz; /* Max packet size for inlining. */
199 };
200
201 /**
202  * Type of objet being allocated.
203  */
204 enum mlx5_verbs_alloc_type {
205         MLX5_VERBS_ALLOC_TYPE_NONE,
206         MLX5_VERBS_ALLOC_TYPE_TX_QUEUE,
207         MLX5_VERBS_ALLOC_TYPE_RX_QUEUE,
208 };
209
210 /**
211  * Verbs allocator needs a context to know in the callback which kind of
212  * resources it is allocating.
213  */
214 struct mlx5_verbs_alloc_ctx {
215         enum mlx5_verbs_alloc_type type; /* Kind of object being allocated. */
216         const void *obj; /* Pointer to the DPDK object. */
217 };
218
219 LIST_HEAD(mlx5_mr_list, mlx5_mr);
220
221 /* Flow drop context necessary due to Verbs API. */
222 struct mlx5_drop {
223         struct mlx5_hrxq *hrxq; /* Hash Rx queue queue. */
224         struct mlx5_rxq_ibv *rxq; /* Verbs Rx queue. */
225 };
226
227 struct mlx5_flow_tcf_context;
228
229 /* Per port data of shared IB device. */
230 struct mlx5_ibv_shared_port {
231         uint32_t ih_port_id;
232         /*
233          * Interrupt handler port_id. Used by shared interrupt
234          * handler to find the corresponding rte_eth device
235          * by IB port index. If value is equal or greater
236          * RTE_MAX_ETHPORTS it means there is no subhandler
237          * installed for specified IB port index.
238          */
239 };
240
241 /* Table structure. */
242 struct mlx5_flow_tbl_resource {
243         void *obj; /**< Pointer to DR table object. */
244         rte_atomic32_t refcnt; /**< Reference counter. */
245 };
246
247 #define MLX5_MAX_TABLES 1024
248 #define MLX5_GROUP_FACTOR 1
249
250 /*
251  * Shared Infiniband device context for Master/Representors
252  * which belong to same IB device with multiple IB ports.
253  **/
254 struct mlx5_ibv_shared {
255         LIST_ENTRY(mlx5_ibv_shared) next;
256         uint32_t refcnt;
257         uint32_t devx:1; /* Opened with DV. */
258         uint32_t max_port; /* Maximal IB device port index. */
259         struct ibv_context *ctx; /* Verbs/DV context. */
260         struct ibv_pd *pd; /* Protection Domain. */
261         char ibdev_name[IBV_SYSFS_NAME_MAX]; /* IB device name. */
262         char ibdev_path[IBV_SYSFS_PATH_MAX]; /* IB device path for secondary */
263         struct ibv_device_attr_ex device_attr; /* Device properties. */
264         /* Shared DV/DR flow data section. */
265         pthread_mutex_t dv_mutex; /* DV context mutex. */
266         uint32_t dv_refcnt; /* DV/DR data reference counter. */
267         void *rx_ns; /* RX Direct Rules name space handle. */
268         struct mlx5_flow_tbl_resource rx_tbl[MLX5_MAX_TABLES];
269         /* RX Direct Rules tables. */
270         void *tx_ns; /* TX Direct Rules name space handle. */
271         struct mlx5_flow_tbl_resource tx_tbl[MLX5_MAX_TABLES];
272         /* TX Direct Rules tables/ */
273         LIST_HEAD(matchers, mlx5_flow_dv_matcher) matchers;
274         LIST_HEAD(encap_decap, mlx5_flow_dv_encap_decap_resource) encaps_decaps;
275         LIST_HEAD(modify_cmd, mlx5_flow_dv_modify_hdr_resource) modify_cmds;
276         LIST_HEAD(tag, mlx5_flow_dv_tag_resource) tags;
277         LIST_HEAD(jump, mlx5_flow_dv_jump_tbl_resource) jump_tbl;
278         /* Shared interrupt handler section. */
279         pthread_mutex_t intr_mutex; /* Interrupt config mutex. */
280         uint32_t intr_cnt; /* Interrupt handler reference counter. */
281         struct rte_intr_handle intr_handle; /* Interrupt handler for device. */
282         struct mlx5_ibv_shared_port port[]; /* per device port data array. */
283 };
284
285 struct mlx5_priv {
286         LIST_ENTRY(mlx5_priv) mem_event_cb;
287         /**< Called by memory event callback. */
288         struct rte_eth_dev_data *dev_data;  /* Pointer to device data. */
289         struct mlx5_ibv_shared *sh; /* Shared IB device context. */
290         uint32_t ibv_port; /* IB device port number. */
291         struct ether_addr mac[MLX5_MAX_MAC_ADDRESSES]; /* MAC addresses. */
292         BITFIELD_DECLARE(mac_own, uint64_t, MLX5_MAX_MAC_ADDRESSES);
293         /* Bit-field of MAC addresses owned by the PMD. */
294         uint16_t vlan_filter[MLX5_MAX_VLAN_IDS]; /* VLAN filters table. */
295         unsigned int vlan_filter_n; /* Number of configured VLAN filters. */
296         /* Device properties. */
297         uint16_t mtu; /* Configured MTU. */
298         unsigned int isolated:1; /* Whether isolated mode is enabled. */
299         unsigned int representor:1; /* Device is a port representor. */
300         unsigned int master:1; /* Device is a E-Switch master. */
301         unsigned int dr_shared:1; /* DV/DR data is shared. */
302         uint16_t domain_id; /* Switch domain identifier. */
303         uint16_t vport_id; /* Associated VF vport index (if any). */
304         int32_t representor_id; /* Port representor identifier. */
305         /* RX/TX queues. */
306         unsigned int rxqs_n; /* RX queues array size. */
307         unsigned int txqs_n; /* TX queues array size. */
308         struct mlx5_rxq_data *(*rxqs)[]; /* RX queues. */
309         struct mlx5_txq_data *(*txqs)[]; /* TX queues. */
310         struct rte_mempool *mprq_mp; /* Mempool for Multi-Packet RQ. */
311         struct rte_eth_rss_conf rss_conf; /* RSS configuration. */
312         unsigned int (*reta_idx)[]; /* RETA index table. */
313         unsigned int reta_idx_n; /* RETA index size. */
314         struct mlx5_drop drop_queue; /* Flow drop queues. */
315         struct mlx5_flows flows; /* RTE Flow rules. */
316         struct mlx5_flows ctrl_flows; /* Control flow rules. */
317         LIST_HEAD(counters, mlx5_flow_counter) flow_counters;
318         /* Flow counters. */
319         struct {
320                 uint32_t dev_gen; /* Generation number to flush local caches. */
321                 rte_rwlock_t rwlock; /* MR Lock. */
322                 struct mlx5_mr_btree cache; /* Global MR cache table. */
323                 struct mlx5_mr_list mr_list; /* Registered MR list. */
324                 struct mlx5_mr_list mr_free_list; /* Freed MR list. */
325         } mr;
326         LIST_HEAD(rxq, mlx5_rxq_ctrl) rxqsctrl; /* DPDK Rx queues. */
327         LIST_HEAD(rxqibv, mlx5_rxq_ibv) rxqsibv; /* Verbs Rx queues. */
328         LIST_HEAD(hrxq, mlx5_hrxq) hrxqs; /* Verbs Hash Rx queues. */
329         LIST_HEAD(txq, mlx5_txq_ctrl) txqsctrl; /* DPDK Tx queues. */
330         LIST_HEAD(txqibv, mlx5_txq_ibv) txqsibv; /* Verbs Tx queues. */
331         /* Verbs Indirection tables. */
332         LIST_HEAD(ind_tables, mlx5_ind_table_ibv) ind_tbls;
333         /* Pointer to next element. */
334         rte_atomic32_t refcnt; /**< Reference counter. */
335         struct ibv_flow_action *verbs_action;
336         /**< Verbs modify header action object. */
337         uint8_t ft_type; /**< Flow table type, Rx or Tx. */
338         /* Tags resources cache. */
339         uint32_t link_speed_capa; /* Link speed capabilities. */
340         struct mlx5_xstats_ctrl xstats_ctrl; /* Extended stats control. */
341         struct mlx5_stats_ctrl stats_ctrl; /* Stats control. */
342         struct mlx5_dev_config config; /* Device configuration. */
343         struct mlx5_verbs_alloc_ctx verbs_alloc_ctx;
344         /* Context for Verbs allocator. */
345         int nl_socket_rdma; /* Netlink socket (NETLINK_RDMA). */
346         int nl_socket_route; /* Netlink socket (NETLINK_ROUTE). */
347         uint32_t nl_sn; /* Netlink message sequence number. */
348 #ifndef RTE_ARCH_64
349         rte_spinlock_t uar_lock_cq; /* CQs share a common distinct UAR */
350         rte_spinlock_t uar_lock[MLX5_UAR_PAGE_NUM_MAX];
351         /* UAR same-page access control required in 32bit implementations. */
352 #endif
353         struct mlx5_flow_tcf_context *tcf_context; /* TC flower context. */
354 };
355
356 #define PORT_ID(priv) ((priv)->dev_data->port_id)
357 #define ETH_DEV(priv) (&rte_eth_devices[PORT_ID(priv)])
358
359 /* mlx5.c */
360
361 int mlx5_getenv_int(const char *);
362
363 /* mlx5_ethdev.c */
364
365 int mlx5_get_ifname(const struct rte_eth_dev *dev, char (*ifname)[IF_NAMESIZE]);
366 int mlx5_get_master_ifname(const char *ibdev_path, char (*ifname)[IF_NAMESIZE]);
367 unsigned int mlx5_ifindex(const struct rte_eth_dev *dev);
368 int mlx5_ifreq(const struct rte_eth_dev *dev, int req, struct ifreq *ifr);
369 int mlx5_get_mtu(struct rte_eth_dev *dev, uint16_t *mtu);
370 int mlx5_set_flags(struct rte_eth_dev *dev, unsigned int keep,
371                    unsigned int flags);
372 int mlx5_dev_configure(struct rte_eth_dev *dev);
373 void mlx5_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info);
374 int mlx5_fw_version_get(struct rte_eth_dev *dev, char *fw_ver, size_t fw_size);
375 const uint32_t *mlx5_dev_supported_ptypes_get(struct rte_eth_dev *dev);
376 int mlx5_link_update(struct rte_eth_dev *dev, int wait_to_complete);
377 int mlx5_force_link_status_change(struct rte_eth_dev *dev, int status);
378 int mlx5_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu);
379 int mlx5_dev_get_flow_ctrl(struct rte_eth_dev *dev,
380                            struct rte_eth_fc_conf *fc_conf);
381 int mlx5_dev_set_flow_ctrl(struct rte_eth_dev *dev,
382                            struct rte_eth_fc_conf *fc_conf);
383 int mlx5_ibv_device_to_pci_addr(const struct ibv_device *device,
384                                 struct rte_pci_addr *pci_addr);
385 void mlx5_dev_link_status_handler(void *arg);
386 void mlx5_dev_interrupt_handler(void *arg);
387 void mlx5_dev_interrupt_handler_uninstall(struct rte_eth_dev *dev);
388 void mlx5_dev_interrupt_handler_install(struct rte_eth_dev *dev);
389 int mlx5_set_link_down(struct rte_eth_dev *dev);
390 int mlx5_set_link_up(struct rte_eth_dev *dev);
391 int mlx5_is_removed(struct rte_eth_dev *dev);
392 eth_tx_burst_t mlx5_select_tx_function(struct rte_eth_dev *dev);
393 eth_rx_burst_t mlx5_select_rx_function(struct rte_eth_dev *dev);
394 unsigned int mlx5_dev_to_port_id(const struct rte_device *dev,
395                                  uint16_t *port_list,
396                                  unsigned int port_list_n);
397 int mlx5_sysfs_switch_info(unsigned int ifindex,
398                            struct mlx5_switch_info *info);
399 bool mlx5_translate_port_name(const char *port_name_in,
400                               struct mlx5_switch_info *port_info_out);
401
402 /* mlx5_mac.c */
403
404 int mlx5_get_mac(struct rte_eth_dev *dev, uint8_t (*mac)[ETHER_ADDR_LEN]);
405 void mlx5_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index);
406 int mlx5_mac_addr_add(struct rte_eth_dev *dev, struct ether_addr *mac,
407                       uint32_t index, uint32_t vmdq);
408 int mlx5_mac_addr_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr);
409 int mlx5_set_mc_addr_list(struct rte_eth_dev *dev,
410                           struct ether_addr *mc_addr_set, uint32_t nb_mc_addr);
411
412 /* mlx5_rss.c */
413
414 int mlx5_rss_hash_update(struct rte_eth_dev *dev,
415                          struct rte_eth_rss_conf *rss_conf);
416 int mlx5_rss_hash_conf_get(struct rte_eth_dev *dev,
417                            struct rte_eth_rss_conf *rss_conf);
418 int mlx5_rss_reta_index_resize(struct rte_eth_dev *dev, unsigned int reta_size);
419 int mlx5_dev_rss_reta_query(struct rte_eth_dev *dev,
420                             struct rte_eth_rss_reta_entry64 *reta_conf,
421                             uint16_t reta_size);
422 int mlx5_dev_rss_reta_update(struct rte_eth_dev *dev,
423                              struct rte_eth_rss_reta_entry64 *reta_conf,
424                              uint16_t reta_size);
425
426 /* mlx5_rxmode.c */
427
428 void mlx5_promiscuous_enable(struct rte_eth_dev *dev);
429 void mlx5_promiscuous_disable(struct rte_eth_dev *dev);
430 void mlx5_allmulticast_enable(struct rte_eth_dev *dev);
431 void mlx5_allmulticast_disable(struct rte_eth_dev *dev);
432
433 /* mlx5_stats.c */
434
435 void mlx5_stats_init(struct rte_eth_dev *dev);
436 int mlx5_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats);
437 void mlx5_stats_reset(struct rte_eth_dev *dev);
438 int mlx5_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *stats,
439                     unsigned int n);
440 void mlx5_xstats_reset(struct rte_eth_dev *dev);
441 int mlx5_xstats_get_names(struct rte_eth_dev *dev __rte_unused,
442                           struct rte_eth_xstat_name *xstats_names,
443                           unsigned int n);
444
445 /* mlx5_vlan.c */
446
447 int mlx5_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on);
448 void mlx5_vlan_strip_queue_set(struct rte_eth_dev *dev, uint16_t queue, int on);
449 int mlx5_vlan_offload_set(struct rte_eth_dev *dev, int mask);
450
451 /* mlx5_trigger.c */
452
453 int mlx5_dev_start(struct rte_eth_dev *dev);
454 void mlx5_dev_stop(struct rte_eth_dev *dev);
455 int mlx5_traffic_enable(struct rte_eth_dev *dev);
456 void mlx5_traffic_disable(struct rte_eth_dev *dev);
457 int mlx5_traffic_restart(struct rte_eth_dev *dev);
458
459 /* mlx5_flow.c */
460
461 int mlx5_flow_discover_priorities(struct rte_eth_dev *dev);
462 void mlx5_flow_print(struct rte_flow *flow);
463 int mlx5_flow_validate(struct rte_eth_dev *dev,
464                        const struct rte_flow_attr *attr,
465                        const struct rte_flow_item items[],
466                        const struct rte_flow_action actions[],
467                        struct rte_flow_error *error);
468 struct rte_flow *mlx5_flow_create(struct rte_eth_dev *dev,
469                                   const struct rte_flow_attr *attr,
470                                   const struct rte_flow_item items[],
471                                   const struct rte_flow_action actions[],
472                                   struct rte_flow_error *error);
473 int mlx5_flow_destroy(struct rte_eth_dev *dev, struct rte_flow *flow,
474                       struct rte_flow_error *error);
475 void mlx5_flow_list_flush(struct rte_eth_dev *dev, struct mlx5_flows *list);
476 int mlx5_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *error);
477 int mlx5_flow_query(struct rte_eth_dev *dev, struct rte_flow *flow,
478                     const struct rte_flow_action *action, void *data,
479                     struct rte_flow_error *error);
480 int mlx5_flow_isolate(struct rte_eth_dev *dev, int enable,
481                       struct rte_flow_error *error);
482 int mlx5_dev_filter_ctrl(struct rte_eth_dev *dev,
483                          enum rte_filter_type filter_type,
484                          enum rte_filter_op filter_op,
485                          void *arg);
486 int mlx5_flow_start(struct rte_eth_dev *dev, struct mlx5_flows *list);
487 void mlx5_flow_stop(struct rte_eth_dev *dev, struct mlx5_flows *list);
488 int mlx5_flow_verify(struct rte_eth_dev *dev);
489 int mlx5_ctrl_flow_vlan(struct rte_eth_dev *dev,
490                         struct rte_flow_item_eth *eth_spec,
491                         struct rte_flow_item_eth *eth_mask,
492                         struct rte_flow_item_vlan *vlan_spec,
493                         struct rte_flow_item_vlan *vlan_mask);
494 int mlx5_ctrl_flow(struct rte_eth_dev *dev,
495                    struct rte_flow_item_eth *eth_spec,
496                    struct rte_flow_item_eth *eth_mask);
497 int mlx5_flow_create_drop_queue(struct rte_eth_dev *dev);
498 void mlx5_flow_delete_drop_queue(struct rte_eth_dev *dev);
499
500 /* mlx5_mp.c */
501 void mlx5_mp_req_start_rxtx(struct rte_eth_dev *dev);
502 void mlx5_mp_req_stop_rxtx(struct rte_eth_dev *dev);
503 int mlx5_mp_req_mr_create(struct rte_eth_dev *dev, uintptr_t addr);
504 int mlx5_mp_req_verbs_cmd_fd(struct rte_eth_dev *dev);
505 void mlx5_mp_init_primary(void);
506 void mlx5_mp_uninit_primary(void);
507 void mlx5_mp_init_secondary(void);
508 void mlx5_mp_uninit_secondary(void);
509
510 /* mlx5_nl.c */
511
512 int mlx5_nl_init(int protocol);
513 int mlx5_nl_mac_addr_add(struct rte_eth_dev *dev, struct ether_addr *mac,
514                          uint32_t index);
515 int mlx5_nl_mac_addr_remove(struct rte_eth_dev *dev, struct ether_addr *mac,
516                             uint32_t index);
517 void mlx5_nl_mac_addr_sync(struct rte_eth_dev *dev);
518 void mlx5_nl_mac_addr_flush(struct rte_eth_dev *dev);
519 int mlx5_nl_promisc(struct rte_eth_dev *dev, int enable);
520 int mlx5_nl_allmulti(struct rte_eth_dev *dev, int enable);
521 unsigned int mlx5_nl_portnum(int nl, const char *name);
522 unsigned int mlx5_nl_ifindex(int nl, const char *name, uint32_t pindex);
523 int mlx5_nl_switch_info(int nl, unsigned int ifindex,
524                         struct mlx5_switch_info *info);
525
526 /* mlx5_devx_cmds.c */
527
528 int mlx5_devx_cmd_flow_counter_alloc(struct ibv_context *ctx,
529                                      struct mlx5_devx_counter_set *dcx);
530 int mlx5_devx_cmd_flow_counter_free(struct mlx5dv_devx_obj *obj);
531 int mlx5_devx_cmd_flow_counter_query(struct mlx5_devx_counter_set *dcx,
532                                      int clear,
533                                      uint64_t *pkts, uint64_t *bytes);
534 #endif /* RTE_PMD_MLX5_H_ */