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