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