net/mlx4: restore promisc and allmulti support
[dpdk.git] / drivers / net / mlx4 / mlx4_ethdev.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2017 6WIND S.A.
5  *   Copyright 2017 Mellanox
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of 6WIND S.A. nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 /**
35  * @file
36  * Miscellaneous control operations for mlx4 driver.
37  */
38
39 #include <assert.h>
40 #include <dirent.h>
41 #include <errno.h>
42 #include <linux/ethtool.h>
43 #include <linux/sockios.h>
44 #include <net/if.h>
45 #include <netinet/ip.h>
46 #include <stddef.h>
47 #include <stdint.h>
48 #include <stdio.h>
49 #include <stdlib.h>
50 #include <string.h>
51 #include <sys/ioctl.h>
52 #include <sys/socket.h>
53 #include <unistd.h>
54
55 /* Verbs headers do not support -pedantic. */
56 #ifdef PEDANTIC
57 #pragma GCC diagnostic ignored "-Wpedantic"
58 #endif
59 #include <infiniband/verbs.h>
60 #ifdef PEDANTIC
61 #pragma GCC diagnostic error "-Wpedantic"
62 #endif
63
64 #include <rte_errno.h>
65 #include <rte_ethdev.h>
66 #include <rte_ether.h>
67 #include <rte_flow.h>
68 #include <rte_pci.h>
69
70 #include "mlx4.h"
71 #include "mlx4_flow.h"
72 #include "mlx4_rxtx.h"
73 #include "mlx4_utils.h"
74
75 /**
76  * Get interface name from private structure.
77  *
78  * @param[in] priv
79  *   Pointer to private structure.
80  * @param[out] ifname
81  *   Interface name output buffer.
82  *
83  * @return
84  *   0 on success, negative errno value otherwise and rte_errno is set.
85  */
86 int
87 mlx4_get_ifname(const struct priv *priv, char (*ifname)[IF_NAMESIZE])
88 {
89         DIR *dir;
90         struct dirent *dent;
91         unsigned int dev_type = 0;
92         unsigned int dev_port_prev = ~0u;
93         char match[IF_NAMESIZE] = "";
94
95         {
96                 MKSTR(path, "%s/device/net", priv->ctx->device->ibdev_path);
97
98                 dir = opendir(path);
99                 if (dir == NULL) {
100                         rte_errno = errno;
101                         return -rte_errno;
102                 }
103         }
104         while ((dent = readdir(dir)) != NULL) {
105                 char *name = dent->d_name;
106                 FILE *file;
107                 unsigned int dev_port;
108                 int r;
109
110                 if ((name[0] == '.') &&
111                     ((name[1] == '\0') ||
112                      ((name[1] == '.') && (name[2] == '\0'))))
113                         continue;
114
115                 MKSTR(path, "%s/device/net/%s/%s",
116                       priv->ctx->device->ibdev_path, name,
117                       (dev_type ? "dev_id" : "dev_port"));
118
119                 file = fopen(path, "rb");
120                 if (file == NULL) {
121                         if (errno != ENOENT)
122                                 continue;
123                         /*
124                          * Switch to dev_id when dev_port does not exist as
125                          * is the case with Linux kernel versions < 3.15.
126                          */
127 try_dev_id:
128                         match[0] = '\0';
129                         if (dev_type)
130                                 break;
131                         dev_type = 1;
132                         dev_port_prev = ~0u;
133                         rewinddir(dir);
134                         continue;
135                 }
136                 r = fscanf(file, (dev_type ? "%x" : "%u"), &dev_port);
137                 fclose(file);
138                 if (r != 1)
139                         continue;
140                 /*
141                  * Switch to dev_id when dev_port returns the same value for
142                  * all ports. May happen when using a MOFED release older than
143                  * 3.0 with a Linux kernel >= 3.15.
144                  */
145                 if (dev_port == dev_port_prev)
146                         goto try_dev_id;
147                 dev_port_prev = dev_port;
148                 if (dev_port == (priv->port - 1u))
149                         snprintf(match, sizeof(match), "%s", name);
150         }
151         closedir(dir);
152         if (match[0] == '\0') {
153                 rte_errno = ENODEV;
154                 return -rte_errno;
155         }
156         strncpy(*ifname, match, sizeof(*ifname));
157         return 0;
158 }
159
160 /**
161  * Read from sysfs entry.
162  *
163  * @param[in] priv
164  *   Pointer to private structure.
165  * @param[in] entry
166  *   Entry name relative to sysfs path.
167  * @param[out] buf
168  *   Data output buffer.
169  * @param size
170  *   Buffer size.
171  *
172  * @return
173  *   Number of bytes read on success, negative errno value otherwise and
174  *   rte_errno is set.
175  */
176 static int
177 mlx4_sysfs_read(const struct priv *priv, const char *entry,
178                 char *buf, size_t size)
179 {
180         char ifname[IF_NAMESIZE];
181         FILE *file;
182         int ret;
183
184         ret = mlx4_get_ifname(priv, &ifname);
185         if (ret)
186                 return ret;
187
188         MKSTR(path, "%s/device/net/%s/%s", priv->ctx->device->ibdev_path,
189               ifname, entry);
190
191         file = fopen(path, "rb");
192         if (file == NULL) {
193                 rte_errno = errno;
194                 return -rte_errno;
195         }
196         ret = fread(buf, 1, size, file);
197         if ((size_t)ret < size && ferror(file)) {
198                 rte_errno = EIO;
199                 ret = -rte_errno;
200         } else {
201                 ret = size;
202         }
203         fclose(file);
204         return ret;
205 }
206
207 /**
208  * Write to sysfs entry.
209  *
210  * @param[in] priv
211  *   Pointer to private structure.
212  * @param[in] entry
213  *   Entry name relative to sysfs path.
214  * @param[in] buf
215  *   Data buffer.
216  * @param size
217  *   Buffer size.
218  *
219  * @return
220  *   Number of bytes written on success, negative errno value otherwise and
221  *   rte_errno is set.
222  */
223 static int
224 mlx4_sysfs_write(const struct priv *priv, const char *entry,
225                  char *buf, size_t size)
226 {
227         char ifname[IF_NAMESIZE];
228         FILE *file;
229         int ret;
230
231         ret = mlx4_get_ifname(priv, &ifname);
232         if (ret)
233                 return ret;
234
235         MKSTR(path, "%s/device/net/%s/%s", priv->ctx->device->ibdev_path,
236               ifname, entry);
237
238         file = fopen(path, "wb");
239         if (file == NULL) {
240                 rte_errno = errno;
241                 return -rte_errno;
242         }
243         ret = fwrite(buf, 1, size, file);
244         if ((size_t)ret < size || ferror(file)) {
245                 rte_errno = EIO;
246                 ret = -rte_errno;
247         } else {
248                 ret = size;
249         }
250         fclose(file);
251         return ret;
252 }
253
254 /**
255  * Get unsigned long sysfs property.
256  *
257  * @param priv
258  *   Pointer to private structure.
259  * @param[in] name
260  *   Entry name relative to sysfs path.
261  * @param[out] value
262  *   Value output buffer.
263  *
264  * @return
265  *   0 on success, negative errno value otherwise and rte_errno is set.
266  */
267 static int
268 mlx4_get_sysfs_ulong(struct priv *priv, const char *name, unsigned long *value)
269 {
270         int ret;
271         unsigned long value_ret;
272         char value_str[32];
273
274         ret = mlx4_sysfs_read(priv, name, value_str, (sizeof(value_str) - 1));
275         if (ret < 0) {
276                 DEBUG("cannot read %s value from sysfs: %s",
277                       name, strerror(rte_errno));
278                 return ret;
279         }
280         value_str[ret] = '\0';
281         errno = 0;
282         value_ret = strtoul(value_str, NULL, 0);
283         if (errno) {
284                 rte_errno = errno;
285                 DEBUG("invalid %s value `%s': %s", name, value_str,
286                       strerror(rte_errno));
287                 return -rte_errno;
288         }
289         *value = value_ret;
290         return 0;
291 }
292
293 /**
294  * Set unsigned long sysfs property.
295  *
296  * @param priv
297  *   Pointer to private structure.
298  * @param[in] name
299  *   Entry name relative to sysfs path.
300  * @param value
301  *   Value to set.
302  *
303  * @return
304  *   0 on success, negative errno value otherwise and rte_errno is set.
305  */
306 static int
307 mlx4_set_sysfs_ulong(struct priv *priv, const char *name, unsigned long value)
308 {
309         int ret;
310         MKSTR(value_str, "%lu", value);
311
312         ret = mlx4_sysfs_write(priv, name, value_str, (sizeof(value_str) - 1));
313         if (ret < 0) {
314                 DEBUG("cannot write %s `%s' (%lu) to sysfs: %s",
315                       name, value_str, value, strerror(rte_errno));
316                 return ret;
317         }
318         return 0;
319 }
320
321 /**
322  * Perform ifreq ioctl() on associated Ethernet device.
323  *
324  * @param[in] priv
325  *   Pointer to private structure.
326  * @param req
327  *   Request number to pass to ioctl().
328  * @param[out] ifr
329  *   Interface request structure output buffer.
330  *
331  * @return
332  *   0 on success, negative errno value otherwise and rte_errno is set.
333  */
334 static int
335 mlx4_ifreq(const struct priv *priv, int req, struct ifreq *ifr)
336 {
337         int sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
338         int ret;
339
340         if (sock == -1) {
341                 rte_errno = errno;
342                 return -rte_errno;
343         }
344         ret = mlx4_get_ifname(priv, &ifr->ifr_name);
345         if (!ret && ioctl(sock, req, ifr) == -1) {
346                 rte_errno = errno;
347                 ret = -rte_errno;
348         }
349         close(sock);
350         return ret;
351 }
352
353 /**
354  * Get MAC address by querying netdevice.
355  *
356  * @param[in] priv
357  *   Pointer to private structure.
358  * @param[out] mac
359  *   MAC address output buffer.
360  *
361  * @return
362  *   0 on success, negative errno value otherwise and rte_errno is set.
363  */
364 int
365 mlx4_get_mac(struct priv *priv, uint8_t (*mac)[ETHER_ADDR_LEN])
366 {
367         struct ifreq request;
368         int ret = mlx4_ifreq(priv, SIOCGIFHWADDR, &request);
369
370         if (ret)
371                 return ret;
372         memcpy(mac, request.ifr_hwaddr.sa_data, ETHER_ADDR_LEN);
373         return 0;
374 }
375
376 /**
377  * Get device MTU.
378  *
379  * @param priv
380  *   Pointer to private structure.
381  * @param[out] mtu
382  *   MTU value output buffer.
383  *
384  * @return
385  *   0 on success, negative errno value otherwise and rte_errno is set.
386  */
387 int
388 mlx4_mtu_get(struct priv *priv, uint16_t *mtu)
389 {
390         unsigned long ulong_mtu = 0;
391         int ret = mlx4_get_sysfs_ulong(priv, "mtu", &ulong_mtu);
392
393         if (ret)
394                 return ret;
395         *mtu = ulong_mtu;
396         return 0;
397 }
398
399 /**
400  * DPDK callback to change the MTU.
401  *
402  * @param priv
403  *   Pointer to Ethernet device structure.
404  * @param mtu
405  *   MTU value to set.
406  *
407  * @return
408  *   0 on success, negative errno value otherwise and rte_errno is set.
409  */
410 int
411 mlx4_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
412 {
413         struct priv *priv = dev->data->dev_private;
414         uint16_t new_mtu;
415         int ret = mlx4_set_sysfs_ulong(priv, "mtu", mtu);
416
417         if (ret)
418                 return ret;
419         ret = mlx4_mtu_get(priv, &new_mtu);
420         if (ret)
421                 return ret;
422         if (new_mtu == mtu) {
423                 priv->mtu = mtu;
424                 return 0;
425         }
426         rte_errno = EINVAL;
427         return -rte_errno;
428 }
429
430 /**
431  * Set device flags.
432  *
433  * @param priv
434  *   Pointer to private structure.
435  * @param keep
436  *   Bitmask for flags that must remain untouched.
437  * @param flags
438  *   Bitmask for flags to modify.
439  *
440  * @return
441  *   0 on success, negative errno value otherwise and rte_errno is set.
442  */
443 static int
444 mlx4_set_flags(struct priv *priv, unsigned int keep, unsigned int flags)
445 {
446         unsigned long tmp = 0;
447         int ret = mlx4_get_sysfs_ulong(priv, "flags", &tmp);
448
449         if (ret)
450                 return ret;
451         tmp &= keep;
452         tmp |= (flags & (~keep));
453         return mlx4_set_sysfs_ulong(priv, "flags", tmp);
454 }
455
456 /**
457  * Change the link state (UP / DOWN).
458  *
459  * @param priv
460  *   Pointer to Ethernet device private data.
461  * @param up
462  *   Nonzero for link up, otherwise link down.
463  *
464  * @return
465  *   0 on success, negative errno value otherwise and rte_errno is set.
466  */
467 static int
468 mlx4_dev_set_link(struct priv *priv, int up)
469 {
470         struct rte_eth_dev *dev = priv->dev;
471         int err;
472
473         if (up) {
474                 err = mlx4_set_flags(priv, ~IFF_UP, IFF_UP);
475                 if (err)
476                         return err;
477                 dev->rx_pkt_burst = mlx4_rx_burst;
478         } else {
479                 err = mlx4_set_flags(priv, ~IFF_UP, ~IFF_UP);
480                 if (err)
481                         return err;
482                 dev->rx_pkt_burst = mlx4_rx_burst_removed;
483                 dev->tx_pkt_burst = mlx4_tx_burst_removed;
484         }
485         return 0;
486 }
487
488 /**
489  * DPDK callback to bring the link DOWN.
490  *
491  * @param dev
492  *   Pointer to Ethernet device structure.
493  *
494  * @return
495  *   0 on success, negative errno value otherwise and rte_errno is set.
496  */
497 int
498 mlx4_dev_set_link_down(struct rte_eth_dev *dev)
499 {
500         struct priv *priv = dev->data->dev_private;
501
502         return mlx4_dev_set_link(priv, 0);
503 }
504
505 /**
506  * DPDK callback to bring the link UP.
507  *
508  * @param dev
509  *   Pointer to Ethernet device structure.
510  *
511  * @return
512  *   0 on success, negative errno value otherwise and rte_errno is set.
513  */
514 int
515 mlx4_dev_set_link_up(struct rte_eth_dev *dev)
516 {
517         struct priv *priv = dev->data->dev_private;
518
519         return mlx4_dev_set_link(priv, 1);
520 }
521
522 /**
523  * Supported Rx mode toggles.
524  *
525  * Even and odd values respectively stand for off and on.
526  */
527 enum rxmode_toggle {
528         RXMODE_TOGGLE_PROMISC_OFF,
529         RXMODE_TOGGLE_PROMISC_ON,
530         RXMODE_TOGGLE_ALLMULTI_OFF,
531         RXMODE_TOGGLE_ALLMULTI_ON,
532 };
533
534 /**
535  * Helper function to toggle promiscuous and all multicast modes.
536  *
537  * @param dev
538  *   Pointer to Ethernet device structure.
539  * @param toggle
540  *   Toggle to set.
541  */
542 static void
543 mlx4_rxmode_toggle(struct rte_eth_dev *dev, enum rxmode_toggle toggle)
544 {
545         struct priv *priv = dev->data->dev_private;
546         const char *mode;
547         struct rte_flow_error error;
548
549         switch (toggle) {
550         case RXMODE_TOGGLE_PROMISC_OFF:
551         case RXMODE_TOGGLE_PROMISC_ON:
552                 mode = "promiscuous";
553                 dev->data->promiscuous = toggle & 1;
554                 break;
555         case RXMODE_TOGGLE_ALLMULTI_OFF:
556         case RXMODE_TOGGLE_ALLMULTI_ON:
557                 mode = "all multicast";
558                 dev->data->all_multicast = toggle & 1;
559                 break;
560         }
561         if (!mlx4_flow_sync(priv, &error))
562                 return;
563         ERROR("cannot toggle %s mode (code %d, \"%s\"),"
564               " flow error type %d, cause %p, message: %s",
565               mode, rte_errno, strerror(rte_errno), error.type, error.cause,
566               error.message ? error.message : "(unspecified)");
567 }
568
569 /**
570  * DPDK callback to enable promiscuous mode.
571  *
572  * @param dev
573  *   Pointer to Ethernet device structure.
574  */
575 void
576 mlx4_promiscuous_enable(struct rte_eth_dev *dev)
577 {
578         mlx4_rxmode_toggle(dev, RXMODE_TOGGLE_PROMISC_ON);
579 }
580
581 /**
582  * DPDK callback to disable promiscuous mode.
583  *
584  * @param dev
585  *   Pointer to Ethernet device structure.
586  */
587 void
588 mlx4_promiscuous_disable(struct rte_eth_dev *dev)
589 {
590         mlx4_rxmode_toggle(dev, RXMODE_TOGGLE_PROMISC_OFF);
591 }
592
593 /**
594  * DPDK callback to enable all multicast mode.
595  *
596  * @param dev
597  *   Pointer to Ethernet device structure.
598  */
599 void
600 mlx4_allmulticast_enable(struct rte_eth_dev *dev)
601 {
602         mlx4_rxmode_toggle(dev, RXMODE_TOGGLE_ALLMULTI_ON);
603 }
604
605 /**
606  * DPDK callback to disable all multicast mode.
607  *
608  * @param dev
609  *   Pointer to Ethernet device structure.
610  */
611 void
612 mlx4_allmulticast_disable(struct rte_eth_dev *dev)
613 {
614         mlx4_rxmode_toggle(dev, RXMODE_TOGGLE_ALLMULTI_OFF);
615 }
616
617 /**
618  * DPDK callback to remove a MAC address.
619  *
620  * @param dev
621  *   Pointer to Ethernet device structure.
622  * @param index
623  *   MAC address index.
624  */
625 void
626 mlx4_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
627 {
628         struct priv *priv = dev->data->dev_private;
629         struct rte_flow_error error;
630
631         if (index >= RTE_DIM(priv->mac)) {
632                 rte_errno = EINVAL;
633                 return;
634         }
635         memset(&priv->mac[index], 0, sizeof(priv->mac[index]));
636         if (!mlx4_flow_sync(priv, &error))
637                 return;
638         ERROR("failed to synchronize flow rules after removing MAC address"
639               " at index %d (code %d, \"%s\"),"
640               " flow error type %d, cause %p, message: %s",
641               index, rte_errno, strerror(rte_errno), error.type, error.cause,
642               error.message ? error.message : "(unspecified)");
643 }
644
645 /**
646  * DPDK callback to add a MAC address.
647  *
648  * @param dev
649  *   Pointer to Ethernet device structure.
650  * @param mac_addr
651  *   MAC address to register.
652  * @param index
653  *   MAC address index.
654  * @param vmdq
655  *   VMDq pool index to associate address with (ignored).
656  *
657  * @return
658  *   0 on success, negative errno value otherwise and rte_errno is set.
659  */
660 int
661 mlx4_mac_addr_add(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
662                   uint32_t index, uint32_t vmdq)
663 {
664         struct priv *priv = dev->data->dev_private;
665         struct rte_flow_error error;
666         int ret;
667
668         (void)vmdq;
669         if (index >= RTE_DIM(priv->mac)) {
670                 rte_errno = EINVAL;
671                 return -rte_errno;
672         }
673         memcpy(&priv->mac[index], mac_addr, sizeof(priv->mac[index]));
674         ret = mlx4_flow_sync(priv, &error);
675         if (!ret)
676                 return 0;
677         ERROR("failed to synchronize flow rules after adding MAC address"
678               " at index %d (code %d, \"%s\"),"
679               " flow error type %d, cause %p, message: %s",
680               index, rte_errno, strerror(rte_errno), error.type, error.cause,
681               error.message ? error.message : "(unspecified)");
682         return ret;
683 }
684
685 /**
686  * DPDK callback to configure a VLAN filter.
687  *
688  * @param dev
689  *   Pointer to Ethernet device structure.
690  * @param vlan_id
691  *   VLAN ID to filter.
692  * @param on
693  *   Toggle filter.
694  *
695  * @return
696  *   0 on success, negative errno value otherwise and rte_errno is set.
697  */
698 int
699 mlx4_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
700 {
701         struct priv *priv = dev->data->dev_private;
702         struct rte_flow_error error;
703         unsigned int vidx = vlan_id / 64;
704         unsigned int vbit = vlan_id % 64;
705         uint64_t *v;
706         int ret;
707
708         if (vidx >= RTE_DIM(dev->data->vlan_filter_conf.ids)) {
709                 rte_errno = EINVAL;
710                 return -rte_errno;
711         }
712         v = &dev->data->vlan_filter_conf.ids[vidx];
713         *v &= ~(UINT64_C(1) << vbit);
714         *v |= (uint64_t)!!on << vbit;
715         ret = mlx4_flow_sync(priv, &error);
716         if (!ret)
717                 return 0;
718         ERROR("failed to synchronize flow rules after %s VLAN filter on ID %u"
719               " (code %d, \"%s\"), "
720               " flow error type %d, cause %p, message: %s",
721               on ? "enabling" : "disabling", vlan_id,
722               rte_errno, strerror(rte_errno), error.type, error.cause,
723               error.message ? error.message : "(unspecified)");
724         return ret;
725 }
726
727 /**
728  * DPDK callback to set the primary MAC address.
729  *
730  * @param dev
731  *   Pointer to Ethernet device structure.
732  * @param mac_addr
733  *   MAC address to register.
734  */
735 void
736 mlx4_mac_addr_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr)
737 {
738         mlx4_mac_addr_add(dev, mac_addr, 0, 0);
739 }
740
741 /**
742  * DPDK callback to get information about the device.
743  *
744  * @param dev
745  *   Pointer to Ethernet device structure.
746  * @param[out] info
747  *   Info structure output buffer.
748  */
749 void
750 mlx4_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info)
751 {
752         struct priv *priv = dev->data->dev_private;
753         unsigned int max;
754         char ifname[IF_NAMESIZE];
755
756         info->pci_dev = RTE_ETH_DEV_TO_PCI(dev);
757         if (priv == NULL)
758                 return;
759         /* FIXME: we should ask the device for these values. */
760         info->min_rx_bufsize = 32;
761         info->max_rx_pktlen = 65536;
762         /*
763          * Since we need one CQ per QP, the limit is the minimum number
764          * between the two values.
765          */
766         max = ((priv->device_attr.max_cq > priv->device_attr.max_qp) ?
767                priv->device_attr.max_qp : priv->device_attr.max_cq);
768         /* If max >= 65535 then max = 0, max_rx_queues is uint16_t. */
769         if (max >= 65535)
770                 max = 65535;
771         info->max_rx_queues = max;
772         info->max_tx_queues = max;
773         info->max_mac_addrs = RTE_DIM(priv->mac);
774         info->rx_offload_capa = 0;
775         info->tx_offload_capa = 0;
776         if (mlx4_get_ifname(priv, &ifname) == 0)
777                 info->if_index = if_nametoindex(ifname);
778         info->speed_capa =
779                         ETH_LINK_SPEED_1G |
780                         ETH_LINK_SPEED_10G |
781                         ETH_LINK_SPEED_20G |
782                         ETH_LINK_SPEED_40G |
783                         ETH_LINK_SPEED_56G;
784 }
785
786 /**
787  * DPDK callback to get device statistics.
788  *
789  * @param dev
790  *   Pointer to Ethernet device structure.
791  * @param[out] stats
792  *   Stats structure output buffer.
793  */
794 int
795 mlx4_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
796 {
797         struct rte_eth_stats tmp;
798         unsigned int i;
799         unsigned int idx;
800
801         memset(&tmp, 0, sizeof(tmp));
802         /* Add software counters. */
803         for (i = 0; i != dev->data->nb_rx_queues; ++i) {
804                 struct rxq *rxq = dev->data->rx_queues[i];
805
806                 if (rxq == NULL)
807                         continue;
808                 idx = rxq->stats.idx;
809                 if (idx < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
810                         tmp.q_ipackets[idx] += rxq->stats.ipackets;
811                         tmp.q_ibytes[idx] += rxq->stats.ibytes;
812                         tmp.q_errors[idx] += (rxq->stats.idropped +
813                                               rxq->stats.rx_nombuf);
814                 }
815                 tmp.ipackets += rxq->stats.ipackets;
816                 tmp.ibytes += rxq->stats.ibytes;
817                 tmp.ierrors += rxq->stats.idropped;
818                 tmp.rx_nombuf += rxq->stats.rx_nombuf;
819         }
820         for (i = 0; i != dev->data->nb_tx_queues; ++i) {
821                 struct txq *txq = dev->data->tx_queues[i];
822
823                 if (txq == NULL)
824                         continue;
825                 idx = txq->stats.idx;
826                 if (idx < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
827                         tmp.q_opackets[idx] += txq->stats.opackets;
828                         tmp.q_obytes[idx] += txq->stats.obytes;
829                         tmp.q_errors[idx] += txq->stats.odropped;
830                 }
831                 tmp.opackets += txq->stats.opackets;
832                 tmp.obytes += txq->stats.obytes;
833                 tmp.oerrors += txq->stats.odropped;
834         }
835         *stats = tmp;
836         return 0;
837 }
838
839 /**
840  * DPDK callback to clear device statistics.
841  *
842  * @param dev
843  *   Pointer to Ethernet device structure.
844  */
845 void
846 mlx4_stats_reset(struct rte_eth_dev *dev)
847 {
848         unsigned int i;
849
850         for (i = 0; i != dev->data->nb_rx_queues; ++i) {
851                 struct rxq *rxq = dev->data->rx_queues[i];
852
853                 if (rxq)
854                         rxq->stats = (struct mlx4_rxq_stats){
855                                 .idx = rxq->stats.idx,
856                         };
857         }
858         for (i = 0; i != dev->data->nb_tx_queues; ++i) {
859                 struct txq *txq = dev->data->tx_queues[i];
860
861                 if (txq)
862                         txq->stats = (struct mlx4_txq_stats){
863                                 .idx = txq->stats.idx,
864                         };
865         }
866 }
867
868 /**
869  * DPDK callback to retrieve physical link information.
870  *
871  * @param dev
872  *   Pointer to Ethernet device structure.
873  * @param wait_to_complete
874  *   Wait for request completion (ignored).
875  *
876  * @return
877  *   0 on success, negative errno value otherwise and rte_errno is set.
878  */
879 int
880 mlx4_link_update(struct rte_eth_dev *dev, int wait_to_complete)
881 {
882         const struct priv *priv = dev->data->dev_private;
883         struct ethtool_cmd edata = {
884                 .cmd = ETHTOOL_GSET,
885         };
886         struct ifreq ifr;
887         struct rte_eth_link dev_link;
888         int link_speed = 0;
889
890         if (priv == NULL) {
891                 rte_errno = EINVAL;
892                 return -rte_errno;
893         }
894         (void)wait_to_complete;
895         if (mlx4_ifreq(priv, SIOCGIFFLAGS, &ifr)) {
896                 WARN("ioctl(SIOCGIFFLAGS) failed: %s", strerror(rte_errno));
897                 return -rte_errno;
898         }
899         memset(&dev_link, 0, sizeof(dev_link));
900         dev_link.link_status = ((ifr.ifr_flags & IFF_UP) &&
901                                 (ifr.ifr_flags & IFF_RUNNING));
902         ifr.ifr_data = (void *)&edata;
903         if (mlx4_ifreq(priv, SIOCETHTOOL, &ifr)) {
904                 WARN("ioctl(SIOCETHTOOL, ETHTOOL_GSET) failed: %s",
905                      strerror(rte_errno));
906                 return -rte_errno;
907         }
908         link_speed = ethtool_cmd_speed(&edata);
909         if (link_speed == -1)
910                 dev_link.link_speed = 0;
911         else
912                 dev_link.link_speed = link_speed;
913         dev_link.link_duplex = ((edata.duplex == DUPLEX_HALF) ?
914                                 ETH_LINK_HALF_DUPLEX : ETH_LINK_FULL_DUPLEX);
915         dev_link.link_autoneg = !(dev->data->dev_conf.link_speeds &
916                                   ETH_LINK_SPEED_FIXED);
917         dev->data->dev_link = dev_link;
918         return 0;
919 }
920
921 /**
922  * DPDK callback to get flow control status.
923  *
924  * @param dev
925  *   Pointer to Ethernet device structure.
926  * @param[out] fc_conf
927  *   Flow control output buffer.
928  *
929  * @return
930  *   0 on success, negative errno value otherwise and rte_errno is set.
931  */
932 int
933 mlx4_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
934 {
935         struct priv *priv = dev->data->dev_private;
936         struct ifreq ifr;
937         struct ethtool_pauseparam ethpause = {
938                 .cmd = ETHTOOL_GPAUSEPARAM,
939         };
940         int ret;
941
942         ifr.ifr_data = (void *)&ethpause;
943         if (mlx4_ifreq(priv, SIOCETHTOOL, &ifr)) {
944                 ret = rte_errno;
945                 WARN("ioctl(SIOCETHTOOL, ETHTOOL_GPAUSEPARAM)"
946                      " failed: %s",
947                      strerror(rte_errno));
948                 goto out;
949         }
950         fc_conf->autoneg = ethpause.autoneg;
951         if (ethpause.rx_pause && ethpause.tx_pause)
952                 fc_conf->mode = RTE_FC_FULL;
953         else if (ethpause.rx_pause)
954                 fc_conf->mode = RTE_FC_RX_PAUSE;
955         else if (ethpause.tx_pause)
956                 fc_conf->mode = RTE_FC_TX_PAUSE;
957         else
958                 fc_conf->mode = RTE_FC_NONE;
959         ret = 0;
960 out:
961         assert(ret >= 0);
962         return -ret;
963 }
964
965 /**
966  * DPDK callback to modify flow control parameters.
967  *
968  * @param dev
969  *   Pointer to Ethernet device structure.
970  * @param[in] fc_conf
971  *   Flow control parameters.
972  *
973  * @return
974  *   0 on success, negative errno value otherwise and rte_errno is set.
975  */
976 int
977 mlx4_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
978 {
979         struct priv *priv = dev->data->dev_private;
980         struct ifreq ifr;
981         struct ethtool_pauseparam ethpause = {
982                 .cmd = ETHTOOL_SPAUSEPARAM,
983         };
984         int ret;
985
986         ifr.ifr_data = (void *)&ethpause;
987         ethpause.autoneg = fc_conf->autoneg;
988         if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
989             (fc_conf->mode & RTE_FC_RX_PAUSE))
990                 ethpause.rx_pause = 1;
991         else
992                 ethpause.rx_pause = 0;
993         if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
994             (fc_conf->mode & RTE_FC_TX_PAUSE))
995                 ethpause.tx_pause = 1;
996         else
997                 ethpause.tx_pause = 0;
998         if (mlx4_ifreq(priv, SIOCETHTOOL, &ifr)) {
999                 ret = rte_errno;
1000                 WARN("ioctl(SIOCETHTOOL, ETHTOOL_SPAUSEPARAM)"
1001                      " failed: %s",
1002                      strerror(rte_errno));
1003                 goto out;
1004         }
1005         ret = 0;
1006 out:
1007         assert(ret >= 0);
1008         return -ret;
1009 }