net/mlx4: separate device control functions
Private functions are now prefixed with "mlx4_" to prevent them from conflicting with their mlx5 PMD counterparts at link time. No impact on functionality. Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
This commit is contained in:
parent
7f45cb82da
commit
61cbdd4194
@ -36,6 +36,7 @@ LIB = librte_pmd_mlx4.a
|
||||
|
||||
# Sources.
|
||||
SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4.c
|
||||
SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_ethdev.c
|
||||
SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_flow.c
|
||||
SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_intr.c
|
||||
SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_rxtx.c
|
||||
|
@ -41,13 +41,6 @@
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <assert.h>
|
||||
#include <net/if.h>
|
||||
#include <dirent.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#include <linux/ethtool.h>
|
||||
#include <linux/sockios.h>
|
||||
|
||||
#include <rte_ether.h>
|
||||
#include <rte_ethdev.h>
|
||||
@ -86,370 +79,6 @@ const char *pmd_mlx4_init_params[] = {
|
||||
NULL,
|
||||
};
|
||||
|
||||
/* Allocate a buffer on the stack and fill it with a printf format string. */
|
||||
#define MKSTR(name, ...) \
|
||||
char name[snprintf(NULL, 0, __VA_ARGS__) + 1]; \
|
||||
\
|
||||
snprintf(name, sizeof(name), __VA_ARGS__)
|
||||
|
||||
/**
|
||||
* Get interface name from private structure.
|
||||
*
|
||||
* @param[in] priv
|
||||
* Pointer to private structure.
|
||||
* @param[out] ifname
|
||||
* Interface name output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
priv_get_ifname(const struct priv *priv, char (*ifname)[IF_NAMESIZE])
|
||||
{
|
||||
DIR *dir;
|
||||
struct dirent *dent;
|
||||
unsigned int dev_type = 0;
|
||||
unsigned int dev_port_prev = ~0u;
|
||||
char match[IF_NAMESIZE] = "";
|
||||
|
||||
{
|
||||
MKSTR(path, "%s/device/net", priv->ctx->device->ibdev_path);
|
||||
|
||||
dir = opendir(path);
|
||||
if (dir == NULL) {
|
||||
rte_errno = errno;
|
||||
return -rte_errno;
|
||||
}
|
||||
}
|
||||
while ((dent = readdir(dir)) != NULL) {
|
||||
char *name = dent->d_name;
|
||||
FILE *file;
|
||||
unsigned int dev_port;
|
||||
int r;
|
||||
|
||||
if ((name[0] == '.') &&
|
||||
((name[1] == '\0') ||
|
||||
((name[1] == '.') && (name[2] == '\0'))))
|
||||
continue;
|
||||
|
||||
MKSTR(path, "%s/device/net/%s/%s",
|
||||
priv->ctx->device->ibdev_path, name,
|
||||
(dev_type ? "dev_id" : "dev_port"));
|
||||
|
||||
file = fopen(path, "rb");
|
||||
if (file == NULL) {
|
||||
if (errno != ENOENT)
|
||||
continue;
|
||||
/*
|
||||
* Switch to dev_id when dev_port does not exist as
|
||||
* is the case with Linux kernel versions < 3.15.
|
||||
*/
|
||||
try_dev_id:
|
||||
match[0] = '\0';
|
||||
if (dev_type)
|
||||
break;
|
||||
dev_type = 1;
|
||||
dev_port_prev = ~0u;
|
||||
rewinddir(dir);
|
||||
continue;
|
||||
}
|
||||
r = fscanf(file, (dev_type ? "%x" : "%u"), &dev_port);
|
||||
fclose(file);
|
||||
if (r != 1)
|
||||
continue;
|
||||
/*
|
||||
* Switch to dev_id when dev_port returns the same value for
|
||||
* all ports. May happen when using a MOFED release older than
|
||||
* 3.0 with a Linux kernel >= 3.15.
|
||||
*/
|
||||
if (dev_port == dev_port_prev)
|
||||
goto try_dev_id;
|
||||
dev_port_prev = dev_port;
|
||||
if (dev_port == (priv->port - 1u))
|
||||
snprintf(match, sizeof(match), "%s", name);
|
||||
}
|
||||
closedir(dir);
|
||||
if (match[0] == '\0') {
|
||||
rte_errno = ENODEV;
|
||||
return -rte_errno;
|
||||
}
|
||||
strncpy(*ifname, match, sizeof(*ifname));
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Read from sysfs entry.
|
||||
*
|
||||
* @param[in] priv
|
||||
* Pointer to private structure.
|
||||
* @param[in] entry
|
||||
* Entry name relative to sysfs path.
|
||||
* @param[out] buf
|
||||
* Data output buffer.
|
||||
* @param size
|
||||
* Buffer size.
|
||||
*
|
||||
* @return
|
||||
* Number of bytes read on success, negative errno value otherwise and
|
||||
* rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
priv_sysfs_read(const struct priv *priv, const char *entry,
|
||||
char *buf, size_t size)
|
||||
{
|
||||
char ifname[IF_NAMESIZE];
|
||||
FILE *file;
|
||||
int ret;
|
||||
|
||||
ret = priv_get_ifname(priv, &ifname);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
MKSTR(path, "%s/device/net/%s/%s", priv->ctx->device->ibdev_path,
|
||||
ifname, entry);
|
||||
|
||||
file = fopen(path, "rb");
|
||||
if (file == NULL) {
|
||||
rte_errno = errno;
|
||||
return -rte_errno;
|
||||
}
|
||||
ret = fread(buf, 1, size, file);
|
||||
if ((size_t)ret < size && ferror(file)) {
|
||||
rte_errno = EIO;
|
||||
ret = -rte_errno;
|
||||
} else {
|
||||
ret = size;
|
||||
}
|
||||
fclose(file);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* Write to sysfs entry.
|
||||
*
|
||||
* @param[in] priv
|
||||
* Pointer to private structure.
|
||||
* @param[in] entry
|
||||
* Entry name relative to sysfs path.
|
||||
* @param[in] buf
|
||||
* Data buffer.
|
||||
* @param size
|
||||
* Buffer size.
|
||||
*
|
||||
* @return
|
||||
* Number of bytes written on success, negative errno value otherwise and
|
||||
* rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
priv_sysfs_write(const struct priv *priv, const char *entry,
|
||||
char *buf, size_t size)
|
||||
{
|
||||
char ifname[IF_NAMESIZE];
|
||||
FILE *file;
|
||||
int ret;
|
||||
|
||||
ret = priv_get_ifname(priv, &ifname);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
MKSTR(path, "%s/device/net/%s/%s", priv->ctx->device->ibdev_path,
|
||||
ifname, entry);
|
||||
|
||||
file = fopen(path, "wb");
|
||||
if (file == NULL) {
|
||||
rte_errno = errno;
|
||||
return -rte_errno;
|
||||
}
|
||||
ret = fwrite(buf, 1, size, file);
|
||||
if ((size_t)ret < size || ferror(file)) {
|
||||
rte_errno = EIO;
|
||||
ret = -rte_errno;
|
||||
} else {
|
||||
ret = size;
|
||||
}
|
||||
fclose(file);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get unsigned long sysfs property.
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to private structure.
|
||||
* @param[in] name
|
||||
* Entry name relative to sysfs path.
|
||||
* @param[out] value
|
||||
* Value output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
priv_get_sysfs_ulong(struct priv *priv, const char *name, unsigned long *value)
|
||||
{
|
||||
int ret;
|
||||
unsigned long value_ret;
|
||||
char value_str[32];
|
||||
|
||||
ret = priv_sysfs_read(priv, name, value_str, (sizeof(value_str) - 1));
|
||||
if (ret < 0) {
|
||||
DEBUG("cannot read %s value from sysfs: %s",
|
||||
name, strerror(rte_errno));
|
||||
return ret;
|
||||
}
|
||||
value_str[ret] = '\0';
|
||||
errno = 0;
|
||||
value_ret = strtoul(value_str, NULL, 0);
|
||||
if (errno) {
|
||||
rte_errno = errno;
|
||||
DEBUG("invalid %s value `%s': %s", name, value_str,
|
||||
strerror(rte_errno));
|
||||
return -rte_errno;
|
||||
}
|
||||
*value = value_ret;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set unsigned long sysfs property.
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to private structure.
|
||||
* @param[in] name
|
||||
* Entry name relative to sysfs path.
|
||||
* @param value
|
||||
* Value to set.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
priv_set_sysfs_ulong(struct priv *priv, const char *name, unsigned long value)
|
||||
{
|
||||
int ret;
|
||||
MKSTR(value_str, "%lu", value);
|
||||
|
||||
ret = priv_sysfs_write(priv, name, value_str, (sizeof(value_str) - 1));
|
||||
if (ret < 0) {
|
||||
DEBUG("cannot write %s `%s' (%lu) to sysfs: %s",
|
||||
name, value_str, value, strerror(rte_errno));
|
||||
return ret;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform ifreq ioctl() on associated Ethernet device.
|
||||
*
|
||||
* @param[in] priv
|
||||
* Pointer to private structure.
|
||||
* @param req
|
||||
* Request number to pass to ioctl().
|
||||
* @param[out] ifr
|
||||
* Interface request structure output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
priv_ifreq(const struct priv *priv, int req, struct ifreq *ifr)
|
||||
{
|
||||
int sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
|
||||
int ret;
|
||||
|
||||
if (sock == -1) {
|
||||
rte_errno = errno;
|
||||
return -rte_errno;
|
||||
}
|
||||
ret = priv_get_ifname(priv, &ifr->ifr_name);
|
||||
if (!ret && ioctl(sock, req, ifr) == -1) {
|
||||
rte_errno = errno;
|
||||
ret = -rte_errno;
|
||||
}
|
||||
close(sock);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get device MTU.
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to private structure.
|
||||
* @param[out] mtu
|
||||
* MTU value output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
priv_get_mtu(struct priv *priv, uint16_t *mtu)
|
||||
{
|
||||
unsigned long ulong_mtu = 0;
|
||||
int ret = priv_get_sysfs_ulong(priv, "mtu", &ulong_mtu);
|
||||
|
||||
if (ret)
|
||||
return ret;
|
||||
*mtu = ulong_mtu;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to change the MTU.
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param mtu
|
||||
* MTU value to set.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
uint16_t new_mtu;
|
||||
int ret = priv_set_sysfs_ulong(priv, "mtu", mtu);
|
||||
|
||||
if (ret)
|
||||
return ret;
|
||||
ret = priv_get_mtu(priv, &new_mtu);
|
||||
if (ret)
|
||||
return ret;
|
||||
if (new_mtu == mtu) {
|
||||
priv->mtu = mtu;
|
||||
return 0;
|
||||
}
|
||||
rte_errno = EINVAL;
|
||||
return -rte_errno;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set device flags.
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to private structure.
|
||||
* @param keep
|
||||
* Bitmask for flags that must remain untouched.
|
||||
* @param flags
|
||||
* Bitmask for flags to modify.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
priv_set_flags(struct priv *priv, unsigned int keep, unsigned int flags)
|
||||
{
|
||||
unsigned long tmp = 0;
|
||||
int ret = priv_get_sysfs_ulong(priv, "flags", &tmp);
|
||||
|
||||
if (ret)
|
||||
return ret;
|
||||
tmp &= keep;
|
||||
tmp |= (flags & (~keep));
|
||||
return priv_set_sysfs_ulong(priv, "flags", tmp);
|
||||
}
|
||||
|
||||
/* Device configuration. */
|
||||
|
||||
static int
|
||||
@ -1675,346 +1304,6 @@ mlx4_dev_close(struct rte_eth_dev *dev)
|
||||
memset(priv, 0, sizeof(*priv));
|
||||
}
|
||||
|
||||
/**
|
||||
* Change the link state (UP / DOWN).
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to Ethernet device private data.
|
||||
* @param up
|
||||
* Nonzero for link up, otherwise link down.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
priv_set_link(struct priv *priv, int up)
|
||||
{
|
||||
struct rte_eth_dev *dev = priv->dev;
|
||||
int err;
|
||||
|
||||
if (up) {
|
||||
err = priv_set_flags(priv, ~IFF_UP, IFF_UP);
|
||||
if (err)
|
||||
return err;
|
||||
dev->rx_pkt_burst = mlx4_rx_burst;
|
||||
} else {
|
||||
err = priv_set_flags(priv, ~IFF_UP, ~IFF_UP);
|
||||
if (err)
|
||||
return err;
|
||||
dev->rx_pkt_burst = mlx4_rx_burst_removed;
|
||||
dev->tx_pkt_burst = mlx4_tx_burst_removed;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to bring the link DOWN.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_set_link_down(struct rte_eth_dev *dev)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
|
||||
return priv_set_link(priv, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to bring the link UP.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_set_link_up(struct rte_eth_dev *dev)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
|
||||
return priv_set_link(priv, 1);
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to get information about the device.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param[out] info
|
||||
* Info structure output buffer.
|
||||
*/
|
||||
static void
|
||||
mlx4_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
unsigned int max;
|
||||
char ifname[IF_NAMESIZE];
|
||||
|
||||
info->pci_dev = RTE_ETH_DEV_TO_PCI(dev);
|
||||
if (priv == NULL)
|
||||
return;
|
||||
/* FIXME: we should ask the device for these values. */
|
||||
info->min_rx_bufsize = 32;
|
||||
info->max_rx_pktlen = 65536;
|
||||
/*
|
||||
* Since we need one CQ per QP, the limit is the minimum number
|
||||
* between the two values.
|
||||
*/
|
||||
max = ((priv->device_attr.max_cq > priv->device_attr.max_qp) ?
|
||||
priv->device_attr.max_qp : priv->device_attr.max_cq);
|
||||
/* If max >= 65535 then max = 0, max_rx_queues is uint16_t. */
|
||||
if (max >= 65535)
|
||||
max = 65535;
|
||||
info->max_rx_queues = max;
|
||||
info->max_tx_queues = max;
|
||||
/* Last array entry is reserved for broadcast. */
|
||||
info->max_mac_addrs = 1;
|
||||
info->rx_offload_capa = 0;
|
||||
info->tx_offload_capa = 0;
|
||||
if (priv_get_ifname(priv, &ifname) == 0)
|
||||
info->if_index = if_nametoindex(ifname);
|
||||
info->speed_capa =
|
||||
ETH_LINK_SPEED_1G |
|
||||
ETH_LINK_SPEED_10G |
|
||||
ETH_LINK_SPEED_20G |
|
||||
ETH_LINK_SPEED_40G |
|
||||
ETH_LINK_SPEED_56G;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to get device statistics.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param[out] stats
|
||||
* Stats structure output buffer.
|
||||
*/
|
||||
static void
|
||||
mlx4_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
struct rte_eth_stats tmp = {0};
|
||||
unsigned int i;
|
||||
unsigned int idx;
|
||||
|
||||
if (priv == NULL)
|
||||
return;
|
||||
/* Add software counters. */
|
||||
for (i = 0; (i != priv->rxqs_n); ++i) {
|
||||
struct rxq *rxq = (*priv->rxqs)[i];
|
||||
|
||||
if (rxq == NULL)
|
||||
continue;
|
||||
idx = rxq->stats.idx;
|
||||
if (idx < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
|
||||
tmp.q_ipackets[idx] += rxq->stats.ipackets;
|
||||
tmp.q_ibytes[idx] += rxq->stats.ibytes;
|
||||
tmp.q_errors[idx] += (rxq->stats.idropped +
|
||||
rxq->stats.rx_nombuf);
|
||||
}
|
||||
tmp.ipackets += rxq->stats.ipackets;
|
||||
tmp.ibytes += rxq->stats.ibytes;
|
||||
tmp.ierrors += rxq->stats.idropped;
|
||||
tmp.rx_nombuf += rxq->stats.rx_nombuf;
|
||||
}
|
||||
for (i = 0; (i != priv->txqs_n); ++i) {
|
||||
struct txq *txq = (*priv->txqs)[i];
|
||||
|
||||
if (txq == NULL)
|
||||
continue;
|
||||
idx = txq->stats.idx;
|
||||
if (idx < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
|
||||
tmp.q_opackets[idx] += txq->stats.opackets;
|
||||
tmp.q_obytes[idx] += txq->stats.obytes;
|
||||
tmp.q_errors[idx] += txq->stats.odropped;
|
||||
}
|
||||
tmp.opackets += txq->stats.opackets;
|
||||
tmp.obytes += txq->stats.obytes;
|
||||
tmp.oerrors += txq->stats.odropped;
|
||||
}
|
||||
*stats = tmp;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to clear device statistics.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
*/
|
||||
static void
|
||||
mlx4_stats_reset(struct rte_eth_dev *dev)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
unsigned int i;
|
||||
unsigned int idx;
|
||||
|
||||
if (priv == NULL)
|
||||
return;
|
||||
for (i = 0; (i != priv->rxqs_n); ++i) {
|
||||
if ((*priv->rxqs)[i] == NULL)
|
||||
continue;
|
||||
idx = (*priv->rxqs)[i]->stats.idx;
|
||||
(*priv->rxqs)[i]->stats =
|
||||
(struct mlx4_rxq_stats){ .idx = idx };
|
||||
}
|
||||
for (i = 0; (i != priv->txqs_n); ++i) {
|
||||
if ((*priv->txqs)[i] == NULL)
|
||||
continue;
|
||||
idx = (*priv->txqs)[i]->stats.idx;
|
||||
(*priv->txqs)[i]->stats =
|
||||
(struct mlx4_txq_stats){ .idx = idx };
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to retrieve physical link information.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param wait_to_complete
|
||||
* Wait for request completion (ignored).
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
int
|
||||
mlx4_link_update(struct rte_eth_dev *dev, int wait_to_complete)
|
||||
{
|
||||
const struct priv *priv = dev->data->dev_private;
|
||||
struct ethtool_cmd edata = {
|
||||
.cmd = ETHTOOL_GSET
|
||||
};
|
||||
struct ifreq ifr;
|
||||
struct rte_eth_link dev_link;
|
||||
int link_speed = 0;
|
||||
|
||||
if (priv == NULL) {
|
||||
rte_errno = EINVAL;
|
||||
return -rte_errno;
|
||||
}
|
||||
(void)wait_to_complete;
|
||||
if (priv_ifreq(priv, SIOCGIFFLAGS, &ifr)) {
|
||||
WARN("ioctl(SIOCGIFFLAGS) failed: %s", strerror(rte_errno));
|
||||
return -rte_errno;
|
||||
}
|
||||
memset(&dev_link, 0, sizeof(dev_link));
|
||||
dev_link.link_status = ((ifr.ifr_flags & IFF_UP) &&
|
||||
(ifr.ifr_flags & IFF_RUNNING));
|
||||
ifr.ifr_data = (void *)&edata;
|
||||
if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
|
||||
WARN("ioctl(SIOCETHTOOL, ETHTOOL_GSET) failed: %s",
|
||||
strerror(rte_errno));
|
||||
return -rte_errno;
|
||||
}
|
||||
link_speed = ethtool_cmd_speed(&edata);
|
||||
if (link_speed == -1)
|
||||
dev_link.link_speed = 0;
|
||||
else
|
||||
dev_link.link_speed = link_speed;
|
||||
dev_link.link_duplex = ((edata.duplex == DUPLEX_HALF) ?
|
||||
ETH_LINK_HALF_DUPLEX : ETH_LINK_FULL_DUPLEX);
|
||||
dev_link.link_autoneg = !(dev->data->dev_conf.link_speeds &
|
||||
ETH_LINK_SPEED_FIXED);
|
||||
dev->data->dev_link = dev_link;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to get flow control status.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param[out] fc_conf
|
||||
* Flow control output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_dev_get_flow_ctrl(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
struct ifreq ifr;
|
||||
struct ethtool_pauseparam ethpause = {
|
||||
.cmd = ETHTOOL_GPAUSEPARAM
|
||||
};
|
||||
int ret;
|
||||
|
||||
ifr.ifr_data = (void *)ðpause;
|
||||
if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
|
||||
ret = rte_errno;
|
||||
WARN("ioctl(SIOCETHTOOL, ETHTOOL_GPAUSEPARAM)"
|
||||
" failed: %s",
|
||||
strerror(rte_errno));
|
||||
goto out;
|
||||
}
|
||||
fc_conf->autoneg = ethpause.autoneg;
|
||||
if (ethpause.rx_pause && ethpause.tx_pause)
|
||||
fc_conf->mode = RTE_FC_FULL;
|
||||
else if (ethpause.rx_pause)
|
||||
fc_conf->mode = RTE_FC_RX_PAUSE;
|
||||
else if (ethpause.tx_pause)
|
||||
fc_conf->mode = RTE_FC_TX_PAUSE;
|
||||
else
|
||||
fc_conf->mode = RTE_FC_NONE;
|
||||
ret = 0;
|
||||
out:
|
||||
assert(ret >= 0);
|
||||
return -ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to modify flow control parameters.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param[in] fc_conf
|
||||
* Flow control parameters.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_dev_set_flow_ctrl(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
struct ifreq ifr;
|
||||
struct ethtool_pauseparam ethpause = {
|
||||
.cmd = ETHTOOL_SPAUSEPARAM
|
||||
};
|
||||
int ret;
|
||||
|
||||
ifr.ifr_data = (void *)ðpause;
|
||||
ethpause.autoneg = fc_conf->autoneg;
|
||||
if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
|
||||
(fc_conf->mode & RTE_FC_RX_PAUSE))
|
||||
ethpause.rx_pause = 1;
|
||||
else
|
||||
ethpause.rx_pause = 0;
|
||||
if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
|
||||
(fc_conf->mode & RTE_FC_TX_PAUSE))
|
||||
ethpause.tx_pause = 1;
|
||||
else
|
||||
ethpause.tx_pause = 0;
|
||||
if (priv_ifreq(priv, SIOCETHTOOL, &ifr)) {
|
||||
ret = rte_errno;
|
||||
WARN("ioctl(SIOCETHTOOL, ETHTOOL_SPAUSEPARAM)"
|
||||
" failed: %s",
|
||||
strerror(rte_errno));
|
||||
goto out;
|
||||
}
|
||||
ret = 0;
|
||||
out:
|
||||
assert(ret >= 0);
|
||||
return -ret;
|
||||
}
|
||||
|
||||
const struct rte_flow_ops mlx4_flow_ops = {
|
||||
.validate = mlx4_flow_validate,
|
||||
.create = mlx4_flow_create,
|
||||
@ -2064,8 +1353,8 @@ static const struct eth_dev_ops mlx4_dev_ops = {
|
||||
.dev_configure = mlx4_dev_configure,
|
||||
.dev_start = mlx4_dev_start,
|
||||
.dev_stop = mlx4_dev_stop,
|
||||
.dev_set_link_down = mlx4_set_link_down,
|
||||
.dev_set_link_up = mlx4_set_link_up,
|
||||
.dev_set_link_down = mlx4_dev_set_link_down,
|
||||
.dev_set_link_up = mlx4_dev_set_link_up,
|
||||
.dev_close = mlx4_dev_close,
|
||||
.link_update = mlx4_link_update,
|
||||
.stats_get = mlx4_stats_get,
|
||||
@ -2075,9 +1364,9 @@ static const struct eth_dev_ops mlx4_dev_ops = {
|
||||
.tx_queue_setup = mlx4_tx_queue_setup,
|
||||
.rx_queue_release = mlx4_rx_queue_release,
|
||||
.tx_queue_release = mlx4_tx_queue_release,
|
||||
.flow_ctrl_get = mlx4_dev_get_flow_ctrl,
|
||||
.flow_ctrl_set = mlx4_dev_set_flow_ctrl,
|
||||
.mtu_set = mlx4_dev_set_mtu,
|
||||
.flow_ctrl_get = mlx4_flow_ctrl_get,
|
||||
.flow_ctrl_set = mlx4_flow_ctrl_set,
|
||||
.mtu_set = mlx4_mtu_set,
|
||||
.filter_ctrl = mlx4_dev_filter_ctrl,
|
||||
.rx_queue_intr_enable = mlx4_rx_intr_enable,
|
||||
.rx_queue_intr_disable = mlx4_rx_intr_disable,
|
||||
@ -2135,29 +1424,6 @@ mlx4_ibv_device_to_pci_addr(const struct ibv_device *device,
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get MAC address by querying netdevice.
|
||||
*
|
||||
* @param[in] priv
|
||||
* struct priv for the requested device.
|
||||
* @param[out] mac
|
||||
* MAC address output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
priv_get_mac(struct priv *priv, uint8_t (*mac)[ETHER_ADDR_LEN])
|
||||
{
|
||||
struct ifreq request;
|
||||
int ret = priv_ifreq(priv, SIOCGIFHWADDR, &request);
|
||||
|
||||
if (ret)
|
||||
return ret;
|
||||
memcpy(mac, request.ifr_hwaddr.sa_data, ETHER_ADDR_LEN);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Verify and store value for device argument.
|
||||
*
|
||||
@ -2411,7 +1677,7 @@ mlx4_pci_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
|
||||
priv->mtu = ETHER_MTU;
|
||||
priv->vf = vf;
|
||||
/* Configure the first MAC address by default. */
|
||||
if (priv_get_mac(priv, &mac.addr_bytes)) {
|
||||
if (mlx4_get_mac(priv, &mac.addr_bytes)) {
|
||||
ERROR("cannot get MAC address, is mlx4_en loaded?"
|
||||
" (rte_errno: %s)", strerror(rte_errno));
|
||||
goto port_error;
|
||||
@ -2429,7 +1695,7 @@ mlx4_pci_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
|
||||
{
|
||||
char ifname[IF_NAMESIZE];
|
||||
|
||||
if (priv_get_ifname(priv, &ifname) == 0)
|
||||
if (mlx4_get_ifname(priv, &ifname) == 0)
|
||||
DEBUG("port %u ifname is \"%s\"",
|
||||
priv->port, ifname);
|
||||
else
|
||||
@ -2437,7 +1703,7 @@ mlx4_pci_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
|
||||
}
|
||||
#endif
|
||||
/* Get actual MTU if possible. */
|
||||
priv_get_mtu(priv, &priv->mtu);
|
||||
mlx4_mtu_get(priv, &priv->mtu);
|
||||
DEBUG("port %u MTU is %u", priv->port, priv->mtu);
|
||||
/* from rte_ethdev.c */
|
||||
{
|
||||
@ -2480,7 +1746,7 @@ mlx4_pci_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
|
||||
eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
|
||||
/* Bring Ethernet device up. */
|
||||
DEBUG("forcing Ethernet interface up");
|
||||
priv_set_flags(priv, ~IFF_UP, IFF_UP);
|
||||
mlx4_dev_set_link_up(priv->dev);
|
||||
/* Update link status once if waiting for LSC. */
|
||||
if (eth_dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
|
||||
mlx4_link_update(eth_dev, 0);
|
||||
|
@ -34,6 +34,7 @@
|
||||
#ifndef RTE_PMD_MLX4_H_
|
||||
#define RTE_PMD_MLX4_H_
|
||||
|
||||
#include <net/if.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/* Verbs header. */
|
||||
@ -117,7 +118,24 @@ struct priv {
|
||||
/* mlx4.c */
|
||||
|
||||
struct ibv_mr *mlx4_mp2mr(struct ibv_pd *pd, struct rte_mempool *mp);
|
||||
|
||||
/* mlx4_ethdev.c */
|
||||
|
||||
int mlx4_get_ifname(const struct priv *priv, char (*ifname)[IF_NAMESIZE]);
|
||||
int mlx4_get_mac(struct priv *priv, uint8_t (*mac)[ETHER_ADDR_LEN]);
|
||||
int mlx4_mtu_get(struct priv *priv, uint16_t *mtu);
|
||||
int mlx4_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
|
||||
int mlx4_dev_set_link_down(struct rte_eth_dev *dev);
|
||||
int mlx4_dev_set_link_up(struct rte_eth_dev *dev);
|
||||
void mlx4_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats);
|
||||
void mlx4_stats_reset(struct rte_eth_dev *dev);
|
||||
void mlx4_dev_infos_get(struct rte_eth_dev *dev,
|
||||
struct rte_eth_dev_info *info);
|
||||
int mlx4_link_update(struct rte_eth_dev *dev, int wait_to_complete);
|
||||
int mlx4_flow_ctrl_get(struct rte_eth_dev *dev,
|
||||
struct rte_eth_fc_conf *fc_conf);
|
||||
int mlx4_flow_ctrl_set(struct rte_eth_dev *dev,
|
||||
struct rte_eth_fc_conf *fc_conf);
|
||||
|
||||
/* mlx4_intr.c */
|
||||
|
||||
|
793
drivers/net/mlx4/mlx4_ethdev.c
Normal file
793
drivers/net/mlx4/mlx4_ethdev.c
Normal file
@ -0,0 +1,793 @@
|
||||
/*-
|
||||
* BSD LICENSE
|
||||
*
|
||||
* Copyright 2017 6WIND S.A.
|
||||
* Copyright 2017 Mellanox
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* * Neither the name of 6WIND S.A. nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Miscellaneous control operations for mlx4 driver.
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <dirent.h>
|
||||
#include <errno.h>
|
||||
#include <linux/ethtool.h>
|
||||
#include <linux/sockios.h>
|
||||
#include <net/if.h>
|
||||
#include <netinet/ip.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/socket.h>
|
||||
#include <unistd.h>
|
||||
|
||||
/* Verbs headers do not support -pedantic. */
|
||||
#ifdef PEDANTIC
|
||||
#pragma GCC diagnostic ignored "-Wpedantic"
|
||||
#endif
|
||||
#include <infiniband/verbs.h>
|
||||
#ifdef PEDANTIC
|
||||
#pragma GCC diagnostic error "-Wpedantic"
|
||||
#endif
|
||||
|
||||
#include <rte_errno.h>
|
||||
#include <rte_ethdev.h>
|
||||
#include <rte_ether.h>
|
||||
#include <rte_pci.h>
|
||||
|
||||
#include "mlx4.h"
|
||||
#include "mlx4_rxtx.h"
|
||||
#include "mlx4_utils.h"
|
||||
|
||||
/**
|
||||
* Get interface name from private structure.
|
||||
*
|
||||
* @param[in] priv
|
||||
* Pointer to private structure.
|
||||
* @param[out] ifname
|
||||
* Interface name output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
int
|
||||
mlx4_get_ifname(const struct priv *priv, char (*ifname)[IF_NAMESIZE])
|
||||
{
|
||||
DIR *dir;
|
||||
struct dirent *dent;
|
||||
unsigned int dev_type = 0;
|
||||
unsigned int dev_port_prev = ~0u;
|
||||
char match[IF_NAMESIZE] = "";
|
||||
|
||||
{
|
||||
MKSTR(path, "%s/device/net", priv->ctx->device->ibdev_path);
|
||||
|
||||
dir = opendir(path);
|
||||
if (dir == NULL) {
|
||||
rte_errno = errno;
|
||||
return -rte_errno;
|
||||
}
|
||||
}
|
||||
while ((dent = readdir(dir)) != NULL) {
|
||||
char *name = dent->d_name;
|
||||
FILE *file;
|
||||
unsigned int dev_port;
|
||||
int r;
|
||||
|
||||
if ((name[0] == '.') &&
|
||||
((name[1] == '\0') ||
|
||||
((name[1] == '.') && (name[2] == '\0'))))
|
||||
continue;
|
||||
|
||||
MKSTR(path, "%s/device/net/%s/%s",
|
||||
priv->ctx->device->ibdev_path, name,
|
||||
(dev_type ? "dev_id" : "dev_port"));
|
||||
|
||||
file = fopen(path, "rb");
|
||||
if (file == NULL) {
|
||||
if (errno != ENOENT)
|
||||
continue;
|
||||
/*
|
||||
* Switch to dev_id when dev_port does not exist as
|
||||
* is the case with Linux kernel versions < 3.15.
|
||||
*/
|
||||
try_dev_id:
|
||||
match[0] = '\0';
|
||||
if (dev_type)
|
||||
break;
|
||||
dev_type = 1;
|
||||
dev_port_prev = ~0u;
|
||||
rewinddir(dir);
|
||||
continue;
|
||||
}
|
||||
r = fscanf(file, (dev_type ? "%x" : "%u"), &dev_port);
|
||||
fclose(file);
|
||||
if (r != 1)
|
||||
continue;
|
||||
/*
|
||||
* Switch to dev_id when dev_port returns the same value for
|
||||
* all ports. May happen when using a MOFED release older than
|
||||
* 3.0 with a Linux kernel >= 3.15.
|
||||
*/
|
||||
if (dev_port == dev_port_prev)
|
||||
goto try_dev_id;
|
||||
dev_port_prev = dev_port;
|
||||
if (dev_port == (priv->port - 1u))
|
||||
snprintf(match, sizeof(match), "%s", name);
|
||||
}
|
||||
closedir(dir);
|
||||
if (match[0] == '\0') {
|
||||
rte_errno = ENODEV;
|
||||
return -rte_errno;
|
||||
}
|
||||
strncpy(*ifname, match, sizeof(*ifname));
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Read from sysfs entry.
|
||||
*
|
||||
* @param[in] priv
|
||||
* Pointer to private structure.
|
||||
* @param[in] entry
|
||||
* Entry name relative to sysfs path.
|
||||
* @param[out] buf
|
||||
* Data output buffer.
|
||||
* @param size
|
||||
* Buffer size.
|
||||
*
|
||||
* @return
|
||||
* Number of bytes read on success, negative errno value otherwise and
|
||||
* rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_sysfs_read(const struct priv *priv, const char *entry,
|
||||
char *buf, size_t size)
|
||||
{
|
||||
char ifname[IF_NAMESIZE];
|
||||
FILE *file;
|
||||
int ret;
|
||||
|
||||
ret = mlx4_get_ifname(priv, &ifname);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
MKSTR(path, "%s/device/net/%s/%s", priv->ctx->device->ibdev_path,
|
||||
ifname, entry);
|
||||
|
||||
file = fopen(path, "rb");
|
||||
if (file == NULL) {
|
||||
rte_errno = errno;
|
||||
return -rte_errno;
|
||||
}
|
||||
ret = fread(buf, 1, size, file);
|
||||
if ((size_t)ret < size && ferror(file)) {
|
||||
rte_errno = EIO;
|
||||
ret = -rte_errno;
|
||||
} else {
|
||||
ret = size;
|
||||
}
|
||||
fclose(file);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* Write to sysfs entry.
|
||||
*
|
||||
* @param[in] priv
|
||||
* Pointer to private structure.
|
||||
* @param[in] entry
|
||||
* Entry name relative to sysfs path.
|
||||
* @param[in] buf
|
||||
* Data buffer.
|
||||
* @param size
|
||||
* Buffer size.
|
||||
*
|
||||
* @return
|
||||
* Number of bytes written on success, negative errno value otherwise and
|
||||
* rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_sysfs_write(const struct priv *priv, const char *entry,
|
||||
char *buf, size_t size)
|
||||
{
|
||||
char ifname[IF_NAMESIZE];
|
||||
FILE *file;
|
||||
int ret;
|
||||
|
||||
ret = mlx4_get_ifname(priv, &ifname);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
MKSTR(path, "%s/device/net/%s/%s", priv->ctx->device->ibdev_path,
|
||||
ifname, entry);
|
||||
|
||||
file = fopen(path, "wb");
|
||||
if (file == NULL) {
|
||||
rte_errno = errno;
|
||||
return -rte_errno;
|
||||
}
|
||||
ret = fwrite(buf, 1, size, file);
|
||||
if ((size_t)ret < size || ferror(file)) {
|
||||
rte_errno = EIO;
|
||||
ret = -rte_errno;
|
||||
} else {
|
||||
ret = size;
|
||||
}
|
||||
fclose(file);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get unsigned long sysfs property.
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to private structure.
|
||||
* @param[in] name
|
||||
* Entry name relative to sysfs path.
|
||||
* @param[out] value
|
||||
* Value output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_get_sysfs_ulong(struct priv *priv, const char *name, unsigned long *value)
|
||||
{
|
||||
int ret;
|
||||
unsigned long value_ret;
|
||||
char value_str[32];
|
||||
|
||||
ret = mlx4_sysfs_read(priv, name, value_str, (sizeof(value_str) - 1));
|
||||
if (ret < 0) {
|
||||
DEBUG("cannot read %s value from sysfs: %s",
|
||||
name, strerror(rte_errno));
|
||||
return ret;
|
||||
}
|
||||
value_str[ret] = '\0';
|
||||
errno = 0;
|
||||
value_ret = strtoul(value_str, NULL, 0);
|
||||
if (errno) {
|
||||
rte_errno = errno;
|
||||
DEBUG("invalid %s value `%s': %s", name, value_str,
|
||||
strerror(rte_errno));
|
||||
return -rte_errno;
|
||||
}
|
||||
*value = value_ret;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set unsigned long sysfs property.
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to private structure.
|
||||
* @param[in] name
|
||||
* Entry name relative to sysfs path.
|
||||
* @param value
|
||||
* Value to set.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_set_sysfs_ulong(struct priv *priv, const char *name, unsigned long value)
|
||||
{
|
||||
int ret;
|
||||
MKSTR(value_str, "%lu", value);
|
||||
|
||||
ret = mlx4_sysfs_write(priv, name, value_str, (sizeof(value_str) - 1));
|
||||
if (ret < 0) {
|
||||
DEBUG("cannot write %s `%s' (%lu) to sysfs: %s",
|
||||
name, value_str, value, strerror(rte_errno));
|
||||
return ret;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform ifreq ioctl() on associated Ethernet device.
|
||||
*
|
||||
* @param[in] priv
|
||||
* Pointer to private structure.
|
||||
* @param req
|
||||
* Request number to pass to ioctl().
|
||||
* @param[out] ifr
|
||||
* Interface request structure output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_ifreq(const struct priv *priv, int req, struct ifreq *ifr)
|
||||
{
|
||||
int sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
|
||||
int ret;
|
||||
|
||||
if (sock == -1) {
|
||||
rte_errno = errno;
|
||||
return -rte_errno;
|
||||
}
|
||||
ret = mlx4_get_ifname(priv, &ifr->ifr_name);
|
||||
if (!ret && ioctl(sock, req, ifr) == -1) {
|
||||
rte_errno = errno;
|
||||
ret = -rte_errno;
|
||||
}
|
||||
close(sock);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get MAC address by querying netdevice.
|
||||
*
|
||||
* @param[in] priv
|
||||
* Pointer to private structure.
|
||||
* @param[out] mac
|
||||
* MAC address output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
int
|
||||
mlx4_get_mac(struct priv *priv, uint8_t (*mac)[ETHER_ADDR_LEN])
|
||||
{
|
||||
struct ifreq request;
|
||||
int ret = mlx4_ifreq(priv, SIOCGIFHWADDR, &request);
|
||||
|
||||
if (ret)
|
||||
return ret;
|
||||
memcpy(mac, request.ifr_hwaddr.sa_data, ETHER_ADDR_LEN);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get device MTU.
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to private structure.
|
||||
* @param[out] mtu
|
||||
* MTU value output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
int
|
||||
mlx4_mtu_get(struct priv *priv, uint16_t *mtu)
|
||||
{
|
||||
unsigned long ulong_mtu = 0;
|
||||
int ret = mlx4_get_sysfs_ulong(priv, "mtu", &ulong_mtu);
|
||||
|
||||
if (ret)
|
||||
return ret;
|
||||
*mtu = ulong_mtu;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to change the MTU.
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param mtu
|
||||
* MTU value to set.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
int
|
||||
mlx4_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
uint16_t new_mtu;
|
||||
int ret = mlx4_set_sysfs_ulong(priv, "mtu", mtu);
|
||||
|
||||
if (ret)
|
||||
return ret;
|
||||
ret = mlx4_mtu_get(priv, &new_mtu);
|
||||
if (ret)
|
||||
return ret;
|
||||
if (new_mtu == mtu) {
|
||||
priv->mtu = mtu;
|
||||
return 0;
|
||||
}
|
||||
rte_errno = EINVAL;
|
||||
return -rte_errno;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set device flags.
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to private structure.
|
||||
* @param keep
|
||||
* Bitmask for flags that must remain untouched.
|
||||
* @param flags
|
||||
* Bitmask for flags to modify.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_set_flags(struct priv *priv, unsigned int keep, unsigned int flags)
|
||||
{
|
||||
unsigned long tmp = 0;
|
||||
int ret = mlx4_get_sysfs_ulong(priv, "flags", &tmp);
|
||||
|
||||
if (ret)
|
||||
return ret;
|
||||
tmp &= keep;
|
||||
tmp |= (flags & (~keep));
|
||||
return mlx4_set_sysfs_ulong(priv, "flags", tmp);
|
||||
}
|
||||
|
||||
/**
|
||||
* Change the link state (UP / DOWN).
|
||||
*
|
||||
* @param priv
|
||||
* Pointer to Ethernet device private data.
|
||||
* @param up
|
||||
* Nonzero for link up, otherwise link down.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
static int
|
||||
mlx4_dev_set_link(struct priv *priv, int up)
|
||||
{
|
||||
struct rte_eth_dev *dev = priv->dev;
|
||||
int err;
|
||||
|
||||
if (up) {
|
||||
err = mlx4_set_flags(priv, ~IFF_UP, IFF_UP);
|
||||
if (err)
|
||||
return err;
|
||||
dev->rx_pkt_burst = mlx4_rx_burst;
|
||||
} else {
|
||||
err = mlx4_set_flags(priv, ~IFF_UP, ~IFF_UP);
|
||||
if (err)
|
||||
return err;
|
||||
dev->rx_pkt_burst = mlx4_rx_burst_removed;
|
||||
dev->tx_pkt_burst = mlx4_tx_burst_removed;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to bring the link DOWN.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
int
|
||||
mlx4_dev_set_link_down(struct rte_eth_dev *dev)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
|
||||
return mlx4_dev_set_link(priv, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to bring the link UP.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
int
|
||||
mlx4_dev_set_link_up(struct rte_eth_dev *dev)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
|
||||
return mlx4_dev_set_link(priv, 1);
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to get information about the device.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param[out] info
|
||||
* Info structure output buffer.
|
||||
*/
|
||||
void
|
||||
mlx4_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
unsigned int max;
|
||||
char ifname[IF_NAMESIZE];
|
||||
|
||||
info->pci_dev = RTE_ETH_DEV_TO_PCI(dev);
|
||||
if (priv == NULL)
|
||||
return;
|
||||
/* FIXME: we should ask the device for these values. */
|
||||
info->min_rx_bufsize = 32;
|
||||
info->max_rx_pktlen = 65536;
|
||||
/*
|
||||
* Since we need one CQ per QP, the limit is the minimum number
|
||||
* between the two values.
|
||||
*/
|
||||
max = ((priv->device_attr.max_cq > priv->device_attr.max_qp) ?
|
||||
priv->device_attr.max_qp : priv->device_attr.max_cq);
|
||||
/* If max >= 65535 then max = 0, max_rx_queues is uint16_t. */
|
||||
if (max >= 65535)
|
||||
max = 65535;
|
||||
info->max_rx_queues = max;
|
||||
info->max_tx_queues = max;
|
||||
/* Last array entry is reserved for broadcast. */
|
||||
info->max_mac_addrs = 1;
|
||||
info->rx_offload_capa = 0;
|
||||
info->tx_offload_capa = 0;
|
||||
if (mlx4_get_ifname(priv, &ifname) == 0)
|
||||
info->if_index = if_nametoindex(ifname);
|
||||
info->speed_capa =
|
||||
ETH_LINK_SPEED_1G |
|
||||
ETH_LINK_SPEED_10G |
|
||||
ETH_LINK_SPEED_20G |
|
||||
ETH_LINK_SPEED_40G |
|
||||
ETH_LINK_SPEED_56G;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to get device statistics.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param[out] stats
|
||||
* Stats structure output buffer.
|
||||
*/
|
||||
void
|
||||
mlx4_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
struct rte_eth_stats tmp;
|
||||
unsigned int i;
|
||||
unsigned int idx;
|
||||
|
||||
if (priv == NULL)
|
||||
return;
|
||||
memset(&tmp, 0, sizeof(tmp));
|
||||
/* Add software counters. */
|
||||
for (i = 0; (i != priv->rxqs_n); ++i) {
|
||||
struct rxq *rxq = (*priv->rxqs)[i];
|
||||
|
||||
if (rxq == NULL)
|
||||
continue;
|
||||
idx = rxq->stats.idx;
|
||||
if (idx < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
|
||||
tmp.q_ipackets[idx] += rxq->stats.ipackets;
|
||||
tmp.q_ibytes[idx] += rxq->stats.ibytes;
|
||||
tmp.q_errors[idx] += (rxq->stats.idropped +
|
||||
rxq->stats.rx_nombuf);
|
||||
}
|
||||
tmp.ipackets += rxq->stats.ipackets;
|
||||
tmp.ibytes += rxq->stats.ibytes;
|
||||
tmp.ierrors += rxq->stats.idropped;
|
||||
tmp.rx_nombuf += rxq->stats.rx_nombuf;
|
||||
}
|
||||
for (i = 0; (i != priv->txqs_n); ++i) {
|
||||
struct txq *txq = (*priv->txqs)[i];
|
||||
|
||||
if (txq == NULL)
|
||||
continue;
|
||||
idx = txq->stats.idx;
|
||||
if (idx < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
|
||||
tmp.q_opackets[idx] += txq->stats.opackets;
|
||||
tmp.q_obytes[idx] += txq->stats.obytes;
|
||||
tmp.q_errors[idx] += txq->stats.odropped;
|
||||
}
|
||||
tmp.opackets += txq->stats.opackets;
|
||||
tmp.obytes += txq->stats.obytes;
|
||||
tmp.oerrors += txq->stats.odropped;
|
||||
}
|
||||
*stats = tmp;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to clear device statistics.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
*/
|
||||
void
|
||||
mlx4_stats_reset(struct rte_eth_dev *dev)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
unsigned int i;
|
||||
unsigned int idx;
|
||||
|
||||
if (priv == NULL)
|
||||
return;
|
||||
for (i = 0; (i != priv->rxqs_n); ++i) {
|
||||
if ((*priv->rxqs)[i] == NULL)
|
||||
continue;
|
||||
idx = (*priv->rxqs)[i]->stats.idx;
|
||||
(*priv->rxqs)[i]->stats =
|
||||
(struct mlx4_rxq_stats){ .idx = idx };
|
||||
}
|
||||
for (i = 0; (i != priv->txqs_n); ++i) {
|
||||
if ((*priv->txqs)[i] == NULL)
|
||||
continue;
|
||||
idx = (*priv->txqs)[i]->stats.idx;
|
||||
(*priv->txqs)[i]->stats =
|
||||
(struct mlx4_txq_stats){ .idx = idx };
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to retrieve physical link information.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param wait_to_complete
|
||||
* Wait for request completion (ignored).
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
int
|
||||
mlx4_link_update(struct rte_eth_dev *dev, int wait_to_complete)
|
||||
{
|
||||
const struct priv *priv = dev->data->dev_private;
|
||||
struct ethtool_cmd edata = {
|
||||
.cmd = ETHTOOL_GSET,
|
||||
};
|
||||
struct ifreq ifr;
|
||||
struct rte_eth_link dev_link;
|
||||
int link_speed = 0;
|
||||
|
||||
if (priv == NULL) {
|
||||
rte_errno = EINVAL;
|
||||
return -rte_errno;
|
||||
}
|
||||
(void)wait_to_complete;
|
||||
if (mlx4_ifreq(priv, SIOCGIFFLAGS, &ifr)) {
|
||||
WARN("ioctl(SIOCGIFFLAGS) failed: %s", strerror(rte_errno));
|
||||
return -rte_errno;
|
||||
}
|
||||
memset(&dev_link, 0, sizeof(dev_link));
|
||||
dev_link.link_status = ((ifr.ifr_flags & IFF_UP) &&
|
||||
(ifr.ifr_flags & IFF_RUNNING));
|
||||
ifr.ifr_data = (void *)&edata;
|
||||
if (mlx4_ifreq(priv, SIOCETHTOOL, &ifr)) {
|
||||
WARN("ioctl(SIOCETHTOOL, ETHTOOL_GSET) failed: %s",
|
||||
strerror(rte_errno));
|
||||
return -rte_errno;
|
||||
}
|
||||
link_speed = ethtool_cmd_speed(&edata);
|
||||
if (link_speed == -1)
|
||||
dev_link.link_speed = 0;
|
||||
else
|
||||
dev_link.link_speed = link_speed;
|
||||
dev_link.link_duplex = ((edata.duplex == DUPLEX_HALF) ?
|
||||
ETH_LINK_HALF_DUPLEX : ETH_LINK_FULL_DUPLEX);
|
||||
dev_link.link_autoneg = !(dev->data->dev_conf.link_speeds &
|
||||
ETH_LINK_SPEED_FIXED);
|
||||
dev->data->dev_link = dev_link;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to get flow control status.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param[out] fc_conf
|
||||
* Flow control output buffer.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
int
|
||||
mlx4_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
struct ifreq ifr;
|
||||
struct ethtool_pauseparam ethpause = {
|
||||
.cmd = ETHTOOL_GPAUSEPARAM,
|
||||
};
|
||||
int ret;
|
||||
|
||||
ifr.ifr_data = (void *)ðpause;
|
||||
if (mlx4_ifreq(priv, SIOCETHTOOL, &ifr)) {
|
||||
ret = rte_errno;
|
||||
WARN("ioctl(SIOCETHTOOL, ETHTOOL_GPAUSEPARAM)"
|
||||
" failed: %s",
|
||||
strerror(rte_errno));
|
||||
goto out;
|
||||
}
|
||||
fc_conf->autoneg = ethpause.autoneg;
|
||||
if (ethpause.rx_pause && ethpause.tx_pause)
|
||||
fc_conf->mode = RTE_FC_FULL;
|
||||
else if (ethpause.rx_pause)
|
||||
fc_conf->mode = RTE_FC_RX_PAUSE;
|
||||
else if (ethpause.tx_pause)
|
||||
fc_conf->mode = RTE_FC_TX_PAUSE;
|
||||
else
|
||||
fc_conf->mode = RTE_FC_NONE;
|
||||
ret = 0;
|
||||
out:
|
||||
assert(ret >= 0);
|
||||
return -ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* DPDK callback to modify flow control parameters.
|
||||
*
|
||||
* @param dev
|
||||
* Pointer to Ethernet device structure.
|
||||
* @param[in] fc_conf
|
||||
* Flow control parameters.
|
||||
*
|
||||
* @return
|
||||
* 0 on success, negative errno value otherwise and rte_errno is set.
|
||||
*/
|
||||
int
|
||||
mlx4_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
|
||||
{
|
||||
struct priv *priv = dev->data->dev_private;
|
||||
struct ifreq ifr;
|
||||
struct ethtool_pauseparam ethpause = {
|
||||
.cmd = ETHTOOL_SPAUSEPARAM,
|
||||
};
|
||||
int ret;
|
||||
|
||||
ifr.ifr_data = (void *)ðpause;
|
||||
ethpause.autoneg = fc_conf->autoneg;
|
||||
if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
|
||||
(fc_conf->mode & RTE_FC_RX_PAUSE))
|
||||
ethpause.rx_pause = 1;
|
||||
else
|
||||
ethpause.rx_pause = 0;
|
||||
if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
|
||||
(fc_conf->mode & RTE_FC_TX_PAUSE))
|
||||
ethpause.tx_pause = 1;
|
||||
else
|
||||
ethpause.tx_pause = 0;
|
||||
if (mlx4_ifreq(priv, SIOCETHTOOL, &ifr)) {
|
||||
ret = rte_errno;
|
||||
WARN("ioctl(SIOCETHTOOL, ETHTOOL_SPAUSEPARAM)"
|
||||
" failed: %s",
|
||||
strerror(rte_errno));
|
||||
goto out;
|
||||
}
|
||||
ret = 0;
|
||||
out:
|
||||
assert(ret >= 0);
|
||||
return -ret;
|
||||
}
|
@ -34,6 +34,9 @@
|
||||
#ifndef MLX4_UTILS_H_
|
||||
#define MLX4_UTILS_H_
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <rte_common.h>
|
||||
#include <rte_log.h>
|
||||
|
||||
@ -95,6 +98,12 @@ pmd_drv_log_basename(const char *s)
|
||||
#define WARN(...) PMD_DRV_LOG(WARNING, __VA_ARGS__)
|
||||
#define ERROR(...) PMD_DRV_LOG(ERR, __VA_ARGS__)
|
||||
|
||||
/* Allocate a buffer on the stack and fill it with a printf format string. */
|
||||
#define MKSTR(name, ...) \
|
||||
char name[snprintf(NULL, 0, __VA_ARGS__) + 1]; \
|
||||
\
|
||||
snprintf(name, sizeof(name), __VA_ARGS__)
|
||||
|
||||
/* mlx4_utils.c */
|
||||
|
||||
int mlx4_fd_set_non_blocking(int fd);
|
||||
|
Loading…
Reference in New Issue
Block a user