c454e9396ac920f4885746f772640ef241a0caef
[dpdk.git] / drivers / net / mlx5 / mlx5.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2015 6WIND S.A.
5  *   Copyright 2015 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 #include <stddef.h>
35 #include <unistd.h>
36 #include <string.h>
37 #include <assert.h>
38 #include <stdint.h>
39 #include <stdlib.h>
40 #include <net/if.h>
41
42 /* Verbs header. */
43 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
44 #ifdef PEDANTIC
45 #pragma GCC diagnostic ignored "-pedantic"
46 #endif
47 #include <infiniband/verbs.h>
48 #ifdef PEDANTIC
49 #pragma GCC diagnostic error "-pedantic"
50 #endif
51
52 /* DPDK headers don't like -pedantic. */
53 #ifdef PEDANTIC
54 #pragma GCC diagnostic ignored "-pedantic"
55 #endif
56 #include <rte_malloc.h>
57 #include <rte_ethdev.h>
58 #include <rte_pci.h>
59 #include <rte_common.h>
60 #ifdef PEDANTIC
61 #pragma GCC diagnostic error "-pedantic"
62 #endif
63
64 #include "mlx5.h"
65 #include "mlx5_utils.h"
66 #include "mlx5_rxtx.h"
67 #include "mlx5_autoconf.h"
68
69 /**
70  * DPDK callback to close the device.
71  *
72  * Destroy all queues and objects, free memory.
73  *
74  * @param dev
75  *   Pointer to Ethernet device structure.
76  */
77 static void
78 mlx5_dev_close(struct rte_eth_dev *dev)
79 {
80         struct priv *priv = dev->data->dev_private;
81         void *tmp;
82         unsigned int i;
83
84         priv_lock(priv);
85         DEBUG("%p: closing device \"%s\"",
86               (void *)dev,
87               ((priv->ctx != NULL) ? priv->ctx->device->name : ""));
88         /* Prevent crashes when queues are still in use. */
89         dev->rx_pkt_burst = removed_rx_burst;
90         dev->tx_pkt_burst = removed_tx_burst;
91         if (priv->rxqs != NULL) {
92                 /* XXX race condition if mlx5_rx_burst() is still running. */
93                 usleep(1000);
94                 for (i = 0; (i != priv->rxqs_n); ++i) {
95                         tmp = (*priv->rxqs)[i];
96                         if (tmp == NULL)
97                                 continue;
98                         (*priv->rxqs)[i] = NULL;
99                         rxq_cleanup(tmp);
100                         rte_free(tmp);
101                 }
102                 priv->rxqs_n = 0;
103                 priv->rxqs = NULL;
104         }
105         if (priv->txqs != NULL) {
106                 /* XXX race condition if mlx5_tx_burst() is still running. */
107                 usleep(1000);
108                 for (i = 0; (i != priv->txqs_n); ++i) {
109                         tmp = (*priv->txqs)[i];
110                         if (tmp == NULL)
111                                 continue;
112                         (*priv->txqs)[i] = NULL;
113                         txq_cleanup(tmp);
114                         rte_free(tmp);
115                 }
116                 priv->txqs_n = 0;
117                 priv->txqs = NULL;
118         }
119         if (priv->rss)
120                 rxq_cleanup(&priv->rxq_parent);
121         if (priv->pd != NULL) {
122                 assert(priv->ctx != NULL);
123                 claim_zero(ibv_dealloc_pd(priv->pd));
124                 claim_zero(ibv_close_device(priv->ctx));
125         } else
126                 assert(priv->ctx == NULL);
127         priv_unlock(priv);
128         memset(priv, 0, sizeof(*priv));
129 }
130
131 static const struct eth_dev_ops mlx5_dev_ops = {
132         .dev_configure = mlx5_dev_configure,
133         .dev_start = mlx5_dev_start,
134         .dev_stop = mlx5_dev_stop,
135         .dev_close = mlx5_dev_close,
136         .promiscuous_enable = mlx5_promiscuous_enable,
137         .promiscuous_disable = mlx5_promiscuous_disable,
138         .allmulticast_enable = mlx5_allmulticast_enable,
139         .allmulticast_disable = mlx5_allmulticast_disable,
140         .link_update = mlx5_link_update,
141         .stats_get = mlx5_stats_get,
142         .stats_reset = mlx5_stats_reset,
143         .dev_infos_get = mlx5_dev_infos_get,
144         .rx_queue_setup = mlx5_rx_queue_setup,
145         .tx_queue_setup = mlx5_tx_queue_setup,
146         .rx_queue_release = mlx5_rx_queue_release,
147         .tx_queue_release = mlx5_tx_queue_release,
148         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
149         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
150         .mac_addr_remove = mlx5_mac_addr_remove,
151         .mac_addr_add = mlx5_mac_addr_add,
152         .mtu_set = mlx5_dev_set_mtu,
153 };
154
155 static struct {
156         struct rte_pci_addr pci_addr; /* associated PCI address */
157         uint32_t ports; /* physical ports bitfield. */
158 } mlx5_dev[32];
159
160 /**
161  * Get device index in mlx5_dev[] from PCI bus address.
162  *
163  * @param[in] pci_addr
164  *   PCI bus address to look for.
165  *
166  * @return
167  *   mlx5_dev[] index on success, -1 on failure.
168  */
169 static int
170 mlx5_dev_idx(struct rte_pci_addr *pci_addr)
171 {
172         unsigned int i;
173         int ret = -1;
174
175         assert(pci_addr != NULL);
176         for (i = 0; (i != RTE_DIM(mlx5_dev)); ++i) {
177                 if ((mlx5_dev[i].pci_addr.domain == pci_addr->domain) &&
178                     (mlx5_dev[i].pci_addr.bus == pci_addr->bus) &&
179                     (mlx5_dev[i].pci_addr.devid == pci_addr->devid) &&
180                     (mlx5_dev[i].pci_addr.function == pci_addr->function))
181                         return i;
182                 if ((mlx5_dev[i].ports == 0) && (ret == -1))
183                         ret = i;
184         }
185         return ret;
186 }
187
188 static struct eth_driver mlx5_driver;
189
190 /**
191  * DPDK callback to register a PCI device.
192  *
193  * This function creates an Ethernet device for each port of a given
194  * PCI device.
195  *
196  * @param[in] pci_drv
197  *   PCI driver structure (mlx5_driver).
198  * @param[in] pci_dev
199  *   PCI device information.
200  *
201  * @return
202  *   0 on success, negative errno value on failure.
203  */
204 static int
205 mlx5_pci_devinit(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
206 {
207         struct ibv_device **list;
208         struct ibv_device *ibv_dev;
209         int err = 0;
210         struct ibv_context *attr_ctx = NULL;
211         struct ibv_device_attr device_attr;
212         unsigned int vf;
213         int idx;
214         int i;
215
216         (void)pci_drv;
217         assert(pci_drv == &mlx5_driver.pci_drv);
218         /* Get mlx5_dev[] index. */
219         idx = mlx5_dev_idx(&pci_dev->addr);
220         if (idx == -1) {
221                 ERROR("this driver cannot support any more adapters");
222                 return -ENOMEM;
223         }
224         DEBUG("using driver device index %d", idx);
225
226         /* Save PCI address. */
227         mlx5_dev[idx].pci_addr = pci_dev->addr;
228         list = ibv_get_device_list(&i);
229         if (list == NULL) {
230                 assert(errno);
231                 if (errno == ENOSYS) {
232                         WARN("cannot list devices, is ib_uverbs loaded?");
233                         return 0;
234                 }
235                 return -errno;
236         }
237         assert(i >= 0);
238         /*
239          * For each listed device, check related sysfs entry against
240          * the provided PCI ID.
241          */
242         while (i != 0) {
243                 struct rte_pci_addr pci_addr;
244
245                 --i;
246                 DEBUG("checking device \"%s\"", list[i]->name);
247                 if (mlx5_ibv_device_to_pci_addr(list[i], &pci_addr))
248                         continue;
249                 if ((pci_dev->addr.domain != pci_addr.domain) ||
250                     (pci_dev->addr.bus != pci_addr.bus) ||
251                     (pci_dev->addr.devid != pci_addr.devid) ||
252                     (pci_dev->addr.function != pci_addr.function))
253                         continue;
254                 vf = ((pci_dev->id.device_id ==
255                        PCI_DEVICE_ID_MELLANOX_CONNECTX4VF) ||
256                       (pci_dev->id.device_id ==
257                        PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF));
258                 INFO("PCI information matches, using device \"%s\" (VF: %s)",
259                      list[i]->name, (vf ? "true" : "false"));
260                 attr_ctx = ibv_open_device(list[i]);
261                 err = errno;
262                 break;
263         }
264         if (attr_ctx == NULL) {
265                 ibv_free_device_list(list);
266                 switch (err) {
267                 case 0:
268                         WARN("cannot access device, is mlx5_ib loaded?");
269                         return 0;
270                 case EINVAL:
271                         WARN("cannot use device, are drivers up to date?");
272                         return 0;
273                 }
274                 assert(err > 0);
275                 return -err;
276         }
277         ibv_dev = list[i];
278
279         DEBUG("device opened");
280         if (ibv_query_device(attr_ctx, &device_attr))
281                 goto error;
282         INFO("%u port(s) detected", device_attr.phys_port_cnt);
283
284         for (i = 0; i < device_attr.phys_port_cnt; i++) {
285                 uint32_t port = i + 1; /* ports are indexed from one */
286                 uint32_t test = (1 << i);
287                 struct ibv_context *ctx = NULL;
288                 struct ibv_port_attr port_attr;
289                 struct ibv_pd *pd = NULL;
290                 struct priv *priv = NULL;
291                 struct rte_eth_dev *eth_dev;
292 #ifdef HAVE_EXP_QUERY_DEVICE
293                 struct ibv_exp_device_attr exp_device_attr;
294 #endif /* HAVE_EXP_QUERY_DEVICE */
295                 struct ether_addr mac;
296
297 #ifdef HAVE_EXP_QUERY_DEVICE
298                 exp_device_attr.comp_mask = IBV_EXP_DEVICE_ATTR_EXP_CAP_FLAGS;
299 #ifdef RSS_SUPPORT
300                 exp_device_attr.comp_mask |= IBV_EXP_DEVICE_ATTR_RSS_TBL_SZ;
301 #endif /* RSS_SUPPORT */
302 #endif /* HAVE_EXP_QUERY_DEVICE */
303
304                 DEBUG("using port %u (%08" PRIx32 ")", port, test);
305
306                 ctx = ibv_open_device(ibv_dev);
307                 if (ctx == NULL)
308                         goto port_error;
309
310                 /* Check port status. */
311                 err = ibv_query_port(ctx, port, &port_attr);
312                 if (err) {
313                         ERROR("port query failed: %s", strerror(err));
314                         goto port_error;
315                 }
316                 if (port_attr.state != IBV_PORT_ACTIVE)
317                         DEBUG("port %d is not active: \"%s\" (%d)",
318                               port, ibv_port_state_str(port_attr.state),
319                               port_attr.state);
320
321                 /* Allocate protection domain. */
322                 pd = ibv_alloc_pd(ctx);
323                 if (pd == NULL) {
324                         ERROR("PD allocation failure");
325                         err = ENOMEM;
326                         goto port_error;
327                 }
328
329                 mlx5_dev[idx].ports |= test;
330
331                 /* from rte_ethdev.c */
332                 priv = rte_zmalloc("ethdev private structure",
333                                    sizeof(*priv),
334                                    RTE_CACHE_LINE_SIZE);
335                 if (priv == NULL) {
336                         ERROR("priv allocation failure");
337                         err = ENOMEM;
338                         goto port_error;
339                 }
340
341                 priv->ctx = ctx;
342                 priv->device_attr = device_attr;
343                 priv->port = port;
344                 priv->pd = pd;
345                 priv->mtu = ETHER_MTU;
346 #ifdef HAVE_EXP_QUERY_DEVICE
347                 if (ibv_exp_query_device(ctx, &exp_device_attr)) {
348                         ERROR("ibv_exp_query_device() failed");
349                         goto port_error;
350                 }
351 #ifdef RSS_SUPPORT
352                 if ((exp_device_attr.exp_device_cap_flags &
353                      IBV_EXP_DEVICE_QPG) &&
354                     (exp_device_attr.exp_device_cap_flags &
355                      IBV_EXP_DEVICE_UD_RSS) &&
356                     (exp_device_attr.comp_mask &
357                      IBV_EXP_DEVICE_ATTR_RSS_TBL_SZ) &&
358                     (exp_device_attr.max_rss_tbl_sz > 0)) {
359                         priv->hw_qpg = 1;
360                         priv->hw_rss = 1;
361                         priv->max_rss_tbl_sz = exp_device_attr.max_rss_tbl_sz;
362                 } else {
363                         priv->hw_qpg = 0;
364                         priv->hw_rss = 0;
365                         priv->max_rss_tbl_sz = 0;
366                 }
367                 priv->hw_tss = !!(exp_device_attr.exp_device_cap_flags &
368                                   IBV_EXP_DEVICE_UD_TSS);
369                 DEBUG("device flags: %s%s%s",
370                       (priv->hw_qpg ? "IBV_DEVICE_QPG " : ""),
371                       (priv->hw_tss ? "IBV_DEVICE_TSS " : ""),
372                       (priv->hw_rss ? "IBV_DEVICE_RSS " : ""));
373                 if (priv->hw_rss)
374                         DEBUG("maximum RSS indirection table size: %u",
375                               exp_device_attr.max_rss_tbl_sz);
376 #endif /* RSS_SUPPORT */
377
378                 priv->hw_csum =
379                         ((exp_device_attr.exp_device_cap_flags &
380                           IBV_EXP_DEVICE_RX_CSUM_TCP_UDP_PKT) &&
381                          (exp_device_attr.exp_device_cap_flags &
382                           IBV_EXP_DEVICE_RX_CSUM_IP_PKT));
383                 DEBUG("checksum offloading is %ssupported",
384                       (priv->hw_csum ? "" : "not "));
385
386                 priv->hw_csum_l2tun = !!(exp_device_attr.exp_device_cap_flags &
387                                          IBV_EXP_DEVICE_VXLAN_SUPPORT);
388                 DEBUG("L2 tunnel checksum offloads are %ssupported",
389                       (priv->hw_csum_l2tun ? "" : "not "));
390
391 #endif /* HAVE_EXP_QUERY_DEVICE */
392
393                 priv->vf = vf;
394                 /* Configure the first MAC address by default. */
395                 if (priv_get_mac(priv, &mac.addr_bytes)) {
396                         ERROR("cannot get MAC address, is mlx5_en loaded?"
397                               " (errno: %s)", strerror(errno));
398                         goto port_error;
399                 }
400                 INFO("port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
401                      priv->port,
402                      mac.addr_bytes[0], mac.addr_bytes[1],
403                      mac.addr_bytes[2], mac.addr_bytes[3],
404                      mac.addr_bytes[4], mac.addr_bytes[5]);
405                 /* Register MAC and broadcast addresses. */
406                 claim_zero(priv_mac_addr_add(priv, 0,
407                                              (const uint8_t (*)[ETHER_ADDR_LEN])
408                                              mac.addr_bytes));
409                 claim_zero(priv_mac_addr_add(priv, (RTE_DIM(priv->mac) - 1),
410                                              &(const uint8_t [ETHER_ADDR_LEN])
411                                              { "\xff\xff\xff\xff\xff\xff" }));
412 #ifndef NDEBUG
413                 {
414                         char ifname[IF_NAMESIZE];
415
416                         if (priv_get_ifname(priv, &ifname) == 0)
417                                 DEBUG("port %u ifname is \"%s\"",
418                                       priv->port, ifname);
419                         else
420                                 DEBUG("port %u ifname is unknown", priv->port);
421                 }
422 #endif
423                 /* Get actual MTU if possible. */
424                 priv_get_mtu(priv, &priv->mtu);
425                 DEBUG("port %u MTU is %u", priv->port, priv->mtu);
426
427                 /* from rte_ethdev.c */
428                 {
429                         char name[RTE_ETH_NAME_MAX_LEN];
430
431                         snprintf(name, sizeof(name), "%s port %u",
432                                  ibv_get_device_name(ibv_dev), port);
433                         eth_dev = rte_eth_dev_allocate(name, RTE_ETH_DEV_PCI);
434                 }
435                 if (eth_dev == NULL) {
436                         ERROR("can not allocate rte ethdev");
437                         err = ENOMEM;
438                         goto port_error;
439                 }
440
441                 eth_dev->data->dev_private = priv;
442                 eth_dev->pci_dev = pci_dev;
443                 eth_dev->driver = &mlx5_driver;
444                 eth_dev->data->rx_mbuf_alloc_failed = 0;
445                 eth_dev->data->mtu = ETHER_MTU;
446
447                 priv->dev = eth_dev;
448                 eth_dev->dev_ops = &mlx5_dev_ops;
449                 eth_dev->data->mac_addrs = priv->mac;
450
451                 /* Bring Ethernet device up. */
452                 DEBUG("forcing Ethernet interface up");
453                 priv_set_flags(priv, ~IFF_UP, IFF_UP);
454                 continue;
455
456 port_error:
457                 rte_free(priv);
458                 if (pd)
459                         claim_zero(ibv_dealloc_pd(pd));
460                 if (ctx)
461                         claim_zero(ibv_close_device(ctx));
462                 break;
463         }
464
465         /*
466          * XXX if something went wrong in the loop above, there is a resource
467          * leak (ctx, pd, priv, dpdk ethdev) but we can do nothing about it as
468          * long as the dpdk does not provide a way to deallocate a ethdev and a
469          * way to enumerate the registered ethdevs to free the previous ones.
470          */
471
472         /* no port found, complain */
473         if (!mlx5_dev[idx].ports) {
474                 err = ENODEV;
475                 goto error;
476         }
477
478 error:
479         if (attr_ctx)
480                 claim_zero(ibv_close_device(attr_ctx));
481         if (list)
482                 ibv_free_device_list(list);
483         assert(err >= 0);
484         return -err;
485 }
486
487 static const struct rte_pci_id mlx5_pci_id_map[] = {
488         {
489                 .vendor_id = PCI_VENDOR_ID_MELLANOX,
490                 .device_id = PCI_DEVICE_ID_MELLANOX_CONNECTX4,
491                 .subsystem_vendor_id = PCI_ANY_ID,
492                 .subsystem_device_id = PCI_ANY_ID
493         },
494         {
495                 .vendor_id = PCI_VENDOR_ID_MELLANOX,
496                 .device_id = PCI_DEVICE_ID_MELLANOX_CONNECTX4VF,
497                 .subsystem_vendor_id = PCI_ANY_ID,
498                 .subsystem_device_id = PCI_ANY_ID
499         },
500         {
501                 .vendor_id = PCI_VENDOR_ID_MELLANOX,
502                 .device_id = PCI_DEVICE_ID_MELLANOX_CONNECTX4LX,
503                 .subsystem_vendor_id = PCI_ANY_ID,
504                 .subsystem_device_id = PCI_ANY_ID
505         },
506         {
507                 .vendor_id = PCI_VENDOR_ID_MELLANOX,
508                 .device_id = PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF,
509                 .subsystem_vendor_id = PCI_ANY_ID,
510                 .subsystem_device_id = PCI_ANY_ID
511         },
512         {
513                 .vendor_id = 0
514         }
515 };
516
517 static struct eth_driver mlx5_driver = {
518         .pci_drv = {
519                 .name = MLX5_DRIVER_NAME,
520                 .id_table = mlx5_pci_id_map,
521                 .devinit = mlx5_pci_devinit,
522         },
523         .dev_private_size = sizeof(struct priv)
524 };
525
526 /**
527  * Driver initialization routine.
528  */
529 static int
530 rte_mlx5_pmd_init(const char *name, const char *args)
531 {
532         (void)name;
533         (void)args;
534         /*
535          * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
536          * huge pages. Calling ibv_fork_init() during init allows
537          * applications to use fork() safely for purposes other than
538          * using this PMD, which is not supported in forked processes.
539          */
540         setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
541         ibv_fork_init();
542         rte_eal_pci_register(&mlx5_driver.pci_drv);
543         return 0;
544 }
545
546 static struct rte_driver rte_mlx5_driver = {
547         .type = PMD_PDEV,
548         .name = MLX5_DRIVER_NAME,
549         .init = rte_mlx5_pmd_init,
550 };
551
552 PMD_REGISTER_DRIVER(rte_mlx5_driver)