net/mlx5: remove redundant objects in probe function
[dpdk.git] / drivers / net / mlx5 / mlx5.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2015 6WIND S.A.
3  * Copyright 2015 Mellanox Technologies, Ltd
4  */
5
6 #include <stddef.h>
7 #include <unistd.h>
8 #include <string.h>
9 #include <assert.h>
10 #include <dlfcn.h>
11 #include <stdint.h>
12 #include <stdlib.h>
13 #include <errno.h>
14 #include <net/if.h>
15 #include <sys/mman.h>
16 #include <linux/rtnetlink.h>
17
18 /* Verbs header. */
19 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
20 #ifdef PEDANTIC
21 #pragma GCC diagnostic ignored "-Wpedantic"
22 #endif
23 #include <infiniband/verbs.h>
24 #ifdef PEDANTIC
25 #pragma GCC diagnostic error "-Wpedantic"
26 #endif
27
28 #include <rte_malloc.h>
29 #include <rte_ethdev_driver.h>
30 #include <rte_ethdev_pci.h>
31 #include <rte_pci.h>
32 #include <rte_bus_pci.h>
33 #include <rte_common.h>
34 #include <rte_config.h>
35 #include <rte_eal_memconfig.h>
36 #include <rte_kvargs.h>
37 #include <rte_rwlock.h>
38 #include <rte_spinlock.h>
39
40 #include "mlx5.h"
41 #include "mlx5_utils.h"
42 #include "mlx5_rxtx.h"
43 #include "mlx5_autoconf.h"
44 #include "mlx5_defs.h"
45 #include "mlx5_glue.h"
46 #include "mlx5_mr.h"
47
48 /* Device parameter to enable RX completion queue compression. */
49 #define MLX5_RXQ_CQE_COMP_EN "rxq_cqe_comp_en"
50
51 /* Device parameter to enable Multi-Packet Rx queue. */
52 #define MLX5_RX_MPRQ_EN "mprq_en"
53
54 /* Device parameter to configure log 2 of the number of strides for MPRQ. */
55 #define MLX5_RX_MPRQ_LOG_STRIDE_NUM "mprq_log_stride_num"
56
57 /* Device parameter to limit the size of memcpy'd packet for MPRQ. */
58 #define MLX5_RX_MPRQ_MAX_MEMCPY_LEN "mprq_max_memcpy_len"
59
60 /* Device parameter to set the minimum number of Rx queues to enable MPRQ. */
61 #define MLX5_RXQS_MIN_MPRQ "rxqs_min_mprq"
62
63 /* Device parameter to configure inline send. */
64 #define MLX5_TXQ_INLINE "txq_inline"
65
66 /*
67  * Device parameter to configure the number of TX queues threshold for
68  * enabling inline send.
69  */
70 #define MLX5_TXQS_MIN_INLINE "txqs_min_inline"
71
72 /* Device parameter to enable multi-packet send WQEs. */
73 #define MLX5_TXQ_MPW_EN "txq_mpw_en"
74
75 /* Device parameter to include 2 dsegs in the title WQEBB. */
76 #define MLX5_TXQ_MPW_HDR_DSEG_EN "txq_mpw_hdr_dseg_en"
77
78 /* Device parameter to limit the size of inlining packet. */
79 #define MLX5_TXQ_MAX_INLINE_LEN "txq_max_inline_len"
80
81 /* Device parameter to enable hardware Tx vector. */
82 #define MLX5_TX_VEC_EN "tx_vec_en"
83
84 /* Device parameter to enable hardware Rx vector. */
85 #define MLX5_RX_VEC_EN "rx_vec_en"
86
87 /* Allow L3 VXLAN flow creation. */
88 #define MLX5_L3_VXLAN_EN "l3_vxlan_en"
89
90 /* Activate Netlink support in VF mode. */
91 #define MLX5_VF_NL_EN "vf_nl_en"
92
93 #ifndef HAVE_IBV_MLX5_MOD_MPW
94 #define MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED (1 << 2)
95 #define MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW (1 << 3)
96 #endif
97
98 #ifndef HAVE_IBV_MLX5_MOD_CQE_128B_COMP
99 #define MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP (1 << 4)
100 #endif
101
102 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data";
103
104 /* Shared memory between primary and secondary processes. */
105 struct mlx5_shared_data *mlx5_shared_data;
106
107 /* Spinlock for mlx5_shared_data allocation. */
108 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
109
110 /** Driver-specific log messages type. */
111 int mlx5_logtype;
112
113 /**
114  * Prepare shared data between primary and secondary process.
115  */
116 static void
117 mlx5_prepare_shared_data(void)
118 {
119         const struct rte_memzone *mz;
120
121         rte_spinlock_lock(&mlx5_shared_data_lock);
122         if (mlx5_shared_data == NULL) {
123                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
124                         /* Allocate shared memory. */
125                         mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA,
126                                                  sizeof(*mlx5_shared_data),
127                                                  SOCKET_ID_ANY, 0);
128                 } else {
129                         /* Lookup allocated shared memory. */
130                         mz = rte_memzone_lookup(MZ_MLX5_PMD_SHARED_DATA);
131                 }
132                 if (mz == NULL)
133                         rte_panic("Cannot allocate mlx5 shared data\n");
134                 mlx5_shared_data = mz->addr;
135                 /* Initialize shared data. */
136                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
137                         LIST_INIT(&mlx5_shared_data->mem_event_cb_list);
138                         rte_rwlock_init(&mlx5_shared_data->mem_event_rwlock);
139                 }
140                 rte_mem_event_callback_register("MLX5_MEM_EVENT_CB",
141                                                 mlx5_mr_mem_event_cb, NULL);
142         }
143         rte_spinlock_unlock(&mlx5_shared_data_lock);
144 }
145
146 /**
147  * Retrieve integer value from environment variable.
148  *
149  * @param[in] name
150  *   Environment variable name.
151  *
152  * @return
153  *   Integer value, 0 if the variable is not set.
154  */
155 int
156 mlx5_getenv_int(const char *name)
157 {
158         const char *val = getenv(name);
159
160         if (val == NULL)
161                 return 0;
162         return atoi(val);
163 }
164
165 /**
166  * Verbs callback to allocate a memory. This function should allocate the space
167  * according to the size provided residing inside a huge page.
168  * Please note that all allocation must respect the alignment from libmlx5
169  * (i.e. currently sysconf(_SC_PAGESIZE)).
170  *
171  * @param[in] size
172  *   The size in bytes of the memory to allocate.
173  * @param[in] data
174  *   A pointer to the callback data.
175  *
176  * @return
177  *   Allocated buffer, NULL otherwise and rte_errno is set.
178  */
179 static void *
180 mlx5_alloc_verbs_buf(size_t size, void *data)
181 {
182         struct priv *priv = data;
183         void *ret;
184         size_t alignment = sysconf(_SC_PAGESIZE);
185         unsigned int socket = SOCKET_ID_ANY;
186
187         if (priv->verbs_alloc_ctx.type == MLX5_VERBS_ALLOC_TYPE_TX_QUEUE) {
188                 const struct mlx5_txq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
189
190                 socket = ctrl->socket;
191         } else if (priv->verbs_alloc_ctx.type ==
192                    MLX5_VERBS_ALLOC_TYPE_RX_QUEUE) {
193                 const struct mlx5_rxq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
194
195                 socket = ctrl->socket;
196         }
197         assert(data != NULL);
198         ret = rte_malloc_socket(__func__, size, alignment, socket);
199         if (!ret && size)
200                 rte_errno = ENOMEM;
201         return ret;
202 }
203
204 /**
205  * Verbs callback to free a memory.
206  *
207  * @param[in] ptr
208  *   A pointer to the memory to free.
209  * @param[in] data
210  *   A pointer to the callback data.
211  */
212 static void
213 mlx5_free_verbs_buf(void *ptr, void *data __rte_unused)
214 {
215         assert(data != NULL);
216         rte_free(ptr);
217 }
218
219 /**
220  * DPDK callback to close the device.
221  *
222  * Destroy all queues and objects, free memory.
223  *
224  * @param dev
225  *   Pointer to Ethernet device structure.
226  */
227 static void
228 mlx5_dev_close(struct rte_eth_dev *dev)
229 {
230         struct priv *priv = dev->data->dev_private;
231         unsigned int i;
232         int ret;
233
234         DRV_LOG(DEBUG, "port %u closing device \"%s\"",
235                 dev->data->port_id,
236                 ((priv->ctx != NULL) ? priv->ctx->device->name : ""));
237         /* In case mlx5_dev_stop() has not been called. */
238         mlx5_dev_interrupt_handler_uninstall(dev);
239         mlx5_traffic_disable(dev);
240         /* Prevent crashes when queues are still in use. */
241         dev->rx_pkt_burst = removed_rx_burst;
242         dev->tx_pkt_burst = removed_tx_burst;
243         if (priv->rxqs != NULL) {
244                 /* XXX race condition if mlx5_rx_burst() is still running. */
245                 usleep(1000);
246                 for (i = 0; (i != priv->rxqs_n); ++i)
247                         mlx5_rxq_release(dev, i);
248                 priv->rxqs_n = 0;
249                 priv->rxqs = NULL;
250         }
251         if (priv->txqs != NULL) {
252                 /* XXX race condition if mlx5_tx_burst() is still running. */
253                 usleep(1000);
254                 for (i = 0; (i != priv->txqs_n); ++i)
255                         mlx5_txq_release(dev, i);
256                 priv->txqs_n = 0;
257                 priv->txqs = NULL;
258         }
259         mlx5_flow_delete_drop_queue(dev);
260         mlx5_mprq_free_mp(dev);
261         mlx5_mr_release(dev);
262         if (priv->pd != NULL) {
263                 assert(priv->ctx != NULL);
264                 claim_zero(mlx5_glue->dealloc_pd(priv->pd));
265                 claim_zero(mlx5_glue->close_device(priv->ctx));
266         } else
267                 assert(priv->ctx == NULL);
268         if (priv->rss_conf.rss_key != NULL)
269                 rte_free(priv->rss_conf.rss_key);
270         if (priv->reta_idx != NULL)
271                 rte_free(priv->reta_idx);
272         if (priv->primary_socket)
273                 mlx5_socket_uninit(dev);
274         if (priv->config.vf)
275                 mlx5_nl_mac_addr_flush(dev);
276         if (priv->nl_socket >= 0)
277                 close(priv->nl_socket);
278         ret = mlx5_hrxq_ibv_verify(dev);
279         if (ret)
280                 DRV_LOG(WARNING, "port %u some hash Rx queue still remain",
281                         dev->data->port_id);
282         ret = mlx5_ind_table_ibv_verify(dev);
283         if (ret)
284                 DRV_LOG(WARNING, "port %u some indirection table still remain",
285                         dev->data->port_id);
286         ret = mlx5_rxq_ibv_verify(dev);
287         if (ret)
288                 DRV_LOG(WARNING, "port %u some Verbs Rx queue still remain",
289                         dev->data->port_id);
290         ret = mlx5_rxq_verify(dev);
291         if (ret)
292                 DRV_LOG(WARNING, "port %u some Rx queues still remain",
293                         dev->data->port_id);
294         ret = mlx5_txq_ibv_verify(dev);
295         if (ret)
296                 DRV_LOG(WARNING, "port %u some Verbs Tx queue still remain",
297                         dev->data->port_id);
298         ret = mlx5_txq_verify(dev);
299         if (ret)
300                 DRV_LOG(WARNING, "port %u some Tx queues still remain",
301                         dev->data->port_id);
302         ret = mlx5_flow_verify(dev);
303         if (ret)
304                 DRV_LOG(WARNING, "port %u some flows still remain",
305                         dev->data->port_id);
306         memset(priv, 0, sizeof(*priv));
307 }
308
309 const struct eth_dev_ops mlx5_dev_ops = {
310         .dev_configure = mlx5_dev_configure,
311         .dev_start = mlx5_dev_start,
312         .dev_stop = mlx5_dev_stop,
313         .dev_set_link_down = mlx5_set_link_down,
314         .dev_set_link_up = mlx5_set_link_up,
315         .dev_close = mlx5_dev_close,
316         .promiscuous_enable = mlx5_promiscuous_enable,
317         .promiscuous_disable = mlx5_promiscuous_disable,
318         .allmulticast_enable = mlx5_allmulticast_enable,
319         .allmulticast_disable = mlx5_allmulticast_disable,
320         .link_update = mlx5_link_update,
321         .stats_get = mlx5_stats_get,
322         .stats_reset = mlx5_stats_reset,
323         .xstats_get = mlx5_xstats_get,
324         .xstats_reset = mlx5_xstats_reset,
325         .xstats_get_names = mlx5_xstats_get_names,
326         .dev_infos_get = mlx5_dev_infos_get,
327         .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
328         .vlan_filter_set = mlx5_vlan_filter_set,
329         .rx_queue_setup = mlx5_rx_queue_setup,
330         .tx_queue_setup = mlx5_tx_queue_setup,
331         .rx_queue_release = mlx5_rx_queue_release,
332         .tx_queue_release = mlx5_tx_queue_release,
333         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
334         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
335         .mac_addr_remove = mlx5_mac_addr_remove,
336         .mac_addr_add = mlx5_mac_addr_add,
337         .mac_addr_set = mlx5_mac_addr_set,
338         .set_mc_addr_list = mlx5_set_mc_addr_list,
339         .mtu_set = mlx5_dev_set_mtu,
340         .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
341         .vlan_offload_set = mlx5_vlan_offload_set,
342         .reta_update = mlx5_dev_rss_reta_update,
343         .reta_query = mlx5_dev_rss_reta_query,
344         .rss_hash_update = mlx5_rss_hash_update,
345         .rss_hash_conf_get = mlx5_rss_hash_conf_get,
346         .filter_ctrl = mlx5_dev_filter_ctrl,
347         .rx_descriptor_status = mlx5_rx_descriptor_status,
348         .tx_descriptor_status = mlx5_tx_descriptor_status,
349         .rx_queue_intr_enable = mlx5_rx_intr_enable,
350         .rx_queue_intr_disable = mlx5_rx_intr_disable,
351         .is_removed = mlx5_is_removed,
352 };
353
354 static const struct eth_dev_ops mlx5_dev_sec_ops = {
355         .stats_get = mlx5_stats_get,
356         .stats_reset = mlx5_stats_reset,
357         .xstats_get = mlx5_xstats_get,
358         .xstats_reset = mlx5_xstats_reset,
359         .xstats_get_names = mlx5_xstats_get_names,
360         .dev_infos_get = mlx5_dev_infos_get,
361         .rx_descriptor_status = mlx5_rx_descriptor_status,
362         .tx_descriptor_status = mlx5_tx_descriptor_status,
363 };
364
365 /* Available operators in flow isolated mode. */
366 const struct eth_dev_ops mlx5_dev_ops_isolate = {
367         .dev_configure = mlx5_dev_configure,
368         .dev_start = mlx5_dev_start,
369         .dev_stop = mlx5_dev_stop,
370         .dev_set_link_down = mlx5_set_link_down,
371         .dev_set_link_up = mlx5_set_link_up,
372         .dev_close = mlx5_dev_close,
373         .link_update = mlx5_link_update,
374         .stats_get = mlx5_stats_get,
375         .stats_reset = mlx5_stats_reset,
376         .xstats_get = mlx5_xstats_get,
377         .xstats_reset = mlx5_xstats_reset,
378         .xstats_get_names = mlx5_xstats_get_names,
379         .dev_infos_get = mlx5_dev_infos_get,
380         .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
381         .vlan_filter_set = mlx5_vlan_filter_set,
382         .rx_queue_setup = mlx5_rx_queue_setup,
383         .tx_queue_setup = mlx5_tx_queue_setup,
384         .rx_queue_release = mlx5_rx_queue_release,
385         .tx_queue_release = mlx5_tx_queue_release,
386         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
387         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
388         .mac_addr_remove = mlx5_mac_addr_remove,
389         .mac_addr_add = mlx5_mac_addr_add,
390         .mac_addr_set = mlx5_mac_addr_set,
391         .set_mc_addr_list = mlx5_set_mc_addr_list,
392         .mtu_set = mlx5_dev_set_mtu,
393         .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
394         .vlan_offload_set = mlx5_vlan_offload_set,
395         .filter_ctrl = mlx5_dev_filter_ctrl,
396         .rx_descriptor_status = mlx5_rx_descriptor_status,
397         .tx_descriptor_status = mlx5_tx_descriptor_status,
398         .rx_queue_intr_enable = mlx5_rx_intr_enable,
399         .rx_queue_intr_disable = mlx5_rx_intr_disable,
400         .is_removed = mlx5_is_removed,
401 };
402
403 /**
404  * Verify and store value for device argument.
405  *
406  * @param[in] key
407  *   Key argument to verify.
408  * @param[in] val
409  *   Value associated with key.
410  * @param opaque
411  *   User data.
412  *
413  * @return
414  *   0 on success, a negative errno value otherwise and rte_errno is set.
415  */
416 static int
417 mlx5_args_check(const char *key, const char *val, void *opaque)
418 {
419         struct mlx5_dev_config *config = opaque;
420         unsigned long tmp;
421
422         errno = 0;
423         tmp = strtoul(val, NULL, 0);
424         if (errno) {
425                 rte_errno = errno;
426                 DRV_LOG(WARNING, "%s: \"%s\" is not a valid integer", key, val);
427                 return -rte_errno;
428         }
429         if (strcmp(MLX5_RXQ_CQE_COMP_EN, key) == 0) {
430                 config->cqe_comp = !!tmp;
431         } else if (strcmp(MLX5_RX_MPRQ_EN, key) == 0) {
432                 config->mprq.enabled = !!tmp;
433         } else if (strcmp(MLX5_RX_MPRQ_LOG_STRIDE_NUM, key) == 0) {
434                 config->mprq.stride_num_n = tmp;
435         } else if (strcmp(MLX5_RX_MPRQ_MAX_MEMCPY_LEN, key) == 0) {
436                 config->mprq.max_memcpy_len = tmp;
437         } else if (strcmp(MLX5_RXQS_MIN_MPRQ, key) == 0) {
438                 config->mprq.min_rxqs_num = tmp;
439         } else if (strcmp(MLX5_TXQ_INLINE, key) == 0) {
440                 config->txq_inline = tmp;
441         } else if (strcmp(MLX5_TXQS_MIN_INLINE, key) == 0) {
442                 config->txqs_inline = tmp;
443         } else if (strcmp(MLX5_TXQ_MPW_EN, key) == 0) {
444                 config->mps = !!tmp ? config->mps : 0;
445         } else if (strcmp(MLX5_TXQ_MPW_HDR_DSEG_EN, key) == 0) {
446                 config->mpw_hdr_dseg = !!tmp;
447         } else if (strcmp(MLX5_TXQ_MAX_INLINE_LEN, key) == 0) {
448                 config->inline_max_packet_sz = tmp;
449         } else if (strcmp(MLX5_TX_VEC_EN, key) == 0) {
450                 config->tx_vec_en = !!tmp;
451         } else if (strcmp(MLX5_RX_VEC_EN, key) == 0) {
452                 config->rx_vec_en = !!tmp;
453         } else if (strcmp(MLX5_L3_VXLAN_EN, key) == 0) {
454                 config->l3_vxlan_en = !!tmp;
455         } else if (strcmp(MLX5_VF_NL_EN, key) == 0) {
456                 config->vf_nl_en = !!tmp;
457         } else {
458                 DRV_LOG(WARNING, "%s: unknown parameter", key);
459                 rte_errno = EINVAL;
460                 return -rte_errno;
461         }
462         return 0;
463 }
464
465 /**
466  * Parse device parameters.
467  *
468  * @param config
469  *   Pointer to device configuration structure.
470  * @param devargs
471  *   Device arguments structure.
472  *
473  * @return
474  *   0 on success, a negative errno value otherwise and rte_errno is set.
475  */
476 static int
477 mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs)
478 {
479         const char **params = (const char *[]){
480                 MLX5_RXQ_CQE_COMP_EN,
481                 MLX5_RX_MPRQ_EN,
482                 MLX5_RX_MPRQ_LOG_STRIDE_NUM,
483                 MLX5_RX_MPRQ_MAX_MEMCPY_LEN,
484                 MLX5_RXQS_MIN_MPRQ,
485                 MLX5_TXQ_INLINE,
486                 MLX5_TXQS_MIN_INLINE,
487                 MLX5_TXQ_MPW_EN,
488                 MLX5_TXQ_MPW_HDR_DSEG_EN,
489                 MLX5_TXQ_MAX_INLINE_LEN,
490                 MLX5_TX_VEC_EN,
491                 MLX5_RX_VEC_EN,
492                 MLX5_L3_VXLAN_EN,
493                 MLX5_VF_NL_EN,
494                 NULL,
495         };
496         struct rte_kvargs *kvlist;
497         int ret = 0;
498         int i;
499
500         if (devargs == NULL)
501                 return 0;
502         /* Following UGLY cast is done to pass checkpatch. */
503         kvlist = rte_kvargs_parse(devargs->args, params);
504         if (kvlist == NULL)
505                 return 0;
506         /* Process parameters. */
507         for (i = 0; (params[i] != NULL); ++i) {
508                 if (rte_kvargs_count(kvlist, params[i])) {
509                         ret = rte_kvargs_process(kvlist, params[i],
510                                                  mlx5_args_check, config);
511                         if (ret) {
512                                 rte_errno = EINVAL;
513                                 rte_kvargs_free(kvlist);
514                                 return -rte_errno;
515                         }
516                 }
517         }
518         rte_kvargs_free(kvlist);
519         return 0;
520 }
521
522 static struct rte_pci_driver mlx5_driver;
523
524 /*
525  * Reserved UAR address space for TXQ UAR(hw doorbell) mapping, process
526  * local resource used by both primary and secondary to avoid duplicate
527  * reservation.
528  * The space has to be available on both primary and secondary process,
529  * TXQ UAR maps to this area using fixed mmap w/o double check.
530  */
531 static void *uar_base;
532
533 static int
534 find_lower_va_bound(const struct rte_memseg_list *msl __rte_unused,
535                 const struct rte_memseg *ms, void *arg)
536 {
537         void **addr = arg;
538
539         if (*addr == NULL)
540                 *addr = ms->addr;
541         else
542                 *addr = RTE_MIN(*addr, ms->addr);
543
544         return 0;
545 }
546
547 /**
548  * Reserve UAR address space for primary process.
549  *
550  * @param[in] dev
551  *   Pointer to Ethernet device.
552  *
553  * @return
554  *   0 on success, a negative errno value otherwise and rte_errno is set.
555  */
556 static int
557 mlx5_uar_init_primary(struct rte_eth_dev *dev)
558 {
559         struct priv *priv = dev->data->dev_private;
560         void *addr = (void *)0;
561
562         if (uar_base) { /* UAR address space mapped. */
563                 priv->uar_base = uar_base;
564                 return 0;
565         }
566         /* find out lower bound of hugepage segments */
567         rte_memseg_walk(find_lower_va_bound, &addr);
568
569         /* keep distance to hugepages to minimize potential conflicts. */
570         addr = RTE_PTR_SUB(addr, MLX5_UAR_OFFSET + MLX5_UAR_SIZE);
571         /* anonymous mmap, no real memory consumption. */
572         addr = mmap(addr, MLX5_UAR_SIZE,
573                     PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
574         if (addr == MAP_FAILED) {
575                 DRV_LOG(ERR,
576                         "port %u failed to reserve UAR address space, please"
577                         " adjust MLX5_UAR_SIZE or try --base-virtaddr",
578                         dev->data->port_id);
579                 rte_errno = ENOMEM;
580                 return -rte_errno;
581         }
582         /* Accept either same addr or a new addr returned from mmap if target
583          * range occupied.
584          */
585         DRV_LOG(INFO, "port %u reserved UAR address space: %p",
586                 dev->data->port_id, addr);
587         priv->uar_base = addr; /* for primary and secondary UAR re-mmap. */
588         uar_base = addr; /* process local, don't reserve again. */
589         return 0;
590 }
591
592 /**
593  * Reserve UAR address space for secondary process, align with
594  * primary process.
595  *
596  * @param[in] dev
597  *   Pointer to Ethernet device.
598  *
599  * @return
600  *   0 on success, a negative errno value otherwise and rte_errno is set.
601  */
602 static int
603 mlx5_uar_init_secondary(struct rte_eth_dev *dev)
604 {
605         struct priv *priv = dev->data->dev_private;
606         void *addr;
607
608         assert(priv->uar_base);
609         if (uar_base) { /* already reserved. */
610                 assert(uar_base == priv->uar_base);
611                 return 0;
612         }
613         /* anonymous mmap, no real memory consumption. */
614         addr = mmap(priv->uar_base, MLX5_UAR_SIZE,
615                     PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
616         if (addr == MAP_FAILED) {
617                 DRV_LOG(ERR, "port %u UAR mmap failed: %p size: %llu",
618                         dev->data->port_id, priv->uar_base, MLX5_UAR_SIZE);
619                 rte_errno = ENXIO;
620                 return -rte_errno;
621         }
622         if (priv->uar_base != addr) {
623                 DRV_LOG(ERR,
624                         "port %u UAR address %p size %llu occupied, please"
625                         " adjust MLX5_UAR_OFFSET or try EAL parameter"
626                         " --base-virtaddr",
627                         dev->data->port_id, priv->uar_base, MLX5_UAR_SIZE);
628                 rte_errno = ENXIO;
629                 return -rte_errno;
630         }
631         uar_base = addr; /* process local, don't reserve again */
632         DRV_LOG(INFO, "port %u reserved UAR address space: %p",
633                 dev->data->port_id, addr);
634         return 0;
635 }
636
637 /**
638  * DPDK callback to register a PCI device.
639  *
640  * This function creates an Ethernet device for each port of a given
641  * PCI device.
642  *
643  * @param[in] pci_drv
644  *   PCI driver structure (mlx5_driver).
645  * @param[in] pci_dev
646  *   PCI device information.
647  *
648  * @return
649  *   0 on success, a negative errno value otherwise and rte_errno is set.
650  */
651 static int
652 mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
653                struct rte_pci_device *pci_dev)
654 {
655         struct ibv_device **list = NULL;
656         struct ibv_device *ibv_dev;
657         struct ibv_context *ctx = NULL;
658         struct ibv_device_attr_ex attr;
659         struct mlx5dv_context dv_attr = { .comp_mask = 0 };
660         int err = 0;
661         unsigned int vf = 0;
662         unsigned int mps;
663         unsigned int cqe_comp;
664         unsigned int tunnel_en = 0;
665         unsigned int mpls_en = 0;
666         unsigned int swp = 0;
667         unsigned int verb_priorities = 0;
668         unsigned int mprq = 0;
669         unsigned int mprq_min_stride_size_n = 0;
670         unsigned int mprq_max_stride_size_n = 0;
671         unsigned int mprq_min_stride_num_n = 0;
672         unsigned int mprq_max_stride_num_n = 0;
673         int i;
674 #ifdef HAVE_IBV_DEVICE_COUNTERS_SET_SUPPORT
675         struct ibv_counter_set_description cs_desc = { .counter_type = 0 };
676 #endif
677
678         /* Prepare shared data between primary and secondary process. */
679         mlx5_prepare_shared_data();
680         assert(pci_drv == &mlx5_driver);
681         list = mlx5_glue->get_device_list(&i);
682         if (list == NULL) {
683                 assert(errno);
684                 err = errno;
685                 if (errno == ENOSYS)
686                         DRV_LOG(ERR,
687                                 "cannot list devices, is ib_uverbs loaded?");
688                 goto error;
689         }
690         assert(i >= 0);
691         /*
692          * For each listed device, check related sysfs entry against
693          * the provided PCI ID.
694          */
695         while (i != 0) {
696                 struct rte_pci_addr pci_addr;
697
698                 --i;
699                 DRV_LOG(DEBUG, "checking device \"%s\"", list[i]->name);
700                 if (mlx5_ibv_device_to_pci_addr(list[i], &pci_addr))
701                         continue;
702                 if ((pci_dev->addr.domain != pci_addr.domain) ||
703                     (pci_dev->addr.bus != pci_addr.bus) ||
704                     (pci_dev->addr.devid != pci_addr.devid) ||
705                     (pci_dev->addr.function != pci_addr.function))
706                         continue;
707                 DRV_LOG(INFO, "PCI information matches, using device \"%s\"",
708                         list[i]->name);
709                 vf = ((pci_dev->id.device_id ==
710                        PCI_DEVICE_ID_MELLANOX_CONNECTX4VF) ||
711                       (pci_dev->id.device_id ==
712                        PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF) ||
713                       (pci_dev->id.device_id ==
714                        PCI_DEVICE_ID_MELLANOX_CONNECTX5VF) ||
715                       (pci_dev->id.device_id ==
716                        PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF));
717                 ctx = mlx5_glue->open_device(list[i]);
718                 rte_errno = errno;
719                 err = rte_errno;
720                 break;
721         }
722         if (ctx == NULL) {
723                 switch (err) {
724                 case 0:
725                         DRV_LOG(ERR,
726                                 "cannot access device, is mlx5_ib loaded?");
727                         err = ENODEV;
728                         break;
729                 case EINVAL:
730                         DRV_LOG(ERR,
731                                 "cannot use device, are drivers up to date?");
732                         break;
733                 }
734                 goto error;
735         }
736         ibv_dev = list[i];
737         DRV_LOG(DEBUG, "device opened");
738 #ifdef HAVE_IBV_MLX5_MOD_SWP
739         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_SWP;
740 #endif
741         /*
742          * Multi-packet send is supported by ConnectX-4 Lx PF as well
743          * as all ConnectX-5 devices.
744          */
745 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
746         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS;
747 #endif
748 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
749         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_STRIDING_RQ;
750 #endif
751         mlx5_glue->dv_query_device(ctx, &dv_attr);
752         if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED) {
753                 if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW) {
754                         DRV_LOG(DEBUG, "enhanced MPW is supported");
755                         mps = MLX5_MPW_ENHANCED;
756                 } else {
757                         DRV_LOG(DEBUG, "MPW is supported");
758                         mps = MLX5_MPW;
759                 }
760         } else {
761                 DRV_LOG(DEBUG, "MPW isn't supported");
762                 mps = MLX5_MPW_DISABLED;
763         }
764 #ifdef HAVE_IBV_MLX5_MOD_SWP
765         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_SWP)
766                 swp = dv_attr.sw_parsing_caps.sw_parsing_offloads;
767         DRV_LOG(DEBUG, "SWP support: %u", swp);
768 #endif
769 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
770         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_STRIDING_RQ) {
771                 struct mlx5dv_striding_rq_caps mprq_caps =
772                         dv_attr.striding_rq_caps;
773
774                 DRV_LOG(DEBUG, "\tmin_single_stride_log_num_of_bytes: %d",
775                         mprq_caps.min_single_stride_log_num_of_bytes);
776                 DRV_LOG(DEBUG, "\tmax_single_stride_log_num_of_bytes: %d",
777                         mprq_caps.max_single_stride_log_num_of_bytes);
778                 DRV_LOG(DEBUG, "\tmin_single_wqe_log_num_of_strides: %d",
779                         mprq_caps.min_single_wqe_log_num_of_strides);
780                 DRV_LOG(DEBUG, "\tmax_single_wqe_log_num_of_strides: %d",
781                         mprq_caps.max_single_wqe_log_num_of_strides);
782                 DRV_LOG(DEBUG, "\tsupported_qpts: %d",
783                         mprq_caps.supported_qpts);
784                 DRV_LOG(DEBUG, "device supports Multi-Packet RQ");
785                 mprq = 1;
786                 mprq_min_stride_size_n =
787                         mprq_caps.min_single_stride_log_num_of_bytes;
788                 mprq_max_stride_size_n =
789                         mprq_caps.max_single_stride_log_num_of_bytes;
790                 mprq_min_stride_num_n =
791                         mprq_caps.min_single_wqe_log_num_of_strides;
792                 mprq_max_stride_num_n =
793                         mprq_caps.max_single_wqe_log_num_of_strides;
794         }
795 #endif
796         if (RTE_CACHE_LINE_SIZE == 128 &&
797             !(dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP))
798                 cqe_comp = 0;
799         else
800                 cqe_comp = 1;
801 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
802         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) {
803                 tunnel_en = ((dv_attr.tunnel_offloads_caps &
804                               MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN) &&
805                              (dv_attr.tunnel_offloads_caps &
806                               MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE));
807         }
808         DRV_LOG(DEBUG, "tunnel offloading is %ssupported",
809                 tunnel_en ? "" : "not ");
810 #else
811         DRV_LOG(WARNING,
812                 "tunnel offloading disabled due to old OFED/rdma-core version");
813 #endif
814 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
815         mpls_en = ((dv_attr.tunnel_offloads_caps &
816                     MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_GRE) &&
817                    (dv_attr.tunnel_offloads_caps &
818                     MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_UDP));
819         DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is %ssupported",
820                 mpls_en ? "" : "not ");
821 #else
822         DRV_LOG(WARNING, "MPLS over GRE/UDP tunnel offloading disabled due to"
823                 " old OFED/rdma-core version or firmware configuration");
824 #endif
825         err = mlx5_glue->query_device_ex(ctx, NULL, &attr);
826         if (err) {
827                 DEBUG("ibv_query_device_ex() failed");
828                 goto error;
829         }
830         DRV_LOG(INFO, "%u port(s) detected", attr.orig_attr.phys_port_cnt);
831         for (i = 0; i < attr.orig_attr.phys_port_cnt; i++) {
832                 char name[RTE_ETH_NAME_MAX_LEN];
833                 int len;
834                 uint32_t port = i + 1; /* ports are indexed from one */
835                 struct ibv_port_attr port_attr;
836                 struct ibv_pd *pd = NULL;
837                 struct priv *priv = NULL;
838                 struct rte_eth_dev *eth_dev = NULL;
839                 struct ether_addr mac;
840                 struct mlx5_dev_config config = {
841                         .cqe_comp = cqe_comp,
842                         .mps = mps,
843                         .tunnel_en = tunnel_en,
844                         .mpls_en = mpls_en,
845                         .tx_vec_en = 1,
846                         .rx_vec_en = 1,
847                         .mpw_hdr_dseg = 0,
848                         .txq_inline = MLX5_ARG_UNSET,
849                         .txqs_inline = MLX5_ARG_UNSET,
850                         .inline_max_packet_sz = MLX5_ARG_UNSET,
851                         .vf_nl_en = 1,
852                         .swp = !!swp,
853                         .mprq = {
854                                 .enabled = 0, /* Disabled by default. */
855                                 .stride_num_n = RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
856                                                         mprq_min_stride_num_n),
857                                 .max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN,
858                                 .min_rxqs_num = MLX5_MPRQ_MIN_RXQS,
859                         },
860                 };
861
862                 len = snprintf(name, sizeof(name), PCI_PRI_FMT,
863                          pci_dev->addr.domain, pci_dev->addr.bus,
864                          pci_dev->addr.devid, pci_dev->addr.function);
865                 if (attr.orig_attr.phys_port_cnt > 1)
866                         snprintf(name + len, sizeof(name), " port %u", i);
867                 if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
868                         eth_dev = rte_eth_dev_attach_secondary(name);
869                         if (eth_dev == NULL) {
870                                 DRV_LOG(ERR, "can not attach rte ethdev");
871                                 rte_errno = ENOMEM;
872                                 err = rte_errno;
873                                 goto error;
874                         }
875                         eth_dev->device = &pci_dev->device;
876                         eth_dev->dev_ops = &mlx5_dev_sec_ops;
877                         err = mlx5_uar_init_secondary(eth_dev);
878                         if (err) {
879                                 err = rte_errno;
880                                 goto error;
881                         }
882                         /* Receive command fd from primary process */
883                         err = mlx5_socket_connect(eth_dev);
884                         if (err < 0) {
885                                 err = rte_errno;
886                                 goto error;
887                         }
888                         /* Remap UAR for Tx queues. */
889                         err = mlx5_tx_uar_remap(eth_dev, err);
890                         if (err) {
891                                 err = rte_errno;
892                                 goto error;
893                         }
894                         /*
895                          * Ethdev pointer is still required as input since
896                          * the primary device is not accessible from the
897                          * secondary process.
898                          */
899                         eth_dev->rx_pkt_burst =
900                                 mlx5_select_rx_function(eth_dev);
901                         eth_dev->tx_pkt_burst =
902                                 mlx5_select_tx_function(eth_dev);
903                         rte_eth_dev_probing_finish(eth_dev);
904                         continue;
905                 }
906                 DRV_LOG(DEBUG, "using port %u", port);
907                 if (!ctx)
908                         ctx = mlx5_glue->open_device(ibv_dev);
909                 if (ctx == NULL) {
910                         err = ENODEV;
911                         goto port_error;
912                 }
913                 /* Check port status. */
914                 err = mlx5_glue->query_port(ctx, port, &port_attr);
915                 if (err) {
916                         DRV_LOG(ERR, "port query failed: %s", strerror(err));
917                         goto port_error;
918                 }
919                 if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
920                         DRV_LOG(ERR,
921                                 "port %d is not configured in Ethernet mode",
922                                 port);
923                         err = EINVAL;
924                         goto port_error;
925                 }
926                 if (port_attr.state != IBV_PORT_ACTIVE)
927                         DRV_LOG(DEBUG, "port %d is not active: \"%s\" (%d)",
928                                 port,
929                                 mlx5_glue->port_state_str(port_attr.state),
930                                 port_attr.state);
931                 /* Allocate protection domain. */
932                 pd = mlx5_glue->alloc_pd(ctx);
933                 if (pd == NULL) {
934                         DRV_LOG(ERR, "PD allocation failure");
935                         err = ENOMEM;
936                         goto port_error;
937                 }
938                 /* from rte_ethdev.c */
939                 priv = rte_zmalloc("ethdev private structure",
940                                    sizeof(*priv),
941                                    RTE_CACHE_LINE_SIZE);
942                 if (priv == NULL) {
943                         DRV_LOG(ERR, "priv allocation failure");
944                         err = ENOMEM;
945                         goto port_error;
946                 }
947                 priv->ctx = ctx;
948                 strncpy(priv->ibdev_path, priv->ctx->device->ibdev_path,
949                         sizeof(priv->ibdev_path));
950                 priv->device_attr = attr;
951                 priv->port = port;
952                 priv->pd = pd;
953                 priv->mtu = ETHER_MTU;
954                 err = mlx5_args(&config, pci_dev->device.devargs);
955                 if (err) {
956                         err = rte_errno;
957                         DRV_LOG(ERR, "failed to process device arguments: %s",
958                                 strerror(rte_errno));
959                         goto port_error;
960                 }
961                 config.hw_csum = !!(attr.device_cap_flags_ex &
962                                     IBV_DEVICE_RAW_IP_CSUM);
963                 DRV_LOG(DEBUG, "checksum offloading is %ssupported",
964                         (config.hw_csum ? "" : "not "));
965 #ifdef HAVE_IBV_DEVICE_COUNTERS_SET_SUPPORT
966                 config.flow_counter_en = !!attr.max_counter_sets;
967                 mlx5_glue->describe_counter_set(ctx, 0, &cs_desc);
968                 DRV_LOG(DEBUG,
969                         "counter type = %d, num of cs = %ld, attributes = %d",
970                         cs_desc.counter_type, cs_desc.num_of_cs,
971                         cs_desc.attributes);
972 #endif
973                 config.ind_table_max_size =
974                         attr.rss_caps.max_rwq_indirection_table_size;
975                 /* Remove this check once DPDK supports larger/variable
976                  * indirection tables. */
977                 if (config.ind_table_max_size >
978                                 (unsigned int)ETH_RSS_RETA_SIZE_512)
979                         config.ind_table_max_size = ETH_RSS_RETA_SIZE_512;
980                 DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
981                         config.ind_table_max_size);
982                 config.hw_vlan_strip = !!(attr.raw_packet_caps &
983                                          IBV_RAW_PACKET_CAP_CVLAN_STRIPPING);
984                 DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
985                         (config.hw_vlan_strip ? "" : "not "));
986
987                 config.hw_fcs_strip = !!(attr.raw_packet_caps &
988                                          IBV_RAW_PACKET_CAP_SCATTER_FCS);
989                 DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported",
990                         (config.hw_fcs_strip ? "" : "not "));
991
992 #ifdef HAVE_IBV_WQ_FLAG_RX_END_PADDING
993                 config.hw_padding = !!attr.rx_pad_end_addr_align;
994 #endif
995                 DRV_LOG(DEBUG,
996                         "hardware Rx end alignment padding is %ssupported",
997                         (config.hw_padding ? "" : "not "));
998                 config.vf = vf;
999                 config.tso = (attr.tso_caps.max_tso > 0 &&
1000                               (attr.tso_caps.supported_qpts &
1001                                (1 << IBV_QPT_RAW_PACKET)));
1002                 if (config.tso)
1003                         config.tso_max_payload_sz = attr.tso_caps.max_tso;
1004                 if (config.mps && !mps) {
1005                         DRV_LOG(ERR,
1006                                 "multi-packet send not supported on this device"
1007                                 " (" MLX5_TXQ_MPW_EN ")");
1008                         err = ENOTSUP;
1009                         goto port_error;
1010                 }
1011                 DRV_LOG(INFO, "%s MPS is %s",
1012                         config.mps == MLX5_MPW_ENHANCED ? "enhanced " : "",
1013                         config.mps != MLX5_MPW_DISABLED ? "enabled" :
1014                         "disabled");
1015                 if (config.cqe_comp && !cqe_comp) {
1016                         DRV_LOG(WARNING, "Rx CQE compression isn't supported");
1017                         config.cqe_comp = 0;
1018                 }
1019                 if (config.mprq.enabled && mprq) {
1020                         if (config.mprq.stride_num_n > mprq_max_stride_num_n ||
1021                             config.mprq.stride_num_n < mprq_min_stride_num_n) {
1022                                 config.mprq.stride_num_n =
1023                                         RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
1024                                                 mprq_min_stride_num_n);
1025                                 DRV_LOG(WARNING,
1026                                         "the number of strides"
1027                                         " for Multi-Packet RQ is out of range,"
1028                                         " setting default value (%u)",
1029                                         1 << config.mprq.stride_num_n);
1030                         }
1031                         config.mprq.min_stride_size_n = mprq_min_stride_size_n;
1032                         config.mprq.max_stride_size_n = mprq_max_stride_size_n;
1033                 } else if (config.mprq.enabled && !mprq) {
1034                         DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
1035                         config.mprq.enabled = 0;
1036                 }
1037                 eth_dev = rte_eth_dev_allocate(name);
1038                 if (eth_dev == NULL) {
1039                         DRV_LOG(ERR, "can not allocate rte ethdev");
1040                         err = ENOMEM;
1041                         goto port_error;
1042                 }
1043                 eth_dev->data->dev_private = priv;
1044                 priv->dev_data = eth_dev->data;
1045                 eth_dev->data->mac_addrs = priv->mac;
1046                 eth_dev->device = &pci_dev->device;
1047                 rte_eth_copy_pci_info(eth_dev, pci_dev);
1048                 eth_dev->device->driver = &mlx5_driver.driver;
1049                 err = mlx5_uar_init_primary(eth_dev);
1050                 if (err) {
1051                         err = rte_errno;
1052                         goto port_error;
1053                 }
1054                 /* Configure the first MAC address by default. */
1055                 if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
1056                         DRV_LOG(ERR,
1057                                 "port %u cannot get MAC address, is mlx5_en"
1058                                 " loaded? (errno: %s)",
1059                                 eth_dev->data->port_id, strerror(rte_errno));
1060                         err = ENODEV;
1061                         goto port_error;
1062                 }
1063                 DRV_LOG(INFO,
1064                         "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
1065                         eth_dev->data->port_id,
1066                         mac.addr_bytes[0], mac.addr_bytes[1],
1067                         mac.addr_bytes[2], mac.addr_bytes[3],
1068                         mac.addr_bytes[4], mac.addr_bytes[5]);
1069 #ifndef NDEBUG
1070                 {
1071                         char ifname[IF_NAMESIZE];
1072
1073                         if (mlx5_get_ifname(eth_dev, &ifname) == 0)
1074                                 DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
1075                                         eth_dev->data->port_id, ifname);
1076                         else
1077                                 DRV_LOG(DEBUG, "port %u ifname is unknown",
1078                                         eth_dev->data->port_id);
1079                 }
1080 #endif
1081                 /* Get actual MTU if possible. */
1082                 err = mlx5_get_mtu(eth_dev, &priv->mtu);
1083                 if (err) {
1084                         err = rte_errno;
1085                         goto port_error;
1086                 }
1087                 DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id,
1088                         priv->mtu);
1089                 /*
1090                  * Initialize burst functions to prevent crashes before link-up.
1091                  */
1092                 eth_dev->rx_pkt_burst = removed_rx_burst;
1093                 eth_dev->tx_pkt_burst = removed_tx_burst;
1094                 eth_dev->dev_ops = &mlx5_dev_ops;
1095                 /* Register MAC address. */
1096                 claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
1097                 priv->nl_socket = -1;
1098                 priv->nl_sn = 0;
1099                 if (vf && config.vf_nl_en) {
1100                         priv->nl_socket = mlx5_nl_init(RTMGRP_LINK);
1101                         if (priv->nl_socket < 0)
1102                                 priv->nl_socket = -1;
1103                         mlx5_nl_mac_addr_sync(eth_dev);
1104                 }
1105                 TAILQ_INIT(&priv->flows);
1106                 TAILQ_INIT(&priv->ctrl_flows);
1107                 /* Hint libmlx5 to use PMD allocator for data plane resources */
1108                 struct mlx5dv_ctx_allocators alctr = {
1109                         .alloc = &mlx5_alloc_verbs_buf,
1110                         .free = &mlx5_free_verbs_buf,
1111                         .data = priv,
1112                 };
1113                 mlx5_glue->dv_set_context_attr(ctx,
1114                                                MLX5DV_CTX_ATTR_BUF_ALLOCATORS,
1115                                                (void *)((uintptr_t)&alctr));
1116                 /* Bring Ethernet device up. */
1117                 DRV_LOG(DEBUG, "port %u forcing Ethernet interface up",
1118                         eth_dev->data->port_id);
1119                 mlx5_set_link_up(eth_dev);
1120                 /*
1121                  * Even though the interrupt handler is not installed yet,
1122                  * interrupts will still trigger on the asyn_fd from
1123                  * Verbs context returned by ibv_open_device().
1124                  */
1125                 mlx5_link_update(eth_dev, 0);
1126                 /* Store device configuration on private structure. */
1127                 priv->config = config;
1128                 /* Create drop queue. */
1129                 err = mlx5_flow_create_drop_queue(eth_dev);
1130                 if (err) {
1131                         DRV_LOG(ERR, "port %u drop queue allocation failed: %s",
1132                                 eth_dev->data->port_id, strerror(rte_errno));
1133                         err = rte_errno;
1134                         goto port_error;
1135                 }
1136                 /* Supported Verbs flow priority number detection. */
1137                 if (verb_priorities == 0)
1138                         verb_priorities = mlx5_get_max_verbs_prio(eth_dev);
1139                 if (verb_priorities < MLX5_VERBS_FLOW_PRIO_8) {
1140                         DRV_LOG(ERR, "port %u wrong Verbs flow priorities: %u",
1141                                 eth_dev->data->port_id, verb_priorities);
1142                         err = ENOTSUP;
1143                         goto port_error;
1144                 }
1145                 priv->config.max_verbs_prio = verb_priorities;
1146                 /*
1147                  * Once the device is added to the list of memory event
1148                  * callback, its global MR cache table cannot be expanded
1149                  * on the fly because of deadlock. If it overflows, lookup
1150                  * should be done by searching MR list linearly, which is slow.
1151                  */
1152                 err = mlx5_mr_btree_init(&priv->mr.cache,
1153                                          MLX5_MR_BTREE_CACHE_N * 2,
1154                                          eth_dev->device->numa_node);
1155                 if (err) {
1156                         err = rte_errno;
1157                         goto port_error;
1158                 }
1159                 /* Add device to memory callback list. */
1160                 rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
1161                 LIST_INSERT_HEAD(&mlx5_shared_data->mem_event_cb_list,
1162                                  priv, mem_event_cb);
1163                 rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
1164                 rte_eth_dev_probing_finish(eth_dev);
1165                 /*
1166                  * Each eth_dev instance is assigned its own Verbs context,
1167                  * since this one is consumed, let the next iteration open
1168                  * another.
1169                  */
1170                 ctx = NULL;
1171                 continue;
1172 port_error:
1173                 if (priv)
1174                         rte_free(priv);
1175                 if (pd)
1176                         claim_zero(mlx5_glue->dealloc_pd(pd));
1177                 if (eth_dev && rte_eal_process_type() == RTE_PROC_PRIMARY)
1178                         rte_eth_dev_release_port(eth_dev);
1179                 break;
1180         }
1181         /*
1182          * XXX if something went wrong in the loop above, there is a resource
1183          * leak (ctx, pd, priv, dpdk ethdev) but we can do nothing about it as
1184          * long as the dpdk does not provide a way to deallocate a ethdev and a
1185          * way to enumerate the registered ethdevs to free the previous ones.
1186          */
1187 error:
1188         if (ctx)
1189                 claim_zero(mlx5_glue->close_device(ctx));
1190         if (list)
1191                 mlx5_glue->free_device_list(list);
1192         if (err) {
1193                 rte_errno = err;
1194                 return -rte_errno;
1195         }
1196         return 0;
1197 }
1198
1199 static const struct rte_pci_id mlx5_pci_id_map[] = {
1200         {
1201                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1202                                PCI_DEVICE_ID_MELLANOX_CONNECTX4)
1203         },
1204         {
1205                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1206                                PCI_DEVICE_ID_MELLANOX_CONNECTX4VF)
1207         },
1208         {
1209                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1210                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LX)
1211         },
1212         {
1213                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1214                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF)
1215         },
1216         {
1217                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1218                                PCI_DEVICE_ID_MELLANOX_CONNECTX5)
1219         },
1220         {
1221                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1222                                PCI_DEVICE_ID_MELLANOX_CONNECTX5VF)
1223         },
1224         {
1225                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1226                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EX)
1227         },
1228         {
1229                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1230                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF)
1231         },
1232         {
1233                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1234                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BF)
1235         },
1236         {
1237                 .vendor_id = 0
1238         }
1239 };
1240
1241 static struct rte_pci_driver mlx5_driver = {
1242         .driver = {
1243                 .name = MLX5_DRIVER_NAME
1244         },
1245         .id_table = mlx5_pci_id_map,
1246         .probe = mlx5_pci_probe,
1247         .drv_flags = RTE_PCI_DRV_INTR_LSC | RTE_PCI_DRV_INTR_RMV,
1248 };
1249
1250 #ifdef RTE_LIBRTE_MLX5_DLOPEN_DEPS
1251
1252 /**
1253  * Suffix RTE_EAL_PMD_PATH with "-glue".
1254  *
1255  * This function performs a sanity check on RTE_EAL_PMD_PATH before
1256  * suffixing its last component.
1257  *
1258  * @param buf[out]
1259  *   Output buffer, should be large enough otherwise NULL is returned.
1260  * @param size
1261  *   Size of @p out.
1262  *
1263  * @return
1264  *   Pointer to @p buf or @p NULL in case suffix cannot be appended.
1265  */
1266 static char *
1267 mlx5_glue_path(char *buf, size_t size)
1268 {
1269         static const char *const bad[] = { "/", ".", "..", NULL };
1270         const char *path = RTE_EAL_PMD_PATH;
1271         size_t len = strlen(path);
1272         size_t off;
1273         int i;
1274
1275         while (len && path[len - 1] == '/')
1276                 --len;
1277         for (off = len; off && path[off - 1] != '/'; --off)
1278                 ;
1279         for (i = 0; bad[i]; ++i)
1280                 if (!strncmp(path + off, bad[i], (int)(len - off)))
1281                         goto error;
1282         i = snprintf(buf, size, "%.*s-glue", (int)len, path);
1283         if (i == -1 || (size_t)i >= size)
1284                 goto error;
1285         return buf;
1286 error:
1287         DRV_LOG(ERR,
1288                 "unable to append \"-glue\" to last component of"
1289                 " RTE_EAL_PMD_PATH (\"" RTE_EAL_PMD_PATH "\"),"
1290                 " please re-configure DPDK");
1291         return NULL;
1292 }
1293
1294 /**
1295  * Initialization routine for run-time dependency on rdma-core.
1296  */
1297 static int
1298 mlx5_glue_init(void)
1299 {
1300         char glue_path[sizeof(RTE_EAL_PMD_PATH) - 1 + sizeof("-glue")];
1301         const char *path[] = {
1302                 /*
1303                  * A basic security check is necessary before trusting
1304                  * MLX5_GLUE_PATH, which may override RTE_EAL_PMD_PATH.
1305                  */
1306                 (geteuid() == getuid() && getegid() == getgid() ?
1307                  getenv("MLX5_GLUE_PATH") : NULL),
1308                 /*
1309                  * When RTE_EAL_PMD_PATH is set, use its glue-suffixed
1310                  * variant, otherwise let dlopen() look up libraries on its
1311                  * own.
1312                  */
1313                 (*RTE_EAL_PMD_PATH ?
1314                  mlx5_glue_path(glue_path, sizeof(glue_path)) : ""),
1315         };
1316         unsigned int i = 0;
1317         void *handle = NULL;
1318         void **sym;
1319         const char *dlmsg;
1320
1321         while (!handle && i != RTE_DIM(path)) {
1322                 const char *end;
1323                 size_t len;
1324                 int ret;
1325
1326                 if (!path[i]) {
1327                         ++i;
1328                         continue;
1329                 }
1330                 end = strpbrk(path[i], ":;");
1331                 if (!end)
1332                         end = path[i] + strlen(path[i]);
1333                 len = end - path[i];
1334                 ret = 0;
1335                 do {
1336                         char name[ret + 1];
1337
1338                         ret = snprintf(name, sizeof(name), "%.*s%s" MLX5_GLUE,
1339                                        (int)len, path[i],
1340                                        (!len || *(end - 1) == '/') ? "" : "/");
1341                         if (ret == -1)
1342                                 break;
1343                         if (sizeof(name) != (size_t)ret + 1)
1344                                 continue;
1345                         DRV_LOG(DEBUG, "looking for rdma-core glue as \"%s\"",
1346                                 name);
1347                         handle = dlopen(name, RTLD_LAZY);
1348                         break;
1349                 } while (1);
1350                 path[i] = end + 1;
1351                 if (!*end)
1352                         ++i;
1353         }
1354         if (!handle) {
1355                 rte_errno = EINVAL;
1356                 dlmsg = dlerror();
1357                 if (dlmsg)
1358                         DRV_LOG(WARNING, "cannot load glue library: %s", dlmsg);
1359                 goto glue_error;
1360         }
1361         sym = dlsym(handle, "mlx5_glue");
1362         if (!sym || !*sym) {
1363                 rte_errno = EINVAL;
1364                 dlmsg = dlerror();
1365                 if (dlmsg)
1366                         DRV_LOG(ERR, "cannot resolve glue symbol: %s", dlmsg);
1367                 goto glue_error;
1368         }
1369         mlx5_glue = *sym;
1370         return 0;
1371 glue_error:
1372         if (handle)
1373                 dlclose(handle);
1374         DRV_LOG(WARNING,
1375                 "cannot initialize PMD due to missing run-time dependency on"
1376                 " rdma-core libraries (libibverbs, libmlx5)");
1377         return -rte_errno;
1378 }
1379
1380 #endif
1381
1382 /**
1383  * Driver initialization routine.
1384  */
1385 RTE_INIT(rte_mlx5_pmd_init)
1386 {
1387         /* Initialize driver log type. */
1388         mlx5_logtype = rte_log_register("pmd.net.mlx5");
1389         if (mlx5_logtype >= 0)
1390                 rte_log_set_level(mlx5_logtype, RTE_LOG_NOTICE);
1391
1392         /* Build the static tables for Verbs conversion. */
1393         mlx5_set_ptype_table();
1394         mlx5_set_cksum_table();
1395         mlx5_set_swp_types_table();
1396         /*
1397          * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
1398          * huge pages. Calling ibv_fork_init() during init allows
1399          * applications to use fork() safely for purposes other than
1400          * using this PMD, which is not supported in forked processes.
1401          */
1402         setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
1403         /* Match the size of Rx completion entry to the size of a cacheline. */
1404         if (RTE_CACHE_LINE_SIZE == 128)
1405                 setenv("MLX5_CQE_SIZE", "128", 0);
1406         /*
1407          * MLX5_DEVICE_FATAL_CLEANUP tells ibv_destroy functions to
1408          * cleanup all the Verbs resources even when the device was removed.
1409          */
1410         setenv("MLX5_DEVICE_FATAL_CLEANUP", "1", 1);
1411 #ifdef RTE_LIBRTE_MLX5_DLOPEN_DEPS
1412         if (mlx5_glue_init())
1413                 return;
1414         assert(mlx5_glue);
1415 #endif
1416 #ifndef NDEBUG
1417         /* Glue structure must not contain any NULL pointers. */
1418         {
1419                 unsigned int i;
1420
1421                 for (i = 0; i != sizeof(*mlx5_glue) / sizeof(void *); ++i)
1422                         assert(((const void *const *)mlx5_glue)[i]);
1423         }
1424 #endif
1425         if (strcmp(mlx5_glue->version, MLX5_GLUE_VERSION)) {
1426                 DRV_LOG(ERR,
1427                         "rdma-core glue \"%s\" mismatch: \"%s\" is required",
1428                         mlx5_glue->version, MLX5_GLUE_VERSION);
1429                 return;
1430         }
1431         mlx5_glue->fork_init();
1432         rte_pci_register(&mlx5_driver);
1433 }
1434
1435 RTE_PMD_EXPORT_NAME(net_mlx5, __COUNTER__);
1436 RTE_PMD_REGISTER_PCI_TABLE(net_mlx5, mlx5_pci_id_map);
1437 RTE_PMD_REGISTER_KMOD_DEP(net_mlx5, "* ib_uverbs & mlx5_core & mlx5_ib");