net/mlx5: switch to the shared context IB attributes
[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 #include <rte_string_fns.h>
40
41 #include "mlx5.h"
42 #include "mlx5_utils.h"
43 #include "mlx5_rxtx.h"
44 #include "mlx5_autoconf.h"
45 #include "mlx5_defs.h"
46 #include "mlx5_glue.h"
47 #include "mlx5_mr.h"
48 #include "mlx5_flow.h"
49
50 /* Device parameter to enable RX completion queue compression. */
51 #define MLX5_RXQ_CQE_COMP_EN "rxq_cqe_comp_en"
52
53 /* Device parameter to enable RX completion entry padding to 128B. */
54 #define MLX5_RXQ_CQE_PAD_EN "rxq_cqe_pad_en"
55
56 /* Device parameter to enable padding Rx packet to cacheline size. */
57 #define MLX5_RXQ_PKT_PAD_EN "rxq_pkt_pad_en"
58
59 /* Device parameter to enable Multi-Packet Rx queue. */
60 #define MLX5_RX_MPRQ_EN "mprq_en"
61
62 /* Device parameter to configure log 2 of the number of strides for MPRQ. */
63 #define MLX5_RX_MPRQ_LOG_STRIDE_NUM "mprq_log_stride_num"
64
65 /* Device parameter to limit the size of memcpy'd packet for MPRQ. */
66 #define MLX5_RX_MPRQ_MAX_MEMCPY_LEN "mprq_max_memcpy_len"
67
68 /* Device parameter to set the minimum number of Rx queues to enable MPRQ. */
69 #define MLX5_RXQS_MIN_MPRQ "rxqs_min_mprq"
70
71 /* Device parameter to configure inline send. */
72 #define MLX5_TXQ_INLINE "txq_inline"
73
74 /*
75  * Device parameter to configure the number of TX queues threshold for
76  * enabling inline send.
77  */
78 #define MLX5_TXQS_MIN_INLINE "txqs_min_inline"
79
80 /*
81  * Device parameter to configure the number of TX queues threshold for
82  * enabling vectorized Tx.
83  */
84 #define MLX5_TXQS_MAX_VEC "txqs_max_vec"
85
86 /* Device parameter to enable multi-packet send WQEs. */
87 #define MLX5_TXQ_MPW_EN "txq_mpw_en"
88
89 /* Device parameter to include 2 dsegs in the title WQEBB. */
90 #define MLX5_TXQ_MPW_HDR_DSEG_EN "txq_mpw_hdr_dseg_en"
91
92 /* Device parameter to limit the size of inlining packet. */
93 #define MLX5_TXQ_MAX_INLINE_LEN "txq_max_inline_len"
94
95 /* Device parameter to enable hardware Tx vector. */
96 #define MLX5_TX_VEC_EN "tx_vec_en"
97
98 /* Device parameter to enable hardware Rx vector. */
99 #define MLX5_RX_VEC_EN "rx_vec_en"
100
101 /* Allow L3 VXLAN flow creation. */
102 #define MLX5_L3_VXLAN_EN "l3_vxlan_en"
103
104 /* Activate DV flow steering. */
105 #define MLX5_DV_FLOW_EN "dv_flow_en"
106
107 /* Activate Netlink support in VF mode. */
108 #define MLX5_VF_NL_EN "vf_nl_en"
109
110 /* Select port representors to instantiate. */
111 #define MLX5_REPRESENTOR "representor"
112
113 #ifndef HAVE_IBV_MLX5_MOD_MPW
114 #define MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED (1 << 2)
115 #define MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW (1 << 3)
116 #endif
117
118 #ifndef HAVE_IBV_MLX5_MOD_CQE_128B_COMP
119 #define MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP (1 << 4)
120 #endif
121
122 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data";
123
124 /* Shared memory between primary and secondary processes. */
125 struct mlx5_shared_data *mlx5_shared_data;
126
127 /* Spinlock for mlx5_shared_data allocation. */
128 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
129
130 /** Driver-specific log messages type. */
131 int mlx5_logtype;
132
133 /** Data associated with devices to spawn. */
134 struct mlx5_dev_spawn_data {
135         uint32_t ifindex; /**< Network interface index. */
136         uint32_t max_port; /**< IB device maximal port index. */
137         uint32_t ibv_port; /**< IB device physical port index. */
138         struct mlx5_switch_info info; /**< Switch information. */
139         struct ibv_device *ibv_dev; /**< Associated IB device. */
140         struct rte_eth_dev *eth_dev; /**< Associated Ethernet device. */
141 };
142
143 static LIST_HEAD(, mlx5_ibv_shared) mlx5_ibv_list = LIST_HEAD_INITIALIZER();
144 static pthread_mutex_t mlx5_ibv_list_mutex = PTHREAD_MUTEX_INITIALIZER;
145
146 /**
147  * Allocate shared IB device context. If there is multiport device the
148  * master and representors will share this context, if there is single
149  * port dedicated IB device, the context will be used by only given
150  * port due to unification.
151  *
152  * Routine first searches the context for the spesified IB device name,
153  * if found the shared context assumed and reference counter is incremented.
154  * If no context found the new one is created and initialized with specified
155  * IB device context and parameters.
156  *
157  * @param[in] spawn
158  *   Pointer to the IB device attributes (name, port, etc).
159  *
160  * @return
161  *   Pointer to mlx5_ibv_shared object on success,
162  *   otherwise NULL and rte_errno is set.
163  */
164 static struct mlx5_ibv_shared *
165 mlx5_alloc_shared_ibctx(const struct mlx5_dev_spawn_data *spawn)
166 {
167         struct mlx5_ibv_shared *sh;
168         int err = 0;
169
170         assert(spawn);
171         /* Secondary process should not create the shared context. */
172         assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
173         pthread_mutex_lock(&mlx5_ibv_list_mutex);
174         /* Search for IB context by device name. */
175         LIST_FOREACH(sh, &mlx5_ibv_list, next) {
176                 if (!strcmp(sh->ibdev_name, spawn->ibv_dev->name)) {
177                         sh->refcnt++;
178                         goto exit;
179                 }
180         }
181         /* No device found, we have to create new sharted context. */
182         assert(spawn->max_port);
183         sh = rte_zmalloc("ethdev shared ib context",
184                          sizeof(struct mlx5_ibv_shared) +
185                          spawn->max_port *
186                          sizeof(struct mlx5_ibv_shared_port),
187                          RTE_CACHE_LINE_SIZE);
188         if (!sh) {
189                 DRV_LOG(ERR, "shared context allocation failure");
190                 rte_errno  = ENOMEM;
191                 goto exit;
192         }
193         /* Try to open IB device with DV first, then usual Verbs. */
194         errno = 0;
195         sh->ctx = mlx5_glue->dv_open_device(spawn->ibv_dev);
196         if (sh->ctx) {
197                 sh->devx = 1;
198                 DRV_LOG(DEBUG, "DevX is supported");
199         } else {
200                 sh->ctx = mlx5_glue->open_device(spawn->ibv_dev);
201                 if (!sh->ctx) {
202                         err = errno ? errno : ENODEV;
203                         goto error;
204                 }
205                 DRV_LOG(DEBUG, "DevX is NOT supported");
206         }
207         err = mlx5_glue->query_device_ex(sh->ctx, NULL, &sh->device_attr);
208         if (err) {
209                 DRV_LOG(DEBUG, "ibv_query_device_ex() failed");
210                 goto error;
211         }
212         sh->refcnt = 1;
213         sh->max_port = spawn->max_port;
214         strncpy(sh->ibdev_name, sh->ctx->device->name,
215                 sizeof(sh->ibdev_name));
216         strncpy(sh->ibdev_path, sh->ctx->device->ibdev_path,
217                 sizeof(sh->ibdev_path));
218         sh->pd = mlx5_glue->alloc_pd(sh->ctx);
219         if (sh->pd == NULL) {
220                 DRV_LOG(ERR, "PD allocation failure");
221                 err = ENOMEM;
222                 goto error;
223         }
224         LIST_INSERT_HEAD(&mlx5_ibv_list, sh, next);
225 exit:
226         pthread_mutex_unlock(&mlx5_ibv_list_mutex);
227         return sh;
228 error:
229         pthread_mutex_unlock(&mlx5_ibv_list_mutex);
230         assert(sh);
231         if (sh->pd)
232                 claim_zero(mlx5_glue->dealloc_pd(sh->pd));
233         if (sh->ctx)
234                 claim_zero(mlx5_glue->close_device(sh->ctx));
235         rte_free(sh);
236         assert(err > 0);
237         rte_errno = err;
238         return NULL;
239 }
240
241 /**
242  * Free shared IB device context. Decrement counter and if zero free
243  * all allocated resources and close handles.
244  *
245  * @param[in] sh
246  *   Pointer to mlx5_ibv_shared object to free
247  */
248 static void
249 mlx5_free_shared_ibctx(struct mlx5_ibv_shared *sh)
250 {
251         pthread_mutex_lock(&mlx5_ibv_list_mutex);
252 #ifndef NDEBUG
253         /* Check the object presence in the list. */
254         struct mlx5_ibv_shared *lctx;
255
256         LIST_FOREACH(lctx, &mlx5_ibv_list, next)
257                 if (lctx == sh)
258                         break;
259         assert(lctx);
260         if (lctx != sh) {
261                 DRV_LOG(ERR, "Freeing non-existing shared IB context");
262                 goto exit;
263         }
264 #endif
265         assert(sh);
266         assert(sh->refcnt);
267         /* Secondary process should not free the shared context. */
268         assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
269         if (--sh->refcnt)
270                 goto exit;
271         LIST_REMOVE(sh, next);
272         if (sh->pd)
273                 claim_zero(mlx5_glue->dealloc_pd(sh->pd));
274         if (sh->ctx)
275                 claim_zero(mlx5_glue->close_device(sh->ctx));
276         rte_free(sh);
277 exit:
278         pthread_mutex_unlock(&mlx5_ibv_list_mutex);
279 }
280
281
282 /**
283  * Prepare shared data between primary and secondary process.
284  */
285 static void
286 mlx5_prepare_shared_data(void)
287 {
288         const struct rte_memzone *mz;
289
290         rte_spinlock_lock(&mlx5_shared_data_lock);
291         if (mlx5_shared_data == NULL) {
292                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
293                         /* Allocate shared memory. */
294                         mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA,
295                                                  sizeof(*mlx5_shared_data),
296                                                  SOCKET_ID_ANY, 0);
297                 } else {
298                         /* Lookup allocated shared memory. */
299                         mz = rte_memzone_lookup(MZ_MLX5_PMD_SHARED_DATA);
300                 }
301                 if (mz == NULL)
302                         rte_panic("Cannot allocate mlx5 shared data\n");
303                 mlx5_shared_data = mz->addr;
304                 /* Initialize shared data. */
305                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
306                         LIST_INIT(&mlx5_shared_data->mem_event_cb_list);
307                         rte_rwlock_init(&mlx5_shared_data->mem_event_rwlock);
308                 }
309                 rte_mem_event_callback_register("MLX5_MEM_EVENT_CB",
310                                                 mlx5_mr_mem_event_cb, NULL);
311         }
312         rte_spinlock_unlock(&mlx5_shared_data_lock);
313 }
314
315 /**
316  * Retrieve integer value from environment variable.
317  *
318  * @param[in] name
319  *   Environment variable name.
320  *
321  * @return
322  *   Integer value, 0 if the variable is not set.
323  */
324 int
325 mlx5_getenv_int(const char *name)
326 {
327         const char *val = getenv(name);
328
329         if (val == NULL)
330                 return 0;
331         return atoi(val);
332 }
333
334 /**
335  * Verbs callback to allocate a memory. This function should allocate the space
336  * according to the size provided residing inside a huge page.
337  * Please note that all allocation must respect the alignment from libmlx5
338  * (i.e. currently sysconf(_SC_PAGESIZE)).
339  *
340  * @param[in] size
341  *   The size in bytes of the memory to allocate.
342  * @param[in] data
343  *   A pointer to the callback data.
344  *
345  * @return
346  *   Allocated buffer, NULL otherwise and rte_errno is set.
347  */
348 static void *
349 mlx5_alloc_verbs_buf(size_t size, void *data)
350 {
351         struct mlx5_priv *priv = data;
352         void *ret;
353         size_t alignment = sysconf(_SC_PAGESIZE);
354         unsigned int socket = SOCKET_ID_ANY;
355
356         if (priv->verbs_alloc_ctx.type == MLX5_VERBS_ALLOC_TYPE_TX_QUEUE) {
357                 const struct mlx5_txq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
358
359                 socket = ctrl->socket;
360         } else if (priv->verbs_alloc_ctx.type ==
361                    MLX5_VERBS_ALLOC_TYPE_RX_QUEUE) {
362                 const struct mlx5_rxq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
363
364                 socket = ctrl->socket;
365         }
366         assert(data != NULL);
367         ret = rte_malloc_socket(__func__, size, alignment, socket);
368         if (!ret && size)
369                 rte_errno = ENOMEM;
370         return ret;
371 }
372
373 /**
374  * Verbs callback to free a memory.
375  *
376  * @param[in] ptr
377  *   A pointer to the memory to free.
378  * @param[in] data
379  *   A pointer to the callback data.
380  */
381 static void
382 mlx5_free_verbs_buf(void *ptr, void *data __rte_unused)
383 {
384         assert(data != NULL);
385         rte_free(ptr);
386 }
387
388 /**
389  * DPDK callback to close the device.
390  *
391  * Destroy all queues and objects, free memory.
392  *
393  * @param dev
394  *   Pointer to Ethernet device structure.
395  */
396 static void
397 mlx5_dev_close(struct rte_eth_dev *dev)
398 {
399         struct mlx5_priv *priv = dev->data->dev_private;
400         unsigned int i;
401         int ret;
402
403         DRV_LOG(DEBUG, "port %u closing device \"%s\"",
404                 dev->data->port_id,
405                 ((priv->ctx != NULL) ? priv->ctx->device->name : ""));
406         /* In case mlx5_dev_stop() has not been called. */
407         mlx5_dev_interrupt_handler_uninstall(dev);
408         mlx5_traffic_disable(dev);
409         mlx5_flow_flush(dev, NULL);
410         /* Prevent crashes when queues are still in use. */
411         dev->rx_pkt_burst = removed_rx_burst;
412         dev->tx_pkt_burst = removed_tx_burst;
413         if (priv->rxqs != NULL) {
414                 /* XXX race condition if mlx5_rx_burst() is still running. */
415                 usleep(1000);
416                 for (i = 0; (i != priv->rxqs_n); ++i)
417                         mlx5_rxq_release(dev, i);
418                 priv->rxqs_n = 0;
419                 priv->rxqs = NULL;
420         }
421         if (priv->txqs != NULL) {
422                 /* XXX race condition if mlx5_tx_burst() is still running. */
423                 usleep(1000);
424                 for (i = 0; (i != priv->txqs_n); ++i)
425                         mlx5_txq_release(dev, i);
426                 priv->txqs_n = 0;
427                 priv->txqs = NULL;
428         }
429         mlx5_mprq_free_mp(dev);
430         mlx5_mr_release(dev);
431         assert(priv->sh);
432         if (priv->sh)
433                 mlx5_free_shared_ibctx(priv->sh);
434         priv->sh = NULL;
435         if (priv->rss_conf.rss_key != NULL)
436                 rte_free(priv->rss_conf.rss_key);
437         if (priv->reta_idx != NULL)
438                 rte_free(priv->reta_idx);
439         if (priv->primary_socket)
440                 mlx5_socket_uninit(dev);
441         if (priv->config.vf)
442                 mlx5_nl_mac_addr_flush(dev);
443         if (priv->nl_socket_route >= 0)
444                 close(priv->nl_socket_route);
445         if (priv->nl_socket_rdma >= 0)
446                 close(priv->nl_socket_rdma);
447         if (priv->tcf_context)
448                 mlx5_flow_tcf_context_destroy(priv->tcf_context);
449         ret = mlx5_hrxq_ibv_verify(dev);
450         if (ret)
451                 DRV_LOG(WARNING, "port %u some hash Rx queue still remain",
452                         dev->data->port_id);
453         ret = mlx5_ind_table_ibv_verify(dev);
454         if (ret)
455                 DRV_LOG(WARNING, "port %u some indirection table still remain",
456                         dev->data->port_id);
457         ret = mlx5_rxq_ibv_verify(dev);
458         if (ret)
459                 DRV_LOG(WARNING, "port %u some Verbs Rx queue still remain",
460                         dev->data->port_id);
461         ret = mlx5_rxq_verify(dev);
462         if (ret)
463                 DRV_LOG(WARNING, "port %u some Rx queues still remain",
464                         dev->data->port_id);
465         ret = mlx5_txq_ibv_verify(dev);
466         if (ret)
467                 DRV_LOG(WARNING, "port %u some Verbs Tx queue still remain",
468                         dev->data->port_id);
469         ret = mlx5_txq_verify(dev);
470         if (ret)
471                 DRV_LOG(WARNING, "port %u some Tx queues still remain",
472                         dev->data->port_id);
473         ret = mlx5_flow_verify(dev);
474         if (ret)
475                 DRV_LOG(WARNING, "port %u some flows still remain",
476                         dev->data->port_id);
477         if (priv->domain_id != RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
478                 unsigned int c = 0;
479                 unsigned int i = mlx5_dev_to_port_id(dev->device, NULL, 0);
480                 uint16_t port_id[i];
481
482                 i = RTE_MIN(mlx5_dev_to_port_id(dev->device, port_id, i), i);
483                 while (i--) {
484                         struct mlx5_priv *opriv =
485                                 rte_eth_devices[port_id[i]].data->dev_private;
486
487                         if (!opriv ||
488                             opriv->domain_id != priv->domain_id ||
489                             &rte_eth_devices[port_id[i]] == dev)
490                                 continue;
491                         ++c;
492                 }
493                 if (!c)
494                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
495         }
496         memset(priv, 0, sizeof(*priv));
497         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
498         /*
499          * Reset mac_addrs to NULL such that it is not freed as part of
500          * rte_eth_dev_release_port(). mac_addrs is part of dev_private so
501          * it is freed when dev_private is freed.
502          */
503         dev->data->mac_addrs = NULL;
504 }
505
506 const struct eth_dev_ops mlx5_dev_ops = {
507         .dev_configure = mlx5_dev_configure,
508         .dev_start = mlx5_dev_start,
509         .dev_stop = mlx5_dev_stop,
510         .dev_set_link_down = mlx5_set_link_down,
511         .dev_set_link_up = mlx5_set_link_up,
512         .dev_close = mlx5_dev_close,
513         .promiscuous_enable = mlx5_promiscuous_enable,
514         .promiscuous_disable = mlx5_promiscuous_disable,
515         .allmulticast_enable = mlx5_allmulticast_enable,
516         .allmulticast_disable = mlx5_allmulticast_disable,
517         .link_update = mlx5_link_update,
518         .stats_get = mlx5_stats_get,
519         .stats_reset = mlx5_stats_reset,
520         .xstats_get = mlx5_xstats_get,
521         .xstats_reset = mlx5_xstats_reset,
522         .xstats_get_names = mlx5_xstats_get_names,
523         .fw_version_get = mlx5_fw_version_get,
524         .dev_infos_get = mlx5_dev_infos_get,
525         .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
526         .vlan_filter_set = mlx5_vlan_filter_set,
527         .rx_queue_setup = mlx5_rx_queue_setup,
528         .tx_queue_setup = mlx5_tx_queue_setup,
529         .rx_queue_release = mlx5_rx_queue_release,
530         .tx_queue_release = mlx5_tx_queue_release,
531         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
532         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
533         .mac_addr_remove = mlx5_mac_addr_remove,
534         .mac_addr_add = mlx5_mac_addr_add,
535         .mac_addr_set = mlx5_mac_addr_set,
536         .set_mc_addr_list = mlx5_set_mc_addr_list,
537         .mtu_set = mlx5_dev_set_mtu,
538         .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
539         .vlan_offload_set = mlx5_vlan_offload_set,
540         .reta_update = mlx5_dev_rss_reta_update,
541         .reta_query = mlx5_dev_rss_reta_query,
542         .rss_hash_update = mlx5_rss_hash_update,
543         .rss_hash_conf_get = mlx5_rss_hash_conf_get,
544         .filter_ctrl = mlx5_dev_filter_ctrl,
545         .rx_descriptor_status = mlx5_rx_descriptor_status,
546         .tx_descriptor_status = mlx5_tx_descriptor_status,
547         .rx_queue_count = mlx5_rx_queue_count,
548         .rx_queue_intr_enable = mlx5_rx_intr_enable,
549         .rx_queue_intr_disable = mlx5_rx_intr_disable,
550         .is_removed = mlx5_is_removed,
551 };
552
553 /* Available operations from secondary process. */
554 static const struct eth_dev_ops mlx5_dev_sec_ops = {
555         .stats_get = mlx5_stats_get,
556         .stats_reset = mlx5_stats_reset,
557         .xstats_get = mlx5_xstats_get,
558         .xstats_reset = mlx5_xstats_reset,
559         .xstats_get_names = mlx5_xstats_get_names,
560         .fw_version_get = mlx5_fw_version_get,
561         .dev_infos_get = mlx5_dev_infos_get,
562         .rx_descriptor_status = mlx5_rx_descriptor_status,
563         .tx_descriptor_status = mlx5_tx_descriptor_status,
564 };
565
566 /* Available operations in flow isolated mode. */
567 const struct eth_dev_ops mlx5_dev_ops_isolate = {
568         .dev_configure = mlx5_dev_configure,
569         .dev_start = mlx5_dev_start,
570         .dev_stop = mlx5_dev_stop,
571         .dev_set_link_down = mlx5_set_link_down,
572         .dev_set_link_up = mlx5_set_link_up,
573         .dev_close = mlx5_dev_close,
574         .promiscuous_enable = mlx5_promiscuous_enable,
575         .promiscuous_disable = mlx5_promiscuous_disable,
576         .allmulticast_enable = mlx5_allmulticast_enable,
577         .allmulticast_disable = mlx5_allmulticast_disable,
578         .link_update = mlx5_link_update,
579         .stats_get = mlx5_stats_get,
580         .stats_reset = mlx5_stats_reset,
581         .xstats_get = mlx5_xstats_get,
582         .xstats_reset = mlx5_xstats_reset,
583         .xstats_get_names = mlx5_xstats_get_names,
584         .fw_version_get = mlx5_fw_version_get,
585         .dev_infos_get = mlx5_dev_infos_get,
586         .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
587         .vlan_filter_set = mlx5_vlan_filter_set,
588         .rx_queue_setup = mlx5_rx_queue_setup,
589         .tx_queue_setup = mlx5_tx_queue_setup,
590         .rx_queue_release = mlx5_rx_queue_release,
591         .tx_queue_release = mlx5_tx_queue_release,
592         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
593         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
594         .mac_addr_remove = mlx5_mac_addr_remove,
595         .mac_addr_add = mlx5_mac_addr_add,
596         .mac_addr_set = mlx5_mac_addr_set,
597         .set_mc_addr_list = mlx5_set_mc_addr_list,
598         .mtu_set = mlx5_dev_set_mtu,
599         .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
600         .vlan_offload_set = mlx5_vlan_offload_set,
601         .filter_ctrl = mlx5_dev_filter_ctrl,
602         .rx_descriptor_status = mlx5_rx_descriptor_status,
603         .tx_descriptor_status = mlx5_tx_descriptor_status,
604         .rx_queue_intr_enable = mlx5_rx_intr_enable,
605         .rx_queue_intr_disable = mlx5_rx_intr_disable,
606         .is_removed = mlx5_is_removed,
607 };
608
609 /**
610  * Verify and store value for device argument.
611  *
612  * @param[in] key
613  *   Key argument to verify.
614  * @param[in] val
615  *   Value associated with key.
616  * @param opaque
617  *   User data.
618  *
619  * @return
620  *   0 on success, a negative errno value otherwise and rte_errno is set.
621  */
622 static int
623 mlx5_args_check(const char *key, const char *val, void *opaque)
624 {
625         struct mlx5_dev_config *config = opaque;
626         unsigned long tmp;
627
628         /* No-op, port representors are processed in mlx5_dev_spawn(). */
629         if (!strcmp(MLX5_REPRESENTOR, key))
630                 return 0;
631         errno = 0;
632         tmp = strtoul(val, NULL, 0);
633         if (errno) {
634                 rte_errno = errno;
635                 DRV_LOG(WARNING, "%s: \"%s\" is not a valid integer", key, val);
636                 return -rte_errno;
637         }
638         if (strcmp(MLX5_RXQ_CQE_COMP_EN, key) == 0) {
639                 config->cqe_comp = !!tmp;
640         } else if (strcmp(MLX5_RXQ_CQE_PAD_EN, key) == 0) {
641                 config->cqe_pad = !!tmp;
642         } else if (strcmp(MLX5_RXQ_PKT_PAD_EN, key) == 0) {
643                 config->hw_padding = !!tmp;
644         } else if (strcmp(MLX5_RX_MPRQ_EN, key) == 0) {
645                 config->mprq.enabled = !!tmp;
646         } else if (strcmp(MLX5_RX_MPRQ_LOG_STRIDE_NUM, key) == 0) {
647                 config->mprq.stride_num_n = tmp;
648         } else if (strcmp(MLX5_RX_MPRQ_MAX_MEMCPY_LEN, key) == 0) {
649                 config->mprq.max_memcpy_len = tmp;
650         } else if (strcmp(MLX5_RXQS_MIN_MPRQ, key) == 0) {
651                 config->mprq.min_rxqs_num = tmp;
652         } else if (strcmp(MLX5_TXQ_INLINE, key) == 0) {
653                 config->txq_inline = tmp;
654         } else if (strcmp(MLX5_TXQS_MIN_INLINE, key) == 0) {
655                 config->txqs_inline = tmp;
656         } else if (strcmp(MLX5_TXQS_MAX_VEC, key) == 0) {
657                 config->txqs_vec = tmp;
658         } else if (strcmp(MLX5_TXQ_MPW_EN, key) == 0) {
659                 config->mps = !!tmp;
660         } else if (strcmp(MLX5_TXQ_MPW_HDR_DSEG_EN, key) == 0) {
661                 config->mpw_hdr_dseg = !!tmp;
662         } else if (strcmp(MLX5_TXQ_MAX_INLINE_LEN, key) == 0) {
663                 config->inline_max_packet_sz = tmp;
664         } else if (strcmp(MLX5_TX_VEC_EN, key) == 0) {
665                 config->tx_vec_en = !!tmp;
666         } else if (strcmp(MLX5_RX_VEC_EN, key) == 0) {
667                 config->rx_vec_en = !!tmp;
668         } else if (strcmp(MLX5_L3_VXLAN_EN, key) == 0) {
669                 config->l3_vxlan_en = !!tmp;
670         } else if (strcmp(MLX5_VF_NL_EN, key) == 0) {
671                 config->vf_nl_en = !!tmp;
672         } else if (strcmp(MLX5_DV_FLOW_EN, key) == 0) {
673                 config->dv_flow_en = !!tmp;
674         } else {
675                 DRV_LOG(WARNING, "%s: unknown parameter", key);
676                 rte_errno = EINVAL;
677                 return -rte_errno;
678         }
679         return 0;
680 }
681
682 /**
683  * Parse device parameters.
684  *
685  * @param config
686  *   Pointer to device configuration structure.
687  * @param devargs
688  *   Device arguments structure.
689  *
690  * @return
691  *   0 on success, a negative errno value otherwise and rte_errno is set.
692  */
693 static int
694 mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs)
695 {
696         const char **params = (const char *[]){
697                 MLX5_RXQ_CQE_COMP_EN,
698                 MLX5_RXQ_CQE_PAD_EN,
699                 MLX5_RXQ_PKT_PAD_EN,
700                 MLX5_RX_MPRQ_EN,
701                 MLX5_RX_MPRQ_LOG_STRIDE_NUM,
702                 MLX5_RX_MPRQ_MAX_MEMCPY_LEN,
703                 MLX5_RXQS_MIN_MPRQ,
704                 MLX5_TXQ_INLINE,
705                 MLX5_TXQS_MIN_INLINE,
706                 MLX5_TXQS_MAX_VEC,
707                 MLX5_TXQ_MPW_EN,
708                 MLX5_TXQ_MPW_HDR_DSEG_EN,
709                 MLX5_TXQ_MAX_INLINE_LEN,
710                 MLX5_TX_VEC_EN,
711                 MLX5_RX_VEC_EN,
712                 MLX5_L3_VXLAN_EN,
713                 MLX5_VF_NL_EN,
714                 MLX5_DV_FLOW_EN,
715                 MLX5_REPRESENTOR,
716                 NULL,
717         };
718         struct rte_kvargs *kvlist;
719         int ret = 0;
720         int i;
721
722         if (devargs == NULL)
723                 return 0;
724         /* Following UGLY cast is done to pass checkpatch. */
725         kvlist = rte_kvargs_parse(devargs->args, params);
726         if (kvlist == NULL)
727                 return 0;
728         /* Process parameters. */
729         for (i = 0; (params[i] != NULL); ++i) {
730                 if (rte_kvargs_count(kvlist, params[i])) {
731                         ret = rte_kvargs_process(kvlist, params[i],
732                                                  mlx5_args_check, config);
733                         if (ret) {
734                                 rte_errno = EINVAL;
735                                 rte_kvargs_free(kvlist);
736                                 return -rte_errno;
737                         }
738                 }
739         }
740         rte_kvargs_free(kvlist);
741         return 0;
742 }
743
744 static struct rte_pci_driver mlx5_driver;
745
746 /*
747  * Reserved UAR address space for TXQ UAR(hw doorbell) mapping, process
748  * local resource used by both primary and secondary to avoid duplicate
749  * reservation.
750  * The space has to be available on both primary and secondary process,
751  * TXQ UAR maps to this area using fixed mmap w/o double check.
752  */
753 static void *uar_base;
754
755 static int
756 find_lower_va_bound(const struct rte_memseg_list *msl,
757                 const struct rte_memseg *ms, void *arg)
758 {
759         void **addr = arg;
760
761         if (msl->external)
762                 return 0;
763         if (*addr == NULL)
764                 *addr = ms->addr;
765         else
766                 *addr = RTE_MIN(*addr, ms->addr);
767
768         return 0;
769 }
770
771 /**
772  * Reserve UAR address space for primary process.
773  *
774  * @param[in] dev
775  *   Pointer to Ethernet device.
776  *
777  * @return
778  *   0 on success, a negative errno value otherwise and rte_errno is set.
779  */
780 static int
781 mlx5_uar_init_primary(struct rte_eth_dev *dev)
782 {
783         struct mlx5_priv *priv = dev->data->dev_private;
784         void *addr = (void *)0;
785
786         if (uar_base) { /* UAR address space mapped. */
787                 priv->uar_base = uar_base;
788                 return 0;
789         }
790         /* find out lower bound of hugepage segments */
791         rte_memseg_walk(find_lower_va_bound, &addr);
792
793         /* keep distance to hugepages to minimize potential conflicts. */
794         addr = RTE_PTR_SUB(addr, (uintptr_t)(MLX5_UAR_OFFSET + MLX5_UAR_SIZE));
795         /* anonymous mmap, no real memory consumption. */
796         addr = mmap(addr, MLX5_UAR_SIZE,
797                     PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
798         if (addr == MAP_FAILED) {
799                 DRV_LOG(ERR,
800                         "port %u failed to reserve UAR address space, please"
801                         " adjust MLX5_UAR_SIZE or try --base-virtaddr",
802                         dev->data->port_id);
803                 rte_errno = ENOMEM;
804                 return -rte_errno;
805         }
806         /* Accept either same addr or a new addr returned from mmap if target
807          * range occupied.
808          */
809         DRV_LOG(INFO, "port %u reserved UAR address space: %p",
810                 dev->data->port_id, addr);
811         priv->uar_base = addr; /* for primary and secondary UAR re-mmap. */
812         uar_base = addr; /* process local, don't reserve again. */
813         return 0;
814 }
815
816 /**
817  * Reserve UAR address space for secondary process, align with
818  * primary process.
819  *
820  * @param[in] dev
821  *   Pointer to Ethernet device.
822  *
823  * @return
824  *   0 on success, a negative errno value otherwise and rte_errno is set.
825  */
826 static int
827 mlx5_uar_init_secondary(struct rte_eth_dev *dev)
828 {
829         struct mlx5_priv *priv = dev->data->dev_private;
830         void *addr;
831
832         assert(priv->uar_base);
833         if (uar_base) { /* already reserved. */
834                 assert(uar_base == priv->uar_base);
835                 return 0;
836         }
837         /* anonymous mmap, no real memory consumption. */
838         addr = mmap(priv->uar_base, MLX5_UAR_SIZE,
839                     PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
840         if (addr == MAP_FAILED) {
841                 DRV_LOG(ERR, "port %u UAR mmap failed: %p size: %llu",
842                         dev->data->port_id, priv->uar_base, MLX5_UAR_SIZE);
843                 rte_errno = ENXIO;
844                 return -rte_errno;
845         }
846         if (priv->uar_base != addr) {
847                 DRV_LOG(ERR,
848                         "port %u UAR address %p size %llu occupied, please"
849                         " adjust MLX5_UAR_OFFSET or try EAL parameter"
850                         " --base-virtaddr",
851                         dev->data->port_id, priv->uar_base, MLX5_UAR_SIZE);
852                 rte_errno = ENXIO;
853                 return -rte_errno;
854         }
855         uar_base = addr; /* process local, don't reserve again */
856         DRV_LOG(INFO, "port %u reserved UAR address space: %p",
857                 dev->data->port_id, addr);
858         return 0;
859 }
860
861 /**
862  * Spawn an Ethernet device from Verbs information.
863  *
864  * @param dpdk_dev
865  *   Backing DPDK device.
866  * @param spawn
867  *   Verbs device parameters (name, port, switch_info) to spawn.
868  * @param config
869  *   Device configuration parameters.
870  *
871  * @return
872  *   A valid Ethernet device object on success, NULL otherwise and rte_errno
873  *   is set. The following errors are defined:
874  *
875  *   EBUSY: device is not supposed to be spawned.
876  *   EEXIST: device is already spawned
877  */
878 static struct rte_eth_dev *
879 mlx5_dev_spawn(struct rte_device *dpdk_dev,
880                struct mlx5_dev_spawn_data *spawn,
881                struct mlx5_dev_config config)
882 {
883         const struct mlx5_switch_info *switch_info = &spawn->info;
884         struct mlx5_ibv_shared *sh = NULL;
885         struct ibv_port_attr port_attr;
886         struct mlx5dv_context dv_attr = { .comp_mask = 0 };
887         struct rte_eth_dev *eth_dev = NULL;
888         struct mlx5_priv *priv = NULL;
889         int err = 0;
890         unsigned int hw_padding = 0;
891         unsigned int mps;
892         unsigned int cqe_comp;
893         unsigned int cqe_pad = 0;
894         unsigned int tunnel_en = 0;
895         unsigned int mpls_en = 0;
896         unsigned int swp = 0;
897         unsigned int mprq = 0;
898         unsigned int mprq_min_stride_size_n = 0;
899         unsigned int mprq_max_stride_size_n = 0;
900         unsigned int mprq_min_stride_num_n = 0;
901         unsigned int mprq_max_stride_num_n = 0;
902         struct ether_addr mac;
903         char name[RTE_ETH_NAME_MAX_LEN];
904         int own_domain_id = 0;
905         uint16_t port_id;
906         unsigned int i;
907
908         /* Determine if this port representor is supposed to be spawned. */
909         if (switch_info->representor && dpdk_dev->devargs) {
910                 struct rte_eth_devargs eth_da;
911
912                 err = rte_eth_devargs_parse(dpdk_dev->devargs->args, &eth_da);
913                 if (err) {
914                         rte_errno = -err;
915                         DRV_LOG(ERR, "failed to process device arguments: %s",
916                                 strerror(rte_errno));
917                         return NULL;
918                 }
919                 for (i = 0; i < eth_da.nb_representor_ports; ++i)
920                         if (eth_da.representor_ports[i] ==
921                             (uint16_t)switch_info->port_name)
922                                 break;
923                 if (i == eth_da.nb_representor_ports) {
924                         rte_errno = EBUSY;
925                         return NULL;
926                 }
927         }
928         /* Build device name. */
929         if (!switch_info->representor)
930                 strlcpy(name, dpdk_dev->name, sizeof(name));
931         else
932                 snprintf(name, sizeof(name), "%s_representor_%u",
933                          dpdk_dev->name, switch_info->port_name);
934         /* check if the device is already spawned */
935         if (rte_eth_dev_get_port_by_name(name, &port_id) == 0) {
936                 rte_errno = EEXIST;
937                 return NULL;
938         }
939         /* Prepare shared data between primary and secondary process. */
940         mlx5_prepare_shared_data();
941         DRV_LOG(DEBUG, "naming Ethernet device \"%s\"", name);
942         if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
943                 eth_dev = rte_eth_dev_attach_secondary(name);
944                 if (eth_dev == NULL) {
945                         DRV_LOG(ERR, "can not attach rte ethdev");
946                         rte_errno = ENOMEM;
947                         return NULL;
948                 }
949                 eth_dev->device = dpdk_dev;
950                 eth_dev->dev_ops = &mlx5_dev_sec_ops;
951                 err = mlx5_uar_init_secondary(eth_dev);
952                 if (err)
953                         return NULL;
954                 /* Receive command fd from primary process */
955                 err = mlx5_socket_connect(eth_dev);
956                 if (err < 0)
957                         return NULL;
958                 /* Remap UAR for Tx queues. */
959                 err = mlx5_tx_uar_remap(eth_dev, err);
960                 if (err)
961                         return NULL;
962                 /*
963                  * Ethdev pointer is still required as input since
964                  * the primary device is not accessible from the
965                  * secondary process.
966                  */
967                 eth_dev->rx_pkt_burst = mlx5_select_rx_function(eth_dev);
968                 eth_dev->tx_pkt_burst = mlx5_select_tx_function(eth_dev);
969                 return eth_dev;
970         }
971         sh = mlx5_alloc_shared_ibctx(spawn);
972         if (!sh)
973                 return NULL;
974         config.devx = sh->devx;
975 #ifdef HAVE_IBV_MLX5_MOD_SWP
976         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_SWP;
977 #endif
978         /*
979          * Multi-packet send is supported by ConnectX-4 Lx PF as well
980          * as all ConnectX-5 devices.
981          */
982 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
983         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS;
984 #endif
985 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
986         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_STRIDING_RQ;
987 #endif
988         mlx5_glue->dv_query_device(sh->ctx, &dv_attr);
989         if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED) {
990                 if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW) {
991                         DRV_LOG(DEBUG, "enhanced MPW is supported");
992                         mps = MLX5_MPW_ENHANCED;
993                 } else {
994                         DRV_LOG(DEBUG, "MPW is supported");
995                         mps = MLX5_MPW;
996                 }
997         } else {
998                 DRV_LOG(DEBUG, "MPW isn't supported");
999                 mps = MLX5_MPW_DISABLED;
1000         }
1001 #ifdef HAVE_IBV_MLX5_MOD_SWP
1002         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_SWP)
1003                 swp = dv_attr.sw_parsing_caps.sw_parsing_offloads;
1004         DRV_LOG(DEBUG, "SWP support: %u", swp);
1005 #endif
1006         config.swp = !!swp;
1007 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
1008         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_STRIDING_RQ) {
1009                 struct mlx5dv_striding_rq_caps mprq_caps =
1010                         dv_attr.striding_rq_caps;
1011
1012                 DRV_LOG(DEBUG, "\tmin_single_stride_log_num_of_bytes: %d",
1013                         mprq_caps.min_single_stride_log_num_of_bytes);
1014                 DRV_LOG(DEBUG, "\tmax_single_stride_log_num_of_bytes: %d",
1015                         mprq_caps.max_single_stride_log_num_of_bytes);
1016                 DRV_LOG(DEBUG, "\tmin_single_wqe_log_num_of_strides: %d",
1017                         mprq_caps.min_single_wqe_log_num_of_strides);
1018                 DRV_LOG(DEBUG, "\tmax_single_wqe_log_num_of_strides: %d",
1019                         mprq_caps.max_single_wqe_log_num_of_strides);
1020                 DRV_LOG(DEBUG, "\tsupported_qpts: %d",
1021                         mprq_caps.supported_qpts);
1022                 DRV_LOG(DEBUG, "device supports Multi-Packet RQ");
1023                 mprq = 1;
1024                 mprq_min_stride_size_n =
1025                         mprq_caps.min_single_stride_log_num_of_bytes;
1026                 mprq_max_stride_size_n =
1027                         mprq_caps.max_single_stride_log_num_of_bytes;
1028                 mprq_min_stride_num_n =
1029                         mprq_caps.min_single_wqe_log_num_of_strides;
1030                 mprq_max_stride_num_n =
1031                         mprq_caps.max_single_wqe_log_num_of_strides;
1032                 config.mprq.stride_num_n = RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
1033                                                    mprq_min_stride_num_n);
1034         }
1035 #endif
1036         if (RTE_CACHE_LINE_SIZE == 128 &&
1037             !(dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP))
1038                 cqe_comp = 0;
1039         else
1040                 cqe_comp = 1;
1041         config.cqe_comp = cqe_comp;
1042 #ifdef HAVE_IBV_MLX5_MOD_CQE_128B_PAD
1043         /* Whether device supports 128B Rx CQE padding. */
1044         cqe_pad = RTE_CACHE_LINE_SIZE == 128 &&
1045                   (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_PAD);
1046 #endif
1047 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
1048         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) {
1049                 tunnel_en = ((dv_attr.tunnel_offloads_caps &
1050                               MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN) &&
1051                              (dv_attr.tunnel_offloads_caps &
1052                               MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE));
1053         }
1054         DRV_LOG(DEBUG, "tunnel offloading is %ssupported",
1055                 tunnel_en ? "" : "not ");
1056 #else
1057         DRV_LOG(WARNING,
1058                 "tunnel offloading disabled due to old OFED/rdma-core version");
1059 #endif
1060         config.tunnel_en = tunnel_en;
1061 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
1062         mpls_en = ((dv_attr.tunnel_offloads_caps &
1063                     MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_GRE) &&
1064                    (dv_attr.tunnel_offloads_caps &
1065                     MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_UDP));
1066         DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is %ssupported",
1067                 mpls_en ? "" : "not ");
1068 #else
1069         DRV_LOG(WARNING, "MPLS over GRE/UDP tunnel offloading disabled due to"
1070                 " old OFED/rdma-core version or firmware configuration");
1071 #endif
1072         config.mpls_en = mpls_en;
1073         /* Check port status. */
1074         err = mlx5_glue->query_port(sh->ctx, spawn->ibv_port, &port_attr);
1075         if (err) {
1076                 DRV_LOG(ERR, "port query failed: %s", strerror(err));
1077                 goto error;
1078         }
1079         if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
1080                 DRV_LOG(ERR, "port is not configured in Ethernet mode");
1081                 err = EINVAL;
1082                 goto error;
1083         }
1084         if (port_attr.state != IBV_PORT_ACTIVE)
1085                 DRV_LOG(DEBUG, "port is not active: \"%s\" (%d)",
1086                         mlx5_glue->port_state_str(port_attr.state),
1087                         port_attr.state);
1088         /* Allocate private eth device data. */
1089         priv = rte_zmalloc("ethdev private structure",
1090                            sizeof(*priv),
1091                            RTE_CACHE_LINE_SIZE);
1092         if (priv == NULL) {
1093                 DRV_LOG(ERR, "priv allocation failure");
1094                 err = ENOMEM;
1095                 goto error;
1096         }
1097         priv->sh = sh;
1098         priv->ctx = sh->ctx;
1099         priv->ibv_port = spawn->ibv_port;
1100         priv->mtu = ETHER_MTU;
1101 #ifndef RTE_ARCH_64
1102         /* Initialize UAR access locks for 32bit implementations. */
1103         rte_spinlock_init(&priv->uar_lock_cq);
1104         for (i = 0; i < MLX5_UAR_PAGE_NUM_MAX; i++)
1105                 rte_spinlock_init(&priv->uar_lock[i]);
1106 #endif
1107         /* Some internal functions rely on Netlink sockets, open them now. */
1108         priv->nl_socket_rdma = mlx5_nl_init(NETLINK_RDMA);
1109         priv->nl_socket_route = mlx5_nl_init(NETLINK_ROUTE);
1110         priv->nl_sn = 0;
1111         priv->representor = !!switch_info->representor;
1112         priv->master = !!switch_info->master;
1113         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
1114         /*
1115          * Currently we support single E-Switch per PF configurations
1116          * only and vport_id field contains the vport index for
1117          * associated VF, which is deduced from representor port name.
1118          * For exapmple, let's have the IB device port 10, it has
1119          * attached network device eth0, which has port name attribute
1120          * pf0vf2, we can deduce the VF number as 2, and set vport index
1121          * as 3 (2+1). This assigning schema should be changed if the
1122          * multiple E-Switch instances per PF configurations or/and PCI
1123          * subfunctions are added.
1124          */
1125         priv->vport_id = switch_info->representor ?
1126                          switch_info->port_name + 1 : -1;
1127         /* representor_id field keeps the unmodified port/VF index. */
1128         priv->representor_id = switch_info->representor ?
1129                                switch_info->port_name : -1;
1130         /*
1131          * Look for sibling devices in order to reuse their switch domain
1132          * if any, otherwise allocate one.
1133          */
1134         i = mlx5_dev_to_port_id(dpdk_dev, NULL, 0);
1135         if (i > 0) {
1136                 uint16_t port_id[i];
1137
1138                 i = RTE_MIN(mlx5_dev_to_port_id(dpdk_dev, port_id, i), i);
1139                 while (i--) {
1140                         const struct mlx5_priv *opriv =
1141                                 rte_eth_devices[port_id[i]].data->dev_private;
1142
1143                         if (!opriv ||
1144                             opriv->domain_id ==
1145                             RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID)
1146                                 continue;
1147                         priv->domain_id = opriv->domain_id;
1148                         break;
1149                 }
1150         }
1151         if (priv->domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
1152                 err = rte_eth_switch_domain_alloc(&priv->domain_id);
1153                 if (err) {
1154                         err = rte_errno;
1155                         DRV_LOG(ERR, "unable to allocate switch domain: %s",
1156                                 strerror(rte_errno));
1157                         goto error;
1158                 }
1159                 own_domain_id = 1;
1160         }
1161         err = mlx5_args(&config, dpdk_dev->devargs);
1162         if (err) {
1163                 err = rte_errno;
1164                 DRV_LOG(ERR, "failed to process device arguments: %s",
1165                         strerror(rte_errno));
1166                 goto error;
1167         }
1168         config.hw_csum = !!(sh->device_attr.device_cap_flags_ex &
1169                             IBV_DEVICE_RAW_IP_CSUM);
1170         DRV_LOG(DEBUG, "checksum offloading is %ssupported",
1171                 (config.hw_csum ? "" : "not "));
1172 #if !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V42) && \
1173         !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V45)
1174         DRV_LOG(DEBUG, "counters are not supported");
1175 #endif
1176 #ifndef HAVE_IBV_FLOW_DV_SUPPORT
1177         if (config.dv_flow_en) {
1178                 DRV_LOG(WARNING, "DV flow is not supported");
1179                 config.dv_flow_en = 0;
1180         }
1181 #endif
1182         config.ind_table_max_size =
1183                 sh->device_attr.rss_caps.max_rwq_indirection_table_size;
1184         /*
1185          * Remove this check once DPDK supports larger/variable
1186          * indirection tables.
1187          */
1188         if (config.ind_table_max_size > (unsigned int)ETH_RSS_RETA_SIZE_512)
1189                 config.ind_table_max_size = ETH_RSS_RETA_SIZE_512;
1190         DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
1191                 config.ind_table_max_size);
1192         config.hw_vlan_strip = !!(sh->device_attr.raw_packet_caps &
1193                                   IBV_RAW_PACKET_CAP_CVLAN_STRIPPING);
1194         DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
1195                 (config.hw_vlan_strip ? "" : "not "));
1196         config.hw_fcs_strip = !!(sh->device_attr.raw_packet_caps &
1197                                  IBV_RAW_PACKET_CAP_SCATTER_FCS);
1198         DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported",
1199                 (config.hw_fcs_strip ? "" : "not "));
1200 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING)
1201         hw_padding = !!sh->device_attr.rx_pad_end_addr_align;
1202 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING)
1203         hw_padding = !!(sh->device_attr.device_cap_flags_ex &
1204                         IBV_DEVICE_PCI_WRITE_END_PADDING);
1205 #endif
1206         if (config.hw_padding && !hw_padding) {
1207                 DRV_LOG(DEBUG, "Rx end alignment padding isn't supported");
1208                 config.hw_padding = 0;
1209         } else if (config.hw_padding) {
1210                 DRV_LOG(DEBUG, "Rx end alignment padding is enabled");
1211         }
1212         config.tso = (sh->device_attr.tso_caps.max_tso > 0 &&
1213                       (sh->device_attr.tso_caps.supported_qpts &
1214                        (1 << IBV_QPT_RAW_PACKET)));
1215         if (config.tso)
1216                 config.tso_max_payload_sz = sh->device_attr.tso_caps.max_tso;
1217         /*
1218          * MPW is disabled by default, while the Enhanced MPW is enabled
1219          * by default.
1220          */
1221         if (config.mps == MLX5_ARG_UNSET)
1222                 config.mps = (mps == MLX5_MPW_ENHANCED) ? MLX5_MPW_ENHANCED :
1223                                                           MLX5_MPW_DISABLED;
1224         else
1225                 config.mps = config.mps ? mps : MLX5_MPW_DISABLED;
1226         DRV_LOG(INFO, "%sMPS is %s",
1227                 config.mps == MLX5_MPW_ENHANCED ? "enhanced " : "",
1228                 config.mps != MLX5_MPW_DISABLED ? "enabled" : "disabled");
1229         if (config.cqe_comp && !cqe_comp) {
1230                 DRV_LOG(WARNING, "Rx CQE compression isn't supported");
1231                 config.cqe_comp = 0;
1232         }
1233         if (config.cqe_pad && !cqe_pad) {
1234                 DRV_LOG(WARNING, "Rx CQE padding isn't supported");
1235                 config.cqe_pad = 0;
1236         } else if (config.cqe_pad) {
1237                 DRV_LOG(INFO, "Rx CQE padding is enabled");
1238         }
1239         if (config.mprq.enabled && mprq) {
1240                 if (config.mprq.stride_num_n > mprq_max_stride_num_n ||
1241                     config.mprq.stride_num_n < mprq_min_stride_num_n) {
1242                         config.mprq.stride_num_n =
1243                                 RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
1244                                         mprq_min_stride_num_n);
1245                         DRV_LOG(WARNING,
1246                                 "the number of strides"
1247                                 " for Multi-Packet RQ is out of range,"
1248                                 " setting default value (%u)",
1249                                 1 << config.mprq.stride_num_n);
1250                 }
1251                 config.mprq.min_stride_size_n = mprq_min_stride_size_n;
1252                 config.mprq.max_stride_size_n = mprq_max_stride_size_n;
1253         } else if (config.mprq.enabled && !mprq) {
1254                 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
1255                 config.mprq.enabled = 0;
1256         }
1257         eth_dev = rte_eth_dev_allocate(name);
1258         if (eth_dev == NULL) {
1259                 DRV_LOG(ERR, "can not allocate rte ethdev");
1260                 err = ENOMEM;
1261                 goto error;
1262         }
1263         /* Flag to call rte_eth_dev_release_port() in rte_eth_dev_close(). */
1264         eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
1265         if (priv->representor) {
1266                 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
1267                 eth_dev->data->representor_id = priv->representor_id;
1268         }
1269         eth_dev->data->dev_private = priv;
1270         priv->dev_data = eth_dev->data;
1271         eth_dev->data->mac_addrs = priv->mac;
1272         eth_dev->device = dpdk_dev;
1273         err = mlx5_uar_init_primary(eth_dev);
1274         if (err) {
1275                 err = rte_errno;
1276                 goto error;
1277         }
1278         /* Configure the first MAC address by default. */
1279         if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
1280                 DRV_LOG(ERR,
1281                         "port %u cannot get MAC address, is mlx5_en"
1282                         " loaded? (errno: %s)",
1283                         eth_dev->data->port_id, strerror(rte_errno));
1284                 err = ENODEV;
1285                 goto error;
1286         }
1287         DRV_LOG(INFO,
1288                 "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
1289                 eth_dev->data->port_id,
1290                 mac.addr_bytes[0], mac.addr_bytes[1],
1291                 mac.addr_bytes[2], mac.addr_bytes[3],
1292                 mac.addr_bytes[4], mac.addr_bytes[5]);
1293 #ifndef NDEBUG
1294         {
1295                 char ifname[IF_NAMESIZE];
1296
1297                 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
1298                         DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
1299                                 eth_dev->data->port_id, ifname);
1300                 else
1301                         DRV_LOG(DEBUG, "port %u ifname is unknown",
1302                                 eth_dev->data->port_id);
1303         }
1304 #endif
1305         /* Get actual MTU if possible. */
1306         err = mlx5_get_mtu(eth_dev, &priv->mtu);
1307         if (err) {
1308                 err = rte_errno;
1309                 goto error;
1310         }
1311         DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id,
1312                 priv->mtu);
1313         /* Initialize burst functions to prevent crashes before link-up. */
1314         eth_dev->rx_pkt_burst = removed_rx_burst;
1315         eth_dev->tx_pkt_burst = removed_tx_burst;
1316         eth_dev->dev_ops = &mlx5_dev_ops;
1317         /* Register MAC address. */
1318         claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
1319         if (config.vf && config.vf_nl_en)
1320                 mlx5_nl_mac_addr_sync(eth_dev);
1321         priv->tcf_context = mlx5_flow_tcf_context_create();
1322         if (!priv->tcf_context) {
1323                 err = -rte_errno;
1324                 DRV_LOG(WARNING,
1325                         "flow rules relying on switch offloads will not be"
1326                         " supported: cannot open libmnl socket: %s",
1327                         strerror(rte_errno));
1328         } else {
1329                 struct rte_flow_error error;
1330                 unsigned int ifindex = mlx5_ifindex(eth_dev);
1331
1332                 if (!ifindex) {
1333                         err = -rte_errno;
1334                         error.message =
1335                                 "cannot retrieve network interface index";
1336                 } else {
1337                         err = mlx5_flow_tcf_init(priv->tcf_context,
1338                                                  ifindex, &error);
1339                 }
1340                 if (err) {
1341                         DRV_LOG(WARNING,
1342                                 "flow rules relying on switch offloads will"
1343                                 " not be supported: %s: %s",
1344                                 error.message, strerror(rte_errno));
1345                         mlx5_flow_tcf_context_destroy(priv->tcf_context);
1346                         priv->tcf_context = NULL;
1347                 }
1348         }
1349         TAILQ_INIT(&priv->flows);
1350         TAILQ_INIT(&priv->ctrl_flows);
1351         /* Hint libmlx5 to use PMD allocator for data plane resources */
1352         struct mlx5dv_ctx_allocators alctr = {
1353                 .alloc = &mlx5_alloc_verbs_buf,
1354                 .free = &mlx5_free_verbs_buf,
1355                 .data = priv,
1356         };
1357         mlx5_glue->dv_set_context_attr(sh->ctx,
1358                                        MLX5DV_CTX_ATTR_BUF_ALLOCATORS,
1359                                        (void *)((uintptr_t)&alctr));
1360         /* Bring Ethernet device up. */
1361         DRV_LOG(DEBUG, "port %u forcing Ethernet interface up",
1362                 eth_dev->data->port_id);
1363         mlx5_set_link_up(eth_dev);
1364         /*
1365          * Even though the interrupt handler is not installed yet,
1366          * interrupts will still trigger on the asyn_fd from
1367          * Verbs context returned by ibv_open_device().
1368          */
1369         mlx5_link_update(eth_dev, 0);
1370         /* Store device configuration on private structure. */
1371         priv->config = config;
1372         /* Supported Verbs flow priority number detection. */
1373         err = mlx5_flow_discover_priorities(eth_dev);
1374         if (err < 0) {
1375                 err = -err;
1376                 goto error;
1377         }
1378         priv->config.flow_prio = err;
1379         /*
1380          * Once the device is added to the list of memory event
1381          * callback, its global MR cache table cannot be expanded
1382          * on the fly because of deadlock. If it overflows, lookup
1383          * should be done by searching MR list linearly, which is slow.
1384          */
1385         err = mlx5_mr_btree_init(&priv->mr.cache,
1386                                  MLX5_MR_BTREE_CACHE_N * 2,
1387                                  eth_dev->device->numa_node);
1388         if (err) {
1389                 err = rte_errno;
1390                 goto error;
1391         }
1392         /* Add device to memory callback list. */
1393         rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
1394         LIST_INSERT_HEAD(&mlx5_shared_data->mem_event_cb_list,
1395                          priv, mem_event_cb);
1396         rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
1397         return eth_dev;
1398 error:
1399         if (priv) {
1400                 if (priv->nl_socket_route >= 0)
1401                         close(priv->nl_socket_route);
1402                 if (priv->nl_socket_rdma >= 0)
1403                         close(priv->nl_socket_rdma);
1404                 if (priv->tcf_context)
1405                         mlx5_flow_tcf_context_destroy(priv->tcf_context);
1406                 if (own_domain_id)
1407                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
1408                 rte_free(priv);
1409                 if (eth_dev != NULL)
1410                         eth_dev->data->dev_private = NULL;
1411         }
1412         if (eth_dev != NULL) {
1413                 /* mac_addrs must not be freed alone because part of dev_private */
1414                 eth_dev->data->mac_addrs = NULL;
1415                 rte_eth_dev_release_port(eth_dev);
1416         }
1417         if (sh)
1418                 mlx5_free_shared_ibctx(sh);
1419         assert(err > 0);
1420         rte_errno = err;
1421         return NULL;
1422 }
1423
1424 /**
1425  * Comparison callback to sort device data.
1426  *
1427  * This is meant to be used with qsort().
1428  *
1429  * @param a[in]
1430  *   Pointer to pointer to first data object.
1431  * @param b[in]
1432  *   Pointer to pointer to second data object.
1433  *
1434  * @return
1435  *   0 if both objects are equal, less than 0 if the first argument is less
1436  *   than the second, greater than 0 otherwise.
1437  */
1438 static int
1439 mlx5_dev_spawn_data_cmp(const void *a, const void *b)
1440 {
1441         const struct mlx5_switch_info *si_a =
1442                 &((const struct mlx5_dev_spawn_data *)a)->info;
1443         const struct mlx5_switch_info *si_b =
1444                 &((const struct mlx5_dev_spawn_data *)b)->info;
1445         int ret;
1446
1447         /* Master device first. */
1448         ret = si_b->master - si_a->master;
1449         if (ret)
1450                 return ret;
1451         /* Then representor devices. */
1452         ret = si_b->representor - si_a->representor;
1453         if (ret)
1454                 return ret;
1455         /* Unidentified devices come last in no specific order. */
1456         if (!si_a->representor)
1457                 return 0;
1458         /* Order representors by name. */
1459         return si_a->port_name - si_b->port_name;
1460 }
1461
1462 /**
1463  * DPDK callback to register a PCI device.
1464  *
1465  * This function spawns Ethernet devices out of a given PCI device.
1466  *
1467  * @param[in] pci_drv
1468  *   PCI driver structure (mlx5_driver).
1469  * @param[in] pci_dev
1470  *   PCI device information.
1471  *
1472  * @return
1473  *   0 on success, a negative errno value otherwise and rte_errno is set.
1474  */
1475 static int
1476 mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1477                struct rte_pci_device *pci_dev)
1478 {
1479         struct ibv_device **ibv_list;
1480         /*
1481          * Number of found IB Devices matching with requested PCI BDF.
1482          * nd != 1 means there are multiple IB devices over the same
1483          * PCI device and we have representors and master.
1484          */
1485         unsigned int nd = 0;
1486         /*
1487          * Number of found IB device Ports. nd = 1 and np = 1..n means
1488          * we have the single multiport IB device, and there may be
1489          * representors attached to some of found ports.
1490          */
1491         unsigned int np = 0;
1492         /*
1493          * Number of DPDK ethernet devices to Spawn - either over
1494          * multiple IB devices or multiple ports of single IB device.
1495          * Actually this is the number of iterations to spawn.
1496          */
1497         unsigned int ns = 0;
1498         struct mlx5_dev_config dev_config;
1499         int ret;
1500
1501         assert(pci_drv == &mlx5_driver);
1502         errno = 0;
1503         ibv_list = mlx5_glue->get_device_list(&ret);
1504         if (!ibv_list) {
1505                 rte_errno = errno ? errno : ENOSYS;
1506                 DRV_LOG(ERR, "cannot list devices, is ib_uverbs loaded?");
1507                 return -rte_errno;
1508         }
1509         /*
1510          * First scan the list of all Infiniband devices to find
1511          * matching ones, gathering into the list.
1512          */
1513         struct ibv_device *ibv_match[ret + 1];
1514         int nl_route = -1;
1515         int nl_rdma = -1;
1516         unsigned int i;
1517
1518         while (ret-- > 0) {
1519                 struct rte_pci_addr pci_addr;
1520
1521                 DRV_LOG(DEBUG, "checking device \"%s\"", ibv_list[ret]->name);
1522                 if (mlx5_ibv_device_to_pci_addr(ibv_list[ret], &pci_addr))
1523                         continue;
1524                 if (pci_dev->addr.domain != pci_addr.domain ||
1525                     pci_dev->addr.bus != pci_addr.bus ||
1526                     pci_dev->addr.devid != pci_addr.devid ||
1527                     pci_dev->addr.function != pci_addr.function)
1528                         continue;
1529                 DRV_LOG(INFO, "PCI information matches for device \"%s\"",
1530                         ibv_list[ret]->name);
1531                 ibv_match[nd++] = ibv_list[ret];
1532         }
1533         ibv_match[nd] = NULL;
1534         if (!nd) {
1535                 /* No device macthes, just complain and bail out. */
1536                 mlx5_glue->free_device_list(ibv_list);
1537                 DRV_LOG(WARNING,
1538                         "no Verbs device matches PCI device " PCI_PRI_FMT ","
1539                         " are kernel drivers loaded?",
1540                         pci_dev->addr.domain, pci_dev->addr.bus,
1541                         pci_dev->addr.devid, pci_dev->addr.function);
1542                 rte_errno = ENOENT;
1543                 ret = -rte_errno;
1544                 return ret;
1545         }
1546         nl_route = mlx5_nl_init(NETLINK_ROUTE);
1547         nl_rdma = mlx5_nl_init(NETLINK_RDMA);
1548         if (nd == 1) {
1549                 /*
1550                  * Found single matching device may have multiple ports.
1551                  * Each port may be representor, we have to check the port
1552                  * number and check the representors existence.
1553                  */
1554                 if (nl_rdma >= 0)
1555                         np = mlx5_nl_portnum(nl_rdma, ibv_match[0]->name);
1556                 if (!np)
1557                         DRV_LOG(WARNING, "can not get IB device \"%s\""
1558                                          " ports number", ibv_match[0]->name);
1559         }
1560         /*
1561          * Now we can determine the maximal
1562          * amount of devices to be spawned.
1563          */
1564         struct mlx5_dev_spawn_data list[np ? np : nd];
1565
1566         if (np > 1) {
1567                 /*
1568                  * Signle IB device with multiple ports found,
1569                  * it may be E-Switch master device and representors.
1570                  * We have to perform identification trough the ports.
1571                  */
1572                 assert(nl_rdma >= 0);
1573                 assert(ns == 0);
1574                 assert(nd == 1);
1575                 for (i = 1; i <= np; ++i) {
1576                         list[ns].max_port = np;
1577                         list[ns].ibv_port = i;
1578                         list[ns].ibv_dev = ibv_match[0];
1579                         list[ns].eth_dev = NULL;
1580                         list[ns].ifindex = mlx5_nl_ifindex
1581                                         (nl_rdma, list[ns].ibv_dev->name, i);
1582                         if (!list[ns].ifindex) {
1583                                 /*
1584                                  * No network interface index found for the
1585                                  * specified port, it means there is no
1586                                  * representor on this port. It's OK,
1587                                  * there can be disabled ports, for example
1588                                  * if sriov_numvfs < sriov_totalvfs.
1589                                  */
1590                                 continue;
1591                         }
1592                         ret = -1;
1593                         if (nl_route >= 0)
1594                                 ret = mlx5_nl_switch_info
1595                                                (nl_route,
1596                                                 list[ns].ifindex,
1597                                                 &list[ns].info);
1598                         if (ret || (!list[ns].info.representor &&
1599                                     !list[ns].info.master)) {
1600                                 /*
1601                                  * We failed to recognize representors with
1602                                  * Netlink, let's try to perform the task
1603                                  * with sysfs.
1604                                  */
1605                                 ret =  mlx5_sysfs_switch_info
1606                                                 (list[ns].ifindex,
1607                                                  &list[ns].info);
1608                         }
1609                         if (!ret && (list[ns].info.representor ^
1610                                      list[ns].info.master))
1611                                 ns++;
1612                 }
1613                 if (!ns) {
1614                         DRV_LOG(ERR,
1615                                 "unable to recognize master/representors"
1616                                 " on the IB device with multiple ports");
1617                         rte_errno = ENOENT;
1618                         ret = -rte_errno;
1619                         goto exit;
1620                 }
1621         } else {
1622                 /*
1623                  * The existence of several matching entries (nd > 1) means
1624                  * port representors have been instantiated. No existing Verbs
1625                  * call nor sysfs entries can tell them apart, this can only
1626                  * be done through Netlink calls assuming kernel drivers are
1627                  * recent enough to support them.
1628                  *
1629                  * In the event of identification failure through Netlink,
1630                  * try again through sysfs, then:
1631                  *
1632                  * 1. A single IB device matches (nd == 1) with single
1633                  *    port (np=0/1) and is not a representor, assume
1634                  *    no switch support.
1635                  *
1636                  * 2. Otherwise no safe assumptions can be made;
1637                  *    complain louder and bail out.
1638                  */
1639                 np = 1;
1640                 for (i = 0; i != nd; ++i) {
1641                         memset(&list[ns].info, 0, sizeof(list[ns].info));
1642                         list[ns].max_port = 1;
1643                         list[ns].ibv_port = 1;
1644                         list[ns].ibv_dev = ibv_match[i];
1645                         list[ns].eth_dev = NULL;
1646                         list[ns].ifindex = 0;
1647                         if (nl_rdma >= 0)
1648                                 list[ns].ifindex = mlx5_nl_ifindex
1649                                         (nl_rdma, list[ns].ibv_dev->name, 1);
1650                         if (!list[ns].ifindex) {
1651                                 /*
1652                                  * No network interface index found for the
1653                                  * specified device, it means there it is not
1654                                  * a representor/master.
1655                                  */
1656                                 continue;
1657                         }
1658                         ret = -1;
1659                         if (nl_route >= 0)
1660                                 ret = mlx5_nl_switch_info
1661                                                (nl_route,
1662                                                 list[ns].ifindex,
1663                                                 &list[ns].info);
1664                         if (ret || (!list[ns].info.representor &&
1665                                     !list[ns].info.master)) {
1666                                 /*
1667                                  * We failed to recognize representors with
1668                                  * Netlink, let's try to perform the task
1669                                  * with sysfs.
1670                                  */
1671                                 ret =  mlx5_sysfs_switch_info
1672                                                 (list[ns].ifindex,
1673                                                  &list[ns].info);
1674                         }
1675                         if (!ret && (list[ns].info.representor ^
1676                                      list[ns].info.master)) {
1677                                 ns++;
1678                         } else if ((nd == 1) &&
1679                                    !list[ns].info.representor &&
1680                                    !list[ns].info.master) {
1681                                 /*
1682                                  * Single IB device with
1683                                  * one physical port and
1684                                  * attached network device.
1685                                  * May be SRIOV is not enabled
1686                                  * or there is no representors.
1687                                  */
1688                                 DRV_LOG(INFO, "no E-Switch support detected");
1689                                 ns++;
1690                                 break;
1691                         }
1692                 }
1693                 if (!ns) {
1694                         DRV_LOG(ERR,
1695                                 "unable to recognize master/representors"
1696                                 " on the multiple IB devices");
1697                         rte_errno = ENOENT;
1698                         ret = -rte_errno;
1699                         goto exit;
1700                 }
1701         }
1702         assert(ns);
1703         /*
1704          * Sort list to probe devices in natural order for users convenience
1705          * (i.e. master first, then representors from lowest to highest ID).
1706          */
1707         qsort(list, ns, sizeof(*list), mlx5_dev_spawn_data_cmp);
1708         /* Default configuration. */
1709         dev_config = (struct mlx5_dev_config){
1710                 .hw_padding = 0,
1711                 .mps = MLX5_ARG_UNSET,
1712                 .tx_vec_en = 1,
1713                 .rx_vec_en = 1,
1714                 .txq_inline = MLX5_ARG_UNSET,
1715                 .txqs_inline = MLX5_ARG_UNSET,
1716                 .txqs_vec = MLX5_ARG_UNSET,
1717                 .inline_max_packet_sz = MLX5_ARG_UNSET,
1718                 .vf_nl_en = 1,
1719                 .mprq = {
1720                         .enabled = 0, /* Disabled by default. */
1721                         .stride_num_n = MLX5_MPRQ_STRIDE_NUM_N,
1722                         .max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN,
1723                         .min_rxqs_num = MLX5_MPRQ_MIN_RXQS,
1724                 },
1725         };
1726         /* Device specific configuration. */
1727         switch (pci_dev->id.device_id) {
1728         case PCI_DEVICE_ID_MELLANOX_CONNECTX5BF:
1729                 dev_config.txqs_vec = MLX5_VPMD_MAX_TXQS_BLUEFIELD;
1730                 break;
1731         case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1732         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
1733         case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
1734         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
1735                 dev_config.vf = 1;
1736                 break;
1737         default:
1738                 break;
1739         }
1740         /* Set architecture-dependent default value if unset. */
1741         if (dev_config.txqs_vec == MLX5_ARG_UNSET)
1742                 dev_config.txqs_vec = MLX5_VPMD_MAX_TXQS;
1743         for (i = 0; i != ns; ++i) {
1744                 uint32_t restore;
1745
1746                 list[i].eth_dev = mlx5_dev_spawn(&pci_dev->device,
1747                                                  &list[i],
1748                                                  dev_config);
1749                 if (!list[i].eth_dev) {
1750                         if (rte_errno != EBUSY && rte_errno != EEXIST)
1751                                 break;
1752                         /* Device is disabled or already spawned. Ignore it. */
1753                         continue;
1754                 }
1755                 restore = list[i].eth_dev->data->dev_flags;
1756                 rte_eth_copy_pci_info(list[i].eth_dev, pci_dev);
1757                 /* Restore non-PCI flags cleared by the above call. */
1758                 list[i].eth_dev->data->dev_flags |= restore;
1759                 rte_eth_dev_probing_finish(list[i].eth_dev);
1760         }
1761         if (i != ns) {
1762                 DRV_LOG(ERR,
1763                         "probe of PCI device " PCI_PRI_FMT " aborted after"
1764                         " encountering an error: %s",
1765                         pci_dev->addr.domain, pci_dev->addr.bus,
1766                         pci_dev->addr.devid, pci_dev->addr.function,
1767                         strerror(rte_errno));
1768                 ret = -rte_errno;
1769                 /* Roll back. */
1770                 while (i--) {
1771                         if (!list[i].eth_dev)
1772                                 continue;
1773                         mlx5_dev_close(list[i].eth_dev);
1774                         /* mac_addrs must not be freed because in dev_private */
1775                         list[i].eth_dev->data->mac_addrs = NULL;
1776                         claim_zero(rte_eth_dev_release_port(list[i].eth_dev));
1777                 }
1778                 /* Restore original error. */
1779                 rte_errno = -ret;
1780         } else {
1781                 ret = 0;
1782         }
1783 exit:
1784         /*
1785          * Do the routine cleanup:
1786          * - close opened Netlink sockets
1787          * - free the Infiniband device list
1788          */
1789         if (nl_rdma >= 0)
1790                 close(nl_rdma);
1791         if (nl_route >= 0)
1792                 close(nl_route);
1793         assert(ibv_list);
1794         mlx5_glue->free_device_list(ibv_list);
1795         return ret;
1796 }
1797
1798 /**
1799  * DPDK callback to remove a PCI device.
1800  *
1801  * This function removes all Ethernet devices belong to a given PCI device.
1802  *
1803  * @param[in] pci_dev
1804  *   Pointer to the PCI device.
1805  *
1806  * @return
1807  *   0 on success, the function cannot fail.
1808  */
1809 static int
1810 mlx5_pci_remove(struct rte_pci_device *pci_dev)
1811 {
1812         uint16_t port_id;
1813         struct rte_eth_dev *port;
1814
1815         for (port_id = 0; port_id < RTE_MAX_ETHPORTS; port_id++) {
1816                 port = &rte_eth_devices[port_id];
1817                 if (port->state != RTE_ETH_DEV_UNUSED &&
1818                                 port->device == &pci_dev->device)
1819                         rte_eth_dev_close(port_id);
1820         }
1821         return 0;
1822 }
1823
1824 static const struct rte_pci_id mlx5_pci_id_map[] = {
1825         {
1826                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1827                                PCI_DEVICE_ID_MELLANOX_CONNECTX4)
1828         },
1829         {
1830                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1831                                PCI_DEVICE_ID_MELLANOX_CONNECTX4VF)
1832         },
1833         {
1834                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1835                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LX)
1836         },
1837         {
1838                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1839                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF)
1840         },
1841         {
1842                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1843                                PCI_DEVICE_ID_MELLANOX_CONNECTX5)
1844         },
1845         {
1846                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1847                                PCI_DEVICE_ID_MELLANOX_CONNECTX5VF)
1848         },
1849         {
1850                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1851                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EX)
1852         },
1853         {
1854                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1855                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF)
1856         },
1857         {
1858                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1859                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BF)
1860         },
1861         {
1862                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1863                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF)
1864         },
1865         {
1866                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1867                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6)
1868         },
1869         {
1870                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1871                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6VF)
1872         },
1873         {
1874                 .vendor_id = 0
1875         }
1876 };
1877
1878 static struct rte_pci_driver mlx5_driver = {
1879         .driver = {
1880                 .name = MLX5_DRIVER_NAME
1881         },
1882         .id_table = mlx5_pci_id_map,
1883         .probe = mlx5_pci_probe,
1884         .remove = mlx5_pci_remove,
1885         .dma_map = mlx5_dma_map,
1886         .dma_unmap = mlx5_dma_unmap,
1887         .drv_flags = (RTE_PCI_DRV_INTR_LSC | RTE_PCI_DRV_INTR_RMV |
1888                       RTE_PCI_DRV_PROBE_AGAIN),
1889 };
1890
1891 #ifdef RTE_IBVERBS_LINK_DLOPEN
1892
1893 /**
1894  * Suffix RTE_EAL_PMD_PATH with "-glue".
1895  *
1896  * This function performs a sanity check on RTE_EAL_PMD_PATH before
1897  * suffixing its last component.
1898  *
1899  * @param buf[out]
1900  *   Output buffer, should be large enough otherwise NULL is returned.
1901  * @param size
1902  *   Size of @p out.
1903  *
1904  * @return
1905  *   Pointer to @p buf or @p NULL in case suffix cannot be appended.
1906  */
1907 static char *
1908 mlx5_glue_path(char *buf, size_t size)
1909 {
1910         static const char *const bad[] = { "/", ".", "..", NULL };
1911         const char *path = RTE_EAL_PMD_PATH;
1912         size_t len = strlen(path);
1913         size_t off;
1914         int i;
1915
1916         while (len && path[len - 1] == '/')
1917                 --len;
1918         for (off = len; off && path[off - 1] != '/'; --off)
1919                 ;
1920         for (i = 0; bad[i]; ++i)
1921                 if (!strncmp(path + off, bad[i], (int)(len - off)))
1922                         goto error;
1923         i = snprintf(buf, size, "%.*s-glue", (int)len, path);
1924         if (i == -1 || (size_t)i >= size)
1925                 goto error;
1926         return buf;
1927 error:
1928         DRV_LOG(ERR,
1929                 "unable to append \"-glue\" to last component of"
1930                 " RTE_EAL_PMD_PATH (\"" RTE_EAL_PMD_PATH "\"),"
1931                 " please re-configure DPDK");
1932         return NULL;
1933 }
1934
1935 /**
1936  * Initialization routine for run-time dependency on rdma-core.
1937  */
1938 static int
1939 mlx5_glue_init(void)
1940 {
1941         char glue_path[sizeof(RTE_EAL_PMD_PATH) - 1 + sizeof("-glue")];
1942         const char *path[] = {
1943                 /*
1944                  * A basic security check is necessary before trusting
1945                  * MLX5_GLUE_PATH, which may override RTE_EAL_PMD_PATH.
1946                  */
1947                 (geteuid() == getuid() && getegid() == getgid() ?
1948                  getenv("MLX5_GLUE_PATH") : NULL),
1949                 /*
1950                  * When RTE_EAL_PMD_PATH is set, use its glue-suffixed
1951                  * variant, otherwise let dlopen() look up libraries on its
1952                  * own.
1953                  */
1954                 (*RTE_EAL_PMD_PATH ?
1955                  mlx5_glue_path(glue_path, sizeof(glue_path)) : ""),
1956         };
1957         unsigned int i = 0;
1958         void *handle = NULL;
1959         void **sym;
1960         const char *dlmsg;
1961
1962         while (!handle && i != RTE_DIM(path)) {
1963                 const char *end;
1964                 size_t len;
1965                 int ret;
1966
1967                 if (!path[i]) {
1968                         ++i;
1969                         continue;
1970                 }
1971                 end = strpbrk(path[i], ":;");
1972                 if (!end)
1973                         end = path[i] + strlen(path[i]);
1974                 len = end - path[i];
1975                 ret = 0;
1976                 do {
1977                         char name[ret + 1];
1978
1979                         ret = snprintf(name, sizeof(name), "%.*s%s" MLX5_GLUE,
1980                                        (int)len, path[i],
1981                                        (!len || *(end - 1) == '/') ? "" : "/");
1982                         if (ret == -1)
1983                                 break;
1984                         if (sizeof(name) != (size_t)ret + 1)
1985                                 continue;
1986                         DRV_LOG(DEBUG, "looking for rdma-core glue as \"%s\"",
1987                                 name);
1988                         handle = dlopen(name, RTLD_LAZY);
1989                         break;
1990                 } while (1);
1991                 path[i] = end + 1;
1992                 if (!*end)
1993                         ++i;
1994         }
1995         if (!handle) {
1996                 rte_errno = EINVAL;
1997                 dlmsg = dlerror();
1998                 if (dlmsg)
1999                         DRV_LOG(WARNING, "cannot load glue library: %s", dlmsg);
2000                 goto glue_error;
2001         }
2002         sym = dlsym(handle, "mlx5_glue");
2003         if (!sym || !*sym) {
2004                 rte_errno = EINVAL;
2005                 dlmsg = dlerror();
2006                 if (dlmsg)
2007                         DRV_LOG(ERR, "cannot resolve glue symbol: %s", dlmsg);
2008                 goto glue_error;
2009         }
2010         mlx5_glue = *sym;
2011         return 0;
2012 glue_error:
2013         if (handle)
2014                 dlclose(handle);
2015         DRV_LOG(WARNING,
2016                 "cannot initialize PMD due to missing run-time dependency on"
2017                 " rdma-core libraries (libibverbs, libmlx5)");
2018         return -rte_errno;
2019 }
2020
2021 #endif
2022
2023 /**
2024  * Driver initialization routine.
2025  */
2026 RTE_INIT(rte_mlx5_pmd_init)
2027 {
2028         /* Initialize driver log type. */
2029         mlx5_logtype = rte_log_register("pmd.net.mlx5");
2030         if (mlx5_logtype >= 0)
2031                 rte_log_set_level(mlx5_logtype, RTE_LOG_NOTICE);
2032
2033         /* Build the static tables for Verbs conversion. */
2034         mlx5_set_ptype_table();
2035         mlx5_set_cksum_table();
2036         mlx5_set_swp_types_table();
2037         /*
2038          * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
2039          * huge pages. Calling ibv_fork_init() during init allows
2040          * applications to use fork() safely for purposes other than
2041          * using this PMD, which is not supported in forked processes.
2042          */
2043         setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
2044         /* Match the size of Rx completion entry to the size of a cacheline. */
2045         if (RTE_CACHE_LINE_SIZE == 128)
2046                 setenv("MLX5_CQE_SIZE", "128", 0);
2047         /*
2048          * MLX5_DEVICE_FATAL_CLEANUP tells ibv_destroy functions to
2049          * cleanup all the Verbs resources even when the device was removed.
2050          */
2051         setenv("MLX5_DEVICE_FATAL_CLEANUP", "1", 1);
2052 #ifdef RTE_IBVERBS_LINK_DLOPEN
2053         if (mlx5_glue_init())
2054                 return;
2055         assert(mlx5_glue);
2056 #endif
2057 #ifndef NDEBUG
2058         /* Glue structure must not contain any NULL pointers. */
2059         {
2060                 unsigned int i;
2061
2062                 for (i = 0; i != sizeof(*mlx5_glue) / sizeof(void *); ++i)
2063                         assert(((const void *const *)mlx5_glue)[i]);
2064         }
2065 #endif
2066         if (strcmp(mlx5_glue->version, MLX5_GLUE_VERSION)) {
2067                 DRV_LOG(ERR,
2068                         "rdma-core glue \"%s\" mismatch: \"%s\" is required",
2069                         mlx5_glue->version, MLX5_GLUE_VERSION);
2070                 return;
2071         }
2072         mlx5_glue->fork_init();
2073         rte_pci_register(&mlx5_driver);
2074 }
2075
2076 RTE_PMD_EXPORT_NAME(net_mlx5, __COUNTER__);
2077 RTE_PMD_REGISTER_PCI_TABLE(net_mlx5, mlx5_pci_id_map);
2078 RTE_PMD_REGISTER_KMOD_DEP(net_mlx5, "* ib_uverbs & mlx5_core & mlx5_ib");