New upstream version 17.11.3
[deb_dpdk.git] / drivers / net / mlx4 / mlx4.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2012 6WIND S.A.
5  *   Copyright 2012 Mellanox
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of 6WIND S.A. nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 /**
35  * @file
36  * mlx4 driver initialization.
37  */
38
39 #include <assert.h>
40 #include <errno.h>
41 #include <inttypes.h>
42 #include <stddef.h>
43 #include <stdint.h>
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <string.h>
47
48 /* Verbs headers do not support -pedantic. */
49 #ifdef PEDANTIC
50 #pragma GCC diagnostic ignored "-Wpedantic"
51 #endif
52 #include <infiniband/verbs.h>
53 #ifdef PEDANTIC
54 #pragma GCC diagnostic error "-Wpedantic"
55 #endif
56
57 #include <rte_common.h>
58 #include <rte_dev.h>
59 #include <rte_errno.h>
60 #include <rte_ethdev.h>
61 #include <rte_ethdev_pci.h>
62 #include <rte_ether.h>
63 #include <rte_flow.h>
64 #include <rte_interrupts.h>
65 #include <rte_kvargs.h>
66 #include <rte_malloc.h>
67 #include <rte_mbuf.h>
68
69 #include "mlx4.h"
70 #include "mlx4_flow.h"
71 #include "mlx4_rxtx.h"
72 #include "mlx4_utils.h"
73
74 /** Configuration structure for device arguments. */
75 struct mlx4_conf {
76         struct {
77                 uint32_t present; /**< Bit-field for existing ports. */
78                 uint32_t enabled; /**< Bit-field for user-enabled ports. */
79         } ports;
80 };
81
82 /* Available parameters list. */
83 const char *pmd_mlx4_init_params[] = {
84         MLX4_PMD_PORT_KVARG,
85         NULL,
86 };
87
88 static void mlx4_dev_stop(struct rte_eth_dev *dev);
89
90 /**
91  * DPDK callback for Ethernet device configuration.
92  *
93  * @param dev
94  *   Pointer to Ethernet device structure.
95  *
96  * @return
97  *   0 on success, negative errno value otherwise and rte_errno is set.
98  */
99 static int
100 mlx4_dev_configure(struct rte_eth_dev *dev)
101 {
102         struct priv *priv = dev->data->dev_private;
103         struct rte_flow_error error;
104         int ret;
105
106         /* Prepare internal flow rules. */
107         ret = mlx4_flow_sync(priv, &error);
108         if (ret) {
109                 ERROR("cannot set up internal flow rules (code %d, \"%s\"),"
110                       " flow error type %d, cause %p, message: %s",
111                       -ret, strerror(-ret), error.type, error.cause,
112                       error.message ? error.message : "(unspecified)");
113                 goto exit;
114         }
115         ret = mlx4_intr_install(priv);
116         if (ret)
117                 ERROR("%p: interrupt handler installation failed",
118                       (void *)dev);
119 exit:
120         return ret;
121 }
122
123 /**
124  * DPDK callback to start the device.
125  *
126  * Simulate device start by initializing common RSS resources and attaching
127  * all configured flows.
128  *
129  * @param dev
130  *   Pointer to Ethernet device structure.
131  *
132  * @return
133  *   0 on success, negative errno value otherwise and rte_errno is set.
134  */
135 static int
136 mlx4_dev_start(struct rte_eth_dev *dev)
137 {
138         struct priv *priv = dev->data->dev_private;
139         struct rte_flow_error error;
140         int ret;
141
142         if (priv->started)
143                 return 0;
144         DEBUG("%p: attaching configured flows to all RX queues", (void *)dev);
145         priv->started = 1;
146         ret = mlx4_rss_init(priv);
147         if (ret) {
148                 ERROR("%p: cannot initialize RSS resources: %s",
149                       (void *)dev, strerror(-ret));
150                 goto err;
151         }
152         ret = mlx4_rxq_intr_enable(priv);
153         if (ret) {
154                 ERROR("%p: interrupt handler installation failed",
155                      (void *)dev);
156                 goto err;
157         }
158         ret = mlx4_flow_sync(priv, &error);
159         if (ret) {
160                 ERROR("%p: cannot attach flow rules (code %d, \"%s\"),"
161                       " flow error type %d, cause %p, message: %s",
162                       (void *)dev,
163                       -ret, strerror(-ret), error.type, error.cause,
164                       error.message ? error.message : "(unspecified)");
165                 goto err;
166         }
167         rte_wmb();
168         dev->tx_pkt_burst = mlx4_tx_burst;
169         dev->rx_pkt_burst = mlx4_rx_burst;
170         return 0;
171 err:
172         mlx4_dev_stop(dev);
173         return ret;
174 }
175
176 /**
177  * DPDK callback to stop the device.
178  *
179  * Simulate device stop by detaching all configured flows.
180  *
181  * @param dev
182  *   Pointer to Ethernet device structure.
183  */
184 static void
185 mlx4_dev_stop(struct rte_eth_dev *dev)
186 {
187         struct priv *priv = dev->data->dev_private;
188
189         if (!priv->started)
190                 return;
191         DEBUG("%p: detaching flows from all RX queues", (void *)dev);
192         priv->started = 0;
193         dev->tx_pkt_burst = mlx4_tx_burst_removed;
194         dev->rx_pkt_burst = mlx4_rx_burst_removed;
195         rte_wmb();
196         mlx4_flow_sync(priv, NULL);
197         mlx4_rxq_intr_disable(priv);
198         mlx4_rss_deinit(priv);
199 }
200
201 /**
202  * DPDK callback to close the device.
203  *
204  * Destroy all queues and objects, free memory.
205  *
206  * @param dev
207  *   Pointer to Ethernet device structure.
208  */
209 static void
210 mlx4_dev_close(struct rte_eth_dev *dev)
211 {
212         struct priv *priv = dev->data->dev_private;
213         unsigned int i;
214
215         DEBUG("%p: closing device \"%s\"",
216               (void *)dev,
217               ((priv->ctx != NULL) ? priv->ctx->device->name : ""));
218         dev->rx_pkt_burst = mlx4_rx_burst_removed;
219         dev->tx_pkt_burst = mlx4_tx_burst_removed;
220         rte_wmb();
221         mlx4_flow_clean(priv);
222         mlx4_rss_deinit(priv);
223         for (i = 0; i != dev->data->nb_rx_queues; ++i)
224                 mlx4_rx_queue_release(dev->data->rx_queues[i]);
225         for (i = 0; i != dev->data->nb_tx_queues; ++i)
226                 mlx4_tx_queue_release(dev->data->tx_queues[i]);
227         if (priv->pd != NULL) {
228                 assert(priv->ctx != NULL);
229                 claim_zero(ibv_dealloc_pd(priv->pd));
230                 claim_zero(ibv_close_device(priv->ctx));
231         } else
232                 assert(priv->ctx == NULL);
233         mlx4_intr_uninstall(priv);
234         memset(priv, 0, sizeof(*priv));
235 }
236
237 static const struct eth_dev_ops mlx4_dev_ops = {
238         .dev_configure = mlx4_dev_configure,
239         .dev_start = mlx4_dev_start,
240         .dev_stop = mlx4_dev_stop,
241         .dev_set_link_down = mlx4_dev_set_link_down,
242         .dev_set_link_up = mlx4_dev_set_link_up,
243         .dev_close = mlx4_dev_close,
244         .link_update = mlx4_link_update,
245         .promiscuous_enable = mlx4_promiscuous_enable,
246         .promiscuous_disable = mlx4_promiscuous_disable,
247         .allmulticast_enable = mlx4_allmulticast_enable,
248         .allmulticast_disable = mlx4_allmulticast_disable,
249         .mac_addr_remove = mlx4_mac_addr_remove,
250         .mac_addr_add = mlx4_mac_addr_add,
251         .mac_addr_set = mlx4_mac_addr_set,
252         .stats_get = mlx4_stats_get,
253         .stats_reset = mlx4_stats_reset,
254         .dev_infos_get = mlx4_dev_infos_get,
255         .dev_supported_ptypes_get = mlx4_dev_supported_ptypes_get,
256         .vlan_filter_set = mlx4_vlan_filter_set,
257         .rx_queue_setup = mlx4_rx_queue_setup,
258         .tx_queue_setup = mlx4_tx_queue_setup,
259         .rx_queue_release = mlx4_rx_queue_release,
260         .tx_queue_release = mlx4_tx_queue_release,
261         .flow_ctrl_get = mlx4_flow_ctrl_get,
262         .flow_ctrl_set = mlx4_flow_ctrl_set,
263         .mtu_set = mlx4_mtu_set,
264         .filter_ctrl = mlx4_filter_ctrl,
265         .rx_queue_intr_enable = mlx4_rx_intr_enable,
266         .rx_queue_intr_disable = mlx4_rx_intr_disable,
267 };
268
269 /**
270  * Get PCI information from struct ibv_device.
271  *
272  * @param device
273  *   Pointer to Ethernet device structure.
274  * @param[out] pci_addr
275  *   PCI bus address output buffer.
276  *
277  * @return
278  *   0 on success, negative errno value otherwise and rte_errno is set.
279  */
280 static int
281 mlx4_ibv_device_to_pci_addr(const struct ibv_device *device,
282                             struct rte_pci_addr *pci_addr)
283 {
284         FILE *file;
285         char line[32];
286         MKSTR(path, "%s/device/uevent", device->ibdev_path);
287
288         file = fopen(path, "rb");
289         if (file == NULL) {
290                 rte_errno = errno;
291                 return -rte_errno;
292         }
293         while (fgets(line, sizeof(line), file) == line) {
294                 size_t len = strlen(line);
295                 int ret;
296
297                 /* Truncate long lines. */
298                 if (len == (sizeof(line) - 1))
299                         while (line[(len - 1)] != '\n') {
300                                 ret = fgetc(file);
301                                 if (ret == EOF)
302                                         break;
303                                 line[(len - 1)] = ret;
304                         }
305                 /* Extract information. */
306                 if (sscanf(line,
307                            "PCI_SLOT_NAME="
308                            "%" SCNx32 ":%" SCNx8 ":%" SCNx8 ".%" SCNx8 "\n",
309                            &pci_addr->domain,
310                            &pci_addr->bus,
311                            &pci_addr->devid,
312                            &pci_addr->function) == 4) {
313                         ret = 0;
314                         break;
315                 }
316         }
317         fclose(file);
318         return 0;
319 }
320
321 /**
322  * Verify and store value for device argument.
323  *
324  * @param[in] key
325  *   Key argument to verify.
326  * @param[in] val
327  *   Value associated with key.
328  * @param[in, out] conf
329  *   Shared configuration data.
330  *
331  * @return
332  *   0 on success, negative errno value otherwise and rte_errno is set.
333  */
334 static int
335 mlx4_arg_parse(const char *key, const char *val, struct mlx4_conf *conf)
336 {
337         unsigned long tmp;
338
339         errno = 0;
340         tmp = strtoul(val, NULL, 0);
341         if (errno) {
342                 rte_errno = errno;
343                 WARN("%s: \"%s\" is not a valid integer", key, val);
344                 return -rte_errno;
345         }
346         if (strcmp(MLX4_PMD_PORT_KVARG, key) == 0) {
347                 uint32_t ports = rte_log2_u32(conf->ports.present + 1);
348
349                 if (tmp >= ports) {
350                         ERROR("port index %lu outside range [0,%" PRIu32 ")",
351                               tmp, ports);
352                         return -EINVAL;
353                 }
354                 if (!(conf->ports.present & (1 << tmp))) {
355                         rte_errno = EINVAL;
356                         ERROR("invalid port index %lu", tmp);
357                         return -rte_errno;
358                 }
359                 conf->ports.enabled |= 1 << tmp;
360         } else {
361                 rte_errno = EINVAL;
362                 WARN("%s: unknown parameter", key);
363                 return -rte_errno;
364         }
365         return 0;
366 }
367
368 /**
369  * Parse device parameters.
370  *
371  * @param devargs
372  *   Device arguments structure.
373  *
374  * @return
375  *   0 on success, negative errno value otherwise and rte_errno is set.
376  */
377 static int
378 mlx4_args(struct rte_devargs *devargs, struct mlx4_conf *conf)
379 {
380         struct rte_kvargs *kvlist;
381         unsigned int arg_count;
382         int ret = 0;
383         int i;
384
385         if (devargs == NULL)
386                 return 0;
387         kvlist = rte_kvargs_parse(devargs->args, pmd_mlx4_init_params);
388         if (kvlist == NULL) {
389                 rte_errno = EINVAL;
390                 ERROR("failed to parse kvargs");
391                 return -rte_errno;
392         }
393         /* Process parameters. */
394         for (i = 0; pmd_mlx4_init_params[i]; ++i) {
395                 arg_count = rte_kvargs_count(kvlist, MLX4_PMD_PORT_KVARG);
396                 while (arg_count-- > 0) {
397                         ret = rte_kvargs_process(kvlist,
398                                                  MLX4_PMD_PORT_KVARG,
399                                                  (int (*)(const char *,
400                                                           const char *,
401                                                           void *))
402                                                  mlx4_arg_parse,
403                                                  conf);
404                         if (ret != 0)
405                                 goto free_kvlist;
406                 }
407         }
408 free_kvlist:
409         rte_kvargs_free(kvlist);
410         return ret;
411 }
412
413 static struct rte_pci_driver mlx4_driver;
414
415 /**
416  * DPDK callback to register a PCI device.
417  *
418  * This function creates an Ethernet device for each port of a given
419  * PCI device.
420  *
421  * @param[in] pci_drv
422  *   PCI driver structure (mlx4_driver).
423  * @param[in] pci_dev
424  *   PCI device information.
425  *
426  * @return
427  *   0 on success, negative errno value otherwise and rte_errno is set.
428  */
429 static int
430 mlx4_pci_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
431 {
432         struct ibv_device **list;
433         struct ibv_device *ibv_dev;
434         int err = 0;
435         struct ibv_context *attr_ctx = NULL;
436         struct ibv_device_attr device_attr;
437         struct mlx4_conf conf = {
438                 .ports.present = 0,
439         };
440         unsigned int vf;
441         int i;
442
443         (void)pci_drv;
444         assert(pci_drv == &mlx4_driver);
445         list = ibv_get_device_list(&i);
446         if (list == NULL) {
447                 rte_errno = errno;
448                 assert(rte_errno);
449                 if (rte_errno == ENOSYS)
450                         ERROR("cannot list devices, is ib_uverbs loaded?");
451                 return -rte_errno;
452         }
453         assert(i >= 0);
454         /*
455          * For each listed device, check related sysfs entry against
456          * the provided PCI ID.
457          */
458         while (i != 0) {
459                 struct rte_pci_addr pci_addr;
460
461                 --i;
462                 DEBUG("checking device \"%s\"", list[i]->name);
463                 if (mlx4_ibv_device_to_pci_addr(list[i], &pci_addr))
464                         continue;
465                 if ((pci_dev->addr.domain != pci_addr.domain) ||
466                     (pci_dev->addr.bus != pci_addr.bus) ||
467                     (pci_dev->addr.devid != pci_addr.devid) ||
468                     (pci_dev->addr.function != pci_addr.function))
469                         continue;
470                 vf = (pci_dev->id.device_id ==
471                       PCI_DEVICE_ID_MELLANOX_CONNECTX3VF);
472                 INFO("PCI information matches, using device \"%s\" (VF: %s)",
473                      list[i]->name, (vf ? "true" : "false"));
474                 attr_ctx = ibv_open_device(list[i]);
475                 err = errno;
476                 break;
477         }
478         if (attr_ctx == NULL) {
479                 ibv_free_device_list(list);
480                 switch (err) {
481                 case 0:
482                         rte_errno = ENODEV;
483                         ERROR("cannot access device, is mlx4_ib loaded?");
484                         return -rte_errno;
485                 case EINVAL:
486                         rte_errno = EINVAL;
487                         ERROR("cannot use device, are drivers up to date?");
488                         return -rte_errno;
489                 }
490                 assert(err > 0);
491                 rte_errno = err;
492                 return -rte_errno;
493         }
494         ibv_dev = list[i];
495         DEBUG("device opened");
496         if (ibv_query_device(attr_ctx, &device_attr)) {
497                 rte_errno = ENODEV;
498                 goto error;
499         }
500         INFO("%u port(s) detected", device_attr.phys_port_cnt);
501         conf.ports.present |= (UINT64_C(1) << device_attr.phys_port_cnt) - 1;
502         if (mlx4_args(pci_dev->device.devargs, &conf)) {
503                 ERROR("failed to process device arguments");
504                 rte_errno = EINVAL;
505                 goto error;
506         }
507         /* Use all ports when none are defined */
508         if (!conf.ports.enabled)
509                 conf.ports.enabled = conf.ports.present;
510         for (i = 0; i < device_attr.phys_port_cnt; i++) {
511                 uint32_t port = i + 1; /* ports are indexed from one */
512                 struct ibv_context *ctx = NULL;
513                 struct ibv_port_attr port_attr;
514                 struct ibv_pd *pd = NULL;
515                 struct priv *priv = NULL;
516                 struct rte_eth_dev *eth_dev = NULL;
517                 struct ether_addr mac;
518
519                 /* If port is not enabled, skip. */
520                 if (!(conf.ports.enabled & (1 << i)))
521                         continue;
522                 DEBUG("using port %u", port);
523                 ctx = ibv_open_device(ibv_dev);
524                 if (ctx == NULL) {
525                         rte_errno = ENODEV;
526                         goto port_error;
527                 }
528                 /* Check port status. */
529                 err = ibv_query_port(ctx, port, &port_attr);
530                 if (err) {
531                         rte_errno = err;
532                         ERROR("port query failed: %s", strerror(rte_errno));
533                         goto port_error;
534                 }
535                 if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
536                         rte_errno = ENOTSUP;
537                         ERROR("port %d is not configured in Ethernet mode",
538                               port);
539                         goto port_error;
540                 }
541                 if (port_attr.state != IBV_PORT_ACTIVE)
542                         DEBUG("port %d is not active: \"%s\" (%d)",
543                               port, ibv_port_state_str(port_attr.state),
544                               port_attr.state);
545                 /* Make asynchronous FD non-blocking to handle interrupts. */
546                 if (mlx4_fd_set_non_blocking(ctx->async_fd) < 0) {
547                         ERROR("cannot make asynchronous FD non-blocking: %s",
548                               strerror(rte_errno));
549                         goto port_error;
550                 }
551                 /* Allocate protection domain. */
552                 pd = ibv_alloc_pd(ctx);
553                 if (pd == NULL) {
554                         rte_errno = ENOMEM;
555                         ERROR("PD allocation failure");
556                         goto port_error;
557                 }
558                 /* from rte_ethdev.c */
559                 priv = rte_zmalloc("ethdev private structure",
560                                    sizeof(*priv),
561                                    RTE_CACHE_LINE_SIZE);
562                 if (priv == NULL) {
563                         rte_errno = ENOMEM;
564                         ERROR("priv allocation failure");
565                         goto port_error;
566                 }
567                 priv->ctx = ctx;
568                 priv->device_attr = device_attr;
569                 priv->port = port;
570                 priv->pd = pd;
571                 priv->mtu = ETHER_MTU;
572                 priv->vf = vf;
573                 priv->hw_csum = !!(device_attr.device_cap_flags &
574                                    IBV_DEVICE_RAW_IP_CSUM);
575                 DEBUG("checksum offloading is %ssupported",
576                       (priv->hw_csum ? "" : "not "));
577                 /* Only ConnectX-3 Pro supports tunneling. */
578                 priv->hw_csum_l2tun =
579                         priv->hw_csum &&
580                         (device_attr.vendor_part_id ==
581                          PCI_DEVICE_ID_MELLANOX_CONNECTX3PRO);
582                 DEBUG("L2 tunnel checksum offloads are %ssupported",
583                       (priv->hw_csum_l2tun ? "" : "not "));
584                 /* Configure the first MAC address by default. */
585                 if (mlx4_get_mac(priv, &mac.addr_bytes)) {
586                         ERROR("cannot get MAC address, is mlx4_en loaded?"
587                               " (rte_errno: %s)", strerror(rte_errno));
588                         goto port_error;
589                 }
590                 INFO("port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
591                      priv->port,
592                      mac.addr_bytes[0], mac.addr_bytes[1],
593                      mac.addr_bytes[2], mac.addr_bytes[3],
594                      mac.addr_bytes[4], mac.addr_bytes[5]);
595                 /* Register MAC address. */
596                 priv->mac[0] = mac;
597 #ifndef NDEBUG
598                 {
599                         char ifname[IF_NAMESIZE];
600
601                         if (mlx4_get_ifname(priv, &ifname) == 0)
602                                 DEBUG("port %u ifname is \"%s\"",
603                                       priv->port, ifname);
604                         else
605                                 DEBUG("port %u ifname is unknown", priv->port);
606                 }
607 #endif
608                 /* Get actual MTU if possible. */
609                 mlx4_mtu_get(priv, &priv->mtu);
610                 DEBUG("port %u MTU is %u", priv->port, priv->mtu);
611                 /* from rte_ethdev.c */
612                 {
613                         char name[RTE_ETH_NAME_MAX_LEN];
614
615                         snprintf(name, sizeof(name), "%s port %u",
616                                  ibv_get_device_name(ibv_dev), port);
617                         eth_dev = rte_eth_dev_allocate(name);
618                 }
619                 if (eth_dev == NULL) {
620                         ERROR("can not allocate rte ethdev");
621                         rte_errno = ENOMEM;
622                         goto port_error;
623                 }
624                 eth_dev->data->dev_private = priv;
625                 eth_dev->data->mac_addrs = priv->mac;
626                 eth_dev->device = &pci_dev->device;
627                 rte_eth_copy_pci_info(eth_dev, pci_dev);
628                 eth_dev->device->driver = &mlx4_driver.driver;
629                 /* Initialize local interrupt handle for current port. */
630                 priv->intr_handle = (struct rte_intr_handle){
631                         .fd = -1,
632                         .type = RTE_INTR_HANDLE_EXT,
633                 };
634                 /*
635                  * Override ethdev interrupt handle pointer with private
636                  * handle instead of that of the parent PCI device used by
637                  * default. This prevents it from being shared between all
638                  * ports of the same PCI device since each of them is
639                  * associated its own Verbs context.
640                  *
641                  * Rx interrupts in particular require this as the PMD has
642                  * no control over the registration of queue interrupts
643                  * besides setting up eth_dev->intr_handle, the rest is
644                  * handled by rte_intr_rx_ctl().
645                  */
646                 eth_dev->intr_handle = &priv->intr_handle;
647                 priv->dev = eth_dev;
648                 eth_dev->dev_ops = &mlx4_dev_ops;
649                 /* Bring Ethernet device up. */
650                 DEBUG("forcing Ethernet interface up");
651                 mlx4_dev_set_link_up(priv->dev);
652                 /* Update link status once if waiting for LSC. */
653                 if (eth_dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
654                         mlx4_link_update(eth_dev, 0);
655                 continue;
656 port_error:
657                 rte_free(priv);
658                 if (pd)
659                         claim_zero(ibv_dealloc_pd(pd));
660                 if (ctx)
661                         claim_zero(ibv_close_device(ctx));
662                 if (eth_dev)
663                         rte_eth_dev_release_port(eth_dev);
664                 break;
665         }
666         if (i == device_attr.phys_port_cnt)
667                 return 0;
668         /*
669          * XXX if something went wrong in the loop above, there is a resource
670          * leak (ctx, pd, priv, dpdk ethdev) but we can do nothing about it as
671          * long as the dpdk does not provide a way to deallocate a ethdev and a
672          * way to enumerate the registered ethdevs to free the previous ones.
673          */
674 error:
675         if (attr_ctx)
676                 claim_zero(ibv_close_device(attr_ctx));
677         if (list)
678                 ibv_free_device_list(list);
679         assert(rte_errno >= 0);
680         return -rte_errno;
681 }
682
683 static const struct rte_pci_id mlx4_pci_id_map[] = {
684         {
685                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
686                                PCI_DEVICE_ID_MELLANOX_CONNECTX3)
687         },
688         {
689                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
690                                PCI_DEVICE_ID_MELLANOX_CONNECTX3PRO)
691         },
692         {
693                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
694                                PCI_DEVICE_ID_MELLANOX_CONNECTX3VF)
695         },
696         {
697                 .vendor_id = 0
698         }
699 };
700
701 static struct rte_pci_driver mlx4_driver = {
702         .driver = {
703                 .name = MLX4_DRIVER_NAME
704         },
705         .id_table = mlx4_pci_id_map,
706         .probe = mlx4_pci_probe,
707         .drv_flags = RTE_PCI_DRV_INTR_LSC |
708                      RTE_PCI_DRV_INTR_RMV,
709 };
710
711 /**
712  * Driver initialization routine.
713  */
714 RTE_INIT(rte_mlx4_pmd_init);
715 static void
716 rte_mlx4_pmd_init(void)
717 {
718         /*
719          * MLX4_DEVICE_FATAL_CLEANUP tells ibv_destroy functions we
720          * want to get success errno value in case of calling them
721          * when the device was removed.
722          */
723         setenv("MLX4_DEVICE_FATAL_CLEANUP", "1", 1);
724         /*
725          * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
726          * huge pages. Calling ibv_fork_init() during init allows
727          * applications to use fork() safely for purposes other than
728          * using this PMD, which is not supported in forked processes.
729          */
730         setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
731         ibv_fork_init();
732         rte_pci_register(&mlx4_driver);
733 }
734
735 RTE_PMD_EXPORT_NAME(net_mlx4, __COUNTER__);
736 RTE_PMD_REGISTER_PCI_TABLE(net_mlx4, mlx4_pci_id_map);
737 RTE_PMD_REGISTER_KMOD_DEP(net_mlx4,
738         "* ib_uverbs & mlx4_en & mlx4_core & mlx4_ib");