4 * Copyright 2015 6WIND S.A.
5 * Copyright 2015 Mellanox.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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.
44 #include <sys/ioctl.h>
45 #include <sys/socket.h>
46 #include <sys/utsname.h>
47 #include <netinet/in.h>
48 #include <linux/ethtool.h>
49 #include <linux/sockios.h>
50 #include <linux/version.h>
54 #include <rte_atomic.h>
55 #include <rte_ethdev.h>
57 #include <rte_common.h>
58 #include <rte_interrupts.h>
59 #include <rte_alarm.h>
60 #include <rte_malloc.h>
63 #include "mlx5_rxtx.h"
64 #include "mlx5_utils.h"
66 /* Add defines in case the running kernel is not the same as user headers. */
67 #ifndef ETHTOOL_GLINKSETTINGS
68 struct ethtool_link_settings {
77 uint8_t eth_tp_mdix_ctrl;
78 int8_t link_mode_masks_nwords;
80 uint32_t link_mode_masks[];
83 #define ETHTOOL_GLINKSETTINGS 0x0000004c
84 #define ETHTOOL_LINK_MODE_1000baseT_Full_BIT 5
85 #define ETHTOOL_LINK_MODE_Autoneg_BIT 6
86 #define ETHTOOL_LINK_MODE_1000baseKX_Full_BIT 17
87 #define ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT 18
88 #define ETHTOOL_LINK_MODE_10000baseKR_Full_BIT 19
89 #define ETHTOOL_LINK_MODE_10000baseR_FEC_BIT 20
90 #define ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT 21
91 #define ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT 22
92 #define ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT 23
93 #define ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT 24
94 #define ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT 25
95 #define ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT 26
96 #define ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT 27
97 #define ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT 28
98 #define ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT 29
99 #define ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT 30
101 #ifndef HAVE_ETHTOOL_LINK_MODE_25G
102 #define ETHTOOL_LINK_MODE_25000baseCR_Full_BIT 31
103 #define ETHTOOL_LINK_MODE_25000baseKR_Full_BIT 32
104 #define ETHTOOL_LINK_MODE_25000baseSR_Full_BIT 33
106 #ifndef HAVE_ETHTOOL_LINK_MODE_50G
107 #define ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT 34
108 #define ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT 35
110 #ifndef HAVE_ETHTOOL_LINK_MODE_100G
111 #define ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT 36
112 #define ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT 37
113 #define ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT 38
114 #define ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT 39
118 * Return private structure associated with an Ethernet device.
121 * Pointer to Ethernet device structure.
124 * Pointer to private structure.
127 mlx5_get_priv(struct rte_eth_dev *dev)
129 return dev->data->dev_private;
133 * Check if running as a secondary process.
136 * Nonzero if running as a secondary process.
139 mlx5_is_secondary(void)
141 return rte_eal_process_type() == RTE_PROC_SECONDARY;
145 * Get interface name from private structure.
148 * Pointer to private structure.
150 * Interface name output buffer.
153 * 0 on success, -1 on failure and errno is set.
156 priv_get_ifname(const struct priv *priv, char (*ifname)[IF_NAMESIZE])
160 unsigned int dev_type = 0;
161 unsigned int dev_port_prev = ~0u;
162 char match[IF_NAMESIZE] = "";
165 MKSTR(path, "%s/device/net", priv->ctx->device->ibdev_path);
171 while ((dent = readdir(dir)) != NULL) {
172 char *name = dent->d_name;
174 unsigned int dev_port;
177 if ((name[0] == '.') &&
178 ((name[1] == '\0') ||
179 ((name[1] == '.') && (name[2] == '\0'))))
182 MKSTR(path, "%s/device/net/%s/%s",
183 priv->ctx->device->ibdev_path, name,
184 (dev_type ? "dev_id" : "dev_port"));
186 file = fopen(path, "rb");
191 * Switch to dev_id when dev_port does not exist as
192 * is the case with Linux kernel versions < 3.15.
203 r = fscanf(file, (dev_type ? "%x" : "%u"), &dev_port);
208 * Switch to dev_id when dev_port returns the same value for
209 * all ports. May happen when using a MOFED release older than
210 * 3.0 with a Linux kernel >= 3.15.
212 if (dev_port == dev_port_prev)
214 dev_port_prev = dev_port;
215 if (dev_port == (priv->port - 1u))
216 snprintf(match, sizeof(match), "%s", name);
219 if (match[0] == '\0')
221 strncpy(*ifname, match, sizeof(*ifname));
226 * Check if the counter is located on ib counters file.
232 * 1 if counter is located on ib counters file , 0 otherwise.
235 priv_is_ib_cntr(const char *cntr)
237 if (!strcmp(cntr, "out_of_buffer"))
243 * Read from sysfs entry.
246 * Pointer to private structure.
248 * Entry name relative to sysfs path.
250 * Data output buffer.
255 * 0 on success, -1 on failure and errno is set.
258 priv_sysfs_read(const struct priv *priv, const char *entry,
259 char *buf, size_t size)
261 char ifname[IF_NAMESIZE];
266 if (priv_get_ifname(priv, &ifname))
269 if (priv_is_ib_cntr(entry)) {
270 MKSTR(path, "%s/ports/1/hw_counters/%s",
271 priv->ctx->device->ibdev_path, entry);
272 file = fopen(path, "rb");
274 MKSTR(path, "%s/device/net/%s/%s",
275 priv->ctx->device->ibdev_path, ifname, entry);
276 file = fopen(path, "rb");
280 ret = fread(buf, 1, size, file);
282 if (((size_t)ret < size) && (ferror(file)))
292 * Write to sysfs entry.
295 * Pointer to private structure.
297 * Entry name relative to sysfs path.
304 * 0 on success, -1 on failure and errno is set.
307 priv_sysfs_write(const struct priv *priv, const char *entry,
308 char *buf, size_t size)
310 char ifname[IF_NAMESIZE];
315 if (priv_get_ifname(priv, &ifname))
318 MKSTR(path, "%s/device/net/%s/%s", priv->ctx->device->ibdev_path,
321 file = fopen(path, "wb");
324 ret = fwrite(buf, 1, size, file);
326 if (((size_t)ret < size) || (ferror(file)))
336 * Get unsigned long sysfs property.
339 * Pointer to private structure.
341 * Entry name relative to sysfs path.
343 * Value output buffer.
346 * 0 on success, -1 on failure and errno is set.
349 priv_get_sysfs_ulong(struct priv *priv, const char *name, unsigned long *value)
352 unsigned long value_ret;
355 ret = priv_sysfs_read(priv, name, value_str, (sizeof(value_str) - 1));
357 DEBUG("cannot read %s value from sysfs: %s",
358 name, strerror(errno));
361 value_str[ret] = '\0';
363 value_ret = strtoul(value_str, NULL, 0);
365 DEBUG("invalid %s value `%s': %s", name, value_str,
374 * Set unsigned long sysfs property.
377 * Pointer to private structure.
379 * Entry name relative to sysfs path.
384 * 0 on success, -1 on failure and errno is set.
387 priv_set_sysfs_ulong(struct priv *priv, const char *name, unsigned long value)
390 MKSTR(value_str, "%lu", value);
392 ret = priv_sysfs_write(priv, name, value_str, (sizeof(value_str) - 1));
394 DEBUG("cannot write %s `%s' (%lu) to sysfs: %s",
395 name, value_str, value, strerror(errno));
402 * Perform ifreq ioctl() on associated Ethernet device.
405 * Pointer to private structure.
407 * Request number to pass to ioctl().
409 * Interface request structure output buffer.
412 * 0 on success, -1 on failure and errno is set.
415 priv_ifreq(const struct priv *priv, int req, struct ifreq *ifr)
417 int sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
422 if (priv_get_ifname(priv, &ifr->ifr_name) == 0)
423 ret = ioctl(sock, req, ifr);
429 * Return the number of active VFs for the current device.
432 * Pointer to private structure.
433 * @param[out] num_vfs
434 * Number of active VFs.
437 * 0 on success, -1 on failure and errno is set.
440 priv_get_num_vfs(struct priv *priv, uint16_t *num_vfs)
442 /* The sysfs entry name depends on the operating system. */
443 const char **name = (const char *[]){
444 "device/sriov_numvfs",
445 "device/mlx5_num_vfs",
451 unsigned long ulong_num_vfs;
453 ret = priv_get_sysfs_ulong(priv, *name, &ulong_num_vfs);
455 *num_vfs = ulong_num_vfs;
456 } while (*(++name) && ret);
464 * Pointer to private structure.
466 * MTU value output buffer.
469 * 0 on success, -1 on failure and errno is set.
472 priv_get_mtu(struct priv *priv, uint16_t *mtu)
474 unsigned long ulong_mtu;
476 if (priv_get_sysfs_ulong(priv, "mtu", &ulong_mtu) == -1)
483 * Read device counter from sysfs.
486 * Pointer to private structure.
490 * Counter output buffer.
493 * 0 on success, -1 on failure and errno is set.
496 priv_get_cntr_sysfs(struct priv *priv, const char *name, uint64_t *cntr)
498 unsigned long ulong_ctr;
500 if (priv_get_sysfs_ulong(priv, name, &ulong_ctr) == -1)
510 * Pointer to private structure.
515 * 0 on success, -1 on failure and errno is set.
518 priv_set_mtu(struct priv *priv, uint16_t mtu)
522 if (priv_set_sysfs_ulong(priv, "mtu", mtu) ||
523 priv_get_mtu(priv, &new_mtu))
535 * Pointer to private structure.
537 * Bitmask for flags that must remain untouched.
539 * Bitmask for flags to modify.
542 * 0 on success, -1 on failure and errno is set.
545 priv_set_flags(struct priv *priv, unsigned int keep, unsigned int flags)
549 if (priv_get_sysfs_ulong(priv, "flags", &tmp) == -1)
552 tmp |= (flags & (~keep));
553 return priv_set_sysfs_ulong(priv, "flags", tmp);
557 * Ethernet device configuration.
559 * Prepare the driver for a given number of TX and RX queues.
562 * Pointer to Ethernet device structure.
565 * 0 on success, errno value on failure.
568 dev_configure(struct rte_eth_dev *dev)
570 struct priv *priv = dev->data->dev_private;
571 unsigned int rxqs_n = dev->data->nb_rx_queues;
572 unsigned int txqs_n = dev->data->nb_tx_queues;
575 unsigned int reta_idx_n;
577 priv->rss_hf = dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf;
578 priv->rxqs = (void *)dev->data->rx_queues;
579 priv->txqs = (void *)dev->data->tx_queues;
580 if (txqs_n != priv->txqs_n) {
581 INFO("%p: TX queues number update: %u -> %u",
582 (void *)dev, priv->txqs_n, txqs_n);
583 priv->txqs_n = txqs_n;
585 if (rxqs_n > priv->ind_table_max_size) {
586 ERROR("cannot handle this many RX queues (%u)", rxqs_n);
589 if (rxqs_n == priv->rxqs_n)
591 INFO("%p: RX queues number update: %u -> %u",
592 (void *)dev, priv->rxqs_n, rxqs_n);
593 priv->rxqs_n = rxqs_n;
594 /* If the requested number of RX queues is not a power of two, use the
595 * maximum indirection table size for better balancing.
596 * The result is always rounded to the next power of two. */
597 reta_idx_n = (1 << log2above((rxqs_n & (rxqs_n - 1)) ?
598 priv->ind_table_max_size :
600 if (priv_rss_reta_index_resize(priv, reta_idx_n))
602 /* When the number of RX queues is not a power of two, the remaining
603 * table entries are padded with reused WQs and hashes are not spread
605 for (i = 0, j = 0; (i != reta_idx_n); ++i) {
606 (*priv->reta_idx)[i] = j;
614 * DPDK callback for Ethernet device configuration.
617 * Pointer to Ethernet device structure.
620 * 0 on success, negative errno value on failure.
623 mlx5_dev_configure(struct rte_eth_dev *dev)
625 struct priv *priv = dev->data->dev_private;
628 if (mlx5_is_secondary())
629 return -E_RTE_SECONDARY;
632 ret = dev_configure(dev);
639 * DPDK callback to get information about the device.
642 * Pointer to Ethernet device structure.
644 * Info structure output buffer.
647 mlx5_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info)
649 struct priv *priv = mlx5_get_priv(dev);
651 char ifname[IF_NAMESIZE];
653 info->pci_dev = RTE_ETH_DEV_TO_PCI(dev);
656 /* FIXME: we should ask the device for these values. */
657 info->min_rx_bufsize = 32;
658 info->max_rx_pktlen = 65536;
660 * Since we need one CQ per QP, the limit is the minimum number
661 * between the two values.
663 max = ((priv->device_attr.max_cq > priv->device_attr.max_qp) ?
664 priv->device_attr.max_qp : priv->device_attr.max_cq);
665 /* If max >= 65535 then max = 0, max_rx_queues is uint16_t. */
668 info->max_rx_queues = max;
669 info->max_tx_queues = max;
670 info->max_mac_addrs = RTE_DIM(priv->mac);
671 info->rx_offload_capa =
673 (DEV_RX_OFFLOAD_IPV4_CKSUM |
674 DEV_RX_OFFLOAD_UDP_CKSUM |
675 DEV_RX_OFFLOAD_TCP_CKSUM) :
677 (priv->hw_vlan_strip ? DEV_RX_OFFLOAD_VLAN_STRIP : 0);
679 info->tx_offload_capa = DEV_TX_OFFLOAD_VLAN_INSERT;
681 info->tx_offload_capa |=
682 (DEV_TX_OFFLOAD_IPV4_CKSUM |
683 DEV_TX_OFFLOAD_UDP_CKSUM |
684 DEV_TX_OFFLOAD_TCP_CKSUM);
686 info->tx_offload_capa |= DEV_TX_OFFLOAD_TCP_TSO;
688 info->tx_offload_capa |= (DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
689 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
690 DEV_TX_OFFLOAD_GRE_TNL_TSO);
691 if (priv_get_ifname(priv, &ifname) == 0)
692 info->if_index = if_nametoindex(ifname);
693 info->reta_size = priv->reta_idx_n ?
694 priv->reta_idx_n : priv->ind_table_max_size;
695 info->hash_key_size = ((*priv->rss_conf) ?
696 (*priv->rss_conf)[0]->rss_key_len :
698 info->speed_capa = priv->link_speed_capa;
703 mlx5_dev_supported_ptypes_get(struct rte_eth_dev *dev)
705 static const uint32_t ptypes[] = {
706 /* refers to rxq_cq_to_pkt_type() */
708 RTE_PTYPE_L3_IPV4_EXT_UNKNOWN,
709 RTE_PTYPE_L3_IPV6_EXT_UNKNOWN,
710 RTE_PTYPE_L4_NONFRAG,
714 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN,
715 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN,
716 RTE_PTYPE_INNER_L4_NONFRAG,
717 RTE_PTYPE_INNER_L4_FRAG,
718 RTE_PTYPE_INNER_L4_TCP,
719 RTE_PTYPE_INNER_L4_UDP,
723 if (dev->rx_pkt_burst == mlx5_rx_burst ||
724 dev->rx_pkt_burst == mlx5_rx_burst_vec)
730 * DPDK callback to retrieve physical link information.
733 * Pointer to Ethernet device structure.
734 * @param wait_to_complete
735 * Wait for request completion (ignored).
738 mlx5_link_update_unlocked_gset(struct rte_eth_dev *dev, int wait_to_complete)
740 struct priv *priv = mlx5_get_priv(dev);
741 struct ethtool_cmd edata = {
742 .cmd = ETHTOOL_GSET /* Deprecated since Linux v4.5. */
745 struct rte_eth_link dev_link;
748 /* priv_lock() is not taken to allow concurrent calls. */
750 (void)wait_to_complete;
751 if (priv_ifreq(priv, SIOCGIFFLAGS, &ifr)) {
752 WARN("ioctl(SIOCGIFFLAGS) failed: %s", strerror(errno));
755 memset(&dev_link, 0, sizeof(dev_link));
756 dev_link.link_status = ((ifr.ifr_flags & IFF_UP) &&
757 (ifr.ifr_flags & IFF_RUNNING));
758 ifr.ifr_data = (void *)&edata;
759 if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
760 WARN("ioctl(SIOCETHTOOL, ETHTOOL_GSET) failed: %s",
764 link_speed = ethtool_cmd_speed(&edata);
765 if (link_speed == -1)
766 dev_link.link_speed = 0;
768 dev_link.link_speed = link_speed;
769 priv->link_speed_capa = 0;
770 if (edata.supported & SUPPORTED_Autoneg)
771 priv->link_speed_capa |= ETH_LINK_SPEED_AUTONEG;
772 if (edata.supported & (SUPPORTED_1000baseT_Full |
773 SUPPORTED_1000baseKX_Full))
774 priv->link_speed_capa |= ETH_LINK_SPEED_1G;
775 if (edata.supported & SUPPORTED_10000baseKR_Full)
776 priv->link_speed_capa |= ETH_LINK_SPEED_10G;
777 if (edata.supported & (SUPPORTED_40000baseKR4_Full |
778 SUPPORTED_40000baseCR4_Full |
779 SUPPORTED_40000baseSR4_Full |
780 SUPPORTED_40000baseLR4_Full))
781 priv->link_speed_capa |= ETH_LINK_SPEED_40G;
782 dev_link.link_duplex = ((edata.duplex == DUPLEX_HALF) ?
783 ETH_LINK_HALF_DUPLEX : ETH_LINK_FULL_DUPLEX);
784 dev_link.link_autoneg = !(dev->data->dev_conf.link_speeds &
785 ETH_LINK_SPEED_FIXED);
786 if (memcmp(&dev_link, &dev->data->dev_link, sizeof(dev_link))) {
787 /* Link status changed. */
788 dev->data->dev_link = dev_link;
791 /* Link status is still the same. */
796 * Retrieve physical link information (unlocked version using new ioctl).
799 * Pointer to Ethernet device structure.
800 * @param wait_to_complete
801 * Wait for request completion (ignored).
804 mlx5_link_update_unlocked_gs(struct rte_eth_dev *dev, int wait_to_complete)
806 struct priv *priv = mlx5_get_priv(dev);
807 struct ethtool_link_settings gcmd = { .cmd = ETHTOOL_GLINKSETTINGS };
809 struct rte_eth_link dev_link;
812 (void)wait_to_complete;
813 if (priv_ifreq(priv, SIOCGIFFLAGS, &ifr)) {
814 WARN("ioctl(SIOCGIFFLAGS) failed: %s", strerror(errno));
817 memset(&dev_link, 0, sizeof(dev_link));
818 dev_link.link_status = ((ifr.ifr_flags & IFF_UP) &&
819 (ifr.ifr_flags & IFF_RUNNING));
820 ifr.ifr_data = (void *)&gcmd;
821 if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
822 DEBUG("ioctl(SIOCETHTOOL, ETHTOOL_GLINKSETTINGS) failed: %s",
826 gcmd.link_mode_masks_nwords = -gcmd.link_mode_masks_nwords;
828 alignas(struct ethtool_link_settings)
829 uint8_t data[offsetof(struct ethtool_link_settings, link_mode_masks) +
830 sizeof(uint32_t) * gcmd.link_mode_masks_nwords * 3];
831 struct ethtool_link_settings *ecmd = (void *)data;
834 ifr.ifr_data = (void *)ecmd;
835 if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
836 DEBUG("ioctl(SIOCETHTOOL, ETHTOOL_GLINKSETTINGS) failed: %s",
840 dev_link.link_speed = ecmd->speed;
841 sc = ecmd->link_mode_masks[0] |
842 ((uint64_t)ecmd->link_mode_masks[1] << 32);
843 priv->link_speed_capa = 0;
844 if (sc & ETHTOOL_LINK_MODE_Autoneg_BIT)
845 priv->link_speed_capa |= ETH_LINK_SPEED_AUTONEG;
846 if (sc & (ETHTOOL_LINK_MODE_1000baseT_Full_BIT |
847 ETHTOOL_LINK_MODE_1000baseKX_Full_BIT))
848 priv->link_speed_capa |= ETH_LINK_SPEED_1G;
849 if (sc & (ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT |
850 ETHTOOL_LINK_MODE_10000baseKR_Full_BIT |
851 ETHTOOL_LINK_MODE_10000baseR_FEC_BIT))
852 priv->link_speed_capa |= ETH_LINK_SPEED_10G;
853 if (sc & (ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT |
854 ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT))
855 priv->link_speed_capa |= ETH_LINK_SPEED_20G;
856 if (sc & (ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT |
857 ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT |
858 ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT |
859 ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT))
860 priv->link_speed_capa |= ETH_LINK_SPEED_40G;
861 if (sc & (ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT |
862 ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT |
863 ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT |
864 ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT))
865 priv->link_speed_capa |= ETH_LINK_SPEED_56G;
866 if (sc & (ETHTOOL_LINK_MODE_25000baseCR_Full_BIT |
867 ETHTOOL_LINK_MODE_25000baseKR_Full_BIT |
868 ETHTOOL_LINK_MODE_25000baseSR_Full_BIT))
869 priv->link_speed_capa |= ETH_LINK_SPEED_25G;
870 if (sc & (ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT |
871 ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT))
872 priv->link_speed_capa |= ETH_LINK_SPEED_50G;
873 if (sc & (ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT |
874 ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT |
875 ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT |
876 ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT))
877 priv->link_speed_capa |= ETH_LINK_SPEED_100G;
878 dev_link.link_duplex = ((ecmd->duplex == DUPLEX_HALF) ?
879 ETH_LINK_HALF_DUPLEX : ETH_LINK_FULL_DUPLEX);
880 dev_link.link_autoneg = !(dev->data->dev_conf.link_speeds &
881 ETH_LINK_SPEED_FIXED);
882 if (memcmp(&dev_link, &dev->data->dev_link, sizeof(dev_link))) {
883 /* Link status changed. */
884 dev->data->dev_link = dev_link;
887 /* Link status is still the same. */
892 * DPDK callback to retrieve physical link information.
895 * Pointer to Ethernet device structure.
896 * @param wait_to_complete
897 * Wait for request completion (ignored).
900 mlx5_link_update(struct rte_eth_dev *dev, int wait_to_complete)
902 struct utsname utsname;
905 if (uname(&utsname) == -1 ||
906 sscanf(utsname.release, "%d.%d.%d",
907 &ver[0], &ver[1], &ver[2]) != 3 ||
908 KERNEL_VERSION(ver[0], ver[1], ver[2]) < KERNEL_VERSION(4, 9, 0))
909 return mlx5_link_update_unlocked_gset(dev, wait_to_complete);
910 return mlx5_link_update_unlocked_gs(dev, wait_to_complete);
914 * DPDK callback to change the MTU.
917 * Pointer to Ethernet device structure.
922 * 0 on success, negative errno value on failure.
925 mlx5_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
927 struct priv *priv = dev->data->dev_private;
931 if (mlx5_is_secondary())
932 return -E_RTE_SECONDARY;
935 ret = priv_get_mtu(priv, &kern_mtu);
938 /* Set kernel interface MTU first. */
939 ret = priv_set_mtu(priv, mtu);
942 ret = priv_get_mtu(priv, &kern_mtu);
945 if (kern_mtu == mtu) {
947 DEBUG("adapter port %u MTU set to %u", priv->port, mtu);
953 WARN("cannot set port %u MTU to %u: %s", priv->port, mtu,
961 * DPDK callback to get flow control status.
964 * Pointer to Ethernet device structure.
965 * @param[out] fc_conf
966 * Flow control output buffer.
969 * 0 on success, negative errno value on failure.
972 mlx5_dev_get_flow_ctrl(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
974 struct priv *priv = dev->data->dev_private;
976 struct ethtool_pauseparam ethpause = {
977 .cmd = ETHTOOL_GPAUSEPARAM
981 if (mlx5_is_secondary())
982 return -E_RTE_SECONDARY;
984 ifr.ifr_data = (void *)ðpause;
986 if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
988 WARN("ioctl(SIOCETHTOOL, ETHTOOL_GPAUSEPARAM)"
994 fc_conf->autoneg = ethpause.autoneg;
995 if (ethpause.rx_pause && ethpause.tx_pause)
996 fc_conf->mode = RTE_FC_FULL;
997 else if (ethpause.rx_pause)
998 fc_conf->mode = RTE_FC_RX_PAUSE;
999 else if (ethpause.tx_pause)
1000 fc_conf->mode = RTE_FC_TX_PAUSE;
1002 fc_conf->mode = RTE_FC_NONE;
1012 * DPDK callback to modify flow control parameters.
1015 * Pointer to Ethernet device structure.
1016 * @param[in] fc_conf
1017 * Flow control parameters.
1020 * 0 on success, negative errno value on failure.
1023 mlx5_dev_set_flow_ctrl(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
1025 struct priv *priv = dev->data->dev_private;
1027 struct ethtool_pauseparam ethpause = {
1028 .cmd = ETHTOOL_SPAUSEPARAM
1032 if (mlx5_is_secondary())
1033 return -E_RTE_SECONDARY;
1035 ifr.ifr_data = (void *)ðpause;
1036 ethpause.autoneg = fc_conf->autoneg;
1037 if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
1038 (fc_conf->mode & RTE_FC_RX_PAUSE))
1039 ethpause.rx_pause = 1;
1041 ethpause.rx_pause = 0;
1043 if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
1044 (fc_conf->mode & RTE_FC_TX_PAUSE))
1045 ethpause.tx_pause = 1;
1047 ethpause.tx_pause = 0;
1050 if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
1052 WARN("ioctl(SIOCETHTOOL, ETHTOOL_SPAUSEPARAM)"
1066 * Get PCI information from struct ibv_device.
1069 * Pointer to Ethernet device structure.
1070 * @param[out] pci_addr
1071 * PCI bus address output buffer.
1074 * 0 on success, -1 on failure and errno is set.
1077 mlx5_ibv_device_to_pci_addr(const struct ibv_device *device,
1078 struct rte_pci_addr *pci_addr)
1082 MKSTR(path, "%s/device/uevent", device->ibdev_path);
1084 file = fopen(path, "rb");
1087 while (fgets(line, sizeof(line), file) == line) {
1088 size_t len = strlen(line);
1091 /* Truncate long lines. */
1092 if (len == (sizeof(line) - 1))
1093 while (line[(len - 1)] != '\n') {
1097 line[(len - 1)] = ret;
1099 /* Extract information. */
1102 "%" SCNx32 ":%" SCNx8 ":%" SCNx8 ".%" SCNx8 "\n",
1106 &pci_addr->function) == 4) {
1116 * Update the link status.
1119 * Pointer to private structure.
1122 * Zero if the callback process can be called immediately.
1125 priv_link_status_update(struct priv *priv)
1127 struct rte_eth_link *link = &priv->dev->data->dev_link;
1129 mlx5_link_update(priv->dev, 0);
1130 if (((link->link_speed == 0) && link->link_status) ||
1131 ((link->link_speed != 0) && !link->link_status)) {
1133 * Inconsistent status. Event likely occurred before the
1134 * kernel netdevice exposes the new status.
1136 if (!priv->pending_alarm) {
1137 priv->pending_alarm = 1;
1138 rte_eal_alarm_set(MLX5_ALARM_TIMEOUT_US,
1139 mlx5_dev_link_status_handler,
1143 } else if (unlikely(priv->pending_alarm)) {
1144 /* Link interrupt occurred while alarm is already scheduled. */
1145 priv->pending_alarm = 0;
1146 rte_eal_alarm_cancel(mlx5_dev_link_status_handler, priv->dev);
1152 * Device status handler.
1155 * Pointer to private structure.
1157 * Pointer to event flags holder.
1160 * Events bitmap of callback process which can be called immediately.
1163 priv_dev_status_handler(struct priv *priv)
1165 struct ibv_async_event event;
1168 /* Read all message and acknowledge them. */
1170 if (ibv_get_async_event(priv->ctx, &event))
1172 if ((event.event_type == IBV_EVENT_PORT_ACTIVE ||
1173 event.event_type == IBV_EVENT_PORT_ERR) &&
1174 (priv->dev->data->dev_conf.intr_conf.lsc == 1))
1175 ret |= (1 << RTE_ETH_EVENT_INTR_LSC);
1176 else if (event.event_type == IBV_EVENT_DEVICE_FATAL &&
1177 priv->dev->data->dev_conf.intr_conf.rmv == 1)
1178 ret |= (1 << RTE_ETH_EVENT_INTR_RMV);
1180 DEBUG("event type %d on port %d not handled",
1181 event.event_type, event.element.port_num);
1182 ibv_ack_async_event(&event);
1184 if (ret & (1 << RTE_ETH_EVENT_INTR_LSC))
1185 if (priv_link_status_update(priv))
1186 ret &= ~(1 << RTE_ETH_EVENT_INTR_LSC);
1191 * Handle delayed link status event.
1194 * Registered argument.
1197 mlx5_dev_link_status_handler(void *arg)
1199 struct rte_eth_dev *dev = arg;
1200 struct priv *priv = dev->data->dev_private;
1204 assert(priv->pending_alarm == 1);
1205 priv->pending_alarm = 0;
1206 ret = priv_link_status_update(priv);
1209 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC, NULL,
1214 * Handle interrupts from the NIC.
1216 * @param[in] intr_handle
1217 * Interrupt handler.
1219 * Callback argument.
1222 mlx5_dev_interrupt_handler(void *cb_arg)
1224 struct rte_eth_dev *dev = cb_arg;
1225 struct priv *priv = dev->data->dev_private;
1229 events = priv_dev_status_handler(priv);
1231 if (events & (1 << RTE_ETH_EVENT_INTR_LSC))
1232 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC, NULL,
1234 if (events & (1 << RTE_ETH_EVENT_INTR_RMV))
1235 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RMV, NULL,
1240 * Uninstall interrupt handler.
1243 * Pointer to private structure.
1245 * Pointer to the rte_eth_dev structure.
1248 priv_dev_interrupt_handler_uninstall(struct priv *priv, struct rte_eth_dev *dev)
1250 if (!dev->data->dev_conf.intr_conf.lsc &&
1251 !dev->data->dev_conf.intr_conf.rmv)
1253 rte_intr_callback_unregister(&priv->intr_handle,
1254 mlx5_dev_interrupt_handler,
1256 if (priv->pending_alarm)
1257 rte_eal_alarm_cancel(mlx5_dev_link_status_handler, dev);
1258 priv->pending_alarm = 0;
1259 priv->intr_handle.fd = 0;
1260 priv->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
1264 * Install interrupt handler.
1267 * Pointer to private structure.
1269 * Pointer to the rte_eth_dev structure.
1272 priv_dev_interrupt_handler_install(struct priv *priv, struct rte_eth_dev *dev)
1276 if (!dev->data->dev_conf.intr_conf.lsc &&
1277 !dev->data->dev_conf.intr_conf.rmv)
1279 assert(priv->ctx->async_fd > 0);
1280 flags = fcntl(priv->ctx->async_fd, F_GETFL);
1281 rc = fcntl(priv->ctx->async_fd, F_SETFL, flags | O_NONBLOCK);
1283 INFO("failed to change file descriptor async event queue");
1284 dev->data->dev_conf.intr_conf.lsc = 0;
1285 dev->data->dev_conf.intr_conf.rmv = 0;
1287 priv->intr_handle.fd = priv->ctx->async_fd;
1288 priv->intr_handle.type = RTE_INTR_HANDLE_EXT;
1289 rte_intr_callback_register(&priv->intr_handle,
1290 mlx5_dev_interrupt_handler,
1296 * Change the link state (UP / DOWN).
1299 * Pointer to Ethernet device structure.
1301 * Nonzero for link up, otherwise link down.
1304 * 0 on success, errno value on failure.
1307 priv_set_link(struct priv *priv, int up)
1309 struct rte_eth_dev *dev = priv->dev;
1313 err = priv_set_flags(priv, ~IFF_UP, IFF_UP);
1316 priv_select_tx_function(priv);
1317 priv_select_rx_function(priv);
1319 err = priv_set_flags(priv, ~IFF_UP, ~IFF_UP);
1322 dev->rx_pkt_burst = removed_rx_burst;
1323 dev->tx_pkt_burst = removed_tx_burst;
1329 * DPDK callback to bring the link DOWN.
1332 * Pointer to Ethernet device structure.
1335 * 0 on success, errno value on failure.
1338 mlx5_set_link_down(struct rte_eth_dev *dev)
1340 struct priv *priv = dev->data->dev_private;
1344 err = priv_set_link(priv, 0);
1350 * DPDK callback to bring the link UP.
1353 * Pointer to Ethernet device structure.
1356 * 0 on success, errno value on failure.
1359 mlx5_set_link_up(struct rte_eth_dev *dev)
1361 struct priv *priv = dev->data->dev_private;
1365 err = priv_set_link(priv, 1);
1371 * Configure the TX function to use.
1374 * Pointer to private structure.
1377 priv_select_tx_function(struct priv *priv)
1379 priv->dev->tx_pkt_burst = mlx5_tx_burst;
1380 /* Select appropriate TX function. */
1381 if (priv->mps == MLX5_MPW_ENHANCED) {
1382 if (priv_check_vec_tx_support(priv) > 0) {
1383 if (priv_check_raw_vec_tx_support(priv) > 0)
1384 priv->dev->tx_pkt_burst = mlx5_tx_burst_raw_vec;
1386 priv->dev->tx_pkt_burst = mlx5_tx_burst_vec;
1387 DEBUG("selected Enhanced MPW TX vectorized function");
1389 priv->dev->tx_pkt_burst = mlx5_tx_burst_empw;
1390 DEBUG("selected Enhanced MPW TX function");
1392 } else if (priv->mps && priv->txq_inline) {
1393 priv->dev->tx_pkt_burst = mlx5_tx_burst_mpw_inline;
1394 DEBUG("selected MPW inline TX function");
1395 } else if (priv->mps) {
1396 priv->dev->tx_pkt_burst = mlx5_tx_burst_mpw;
1397 DEBUG("selected MPW TX function");
1402 * Configure the RX function to use.
1405 * Pointer to private structure.
1408 priv_select_rx_function(struct priv *priv)
1410 if (priv_check_vec_rx_support(priv) > 0) {
1411 priv->dev->rx_pkt_burst = mlx5_rx_burst_vec;
1412 DEBUG("selected RX vectorized function");
1414 priv->dev->rx_pkt_burst = mlx5_rx_burst;