ca2170ea4c8240d04b0f25839d5f13062a8355a6
[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         int err;
471
472         if (up) {
473                 err = mlx4_set_flags(priv, ~IFF_UP, IFF_UP);
474                 if (err)
475                         return err;
476         } else {
477                 err = mlx4_set_flags(priv, ~IFF_UP, ~IFF_UP);
478                 if (err)
479                         return err;
480         }
481         return 0;
482 }
483
484 /**
485  * DPDK callback to bring the link DOWN.
486  *
487  * @param dev
488  *   Pointer to Ethernet device structure.
489  *
490  * @return
491  *   0 on success, negative errno value otherwise and rte_errno is set.
492  */
493 int
494 mlx4_dev_set_link_down(struct rte_eth_dev *dev)
495 {
496         struct priv *priv = dev->data->dev_private;
497
498         return mlx4_dev_set_link(priv, 0);
499 }
500
501 /**
502  * DPDK callback to bring the link UP.
503  *
504  * @param dev
505  *   Pointer to Ethernet device structure.
506  *
507  * @return
508  *   0 on success, negative errno value otherwise and rte_errno is set.
509  */
510 int
511 mlx4_dev_set_link_up(struct rte_eth_dev *dev)
512 {
513         struct priv *priv = dev->data->dev_private;
514
515         return mlx4_dev_set_link(priv, 1);
516 }
517
518 /**
519  * Supported Rx mode toggles.
520  *
521  * Even and odd values respectively stand for off and on.
522  */
523 enum rxmode_toggle {
524         RXMODE_TOGGLE_PROMISC_OFF,
525         RXMODE_TOGGLE_PROMISC_ON,
526         RXMODE_TOGGLE_ALLMULTI_OFF,
527         RXMODE_TOGGLE_ALLMULTI_ON,
528 };
529
530 /**
531  * Helper function to toggle promiscuous and all multicast modes.
532  *
533  * @param dev
534  *   Pointer to Ethernet device structure.
535  * @param toggle
536  *   Toggle to set.
537  */
538 static void
539 mlx4_rxmode_toggle(struct rte_eth_dev *dev, enum rxmode_toggle toggle)
540 {
541         struct priv *priv = dev->data->dev_private;
542         const char *mode;
543         struct rte_flow_error error;
544
545         switch (toggle) {
546         case RXMODE_TOGGLE_PROMISC_OFF:
547         case RXMODE_TOGGLE_PROMISC_ON:
548                 mode = "promiscuous";
549                 dev->data->promiscuous = toggle & 1;
550                 break;
551         case RXMODE_TOGGLE_ALLMULTI_OFF:
552         case RXMODE_TOGGLE_ALLMULTI_ON:
553                 mode = "all multicast";
554                 dev->data->all_multicast = toggle & 1;
555                 break;
556         }
557         if (!mlx4_flow_sync(priv, &error))
558                 return;
559         ERROR("cannot toggle %s mode (code %d, \"%s\"),"
560               " flow error type %d, cause %p, message: %s",
561               mode, rte_errno, strerror(rte_errno), error.type, error.cause,
562               error.message ? error.message : "(unspecified)");
563 }
564
565 /**
566  * DPDK callback to enable promiscuous mode.
567  *
568  * @param dev
569  *   Pointer to Ethernet device structure.
570  */
571 void
572 mlx4_promiscuous_enable(struct rte_eth_dev *dev)
573 {
574         mlx4_rxmode_toggle(dev, RXMODE_TOGGLE_PROMISC_ON);
575 }
576
577 /**
578  * DPDK callback to disable promiscuous mode.
579  *
580  * @param dev
581  *   Pointer to Ethernet device structure.
582  */
583 void
584 mlx4_promiscuous_disable(struct rte_eth_dev *dev)
585 {
586         mlx4_rxmode_toggle(dev, RXMODE_TOGGLE_PROMISC_OFF);
587 }
588
589 /**
590  * DPDK callback to enable all multicast mode.
591  *
592  * @param dev
593  *   Pointer to Ethernet device structure.
594  */
595 void
596 mlx4_allmulticast_enable(struct rte_eth_dev *dev)
597 {
598         mlx4_rxmode_toggle(dev, RXMODE_TOGGLE_ALLMULTI_ON);
599 }
600
601 /**
602  * DPDK callback to disable all multicast mode.
603  *
604  * @param dev
605  *   Pointer to Ethernet device structure.
606  */
607 void
608 mlx4_allmulticast_disable(struct rte_eth_dev *dev)
609 {
610         mlx4_rxmode_toggle(dev, RXMODE_TOGGLE_ALLMULTI_OFF);
611 }
612
613 /**
614  * DPDK callback to remove a MAC address.
615  *
616  * @param dev
617  *   Pointer to Ethernet device structure.
618  * @param index
619  *   MAC address index.
620  */
621 void
622 mlx4_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
623 {
624         struct priv *priv = dev->data->dev_private;
625         struct rte_flow_error error;
626
627         if (index >= RTE_DIM(priv->mac)) {
628                 rte_errno = EINVAL;
629                 return;
630         }
631         memset(&priv->mac[index], 0, sizeof(priv->mac[index]));
632         if (!mlx4_flow_sync(priv, &error))
633                 return;
634         ERROR("failed to synchronize flow rules after removing MAC address"
635               " at index %d (code %d, \"%s\"),"
636               " flow error type %d, cause %p, message: %s",
637               index, rte_errno, strerror(rte_errno), error.type, error.cause,
638               error.message ? error.message : "(unspecified)");
639 }
640
641 /**
642  * DPDK callback to add a MAC address.
643  *
644  * @param dev
645  *   Pointer to Ethernet device structure.
646  * @param mac_addr
647  *   MAC address to register.
648  * @param index
649  *   MAC address index.
650  * @param vmdq
651  *   VMDq pool index to associate address with (ignored).
652  *
653  * @return
654  *   0 on success, negative errno value otherwise and rte_errno is set.
655  */
656 int
657 mlx4_mac_addr_add(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
658                   uint32_t index, uint32_t vmdq)
659 {
660         struct priv *priv = dev->data->dev_private;
661         struct rte_flow_error error;
662         int ret;
663
664         (void)vmdq;
665         if (index >= RTE_DIM(priv->mac)) {
666                 rte_errno = EINVAL;
667                 return -rte_errno;
668         }
669         memcpy(&priv->mac[index], mac_addr, sizeof(priv->mac[index]));
670         ret = mlx4_flow_sync(priv, &error);
671         if (!ret)
672                 return 0;
673         ERROR("failed to synchronize flow rules after adding MAC address"
674               " at index %d (code %d, \"%s\"),"
675               " flow error type %d, cause %p, message: %s",
676               index, rte_errno, strerror(rte_errno), error.type, error.cause,
677               error.message ? error.message : "(unspecified)");
678         return ret;
679 }
680
681 /**
682  * DPDK callback to configure a VLAN filter.
683  *
684  * @param dev
685  *   Pointer to Ethernet device structure.
686  * @param vlan_id
687  *   VLAN ID to filter.
688  * @param on
689  *   Toggle filter.
690  *
691  * @return
692  *   0 on success, negative errno value otherwise and rte_errno is set.
693  */
694 int
695 mlx4_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
696 {
697         struct priv *priv = dev->data->dev_private;
698         struct rte_flow_error error;
699         unsigned int vidx = vlan_id / 64;
700         unsigned int vbit = vlan_id % 64;
701         uint64_t *v;
702         int ret;
703
704         if (vidx >= RTE_DIM(dev->data->vlan_filter_conf.ids)) {
705                 rte_errno = EINVAL;
706                 return -rte_errno;
707         }
708         v = &dev->data->vlan_filter_conf.ids[vidx];
709         *v &= ~(UINT64_C(1) << vbit);
710         *v |= (uint64_t)!!on << vbit;
711         ret = mlx4_flow_sync(priv, &error);
712         if (!ret)
713                 return 0;
714         ERROR("failed to synchronize flow rules after %s VLAN filter on ID %u"
715               " (code %d, \"%s\"), "
716               " flow error type %d, cause %p, message: %s",
717               on ? "enabling" : "disabling", vlan_id,
718               rte_errno, strerror(rte_errno), error.type, error.cause,
719               error.message ? error.message : "(unspecified)");
720         return ret;
721 }
722
723 /**
724  * DPDK callback to set the primary MAC address.
725  *
726  * @param dev
727  *   Pointer to Ethernet device structure.
728  * @param mac_addr
729  *   MAC address to register.
730  */
731 void
732 mlx4_mac_addr_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr)
733 {
734         mlx4_mac_addr_add(dev, mac_addr, 0, 0);
735 }
736
737 /**
738  * DPDK callback to get information about the device.
739  *
740  * @param dev
741  *   Pointer to Ethernet device structure.
742  * @param[out] info
743  *   Info structure output buffer.
744  */
745 void
746 mlx4_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info)
747 {
748         struct priv *priv = dev->data->dev_private;
749         unsigned int max;
750         char ifname[IF_NAMESIZE];
751
752         info->pci_dev = RTE_ETH_DEV_TO_PCI(dev);
753         /* FIXME: we should ask the device for these values. */
754         info->min_rx_bufsize = 32;
755         info->max_rx_pktlen = 65536;
756         /*
757          * Since we need one CQ per QP, the limit is the minimum number
758          * between the two values.
759          */
760         max = ((priv->device_attr.max_cq > priv->device_attr.max_qp) ?
761                priv->device_attr.max_qp : priv->device_attr.max_cq);
762         /* If max >= 65535 then max = 0, max_rx_queues is uint16_t. */
763         if (max >= 65535)
764                 max = 65535;
765         info->max_rx_queues = max;
766         info->max_tx_queues = max;
767         info->max_mac_addrs = RTE_DIM(priv->mac);
768         info->rx_offload_capa = 0;
769         info->tx_offload_capa = 0;
770         if (priv->hw_csum) {
771                 info->tx_offload_capa |= (DEV_TX_OFFLOAD_IPV4_CKSUM |
772                                           DEV_TX_OFFLOAD_UDP_CKSUM |
773                                           DEV_TX_OFFLOAD_TCP_CKSUM);
774                 info->rx_offload_capa |= (DEV_RX_OFFLOAD_IPV4_CKSUM |
775                                           DEV_RX_OFFLOAD_UDP_CKSUM |
776                                           DEV_RX_OFFLOAD_TCP_CKSUM);
777         }
778         if (priv->hw_csum_l2tun)
779                 info->tx_offload_capa |= DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM;
780         if (mlx4_get_ifname(priv, &ifname) == 0)
781                 info->if_index = if_nametoindex(ifname);
782         info->hash_key_size = MLX4_RSS_HASH_KEY_SIZE;
783         info->speed_capa =
784                         ETH_LINK_SPEED_1G |
785                         ETH_LINK_SPEED_10G |
786                         ETH_LINK_SPEED_20G |
787                         ETH_LINK_SPEED_40G |
788                         ETH_LINK_SPEED_56G;
789 }
790
791 /**
792  * DPDK callback to get device statistics.
793  *
794  * @param dev
795  *   Pointer to Ethernet device structure.
796  * @param[out] stats
797  *   Stats structure output buffer.
798  */
799 int
800 mlx4_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
801 {
802         struct rte_eth_stats tmp;
803         unsigned int i;
804         unsigned int idx;
805
806         memset(&tmp, 0, sizeof(tmp));
807         /* Add software counters. */
808         for (i = 0; i != dev->data->nb_rx_queues; ++i) {
809                 struct rxq *rxq = dev->data->rx_queues[i];
810
811                 if (rxq == NULL)
812                         continue;
813                 idx = rxq->stats.idx;
814                 if (idx < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
815                         tmp.q_ipackets[idx] += rxq->stats.ipackets;
816                         tmp.q_ibytes[idx] += rxq->stats.ibytes;
817                         tmp.q_errors[idx] += (rxq->stats.idropped +
818                                               rxq->stats.rx_nombuf);
819                 }
820                 tmp.ipackets += rxq->stats.ipackets;
821                 tmp.ibytes += rxq->stats.ibytes;
822                 tmp.ierrors += rxq->stats.idropped;
823                 tmp.rx_nombuf += rxq->stats.rx_nombuf;
824         }
825         for (i = 0; i != dev->data->nb_tx_queues; ++i) {
826                 struct txq *txq = dev->data->tx_queues[i];
827
828                 if (txq == NULL)
829                         continue;
830                 idx = txq->stats.idx;
831                 if (idx < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
832                         tmp.q_opackets[idx] += txq->stats.opackets;
833                         tmp.q_obytes[idx] += txq->stats.obytes;
834                         tmp.q_errors[idx] += txq->stats.odropped;
835                 }
836                 tmp.opackets += txq->stats.opackets;
837                 tmp.obytes += txq->stats.obytes;
838                 tmp.oerrors += txq->stats.odropped;
839         }
840         *stats = tmp;
841         return 0;
842 }
843
844 /**
845  * DPDK callback to clear device statistics.
846  *
847  * @param dev
848  *   Pointer to Ethernet device structure.
849  */
850 void
851 mlx4_stats_reset(struct rte_eth_dev *dev)
852 {
853         unsigned int i;
854
855         for (i = 0; i != dev->data->nb_rx_queues; ++i) {
856                 struct rxq *rxq = dev->data->rx_queues[i];
857
858                 if (rxq)
859                         rxq->stats = (struct mlx4_rxq_stats){
860                                 .idx = rxq->stats.idx,
861                         };
862         }
863         for (i = 0; i != dev->data->nb_tx_queues; ++i) {
864                 struct txq *txq = dev->data->tx_queues[i];
865
866                 if (txq)
867                         txq->stats = (struct mlx4_txq_stats){
868                                 .idx = txq->stats.idx,
869                         };
870         }
871 }
872
873 /**
874  * DPDK callback to retrieve physical link information.
875  *
876  * @param dev
877  *   Pointer to Ethernet device structure.
878  * @param wait_to_complete
879  *   Wait for request completion (ignored).
880  *
881  * @return
882  *   0 on success, negative errno value otherwise and rte_errno is set.
883  */
884 int
885 mlx4_link_update(struct rte_eth_dev *dev, int wait_to_complete)
886 {
887         const struct priv *priv = dev->data->dev_private;
888         struct ethtool_cmd edata = {
889                 .cmd = ETHTOOL_GSET,
890         };
891         struct ifreq ifr;
892         struct rte_eth_link dev_link;
893         int link_speed = 0;
894
895         if (priv == NULL) {
896                 rte_errno = EINVAL;
897                 return -rte_errno;
898         }
899         (void)wait_to_complete;
900         if (mlx4_ifreq(priv, SIOCGIFFLAGS, &ifr)) {
901                 WARN("ioctl(SIOCGIFFLAGS) failed: %s", strerror(rte_errno));
902                 return -rte_errno;
903         }
904         memset(&dev_link, 0, sizeof(dev_link));
905         dev_link.link_status = ((ifr.ifr_flags & IFF_UP) &&
906                                 (ifr.ifr_flags & IFF_RUNNING));
907         ifr.ifr_data = (void *)&edata;
908         if (mlx4_ifreq(priv, SIOCETHTOOL, &ifr)) {
909                 WARN("ioctl(SIOCETHTOOL, ETHTOOL_GSET) failed: %s",
910                      strerror(rte_errno));
911                 return -rte_errno;
912         }
913         link_speed = ethtool_cmd_speed(&edata);
914         if (link_speed == -1)
915                 dev_link.link_speed = 0;
916         else
917                 dev_link.link_speed = link_speed;
918         dev_link.link_duplex = ((edata.duplex == DUPLEX_HALF) ?
919                                 ETH_LINK_HALF_DUPLEX : ETH_LINK_FULL_DUPLEX);
920         dev_link.link_autoneg = !(dev->data->dev_conf.link_speeds &
921                                   ETH_LINK_SPEED_FIXED);
922         dev->data->dev_link = dev_link;
923         return 0;
924 }
925
926 /**
927  * DPDK callback to get flow control status.
928  *
929  * @param dev
930  *   Pointer to Ethernet device structure.
931  * @param[out] fc_conf
932  *   Flow control output buffer.
933  *
934  * @return
935  *   0 on success, negative errno value otherwise and rte_errno is set.
936  */
937 int
938 mlx4_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
939 {
940         struct priv *priv = dev->data->dev_private;
941         struct ifreq ifr;
942         struct ethtool_pauseparam ethpause = {
943                 .cmd = ETHTOOL_GPAUSEPARAM,
944         };
945         int ret;
946
947         ifr.ifr_data = (void *)&ethpause;
948         if (mlx4_ifreq(priv, SIOCETHTOOL, &ifr)) {
949                 ret = rte_errno;
950                 WARN("ioctl(SIOCETHTOOL, ETHTOOL_GPAUSEPARAM)"
951                      " failed: %s",
952                      strerror(rte_errno));
953                 goto out;
954         }
955         fc_conf->autoneg = ethpause.autoneg;
956         if (ethpause.rx_pause && ethpause.tx_pause)
957                 fc_conf->mode = RTE_FC_FULL;
958         else if (ethpause.rx_pause)
959                 fc_conf->mode = RTE_FC_RX_PAUSE;
960         else if (ethpause.tx_pause)
961                 fc_conf->mode = RTE_FC_TX_PAUSE;
962         else
963                 fc_conf->mode = RTE_FC_NONE;
964         ret = 0;
965 out:
966         assert(ret >= 0);
967         return -ret;
968 }
969
970 /**
971  * DPDK callback to modify flow control parameters.
972  *
973  * @param dev
974  *   Pointer to Ethernet device structure.
975  * @param[in] fc_conf
976  *   Flow control parameters.
977  *
978  * @return
979  *   0 on success, negative errno value otherwise and rte_errno is set.
980  */
981 int
982 mlx4_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
983 {
984         struct priv *priv = dev->data->dev_private;
985         struct ifreq ifr;
986         struct ethtool_pauseparam ethpause = {
987                 .cmd = ETHTOOL_SPAUSEPARAM,
988         };
989         int ret;
990
991         ifr.ifr_data = (void *)&ethpause;
992         ethpause.autoneg = fc_conf->autoneg;
993         if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
994             (fc_conf->mode & RTE_FC_RX_PAUSE))
995                 ethpause.rx_pause = 1;
996         else
997                 ethpause.rx_pause = 0;
998         if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
999             (fc_conf->mode & RTE_FC_TX_PAUSE))
1000                 ethpause.tx_pause = 1;
1001         else
1002                 ethpause.tx_pause = 0;
1003         if (mlx4_ifreq(priv, SIOCETHTOOL, &ifr)) {
1004                 ret = rte_errno;
1005                 WARN("ioctl(SIOCETHTOOL, ETHTOOL_SPAUSEPARAM)"
1006                      " failed: %s",
1007                      strerror(rte_errno));
1008                 goto out;
1009         }
1010         ret = 0;
1011 out:
1012         assert(ret >= 0);
1013         return -ret;
1014 }