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