cef024aba654eb864161c39ed0c4d184a1a2fed3
[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  * Known limitations:
36  * - RSS hash key and options cannot be modified.
37  * - Hardware counters aren't implemented.
38  */
39
40 /* System headers. */
41 #include <stddef.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <stdint.h>
45 #include <inttypes.h>
46 #include <string.h>
47 #include <errno.h>
48 #include <unistd.h>
49 #include <limits.h>
50 #include <assert.h>
51 #include <arpa/inet.h>
52 #include <net/if.h>
53 #include <dirent.h>
54 #include <sys/ioctl.h>
55 #include <sys/socket.h>
56 #include <netinet/in.h>
57 #include <linux/ethtool.h>
58 #include <linux/sockios.h>
59 #include <fcntl.h>
60
61 #include <rte_ether.h>
62 #include <rte_ethdev.h>
63 #include <rte_ethdev_pci.h>
64 #include <rte_dev.h>
65 #include <rte_mbuf.h>
66 #include <rte_errno.h>
67 #include <rte_mempool.h>
68 #include <rte_prefetch.h>
69 #include <rte_malloc.h>
70 #include <rte_spinlock.h>
71 #include <rte_atomic.h>
72 #include <rte_version.h>
73 #include <rte_log.h>
74 #include <rte_alarm.h>
75 #include <rte_memory.h>
76 #include <rte_flow.h>
77 #include <rte_kvargs.h>
78 #include <rte_interrupts.h>
79
80 /* Generated configuration header. */
81 #include "mlx4_autoconf.h"
82
83 /* PMD headers. */
84 #include "mlx4.h"
85 #include "mlx4_flow.h"
86
87 /* Convenience macros for accessing mbuf fields. */
88 #define NEXT(m) ((m)->next)
89 #define DATA_LEN(m) ((m)->data_len)
90 #define PKT_LEN(m) ((m)->pkt_len)
91 #define DATA_OFF(m) ((m)->data_off)
92 #define SET_DATA_OFF(m, o) ((m)->data_off = (o))
93 #define NB_SEGS(m) ((m)->nb_segs)
94 #define PORT(m) ((m)->port)
95
96 /* Work Request ID data type (64 bit). */
97 typedef union {
98         struct {
99                 uint32_t id;
100                 uint16_t offset;
101         } data;
102         uint64_t raw;
103 } wr_id_t;
104
105 #define WR_ID(o) (((wr_id_t *)&(o))->data)
106
107 /* Transpose flags. Useful to convert IBV to DPDK flags. */
108 #define TRANSPOSE(val, from, to) \
109         (((from) >= (to)) ? \
110          (((val) & (from)) / ((from) / (to))) : \
111          (((val) & (from)) * ((to) / (from))))
112
113 /* Local storage for secondary process data. */
114 struct mlx4_secondary_data {
115         struct rte_eth_dev_data data; /* Local device data. */
116         struct priv *primary_priv; /* Private structure from primary. */
117         struct rte_eth_dev_data *shared_dev_data; /* Shared device data. */
118         rte_spinlock_t lock; /* Port configuration lock. */
119 } mlx4_secondary_data[RTE_MAX_ETHPORTS];
120
121 /** Configuration structure for device arguments. */
122 struct mlx4_conf {
123         struct {
124                 uint32_t present; /**< Bit-field for existing ports. */
125                 uint32_t enabled; /**< Bit-field for user-enabled ports. */
126         } ports;
127 };
128
129 /* Available parameters list. */
130 const char *pmd_mlx4_init_params[] = {
131         MLX4_PMD_PORT_KVARG,
132         NULL,
133 };
134
135 static int
136 mlx4_rx_intr_enable(struct rte_eth_dev *dev, uint16_t idx);
137
138 static int
139 mlx4_rx_intr_disable(struct rte_eth_dev *dev, uint16_t idx);
140
141 static int
142 priv_rx_intr_vec_enable(struct priv *priv);
143
144 static void
145 priv_rx_intr_vec_disable(struct priv *priv);
146
147 /**
148  * Check if running as a secondary process.
149  *
150  * @return
151  *   Nonzero if running as a secondary process.
152  */
153 static inline int
154 mlx4_is_secondary(void)
155 {
156         return rte_eal_process_type() != RTE_PROC_PRIMARY;
157 }
158
159 /**
160  * Return private structure associated with an Ethernet device.
161  *
162  * @param dev
163  *   Pointer to Ethernet device structure.
164  *
165  * @return
166  *   Pointer to private structure.
167  */
168 static struct priv *
169 mlx4_get_priv(struct rte_eth_dev *dev)
170 {
171         struct mlx4_secondary_data *sd;
172
173         if (!mlx4_is_secondary())
174                 return dev->data->dev_private;
175         sd = &mlx4_secondary_data[dev->data->port_id];
176         return sd->data.dev_private;
177 }
178
179 /**
180  * Lock private structure to protect it from concurrent access in the
181  * control path.
182  *
183  * @param priv
184  *   Pointer to private structure.
185  */
186 void priv_lock(struct priv *priv)
187 {
188         rte_spinlock_lock(&priv->lock);
189 }
190
191 /**
192  * Unlock private structure.
193  *
194  * @param priv
195  *   Pointer to private structure.
196  */
197 void priv_unlock(struct priv *priv)
198 {
199         rte_spinlock_unlock(&priv->lock);
200 }
201
202 /* Allocate a buffer on the stack and fill it with a printf format string. */
203 #define MKSTR(name, ...) \
204         char name[snprintf(NULL, 0, __VA_ARGS__) + 1]; \
205         \
206         snprintf(name, sizeof(name), __VA_ARGS__)
207
208 /**
209  * Get interface name from private structure.
210  *
211  * @param[in] priv
212  *   Pointer to private structure.
213  * @param[out] ifname
214  *   Interface name output buffer.
215  *
216  * @return
217  *   0 on success, -1 on failure and errno is set.
218  */
219 static int
220 priv_get_ifname(const struct priv *priv, char (*ifname)[IF_NAMESIZE])
221 {
222         DIR *dir;
223         struct dirent *dent;
224         unsigned int dev_type = 0;
225         unsigned int dev_port_prev = ~0u;
226         char match[IF_NAMESIZE] = "";
227
228         {
229                 MKSTR(path, "%s/device/net", priv->ctx->device->ibdev_path);
230
231                 dir = opendir(path);
232                 if (dir == NULL)
233                         return -1;
234         }
235         while ((dent = readdir(dir)) != NULL) {
236                 char *name = dent->d_name;
237                 FILE *file;
238                 unsigned int dev_port;
239                 int r;
240
241                 if ((name[0] == '.') &&
242                     ((name[1] == '\0') ||
243                      ((name[1] == '.') && (name[2] == '\0'))))
244                         continue;
245
246                 MKSTR(path, "%s/device/net/%s/%s",
247                       priv->ctx->device->ibdev_path, name,
248                       (dev_type ? "dev_id" : "dev_port"));
249
250                 file = fopen(path, "rb");
251                 if (file == NULL) {
252                         if (errno != ENOENT)
253                                 continue;
254                         /*
255                          * Switch to dev_id when dev_port does not exist as
256                          * is the case with Linux kernel versions < 3.15.
257                          */
258 try_dev_id:
259                         match[0] = '\0';
260                         if (dev_type)
261                                 break;
262                         dev_type = 1;
263                         dev_port_prev = ~0u;
264                         rewinddir(dir);
265                         continue;
266                 }
267                 r = fscanf(file, (dev_type ? "%x" : "%u"), &dev_port);
268                 fclose(file);
269                 if (r != 1)
270                         continue;
271                 /*
272                  * Switch to dev_id when dev_port returns the same value for
273                  * all ports. May happen when using a MOFED release older than
274                  * 3.0 with a Linux kernel >= 3.15.
275                  */
276                 if (dev_port == dev_port_prev)
277                         goto try_dev_id;
278                 dev_port_prev = dev_port;
279                 if (dev_port == (priv->port - 1u))
280                         snprintf(match, sizeof(match), "%s", name);
281         }
282         closedir(dir);
283         if (match[0] == '\0')
284                 return -1;
285         strncpy(*ifname, match, sizeof(*ifname));
286         return 0;
287 }
288
289 /**
290  * Read from sysfs entry.
291  *
292  * @param[in] priv
293  *   Pointer to private structure.
294  * @param[in] entry
295  *   Entry name relative to sysfs path.
296  * @param[out] buf
297  *   Data output buffer.
298  * @param size
299  *   Buffer size.
300  *
301  * @return
302  *   0 on success, -1 on failure and errno is set.
303  */
304 static int
305 priv_sysfs_read(const struct priv *priv, const char *entry,
306                 char *buf, size_t size)
307 {
308         char ifname[IF_NAMESIZE];
309         FILE *file;
310         int ret;
311         int err;
312
313         if (priv_get_ifname(priv, &ifname))
314                 return -1;
315
316         MKSTR(path, "%s/device/net/%s/%s", priv->ctx->device->ibdev_path,
317               ifname, entry);
318
319         file = fopen(path, "rb");
320         if (file == NULL)
321                 return -1;
322         ret = fread(buf, 1, size, file);
323         err = errno;
324         if (((size_t)ret < size) && (ferror(file)))
325                 ret = -1;
326         else
327                 ret = size;
328         fclose(file);
329         errno = err;
330         return ret;
331 }
332
333 /**
334  * Write to sysfs entry.
335  *
336  * @param[in] priv
337  *   Pointer to private structure.
338  * @param[in] entry
339  *   Entry name relative to sysfs path.
340  * @param[in] buf
341  *   Data buffer.
342  * @param size
343  *   Buffer size.
344  *
345  * @return
346  *   0 on success, -1 on failure and errno is set.
347  */
348 static int
349 priv_sysfs_write(const struct priv *priv, const char *entry,
350                  char *buf, size_t size)
351 {
352         char ifname[IF_NAMESIZE];
353         FILE *file;
354         int ret;
355         int err;
356
357         if (priv_get_ifname(priv, &ifname))
358                 return -1;
359
360         MKSTR(path, "%s/device/net/%s/%s", priv->ctx->device->ibdev_path,
361               ifname, entry);
362
363         file = fopen(path, "wb");
364         if (file == NULL)
365                 return -1;
366         ret = fwrite(buf, 1, size, file);
367         err = errno;
368         if (((size_t)ret < size) || (ferror(file)))
369                 ret = -1;
370         else
371                 ret = size;
372         fclose(file);
373         errno = err;
374         return ret;
375 }
376
377 /**
378  * Get unsigned long sysfs property.
379  *
380  * @param priv
381  *   Pointer to private structure.
382  * @param[in] name
383  *   Entry name relative to sysfs path.
384  * @param[out] value
385  *   Value output buffer.
386  *
387  * @return
388  *   0 on success, -1 on failure and errno is set.
389  */
390 static int
391 priv_get_sysfs_ulong(struct priv *priv, const char *name, unsigned long *value)
392 {
393         int ret;
394         unsigned long value_ret;
395         char value_str[32];
396
397         ret = priv_sysfs_read(priv, name, value_str, (sizeof(value_str) - 1));
398         if (ret == -1) {
399                 DEBUG("cannot read %s value from sysfs: %s",
400                       name, strerror(errno));
401                 return -1;
402         }
403         value_str[ret] = '\0';
404         errno = 0;
405         value_ret = strtoul(value_str, NULL, 0);
406         if (errno) {
407                 DEBUG("invalid %s value `%s': %s", name, value_str,
408                       strerror(errno));
409                 return -1;
410         }
411         *value = value_ret;
412         return 0;
413 }
414
415 /**
416  * Set unsigned long sysfs property.
417  *
418  * @param priv
419  *   Pointer to private structure.
420  * @param[in] name
421  *   Entry name relative to sysfs path.
422  * @param value
423  *   Value to set.
424  *
425  * @return
426  *   0 on success, -1 on failure and errno is set.
427  */
428 static int
429 priv_set_sysfs_ulong(struct priv *priv, const char *name, unsigned long value)
430 {
431         int ret;
432         MKSTR(value_str, "%lu", value);
433
434         ret = priv_sysfs_write(priv, name, value_str, (sizeof(value_str) - 1));
435         if (ret == -1) {
436                 DEBUG("cannot write %s `%s' (%lu) to sysfs: %s",
437                       name, value_str, value, strerror(errno));
438                 return -1;
439         }
440         return 0;
441 }
442
443 /**
444  * Perform ifreq ioctl() on associated Ethernet device.
445  *
446  * @param[in] priv
447  *   Pointer to private structure.
448  * @param req
449  *   Request number to pass to ioctl().
450  * @param[out] ifr
451  *   Interface request structure output buffer.
452  *
453  * @return
454  *   0 on success, -1 on failure and errno is set.
455  */
456 static int
457 priv_ifreq(const struct priv *priv, int req, struct ifreq *ifr)
458 {
459         int sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
460         int ret = -1;
461
462         if (sock == -1)
463                 return ret;
464         if (priv_get_ifname(priv, &ifr->ifr_name) == 0)
465                 ret = ioctl(sock, req, ifr);
466         close(sock);
467         return ret;
468 }
469
470 /**
471  * Get device MTU.
472  *
473  * @param priv
474  *   Pointer to private structure.
475  * @param[out] mtu
476  *   MTU value output buffer.
477  *
478  * @return
479  *   0 on success, -1 on failure and errno is set.
480  */
481 static int
482 priv_get_mtu(struct priv *priv, uint16_t *mtu)
483 {
484         unsigned long ulong_mtu;
485
486         if (priv_get_sysfs_ulong(priv, "mtu", &ulong_mtu) == -1)
487                 return -1;
488         *mtu = ulong_mtu;
489         return 0;
490 }
491
492 /**
493  * Set device MTU.
494  *
495  * @param priv
496  *   Pointer to private structure.
497  * @param mtu
498  *   MTU value to set.
499  *
500  * @return
501  *   0 on success, -1 on failure and errno is set.
502  */
503 static int
504 priv_set_mtu(struct priv *priv, uint16_t mtu)
505 {
506         uint16_t new_mtu;
507
508         if (priv_set_sysfs_ulong(priv, "mtu", mtu) ||
509             priv_get_mtu(priv, &new_mtu))
510                 return -1;
511         if (new_mtu == mtu)
512                 return 0;
513         errno = EINVAL;
514         return -1;
515 }
516
517 /**
518  * Set device flags.
519  *
520  * @param priv
521  *   Pointer to private structure.
522  * @param keep
523  *   Bitmask for flags that must remain untouched.
524  * @param flags
525  *   Bitmask for flags to modify.
526  *
527  * @return
528  *   0 on success, -1 on failure and errno is set.
529  */
530 static int
531 priv_set_flags(struct priv *priv, unsigned int keep, unsigned int flags)
532 {
533         unsigned long tmp;
534
535         if (priv_get_sysfs_ulong(priv, "flags", &tmp) == -1)
536                 return -1;
537         tmp &= keep;
538         tmp |= (flags & (~keep));
539         return priv_set_sysfs_ulong(priv, "flags", tmp);
540 }
541
542 /* Device configuration. */
543
544 static int
545 txq_setup(struct rte_eth_dev *dev, struct txq *txq, uint16_t desc,
546           unsigned int socket, const struct rte_eth_txconf *conf);
547
548 static void
549 txq_cleanup(struct txq *txq);
550
551 static int
552 rxq_setup(struct rte_eth_dev *dev, struct rxq *rxq, uint16_t desc,
553           unsigned int socket, int inactive,
554           const struct rte_eth_rxconf *conf,
555           struct rte_mempool *mp, int children_n,
556           struct rxq *rxq_parent);
557
558 static void
559 rxq_cleanup(struct rxq *rxq);
560
561 /**
562  * Create RSS parent queue.
563  *
564  * The new parent is inserted in front of the list in the private structure.
565  *
566  * @param priv
567  *   Pointer to private structure.
568  * @param queues
569  *   Queues indices array, if NULL use all Rx queues.
570  * @param children_n
571  *   The number of entries in queues[].
572  *
573  * @return
574  *   Pointer to a parent rxq structure, NULL on failure.
575  */
576 struct rxq *
577 priv_parent_create(struct priv *priv,
578                    uint16_t queues[],
579                    uint16_t children_n)
580 {
581         int ret;
582         uint16_t i;
583         struct rxq *parent;
584
585         parent = rte_zmalloc("parent queue",
586                              sizeof(*parent),
587                              RTE_CACHE_LINE_SIZE);
588         if (!parent) {
589                 ERROR("cannot allocate memory for RSS parent queue");
590                 return NULL;
591         }
592         ret = rxq_setup(priv->dev, parent, 0, 0, 0,
593                         NULL, NULL, children_n, NULL);
594         if (ret) {
595                 rte_free(parent);
596                 return NULL;
597         }
598         parent->rss.queues_n = children_n;
599         if (queues) {
600                 for (i = 0; i < children_n; ++i)
601                         parent->rss.queues[i] = queues[i];
602         } else {
603                 /* the default RSS ring case */
604                 assert(priv->rxqs_n == children_n);
605                 for (i = 0; i < priv->rxqs_n; ++i)
606                         parent->rss.queues[i] = i;
607         }
608         LIST_INSERT_HEAD(&priv->parents, parent, next);
609         return parent;
610 }
611
612 /**
613  * Clean up RX queue parent structure.
614  *
615  * @param parent
616  *   RX queue parent structure.
617  */
618 void
619 rxq_parent_cleanup(struct rxq *parent)
620 {
621         LIST_REMOVE(parent, next);
622         rxq_cleanup(parent);
623         rte_free(parent);
624 }
625
626 /**
627  * Clean up parent structures from the parent list.
628  *
629  * @param priv
630  *   Pointer to private structure.
631  */
632 static void
633 priv_parent_list_cleanup(struct priv *priv)
634 {
635         while (!LIST_EMPTY(&priv->parents))
636                 rxq_parent_cleanup(LIST_FIRST(&priv->parents));
637 }
638
639 /**
640  * Ethernet device configuration.
641  *
642  * Prepare the driver for a given number of TX and RX queues.
643  * Allocate parent RSS queue when several RX queues are requested.
644  *
645  * @param dev
646  *   Pointer to Ethernet device structure.
647  *
648  * @return
649  *   0 on success, errno value on failure.
650  */
651 static int
652 dev_configure(struct rte_eth_dev *dev)
653 {
654         struct priv *priv = dev->data->dev_private;
655         unsigned int rxqs_n = dev->data->nb_rx_queues;
656         unsigned int txqs_n = dev->data->nb_tx_queues;
657         unsigned int tmp;
658
659         priv->rxqs = (void *)dev->data->rx_queues;
660         priv->txqs = (void *)dev->data->tx_queues;
661         if (txqs_n != priv->txqs_n) {
662                 INFO("%p: TX queues number update: %u -> %u",
663                      (void *)dev, priv->txqs_n, txqs_n);
664                 priv->txqs_n = txqs_n;
665         }
666         if (rxqs_n == priv->rxqs_n)
667                 return 0;
668         if (!rte_is_power_of_2(rxqs_n) && !priv->isolated) {
669                 unsigned n_active;
670
671                 n_active = rte_align32pow2(rxqs_n + 1) >> 1;
672                 WARN("%p: number of RX queues must be a power"
673                         " of 2: %u queues among %u will be active",
674                         (void *)dev, n_active, rxqs_n);
675         }
676
677         INFO("%p: RX queues number update: %u -> %u",
678              (void *)dev, priv->rxqs_n, rxqs_n);
679         /* If RSS is enabled, disable it first. */
680         if (priv->rss) {
681                 unsigned int i;
682
683                 /* Only if there are no remaining child RX queues. */
684                 for (i = 0; (i != priv->rxqs_n); ++i)
685                         if ((*priv->rxqs)[i] != NULL)
686                                 return EINVAL;
687                 priv_parent_list_cleanup(priv);
688                 priv->rss = 0;
689                 priv->rxqs_n = 0;
690         }
691         if (rxqs_n <= 1) {
692                 /* Nothing else to do. */
693                 priv->rxqs_n = rxqs_n;
694                 return 0;
695         }
696         /* Allocate a new RSS parent queue if supported by hardware. */
697         if (!priv->hw_rss) {
698                 ERROR("%p: only a single RX queue can be configured when"
699                       " hardware doesn't support RSS",
700                       (void *)dev);
701                 return EINVAL;
702         }
703         /* Fail if hardware doesn't support that many RSS queues. */
704         if (rxqs_n >= priv->max_rss_tbl_sz) {
705                 ERROR("%p: only %u RX queues can be configured for RSS",
706                       (void *)dev, priv->max_rss_tbl_sz);
707                 return EINVAL;
708         }
709         priv->rss = 1;
710         tmp = priv->rxqs_n;
711         priv->rxqs_n = rxqs_n;
712         if (priv->isolated)
713                 return 0;
714         if (priv_parent_create(priv, NULL, priv->rxqs_n))
715                 return 0;
716         /* Failure, rollback. */
717         priv->rss = 0;
718         priv->rxqs_n = tmp;
719         return ENOMEM;
720 }
721
722 /**
723  * DPDK callback for Ethernet device configuration.
724  *
725  * @param dev
726  *   Pointer to Ethernet device structure.
727  *
728  * @return
729  *   0 on success, negative errno value on failure.
730  */
731 static int
732 mlx4_dev_configure(struct rte_eth_dev *dev)
733 {
734         struct priv *priv = dev->data->dev_private;
735         int ret;
736
737         if (mlx4_is_secondary())
738                 return -E_RTE_SECONDARY;
739         priv_lock(priv);
740         ret = dev_configure(dev);
741         assert(ret >= 0);
742         priv_unlock(priv);
743         return -ret;
744 }
745
746 static uint16_t mlx4_tx_burst(void *, struct rte_mbuf **, uint16_t);
747 static uint16_t removed_rx_burst(void *, struct rte_mbuf **, uint16_t);
748
749 /**
750  * Configure secondary process queues from a private data pointer (primary
751  * or secondary) and update burst callbacks. Can take place only once.
752  *
753  * All queues must have been previously created by the primary process to
754  * avoid undefined behavior.
755  *
756  * @param priv
757  *   Private data pointer from either primary or secondary process.
758  *
759  * @return
760  *   Private data pointer from secondary process, NULL in case of error.
761  */
762 static struct priv *
763 mlx4_secondary_data_setup(struct priv *priv)
764 {
765         unsigned int port_id = 0;
766         struct mlx4_secondary_data *sd;
767         void **tx_queues;
768         void **rx_queues;
769         unsigned int nb_tx_queues;
770         unsigned int nb_rx_queues;
771         unsigned int i;
772
773         /* priv must be valid at this point. */
774         assert(priv != NULL);
775         /* priv->dev must also be valid but may point to local memory from
776          * another process, possibly with the same address and must not
777          * be dereferenced yet. */
778         assert(priv->dev != NULL);
779         /* Determine port ID by finding out where priv comes from. */
780         while (1) {
781                 sd = &mlx4_secondary_data[port_id];
782                 rte_spinlock_lock(&sd->lock);
783                 /* Primary process? */
784                 if (sd->primary_priv == priv)
785                         break;
786                 /* Secondary process? */
787                 if (sd->data.dev_private == priv)
788                         break;
789                 rte_spinlock_unlock(&sd->lock);
790                 if (++port_id == RTE_DIM(mlx4_secondary_data))
791                         port_id = 0;
792         }
793         /* Switch to secondary private structure. If private data has already
794          * been updated by another thread, there is nothing else to do. */
795         priv = sd->data.dev_private;
796         if (priv->dev->data == &sd->data)
797                 goto end;
798         /* Sanity checks. Secondary private structure is supposed to point
799          * to local eth_dev, itself still pointing to the shared device data
800          * structure allocated by the primary process. */
801         assert(sd->shared_dev_data != &sd->data);
802         assert(sd->data.nb_tx_queues == 0);
803         assert(sd->data.tx_queues == NULL);
804         assert(sd->data.nb_rx_queues == 0);
805         assert(sd->data.rx_queues == NULL);
806         assert(priv != sd->primary_priv);
807         assert(priv->dev->data == sd->shared_dev_data);
808         assert(priv->txqs_n == 0);
809         assert(priv->txqs == NULL);
810         assert(priv->rxqs_n == 0);
811         assert(priv->rxqs == NULL);
812         nb_tx_queues = sd->shared_dev_data->nb_tx_queues;
813         nb_rx_queues = sd->shared_dev_data->nb_rx_queues;
814         /* Allocate local storage for queues. */
815         tx_queues = rte_zmalloc("secondary ethdev->tx_queues",
816                                 sizeof(sd->data.tx_queues[0]) * nb_tx_queues,
817                                 RTE_CACHE_LINE_SIZE);
818         rx_queues = rte_zmalloc("secondary ethdev->rx_queues",
819                                 sizeof(sd->data.rx_queues[0]) * nb_rx_queues,
820                                 RTE_CACHE_LINE_SIZE);
821         if (tx_queues == NULL || rx_queues == NULL)
822                 goto error;
823         /* Lock to prevent control operations during setup. */
824         priv_lock(priv);
825         /* TX queues. */
826         for (i = 0; i != nb_tx_queues; ++i) {
827                 struct txq *primary_txq = (*sd->primary_priv->txqs)[i];
828                 struct txq *txq;
829
830                 if (primary_txq == NULL)
831                         continue;
832                 txq = rte_calloc_socket("TXQ", 1, sizeof(*txq), 0,
833                                         primary_txq->socket);
834                 if (txq != NULL) {
835                         if (txq_setup(priv->dev,
836                                       txq,
837                                       primary_txq->elts_n * MLX4_PMD_SGE_WR_N,
838                                       primary_txq->socket,
839                                       NULL) == 0) {
840                                 txq->stats.idx = primary_txq->stats.idx;
841                                 tx_queues[i] = txq;
842                                 continue;
843                         }
844                         rte_free(txq);
845                 }
846                 while (i) {
847                         txq = tx_queues[--i];
848                         txq_cleanup(txq);
849                         rte_free(txq);
850                 }
851                 goto error;
852         }
853         /* RX queues. */
854         for (i = 0; i != nb_rx_queues; ++i) {
855                 struct rxq *primary_rxq = (*sd->primary_priv->rxqs)[i];
856
857                 if (primary_rxq == NULL)
858                         continue;
859                 /* Not supported yet. */
860                 rx_queues[i] = NULL;
861         }
862         /* Update everything. */
863         priv->txqs = (void *)tx_queues;
864         priv->txqs_n = nb_tx_queues;
865         priv->rxqs = (void *)rx_queues;
866         priv->rxqs_n = nb_rx_queues;
867         sd->data.rx_queues = rx_queues;
868         sd->data.tx_queues = tx_queues;
869         sd->data.nb_rx_queues = nb_rx_queues;
870         sd->data.nb_tx_queues = nb_tx_queues;
871         sd->data.dev_link = sd->shared_dev_data->dev_link;
872         sd->data.mtu = sd->shared_dev_data->mtu;
873         memcpy(sd->data.rx_queue_state, sd->shared_dev_data->rx_queue_state,
874                sizeof(sd->data.rx_queue_state));
875         memcpy(sd->data.tx_queue_state, sd->shared_dev_data->tx_queue_state,
876                sizeof(sd->data.tx_queue_state));
877         sd->data.dev_flags = sd->shared_dev_data->dev_flags;
878         /* Use local data from now on. */
879         rte_mb();
880         priv->dev->data = &sd->data;
881         rte_mb();
882         priv->dev->tx_pkt_burst = mlx4_tx_burst;
883         priv->dev->rx_pkt_burst = removed_rx_burst;
884         priv_unlock(priv);
885 end:
886         /* More sanity checks. */
887         assert(priv->dev->tx_pkt_burst == mlx4_tx_burst);
888         assert(priv->dev->rx_pkt_burst == removed_rx_burst);
889         assert(priv->dev->data == &sd->data);
890         rte_spinlock_unlock(&sd->lock);
891         return priv;
892 error:
893         priv_unlock(priv);
894         rte_free(tx_queues);
895         rte_free(rx_queues);
896         rte_spinlock_unlock(&sd->lock);
897         return NULL;
898 }
899
900 /* TX queues handling. */
901
902 /**
903  * Allocate TX queue elements.
904  *
905  * @param txq
906  *   Pointer to TX queue structure.
907  * @param elts_n
908  *   Number of elements to allocate.
909  *
910  * @return
911  *   0 on success, errno value on failure.
912  */
913 static int
914 txq_alloc_elts(struct txq *txq, unsigned int elts_n)
915 {
916         unsigned int i;
917         struct txq_elt (*elts)[elts_n] =
918                 rte_calloc_socket("TXQ", 1, sizeof(*elts), 0, txq->socket);
919         linear_t (*elts_linear)[elts_n] =
920                 rte_calloc_socket("TXQ", 1, sizeof(*elts_linear), 0,
921                                   txq->socket);
922         struct ibv_mr *mr_linear = NULL;
923         int ret = 0;
924
925         if ((elts == NULL) || (elts_linear == NULL)) {
926                 ERROR("%p: can't allocate packets array", (void *)txq);
927                 ret = ENOMEM;
928                 goto error;
929         }
930         mr_linear =
931                 ibv_reg_mr(txq->priv->pd, elts_linear, sizeof(*elts_linear),
932                            IBV_ACCESS_LOCAL_WRITE);
933         if (mr_linear == NULL) {
934                 ERROR("%p: unable to configure MR, ibv_reg_mr() failed",
935                       (void *)txq);
936                 ret = EINVAL;
937                 goto error;
938         }
939         for (i = 0; (i != elts_n); ++i) {
940                 struct txq_elt *elt = &(*elts)[i];
941
942                 elt->buf = NULL;
943         }
944         DEBUG("%p: allocated and configured %u WRs", (void *)txq, elts_n);
945         txq->elts_n = elts_n;
946         txq->elts = elts;
947         txq->elts_head = 0;
948         txq->elts_tail = 0;
949         txq->elts_comp = 0;
950         /* Request send completion every MLX4_PMD_TX_PER_COMP_REQ packets or
951          * at least 4 times per ring. */
952         txq->elts_comp_cd_init =
953                 ((MLX4_PMD_TX_PER_COMP_REQ < (elts_n / 4)) ?
954                  MLX4_PMD_TX_PER_COMP_REQ : (elts_n / 4));
955         txq->elts_comp_cd = txq->elts_comp_cd_init;
956         txq->elts_linear = elts_linear;
957         txq->mr_linear = mr_linear;
958         assert(ret == 0);
959         return 0;
960 error:
961         if (mr_linear != NULL)
962                 claim_zero(ibv_dereg_mr(mr_linear));
963
964         rte_free(elts_linear);
965         rte_free(elts);
966
967         DEBUG("%p: failed, freed everything", (void *)txq);
968         assert(ret > 0);
969         return ret;
970 }
971
972 /**
973  * Free TX queue elements.
974  *
975  * @param txq
976  *   Pointer to TX queue structure.
977  */
978 static void
979 txq_free_elts(struct txq *txq)
980 {
981         unsigned int elts_n = txq->elts_n;
982         unsigned int elts_head = txq->elts_head;
983         unsigned int elts_tail = txq->elts_tail;
984         struct txq_elt (*elts)[elts_n] = txq->elts;
985         linear_t (*elts_linear)[elts_n] = txq->elts_linear;
986         struct ibv_mr *mr_linear = txq->mr_linear;
987
988         DEBUG("%p: freeing WRs", (void *)txq);
989         txq->elts_n = 0;
990         txq->elts_head = 0;
991         txq->elts_tail = 0;
992         txq->elts_comp = 0;
993         txq->elts_comp_cd = 0;
994         txq->elts_comp_cd_init = 0;
995         txq->elts = NULL;
996         txq->elts_linear = NULL;
997         txq->mr_linear = NULL;
998         if (mr_linear != NULL)
999                 claim_zero(ibv_dereg_mr(mr_linear));
1000
1001         rte_free(elts_linear);
1002         if (elts == NULL)
1003                 return;
1004         while (elts_tail != elts_head) {
1005                 struct txq_elt *elt = &(*elts)[elts_tail];
1006
1007                 assert(elt->buf != NULL);
1008                 rte_pktmbuf_free(elt->buf);
1009 #ifndef NDEBUG
1010                 /* Poisoning. */
1011                 memset(elt, 0x77, sizeof(*elt));
1012 #endif
1013                 if (++elts_tail == elts_n)
1014                         elts_tail = 0;
1015         }
1016         rte_free(elts);
1017 }
1018
1019
1020 /**
1021  * Clean up a TX queue.
1022  *
1023  * Destroy objects, free allocated memory and reset the structure for reuse.
1024  *
1025  * @param txq
1026  *   Pointer to TX queue structure.
1027  */
1028 static void
1029 txq_cleanup(struct txq *txq)
1030 {
1031         struct ibv_exp_release_intf_params params;
1032         size_t i;
1033
1034         DEBUG("cleaning up %p", (void *)txq);
1035         txq_free_elts(txq);
1036         if (txq->if_qp != NULL) {
1037                 assert(txq->priv != NULL);
1038                 assert(txq->priv->ctx != NULL);
1039                 assert(txq->qp != NULL);
1040                 params = (struct ibv_exp_release_intf_params){
1041                         .comp_mask = 0,
1042                 };
1043                 claim_zero(ibv_exp_release_intf(txq->priv->ctx,
1044                                                 txq->if_qp,
1045                                                 &params));
1046         }
1047         if (txq->if_cq != NULL) {
1048                 assert(txq->priv != NULL);
1049                 assert(txq->priv->ctx != NULL);
1050                 assert(txq->cq != NULL);
1051                 params = (struct ibv_exp_release_intf_params){
1052                         .comp_mask = 0,
1053                 };
1054                 claim_zero(ibv_exp_release_intf(txq->priv->ctx,
1055                                                 txq->if_cq,
1056                                                 &params));
1057         }
1058         if (txq->qp != NULL)
1059                 claim_zero(ibv_destroy_qp(txq->qp));
1060         if (txq->cq != NULL)
1061                 claim_zero(ibv_destroy_cq(txq->cq));
1062         if (txq->rd != NULL) {
1063                 struct ibv_exp_destroy_res_domain_attr attr = {
1064                         .comp_mask = 0,
1065                 };
1066
1067                 assert(txq->priv != NULL);
1068                 assert(txq->priv->ctx != NULL);
1069                 claim_zero(ibv_exp_destroy_res_domain(txq->priv->ctx,
1070                                                       txq->rd,
1071                                                       &attr));
1072         }
1073         for (i = 0; (i != elemof(txq->mp2mr)); ++i) {
1074                 if (txq->mp2mr[i].mp == NULL)
1075                         break;
1076                 assert(txq->mp2mr[i].mr != NULL);
1077                 claim_zero(ibv_dereg_mr(txq->mp2mr[i].mr));
1078         }
1079         memset(txq, 0, sizeof(*txq));
1080 }
1081
1082 /**
1083  * Manage TX completions.
1084  *
1085  * When sending a burst, mlx4_tx_burst() posts several WRs.
1086  * To improve performance, a completion event is only required once every
1087  * MLX4_PMD_TX_PER_COMP_REQ sends. Doing so discards completion information
1088  * for other WRs, but this information would not be used anyway.
1089  *
1090  * @param txq
1091  *   Pointer to TX queue structure.
1092  *
1093  * @return
1094  *   0 on success, -1 on failure.
1095  */
1096 static int
1097 txq_complete(struct txq *txq)
1098 {
1099         unsigned int elts_comp = txq->elts_comp;
1100         unsigned int elts_tail = txq->elts_tail;
1101         const unsigned int elts_n = txq->elts_n;
1102         int wcs_n;
1103
1104         if (unlikely(elts_comp == 0))
1105                 return 0;
1106         wcs_n = txq->if_cq->poll_cnt(txq->cq, elts_comp);
1107         if (unlikely(wcs_n == 0))
1108                 return 0;
1109         if (unlikely(wcs_n < 0)) {
1110                 DEBUG("%p: ibv_poll_cq() failed (wcs_n=%d)",
1111                       (void *)txq, wcs_n);
1112                 return -1;
1113         }
1114         elts_comp -= wcs_n;
1115         assert(elts_comp <= txq->elts_comp);
1116         /*
1117          * Assume WC status is successful as nothing can be done about it
1118          * anyway.
1119          */
1120         elts_tail += wcs_n * txq->elts_comp_cd_init;
1121         if (elts_tail >= elts_n)
1122                 elts_tail -= elts_n;
1123         txq->elts_tail = elts_tail;
1124         txq->elts_comp = elts_comp;
1125         return 0;
1126 }
1127
1128 struct mlx4_check_mempool_data {
1129         int ret;
1130         char *start;
1131         char *end;
1132 };
1133
1134 /* Called by mlx4_check_mempool() when iterating the memory chunks. */
1135 static void mlx4_check_mempool_cb(struct rte_mempool *mp,
1136         void *opaque, struct rte_mempool_memhdr *memhdr,
1137         unsigned mem_idx)
1138 {
1139         struct mlx4_check_mempool_data *data = opaque;
1140
1141         (void)mp;
1142         (void)mem_idx;
1143
1144         /* It already failed, skip the next chunks. */
1145         if (data->ret != 0)
1146                 return;
1147         /* It is the first chunk. */
1148         if (data->start == NULL && data->end == NULL) {
1149                 data->start = memhdr->addr;
1150                 data->end = data->start + memhdr->len;
1151                 return;
1152         }
1153         if (data->end == memhdr->addr) {
1154                 data->end += memhdr->len;
1155                 return;
1156         }
1157         if (data->start == (char *)memhdr->addr + memhdr->len) {
1158                 data->start -= memhdr->len;
1159                 return;
1160         }
1161         /* Error, mempool is not virtually contigous. */
1162         data->ret = -1;
1163 }
1164
1165 /**
1166  * Check if a mempool can be used: it must be virtually contiguous.
1167  *
1168  * @param[in] mp
1169  *   Pointer to memory pool.
1170  * @param[out] start
1171  *   Pointer to the start address of the mempool virtual memory area
1172  * @param[out] end
1173  *   Pointer to the end address of the mempool virtual memory area
1174  *
1175  * @return
1176  *   0 on success (mempool is virtually contiguous), -1 on error.
1177  */
1178 static int mlx4_check_mempool(struct rte_mempool *mp, uintptr_t *start,
1179         uintptr_t *end)
1180 {
1181         struct mlx4_check_mempool_data data;
1182
1183         memset(&data, 0, sizeof(data));
1184         rte_mempool_mem_iter(mp, mlx4_check_mempool_cb, &data);
1185         *start = (uintptr_t)data.start;
1186         *end = (uintptr_t)data.end;
1187
1188         return data.ret;
1189 }
1190
1191 /* For best performance, this function should not be inlined. */
1192 static struct ibv_mr *mlx4_mp2mr(struct ibv_pd *, struct rte_mempool *)
1193         __rte_noinline;
1194
1195 /**
1196  * Register mempool as a memory region.
1197  *
1198  * @param pd
1199  *   Pointer to protection domain.
1200  * @param mp
1201  *   Pointer to memory pool.
1202  *
1203  * @return
1204  *   Memory region pointer, NULL in case of error.
1205  */
1206 static struct ibv_mr *
1207 mlx4_mp2mr(struct ibv_pd *pd, struct rte_mempool *mp)
1208 {
1209         const struct rte_memseg *ms = rte_eal_get_physmem_layout();
1210         uintptr_t start;
1211         uintptr_t end;
1212         unsigned int i;
1213
1214         if (mlx4_check_mempool(mp, &start, &end) != 0) {
1215                 ERROR("mempool %p: not virtually contiguous",
1216                         (void *)mp);
1217                 return NULL;
1218         }
1219
1220         DEBUG("mempool %p area start=%p end=%p size=%zu",
1221               (void *)mp, (void *)start, (void *)end,
1222               (size_t)(end - start));
1223         /* Round start and end to page boundary if found in memory segments. */
1224         for (i = 0; (i < RTE_MAX_MEMSEG) && (ms[i].addr != NULL); ++i) {
1225                 uintptr_t addr = (uintptr_t)ms[i].addr;
1226                 size_t len = ms[i].len;
1227                 unsigned int align = ms[i].hugepage_sz;
1228
1229                 if ((start > addr) && (start < addr + len))
1230                         start = RTE_ALIGN_FLOOR(start, align);
1231                 if ((end > addr) && (end < addr + len))
1232                         end = RTE_ALIGN_CEIL(end, align);
1233         }
1234         DEBUG("mempool %p using start=%p end=%p size=%zu for MR",
1235               (void *)mp, (void *)start, (void *)end,
1236               (size_t)(end - start));
1237         return ibv_reg_mr(pd,
1238                           (void *)start,
1239                           end - start,
1240                           IBV_ACCESS_LOCAL_WRITE);
1241 }
1242
1243 /**
1244  * Get Memory Pool (MP) from mbuf. If mbuf is indirect, the pool from which
1245  * the cloned mbuf is allocated is returned instead.
1246  *
1247  * @param buf
1248  *   Pointer to mbuf.
1249  *
1250  * @return
1251  *   Memory pool where data is located for given mbuf.
1252  */
1253 static struct rte_mempool *
1254 txq_mb2mp(struct rte_mbuf *buf)
1255 {
1256         if (unlikely(RTE_MBUF_INDIRECT(buf)))
1257                 return rte_mbuf_from_indirect(buf)->pool;
1258         return buf->pool;
1259 }
1260
1261 /**
1262  * Get Memory Region (MR) <-> Memory Pool (MP) association from txq->mp2mr[].
1263  * Add MP to txq->mp2mr[] if it's not registered yet. If mp2mr[] is full,
1264  * remove an entry first.
1265  *
1266  * @param txq
1267  *   Pointer to TX queue structure.
1268  * @param[in] mp
1269  *   Memory Pool for which a Memory Region lkey must be returned.
1270  *
1271  * @return
1272  *   mr->lkey on success, (uint32_t)-1 on failure.
1273  */
1274 static uint32_t
1275 txq_mp2mr(struct txq *txq, struct rte_mempool *mp)
1276 {
1277         unsigned int i;
1278         struct ibv_mr *mr;
1279
1280         for (i = 0; (i != elemof(txq->mp2mr)); ++i) {
1281                 if (unlikely(txq->mp2mr[i].mp == NULL)) {
1282                         /* Unknown MP, add a new MR for it. */
1283                         break;
1284                 }
1285                 if (txq->mp2mr[i].mp == mp) {
1286                         assert(txq->mp2mr[i].lkey != (uint32_t)-1);
1287                         assert(txq->mp2mr[i].mr->lkey == txq->mp2mr[i].lkey);
1288                         return txq->mp2mr[i].lkey;
1289                 }
1290         }
1291         /* Add a new entry, register MR first. */
1292         DEBUG("%p: discovered new memory pool \"%s\" (%p)",
1293               (void *)txq, mp->name, (void *)mp);
1294         mr = mlx4_mp2mr(txq->priv->pd, mp);
1295         if (unlikely(mr == NULL)) {
1296                 DEBUG("%p: unable to configure MR, ibv_reg_mr() failed.",
1297                       (void *)txq);
1298                 return (uint32_t)-1;
1299         }
1300         if (unlikely(i == elemof(txq->mp2mr))) {
1301                 /* Table is full, remove oldest entry. */
1302                 DEBUG("%p: MR <-> MP table full, dropping oldest entry.",
1303                       (void *)txq);
1304                 --i;
1305                 claim_zero(ibv_dereg_mr(txq->mp2mr[0].mr));
1306                 memmove(&txq->mp2mr[0], &txq->mp2mr[1],
1307                         (sizeof(txq->mp2mr) - sizeof(txq->mp2mr[0])));
1308         }
1309         /* Store the new entry. */
1310         txq->mp2mr[i].mp = mp;
1311         txq->mp2mr[i].mr = mr;
1312         txq->mp2mr[i].lkey = mr->lkey;
1313         DEBUG("%p: new MR lkey for MP \"%s\" (%p): 0x%08" PRIu32,
1314               (void *)txq, mp->name, (void *)mp, txq->mp2mr[i].lkey);
1315         return txq->mp2mr[i].lkey;
1316 }
1317
1318 struct txq_mp2mr_mbuf_check_data {
1319         int ret;
1320 };
1321
1322 /**
1323  * Callback function for rte_mempool_obj_iter() to check whether a given
1324  * mempool object looks like a mbuf.
1325  *
1326  * @param[in] mp
1327  *   The mempool pointer
1328  * @param[in] arg
1329  *   Context data (struct txq_mp2mr_mbuf_check_data). Contains the
1330  *   return value.
1331  * @param[in] obj
1332  *   Object address.
1333  * @param index
1334  *   Object index, unused.
1335  */
1336 static void
1337 txq_mp2mr_mbuf_check(struct rte_mempool *mp, void *arg, void *obj,
1338         uint32_t index __rte_unused)
1339 {
1340         struct txq_mp2mr_mbuf_check_data *data = arg;
1341         struct rte_mbuf *buf = obj;
1342
1343         /* Check whether mbuf structure fits element size and whether mempool
1344          * pointer is valid. */
1345         if (sizeof(*buf) > mp->elt_size || buf->pool != mp)
1346                 data->ret = -1;
1347 }
1348
1349 /**
1350  * Iterator function for rte_mempool_walk() to register existing mempools and
1351  * fill the MP to MR cache of a TX queue.
1352  *
1353  * @param[in] mp
1354  *   Memory Pool to register.
1355  * @param *arg
1356  *   Pointer to TX queue structure.
1357  */
1358 static void
1359 txq_mp2mr_iter(struct rte_mempool *mp, void *arg)
1360 {
1361         struct txq *txq = arg;
1362         struct txq_mp2mr_mbuf_check_data data = {
1363                 .ret = 0,
1364         };
1365
1366         /* Register mempool only if the first element looks like a mbuf. */
1367         if (rte_mempool_obj_iter(mp, txq_mp2mr_mbuf_check, &data) == 0 ||
1368                         data.ret == -1)
1369                 return;
1370         txq_mp2mr(txq, mp);
1371 }
1372
1373 #if MLX4_PMD_SGE_WR_N > 1
1374
1375 /**
1376  * Copy scattered mbuf contents to a single linear buffer.
1377  *
1378  * @param[out] linear
1379  *   Linear output buffer.
1380  * @param[in] buf
1381  *   Scattered input buffer.
1382  *
1383  * @return
1384  *   Number of bytes copied to the output buffer or 0 if not large enough.
1385  */
1386 static unsigned int
1387 linearize_mbuf(linear_t *linear, struct rte_mbuf *buf)
1388 {
1389         unsigned int size = 0;
1390         unsigned int offset;
1391
1392         do {
1393                 unsigned int len = DATA_LEN(buf);
1394
1395                 offset = size;
1396                 size += len;
1397                 if (unlikely(size > sizeof(*linear)))
1398                         return 0;
1399                 memcpy(&(*linear)[offset],
1400                        rte_pktmbuf_mtod(buf, uint8_t *),
1401                        len);
1402                 buf = NEXT(buf);
1403         } while (buf != NULL);
1404         return size;
1405 }
1406
1407 /**
1408  * Handle scattered buffers for mlx4_tx_burst().
1409  *
1410  * @param txq
1411  *   TX queue structure.
1412  * @param segs
1413  *   Number of segments in buf.
1414  * @param elt
1415  *   TX queue element to fill.
1416  * @param[in] buf
1417  *   Buffer to process.
1418  * @param elts_head
1419  *   Index of the linear buffer to use if necessary (normally txq->elts_head).
1420  * @param[out] sges
1421  *   Array filled with SGEs on success.
1422  *
1423  * @return
1424  *   A structure containing the processed packet size in bytes and the
1425  *   number of SGEs. Both fields are set to (unsigned int)-1 in case of
1426  *   failure.
1427  */
1428 static struct tx_burst_sg_ret {
1429         unsigned int length;
1430         unsigned int num;
1431 }
1432 tx_burst_sg(struct txq *txq, unsigned int segs, struct txq_elt *elt,
1433             struct rte_mbuf *buf, unsigned int elts_head,
1434             struct ibv_sge (*sges)[MLX4_PMD_SGE_WR_N])
1435 {
1436         unsigned int sent_size = 0;
1437         unsigned int j;
1438         int linearize = 0;
1439
1440         /* When there are too many segments, extra segments are
1441          * linearized in the last SGE. */
1442         if (unlikely(segs > elemof(*sges))) {
1443                 segs = (elemof(*sges) - 1);
1444                 linearize = 1;
1445         }
1446         /* Update element. */
1447         elt->buf = buf;
1448         /* Register segments as SGEs. */
1449         for (j = 0; (j != segs); ++j) {
1450                 struct ibv_sge *sge = &(*sges)[j];
1451                 uint32_t lkey;
1452
1453                 /* Retrieve Memory Region key for this memory pool. */
1454                 lkey = txq_mp2mr(txq, txq_mb2mp(buf));
1455                 if (unlikely(lkey == (uint32_t)-1)) {
1456                         /* MR does not exist. */
1457                         DEBUG("%p: unable to get MP <-> MR association",
1458                               (void *)txq);
1459                         /* Clean up TX element. */
1460                         elt->buf = NULL;
1461                         goto stop;
1462                 }
1463                 /* Update SGE. */
1464                 sge->addr = rte_pktmbuf_mtod(buf, uintptr_t);
1465                 if (txq->priv->vf)
1466                         rte_prefetch0((volatile void *)
1467                                       (uintptr_t)sge->addr);
1468                 sge->length = DATA_LEN(buf);
1469                 sge->lkey = lkey;
1470                 sent_size += sge->length;
1471                 buf = NEXT(buf);
1472         }
1473         /* If buf is not NULL here and is not going to be linearized,
1474          * nb_segs is not valid. */
1475         assert(j == segs);
1476         assert((buf == NULL) || (linearize));
1477         /* Linearize extra segments. */
1478         if (linearize) {
1479                 struct ibv_sge *sge = &(*sges)[segs];
1480                 linear_t *linear = &(*txq->elts_linear)[elts_head];
1481                 unsigned int size = linearize_mbuf(linear, buf);
1482
1483                 assert(segs == (elemof(*sges) - 1));
1484                 if (size == 0) {
1485                         /* Invalid packet. */
1486                         DEBUG("%p: packet too large to be linearized.",
1487                               (void *)txq);
1488                         /* Clean up TX element. */
1489                         elt->buf = NULL;
1490                         goto stop;
1491                 }
1492                 /* If MLX4_PMD_SGE_WR_N is 1, free mbuf immediately. */
1493                 if (elemof(*sges) == 1) {
1494                         do {
1495                                 struct rte_mbuf *next = NEXT(buf);
1496
1497                                 rte_pktmbuf_free_seg(buf);
1498                                 buf = next;
1499                         } while (buf != NULL);
1500                         elt->buf = NULL;
1501                 }
1502                 /* Update SGE. */
1503                 sge->addr = (uintptr_t)&(*linear)[0];
1504                 sge->length = size;
1505                 sge->lkey = txq->mr_linear->lkey;
1506                 sent_size += size;
1507                 /* Include last segment. */
1508                 segs++;
1509         }
1510         return (struct tx_burst_sg_ret){
1511                 .length = sent_size,
1512                 .num = segs,
1513         };
1514 stop:
1515         return (struct tx_burst_sg_ret){
1516                 .length = -1,
1517                 .num = -1,
1518         };
1519 }
1520
1521 #endif /* MLX4_PMD_SGE_WR_N > 1 */
1522
1523 /**
1524  * DPDK callback for TX.
1525  *
1526  * @param dpdk_txq
1527  *   Generic pointer to TX queue structure.
1528  * @param[in] pkts
1529  *   Packets to transmit.
1530  * @param pkts_n
1531  *   Number of packets in array.
1532  *
1533  * @return
1534  *   Number of packets successfully transmitted (<= pkts_n).
1535  */
1536 static uint16_t
1537 mlx4_tx_burst(void *dpdk_txq, struct rte_mbuf **pkts, uint16_t pkts_n)
1538 {
1539         struct txq *txq = (struct txq *)dpdk_txq;
1540         unsigned int elts_head = txq->elts_head;
1541         const unsigned int elts_n = txq->elts_n;
1542         unsigned int elts_comp_cd = txq->elts_comp_cd;
1543         unsigned int elts_comp = 0;
1544         unsigned int i;
1545         unsigned int max;
1546         int err;
1547
1548         assert(elts_comp_cd != 0);
1549         txq_complete(txq);
1550         max = (elts_n - (elts_head - txq->elts_tail));
1551         if (max > elts_n)
1552                 max -= elts_n;
1553         assert(max >= 1);
1554         assert(max <= elts_n);
1555         /* Always leave one free entry in the ring. */
1556         --max;
1557         if (max == 0)
1558                 return 0;
1559         if (max > pkts_n)
1560                 max = pkts_n;
1561         for (i = 0; (i != max); ++i) {
1562                 struct rte_mbuf *buf = pkts[i];
1563                 unsigned int elts_head_next =
1564                         (((elts_head + 1) == elts_n) ? 0 : elts_head + 1);
1565                 struct txq_elt *elt_next = &(*txq->elts)[elts_head_next];
1566                 struct txq_elt *elt = &(*txq->elts)[elts_head];
1567                 unsigned int segs = NB_SEGS(buf);
1568 #ifdef MLX4_PMD_SOFT_COUNTERS
1569                 unsigned int sent_size = 0;
1570 #endif
1571                 uint32_t send_flags = 0;
1572
1573                 /* Clean up old buffer. */
1574                 if (likely(elt->buf != NULL)) {
1575                         struct rte_mbuf *tmp = elt->buf;
1576
1577 #ifndef NDEBUG
1578                         /* Poisoning. */
1579                         memset(elt, 0x66, sizeof(*elt));
1580 #endif
1581                         /* Faster than rte_pktmbuf_free(). */
1582                         do {
1583                                 struct rte_mbuf *next = NEXT(tmp);
1584
1585                                 rte_pktmbuf_free_seg(tmp);
1586                                 tmp = next;
1587                         } while (tmp != NULL);
1588                 }
1589                 /* Request TX completion. */
1590                 if (unlikely(--elts_comp_cd == 0)) {
1591                         elts_comp_cd = txq->elts_comp_cd_init;
1592                         ++elts_comp;
1593                         send_flags |= IBV_EXP_QP_BURST_SIGNALED;
1594                 }
1595                 /* Should we enable HW CKSUM offload */
1596                 if (buf->ol_flags &
1597                     (PKT_TX_IP_CKSUM | PKT_TX_TCP_CKSUM | PKT_TX_UDP_CKSUM)) {
1598                         send_flags |= IBV_EXP_QP_BURST_IP_CSUM;
1599                         /* HW does not support checksum offloads at arbitrary
1600                          * offsets but automatically recognizes the packet
1601                          * type. For inner L3/L4 checksums, only VXLAN (UDP)
1602                          * tunnels are currently supported. */
1603                         if (RTE_ETH_IS_TUNNEL_PKT(buf->packet_type))
1604                                 send_flags |= IBV_EXP_QP_BURST_TUNNEL;
1605                 }
1606                 if (likely(segs == 1)) {
1607                         uintptr_t addr;
1608                         uint32_t length;
1609                         uint32_t lkey;
1610
1611                         /* Retrieve buffer information. */
1612                         addr = rte_pktmbuf_mtod(buf, uintptr_t);
1613                         length = DATA_LEN(buf);
1614                         /* Retrieve Memory Region key for this memory pool. */
1615                         lkey = txq_mp2mr(txq, txq_mb2mp(buf));
1616                         if (unlikely(lkey == (uint32_t)-1)) {
1617                                 /* MR does not exist. */
1618                                 DEBUG("%p: unable to get MP <-> MR"
1619                                       " association", (void *)txq);
1620                                 /* Clean up TX element. */
1621                                 elt->buf = NULL;
1622                                 goto stop;
1623                         }
1624                         /* Update element. */
1625                         elt->buf = buf;
1626                         if (txq->priv->vf)
1627                                 rte_prefetch0((volatile void *)
1628                                               (uintptr_t)addr);
1629                         RTE_MBUF_PREFETCH_TO_FREE(elt_next->buf);
1630                         /* Put packet into send queue. */
1631 #if MLX4_PMD_MAX_INLINE > 0
1632                         if (length <= txq->max_inline)
1633                                 err = txq->if_qp->send_pending_inline
1634                                         (txq->qp,
1635                                          (void *)addr,
1636                                          length,
1637                                          send_flags);
1638                         else
1639 #endif
1640                                 err = txq->if_qp->send_pending
1641                                         (txq->qp,
1642                                          addr,
1643                                          length,
1644                                          lkey,
1645                                          send_flags);
1646                         if (unlikely(err))
1647                                 goto stop;
1648 #ifdef MLX4_PMD_SOFT_COUNTERS
1649                         sent_size += length;
1650 #endif
1651                 } else {
1652 #if MLX4_PMD_SGE_WR_N > 1
1653                         struct ibv_sge sges[MLX4_PMD_SGE_WR_N];
1654                         struct tx_burst_sg_ret ret;
1655
1656                         ret = tx_burst_sg(txq, segs, elt, buf, elts_head,
1657                                           &sges);
1658                         if (ret.length == (unsigned int)-1)
1659                                 goto stop;
1660                         RTE_MBUF_PREFETCH_TO_FREE(elt_next->buf);
1661                         /* Put SG list into send queue. */
1662                         err = txq->if_qp->send_pending_sg_list
1663                                 (txq->qp,
1664                                  sges,
1665                                  ret.num,
1666                                  send_flags);
1667                         if (unlikely(err))
1668                                 goto stop;
1669 #ifdef MLX4_PMD_SOFT_COUNTERS
1670                         sent_size += ret.length;
1671 #endif
1672 #else /* MLX4_PMD_SGE_WR_N > 1 */
1673                         DEBUG("%p: TX scattered buffers support not"
1674                               " compiled in", (void *)txq);
1675                         goto stop;
1676 #endif /* MLX4_PMD_SGE_WR_N > 1 */
1677                 }
1678                 elts_head = elts_head_next;
1679 #ifdef MLX4_PMD_SOFT_COUNTERS
1680                 /* Increment sent bytes counter. */
1681                 txq->stats.obytes += sent_size;
1682 #endif
1683         }
1684 stop:
1685         /* Take a shortcut if nothing must be sent. */
1686         if (unlikely(i == 0))
1687                 return 0;
1688 #ifdef MLX4_PMD_SOFT_COUNTERS
1689         /* Increment sent packets counter. */
1690         txq->stats.opackets += i;
1691 #endif
1692         /* Ring QP doorbell. */
1693         err = txq->if_qp->send_flush(txq->qp);
1694         if (unlikely(err)) {
1695                 /* A nonzero value is not supposed to be returned.
1696                  * Nothing can be done about it. */
1697                 DEBUG("%p: send_flush() failed with error %d",
1698                       (void *)txq, err);
1699         }
1700         txq->elts_head = elts_head;
1701         txq->elts_comp += elts_comp;
1702         txq->elts_comp_cd = elts_comp_cd;
1703         return i;
1704 }
1705
1706 /**
1707  * DPDK callback for TX in secondary processes.
1708  *
1709  * This function configures all queues from primary process information
1710  * if necessary before reverting to the normal TX burst callback.
1711  *
1712  * @param dpdk_txq
1713  *   Generic pointer to TX queue structure.
1714  * @param[in] pkts
1715  *   Packets to transmit.
1716  * @param pkts_n
1717  *   Number of packets in array.
1718  *
1719  * @return
1720  *   Number of packets successfully transmitted (<= pkts_n).
1721  */
1722 static uint16_t
1723 mlx4_tx_burst_secondary_setup(void *dpdk_txq, struct rte_mbuf **pkts,
1724                               uint16_t pkts_n)
1725 {
1726         struct txq *txq = dpdk_txq;
1727         struct priv *priv = mlx4_secondary_data_setup(txq->priv);
1728         struct priv *primary_priv;
1729         unsigned int index;
1730
1731         if (priv == NULL)
1732                 return 0;
1733         primary_priv =
1734                 mlx4_secondary_data[priv->dev->data->port_id].primary_priv;
1735         /* Look for queue index in both private structures. */
1736         for (index = 0; index != priv->txqs_n; ++index)
1737                 if (((*primary_priv->txqs)[index] == txq) ||
1738                     ((*priv->txqs)[index] == txq))
1739                         break;
1740         if (index == priv->txqs_n)
1741                 return 0;
1742         txq = (*priv->txqs)[index];
1743         return priv->dev->tx_pkt_burst(txq, pkts, pkts_n);
1744 }
1745
1746 /**
1747  * Configure a TX queue.
1748  *
1749  * @param dev
1750  *   Pointer to Ethernet device structure.
1751  * @param txq
1752  *   Pointer to TX queue structure.
1753  * @param desc
1754  *   Number of descriptors to configure in queue.
1755  * @param socket
1756  *   NUMA socket on which memory must be allocated.
1757  * @param[in] conf
1758  *   Thresholds parameters.
1759  *
1760  * @return
1761  *   0 on success, errno value on failure.
1762  */
1763 static int
1764 txq_setup(struct rte_eth_dev *dev, struct txq *txq, uint16_t desc,
1765           unsigned int socket, const struct rte_eth_txconf *conf)
1766 {
1767         struct priv *priv = mlx4_get_priv(dev);
1768         struct txq tmpl = {
1769                 .priv = priv,
1770                 .socket = socket
1771         };
1772         union {
1773                 struct ibv_exp_query_intf_params params;
1774                 struct ibv_exp_qp_init_attr init;
1775                 struct ibv_exp_res_domain_init_attr rd;
1776                 struct ibv_exp_cq_init_attr cq;
1777                 struct ibv_exp_qp_attr mod;
1778         } attr;
1779         enum ibv_exp_query_intf_status status;
1780         int ret = 0;
1781
1782         (void)conf; /* Thresholds configuration (ignored). */
1783         if (priv == NULL)
1784                 return EINVAL;
1785         if ((desc == 0) || (desc % MLX4_PMD_SGE_WR_N)) {
1786                 ERROR("%p: invalid number of TX descriptors (must be a"
1787                       " multiple of %d)", (void *)dev, MLX4_PMD_SGE_WR_N);
1788                 return EINVAL;
1789         }
1790         desc /= MLX4_PMD_SGE_WR_N;
1791         /* MRs will be registered in mp2mr[] later. */
1792         attr.rd = (struct ibv_exp_res_domain_init_attr){
1793                 .comp_mask = (IBV_EXP_RES_DOMAIN_THREAD_MODEL |
1794                               IBV_EXP_RES_DOMAIN_MSG_MODEL),
1795                 .thread_model = IBV_EXP_THREAD_SINGLE,
1796                 .msg_model = IBV_EXP_MSG_HIGH_BW,
1797         };
1798         tmpl.rd = ibv_exp_create_res_domain(priv->ctx, &attr.rd);
1799         if (tmpl.rd == NULL) {
1800                 ret = ENOMEM;
1801                 ERROR("%p: RD creation failure: %s",
1802                       (void *)dev, strerror(ret));
1803                 goto error;
1804         }
1805         attr.cq = (struct ibv_exp_cq_init_attr){
1806                 .comp_mask = IBV_EXP_CQ_INIT_ATTR_RES_DOMAIN,
1807                 .res_domain = tmpl.rd,
1808         };
1809         tmpl.cq = ibv_exp_create_cq(priv->ctx, desc, NULL, NULL, 0, &attr.cq);
1810         if (tmpl.cq == NULL) {
1811                 ret = ENOMEM;
1812                 ERROR("%p: CQ creation failure: %s",
1813                       (void *)dev, strerror(ret));
1814                 goto error;
1815         }
1816         DEBUG("priv->device_attr.max_qp_wr is %d",
1817               priv->device_attr.max_qp_wr);
1818         DEBUG("priv->device_attr.max_sge is %d",
1819               priv->device_attr.max_sge);
1820         attr.init = (struct ibv_exp_qp_init_attr){
1821                 /* CQ to be associated with the send queue. */
1822                 .send_cq = tmpl.cq,
1823                 /* CQ to be associated with the receive queue. */
1824                 .recv_cq = tmpl.cq,
1825                 .cap = {
1826                         /* Max number of outstanding WRs. */
1827                         .max_send_wr = ((priv->device_attr.max_qp_wr < desc) ?
1828                                         priv->device_attr.max_qp_wr :
1829                                         desc),
1830                         /* Max number of scatter/gather elements in a WR. */
1831                         .max_send_sge = ((priv->device_attr.max_sge <
1832                                           MLX4_PMD_SGE_WR_N) ?
1833                                          priv->device_attr.max_sge :
1834                                          MLX4_PMD_SGE_WR_N),
1835 #if MLX4_PMD_MAX_INLINE > 0
1836                         .max_inline_data = MLX4_PMD_MAX_INLINE,
1837 #endif
1838                 },
1839                 .qp_type = IBV_QPT_RAW_PACKET,
1840                 /* Do *NOT* enable this, completions events are managed per
1841                  * TX burst. */
1842                 .sq_sig_all = 0,
1843                 .pd = priv->pd,
1844                 .res_domain = tmpl.rd,
1845                 .comp_mask = (IBV_EXP_QP_INIT_ATTR_PD |
1846                               IBV_EXP_QP_INIT_ATTR_RES_DOMAIN),
1847         };
1848         tmpl.qp = ibv_exp_create_qp(priv->ctx, &attr.init);
1849         if (tmpl.qp == NULL) {
1850                 ret = (errno ? errno : EINVAL);
1851                 ERROR("%p: QP creation failure: %s",
1852                       (void *)dev, strerror(ret));
1853                 goto error;
1854         }
1855 #if MLX4_PMD_MAX_INLINE > 0
1856         /* ibv_create_qp() updates this value. */
1857         tmpl.max_inline = attr.init.cap.max_inline_data;
1858 #endif
1859         attr.mod = (struct ibv_exp_qp_attr){
1860                 /* Move the QP to this state. */
1861                 .qp_state = IBV_QPS_INIT,
1862                 /* Primary port number. */
1863                 .port_num = priv->port
1864         };
1865         ret = ibv_exp_modify_qp(tmpl.qp, &attr.mod,
1866                                 (IBV_EXP_QP_STATE | IBV_EXP_QP_PORT));
1867         if (ret) {
1868                 ERROR("%p: QP state to IBV_QPS_INIT failed: %s",
1869                       (void *)dev, strerror(ret));
1870                 goto error;
1871         }
1872         ret = txq_alloc_elts(&tmpl, desc);
1873         if (ret) {
1874                 ERROR("%p: TXQ allocation failed: %s",
1875                       (void *)dev, strerror(ret));
1876                 goto error;
1877         }
1878         attr.mod = (struct ibv_exp_qp_attr){
1879                 .qp_state = IBV_QPS_RTR
1880         };
1881         ret = ibv_exp_modify_qp(tmpl.qp, &attr.mod, IBV_EXP_QP_STATE);
1882         if (ret) {
1883                 ERROR("%p: QP state to IBV_QPS_RTR failed: %s",
1884                       (void *)dev, strerror(ret));
1885                 goto error;
1886         }
1887         attr.mod.qp_state = IBV_QPS_RTS;
1888         ret = ibv_exp_modify_qp(tmpl.qp, &attr.mod, IBV_EXP_QP_STATE);
1889         if (ret) {
1890                 ERROR("%p: QP state to IBV_QPS_RTS failed: %s",
1891                       (void *)dev, strerror(ret));
1892                 goto error;
1893         }
1894         attr.params = (struct ibv_exp_query_intf_params){
1895                 .intf_scope = IBV_EXP_INTF_GLOBAL,
1896                 .intf = IBV_EXP_INTF_CQ,
1897                 .obj = tmpl.cq,
1898         };
1899         tmpl.if_cq = ibv_exp_query_intf(priv->ctx, &attr.params, &status);
1900         if (tmpl.if_cq == NULL) {
1901                 ERROR("%p: CQ interface family query failed with status %d",
1902                       (void *)dev, status);
1903                 goto error;
1904         }
1905         attr.params = (struct ibv_exp_query_intf_params){
1906                 .intf_scope = IBV_EXP_INTF_GLOBAL,
1907                 .intf = IBV_EXP_INTF_QP_BURST,
1908                 .obj = tmpl.qp,
1909 #ifdef HAVE_EXP_QP_BURST_CREATE_DISABLE_ETH_LOOPBACK
1910                 /* MC loopback must be disabled when not using a VF. */
1911                 .family_flags =
1912                         (!priv->vf ?
1913                          IBV_EXP_QP_BURST_CREATE_DISABLE_ETH_LOOPBACK :
1914                          0),
1915 #endif
1916         };
1917         tmpl.if_qp = ibv_exp_query_intf(priv->ctx, &attr.params, &status);
1918         if (tmpl.if_qp == NULL) {
1919                 ERROR("%p: QP interface family query failed with status %d",
1920                       (void *)dev, status);
1921                 goto error;
1922         }
1923         /* Clean up txq in case we're reinitializing it. */
1924         DEBUG("%p: cleaning-up old txq just in case", (void *)txq);
1925         txq_cleanup(txq);
1926         *txq = tmpl;
1927         DEBUG("%p: txq updated with %p", (void *)txq, (void *)&tmpl);
1928         /* Pre-register known mempools. */
1929         rte_mempool_walk(txq_mp2mr_iter, txq);
1930         assert(ret == 0);
1931         return 0;
1932 error:
1933         txq_cleanup(&tmpl);
1934         assert(ret > 0);
1935         return ret;
1936 }
1937
1938 /**
1939  * DPDK callback to configure a TX queue.
1940  *
1941  * @param dev
1942  *   Pointer to Ethernet device structure.
1943  * @param idx
1944  *   TX queue index.
1945  * @param desc
1946  *   Number of descriptors to configure in queue.
1947  * @param socket
1948  *   NUMA socket on which memory must be allocated.
1949  * @param[in] conf
1950  *   Thresholds parameters.
1951  *
1952  * @return
1953  *   0 on success, negative errno value on failure.
1954  */
1955 static int
1956 mlx4_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
1957                     unsigned int socket, const struct rte_eth_txconf *conf)
1958 {
1959         struct priv *priv = dev->data->dev_private;
1960         struct txq *txq = (*priv->txqs)[idx];
1961         int ret;
1962
1963         if (mlx4_is_secondary())
1964                 return -E_RTE_SECONDARY;
1965         priv_lock(priv);
1966         DEBUG("%p: configuring queue %u for %u descriptors",
1967               (void *)dev, idx, desc);
1968         if (idx >= priv->txqs_n) {
1969                 ERROR("%p: queue index out of range (%u >= %u)",
1970                       (void *)dev, idx, priv->txqs_n);
1971                 priv_unlock(priv);
1972                 return -EOVERFLOW;
1973         }
1974         if (txq != NULL) {
1975                 DEBUG("%p: reusing already allocated queue index %u (%p)",
1976                       (void *)dev, idx, (void *)txq);
1977                 if (priv->started) {
1978                         priv_unlock(priv);
1979                         return -EEXIST;
1980                 }
1981                 (*priv->txqs)[idx] = NULL;
1982                 txq_cleanup(txq);
1983         } else {
1984                 txq = rte_calloc_socket("TXQ", 1, sizeof(*txq), 0, socket);
1985                 if (txq == NULL) {
1986                         ERROR("%p: unable to allocate queue index %u",
1987                               (void *)dev, idx);
1988                         priv_unlock(priv);
1989                         return -ENOMEM;
1990                 }
1991         }
1992         ret = txq_setup(dev, txq, desc, socket, conf);
1993         if (ret)
1994                 rte_free(txq);
1995         else {
1996                 txq->stats.idx = idx;
1997                 DEBUG("%p: adding TX queue %p to list",
1998                       (void *)dev, (void *)txq);
1999                 (*priv->txqs)[idx] = txq;
2000                 /* Update send callback. */
2001                 dev->tx_pkt_burst = mlx4_tx_burst;
2002         }
2003         priv_unlock(priv);
2004         return -ret;
2005 }
2006
2007 /**
2008  * DPDK callback to release a TX queue.
2009  *
2010  * @param dpdk_txq
2011  *   Generic TX queue pointer.
2012  */
2013 static void
2014 mlx4_tx_queue_release(void *dpdk_txq)
2015 {
2016         struct txq *txq = (struct txq *)dpdk_txq;
2017         struct priv *priv;
2018         unsigned int i;
2019
2020         if (mlx4_is_secondary())
2021                 return;
2022         if (txq == NULL)
2023                 return;
2024         priv = txq->priv;
2025         priv_lock(priv);
2026         for (i = 0; (i != priv->txqs_n); ++i)
2027                 if ((*priv->txqs)[i] == txq) {
2028                         DEBUG("%p: removing TX queue %p from list",
2029                               (void *)priv->dev, (void *)txq);
2030                         (*priv->txqs)[i] = NULL;
2031                         break;
2032                 }
2033         txq_cleanup(txq);
2034         rte_free(txq);
2035         priv_unlock(priv);
2036 }
2037
2038 /* RX queues handling. */
2039
2040 /**
2041  * Allocate RX queue elements with scattered packets support.
2042  *
2043  * @param rxq
2044  *   Pointer to RX queue structure.
2045  * @param elts_n
2046  *   Number of elements to allocate.
2047  * @param[in] pool
2048  *   If not NULL, fetch buffers from this array instead of allocating them
2049  *   with rte_pktmbuf_alloc().
2050  *
2051  * @return
2052  *   0 on success, errno value on failure.
2053  */
2054 static int
2055 rxq_alloc_elts_sp(struct rxq *rxq, unsigned int elts_n,
2056                   struct rte_mbuf **pool)
2057 {
2058         unsigned int i;
2059         struct rxq_elt_sp (*elts)[elts_n] =
2060                 rte_calloc_socket("RXQ elements", 1, sizeof(*elts), 0,
2061                                   rxq->socket);
2062         int ret = 0;
2063
2064         if (elts == NULL) {
2065                 ERROR("%p: can't allocate packets array", (void *)rxq);
2066                 ret = ENOMEM;
2067                 goto error;
2068         }
2069         /* For each WR (packet). */
2070         for (i = 0; (i != elts_n); ++i) {
2071                 unsigned int j;
2072                 struct rxq_elt_sp *elt = &(*elts)[i];
2073                 struct ibv_recv_wr *wr = &elt->wr;
2074                 struct ibv_sge (*sges)[(elemof(elt->sges))] = &elt->sges;
2075
2076                 /* These two arrays must have the same size. */
2077                 assert(elemof(elt->sges) == elemof(elt->bufs));
2078                 /* Configure WR. */
2079                 wr->wr_id = i;
2080                 wr->next = &(*elts)[(i + 1)].wr;
2081                 wr->sg_list = &(*sges)[0];
2082                 wr->num_sge = elemof(*sges);
2083                 /* For each SGE (segment). */
2084                 for (j = 0; (j != elemof(elt->bufs)); ++j) {
2085                         struct ibv_sge *sge = &(*sges)[j];
2086                         struct rte_mbuf *buf;
2087
2088                         if (pool != NULL) {
2089                                 buf = *(pool++);
2090                                 assert(buf != NULL);
2091                                 rte_pktmbuf_reset(buf);
2092                         } else
2093                                 buf = rte_pktmbuf_alloc(rxq->mp);
2094                         if (buf == NULL) {
2095                                 assert(pool == NULL);
2096                                 ERROR("%p: empty mbuf pool", (void *)rxq);
2097                                 ret = ENOMEM;
2098                                 goto error;
2099                         }
2100                         elt->bufs[j] = buf;
2101                         /* Headroom is reserved by rte_pktmbuf_alloc(). */
2102                         assert(DATA_OFF(buf) == RTE_PKTMBUF_HEADROOM);
2103                         /* Buffer is supposed to be empty. */
2104                         assert(rte_pktmbuf_data_len(buf) == 0);
2105                         assert(rte_pktmbuf_pkt_len(buf) == 0);
2106                         /* sge->addr must be able to store a pointer. */
2107                         assert(sizeof(sge->addr) >= sizeof(uintptr_t));
2108                         if (j == 0) {
2109                                 /* The first SGE keeps its headroom. */
2110                                 sge->addr = rte_pktmbuf_mtod(buf, uintptr_t);
2111                                 sge->length = (buf->buf_len -
2112                                                RTE_PKTMBUF_HEADROOM);
2113                         } else {
2114                                 /* Subsequent SGEs lose theirs. */
2115                                 assert(DATA_OFF(buf) == RTE_PKTMBUF_HEADROOM);
2116                                 SET_DATA_OFF(buf, 0);
2117                                 sge->addr = (uintptr_t)buf->buf_addr;
2118                                 sge->length = buf->buf_len;
2119                         }
2120                         sge->lkey = rxq->mr->lkey;
2121                         /* Redundant check for tailroom. */
2122                         assert(sge->length == rte_pktmbuf_tailroom(buf));
2123                 }
2124         }
2125         /* The last WR pointer must be NULL. */
2126         (*elts)[(i - 1)].wr.next = NULL;
2127         DEBUG("%p: allocated and configured %u WRs (%zu segments)",
2128               (void *)rxq, elts_n, (elts_n * elemof((*elts)[0].sges)));
2129         rxq->elts_n = elts_n;
2130         rxq->elts_head = 0;
2131         rxq->elts.sp = elts;
2132         assert(ret == 0);
2133         return 0;
2134 error:
2135         if (elts != NULL) {
2136                 assert(pool == NULL);
2137                 for (i = 0; (i != elemof(*elts)); ++i) {
2138                         unsigned int j;
2139                         struct rxq_elt_sp *elt = &(*elts)[i];
2140
2141                         for (j = 0; (j != elemof(elt->bufs)); ++j) {
2142                                 struct rte_mbuf *buf = elt->bufs[j];
2143
2144                                 if (buf != NULL)
2145                                         rte_pktmbuf_free_seg(buf);
2146                         }
2147                 }
2148                 rte_free(elts);
2149         }
2150         DEBUG("%p: failed, freed everything", (void *)rxq);
2151         assert(ret > 0);
2152         return ret;
2153 }
2154
2155 /**
2156  * Free RX queue elements with scattered packets support.
2157  *
2158  * @param rxq
2159  *   Pointer to RX queue structure.
2160  */
2161 static void
2162 rxq_free_elts_sp(struct rxq *rxq)
2163 {
2164         unsigned int i;
2165         unsigned int elts_n = rxq->elts_n;
2166         struct rxq_elt_sp (*elts)[elts_n] = rxq->elts.sp;
2167
2168         DEBUG("%p: freeing WRs", (void *)rxq);
2169         rxq->elts_n = 0;
2170         rxq->elts.sp = NULL;
2171         if (elts == NULL)
2172                 return;
2173         for (i = 0; (i != elemof(*elts)); ++i) {
2174                 unsigned int j;
2175                 struct rxq_elt_sp *elt = &(*elts)[i];
2176
2177                 for (j = 0; (j != elemof(elt->bufs)); ++j) {
2178                         struct rte_mbuf *buf = elt->bufs[j];
2179
2180                         if (buf != NULL)
2181                                 rte_pktmbuf_free_seg(buf);
2182                 }
2183         }
2184         rte_free(elts);
2185 }
2186
2187 /**
2188  * Allocate RX queue elements.
2189  *
2190  * @param rxq
2191  *   Pointer to RX queue structure.
2192  * @param elts_n
2193  *   Number of elements to allocate.
2194  * @param[in] pool
2195  *   If not NULL, fetch buffers from this array instead of allocating them
2196  *   with rte_pktmbuf_alloc().
2197  *
2198  * @return
2199  *   0 on success, errno value on failure.
2200  */
2201 static int
2202 rxq_alloc_elts(struct rxq *rxq, unsigned int elts_n, struct rte_mbuf **pool)
2203 {
2204         unsigned int i;
2205         struct rxq_elt (*elts)[elts_n] =
2206                 rte_calloc_socket("RXQ elements", 1, sizeof(*elts), 0,
2207                                   rxq->socket);
2208         int ret = 0;
2209
2210         if (elts == NULL) {
2211                 ERROR("%p: can't allocate packets array", (void *)rxq);
2212                 ret = ENOMEM;
2213                 goto error;
2214         }
2215         /* For each WR (packet). */
2216         for (i = 0; (i != elts_n); ++i) {
2217                 struct rxq_elt *elt = &(*elts)[i];
2218                 struct ibv_recv_wr *wr = &elt->wr;
2219                 struct ibv_sge *sge = &(*elts)[i].sge;
2220                 struct rte_mbuf *buf;
2221
2222                 if (pool != NULL) {
2223                         buf = *(pool++);
2224                         assert(buf != NULL);
2225                         rte_pktmbuf_reset(buf);
2226                 } else
2227                         buf = rte_pktmbuf_alloc(rxq->mp);
2228                 if (buf == NULL) {
2229                         assert(pool == NULL);
2230                         ERROR("%p: empty mbuf pool", (void *)rxq);
2231                         ret = ENOMEM;
2232                         goto error;
2233                 }
2234                 /* Configure WR. Work request ID contains its own index in
2235                  * the elts array and the offset between SGE buffer header and
2236                  * its data. */
2237                 WR_ID(wr->wr_id).id = i;
2238                 WR_ID(wr->wr_id).offset =
2239                         (((uintptr_t)buf->buf_addr + RTE_PKTMBUF_HEADROOM) -
2240                          (uintptr_t)buf);
2241                 wr->next = &(*elts)[(i + 1)].wr;
2242                 wr->sg_list = sge;
2243                 wr->num_sge = 1;
2244                 /* Headroom is reserved by rte_pktmbuf_alloc(). */
2245                 assert(DATA_OFF(buf) == RTE_PKTMBUF_HEADROOM);
2246                 /* Buffer is supposed to be empty. */
2247                 assert(rte_pktmbuf_data_len(buf) == 0);
2248                 assert(rte_pktmbuf_pkt_len(buf) == 0);
2249                 /* sge->addr must be able to store a pointer. */
2250                 assert(sizeof(sge->addr) >= sizeof(uintptr_t));
2251                 /* SGE keeps its headroom. */
2252                 sge->addr = (uintptr_t)
2253                         ((uint8_t *)buf->buf_addr + RTE_PKTMBUF_HEADROOM);
2254                 sge->length = (buf->buf_len - RTE_PKTMBUF_HEADROOM);
2255                 sge->lkey = rxq->mr->lkey;
2256                 /* Redundant check for tailroom. */
2257                 assert(sge->length == rte_pktmbuf_tailroom(buf));
2258                 /* Make sure elts index and SGE mbuf pointer can be deduced
2259                  * from WR ID. */
2260                 if ((WR_ID(wr->wr_id).id != i) ||
2261                     ((void *)((uintptr_t)sge->addr -
2262                         WR_ID(wr->wr_id).offset) != buf)) {
2263                         ERROR("%p: cannot store index and offset in WR ID",
2264                               (void *)rxq);
2265                         sge->addr = 0;
2266                         rte_pktmbuf_free(buf);
2267                         ret = EOVERFLOW;
2268                         goto error;
2269                 }
2270         }
2271         /* The last WR pointer must be NULL. */
2272         (*elts)[(i - 1)].wr.next = NULL;
2273         DEBUG("%p: allocated and configured %u single-segment WRs",
2274               (void *)rxq, elts_n);
2275         rxq->elts_n = elts_n;
2276         rxq->elts_head = 0;
2277         rxq->elts.no_sp = elts;
2278         assert(ret == 0);
2279         return 0;
2280 error:
2281         if (elts != NULL) {
2282                 assert(pool == NULL);
2283                 for (i = 0; (i != elemof(*elts)); ++i) {
2284                         struct rxq_elt *elt = &(*elts)[i];
2285                         struct rte_mbuf *buf;
2286
2287                         if (elt->sge.addr == 0)
2288                                 continue;
2289                         assert(WR_ID(elt->wr.wr_id).id == i);
2290                         buf = (void *)((uintptr_t)elt->sge.addr -
2291                                 WR_ID(elt->wr.wr_id).offset);
2292                         rte_pktmbuf_free_seg(buf);
2293                 }
2294                 rte_free(elts);
2295         }
2296         DEBUG("%p: failed, freed everything", (void *)rxq);
2297         assert(ret > 0);
2298         return ret;
2299 }
2300
2301 /**
2302  * Free RX queue elements.
2303  *
2304  * @param rxq
2305  *   Pointer to RX queue structure.
2306  */
2307 static void
2308 rxq_free_elts(struct rxq *rxq)
2309 {
2310         unsigned int i;
2311         unsigned int elts_n = rxq->elts_n;
2312         struct rxq_elt (*elts)[elts_n] = rxq->elts.no_sp;
2313
2314         DEBUG("%p: freeing WRs", (void *)rxq);
2315         rxq->elts_n = 0;
2316         rxq->elts.no_sp = NULL;
2317         if (elts == NULL)
2318                 return;
2319         for (i = 0; (i != elemof(*elts)); ++i) {
2320                 struct rxq_elt *elt = &(*elts)[i];
2321                 struct rte_mbuf *buf;
2322
2323                 if (elt->sge.addr == 0)
2324                         continue;
2325                 assert(WR_ID(elt->wr.wr_id).id == i);
2326                 buf = (void *)((uintptr_t)elt->sge.addr -
2327                         WR_ID(elt->wr.wr_id).offset);
2328                 rte_pktmbuf_free_seg(buf);
2329         }
2330         rte_free(elts);
2331 }
2332
2333 /**
2334  * Delete flow steering rule.
2335  *
2336  * @param rxq
2337  *   Pointer to RX queue structure.
2338  * @param mac_index
2339  *   MAC address index.
2340  * @param vlan_index
2341  *   VLAN index.
2342  */
2343 static void
2344 rxq_del_flow(struct rxq *rxq, unsigned int mac_index, unsigned int vlan_index)
2345 {
2346 #ifndef NDEBUG
2347         struct priv *priv = rxq->priv;
2348         const uint8_t (*mac)[ETHER_ADDR_LEN] =
2349                 (const uint8_t (*)[ETHER_ADDR_LEN])
2350                 priv->mac[mac_index].addr_bytes;
2351 #endif
2352         assert(rxq->mac_flow[mac_index][vlan_index] != NULL);
2353         DEBUG("%p: removing MAC address %02x:%02x:%02x:%02x:%02x:%02x index %u"
2354               " (VLAN ID %" PRIu16 ")",
2355               (void *)rxq,
2356               (*mac)[0], (*mac)[1], (*mac)[2], (*mac)[3], (*mac)[4], (*mac)[5],
2357               mac_index, priv->vlan_filter[vlan_index].id);
2358         claim_zero(ibv_destroy_flow(rxq->mac_flow[mac_index][vlan_index]));
2359         rxq->mac_flow[mac_index][vlan_index] = NULL;
2360 }
2361
2362 /**
2363  * Unregister a MAC address from a RX queue.
2364  *
2365  * @param rxq
2366  *   Pointer to RX queue structure.
2367  * @param mac_index
2368  *   MAC address index.
2369  */
2370 static void
2371 rxq_mac_addr_del(struct rxq *rxq, unsigned int mac_index)
2372 {
2373         struct priv *priv = rxq->priv;
2374         unsigned int i;
2375         unsigned int vlans = 0;
2376
2377         assert(mac_index < elemof(priv->mac));
2378         if (!BITFIELD_ISSET(rxq->mac_configured, mac_index))
2379                 return;
2380         for (i = 0; (i != elemof(priv->vlan_filter)); ++i) {
2381                 if (!priv->vlan_filter[i].enabled)
2382                         continue;
2383                 rxq_del_flow(rxq, mac_index, i);
2384                 vlans++;
2385         }
2386         if (!vlans) {
2387                 rxq_del_flow(rxq, mac_index, 0);
2388         }
2389         BITFIELD_RESET(rxq->mac_configured, mac_index);
2390 }
2391
2392 /**
2393  * Unregister all MAC addresses from a RX queue.
2394  *
2395  * @param rxq
2396  *   Pointer to RX queue structure.
2397  */
2398 static void
2399 rxq_mac_addrs_del(struct rxq *rxq)
2400 {
2401         struct priv *priv = rxq->priv;
2402         unsigned int i;
2403
2404         for (i = 0; (i != elemof(priv->mac)); ++i)
2405                 rxq_mac_addr_del(rxq, i);
2406 }
2407
2408 static int rxq_promiscuous_enable(struct rxq *);
2409 static void rxq_promiscuous_disable(struct rxq *);
2410
2411 /**
2412  * Add single flow steering rule.
2413  *
2414  * @param rxq
2415  *   Pointer to RX queue structure.
2416  * @param mac_index
2417  *   MAC address index to register.
2418  * @param vlan_index
2419  *   VLAN index. Use -1 for a flow without VLAN.
2420  *
2421  * @return
2422  *   0 on success, errno value on failure.
2423  */
2424 static int
2425 rxq_add_flow(struct rxq *rxq, unsigned int mac_index, unsigned int vlan_index)
2426 {
2427         struct ibv_flow *flow;
2428         struct priv *priv = rxq->priv;
2429         const uint8_t (*mac)[ETHER_ADDR_LEN] =
2430                         (const uint8_t (*)[ETHER_ADDR_LEN])
2431                         priv->mac[mac_index].addr_bytes;
2432
2433         /* Allocate flow specification on the stack. */
2434         struct __attribute__((packed)) {
2435                 struct ibv_flow_attr attr;
2436                 struct ibv_flow_spec_eth spec;
2437         } data;
2438         struct ibv_flow_attr *attr = &data.attr;
2439         struct ibv_flow_spec_eth *spec = &data.spec;
2440
2441         assert(mac_index < elemof(priv->mac));
2442         assert((vlan_index < elemof(priv->vlan_filter)) || (vlan_index == -1u));
2443         /*
2444          * No padding must be inserted by the compiler between attr and spec.
2445          * This layout is expected by libibverbs.
2446          */
2447         assert(((uint8_t *)attr + sizeof(*attr)) == (uint8_t *)spec);
2448         *attr = (struct ibv_flow_attr){
2449                 .type = IBV_FLOW_ATTR_NORMAL,
2450                 .priority = 3,
2451                 .num_of_specs = 1,
2452                 .port = priv->port,
2453                 .flags = 0
2454         };
2455         *spec = (struct ibv_flow_spec_eth){
2456                 .type = IBV_FLOW_SPEC_ETH,
2457                 .size = sizeof(*spec),
2458                 .val = {
2459                         .dst_mac = {
2460                                 (*mac)[0], (*mac)[1], (*mac)[2],
2461                                 (*mac)[3], (*mac)[4], (*mac)[5]
2462                         },
2463                         .vlan_tag = ((vlan_index != -1u) ?
2464                                      htons(priv->vlan_filter[vlan_index].id) :
2465                                      0),
2466                 },
2467                 .mask = {
2468                         .dst_mac = "\xff\xff\xff\xff\xff\xff",
2469                         .vlan_tag = ((vlan_index != -1u) ? htons(0xfff) : 0),
2470                 }
2471         };
2472         DEBUG("%p: adding MAC address %02x:%02x:%02x:%02x:%02x:%02x index %u"
2473               " (VLAN %s %" PRIu16 ")",
2474               (void *)rxq,
2475               (*mac)[0], (*mac)[1], (*mac)[2], (*mac)[3], (*mac)[4], (*mac)[5],
2476               mac_index,
2477               ((vlan_index != -1u) ? "ID" : "index"),
2478               ((vlan_index != -1u) ? priv->vlan_filter[vlan_index].id : -1u));
2479         /* Create related flow. */
2480         errno = 0;
2481         flow = ibv_create_flow(rxq->qp, attr);
2482         if (flow == NULL) {
2483                 /* It's not clear whether errno is always set in this case. */
2484                 ERROR("%p: flow configuration failed, errno=%d: %s",
2485                       (void *)rxq, errno,
2486                       (errno ? strerror(errno) : "Unknown error"));
2487                 if (errno)
2488                         return errno;
2489                 return EINVAL;
2490         }
2491         if (vlan_index == -1u)
2492                 vlan_index = 0;
2493         assert(rxq->mac_flow[mac_index][vlan_index] == NULL);
2494         rxq->mac_flow[mac_index][vlan_index] = flow;
2495         return 0;
2496 }
2497
2498 /**
2499  * Register a MAC address in a RX queue.
2500  *
2501  * @param rxq
2502  *   Pointer to RX queue structure.
2503  * @param mac_index
2504  *   MAC address index to register.
2505  *
2506  * @return
2507  *   0 on success, errno value on failure.
2508  */
2509 static int
2510 rxq_mac_addr_add(struct rxq *rxq, unsigned int mac_index)
2511 {
2512         struct priv *priv = rxq->priv;
2513         unsigned int i;
2514         unsigned int vlans = 0;
2515         int ret;
2516
2517         assert(mac_index < elemof(priv->mac));
2518         if (BITFIELD_ISSET(rxq->mac_configured, mac_index))
2519                 rxq_mac_addr_del(rxq, mac_index);
2520         /* Fill VLAN specifications. */
2521         for (i = 0; (i != elemof(priv->vlan_filter)); ++i) {
2522                 if (!priv->vlan_filter[i].enabled)
2523                         continue;
2524                 /* Create related flow. */
2525                 ret = rxq_add_flow(rxq, mac_index, i);
2526                 if (!ret) {
2527                         vlans++;
2528                         continue;
2529                 }
2530                 /* Failure, rollback. */
2531                 while (i != 0)
2532                         if (priv->vlan_filter[--i].enabled)
2533                                 rxq_del_flow(rxq, mac_index, i);
2534                 assert(ret > 0);
2535                 return ret;
2536         }
2537         /* In case there is no VLAN filter. */
2538         if (!vlans) {
2539                 ret = rxq_add_flow(rxq, mac_index, -1);
2540                 if (ret)
2541                         return ret;
2542         }
2543         BITFIELD_SET(rxq->mac_configured, mac_index);
2544         return 0;
2545 }
2546
2547 /**
2548  * Register all MAC addresses in a RX queue.
2549  *
2550  * @param rxq
2551  *   Pointer to RX queue structure.
2552  *
2553  * @return
2554  *   0 on success, errno value on failure.
2555  */
2556 static int
2557 rxq_mac_addrs_add(struct rxq *rxq)
2558 {
2559         struct priv *priv = rxq->priv;
2560         unsigned int i;
2561         int ret;
2562
2563         for (i = 0; (i != elemof(priv->mac)); ++i) {
2564                 if (!BITFIELD_ISSET(priv->mac_configured, i))
2565                         continue;
2566                 ret = rxq_mac_addr_add(rxq, i);
2567                 if (!ret)
2568                         continue;
2569                 /* Failure, rollback. */
2570                 while (i != 0)
2571                         rxq_mac_addr_del(rxq, --i);
2572                 assert(ret > 0);
2573                 return ret;
2574         }
2575         return 0;
2576 }
2577
2578 /**
2579  * Unregister a MAC address.
2580  *
2581  * In RSS mode, the MAC address is unregistered from the parent queue,
2582  * otherwise it is unregistered from each queue directly.
2583  *
2584  * @param priv
2585  *   Pointer to private structure.
2586  * @param mac_index
2587  *   MAC address index.
2588  */
2589 static void
2590 priv_mac_addr_del(struct priv *priv, unsigned int mac_index)
2591 {
2592         unsigned int i;
2593
2594         assert(!priv->isolated);
2595         assert(mac_index < elemof(priv->mac));
2596         if (!BITFIELD_ISSET(priv->mac_configured, mac_index))
2597                 return;
2598         if (priv->rss) {
2599                 rxq_mac_addr_del(LIST_FIRST(&priv->parents), mac_index);
2600                 goto end;
2601         }
2602         for (i = 0; (i != priv->dev->data->nb_rx_queues); ++i)
2603                 rxq_mac_addr_del((*priv->rxqs)[i], mac_index);
2604 end:
2605         BITFIELD_RESET(priv->mac_configured, mac_index);
2606 }
2607
2608 /**
2609  * Register a MAC address.
2610  *
2611  * In RSS mode, the MAC address is registered in the parent queue,
2612  * otherwise it is registered in each queue directly.
2613  *
2614  * @param priv
2615  *   Pointer to private structure.
2616  * @param mac_index
2617  *   MAC address index to use.
2618  * @param mac
2619  *   MAC address to register.
2620  *
2621  * @return
2622  *   0 on success, errno value on failure.
2623  */
2624 static int
2625 priv_mac_addr_add(struct priv *priv, unsigned int mac_index,
2626                   const uint8_t (*mac)[ETHER_ADDR_LEN])
2627 {
2628         unsigned int i;
2629         int ret;
2630
2631         assert(mac_index < elemof(priv->mac));
2632         /* First, make sure this address isn't already configured. */
2633         for (i = 0; (i != elemof(priv->mac)); ++i) {
2634                 /* Skip this index, it's going to be reconfigured. */
2635                 if (i == mac_index)
2636                         continue;
2637                 if (!BITFIELD_ISSET(priv->mac_configured, i))
2638                         continue;
2639                 if (memcmp(priv->mac[i].addr_bytes, *mac, sizeof(*mac)))
2640                         continue;
2641                 /* Address already configured elsewhere, return with error. */
2642                 return EADDRINUSE;
2643         }
2644         if (BITFIELD_ISSET(priv->mac_configured, mac_index))
2645                 priv_mac_addr_del(priv, mac_index);
2646         priv->mac[mac_index] = (struct ether_addr){
2647                 {
2648                         (*mac)[0], (*mac)[1], (*mac)[2],
2649                         (*mac)[3], (*mac)[4], (*mac)[5]
2650                 }
2651         };
2652         /* If device isn't started, this is all we need to do. */
2653         if (!priv->started) {
2654 #ifndef NDEBUG
2655                 /* Verify that all queues have this index disabled. */
2656                 for (i = 0; (i != priv->rxqs_n); ++i) {
2657                         if ((*priv->rxqs)[i] == NULL)
2658                                 continue;
2659                         assert(!BITFIELD_ISSET
2660                                ((*priv->rxqs)[i]->mac_configured, mac_index));
2661                 }
2662 #endif
2663                 goto end;
2664         }
2665         if (priv->rss) {
2666                 ret = rxq_mac_addr_add(LIST_FIRST(&priv->parents), mac_index);
2667                 if (ret)
2668                         return ret;
2669                 goto end;
2670         }
2671         for (i = 0; (i != priv->rxqs_n); ++i) {
2672                 if ((*priv->rxqs)[i] == NULL)
2673                         continue;
2674                 ret = rxq_mac_addr_add((*priv->rxqs)[i], mac_index);
2675                 if (!ret)
2676                         continue;
2677                 /* Failure, rollback. */
2678                 while (i != 0)
2679                         if ((*priv->rxqs)[(--i)] != NULL)
2680                                 rxq_mac_addr_del((*priv->rxqs)[i], mac_index);
2681                 return ret;
2682         }
2683 end:
2684         BITFIELD_SET(priv->mac_configured, mac_index);
2685         return 0;
2686 }
2687
2688 /**
2689  * Enable allmulti mode in a RX queue.
2690  *
2691  * @param rxq
2692  *   Pointer to RX queue structure.
2693  *
2694  * @return
2695  *   0 on success, errno value on failure.
2696  */
2697 static int
2698 rxq_allmulticast_enable(struct rxq *rxq)
2699 {
2700         struct ibv_flow *flow;
2701         struct ibv_flow_attr attr = {
2702                 .type = IBV_FLOW_ATTR_MC_DEFAULT,
2703                 .num_of_specs = 0,
2704                 .port = rxq->priv->port,
2705                 .flags = 0
2706         };
2707
2708         DEBUG("%p: enabling allmulticast mode", (void *)rxq);
2709         if (rxq->allmulti_flow != NULL)
2710                 return EBUSY;
2711         errno = 0;
2712         flow = ibv_create_flow(rxq->qp, &attr);
2713         if (flow == NULL) {
2714                 /* It's not clear whether errno is always set in this case. */
2715                 ERROR("%p: flow configuration failed, errno=%d: %s",
2716                       (void *)rxq, errno,
2717                       (errno ? strerror(errno) : "Unknown error"));
2718                 if (errno)
2719                         return errno;
2720                 return EINVAL;
2721         }
2722         rxq->allmulti_flow = flow;
2723         DEBUG("%p: allmulticast mode enabled", (void *)rxq);
2724         return 0;
2725 }
2726
2727 /**
2728  * Disable allmulti mode in a RX queue.
2729  *
2730  * @param rxq
2731  *   Pointer to RX queue structure.
2732  */
2733 static void
2734 rxq_allmulticast_disable(struct rxq *rxq)
2735 {
2736         DEBUG("%p: disabling allmulticast mode", (void *)rxq);
2737         if (rxq->allmulti_flow == NULL)
2738                 return;
2739         claim_zero(ibv_destroy_flow(rxq->allmulti_flow));
2740         rxq->allmulti_flow = NULL;
2741         DEBUG("%p: allmulticast mode disabled", (void *)rxq);
2742 }
2743
2744 /**
2745  * Enable promiscuous mode in a RX queue.
2746  *
2747  * @param rxq
2748  *   Pointer to RX queue structure.
2749  *
2750  * @return
2751  *   0 on success, errno value on failure.
2752  */
2753 static int
2754 rxq_promiscuous_enable(struct rxq *rxq)
2755 {
2756         struct ibv_flow *flow;
2757         struct ibv_flow_attr attr = {
2758                 .type = IBV_FLOW_ATTR_ALL_DEFAULT,
2759                 .num_of_specs = 0,
2760                 .port = rxq->priv->port,
2761                 .flags = 0
2762         };
2763
2764         if (rxq->priv->vf)
2765                 return 0;
2766         DEBUG("%p: enabling promiscuous mode", (void *)rxq);
2767         if (rxq->promisc_flow != NULL)
2768                 return EBUSY;
2769         errno = 0;
2770         flow = ibv_create_flow(rxq->qp, &attr);
2771         if (flow == NULL) {
2772                 /* It's not clear whether errno is always set in this case. */
2773                 ERROR("%p: flow configuration failed, errno=%d: %s",
2774                       (void *)rxq, errno,
2775                       (errno ? strerror(errno) : "Unknown error"));
2776                 if (errno)
2777                         return errno;
2778                 return EINVAL;
2779         }
2780         rxq->promisc_flow = flow;
2781         DEBUG("%p: promiscuous mode enabled", (void *)rxq);
2782         return 0;
2783 }
2784
2785 /**
2786  * Disable promiscuous mode in a RX queue.
2787  *
2788  * @param rxq
2789  *   Pointer to RX queue structure.
2790  */
2791 static void
2792 rxq_promiscuous_disable(struct rxq *rxq)
2793 {
2794         if (rxq->priv->vf)
2795                 return;
2796         DEBUG("%p: disabling promiscuous mode", (void *)rxq);
2797         if (rxq->promisc_flow == NULL)
2798                 return;
2799         claim_zero(ibv_destroy_flow(rxq->promisc_flow));
2800         rxq->promisc_flow = NULL;
2801         DEBUG("%p: promiscuous mode disabled", (void *)rxq);
2802 }
2803
2804 /**
2805  * Clean up a RX queue.
2806  *
2807  * Destroy objects, free allocated memory and reset the structure for reuse.
2808  *
2809  * @param rxq
2810  *   Pointer to RX queue structure.
2811  */
2812 static void
2813 rxq_cleanup(struct rxq *rxq)
2814 {
2815         struct ibv_exp_release_intf_params params;
2816
2817         DEBUG("cleaning up %p", (void *)rxq);
2818         if (rxq->sp)
2819                 rxq_free_elts_sp(rxq);
2820         else
2821                 rxq_free_elts(rxq);
2822         if (rxq->if_qp != NULL) {
2823                 assert(rxq->priv != NULL);
2824                 assert(rxq->priv->ctx != NULL);
2825                 assert(rxq->qp != NULL);
2826                 params = (struct ibv_exp_release_intf_params){
2827                         .comp_mask = 0,
2828                 };
2829                 claim_zero(ibv_exp_release_intf(rxq->priv->ctx,
2830                                                 rxq->if_qp,
2831                                                 &params));
2832         }
2833         if (rxq->if_cq != NULL) {
2834                 assert(rxq->priv != NULL);
2835                 assert(rxq->priv->ctx != NULL);
2836                 assert(rxq->cq != NULL);
2837                 params = (struct ibv_exp_release_intf_params){
2838                         .comp_mask = 0,
2839                 };
2840                 claim_zero(ibv_exp_release_intf(rxq->priv->ctx,
2841                                                 rxq->if_cq,
2842                                                 &params));
2843         }
2844         if (rxq->qp != NULL && !rxq->priv->isolated) {
2845                 rxq_promiscuous_disable(rxq);
2846                 rxq_allmulticast_disable(rxq);
2847                 rxq_mac_addrs_del(rxq);
2848         }
2849         if (rxq->qp != NULL)
2850                 claim_zero(ibv_destroy_qp(rxq->qp));
2851         if (rxq->cq != NULL)
2852                 claim_zero(ibv_destroy_cq(rxq->cq));
2853         if (rxq->channel != NULL)
2854                 claim_zero(ibv_destroy_comp_channel(rxq->channel));
2855         if (rxq->rd != NULL) {
2856                 struct ibv_exp_destroy_res_domain_attr attr = {
2857                         .comp_mask = 0,
2858                 };
2859
2860                 assert(rxq->priv != NULL);
2861                 assert(rxq->priv->ctx != NULL);
2862                 claim_zero(ibv_exp_destroy_res_domain(rxq->priv->ctx,
2863                                                       rxq->rd,
2864                                                       &attr));
2865         }
2866         if (rxq->mr != NULL)
2867                 claim_zero(ibv_dereg_mr(rxq->mr));
2868         memset(rxq, 0, sizeof(*rxq));
2869 }
2870
2871 /**
2872  * Translate RX completion flags to packet type.
2873  *
2874  * @param flags
2875  *   RX completion flags returned by poll_length_flags().
2876  *
2877  * @note: fix mlx4_dev_supported_ptypes_get() if any change here.
2878  *
2879  * @return
2880  *   Packet type for struct rte_mbuf.
2881  */
2882 static inline uint32_t
2883 rxq_cq_to_pkt_type(uint32_t flags)
2884 {
2885         uint32_t pkt_type;
2886
2887         if (flags & IBV_EXP_CQ_RX_TUNNEL_PACKET)
2888                 pkt_type =
2889                         TRANSPOSE(flags,
2890                                   IBV_EXP_CQ_RX_OUTER_IPV4_PACKET,
2891                                   RTE_PTYPE_L3_IPV4_EXT_UNKNOWN) |
2892                         TRANSPOSE(flags,
2893                                   IBV_EXP_CQ_RX_OUTER_IPV6_PACKET,
2894                                   RTE_PTYPE_L3_IPV6_EXT_UNKNOWN) |
2895                         TRANSPOSE(flags,
2896                                   IBV_EXP_CQ_RX_IPV4_PACKET,
2897                                   RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN) |
2898                         TRANSPOSE(flags,
2899                                   IBV_EXP_CQ_RX_IPV6_PACKET,
2900                                   RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN);
2901         else
2902                 pkt_type =
2903                         TRANSPOSE(flags,
2904                                   IBV_EXP_CQ_RX_IPV4_PACKET,
2905                                   RTE_PTYPE_L3_IPV4_EXT_UNKNOWN) |
2906                         TRANSPOSE(flags,
2907                                   IBV_EXP_CQ_RX_IPV6_PACKET,
2908                                   RTE_PTYPE_L3_IPV6_EXT_UNKNOWN);
2909         return pkt_type;
2910 }
2911
2912 /**
2913  * Translate RX completion flags to offload flags.
2914  *
2915  * @param[in] rxq
2916  *   Pointer to RX queue structure.
2917  * @param flags
2918  *   RX completion flags returned by poll_length_flags().
2919  *
2920  * @return
2921  *   Offload flags (ol_flags) for struct rte_mbuf.
2922  */
2923 static inline uint32_t
2924 rxq_cq_to_ol_flags(const struct rxq *rxq, uint32_t flags)
2925 {
2926         uint32_t ol_flags = 0;
2927
2928         if (rxq->csum)
2929                 ol_flags |=
2930                         TRANSPOSE(flags,
2931                                   IBV_EXP_CQ_RX_IP_CSUM_OK,
2932                                   PKT_RX_IP_CKSUM_GOOD) |
2933                         TRANSPOSE(flags,
2934                                   IBV_EXP_CQ_RX_TCP_UDP_CSUM_OK,
2935                                   PKT_RX_L4_CKSUM_GOOD);
2936         if ((flags & IBV_EXP_CQ_RX_TUNNEL_PACKET) && (rxq->csum_l2tun))
2937                 ol_flags |=
2938                         TRANSPOSE(flags,
2939                                   IBV_EXP_CQ_RX_OUTER_IP_CSUM_OK,
2940                                   PKT_RX_IP_CKSUM_GOOD) |
2941                         TRANSPOSE(flags,
2942                                   IBV_EXP_CQ_RX_OUTER_TCP_UDP_CSUM_OK,
2943                                   PKT_RX_L4_CKSUM_GOOD);
2944         return ol_flags;
2945 }
2946
2947 static uint16_t
2948 mlx4_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n);
2949
2950 /**
2951  * DPDK callback for RX with scattered packets support.
2952  *
2953  * @param dpdk_rxq
2954  *   Generic pointer to RX queue structure.
2955  * @param[out] pkts
2956  *   Array to store received packets.
2957  * @param pkts_n
2958  *   Maximum number of packets in array.
2959  *
2960  * @return
2961  *   Number of packets successfully received (<= pkts_n).
2962  */
2963 static uint16_t
2964 mlx4_rx_burst_sp(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
2965 {
2966         struct rxq *rxq = (struct rxq *)dpdk_rxq;
2967         struct rxq_elt_sp (*elts)[rxq->elts_n] = rxq->elts.sp;
2968         const unsigned int elts_n = rxq->elts_n;
2969         unsigned int elts_head = rxq->elts_head;
2970         struct ibv_recv_wr head;
2971         struct ibv_recv_wr **next = &head.next;
2972         struct ibv_recv_wr *bad_wr;
2973         unsigned int i;
2974         unsigned int pkts_ret = 0;
2975         int ret;
2976
2977         if (unlikely(!rxq->sp))
2978                 return mlx4_rx_burst(dpdk_rxq, pkts, pkts_n);
2979         if (unlikely(elts == NULL)) /* See RTE_DEV_CMD_SET_MTU. */
2980                 return 0;
2981         for (i = 0; (i != pkts_n); ++i) {
2982                 struct rxq_elt_sp *elt = &(*elts)[elts_head];
2983                 struct ibv_recv_wr *wr = &elt->wr;
2984                 uint64_t wr_id = wr->wr_id;
2985                 unsigned int len;
2986                 unsigned int pkt_buf_len;
2987                 struct rte_mbuf *pkt_buf = NULL; /* Buffer returned in pkts. */
2988                 struct rte_mbuf **pkt_buf_next = &pkt_buf;
2989                 unsigned int seg_headroom = RTE_PKTMBUF_HEADROOM;
2990                 unsigned int j = 0;
2991                 uint32_t flags;
2992
2993                 /* Sanity checks. */
2994 #ifdef NDEBUG
2995                 (void)wr_id;
2996 #endif
2997                 assert(wr_id < rxq->elts_n);
2998                 assert(wr->sg_list == elt->sges);
2999                 assert(wr->num_sge == elemof(elt->sges));
3000                 assert(elts_head < rxq->elts_n);
3001                 assert(rxq->elts_head < rxq->elts_n);
3002                 ret = rxq->if_cq->poll_length_flags(rxq->cq, NULL, NULL,
3003                                                     &flags);
3004                 if (unlikely(ret < 0)) {
3005                         struct ibv_wc wc;
3006                         int wcs_n;
3007
3008                         DEBUG("rxq=%p, poll_length() failed (ret=%d)",
3009                               (void *)rxq, ret);
3010                         /* ibv_poll_cq() must be used in case of failure. */
3011                         wcs_n = ibv_poll_cq(rxq->cq, 1, &wc);
3012                         if (unlikely(wcs_n == 0))
3013                                 break;
3014                         if (unlikely(wcs_n < 0)) {
3015                                 DEBUG("rxq=%p, ibv_poll_cq() failed (wcs_n=%d)",
3016                                       (void *)rxq, wcs_n);
3017                                 break;
3018                         }
3019                         assert(wcs_n == 1);
3020                         if (unlikely(wc.status != IBV_WC_SUCCESS)) {
3021                                 /* Whatever, just repost the offending WR. */
3022                                 DEBUG("rxq=%p, wr_id=%" PRIu64 ": bad work"
3023                                       " completion status (%d): %s",
3024                                       (void *)rxq, wc.wr_id, wc.status,
3025                                       ibv_wc_status_str(wc.status));
3026 #ifdef MLX4_PMD_SOFT_COUNTERS
3027                                 /* Increment dropped packets counter. */
3028                                 ++rxq->stats.idropped;
3029 #endif
3030                                 /* Link completed WRs together for repost. */
3031                                 *next = wr;
3032                                 next = &wr->next;
3033                                 goto repost;
3034                         }
3035                         ret = wc.byte_len;
3036                 }
3037                 if (ret == 0)
3038                         break;
3039                 len = ret;
3040                 pkt_buf_len = len;
3041                 /* Link completed WRs together for repost. */
3042                 *next = wr;
3043                 next = &wr->next;
3044                 /*
3045                  * Replace spent segments with new ones, concatenate and
3046                  * return them as pkt_buf.
3047                  */
3048                 while (1) {
3049                         struct ibv_sge *sge = &elt->sges[j];
3050                         struct rte_mbuf *seg = elt->bufs[j];
3051                         struct rte_mbuf *rep;
3052                         unsigned int seg_tailroom;
3053
3054                         /*
3055                          * Fetch initial bytes of packet descriptor into a
3056                          * cacheline while allocating rep.
3057                          */
3058                         rte_prefetch0(seg);
3059                         rep = rte_mbuf_raw_alloc(rxq->mp);
3060                         if (unlikely(rep == NULL)) {
3061                                 /*
3062                                  * Unable to allocate a replacement mbuf,
3063                                  * repost WR.
3064                                  */
3065                                 DEBUG("rxq=%p, wr_id=%" PRIu64 ":"
3066                                       " can't allocate a new mbuf",
3067                                       (void *)rxq, wr_id);
3068                                 if (pkt_buf != NULL) {
3069                                         *pkt_buf_next = NULL;
3070                                         rte_pktmbuf_free(pkt_buf);
3071                                 }
3072                                 /* Increase out of memory counters. */
3073                                 ++rxq->stats.rx_nombuf;
3074                                 ++rxq->priv->dev->data->rx_mbuf_alloc_failed;
3075                                 goto repost;
3076                         }
3077 #ifndef NDEBUG
3078                         /* Poison user-modifiable fields in rep. */
3079                         NEXT(rep) = (void *)((uintptr_t)-1);
3080                         SET_DATA_OFF(rep, 0xdead);
3081                         DATA_LEN(rep) = 0xd00d;
3082                         PKT_LEN(rep) = 0xdeadd00d;
3083                         NB_SEGS(rep) = 0x2a;
3084                         PORT(rep) = 0x2a;
3085                         rep->ol_flags = -1;
3086                         /*
3087                          * Clear special flags in mbuf to avoid
3088                          * crashing while freeing.
3089                          */
3090                         rep->ol_flags &=
3091                                 ~(uint64_t)(IND_ATTACHED_MBUF |
3092                                             CTRL_MBUF_FLAG);
3093 #endif
3094                         assert(rep->buf_len == seg->buf_len);
3095                         /* Reconfigure sge to use rep instead of seg. */
3096                         assert(sge->lkey == rxq->mr->lkey);
3097                         sge->addr = ((uintptr_t)rep->buf_addr + seg_headroom);
3098                         elt->bufs[j] = rep;
3099                         ++j;
3100                         /* Update pkt_buf if it's the first segment, or link
3101                          * seg to the previous one and update pkt_buf_next. */
3102                         *pkt_buf_next = seg;
3103                         pkt_buf_next = &NEXT(seg);
3104                         /* Update seg information. */
3105                         seg_tailroom = (seg->buf_len - seg_headroom);
3106                         assert(sge->length == seg_tailroom);
3107                         SET_DATA_OFF(seg, seg_headroom);
3108                         if (likely(len <= seg_tailroom)) {
3109                                 /* Last segment. */
3110                                 DATA_LEN(seg) = len;
3111                                 PKT_LEN(seg) = len;
3112                                 /* Sanity check. */
3113                                 assert(rte_pktmbuf_headroom(seg) ==
3114                                        seg_headroom);
3115                                 assert(rte_pktmbuf_tailroom(seg) ==
3116                                        (seg_tailroom - len));
3117                                 break;
3118                         }
3119                         DATA_LEN(seg) = seg_tailroom;
3120                         PKT_LEN(seg) = seg_tailroom;
3121                         /* Sanity check. */
3122                         assert(rte_pktmbuf_headroom(seg) == seg_headroom);
3123                         assert(rte_pktmbuf_tailroom(seg) == 0);
3124                         /* Fix len and clear headroom for next segments. */
3125                         len -= seg_tailroom;
3126                         seg_headroom = 0;
3127                 }
3128                 /* Update head and tail segments. */
3129                 *pkt_buf_next = NULL;
3130                 assert(pkt_buf != NULL);
3131                 assert(j != 0);
3132                 NB_SEGS(pkt_buf) = j;
3133                 PORT(pkt_buf) = rxq->port_id;
3134                 PKT_LEN(pkt_buf) = pkt_buf_len;
3135                 pkt_buf->packet_type = rxq_cq_to_pkt_type(flags);
3136                 pkt_buf->ol_flags = rxq_cq_to_ol_flags(rxq, flags);
3137
3138                 /* Return packet. */
3139                 *(pkts++) = pkt_buf;
3140                 ++pkts_ret;
3141 #ifdef MLX4_PMD_SOFT_COUNTERS
3142                 /* Increase bytes counter. */
3143                 rxq->stats.ibytes += pkt_buf_len;
3144 #endif
3145 repost:
3146                 if (++elts_head >= elts_n)
3147                         elts_head = 0;
3148                 continue;
3149         }
3150         if (unlikely(i == 0))
3151                 return 0;
3152         *next = NULL;
3153         /* Repost WRs. */
3154         ret = ibv_post_recv(rxq->qp, head.next, &bad_wr);
3155         if (unlikely(ret)) {
3156                 /* Inability to repost WRs is fatal. */
3157                 DEBUG("%p: ibv_post_recv(): failed for WR %p: %s",
3158                       (void *)rxq->priv,
3159                       (void *)bad_wr,
3160                       strerror(ret));
3161                 abort();
3162         }
3163         rxq->elts_head = elts_head;
3164 #ifdef MLX4_PMD_SOFT_COUNTERS
3165         /* Increase packets counter. */
3166         rxq->stats.ipackets += pkts_ret;
3167 #endif
3168         return pkts_ret;
3169 }
3170
3171 /**
3172  * DPDK callback for RX.
3173  *
3174  * The following function is the same as mlx4_rx_burst_sp(), except it doesn't
3175  * manage scattered packets. Improves performance when MRU is lower than the
3176  * size of the first segment.
3177  *
3178  * @param dpdk_rxq
3179  *   Generic pointer to RX queue structure.
3180  * @param[out] pkts
3181  *   Array to store received packets.
3182  * @param pkts_n
3183  *   Maximum number of packets in array.
3184  *
3185  * @return
3186  *   Number of packets successfully received (<= pkts_n).
3187  */
3188 static uint16_t
3189 mlx4_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
3190 {
3191         struct rxq *rxq = (struct rxq *)dpdk_rxq;
3192         struct rxq_elt (*elts)[rxq->elts_n] = rxq->elts.no_sp;
3193         const unsigned int elts_n = rxq->elts_n;
3194         unsigned int elts_head = rxq->elts_head;
3195         struct ibv_sge sges[pkts_n];
3196         unsigned int i;
3197         unsigned int pkts_ret = 0;
3198         int ret;
3199
3200         if (unlikely(rxq->sp))
3201                 return mlx4_rx_burst_sp(dpdk_rxq, pkts, pkts_n);
3202         for (i = 0; (i != pkts_n); ++i) {
3203                 struct rxq_elt *elt = &(*elts)[elts_head];
3204                 struct ibv_recv_wr *wr = &elt->wr;
3205                 uint64_t wr_id = wr->wr_id;
3206                 unsigned int len;
3207                 struct rte_mbuf *seg = (void *)((uintptr_t)elt->sge.addr -
3208                         WR_ID(wr_id).offset);
3209                 struct rte_mbuf *rep;
3210                 uint32_t flags;
3211
3212                 /* Sanity checks. */
3213                 assert(WR_ID(wr_id).id < rxq->elts_n);
3214                 assert(wr->sg_list == &elt->sge);
3215                 assert(wr->num_sge == 1);
3216                 assert(elts_head < rxq->elts_n);
3217                 assert(rxq->elts_head < rxq->elts_n);
3218                 /*
3219                  * Fetch initial bytes of packet descriptor into a
3220                  * cacheline while allocating rep.
3221                  */
3222                 rte_mbuf_prefetch_part1(seg);
3223                 rte_mbuf_prefetch_part2(seg);
3224                 ret = rxq->if_cq->poll_length_flags(rxq->cq, NULL, NULL,
3225                                                     &flags);
3226                 if (unlikely(ret < 0)) {
3227                         struct ibv_wc wc;
3228                         int wcs_n;
3229
3230                         DEBUG("rxq=%p, poll_length() failed (ret=%d)",
3231                               (void *)rxq, ret);
3232                         /* ibv_poll_cq() must be used in case of failure. */
3233                         wcs_n = ibv_poll_cq(rxq->cq, 1, &wc);
3234                         if (unlikely(wcs_n == 0))
3235                                 break;
3236                         if (unlikely(wcs_n < 0)) {
3237                                 DEBUG("rxq=%p, ibv_poll_cq() failed (wcs_n=%d)",
3238                                       (void *)rxq, wcs_n);
3239                                 break;
3240                         }
3241                         assert(wcs_n == 1);
3242                         if (unlikely(wc.status != IBV_WC_SUCCESS)) {
3243                                 /* Whatever, just repost the offending WR. */
3244                                 DEBUG("rxq=%p, wr_id=%" PRIu64 ": bad work"
3245                                       " completion status (%d): %s",
3246                                       (void *)rxq, wc.wr_id, wc.status,
3247                                       ibv_wc_status_str(wc.status));
3248 #ifdef MLX4_PMD_SOFT_COUNTERS
3249                                 /* Increment dropped packets counter. */
3250                                 ++rxq->stats.idropped;
3251 #endif
3252                                 /* Add SGE to array for repost. */
3253                                 sges[i] = elt->sge;
3254                                 goto repost;
3255                         }
3256                         ret = wc.byte_len;
3257                 }
3258                 if (ret == 0)
3259                         break;
3260                 len = ret;
3261                 rep = rte_mbuf_raw_alloc(rxq->mp);
3262                 if (unlikely(rep == NULL)) {
3263                         /*
3264                          * Unable to allocate a replacement mbuf,
3265                          * repost WR.
3266                          */
3267                         DEBUG("rxq=%p, wr_id=%" PRIu32 ":"
3268                               " can't allocate a new mbuf",
3269                               (void *)rxq, WR_ID(wr_id).id);
3270                         /* Increase out of memory counters. */
3271                         ++rxq->stats.rx_nombuf;
3272                         ++rxq->priv->dev->data->rx_mbuf_alloc_failed;
3273                         /* Add SGE to array for repost. */
3274                         sges[i] = elt->sge;
3275                         goto repost;
3276                 }
3277
3278                 /* Reconfigure sge to use rep instead of seg. */
3279                 elt->sge.addr = (uintptr_t)rep->buf_addr + RTE_PKTMBUF_HEADROOM;
3280                 assert(elt->sge.lkey == rxq->mr->lkey);
3281                 WR_ID(wr->wr_id).offset =
3282                         (((uintptr_t)rep->buf_addr + RTE_PKTMBUF_HEADROOM) -
3283                          (uintptr_t)rep);
3284                 assert(WR_ID(wr->wr_id).id == WR_ID(wr_id).id);
3285
3286                 /* Add SGE to array for repost. */
3287                 sges[i] = elt->sge;
3288
3289                 /* Update seg information. */
3290                 SET_DATA_OFF(seg, RTE_PKTMBUF_HEADROOM);
3291                 NB_SEGS(seg) = 1;
3292                 PORT(seg) = rxq->port_id;
3293                 NEXT(seg) = NULL;
3294                 PKT_LEN(seg) = len;
3295                 DATA_LEN(seg) = len;
3296                 seg->packet_type = rxq_cq_to_pkt_type(flags);
3297                 seg->ol_flags = rxq_cq_to_ol_flags(rxq, flags);
3298
3299                 /* Return packet. */
3300                 *(pkts++) = seg;
3301                 ++pkts_ret;
3302 #ifdef MLX4_PMD_SOFT_COUNTERS
3303                 /* Increase bytes counter. */
3304                 rxq->stats.ibytes += len;
3305 #endif
3306 repost:
3307                 if (++elts_head >= elts_n)
3308                         elts_head = 0;
3309                 continue;
3310         }
3311         if (unlikely(i == 0))
3312                 return 0;
3313         /* Repost WRs. */
3314         ret = rxq->if_qp->recv_burst(rxq->qp, sges, i);
3315         if (unlikely(ret)) {
3316                 /* Inability to repost WRs is fatal. */
3317                 DEBUG("%p: recv_burst(): failed (ret=%d)",
3318                       (void *)rxq->priv,
3319                       ret);
3320                 abort();
3321         }
3322         rxq->elts_head = elts_head;
3323 #ifdef MLX4_PMD_SOFT_COUNTERS
3324         /* Increase packets counter. */
3325         rxq->stats.ipackets += pkts_ret;
3326 #endif
3327         return pkts_ret;
3328 }
3329
3330 /**
3331  * DPDK callback for RX in secondary processes.
3332  *
3333  * This function configures all queues from primary process information
3334  * if necessary before reverting to the normal RX burst callback.
3335  *
3336  * @param dpdk_rxq
3337  *   Generic pointer to RX queue structure.
3338  * @param[out] pkts
3339  *   Array to store received packets.
3340  * @param pkts_n
3341  *   Maximum number of packets in array.
3342  *
3343  * @return
3344  *   Number of packets successfully received (<= pkts_n).
3345  */
3346 static uint16_t
3347 mlx4_rx_burst_secondary_setup(void *dpdk_rxq, struct rte_mbuf **pkts,
3348                               uint16_t pkts_n)
3349 {
3350         struct rxq *rxq = dpdk_rxq;
3351         struct priv *priv = mlx4_secondary_data_setup(rxq->priv);
3352         struct priv *primary_priv;
3353         unsigned int index;
3354
3355         if (priv == NULL)
3356                 return 0;
3357         primary_priv =
3358                 mlx4_secondary_data[priv->dev->data->port_id].primary_priv;
3359         /* Look for queue index in both private structures. */
3360         for (index = 0; index != priv->rxqs_n; ++index)
3361                 if (((*primary_priv->rxqs)[index] == rxq) ||
3362                     ((*priv->rxqs)[index] == rxq))
3363                         break;
3364         if (index == priv->rxqs_n)
3365                 return 0;
3366         rxq = (*priv->rxqs)[index];
3367         return priv->dev->rx_pkt_burst(rxq, pkts, pkts_n);
3368 }
3369
3370 /**
3371  * Allocate a Queue Pair.
3372  * Optionally setup inline receive if supported.
3373  *
3374  * @param priv
3375  *   Pointer to private structure.
3376  * @param cq
3377  *   Completion queue to associate with QP.
3378  * @param desc
3379  *   Number of descriptors in QP (hint only).
3380  *
3381  * @return
3382  *   QP pointer or NULL in case of error.
3383  */
3384 static struct ibv_qp *
3385 rxq_setup_qp(struct priv *priv, struct ibv_cq *cq, uint16_t desc,
3386              struct ibv_exp_res_domain *rd)
3387 {
3388         struct ibv_exp_qp_init_attr attr = {
3389                 /* CQ to be associated with the send queue. */
3390                 .send_cq = cq,
3391                 /* CQ to be associated with the receive queue. */
3392                 .recv_cq = cq,
3393                 .cap = {
3394                         /* Max number of outstanding WRs. */
3395                         .max_recv_wr = ((priv->device_attr.max_qp_wr < desc) ?
3396                                         priv->device_attr.max_qp_wr :
3397                                         desc),
3398                         /* Max number of scatter/gather elements in a WR. */
3399                         .max_recv_sge = ((priv->device_attr.max_sge <
3400                                           MLX4_PMD_SGE_WR_N) ?
3401                                          priv->device_attr.max_sge :
3402                                          MLX4_PMD_SGE_WR_N),
3403                 },
3404                 .qp_type = IBV_QPT_RAW_PACKET,
3405                 .comp_mask = (IBV_EXP_QP_INIT_ATTR_PD |
3406                               IBV_EXP_QP_INIT_ATTR_RES_DOMAIN),
3407                 .pd = priv->pd,
3408                 .res_domain = rd,
3409         };
3410
3411         attr.max_inl_recv = priv->inl_recv_size;
3412         attr.comp_mask |= IBV_EXP_QP_INIT_ATTR_INL_RECV;
3413         return ibv_exp_create_qp(priv->ctx, &attr);
3414 }
3415
3416 /**
3417  * Allocate a RSS Queue Pair.
3418  * Optionally setup inline receive if supported.
3419  *
3420  * @param priv
3421  *   Pointer to private structure.
3422  * @param cq
3423  *   Completion queue to associate with QP.
3424  * @param desc
3425  *   Number of descriptors in QP (hint only).
3426  * @param children_n
3427  *   If nonzero, a number of children for parent QP and zero for a child.
3428  * @param rxq_parent
3429  *   Pointer for a parent in a child case, NULL otherwise.
3430  *
3431  * @return
3432  *   QP pointer or NULL in case of error.
3433  */
3434 static struct ibv_qp *
3435 rxq_setup_qp_rss(struct priv *priv, struct ibv_cq *cq, uint16_t desc,
3436                  int children_n, struct ibv_exp_res_domain *rd,
3437                  struct rxq *rxq_parent)
3438 {
3439         struct ibv_exp_qp_init_attr attr = {
3440                 /* CQ to be associated with the send queue. */
3441                 .send_cq = cq,
3442                 /* CQ to be associated with the receive queue. */
3443                 .recv_cq = cq,
3444                 .cap = {
3445                         /* Max number of outstanding WRs. */
3446                         .max_recv_wr = ((priv->device_attr.max_qp_wr < desc) ?
3447                                         priv->device_attr.max_qp_wr :
3448                                         desc),
3449                         /* Max number of scatter/gather elements in a WR. */
3450                         .max_recv_sge = ((priv->device_attr.max_sge <
3451                                           MLX4_PMD_SGE_WR_N) ?
3452                                          priv->device_attr.max_sge :
3453                                          MLX4_PMD_SGE_WR_N),
3454                 },
3455                 .qp_type = IBV_QPT_RAW_PACKET,
3456                 .comp_mask = (IBV_EXP_QP_INIT_ATTR_PD |
3457                               IBV_EXP_QP_INIT_ATTR_RES_DOMAIN |
3458                               IBV_EXP_QP_INIT_ATTR_QPG),
3459                 .pd = priv->pd,
3460                 .res_domain = rd,
3461         };
3462
3463         attr.max_inl_recv = priv->inl_recv_size,
3464         attr.comp_mask |= IBV_EXP_QP_INIT_ATTR_INL_RECV;
3465         if (children_n > 0) {
3466                 attr.qpg.qpg_type = IBV_EXP_QPG_PARENT;
3467                 /* TSS isn't necessary. */
3468                 attr.qpg.parent_attrib.tss_child_count = 0;
3469                 attr.qpg.parent_attrib.rss_child_count =
3470                         rte_align32pow2(children_n + 1) >> 1;
3471                 DEBUG("initializing parent RSS queue");
3472         } else {
3473                 attr.qpg.qpg_type = IBV_EXP_QPG_CHILD_RX;
3474                 attr.qpg.qpg_parent = rxq_parent->qp;
3475                 DEBUG("initializing child RSS queue");
3476         }
3477         return ibv_exp_create_qp(priv->ctx, &attr);
3478 }
3479
3480 /**
3481  * Reconfigure a RX queue with new parameters.
3482  *
3483  * rxq_rehash() does not allocate mbufs, which, if not done from the right
3484  * thread (such as a control thread), may corrupt the pool.
3485  * In case of failure, the queue is left untouched.
3486  *
3487  * @param dev
3488  *   Pointer to Ethernet device structure.
3489  * @param rxq
3490  *   RX queue pointer.
3491  *
3492  * @return
3493  *   0 on success, errno value on failure.
3494  */
3495 static int
3496 rxq_rehash(struct rte_eth_dev *dev, struct rxq *rxq)
3497 {
3498         struct priv *priv = rxq->priv;
3499         struct rxq tmpl = *rxq;
3500         unsigned int mbuf_n;
3501         unsigned int desc_n;
3502         struct rte_mbuf **pool;
3503         unsigned int i, k;
3504         struct ibv_exp_qp_attr mod;
3505         struct ibv_recv_wr *bad_wr;
3506         unsigned int mb_len;
3507         int err;
3508
3509         mb_len = rte_pktmbuf_data_room_size(rxq->mp);
3510         DEBUG("%p: rehashing queue %p", (void *)dev, (void *)rxq);
3511         /* Number of descriptors and mbufs currently allocated. */
3512         desc_n = (tmpl.elts_n * (tmpl.sp ? MLX4_PMD_SGE_WR_N : 1));
3513         mbuf_n = desc_n;
3514         /* Toggle RX checksum offload if hardware supports it. */
3515         if (priv->hw_csum) {
3516                 tmpl.csum = !!dev->data->dev_conf.rxmode.hw_ip_checksum;
3517                 rxq->csum = tmpl.csum;
3518         }
3519         if (priv->hw_csum_l2tun) {
3520                 tmpl.csum_l2tun = !!dev->data->dev_conf.rxmode.hw_ip_checksum;
3521                 rxq->csum_l2tun = tmpl.csum_l2tun;
3522         }
3523         /* Enable scattered packets support for this queue if necessary. */
3524         assert(mb_len >= RTE_PKTMBUF_HEADROOM);
3525         if (dev->data->dev_conf.rxmode.enable_scatter &&
3526             (dev->data->dev_conf.rxmode.max_rx_pkt_len >
3527              (mb_len - RTE_PKTMBUF_HEADROOM))) {
3528                 tmpl.sp = 1;
3529                 desc_n /= MLX4_PMD_SGE_WR_N;
3530         } else
3531                 tmpl.sp = 0;
3532         DEBUG("%p: %s scattered packets support (%u WRs)",
3533               (void *)dev, (tmpl.sp ? "enabling" : "disabling"), desc_n);
3534         /* If scatter mode is the same as before, nothing to do. */
3535         if (tmpl.sp == rxq->sp) {
3536                 DEBUG("%p: nothing to do", (void *)dev);
3537                 return 0;
3538         }
3539         /* Remove attached flows if RSS is disabled (no parent queue). */
3540         if (!priv->rss && !priv->isolated) {
3541                 rxq_allmulticast_disable(&tmpl);
3542                 rxq_promiscuous_disable(&tmpl);
3543                 rxq_mac_addrs_del(&tmpl);
3544                 /* Update original queue in case of failure. */
3545                 rxq->allmulti_flow = tmpl.allmulti_flow;
3546                 rxq->promisc_flow = tmpl.promisc_flow;
3547                 memcpy(rxq->mac_configured, tmpl.mac_configured,
3548                        sizeof(rxq->mac_configured));
3549                 memcpy(rxq->mac_flow, tmpl.mac_flow, sizeof(rxq->mac_flow));
3550         }
3551         /* From now on, any failure will render the queue unusable.
3552          * Reinitialize QP. */
3553         if (!tmpl.qp)
3554                 goto skip_init;
3555         mod = (struct ibv_exp_qp_attr){ .qp_state = IBV_QPS_RESET };
3556         err = ibv_exp_modify_qp(tmpl.qp, &mod, IBV_EXP_QP_STATE);
3557         if (err) {
3558                 ERROR("%p: cannot reset QP: %s", (void *)dev, strerror(err));
3559                 assert(err > 0);
3560                 return err;
3561         }
3562         mod = (struct ibv_exp_qp_attr){
3563                 /* Move the QP to this state. */
3564                 .qp_state = IBV_QPS_INIT,
3565                 /* Primary port number. */
3566                 .port_num = priv->port
3567         };
3568         err = ibv_exp_modify_qp(tmpl.qp, &mod,
3569                                 (IBV_EXP_QP_STATE |
3570                                  IBV_EXP_QP_PORT));
3571         if (err) {
3572                 ERROR("%p: QP state to IBV_QPS_INIT failed: %s",
3573                       (void *)dev, strerror(err));
3574                 assert(err > 0);
3575                 return err;
3576         };
3577 skip_init:
3578         err = ibv_resize_cq(tmpl.cq, desc_n);
3579         if (err) {
3580                 ERROR("%p: cannot resize CQ: %s", (void *)dev, strerror(err));
3581                 assert(err > 0);
3582                 return err;
3583         }
3584         /* Reconfigure flows. Do not care for errors. */
3585         if (!priv->rss && !priv->isolated) {
3586                 rxq_mac_addrs_add(&tmpl);
3587                 if (priv->promisc)
3588                         rxq_promiscuous_enable(&tmpl);
3589                 if (priv->allmulti)
3590                         rxq_allmulticast_enable(&tmpl);
3591                 /* Update original queue in case of failure. */
3592                 rxq->allmulti_flow = tmpl.allmulti_flow;
3593                 rxq->promisc_flow = tmpl.promisc_flow;
3594                 memcpy(rxq->mac_configured, tmpl.mac_configured,
3595                        sizeof(rxq->mac_configured));
3596                 memcpy(rxq->mac_flow, tmpl.mac_flow, sizeof(rxq->mac_flow));
3597         }
3598         /* Allocate pool. */
3599         pool = rte_malloc(__func__, (mbuf_n * sizeof(*pool)), 0);
3600         if (pool == NULL) {
3601                 ERROR("%p: cannot allocate memory", (void *)dev);
3602                 return ENOBUFS;
3603         }
3604         /* Snatch mbufs from original queue. */
3605         k = 0;
3606         if (rxq->sp) {
3607                 struct rxq_elt_sp (*elts)[rxq->elts_n] = rxq->elts.sp;
3608
3609                 for (i = 0; (i != elemof(*elts)); ++i) {
3610                         struct rxq_elt_sp *elt = &(*elts)[i];
3611                         unsigned int j;
3612
3613                         for (j = 0; (j != elemof(elt->bufs)); ++j) {
3614                                 assert(elt->bufs[j] != NULL);
3615                                 pool[k++] = elt->bufs[j];
3616                         }
3617                 }
3618         } else {
3619                 struct rxq_elt (*elts)[rxq->elts_n] = rxq->elts.no_sp;
3620
3621                 for (i = 0; (i != elemof(*elts)); ++i) {
3622                         struct rxq_elt *elt = &(*elts)[i];
3623                         struct rte_mbuf *buf = (void *)
3624                                 ((uintptr_t)elt->sge.addr -
3625                                  WR_ID(elt->wr.wr_id).offset);
3626
3627                         assert(WR_ID(elt->wr.wr_id).id == i);
3628                         pool[k++] = buf;
3629                 }
3630         }
3631         assert(k == mbuf_n);
3632         tmpl.elts_n = 0;
3633         tmpl.elts.sp = NULL;
3634         assert((void *)&tmpl.elts.sp == (void *)&tmpl.elts.no_sp);
3635         err = ((tmpl.sp) ?
3636                rxq_alloc_elts_sp(&tmpl, desc_n, pool) :
3637                rxq_alloc_elts(&tmpl, desc_n, pool));
3638         if (err) {
3639                 ERROR("%p: cannot reallocate WRs, aborting", (void *)dev);
3640                 rte_free(pool);
3641                 assert(err > 0);
3642                 return err;
3643         }
3644         assert(tmpl.elts_n == desc_n);
3645         assert(tmpl.elts.sp != NULL);
3646         rte_free(pool);
3647         /* Clean up original data. */
3648         rxq->elts_n = 0;
3649         rte_free(rxq->elts.sp);
3650         rxq->elts.sp = NULL;
3651         if (!tmpl.qp)
3652                 goto skip_rtr;
3653         /* Post WRs. */
3654         err = ibv_post_recv(tmpl.qp,
3655                             (tmpl.sp ?
3656                              &(*tmpl.elts.sp)[0].wr :
3657                              &(*tmpl.elts.no_sp)[0].wr),
3658                             &bad_wr);
3659         if (err) {
3660                 ERROR("%p: ibv_post_recv() failed for WR %p: %s",
3661                       (void *)dev,
3662                       (void *)bad_wr,
3663                       strerror(err));
3664                 goto skip_rtr;
3665         }
3666         mod = (struct ibv_exp_qp_attr){
3667                 .qp_state = IBV_QPS_RTR
3668         };
3669         err = ibv_exp_modify_qp(tmpl.qp, &mod, IBV_EXP_QP_STATE);
3670         if (err)
3671                 ERROR("%p: QP state to IBV_QPS_RTR failed: %s",
3672                       (void *)dev, strerror(err));
3673 skip_rtr:
3674         *rxq = tmpl;
3675         assert(err >= 0);
3676         return err;
3677 }
3678
3679 /**
3680  * Create verbs QP resources associated with a rxq.
3681  *
3682  * @param rxq
3683  *   Pointer to RX queue structure.
3684  * @param desc
3685  *   Number of descriptors to configure in queue.
3686  * @param inactive
3687  *   If true, the queue is disabled because its index is higher or
3688  *   equal to the real number of queues, which must be a power of 2.
3689  * @param children_n
3690  *   The number of children in a parent case, zero for a child.
3691  * @param rxq_parent
3692  *   The pointer to a parent RX structure for a child in RSS case,
3693  *   NULL for parent.
3694  *
3695  * @return
3696  *   0 on success, errno value on failure.
3697  */
3698 int
3699 rxq_create_qp(struct rxq *rxq,
3700               uint16_t desc,
3701               int inactive,
3702               int children_n,
3703               struct rxq *rxq_parent)
3704 {
3705         int ret;
3706         struct ibv_exp_qp_attr mod;
3707         struct ibv_exp_query_intf_params params;
3708         enum ibv_exp_query_intf_status status;
3709         struct ibv_recv_wr *bad_wr;
3710         int parent = (children_n > 0);
3711         struct priv *priv = rxq->priv;
3712
3713         if (priv->rss && !inactive && (rxq_parent || parent))
3714                 rxq->qp = rxq_setup_qp_rss(priv, rxq->cq, desc,
3715                                            children_n, rxq->rd,
3716                                            rxq_parent);
3717         else
3718                 rxq->qp = rxq_setup_qp(priv, rxq->cq, desc, rxq->rd);
3719         if (rxq->qp == NULL) {
3720                 ret = (errno ? errno : EINVAL);
3721                 ERROR("QP creation failure: %s",
3722                       strerror(ret));
3723                 return ret;
3724         }
3725         mod = (struct ibv_exp_qp_attr){
3726                 /* Move the QP to this state. */
3727                 .qp_state = IBV_QPS_INIT,
3728                 /* Primary port number. */
3729                 .port_num = priv->port
3730         };
3731         ret = ibv_exp_modify_qp(rxq->qp, &mod,
3732                                 (IBV_EXP_QP_STATE |
3733                                  (parent ? IBV_EXP_QP_GROUP_RSS : 0) |
3734                                  IBV_EXP_QP_PORT));
3735         if (ret) {
3736                 ERROR("QP state to IBV_QPS_INIT failed: %s",
3737                       strerror(ret));
3738                 return ret;
3739         }
3740         if (!priv->isolated && (parent || !priv->rss)) {
3741                 /* Configure MAC and broadcast addresses. */
3742                 ret = rxq_mac_addrs_add(rxq);
3743                 if (ret) {
3744                         ERROR("QP flow attachment failed: %s",
3745                               strerror(ret));
3746                         return ret;
3747                 }
3748         }
3749         if (!parent) {
3750                 ret = ibv_post_recv(rxq->qp,
3751                                     (rxq->sp ?
3752                                      &(*rxq->elts.sp)[0].wr :
3753                                      &(*rxq->elts.no_sp)[0].wr),
3754                                     &bad_wr);
3755                 if (ret) {
3756                         ERROR("ibv_post_recv() failed for WR %p: %s",
3757                               (void *)bad_wr,
3758                               strerror(ret));
3759                         return ret;
3760                 }
3761         }
3762         mod = (struct ibv_exp_qp_attr){
3763                 .qp_state = IBV_QPS_RTR
3764         };
3765         ret = ibv_exp_modify_qp(rxq->qp, &mod, IBV_EXP_QP_STATE);
3766         if (ret) {
3767                 ERROR("QP state to IBV_QPS_RTR failed: %s",
3768                       strerror(ret));
3769                 return ret;
3770         }
3771         params = (struct ibv_exp_query_intf_params){
3772                 .intf_scope = IBV_EXP_INTF_GLOBAL,
3773                 .intf = IBV_EXP_INTF_QP_BURST,
3774                 .obj = rxq->qp,
3775         };
3776         rxq->if_qp = ibv_exp_query_intf(priv->ctx, &params, &status);
3777         if (rxq->if_qp == NULL) {
3778                 ERROR("QP interface family query failed with status %d",
3779                       status);
3780                 return errno;
3781         }
3782         return 0;
3783 }
3784
3785 /**
3786  * Configure a RX queue.
3787  *
3788  * @param dev
3789  *   Pointer to Ethernet device structure.
3790  * @param rxq
3791  *   Pointer to RX queue structure.
3792  * @param desc
3793  *   Number of descriptors to configure in queue.
3794  * @param socket
3795  *   NUMA socket on which memory must be allocated.
3796  * @param inactive
3797  *   If true, the queue is disabled because its index is higher or
3798  *   equal to the real number of queues, which must be a power of 2.
3799  * @param[in] conf
3800  *   Thresholds parameters.
3801  * @param mp
3802  *   Memory pool for buffer allocations.
3803  * @param children_n
3804  *   The number of children in a parent case, zero for a child.
3805  * @param rxq_parent
3806  *   The pointer to a parent RX structure (or NULL) in a child case,
3807  *   NULL for parent.
3808  *
3809  * @return
3810  *   0 on success, errno value on failure.
3811  */
3812 static int
3813 rxq_setup(struct rte_eth_dev *dev, struct rxq *rxq, uint16_t desc,
3814           unsigned int socket, int inactive,
3815           const struct rte_eth_rxconf *conf,
3816           struct rte_mempool *mp, int children_n,
3817           struct rxq *rxq_parent)
3818 {
3819         struct priv *priv = dev->data->dev_private;
3820         struct rxq tmpl = {
3821                 .priv = priv,
3822                 .mp = mp,
3823                 .socket = socket
3824         };
3825         union {
3826                 struct ibv_exp_query_intf_params params;
3827                 struct ibv_exp_cq_init_attr cq;
3828                 struct ibv_exp_res_domain_init_attr rd;
3829         } attr;
3830         enum ibv_exp_query_intf_status status;
3831         unsigned int mb_len;
3832         int ret = 0;
3833         int parent = (children_n > 0);
3834
3835         (void)conf; /* Thresholds configuration (ignored). */
3836         /*
3837          * If this is a parent queue, hardware must support RSS and
3838          * RSS must be enabled.
3839          */
3840         assert((!parent) || ((priv->hw_rss) && (priv->rss)));
3841         if (parent) {
3842                 /* Even if unused, ibv_create_cq() requires at least one
3843                  * descriptor. */
3844                 desc = 1;
3845                 goto skip_mr;
3846         }
3847         mb_len = rte_pktmbuf_data_room_size(mp);
3848         if ((desc == 0) || (desc % MLX4_PMD_SGE_WR_N)) {
3849                 ERROR("%p: invalid number of RX descriptors (must be a"
3850                       " multiple of %d)", (void *)dev, MLX4_PMD_SGE_WR_N);
3851                 return EINVAL;
3852         }
3853         /* Toggle RX checksum offload if hardware supports it. */
3854         if (priv->hw_csum)
3855                 tmpl.csum = !!dev->data->dev_conf.rxmode.hw_ip_checksum;
3856         if (priv->hw_csum_l2tun)
3857                 tmpl.csum_l2tun = !!dev->data->dev_conf.rxmode.hw_ip_checksum;
3858         /* Enable scattered packets support for this queue if necessary. */
3859         assert(mb_len >= RTE_PKTMBUF_HEADROOM);
3860         if (dev->data->dev_conf.rxmode.max_rx_pkt_len <=
3861             (mb_len - RTE_PKTMBUF_HEADROOM)) {
3862                 tmpl.sp = 0;
3863         } else if (dev->data->dev_conf.rxmode.enable_scatter) {
3864                 tmpl.sp = 1;
3865                 desc /= MLX4_PMD_SGE_WR_N;
3866         } else {
3867                 WARN("%p: the requested maximum Rx packet size (%u) is"
3868                      " larger than a single mbuf (%u) and scattered"
3869                      " mode has not been requested",
3870                      (void *)dev,
3871                      dev->data->dev_conf.rxmode.max_rx_pkt_len,
3872                      mb_len - RTE_PKTMBUF_HEADROOM);
3873         }
3874         DEBUG("%p: %s scattered packets support (%u WRs)",
3875               (void *)dev, (tmpl.sp ? "enabling" : "disabling"), desc);
3876         /* Use the entire RX mempool as the memory region. */
3877         tmpl.mr = mlx4_mp2mr(priv->pd, mp);
3878         if (tmpl.mr == NULL) {
3879                 ret = EINVAL;
3880                 ERROR("%p: MR creation failure: %s",
3881                       (void *)dev, strerror(ret));
3882                 goto error;
3883         }
3884 skip_mr:
3885         attr.rd = (struct ibv_exp_res_domain_init_attr){
3886                 .comp_mask = (IBV_EXP_RES_DOMAIN_THREAD_MODEL |
3887                               IBV_EXP_RES_DOMAIN_MSG_MODEL),
3888                 .thread_model = IBV_EXP_THREAD_SINGLE,
3889                 .msg_model = IBV_EXP_MSG_HIGH_BW,
3890         };
3891         tmpl.rd = ibv_exp_create_res_domain(priv->ctx, &attr.rd);
3892         if (tmpl.rd == NULL) {
3893                 ret = ENOMEM;
3894                 ERROR("%p: RD creation failure: %s",
3895                       (void *)dev, strerror(ret));
3896                 goto error;
3897         }
3898         if (dev->data->dev_conf.intr_conf.rxq) {
3899                 tmpl.channel = ibv_create_comp_channel(priv->ctx);
3900                 if (tmpl.channel == NULL) {
3901                         ret = ENOMEM;
3902                         ERROR("%p: Rx interrupt completion channel creation"
3903                               " failure: %s",
3904                               (void *)dev, strerror(ret));
3905                         goto error;
3906                 }
3907         }
3908         attr.cq = (struct ibv_exp_cq_init_attr){
3909                 .comp_mask = IBV_EXP_CQ_INIT_ATTR_RES_DOMAIN,
3910                 .res_domain = tmpl.rd,
3911         };
3912         tmpl.cq = ibv_exp_create_cq(priv->ctx, desc, NULL, tmpl.channel, 0,
3913                                     &attr.cq);
3914         if (tmpl.cq == NULL) {
3915                 ret = ENOMEM;
3916                 ERROR("%p: CQ creation failure: %s",
3917                       (void *)dev, strerror(ret));
3918                 goto error;
3919         }
3920         DEBUG("priv->device_attr.max_qp_wr is %d",
3921               priv->device_attr.max_qp_wr);
3922         DEBUG("priv->device_attr.max_sge is %d",
3923               priv->device_attr.max_sge);
3924         /* Allocate descriptors for RX queues, except for the RSS parent. */
3925         if (parent)
3926                 goto skip_alloc;
3927         if (tmpl.sp)
3928                 ret = rxq_alloc_elts_sp(&tmpl, desc, NULL);
3929         else
3930                 ret = rxq_alloc_elts(&tmpl, desc, NULL);
3931         if (ret) {
3932                 ERROR("%p: RXQ allocation failed: %s",
3933                       (void *)dev, strerror(ret));
3934                 return ret;
3935         }
3936 skip_alloc:
3937         if (parent || rxq_parent || !priv->rss) {
3938                 ret = rxq_create_qp(&tmpl, desc, inactive,
3939                                     children_n, rxq_parent);
3940                 if (ret)
3941                         goto error;
3942         }
3943         /* Save port ID. */
3944         tmpl.port_id = dev->data->port_id;
3945         DEBUG("%p: RTE port ID: %u", (void *)rxq, tmpl.port_id);
3946         attr.params = (struct ibv_exp_query_intf_params){
3947                 .intf_scope = IBV_EXP_INTF_GLOBAL,
3948                 .intf = IBV_EXP_INTF_CQ,
3949                 .obj = tmpl.cq,
3950         };
3951         tmpl.if_cq = ibv_exp_query_intf(priv->ctx, &attr.params, &status);
3952         if (tmpl.if_cq == NULL) {
3953                 ret = EINVAL;
3954                 ERROR("%p: CQ interface family query failed with status %d",
3955                       (void *)dev, status);
3956                 goto error;
3957         }
3958         /* Clean up rxq in case we're reinitializing it. */
3959         DEBUG("%p: cleaning-up old rxq just in case", (void *)rxq);
3960         rxq_cleanup(rxq);
3961         *rxq = tmpl;
3962         DEBUG("%p: rxq updated with %p", (void *)rxq, (void *)&tmpl);
3963         assert(ret == 0);
3964         return 0;
3965 error:
3966         rxq_cleanup(&tmpl);
3967         assert(ret > 0);
3968         return ret;
3969 }
3970
3971 /**
3972  * DPDK callback to configure a RX queue.
3973  *
3974  * @param dev
3975  *   Pointer to Ethernet device structure.
3976  * @param idx
3977  *   RX queue index.
3978  * @param desc
3979  *   Number of descriptors to configure in queue.
3980  * @param socket
3981  *   NUMA socket on which memory must be allocated.
3982  * @param[in] conf
3983  *   Thresholds parameters.
3984  * @param mp
3985  *   Memory pool for buffer allocations.
3986  *
3987  * @return
3988  *   0 on success, negative errno value on failure.
3989  */
3990 static int
3991 mlx4_rx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
3992                     unsigned int socket, const struct rte_eth_rxconf *conf,
3993                     struct rte_mempool *mp)
3994 {
3995         struct rxq *parent;
3996         struct priv *priv = dev->data->dev_private;
3997         struct rxq *rxq = (*priv->rxqs)[idx];
3998         int inactive = 0;
3999         int ret;
4000
4001         if (mlx4_is_secondary())
4002                 return -E_RTE_SECONDARY;
4003         priv_lock(priv);
4004         DEBUG("%p: configuring queue %u for %u descriptors",
4005               (void *)dev, idx, desc);
4006         if (idx >= priv->rxqs_n) {
4007                 ERROR("%p: queue index out of range (%u >= %u)",
4008                       (void *)dev, idx, priv->rxqs_n);
4009                 priv_unlock(priv);
4010                 return -EOVERFLOW;
4011         }
4012         if (rxq != NULL) {
4013                 DEBUG("%p: reusing already allocated queue index %u (%p)",
4014                       (void *)dev, idx, (void *)rxq);
4015                 if (priv->started) {
4016                         priv_unlock(priv);
4017                         return -EEXIST;
4018                 }
4019                 (*priv->rxqs)[idx] = NULL;
4020                 rxq_cleanup(rxq);
4021         } else {
4022                 rxq = rte_calloc_socket("RXQ", 1, sizeof(*rxq), 0, socket);
4023                 if (rxq == NULL) {
4024                         ERROR("%p: unable to allocate queue index %u",
4025                               (void *)dev, idx);
4026                         priv_unlock(priv);
4027                         return -ENOMEM;
4028                 }
4029         }
4030         if (priv->rss && !priv->isolated) {
4031                 /* The list consists of the single default one. */
4032                 parent = LIST_FIRST(&priv->parents);
4033                 if (idx >= rte_align32pow2(priv->rxqs_n + 1) >> 1)
4034                         inactive = 1;
4035         } else {
4036                 parent = NULL;
4037         }
4038         ret = rxq_setup(dev, rxq, desc, socket,
4039                         inactive, conf, mp, 0, parent);
4040         if (ret)
4041                 rte_free(rxq);
4042         else {
4043                 rxq->stats.idx = idx;
4044                 DEBUG("%p: adding RX queue %p to list",
4045                       (void *)dev, (void *)rxq);
4046                 (*priv->rxqs)[idx] = rxq;
4047                 /* Update receive callback. */
4048                 if (rxq->sp)
4049                         dev->rx_pkt_burst = mlx4_rx_burst_sp;
4050                 else
4051                         dev->rx_pkt_burst = mlx4_rx_burst;
4052         }
4053         priv_unlock(priv);
4054         return -ret;
4055 }
4056
4057 /**
4058  * DPDK callback to release a RX queue.
4059  *
4060  * @param dpdk_rxq
4061  *   Generic RX queue pointer.
4062  */
4063 static void
4064 mlx4_rx_queue_release(void *dpdk_rxq)
4065 {
4066         struct rxq *rxq = (struct rxq *)dpdk_rxq;
4067         struct priv *priv;
4068         unsigned int i;
4069
4070         if (mlx4_is_secondary())
4071                 return;
4072         if (rxq == NULL)
4073                 return;
4074         priv = rxq->priv;
4075         priv_lock(priv);
4076         for (i = 0; (i != priv->rxqs_n); ++i)
4077                 if ((*priv->rxqs)[i] == rxq) {
4078                         DEBUG("%p: removing RX queue %p from list",
4079                               (void *)priv->dev, (void *)rxq);
4080                         (*priv->rxqs)[i] = NULL;
4081                         break;
4082                 }
4083         rxq_cleanup(rxq);
4084         rte_free(rxq);
4085         priv_unlock(priv);
4086 }
4087
4088 static int
4089 priv_dev_interrupt_handler_install(struct priv *, struct rte_eth_dev *);
4090
4091 static int
4092 priv_dev_removal_interrupt_handler_install(struct priv *, struct rte_eth_dev *);
4093
4094 static int
4095 priv_dev_link_interrupt_handler_install(struct priv *, struct rte_eth_dev *);
4096
4097 /**
4098  * DPDK callback to start the device.
4099  *
4100  * Simulate device start by attaching all configured flows.
4101  *
4102  * @param dev
4103  *   Pointer to Ethernet device structure.
4104  *
4105  * @return
4106  *   0 on success, negative errno value on failure.
4107  */
4108 static int
4109 mlx4_dev_start(struct rte_eth_dev *dev)
4110 {
4111         struct priv *priv = dev->data->dev_private;
4112         unsigned int i = 0;
4113         unsigned int r;
4114         struct rxq *rxq;
4115         int ret;
4116
4117         if (mlx4_is_secondary())
4118                 return -E_RTE_SECONDARY;
4119         priv_lock(priv);
4120         if (priv->started) {
4121                 priv_unlock(priv);
4122                 return 0;
4123         }
4124         DEBUG("%p: attaching configured flows to all RX queues", (void *)dev);
4125         priv->started = 1;
4126         if (priv->isolated) {
4127                 rxq = NULL;
4128                 r = 1;
4129         } else if (priv->rss) {
4130                 rxq = LIST_FIRST(&priv->parents);
4131                 r = 1;
4132         } else {
4133                 rxq = (*priv->rxqs)[0];
4134                 r = priv->rxqs_n;
4135         }
4136         /* Iterate only once when RSS is enabled. */
4137         do {
4138                 /* Ignore nonexistent RX queues. */
4139                 if (rxq == NULL)
4140                         continue;
4141                 ret = rxq_mac_addrs_add(rxq);
4142                 if (!ret && priv->promisc)
4143                         ret = rxq_promiscuous_enable(rxq);
4144                 if (!ret && priv->allmulti)
4145                         ret = rxq_allmulticast_enable(rxq);
4146                 if (!ret)
4147                         continue;
4148                 WARN("%p: QP flow attachment failed: %s",
4149                      (void *)dev, strerror(ret));
4150                 goto err;
4151         } while ((--r) && ((rxq = (*priv->rxqs)[++i]), i));
4152         ret = priv_dev_link_interrupt_handler_install(priv, dev);
4153         if (ret) {
4154                 ERROR("%p: LSC handler install failed",
4155                      (void *)dev);
4156                 goto err;
4157         }
4158         ret = priv_dev_removal_interrupt_handler_install(priv, dev);
4159         if (ret) {
4160                 ERROR("%p: RMV handler install failed",
4161                      (void *)dev);
4162                 goto err;
4163         }
4164         ret = priv_rx_intr_vec_enable(priv);
4165         if (ret) {
4166                 ERROR("%p: Rx interrupt vector creation failed",
4167                       (void *)dev);
4168                 goto err;
4169         }
4170         ret = mlx4_priv_flow_start(priv);
4171         if (ret) {
4172                 ERROR("%p: flow start failed: %s",
4173                       (void *)dev, strerror(ret));
4174                 goto err;
4175         }
4176         priv_unlock(priv);
4177         return 0;
4178 err:
4179         /* Rollback. */
4180         while (i != 0) {
4181                 rxq = (*priv->rxqs)[i--];
4182                 if (rxq != NULL) {
4183                         rxq_allmulticast_disable(rxq);
4184                         rxq_promiscuous_disable(rxq);
4185                         rxq_mac_addrs_del(rxq);
4186                 }
4187         }
4188         priv->started = 0;
4189         priv_unlock(priv);
4190         return -ret;
4191 }
4192
4193 /**
4194  * DPDK callback to stop the device.
4195  *
4196  * Simulate device stop by detaching all configured flows.
4197  *
4198  * @param dev
4199  *   Pointer to Ethernet device structure.
4200  */
4201 static void
4202 mlx4_dev_stop(struct rte_eth_dev *dev)
4203 {
4204         struct priv *priv = dev->data->dev_private;
4205         unsigned int i = 0;
4206         unsigned int r;
4207         struct rxq *rxq;
4208
4209         if (mlx4_is_secondary())
4210                 return;
4211         priv_lock(priv);
4212         if (!priv->started) {
4213                 priv_unlock(priv);
4214                 return;
4215         }
4216         DEBUG("%p: detaching flows from all RX queues", (void *)dev);
4217         priv->started = 0;
4218         if (priv->isolated) {
4219                 rxq = NULL;
4220                 r = 1;
4221         } else if (priv->rss) {
4222                 rxq = LIST_FIRST(&priv->parents);
4223                 r = 1;
4224         } else {
4225                 rxq = (*priv->rxqs)[0];
4226                 r = priv->rxqs_n;
4227         }
4228         mlx4_priv_flow_stop(priv);
4229         /* Iterate only once when RSS is enabled. */
4230         do {
4231                 /* Ignore nonexistent RX queues. */
4232                 if (rxq == NULL)
4233                         continue;
4234                 rxq_allmulticast_disable(rxq);
4235                 rxq_promiscuous_disable(rxq);
4236                 rxq_mac_addrs_del(rxq);
4237         } while ((--r) && ((rxq = (*priv->rxqs)[++i]), i));
4238         priv_unlock(priv);
4239 }
4240
4241 /**
4242  * Dummy DPDK callback for TX.
4243  *
4244  * This function is used to temporarily replace the real callback during
4245  * unsafe control operations on the queue, or in case of error.
4246  *
4247  * @param dpdk_txq
4248  *   Generic pointer to TX queue structure.
4249  * @param[in] pkts
4250  *   Packets to transmit.
4251  * @param pkts_n
4252  *   Number of packets in array.
4253  *
4254  * @return
4255  *   Number of packets successfully transmitted (<= pkts_n).
4256  */
4257 static uint16_t
4258 removed_tx_burst(void *dpdk_txq, struct rte_mbuf **pkts, uint16_t pkts_n)
4259 {
4260         (void)dpdk_txq;
4261         (void)pkts;
4262         (void)pkts_n;
4263         return 0;
4264 }
4265
4266 /**
4267  * Dummy DPDK callback for RX.
4268  *
4269  * This function is used to temporarily replace the real callback during
4270  * unsafe control operations on the queue, or in case of error.
4271  *
4272  * @param dpdk_rxq
4273  *   Generic pointer to RX queue structure.
4274  * @param[out] pkts
4275  *   Array to store received packets.
4276  * @param pkts_n
4277  *   Maximum number of packets in array.
4278  *
4279  * @return
4280  *   Number of packets successfully received (<= pkts_n).
4281  */
4282 static uint16_t
4283 removed_rx_burst(void *dpdk_rxq, struct rte_mbuf **pkts, uint16_t pkts_n)
4284 {
4285         (void)dpdk_rxq;
4286         (void)pkts;
4287         (void)pkts_n;
4288         return 0;
4289 }
4290
4291 static int
4292 priv_dev_interrupt_handler_uninstall(struct priv *, struct rte_eth_dev *);
4293
4294 static int
4295 priv_dev_removal_interrupt_handler_uninstall(struct priv *,
4296                                              struct rte_eth_dev *);
4297
4298 static int
4299 priv_dev_link_interrupt_handler_uninstall(struct priv *, struct rte_eth_dev *);
4300
4301 /**
4302  * DPDK callback to close the device.
4303  *
4304  * Destroy all queues and objects, free memory.
4305  *
4306  * @param dev
4307  *   Pointer to Ethernet device structure.
4308  */
4309 static void
4310 mlx4_dev_close(struct rte_eth_dev *dev)
4311 {
4312         struct priv *priv = mlx4_get_priv(dev);
4313         void *tmp;
4314         unsigned int i;
4315
4316         if (priv == NULL)
4317                 return;
4318         priv_lock(priv);
4319         DEBUG("%p: closing device \"%s\"",
4320               (void *)dev,
4321               ((priv->ctx != NULL) ? priv->ctx->device->name : ""));
4322         /* Prevent crashes when queues are still in use. This is unfortunately
4323          * still required for DPDK 1.3 because some programs (such as testpmd)
4324          * never release them before closing the device. */
4325         dev->rx_pkt_burst = removed_rx_burst;
4326         dev->tx_pkt_burst = removed_tx_burst;
4327         if (priv->rxqs != NULL) {
4328                 /* XXX race condition if mlx4_rx_burst() is still running. */
4329                 usleep(1000);
4330                 for (i = 0; (i != priv->rxqs_n); ++i) {
4331                         tmp = (*priv->rxqs)[i];
4332                         if (tmp == NULL)
4333                                 continue;
4334                         (*priv->rxqs)[i] = NULL;
4335                         rxq_cleanup(tmp);
4336                         rte_free(tmp);
4337                 }
4338                 priv->rxqs_n = 0;
4339                 priv->rxqs = NULL;
4340         }
4341         if (priv->txqs != NULL) {
4342                 /* XXX race condition if mlx4_tx_burst() is still running. */
4343                 usleep(1000);
4344                 for (i = 0; (i != priv->txqs_n); ++i) {
4345                         tmp = (*priv->txqs)[i];
4346                         if (tmp == NULL)
4347                                 continue;
4348                         (*priv->txqs)[i] = NULL;
4349                         txq_cleanup(tmp);
4350                         rte_free(tmp);
4351                 }
4352                 priv->txqs_n = 0;
4353                 priv->txqs = NULL;
4354         }
4355         if (priv->rss)
4356                 priv_parent_list_cleanup(priv);
4357         if (priv->pd != NULL) {
4358                 assert(priv->ctx != NULL);
4359                 claim_zero(ibv_dealloc_pd(priv->pd));
4360                 claim_zero(ibv_close_device(priv->ctx));
4361         } else
4362                 assert(priv->ctx == NULL);
4363         priv_dev_removal_interrupt_handler_uninstall(priv, dev);
4364         priv_dev_link_interrupt_handler_uninstall(priv, dev);
4365         priv_rx_intr_vec_disable(priv);
4366         priv_unlock(priv);
4367         memset(priv, 0, sizeof(*priv));
4368 }
4369
4370 /**
4371  * Change the link state (UP / DOWN).
4372  *
4373  * @param priv
4374  *   Pointer to Ethernet device private data.
4375  * @param up
4376  *   Nonzero for link up, otherwise link down.
4377  *
4378  * @return
4379  *   0 on success, errno value on failure.
4380  */
4381 static int
4382 priv_set_link(struct priv *priv, int up)
4383 {
4384         struct rte_eth_dev *dev = priv->dev;
4385         int err;
4386         unsigned int i;
4387
4388         if (up) {
4389                 err = priv_set_flags(priv, ~IFF_UP, IFF_UP);
4390                 if (err)
4391                         return err;
4392                 for (i = 0; i < priv->rxqs_n; i++)
4393                         if ((*priv->rxqs)[i]->sp)
4394                                 break;
4395                 /* Check if an sp queue exists.
4396                  * Note: Some old frames might be received.
4397                  */
4398                 if (i == priv->rxqs_n)
4399                         dev->rx_pkt_burst = mlx4_rx_burst;
4400                 else
4401                         dev->rx_pkt_burst = mlx4_rx_burst_sp;
4402                 dev->tx_pkt_burst = mlx4_tx_burst;
4403         } else {
4404                 err = priv_set_flags(priv, ~IFF_UP, ~IFF_UP);
4405                 if (err)
4406                         return err;
4407                 dev->rx_pkt_burst = removed_rx_burst;
4408                 dev->tx_pkt_burst = removed_tx_burst;
4409         }
4410         return 0;
4411 }
4412
4413 /**
4414  * DPDK callback to bring the link DOWN.
4415  *
4416  * @param dev
4417  *   Pointer to Ethernet device structure.
4418  *
4419  * @return
4420  *   0 on success, errno value on failure.
4421  */
4422 static int
4423 mlx4_set_link_down(struct rte_eth_dev *dev)
4424 {
4425         struct priv *priv = dev->data->dev_private;
4426         int err;
4427
4428         priv_lock(priv);
4429         err = priv_set_link(priv, 0);
4430         priv_unlock(priv);
4431         return err;
4432 }
4433
4434 /**
4435  * DPDK callback to bring the link UP.
4436  *
4437  * @param dev
4438  *   Pointer to Ethernet device structure.
4439  *
4440  * @return
4441  *   0 on success, errno value on failure.
4442  */
4443 static int
4444 mlx4_set_link_up(struct rte_eth_dev *dev)
4445 {
4446         struct priv *priv = dev->data->dev_private;
4447         int err;
4448
4449         priv_lock(priv);
4450         err = priv_set_link(priv, 1);
4451         priv_unlock(priv);
4452         return err;
4453 }
4454 /**
4455  * DPDK callback to get information about the device.
4456  *
4457  * @param dev
4458  *   Pointer to Ethernet device structure.
4459  * @param[out] info
4460  *   Info structure output buffer.
4461  */
4462 static void
4463 mlx4_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info)
4464 {
4465         struct priv *priv = mlx4_get_priv(dev);
4466         unsigned int max;
4467         char ifname[IF_NAMESIZE];
4468
4469         info->pci_dev = RTE_ETH_DEV_TO_PCI(dev);
4470
4471         if (priv == NULL)
4472                 return;
4473         priv_lock(priv);
4474         /* FIXME: we should ask the device for these values. */
4475         info->min_rx_bufsize = 32;
4476         info->max_rx_pktlen = 65536;
4477         /*
4478          * Since we need one CQ per QP, the limit is the minimum number
4479          * between the two values.
4480          */
4481         max = ((priv->device_attr.max_cq > priv->device_attr.max_qp) ?
4482                priv->device_attr.max_qp : priv->device_attr.max_cq);
4483         /* If max >= 65535 then max = 0, max_rx_queues is uint16_t. */
4484         if (max >= 65535)
4485                 max = 65535;
4486         info->max_rx_queues = max;
4487         info->max_tx_queues = max;
4488         /* Last array entry is reserved for broadcast. */
4489         info->max_mac_addrs = (elemof(priv->mac) - 1);
4490         info->rx_offload_capa =
4491                 (priv->hw_csum ?
4492                  (DEV_RX_OFFLOAD_IPV4_CKSUM |
4493                   DEV_RX_OFFLOAD_UDP_CKSUM |
4494                   DEV_RX_OFFLOAD_TCP_CKSUM) :
4495                  0);
4496         info->tx_offload_capa =
4497                 (priv->hw_csum ?
4498                  (DEV_TX_OFFLOAD_IPV4_CKSUM |
4499                   DEV_TX_OFFLOAD_UDP_CKSUM |
4500                   DEV_TX_OFFLOAD_TCP_CKSUM) :
4501                  0);
4502         if (priv_get_ifname(priv, &ifname) == 0)
4503                 info->if_index = if_nametoindex(ifname);
4504         info->speed_capa =
4505                         ETH_LINK_SPEED_1G |
4506                         ETH_LINK_SPEED_10G |
4507                         ETH_LINK_SPEED_20G |
4508                         ETH_LINK_SPEED_40G |
4509                         ETH_LINK_SPEED_56G;
4510         priv_unlock(priv);
4511 }
4512
4513 static const uint32_t *
4514 mlx4_dev_supported_ptypes_get(struct rte_eth_dev *dev)
4515 {
4516         static const uint32_t ptypes[] = {
4517                 /* refers to rxq_cq_to_pkt_type() */
4518                 RTE_PTYPE_L3_IPV4,
4519                 RTE_PTYPE_L3_IPV6,
4520                 RTE_PTYPE_INNER_L3_IPV4,
4521                 RTE_PTYPE_INNER_L3_IPV6,
4522                 RTE_PTYPE_UNKNOWN
4523         };
4524
4525         if (dev->rx_pkt_burst == mlx4_rx_burst ||
4526             dev->rx_pkt_burst == mlx4_rx_burst_sp)
4527                 return ptypes;
4528         return NULL;
4529 }
4530
4531 /**
4532  * DPDK callback to get device statistics.
4533  *
4534  * @param dev
4535  *   Pointer to Ethernet device structure.
4536  * @param[out] stats
4537  *   Stats structure output buffer.
4538  */
4539 static void
4540 mlx4_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
4541 {
4542         struct priv *priv = mlx4_get_priv(dev);
4543         struct rte_eth_stats tmp = {0};
4544         unsigned int i;
4545         unsigned int idx;
4546
4547         if (priv == NULL)
4548                 return;
4549         priv_lock(priv);
4550         /* Add software counters. */
4551         for (i = 0; (i != priv->rxqs_n); ++i) {
4552                 struct rxq *rxq = (*priv->rxqs)[i];
4553
4554                 if (rxq == NULL)
4555                         continue;
4556                 idx = rxq->stats.idx;
4557                 if (idx < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
4558 #ifdef MLX4_PMD_SOFT_COUNTERS
4559                         tmp.q_ipackets[idx] += rxq->stats.ipackets;
4560                         tmp.q_ibytes[idx] += rxq->stats.ibytes;
4561 #endif
4562                         tmp.q_errors[idx] += (rxq->stats.idropped +
4563                                               rxq->stats.rx_nombuf);
4564                 }
4565 #ifdef MLX4_PMD_SOFT_COUNTERS
4566                 tmp.ipackets += rxq->stats.ipackets;
4567                 tmp.ibytes += rxq->stats.ibytes;
4568 #endif
4569                 tmp.ierrors += rxq->stats.idropped;
4570                 tmp.rx_nombuf += rxq->stats.rx_nombuf;
4571         }
4572         for (i = 0; (i != priv->txqs_n); ++i) {
4573                 struct txq *txq = (*priv->txqs)[i];
4574
4575                 if (txq == NULL)
4576                         continue;
4577                 idx = txq->stats.idx;
4578                 if (idx < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
4579 #ifdef MLX4_PMD_SOFT_COUNTERS
4580                         tmp.q_opackets[idx] += txq->stats.opackets;
4581                         tmp.q_obytes[idx] += txq->stats.obytes;
4582 #endif
4583                         tmp.q_errors[idx] += txq->stats.odropped;
4584                 }
4585 #ifdef MLX4_PMD_SOFT_COUNTERS
4586                 tmp.opackets += txq->stats.opackets;
4587                 tmp.obytes += txq->stats.obytes;
4588 #endif
4589                 tmp.oerrors += txq->stats.odropped;
4590         }
4591 #ifndef MLX4_PMD_SOFT_COUNTERS
4592         /* FIXME: retrieve and add hardware counters. */
4593 #endif
4594         *stats = tmp;
4595         priv_unlock(priv);
4596 }
4597
4598 /**
4599  * DPDK callback to clear device statistics.
4600  *
4601  * @param dev
4602  *   Pointer to Ethernet device structure.
4603  */
4604 static void
4605 mlx4_stats_reset(struct rte_eth_dev *dev)
4606 {
4607         struct priv *priv = mlx4_get_priv(dev);
4608         unsigned int i;
4609         unsigned int idx;
4610
4611         if (priv == NULL)
4612                 return;
4613         priv_lock(priv);
4614         for (i = 0; (i != priv->rxqs_n); ++i) {
4615                 if ((*priv->rxqs)[i] == NULL)
4616                         continue;
4617                 idx = (*priv->rxqs)[i]->stats.idx;
4618                 (*priv->rxqs)[i]->stats =
4619                         (struct mlx4_rxq_stats){ .idx = idx };
4620         }
4621         for (i = 0; (i != priv->txqs_n); ++i) {
4622                 if ((*priv->txqs)[i] == NULL)
4623                         continue;
4624                 idx = (*priv->txqs)[i]->stats.idx;
4625                 (*priv->txqs)[i]->stats =
4626                         (struct mlx4_txq_stats){ .idx = idx };
4627         }
4628 #ifndef MLX4_PMD_SOFT_COUNTERS
4629         /* FIXME: reset hardware counters. */
4630 #endif
4631         priv_unlock(priv);
4632 }
4633
4634 /**
4635  * DPDK callback to remove a MAC address.
4636  *
4637  * @param dev
4638  *   Pointer to Ethernet device structure.
4639  * @param index
4640  *   MAC address index.
4641  */
4642 static void
4643 mlx4_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
4644 {
4645         struct priv *priv = dev->data->dev_private;
4646
4647         if (mlx4_is_secondary())
4648                 return;
4649         priv_lock(priv);
4650         if (priv->isolated)
4651                 goto end;
4652         DEBUG("%p: removing MAC address from index %" PRIu32,
4653               (void *)dev, index);
4654         /* Last array entry is reserved for broadcast. */
4655         if (index >= (elemof(priv->mac) - 1))
4656                 goto end;
4657         priv_mac_addr_del(priv, index);
4658 end:
4659         priv_unlock(priv);
4660 }
4661
4662 /**
4663  * DPDK callback to add a MAC address.
4664  *
4665  * @param dev
4666  *   Pointer to Ethernet device structure.
4667  * @param mac_addr
4668  *   MAC address to register.
4669  * @param index
4670  *   MAC address index.
4671  * @param vmdq
4672  *   VMDq pool index to associate address with (ignored).
4673  */
4674 static int
4675 mlx4_mac_addr_add(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
4676                   uint32_t index, uint32_t vmdq)
4677 {
4678         struct priv *priv = dev->data->dev_private;
4679         int re;
4680
4681         if (mlx4_is_secondary())
4682                 return -ENOTSUP;
4683         (void)vmdq;
4684         priv_lock(priv);
4685         if (priv->isolated) {
4686                 DEBUG("%p: cannot add MAC address, "
4687                       "device is in isolated mode", (void *)dev);
4688                 re = EPERM;
4689                 goto end;
4690         }
4691         DEBUG("%p: adding MAC address at index %" PRIu32,
4692               (void *)dev, index);
4693         /* Last array entry is reserved for broadcast. */
4694         if (index >= (elemof(priv->mac) - 1)) {
4695                 re = EINVAL;
4696                 goto end;
4697         }
4698         re = priv_mac_addr_add(priv, index,
4699                                (const uint8_t (*)[ETHER_ADDR_LEN])
4700                                mac_addr->addr_bytes);
4701 end:
4702         priv_unlock(priv);
4703         return -re;
4704 }
4705
4706 /**
4707  * DPDK callback to set the primary MAC address.
4708  *
4709  * @param dev
4710  *   Pointer to Ethernet device structure.
4711  * @param mac_addr
4712  *   MAC address to register.
4713  */
4714 static void
4715 mlx4_mac_addr_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr)
4716 {
4717         DEBUG("%p: setting primary MAC address", (void *)dev);
4718         mlx4_mac_addr_remove(dev, 0);
4719         mlx4_mac_addr_add(dev, mac_addr, 0, 0);
4720 }
4721
4722 /**
4723  * DPDK callback to enable promiscuous mode.
4724  *
4725  * @param dev
4726  *   Pointer to Ethernet device structure.
4727  */
4728 static void
4729 mlx4_promiscuous_enable(struct rte_eth_dev *dev)
4730 {
4731         struct priv *priv = dev->data->dev_private;
4732         unsigned int i;
4733         int ret;
4734
4735         if (mlx4_is_secondary())
4736                 return;
4737         priv_lock(priv);
4738         if (priv->isolated) {
4739                 DEBUG("%p: cannot enable promiscuous, "
4740                       "device is in isolated mode", (void *)dev);
4741                 priv_unlock(priv);
4742                 return;
4743         }
4744         if (priv->promisc) {
4745                 priv_unlock(priv);
4746                 return;
4747         }
4748         /* If device isn't started, this is all we need to do. */
4749         if (!priv->started)
4750                 goto end;
4751         if (priv->rss) {
4752                 ret = rxq_promiscuous_enable(LIST_FIRST(&priv->parents));
4753                 if (ret) {
4754                         priv_unlock(priv);
4755                         return;
4756                 }
4757                 goto end;
4758         }
4759         for (i = 0; (i != priv->rxqs_n); ++i) {
4760                 if ((*priv->rxqs)[i] == NULL)
4761                         continue;
4762                 ret = rxq_promiscuous_enable((*priv->rxqs)[i]);
4763                 if (!ret)
4764                         continue;
4765                 /* Failure, rollback. */
4766                 while (i != 0)
4767                         if ((*priv->rxqs)[--i] != NULL)
4768                                 rxq_promiscuous_disable((*priv->rxqs)[i]);
4769                 priv_unlock(priv);
4770                 return;
4771         }
4772 end:
4773         priv->promisc = 1;
4774         priv_unlock(priv);
4775 }
4776
4777 /**
4778  * DPDK callback to disable promiscuous mode.
4779  *
4780  * @param dev
4781  *   Pointer to Ethernet device structure.
4782  */
4783 static void
4784 mlx4_promiscuous_disable(struct rte_eth_dev *dev)
4785 {
4786         struct priv *priv = dev->data->dev_private;
4787         unsigned int i;
4788
4789         if (mlx4_is_secondary())
4790                 return;
4791         priv_lock(priv);
4792         if (!priv->promisc || priv->isolated) {
4793                 priv_unlock(priv);
4794                 return;
4795         }
4796         if (priv->rss) {
4797                 rxq_promiscuous_disable(LIST_FIRST(&priv->parents));
4798                 goto end;
4799         }
4800         for (i = 0; (i != priv->rxqs_n); ++i)
4801                 if ((*priv->rxqs)[i] != NULL)
4802                         rxq_promiscuous_disable((*priv->rxqs)[i]);
4803 end:
4804         priv->promisc = 0;
4805         priv_unlock(priv);
4806 }
4807
4808 /**
4809  * DPDK callback to enable allmulti mode.
4810  *
4811  * @param dev
4812  *   Pointer to Ethernet device structure.
4813  */
4814 static void
4815 mlx4_allmulticast_enable(struct rte_eth_dev *dev)
4816 {
4817         struct priv *priv = dev->data->dev_private;
4818         unsigned int i;
4819         int ret;
4820
4821         if (mlx4_is_secondary())
4822                 return;
4823         priv_lock(priv);
4824         if (priv->isolated) {
4825                 DEBUG("%p: cannot enable allmulticast, "
4826                       "device is in isolated mode", (void *)dev);
4827                 priv_unlock(priv);
4828                 return;
4829         }
4830         if (priv->allmulti) {
4831                 priv_unlock(priv);
4832                 return;
4833         }
4834         /* If device isn't started, this is all we need to do. */
4835         if (!priv->started)
4836                 goto end;
4837         if (priv->rss) {
4838                 ret = rxq_allmulticast_enable(LIST_FIRST(&priv->parents));
4839                 if (ret) {
4840                         priv_unlock(priv);
4841                         return;
4842                 }
4843                 goto end;
4844         }
4845         for (i = 0; (i != priv->rxqs_n); ++i) {
4846                 if ((*priv->rxqs)[i] == NULL)
4847                         continue;
4848                 ret = rxq_allmulticast_enable((*priv->rxqs)[i]);
4849                 if (!ret)
4850                         continue;
4851                 /* Failure, rollback. */
4852                 while (i != 0)
4853                         if ((*priv->rxqs)[--i] != NULL)
4854                                 rxq_allmulticast_disable((*priv->rxqs)[i]);
4855                 priv_unlock(priv);
4856                 return;
4857         }
4858 end:
4859         priv->allmulti = 1;
4860         priv_unlock(priv);
4861 }
4862
4863 /**
4864  * DPDK callback to disable allmulti mode.
4865  *
4866  * @param dev
4867  *   Pointer to Ethernet device structure.
4868  */
4869 static void
4870 mlx4_allmulticast_disable(struct rte_eth_dev *dev)
4871 {
4872         struct priv *priv = dev->data->dev_private;
4873         unsigned int i;
4874
4875         if (mlx4_is_secondary())
4876                 return;
4877         priv_lock(priv);
4878         if (!priv->allmulti || priv->isolated) {
4879                 priv_unlock(priv);
4880                 return;
4881         }
4882         if (priv->rss) {
4883                 rxq_allmulticast_disable(LIST_FIRST(&priv->parents));
4884                 goto end;
4885         }
4886         for (i = 0; (i != priv->rxqs_n); ++i)
4887                 if ((*priv->rxqs)[i] != NULL)
4888                         rxq_allmulticast_disable((*priv->rxqs)[i]);
4889 end:
4890         priv->allmulti = 0;
4891         priv_unlock(priv);
4892 }
4893
4894 /**
4895  * DPDK callback to retrieve physical link information.
4896  *
4897  * @param dev
4898  *   Pointer to Ethernet device structure.
4899  * @param wait_to_complete
4900  *   Wait for request completion (ignored).
4901  */
4902 static int
4903 mlx4_link_update(struct rte_eth_dev *dev, int wait_to_complete)
4904 {
4905         const struct priv *priv = mlx4_get_priv(dev);
4906         struct ethtool_cmd edata = {
4907                 .cmd = ETHTOOL_GSET
4908         };
4909         struct ifreq ifr;
4910         struct rte_eth_link dev_link;
4911         int link_speed = 0;
4912
4913         /* priv_lock() is not taken to allow concurrent calls. */
4914
4915         if (priv == NULL)
4916                 return -EINVAL;
4917         (void)wait_to_complete;
4918         if (priv_ifreq(priv, SIOCGIFFLAGS, &ifr)) {
4919                 WARN("ioctl(SIOCGIFFLAGS) failed: %s", strerror(errno));
4920                 return -1;
4921         }
4922         memset(&dev_link, 0, sizeof(dev_link));
4923         dev_link.link_status = ((ifr.ifr_flags & IFF_UP) &&
4924                                 (ifr.ifr_flags & IFF_RUNNING));
4925         ifr.ifr_data = (void *)&edata;
4926         if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
4927                 WARN("ioctl(SIOCETHTOOL, ETHTOOL_GSET) failed: %s",
4928                      strerror(errno));
4929                 return -1;
4930         }
4931         link_speed = ethtool_cmd_speed(&edata);
4932         if (link_speed == -1)
4933                 dev_link.link_speed = 0;
4934         else
4935                 dev_link.link_speed = link_speed;
4936         dev_link.link_duplex = ((edata.duplex == DUPLEX_HALF) ?
4937                                 ETH_LINK_HALF_DUPLEX : ETH_LINK_FULL_DUPLEX);
4938         dev_link.link_autoneg = !(dev->data->dev_conf.link_speeds &
4939                         ETH_LINK_SPEED_FIXED);
4940         if (memcmp(&dev_link, &dev->data->dev_link, sizeof(dev_link))) {
4941                 /* Link status changed. */
4942                 dev->data->dev_link = dev_link;
4943                 return 0;
4944         }
4945         /* Link status is still the same. */
4946         return -1;
4947 }
4948
4949 static int
4950 mlx4_ibv_device_to_pci_addr(const struct ibv_device *device,
4951                             struct rte_pci_addr *pci_addr);
4952
4953 /**
4954  * DPDK callback to change the MTU.
4955  *
4956  * Setting the MTU affects hardware MRU (packets larger than the MTU cannot be
4957  * received). Use this as a hint to enable/disable scattered packets support
4958  * and improve performance when not needed.
4959  * Since failure is not an option, reconfiguring queues on the fly is not
4960  * recommended.
4961  *
4962  * @param dev
4963  *   Pointer to Ethernet device structure.
4964  * @param in_mtu
4965  *   New MTU.
4966  *
4967  * @return
4968  *   0 on success, negative errno value on failure.
4969  */
4970 static int
4971 mlx4_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
4972 {
4973         struct priv *priv = dev->data->dev_private;
4974         int ret = 0;
4975         unsigned int i;
4976         uint16_t (*rx_func)(void *, struct rte_mbuf **, uint16_t) =
4977                 mlx4_rx_burst;
4978
4979         if (mlx4_is_secondary())
4980                 return -E_RTE_SECONDARY;
4981         priv_lock(priv);
4982         /* Set kernel interface MTU first. */
4983         if (priv_set_mtu(priv, mtu)) {
4984                 ret = errno;
4985                 WARN("cannot set port %u MTU to %u: %s", priv->port, mtu,
4986                      strerror(ret));
4987                 goto out;
4988         } else
4989                 DEBUG("adapter port %u MTU set to %u", priv->port, mtu);
4990         priv->mtu = mtu;
4991         /* Temporarily replace RX handler with a fake one, assuming it has not
4992          * been copied elsewhere. */
4993         dev->rx_pkt_burst = removed_rx_burst;
4994         /* Make sure everyone has left mlx4_rx_burst() and uses
4995          * removed_rx_burst() instead. */
4996         rte_wmb();
4997         usleep(1000);
4998         /* Reconfigure each RX queue. */
4999         for (i = 0; (i != priv->rxqs_n); ++i) {
5000                 struct rxq *rxq = (*priv->rxqs)[i];
5001                 unsigned int max_frame_len;
5002
5003                 if (rxq == NULL)
5004                         continue;
5005                 /* Calculate new maximum frame length according to MTU. */
5006                 max_frame_len = (priv->mtu + ETHER_HDR_LEN +
5007                                  (ETHER_MAX_VLAN_FRAME_LEN - ETHER_MAX_LEN));
5008                 /* Provide new values to rxq_setup(). */
5009                 dev->data->dev_conf.rxmode.jumbo_frame =
5010                         (max_frame_len > ETHER_MAX_LEN);
5011                 dev->data->dev_conf.rxmode.max_rx_pkt_len = max_frame_len;
5012                 ret = rxq_rehash(dev, rxq);
5013                 if (ret) {
5014                         /* Force SP RX if that queue requires it and abort. */
5015                         if (rxq->sp)
5016                                 rx_func = mlx4_rx_burst_sp;
5017                         break;
5018                 }
5019                 /* Reenable non-RSS queue attributes. No need to check
5020                  * for errors at this stage. */
5021                 if (!priv->rss && !priv->isolated) {
5022                         rxq_mac_addrs_add(rxq);
5023                         if (priv->promisc)
5024                                 rxq_promiscuous_enable(rxq);
5025                         if (priv->allmulti)
5026                                 rxq_allmulticast_enable(rxq);
5027                 }
5028                 /* Scattered burst function takes priority. */
5029                 if (rxq->sp)
5030                         rx_func = mlx4_rx_burst_sp;
5031         }
5032         /* Burst functions can now be called again. */
5033         rte_wmb();
5034         dev->rx_pkt_burst = rx_func;
5035 out:
5036         priv_unlock(priv);
5037         assert(ret >= 0);
5038         return -ret;
5039 }
5040
5041 /**
5042  * DPDK callback to get flow control status.
5043  *
5044  * @param dev
5045  *   Pointer to Ethernet device structure.
5046  * @param[out] fc_conf
5047  *   Flow control output buffer.
5048  *
5049  * @return
5050  *   0 on success, negative errno value on failure.
5051  */
5052 static int
5053 mlx4_dev_get_flow_ctrl(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
5054 {
5055         struct priv *priv = dev->data->dev_private;
5056         struct ifreq ifr;
5057         struct ethtool_pauseparam ethpause = {
5058                 .cmd = ETHTOOL_GPAUSEPARAM
5059         };
5060         int ret;
5061
5062         if (mlx4_is_secondary())
5063                 return -E_RTE_SECONDARY;
5064         ifr.ifr_data = (void *)&ethpause;
5065         priv_lock(priv);
5066         if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
5067                 ret = errno;
5068                 WARN("ioctl(SIOCETHTOOL, ETHTOOL_GPAUSEPARAM)"
5069                      " failed: %s",
5070                      strerror(ret));
5071                 goto out;
5072         }
5073
5074         fc_conf->autoneg = ethpause.autoneg;
5075         if (ethpause.rx_pause && ethpause.tx_pause)
5076                 fc_conf->mode = RTE_FC_FULL;
5077         else if (ethpause.rx_pause)
5078                 fc_conf->mode = RTE_FC_RX_PAUSE;
5079         else if (ethpause.tx_pause)
5080                 fc_conf->mode = RTE_FC_TX_PAUSE;
5081         else
5082                 fc_conf->mode = RTE_FC_NONE;
5083         ret = 0;
5084
5085 out:
5086         priv_unlock(priv);
5087         assert(ret >= 0);
5088         return -ret;
5089 }
5090
5091 /**
5092  * DPDK callback to modify flow control parameters.
5093  *
5094  * @param dev
5095  *   Pointer to Ethernet device structure.
5096  * @param[in] fc_conf
5097  *   Flow control parameters.
5098  *
5099  * @return
5100  *   0 on success, negative errno value on failure.
5101  */
5102 static int
5103 mlx4_dev_set_flow_ctrl(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
5104 {
5105         struct priv *priv = dev->data->dev_private;
5106         struct ifreq ifr;
5107         struct ethtool_pauseparam ethpause = {
5108                 .cmd = ETHTOOL_SPAUSEPARAM
5109         };
5110         int ret;
5111
5112         if (mlx4_is_secondary())
5113                 return -E_RTE_SECONDARY;
5114         ifr.ifr_data = (void *)&ethpause;
5115         ethpause.autoneg = fc_conf->autoneg;
5116         if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
5117             (fc_conf->mode & RTE_FC_RX_PAUSE))
5118                 ethpause.rx_pause = 1;
5119         else
5120                 ethpause.rx_pause = 0;
5121
5122         if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
5123             (fc_conf->mode & RTE_FC_TX_PAUSE))
5124                 ethpause.tx_pause = 1;
5125         else
5126                 ethpause.tx_pause = 0;
5127
5128         priv_lock(priv);
5129         if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
5130                 ret = errno;
5131                 WARN("ioctl(SIOCETHTOOL, ETHTOOL_SPAUSEPARAM)"
5132                      " failed: %s",
5133                      strerror(ret));
5134                 goto out;
5135         }
5136         ret = 0;
5137
5138 out:
5139         priv_unlock(priv);
5140         assert(ret >= 0);
5141         return -ret;
5142 }
5143
5144 /**
5145  * Configure a VLAN filter.
5146  *
5147  * @param dev
5148  *   Pointer to Ethernet device structure.
5149  * @param vlan_id
5150  *   VLAN ID to filter.
5151  * @param on
5152  *   Toggle filter.
5153  *
5154  * @return
5155  *   0 on success, errno value on failure.
5156  */
5157 static int
5158 vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
5159 {
5160         struct priv *priv = dev->data->dev_private;
5161         unsigned int i;
5162         unsigned int j = -1;
5163
5164         DEBUG("%p: %s VLAN filter ID %" PRIu16,
5165               (void *)dev, (on ? "enable" : "disable"), vlan_id);
5166         for (i = 0; (i != elemof(priv->vlan_filter)); ++i) {
5167                 if (!priv->vlan_filter[i].enabled) {
5168                         /* Unused index, remember it. */
5169                         j = i;
5170                         continue;
5171                 }
5172                 if (priv->vlan_filter[i].id != vlan_id)
5173                         continue;
5174                 /* This VLAN ID is already known, use its index. */
5175                 j = i;
5176                 break;
5177         }
5178         /* Check if there's room for another VLAN filter. */
5179         if (j == (unsigned int)-1)
5180                 return ENOMEM;
5181         /*
5182          * VLAN filters apply to all configured MAC addresses, flow
5183          * specifications must be reconfigured accordingly.
5184          */
5185         priv->vlan_filter[j].id = vlan_id;
5186         if ((on) && (!priv->vlan_filter[j].enabled)) {
5187                 /*
5188                  * Filter is disabled, enable it.
5189                  * Rehashing flows in all RX queues is necessary.
5190                  */
5191                 if (priv->rss)
5192                         rxq_mac_addrs_del(LIST_FIRST(&priv->parents));
5193                 else
5194                         for (i = 0; (i != priv->rxqs_n); ++i)
5195                                 if ((*priv->rxqs)[i] != NULL)
5196                                         rxq_mac_addrs_del((*priv->rxqs)[i]);
5197                 priv->vlan_filter[j].enabled = 1;
5198                 if (priv->started) {
5199                         if (priv->rss)
5200                                 rxq_mac_addrs_add(LIST_FIRST(&priv->parents));
5201                         else
5202                                 for (i = 0; (i != priv->rxqs_n); ++i) {
5203                                         if ((*priv->rxqs)[i] == NULL)
5204                                                 continue;
5205                                         rxq_mac_addrs_add((*priv->rxqs)[i]);
5206                                 }
5207                 }
5208         } else if ((!on) && (priv->vlan_filter[j].enabled)) {
5209                 /*
5210                  * Filter is enabled, disable it.
5211                  * Rehashing flows in all RX queues is necessary.
5212                  */
5213                 if (priv->rss)
5214                         rxq_mac_addrs_del(LIST_FIRST(&priv->parents));
5215                 else
5216                         for (i = 0; (i != priv->rxqs_n); ++i)
5217                                 if ((*priv->rxqs)[i] != NULL)
5218                                         rxq_mac_addrs_del((*priv->rxqs)[i]);
5219                 priv->vlan_filter[j].enabled = 0;
5220                 if (priv->started) {
5221                         if (priv->rss)
5222                                 rxq_mac_addrs_add(LIST_FIRST(&priv->parents));
5223                         else
5224                                 for (i = 0; (i != priv->rxqs_n); ++i) {
5225                                         if ((*priv->rxqs)[i] == NULL)
5226                                                 continue;
5227                                         rxq_mac_addrs_add((*priv->rxqs)[i]);
5228                                 }
5229                 }
5230         }
5231         return 0;
5232 }
5233
5234 /**
5235  * DPDK callback to configure a VLAN filter.
5236  *
5237  * @param dev
5238  *   Pointer to Ethernet device structure.
5239  * @param vlan_id
5240  *   VLAN ID to filter.
5241  * @param on
5242  *   Toggle filter.
5243  *
5244  * @return
5245  *   0 on success, negative errno value on failure.
5246  */
5247 static int
5248 mlx4_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
5249 {
5250         struct priv *priv = dev->data->dev_private;
5251         int ret;
5252
5253         if (mlx4_is_secondary())
5254                 return -E_RTE_SECONDARY;
5255         priv_lock(priv);
5256         if (priv->isolated) {
5257                 DEBUG("%p: cannot set vlan filter, "
5258                       "device is in isolated mode", (void *)dev);
5259                 priv_unlock(priv);
5260                 return -EINVAL;
5261         }
5262         ret = vlan_filter_set(dev, vlan_id, on);
5263         priv_unlock(priv);
5264         assert(ret >= 0);
5265         return -ret;
5266 }
5267
5268 const struct rte_flow_ops mlx4_flow_ops = {
5269         .validate = mlx4_flow_validate,
5270         .create = mlx4_flow_create,
5271         .destroy = mlx4_flow_destroy,
5272         .flush = mlx4_flow_flush,
5273         .query = NULL,
5274         .isolate = mlx4_flow_isolate,
5275 };
5276
5277 /**
5278  * Manage filter operations.
5279  *
5280  * @param dev
5281  *   Pointer to Ethernet device structure.
5282  * @param filter_type
5283  *   Filter type.
5284  * @param filter_op
5285  *   Operation to perform.
5286  * @param arg
5287  *   Pointer to operation-specific structure.
5288  *
5289  * @return
5290  *   0 on success, negative errno value on failure.
5291  */
5292 static int
5293 mlx4_dev_filter_ctrl(struct rte_eth_dev *dev,
5294                      enum rte_filter_type filter_type,
5295                      enum rte_filter_op filter_op,
5296                      void *arg)
5297 {
5298         int ret = EINVAL;
5299
5300         switch (filter_type) {
5301         case RTE_ETH_FILTER_GENERIC:
5302                 if (filter_op != RTE_ETH_FILTER_GET)
5303                         return -EINVAL;
5304                 *(const void **)arg = &mlx4_flow_ops;
5305                 return 0;
5306         case RTE_ETH_FILTER_FDIR:
5307                 DEBUG("%p: filter type FDIR is not supported by this PMD",
5308                       (void *)dev);
5309                 break;
5310         default:
5311                 ERROR("%p: filter type (%d) not supported",
5312                       (void *)dev, filter_type);
5313                 break;
5314         }
5315         return -ret;
5316 }
5317
5318 static const struct eth_dev_ops mlx4_dev_ops = {
5319         .dev_configure = mlx4_dev_configure,
5320         .dev_start = mlx4_dev_start,
5321         .dev_stop = mlx4_dev_stop,
5322         .dev_set_link_down = mlx4_set_link_down,
5323         .dev_set_link_up = mlx4_set_link_up,
5324         .dev_close = mlx4_dev_close,
5325         .promiscuous_enable = mlx4_promiscuous_enable,
5326         .promiscuous_disable = mlx4_promiscuous_disable,
5327         .allmulticast_enable = mlx4_allmulticast_enable,
5328         .allmulticast_disable = mlx4_allmulticast_disable,
5329         .link_update = mlx4_link_update,
5330         .stats_get = mlx4_stats_get,
5331         .stats_reset = mlx4_stats_reset,
5332         .queue_stats_mapping_set = NULL,
5333         .dev_infos_get = mlx4_dev_infos_get,
5334         .dev_supported_ptypes_get = mlx4_dev_supported_ptypes_get,
5335         .vlan_filter_set = mlx4_vlan_filter_set,
5336         .vlan_tpid_set = NULL,
5337         .vlan_strip_queue_set = NULL,
5338         .vlan_offload_set = NULL,
5339         .rx_queue_setup = mlx4_rx_queue_setup,
5340         .tx_queue_setup = mlx4_tx_queue_setup,
5341         .rx_queue_release = mlx4_rx_queue_release,
5342         .tx_queue_release = mlx4_tx_queue_release,
5343         .dev_led_on = NULL,
5344         .dev_led_off = NULL,
5345         .flow_ctrl_get = mlx4_dev_get_flow_ctrl,
5346         .flow_ctrl_set = mlx4_dev_set_flow_ctrl,
5347         .priority_flow_ctrl_set = NULL,
5348         .mac_addr_remove = mlx4_mac_addr_remove,
5349         .mac_addr_add = mlx4_mac_addr_add,
5350         .mac_addr_set = mlx4_mac_addr_set,
5351         .mtu_set = mlx4_dev_set_mtu,
5352         .filter_ctrl = mlx4_dev_filter_ctrl,
5353         .rx_queue_intr_enable = mlx4_rx_intr_enable,
5354         .rx_queue_intr_disable = mlx4_rx_intr_disable,
5355 };
5356
5357 /**
5358  * Get PCI information from struct ibv_device.
5359  *
5360  * @param device
5361  *   Pointer to Ethernet device structure.
5362  * @param[out] pci_addr
5363  *   PCI bus address output buffer.
5364  *
5365  * @return
5366  *   0 on success, -1 on failure and errno is set.
5367  */
5368 static int
5369 mlx4_ibv_device_to_pci_addr(const struct ibv_device *device,
5370                             struct rte_pci_addr *pci_addr)
5371 {
5372         FILE *file;
5373         char line[32];
5374         MKSTR(path, "%s/device/uevent", device->ibdev_path);
5375
5376         file = fopen(path, "rb");
5377         if (file == NULL)
5378                 return -1;
5379         while (fgets(line, sizeof(line), file) == line) {
5380                 size_t len = strlen(line);
5381                 int ret;
5382
5383                 /* Truncate long lines. */
5384                 if (len == (sizeof(line) - 1))
5385                         while (line[(len - 1)] != '\n') {
5386                                 ret = fgetc(file);
5387                                 if (ret == EOF)
5388                                         break;
5389                                 line[(len - 1)] = ret;
5390                         }
5391                 /* Extract information. */
5392                 if (sscanf(line,
5393                            "PCI_SLOT_NAME="
5394                            "%" SCNx32 ":%" SCNx8 ":%" SCNx8 ".%" SCNx8 "\n",
5395                            &pci_addr->domain,
5396                            &pci_addr->bus,
5397                            &pci_addr->devid,
5398                            &pci_addr->function) == 4) {
5399                         ret = 0;
5400                         break;
5401                 }
5402         }
5403         fclose(file);
5404         return 0;
5405 }
5406
5407 /**
5408  * Get MAC address by querying netdevice.
5409  *
5410  * @param[in] priv
5411  *   struct priv for the requested device.
5412  * @param[out] mac
5413  *   MAC address output buffer.
5414  *
5415  * @return
5416  *   0 on success, -1 on failure and errno is set.
5417  */
5418 static int
5419 priv_get_mac(struct priv *priv, uint8_t (*mac)[ETHER_ADDR_LEN])
5420 {
5421         struct ifreq request;
5422
5423         if (priv_ifreq(priv, SIOCGIFHWADDR, &request))
5424                 return -1;
5425         memcpy(mac, request.ifr_hwaddr.sa_data, ETHER_ADDR_LEN);
5426         return 0;
5427 }
5428
5429 /**
5430  * Retrieve integer value from environment variable.
5431  *
5432  * @param[in] name
5433  *   Environment variable name.
5434  *
5435  * @return
5436  *   Integer value, 0 if the variable is not set.
5437  */
5438 static int
5439 mlx4_getenv_int(const char *name)
5440 {
5441         const char *val = getenv(name);
5442
5443         if (val == NULL)
5444                 return 0;
5445         return atoi(val);
5446 }
5447
5448 static void
5449 mlx4_dev_link_status_handler(void *);
5450 static void
5451 mlx4_dev_interrupt_handler(void *);
5452
5453 /**
5454  * Link/device status handler.
5455  *
5456  * @param priv
5457  *   Pointer to private structure.
5458  * @param dev
5459  *   Pointer to the rte_eth_dev structure.
5460  * @param events
5461  *   Pointer to event flags holder.
5462  *
5463  * @return
5464  *   Number of events
5465  */
5466 static int
5467 priv_dev_status_handler(struct priv *priv, struct rte_eth_dev *dev,
5468                         uint32_t *events)
5469 {
5470         struct ibv_async_event event;
5471         int port_change = 0;
5472         struct rte_eth_link *link = &dev->data->dev_link;
5473         int ret = 0;
5474
5475         *events = 0;
5476         /* Read all message and acknowledge them. */
5477         for (;;) {
5478                 if (ibv_get_async_event(priv->ctx, &event))
5479                         break;
5480                 if ((event.event_type == IBV_EVENT_PORT_ACTIVE ||
5481                      event.event_type == IBV_EVENT_PORT_ERR) &&
5482                     (priv->intr_conf.lsc == 1)) {
5483                         port_change = 1;
5484                         ret++;
5485                 } else if (event.event_type == IBV_EVENT_DEVICE_FATAL &&
5486                            priv->intr_conf.rmv == 1) {
5487                         *events |= (1 << RTE_ETH_EVENT_INTR_RMV);
5488                         ret++;
5489                 } else
5490                         DEBUG("event type %d on port %d not handled",
5491                               event.event_type, event.element.port_num);
5492                 ibv_ack_async_event(&event);
5493         }
5494         if (!port_change)
5495                 return ret;
5496         mlx4_link_update(dev, 0);
5497         if (((link->link_speed == 0) && link->link_status) ||
5498             ((link->link_speed != 0) && !link->link_status)) {
5499                 if (!priv->pending_alarm) {
5500                         /* Inconsistent status, check again later. */
5501                         priv->pending_alarm = 1;
5502                         rte_eal_alarm_set(MLX4_ALARM_TIMEOUT_US,
5503                                           mlx4_dev_link_status_handler,
5504                                           dev);
5505                 }
5506         } else {
5507                 *events |= (1 << RTE_ETH_EVENT_INTR_LSC);
5508         }
5509         return ret;
5510 }
5511
5512 /**
5513  * Handle delayed link status event.
5514  *
5515  * @param arg
5516  *   Registered argument.
5517  */
5518 static void
5519 mlx4_dev_link_status_handler(void *arg)
5520 {
5521         struct rte_eth_dev *dev = arg;
5522         struct priv *priv = dev->data->dev_private;
5523         uint32_t events;
5524         int ret;
5525
5526         priv_lock(priv);
5527         assert(priv->pending_alarm == 1);
5528         priv->pending_alarm = 0;
5529         ret = priv_dev_status_handler(priv, dev, &events);
5530         priv_unlock(priv);
5531         if (ret > 0 && events & (1 << RTE_ETH_EVENT_INTR_LSC))
5532                 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC, NULL,
5533                                               NULL);
5534 }
5535
5536 /**
5537  * Handle interrupts from the NIC.
5538  *
5539  * @param[in] intr_handle
5540  *   Interrupt handler.
5541  * @param cb_arg
5542  *   Callback argument.
5543  */
5544 static void
5545 mlx4_dev_interrupt_handler(void *cb_arg)
5546 {
5547         struct rte_eth_dev *dev = cb_arg;
5548         struct priv *priv = dev->data->dev_private;
5549         int ret;
5550         uint32_t ev;
5551         int i;
5552
5553         priv_lock(priv);
5554         ret = priv_dev_status_handler(priv, dev, &ev);
5555         priv_unlock(priv);
5556         if (ret > 0) {
5557                 for (i = RTE_ETH_EVENT_UNKNOWN;
5558                      i < RTE_ETH_EVENT_MAX;
5559                      i++) {
5560                         if (ev & (1 << i)) {
5561                                 ev &= ~(1 << i);
5562                                 _rte_eth_dev_callback_process(dev, i, NULL,
5563                                                               NULL);
5564                                 ret--;
5565                         }
5566                 }
5567                 if (ret)
5568                         WARN("%d event%s not processed", ret,
5569                              (ret > 1 ? "s were" : " was"));
5570         }
5571 }
5572
5573 /**
5574  * Uninstall interrupt handler.
5575  *
5576  * @param priv
5577  *   Pointer to private structure.
5578  * @param dev
5579  *   Pointer to the rte_eth_dev structure.
5580  * @return
5581  *   0 on success, negative errno value on failure.
5582  */
5583 static int
5584 priv_dev_interrupt_handler_uninstall(struct priv *priv, struct rte_eth_dev *dev)
5585 {
5586         int ret;
5587
5588         if (priv->intr_conf.lsc ||
5589             priv->intr_conf.rmv)
5590                 return 0;
5591         ret = rte_intr_callback_unregister(&priv->intr_handle,
5592                                            mlx4_dev_interrupt_handler,
5593                                            dev);
5594         if (ret < 0) {
5595                 ERROR("rte_intr_callback_unregister failed with %d"
5596                       "%s%s%s", ret,
5597                       (errno ? " (errno: " : ""),
5598                       (errno ? strerror(errno) : ""),
5599                       (errno ? ")" : ""));
5600         }
5601         priv->intr_handle.fd = 0;
5602         priv->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
5603         return ret;
5604 }
5605
5606 /**
5607  * Install interrupt handler.
5608  *
5609  * @param priv
5610  *   Pointer to private structure.
5611  * @param dev
5612  *   Pointer to the rte_eth_dev structure.
5613  * @return
5614  *   0 on success, negative errno value on failure.
5615  */
5616 static int
5617 priv_dev_interrupt_handler_install(struct priv *priv,
5618                                    struct rte_eth_dev *dev)
5619 {
5620         int flags;
5621         int rc;
5622
5623         /* Check whether the interrupt handler has already been installed
5624          * for either type of interrupt
5625          */
5626         if (priv->intr_conf.lsc &&
5627             priv->intr_conf.rmv &&
5628             priv->intr_handle.fd)
5629                 return 0;
5630         assert(priv->ctx->async_fd > 0);
5631         flags = fcntl(priv->ctx->async_fd, F_GETFL);
5632         rc = fcntl(priv->ctx->async_fd, F_SETFL, flags | O_NONBLOCK);
5633         if (rc < 0) {
5634                 INFO("failed to change file descriptor async event queue");
5635                 dev->data->dev_conf.intr_conf.lsc = 0;
5636                 dev->data->dev_conf.intr_conf.rmv = 0;
5637                 return -errno;
5638         } else {
5639                 priv->intr_handle.fd = priv->ctx->async_fd;
5640                 priv->intr_handle.type = RTE_INTR_HANDLE_EXT;
5641                 rc = rte_intr_callback_register(&priv->intr_handle,
5642                                                  mlx4_dev_interrupt_handler,
5643                                                  dev);
5644                 if (rc) {
5645                         ERROR("rte_intr_callback_register failed "
5646                               " (errno: %s)", strerror(errno));
5647                         return rc;
5648                 }
5649         }
5650         return 0;
5651 }
5652
5653 /**
5654  * Uninstall interrupt handler.
5655  *
5656  * @param priv
5657  *   Pointer to private structure.
5658  * @param dev
5659  *   Pointer to the rte_eth_dev structure.
5660  * @return
5661  *   0 on success, negative value on error.
5662  */
5663 static int
5664 priv_dev_removal_interrupt_handler_uninstall(struct priv *priv,
5665                                             struct rte_eth_dev *dev)
5666 {
5667         if (dev->data->dev_conf.intr_conf.rmv) {
5668                 priv->intr_conf.rmv = 0;
5669                 return priv_dev_interrupt_handler_uninstall(priv, dev);
5670         }
5671         return 0;
5672 }
5673
5674 /**
5675  * Uninstall interrupt handler.
5676  *
5677  * @param priv
5678  *   Pointer to private structure.
5679  * @param dev
5680  *   Pointer to the rte_eth_dev structure.
5681  * @return
5682  *   0 on success, negative value on error,
5683  */
5684 static int
5685 priv_dev_link_interrupt_handler_uninstall(struct priv *priv,
5686                                           struct rte_eth_dev *dev)
5687 {
5688         int ret = 0;
5689
5690         if (dev->data->dev_conf.intr_conf.lsc) {
5691                 priv->intr_conf.lsc = 0;
5692                 ret = priv_dev_interrupt_handler_uninstall(priv, dev);
5693                 if (ret)
5694                         return ret;
5695         }
5696         if (priv->pending_alarm)
5697                 if (rte_eal_alarm_cancel(mlx4_dev_link_status_handler,
5698                                          dev)) {
5699                         ERROR("rte_eal_alarm_cancel failed "
5700                               " (errno: %s)", strerror(rte_errno));
5701                         return -rte_errno;
5702                 }
5703         priv->pending_alarm = 0;
5704         return 0;
5705 }
5706
5707 /**
5708  * Install link interrupt handler.
5709  *
5710  * @param priv
5711  *   Pointer to private structure.
5712  * @param dev
5713  *   Pointer to the rte_eth_dev structure.
5714  * @return
5715  *   0 on success, negative value on error.
5716  */
5717 static int
5718 priv_dev_link_interrupt_handler_install(struct priv *priv,
5719                                         struct rte_eth_dev *dev)
5720 {
5721         int ret;
5722
5723         if (dev->data->dev_conf.intr_conf.lsc) {
5724                 ret = priv_dev_interrupt_handler_install(priv, dev);
5725                 if (ret)
5726                         return ret;
5727                 priv->intr_conf.lsc = 1;
5728         }
5729         return 0;
5730 }
5731
5732 /**
5733  * Install removal interrupt handler.
5734  *
5735  * @param priv
5736  *   Pointer to private structure.
5737  * @param dev
5738  *   Pointer to the rte_eth_dev structure.
5739  * @return
5740  *   0 on success, negative value on error.
5741  */
5742 static int
5743 priv_dev_removal_interrupt_handler_install(struct priv *priv,
5744                                            struct rte_eth_dev *dev)
5745 {
5746         int ret;
5747
5748         if (dev->data->dev_conf.intr_conf.rmv) {
5749                 ret = priv_dev_interrupt_handler_install(priv, dev);
5750                 if (ret)
5751                         return ret;
5752                 priv->intr_conf.rmv = 1;
5753         }
5754         return 0;
5755 }
5756
5757 /**
5758  * Allocate queue vector and fill epoll fd list for Rx interrupts.
5759  *
5760  * @param priv
5761  *   Pointer to private structure.
5762  *
5763  * @return
5764  *   0 on success, negative on failure.
5765  */
5766 static int
5767 priv_rx_intr_vec_enable(struct priv *priv)
5768 {
5769         unsigned int i;
5770         unsigned int rxqs_n = priv->rxqs_n;
5771         unsigned int n = RTE_MIN(rxqs_n, (uint32_t)RTE_MAX_RXTX_INTR_VEC_ID);
5772         unsigned int count = 0;
5773         struct rte_intr_handle *intr_handle = priv->dev->intr_handle;
5774
5775         if (!priv->dev->data->dev_conf.intr_conf.rxq)
5776                 return 0;
5777         priv_rx_intr_vec_disable(priv);
5778         intr_handle->intr_vec = malloc(sizeof(intr_handle->intr_vec[rxqs_n]));
5779         if (intr_handle->intr_vec == NULL) {
5780                 ERROR("failed to allocate memory for interrupt vector,"
5781                       " Rx interrupts will not be supported");
5782                 return -ENOMEM;
5783         }
5784         intr_handle->type = RTE_INTR_HANDLE_EXT;
5785         for (i = 0; i != n; ++i) {
5786                 struct rxq *rxq = (*priv->rxqs)[i];
5787                 int fd;
5788                 int flags;
5789                 int rc;
5790
5791                 /* Skip queues that cannot request interrupts. */
5792                 if (!rxq || !rxq->channel) {
5793                         /* Use invalid intr_vec[] index to disable entry. */
5794                         intr_handle->intr_vec[i] =
5795                                 RTE_INTR_VEC_RXTX_OFFSET +
5796                                 RTE_MAX_RXTX_INTR_VEC_ID;
5797                         continue;
5798                 }
5799                 if (count >= RTE_MAX_RXTX_INTR_VEC_ID) {
5800                         ERROR("too many Rx queues for interrupt vector size"
5801                               " (%d), Rx interrupts cannot be enabled",
5802                               RTE_MAX_RXTX_INTR_VEC_ID);
5803                         priv_rx_intr_vec_disable(priv);
5804                         return -1;
5805                 }
5806                 fd = rxq->channel->fd;
5807                 flags = fcntl(fd, F_GETFL);
5808                 rc = fcntl(fd, F_SETFL, flags | O_NONBLOCK);
5809                 if (rc < 0) {
5810                         ERROR("failed to make Rx interrupt file descriptor"
5811                               " %d non-blocking for queue index %d", fd, i);
5812                         priv_rx_intr_vec_disable(priv);
5813                         return rc;
5814                 }
5815                 intr_handle->intr_vec[i] = RTE_INTR_VEC_RXTX_OFFSET + count;
5816                 intr_handle->efds[count] = fd;
5817                 count++;
5818         }
5819         if (!count)
5820                 priv_rx_intr_vec_disable(priv);
5821         else
5822                 intr_handle->nb_efd = count;
5823         return 0;
5824 }
5825
5826 /**
5827  * Clean up Rx interrupts handler.
5828  *
5829  * @param priv
5830  *   Pointer to private structure.
5831  */
5832 static void
5833 priv_rx_intr_vec_disable(struct priv *priv)
5834 {
5835         struct rte_intr_handle *intr_handle = priv->dev->intr_handle;
5836
5837         rte_intr_free_epoll_fd(intr_handle);
5838         free(intr_handle->intr_vec);
5839         intr_handle->nb_efd = 0;
5840         intr_handle->intr_vec = NULL;
5841 }
5842
5843 /**
5844  * DPDK callback for Rx queue interrupt enable.
5845  *
5846  * @param dev
5847  *   Pointer to Ethernet device structure.
5848  * @param idx
5849  *   Rx queue index.
5850  *
5851  * @return
5852  *   0 on success, negative on failure.
5853  */
5854 static int
5855 mlx4_rx_intr_enable(struct rte_eth_dev *dev, uint16_t idx)
5856 {
5857         struct priv *priv = dev->data->dev_private;
5858         struct rxq *rxq = (*priv->rxqs)[idx];
5859         int ret;
5860
5861         if (!rxq || !rxq->channel)
5862                 ret = EINVAL;
5863         else
5864                 ret = ibv_req_notify_cq(rxq->cq, 0);
5865         if (ret)
5866                 WARN("unable to arm interrupt on rx queue %d", idx);
5867         return -ret;
5868 }
5869
5870 /**
5871  * DPDK callback for Rx queue interrupt disable.
5872  *
5873  * @param dev
5874  *   Pointer to Ethernet device structure.
5875  * @param idx
5876  *   Rx queue index.
5877  *
5878  * @return
5879  *   0 on success, negative on failure.
5880  */
5881 static int
5882 mlx4_rx_intr_disable(struct rte_eth_dev *dev, uint16_t idx)
5883 {
5884         struct priv *priv = dev->data->dev_private;
5885         struct rxq *rxq = (*priv->rxqs)[idx];
5886         struct ibv_cq *ev_cq;
5887         void *ev_ctx;
5888         int ret;
5889
5890         if (!rxq || !rxq->channel) {
5891                 ret = EINVAL;
5892         } else {
5893                 ret = ibv_get_cq_event(rxq->cq->channel, &ev_cq, &ev_ctx);
5894                 if (ret || ev_cq != rxq->cq)
5895                         ret = EINVAL;
5896         }
5897         if (ret)
5898                 WARN("unable to disable interrupt on rx queue %d",
5899                      idx);
5900         else
5901                 ibv_ack_cq_events(rxq->cq, 1);
5902         return -ret;
5903 }
5904
5905 /**
5906  * Verify and store value for device argument.
5907  *
5908  * @param[in] key
5909  *   Key argument to verify.
5910  * @param[in] val
5911  *   Value associated with key.
5912  * @param[in, out] conf
5913  *   Shared configuration data.
5914  *
5915  * @return
5916  *   0 on success, negative errno value on failure.
5917  */
5918 static int
5919 mlx4_arg_parse(const char *key, const char *val, struct mlx4_conf *conf)
5920 {
5921         unsigned long tmp;
5922
5923         errno = 0;
5924         tmp = strtoul(val, NULL, 0);
5925         if (errno) {
5926                 WARN("%s: \"%s\" is not a valid integer", key, val);
5927                 return -errno;
5928         }
5929         if (strcmp(MLX4_PMD_PORT_KVARG, key) == 0) {
5930                 uint32_t ports = rte_log2_u32(conf->ports.present);
5931
5932                 if (tmp >= ports) {
5933                         ERROR("port index %lu outside range [0,%" PRIu32 ")",
5934                               tmp, ports);
5935                         return -EINVAL;
5936                 }
5937                 if (!(conf->ports.present & (1 << tmp))) {
5938                         ERROR("invalid port index %lu", tmp);
5939                         return -EINVAL;
5940                 }
5941                 conf->ports.enabled |= 1 << tmp;
5942         } else {
5943                 WARN("%s: unknown parameter", key);
5944                 return -EINVAL;
5945         }
5946         return 0;
5947 }
5948
5949 /**
5950  * Parse device parameters.
5951  *
5952  * @param devargs
5953  *   Device arguments structure.
5954  *
5955  * @return
5956  *   0 on success, negative errno value on failure.
5957  */
5958 static int
5959 mlx4_args(struct rte_devargs *devargs, struct mlx4_conf *conf)
5960 {
5961         struct rte_kvargs *kvlist;
5962         unsigned int arg_count;
5963         int ret = 0;
5964         int i;
5965
5966         if (devargs == NULL)
5967                 return 0;
5968         kvlist = rte_kvargs_parse(devargs->args, pmd_mlx4_init_params);
5969         if (kvlist == NULL) {
5970                 ERROR("failed to parse kvargs");
5971                 return -EINVAL;
5972         }
5973         /* Process parameters. */
5974         for (i = 0; pmd_mlx4_init_params[i]; ++i) {
5975                 arg_count = rte_kvargs_count(kvlist, MLX4_PMD_PORT_KVARG);
5976                 while (arg_count-- > 0) {
5977                         ret = rte_kvargs_process(kvlist,
5978                                                  MLX4_PMD_PORT_KVARG,
5979                                                  (int (*)(const char *,
5980                                                           const char *,
5981                                                           void *))
5982                                                  mlx4_arg_parse,
5983                                                  conf);
5984                         if (ret != 0)
5985                                 goto free_kvlist;
5986                 }
5987         }
5988 free_kvlist:
5989         rte_kvargs_free(kvlist);
5990         return ret;
5991 }
5992
5993 static struct rte_pci_driver mlx4_driver;
5994
5995 /**
5996  * DPDK callback to register a PCI device.
5997  *
5998  * This function creates an Ethernet device for each port of a given
5999  * PCI device.
6000  *
6001  * @param[in] pci_drv
6002  *   PCI driver structure (mlx4_driver).
6003  * @param[in] pci_dev
6004  *   PCI device information.
6005  *
6006  * @return
6007  *   0 on success, negative errno value on failure.
6008  */
6009 static int
6010 mlx4_pci_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
6011 {
6012         struct ibv_device **list;
6013         struct ibv_device *ibv_dev;
6014         int err = 0;
6015         struct ibv_context *attr_ctx = NULL;
6016         struct ibv_device_attr device_attr;
6017         struct mlx4_conf conf = {
6018                 .ports.present = 0,
6019         };
6020         unsigned int vf;
6021         int i;
6022
6023         (void)pci_drv;
6024         assert(pci_drv == &mlx4_driver);
6025
6026         list = ibv_get_device_list(&i);
6027         if (list == NULL) {
6028                 assert(errno);
6029                 if (errno == ENOSYS)
6030                         ERROR("cannot list devices, is ib_uverbs loaded?");
6031                 return -errno;
6032         }
6033         assert(i >= 0);
6034         /*
6035          * For each listed device, check related sysfs entry against
6036          * the provided PCI ID.
6037          */
6038         while (i != 0) {
6039                 struct rte_pci_addr pci_addr;
6040
6041                 --i;
6042                 DEBUG("checking device \"%s\"", list[i]->name);
6043                 if (mlx4_ibv_device_to_pci_addr(list[i], &pci_addr))
6044                         continue;
6045                 if ((pci_dev->addr.domain != pci_addr.domain) ||
6046                     (pci_dev->addr.bus != pci_addr.bus) ||
6047                     (pci_dev->addr.devid != pci_addr.devid) ||
6048                     (pci_dev->addr.function != pci_addr.function))
6049                         continue;
6050                 vf = (pci_dev->id.device_id ==
6051                       PCI_DEVICE_ID_MELLANOX_CONNECTX3VF);
6052                 INFO("PCI information matches, using device \"%s\" (VF: %s)",
6053                      list[i]->name, (vf ? "true" : "false"));
6054                 attr_ctx = ibv_open_device(list[i]);
6055                 err = errno;
6056                 break;
6057         }
6058         if (attr_ctx == NULL) {
6059                 ibv_free_device_list(list);
6060                 switch (err) {
6061                 case 0:
6062                         ERROR("cannot access device, is mlx4_ib loaded?");
6063                         return -ENODEV;
6064                 case EINVAL:
6065                         ERROR("cannot use device, are drivers up to date?");
6066                         return -EINVAL;
6067                 }
6068                 assert(err > 0);
6069                 return -err;
6070         }
6071         ibv_dev = list[i];
6072
6073         DEBUG("device opened");
6074         if (ibv_query_device(attr_ctx, &device_attr)) {
6075                 err = ENODEV;
6076                 goto error;
6077         }
6078         INFO("%u port(s) detected", device_attr.phys_port_cnt);
6079
6080         conf.ports.present |= (UINT64_C(1) << device_attr.phys_port_cnt) - 1;
6081         if (mlx4_args(pci_dev->device.devargs, &conf)) {
6082                 ERROR("failed to process device arguments");
6083                 err = EINVAL;
6084                 goto error;
6085         }
6086         /* Use all ports when none are defined */
6087         if (!conf.ports.enabled)
6088                 conf.ports.enabled = conf.ports.present;
6089         for (i = 0; i < device_attr.phys_port_cnt; i++) {
6090                 uint32_t port = i + 1; /* ports are indexed from one */
6091                 struct ibv_context *ctx = NULL;
6092                 struct ibv_port_attr port_attr;
6093                 struct ibv_pd *pd = NULL;
6094                 struct priv *priv = NULL;
6095                 struct rte_eth_dev *eth_dev = NULL;
6096                 struct ibv_exp_device_attr exp_device_attr;
6097                 struct ether_addr mac;
6098
6099                 /* If port is not enabled, skip. */
6100                 if (!(conf.ports.enabled & (1 << i)))
6101                         continue;
6102                 exp_device_attr.comp_mask = IBV_EXP_DEVICE_ATTR_EXP_CAP_FLAGS;
6103                 exp_device_attr.comp_mask |= IBV_EXP_DEVICE_ATTR_RSS_TBL_SZ;
6104
6105                 DEBUG("using port %u", port);
6106
6107                 ctx = ibv_open_device(ibv_dev);
6108                 if (ctx == NULL) {
6109                         err = ENODEV;
6110                         goto port_error;
6111                 }
6112
6113                 /* Check port status. */
6114                 err = ibv_query_port(ctx, port, &port_attr);
6115                 if (err) {
6116                         ERROR("port query failed: %s", strerror(err));
6117                         err = ENODEV;
6118                         goto port_error;
6119                 }
6120
6121                 if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
6122                         ERROR("port %d is not configured in Ethernet mode",
6123                               port);
6124                         err = EINVAL;
6125                         goto port_error;
6126                 }
6127
6128                 if (port_attr.state != IBV_PORT_ACTIVE)
6129                         DEBUG("port %d is not active: \"%s\" (%d)",
6130                               port, ibv_port_state_str(port_attr.state),
6131                               port_attr.state);
6132
6133                 /* Allocate protection domain. */
6134                 pd = ibv_alloc_pd(ctx);
6135                 if (pd == NULL) {
6136                         ERROR("PD allocation failure");
6137                         err = ENOMEM;
6138                         goto port_error;
6139                 }
6140
6141                 /* from rte_ethdev.c */
6142                 priv = rte_zmalloc("ethdev private structure",
6143                                    sizeof(*priv),
6144                                    RTE_CACHE_LINE_SIZE);
6145                 if (priv == NULL) {
6146                         ERROR("priv allocation failure");
6147                         err = ENOMEM;
6148                         goto port_error;
6149                 }
6150
6151                 priv->ctx = ctx;
6152                 priv->device_attr = device_attr;
6153                 priv->port = port;
6154                 priv->pd = pd;
6155                 priv->mtu = ETHER_MTU;
6156                 if (ibv_exp_query_device(ctx, &exp_device_attr)) {
6157                         ERROR("ibv_exp_query_device() failed");
6158                         err = ENODEV;
6159                         goto port_error;
6160                 }
6161                 if ((exp_device_attr.exp_device_cap_flags &
6162                      IBV_EXP_DEVICE_QPG) &&
6163                     (exp_device_attr.exp_device_cap_flags &
6164                      IBV_EXP_DEVICE_UD_RSS) &&
6165                     (exp_device_attr.comp_mask &
6166                      IBV_EXP_DEVICE_ATTR_RSS_TBL_SZ) &&
6167                     (exp_device_attr.max_rss_tbl_sz > 0)) {
6168                         priv->hw_qpg = 1;
6169                         priv->hw_rss = 1;
6170                         priv->max_rss_tbl_sz = exp_device_attr.max_rss_tbl_sz;
6171                 } else {
6172                         priv->hw_qpg = 0;
6173                         priv->hw_rss = 0;
6174                         priv->max_rss_tbl_sz = 0;
6175                 }
6176                 priv->hw_tss = !!(exp_device_attr.exp_device_cap_flags &
6177                                   IBV_EXP_DEVICE_UD_TSS);
6178                 DEBUG("device flags: %s%s%s",
6179                       (priv->hw_qpg ? "IBV_DEVICE_QPG " : ""),
6180                       (priv->hw_tss ? "IBV_DEVICE_TSS " : ""),
6181                       (priv->hw_rss ? "IBV_DEVICE_RSS " : ""));
6182                 if (priv->hw_rss)
6183                         DEBUG("maximum RSS indirection table size: %u",
6184                               exp_device_attr.max_rss_tbl_sz);
6185
6186                 priv->hw_csum =
6187                         ((exp_device_attr.exp_device_cap_flags &
6188                           IBV_EXP_DEVICE_RX_CSUM_TCP_UDP_PKT) &&
6189                          (exp_device_attr.exp_device_cap_flags &
6190                           IBV_EXP_DEVICE_RX_CSUM_IP_PKT));
6191                 DEBUG("checksum offloading is %ssupported",
6192                       (priv->hw_csum ? "" : "not "));
6193
6194                 priv->hw_csum_l2tun = !!(exp_device_attr.exp_device_cap_flags &
6195                                          IBV_EXP_DEVICE_VXLAN_SUPPORT);
6196                 DEBUG("L2 tunnel checksum offloads are %ssupported",
6197                       (priv->hw_csum_l2tun ? "" : "not "));
6198
6199                 priv->inl_recv_size = mlx4_getenv_int("MLX4_INLINE_RECV_SIZE");
6200
6201                 if (priv->inl_recv_size) {
6202                         exp_device_attr.comp_mask =
6203                                 IBV_EXP_DEVICE_ATTR_INLINE_RECV_SZ;
6204                         if (ibv_exp_query_device(ctx, &exp_device_attr)) {
6205                                 INFO("Couldn't query device for inline-receive"
6206                                      " capabilities.");
6207                                 priv->inl_recv_size = 0;
6208                         } else {
6209                                 if ((unsigned)exp_device_attr.inline_recv_sz <
6210                                     priv->inl_recv_size) {
6211                                         INFO("Max inline-receive (%d) <"
6212                                              " requested inline-receive (%u)",
6213                                              exp_device_attr.inline_recv_sz,
6214                                              priv->inl_recv_size);
6215                                         priv->inl_recv_size =
6216                                                 exp_device_attr.inline_recv_sz;
6217                                 }
6218                         }
6219                         INFO("Set inline receive size to %u",
6220                              priv->inl_recv_size);
6221                 }
6222
6223                 priv->vf = vf;
6224                 /* Configure the first MAC address by default. */
6225                 if (priv_get_mac(priv, &mac.addr_bytes)) {
6226                         ERROR("cannot get MAC address, is mlx4_en loaded?"
6227                               " (errno: %s)", strerror(errno));
6228                         err = ENODEV;
6229                         goto port_error;
6230                 }
6231                 INFO("port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
6232                      priv->port,
6233                      mac.addr_bytes[0], mac.addr_bytes[1],
6234                      mac.addr_bytes[2], mac.addr_bytes[3],
6235                      mac.addr_bytes[4], mac.addr_bytes[5]);
6236                 /* Register MAC and broadcast addresses. */
6237                 claim_zero(priv_mac_addr_add(priv, 0,
6238                                              (const uint8_t (*)[ETHER_ADDR_LEN])
6239                                              mac.addr_bytes));
6240                 claim_zero(priv_mac_addr_add(priv, (elemof(priv->mac) - 1),
6241                                              &(const uint8_t [ETHER_ADDR_LEN])
6242                                              { "\xff\xff\xff\xff\xff\xff" }));
6243 #ifndef NDEBUG
6244                 {
6245                         char ifname[IF_NAMESIZE];
6246
6247                         if (priv_get_ifname(priv, &ifname) == 0)
6248                                 DEBUG("port %u ifname is \"%s\"",
6249                                       priv->port, ifname);
6250                         else
6251                                 DEBUG("port %u ifname is unknown", priv->port);
6252                 }
6253 #endif
6254                 /* Get actual MTU if possible. */
6255                 priv_get_mtu(priv, &priv->mtu);
6256                 DEBUG("port %u MTU is %u", priv->port, priv->mtu);
6257
6258                 /* from rte_ethdev.c */
6259                 {
6260                         char name[RTE_ETH_NAME_MAX_LEN];
6261
6262                         snprintf(name, sizeof(name), "%s port %u",
6263                                  ibv_get_device_name(ibv_dev), port);
6264                         eth_dev = rte_eth_dev_allocate(name);
6265                 }
6266                 if (eth_dev == NULL) {
6267                         ERROR("can not allocate rte ethdev");
6268                         err = ENOMEM;
6269                         goto port_error;
6270                 }
6271
6272                 /* Secondary processes have to use local storage for their
6273                  * private data as well as a copy of eth_dev->data, but this
6274                  * pointer must not be modified before burst functions are
6275                  * actually called. */
6276                 if (mlx4_is_secondary()) {
6277                         struct mlx4_secondary_data *sd =
6278                                 &mlx4_secondary_data[eth_dev->data->port_id];
6279
6280                         sd->primary_priv = eth_dev->data->dev_private;
6281                         if (sd->primary_priv == NULL) {
6282                                 ERROR("no private data for port %u",
6283                                       eth_dev->data->port_id);
6284                                 err = EINVAL;
6285                                 goto port_error;
6286                         }
6287                         sd->shared_dev_data = eth_dev->data;
6288                         rte_spinlock_init(&sd->lock);
6289                         memcpy(sd->data.name, sd->shared_dev_data->name,
6290                                sizeof(sd->data.name));
6291                         sd->data.dev_private = priv;
6292                         sd->data.rx_mbuf_alloc_failed = 0;
6293                         sd->data.mtu = ETHER_MTU;
6294                         sd->data.port_id = sd->shared_dev_data->port_id;
6295                         sd->data.mac_addrs = priv->mac;
6296                         eth_dev->tx_pkt_burst = mlx4_tx_burst_secondary_setup;
6297                         eth_dev->rx_pkt_burst = mlx4_rx_burst_secondary_setup;
6298                 } else {
6299                         eth_dev->data->dev_private = priv;
6300                         eth_dev->data->mac_addrs = priv->mac;
6301                 }
6302                 eth_dev->device = &pci_dev->device;
6303
6304                 rte_eth_copy_pci_info(eth_dev, pci_dev);
6305
6306                 eth_dev->device->driver = &mlx4_driver.driver;
6307
6308                 /*
6309                  * Copy and override interrupt handle to prevent it from
6310                  * being shared between all ethdev instances of a given PCI
6311                  * device. This is required to properly handle Rx interrupts
6312                  * on all ports.
6313                  */
6314                 priv->intr_handle_dev = *eth_dev->intr_handle;
6315                 eth_dev->intr_handle = &priv->intr_handle_dev;
6316
6317                 priv->dev = eth_dev;
6318                 eth_dev->dev_ops = &mlx4_dev_ops;
6319                 eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
6320
6321                 /* Bring Ethernet device up. */
6322                 DEBUG("forcing Ethernet interface up");
6323                 priv_set_flags(priv, ~IFF_UP, IFF_UP);
6324                 /* Update link status once if waiting for LSC. */
6325                 if (eth_dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
6326                         mlx4_link_update(eth_dev, 0);
6327                 continue;
6328
6329 port_error:
6330                 rte_free(priv);
6331                 if (pd)
6332                         claim_zero(ibv_dealloc_pd(pd));
6333                 if (ctx)
6334                         claim_zero(ibv_close_device(ctx));
6335                 if (eth_dev)
6336                         rte_eth_dev_release_port(eth_dev);
6337                 break;
6338         }
6339         if (i == device_attr.phys_port_cnt)
6340                 return 0;
6341
6342         /*
6343          * XXX if something went wrong in the loop above, there is a resource
6344          * leak (ctx, pd, priv, dpdk ethdev) but we can do nothing about it as
6345          * long as the dpdk does not provide a way to deallocate a ethdev and a
6346          * way to enumerate the registered ethdevs to free the previous ones.
6347          */
6348
6349 error:
6350         if (attr_ctx)
6351                 claim_zero(ibv_close_device(attr_ctx));
6352         if (list)
6353                 ibv_free_device_list(list);
6354         assert(err >= 0);
6355         return -err;
6356 }
6357
6358 static const struct rte_pci_id mlx4_pci_id_map[] = {
6359         {
6360                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
6361                                PCI_DEVICE_ID_MELLANOX_CONNECTX3)
6362         },
6363         {
6364                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
6365                                PCI_DEVICE_ID_MELLANOX_CONNECTX3PRO)
6366         },
6367         {
6368                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
6369                                PCI_DEVICE_ID_MELLANOX_CONNECTX3VF)
6370         },
6371         {
6372                 .vendor_id = 0
6373         }
6374 };
6375
6376 static struct rte_pci_driver mlx4_driver = {
6377         .driver = {
6378                 .name = MLX4_DRIVER_NAME
6379         },
6380         .id_table = mlx4_pci_id_map,
6381         .probe = mlx4_pci_probe,
6382         .drv_flags = RTE_PCI_DRV_INTR_LSC |
6383                      RTE_PCI_DRV_INTR_RMV,
6384 };
6385
6386 /**
6387  * Driver initialization routine.
6388  */
6389 RTE_INIT(rte_mlx4_pmd_init);
6390 static void
6391 rte_mlx4_pmd_init(void)
6392 {
6393         RTE_BUILD_BUG_ON(sizeof(wr_id_t) != sizeof(uint64_t));
6394         /*
6395          * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
6396          * huge pages. Calling ibv_fork_init() during init allows
6397          * applications to use fork() safely for purposes other than
6398          * using this PMD, which is not supported in forked processes.
6399          */
6400         setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
6401         ibv_fork_init();
6402         rte_pci_register(&mlx4_driver);
6403 }
6404
6405 RTE_PMD_EXPORT_NAME(net_mlx4, __COUNTER__);
6406 RTE_PMD_REGISTER_PCI_TABLE(net_mlx4, mlx4_pci_id_map);
6407 RTE_PMD_REGISTER_KMOD_DEP(net_mlx4,
6408         "* ib_uverbs & mlx4_en & mlx4_core & mlx4_ib");