#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include "rte_ethtool.h"
#define PKTPOOL_SIZE 512
#define PKTPOOL_CACHE 32
int
rte_ethtool_get_drvinfo(uint8_t port_id, struct ethtool_drvinfo *drvinfo)
{
int n;
if (drvinfo == NULL)
return -EINVAL;
if (!rte_eth_dev_is_valid_port(port_id))
return -ENODEV;
memset(&dev_info, 0, sizeof(dev_info));
snprintf(drvinfo->driver, sizeof(drvinfo->driver), "%s",
snprintf(drvinfo->version, sizeof(drvinfo->version), "%s",
snprintf(drvinfo->bus_info, sizeof(drvinfo->bus_info),
"%04x:%02x:%02x.%x",
n = rte_eth_dev_get_reg_length(port_id);
if (n > 0)
drvinfo->regdump_len = n;
else
drvinfo->regdump_len = 0;
if (n > 0)
drvinfo->eedump_len = n;
else
drvinfo->eedump_len = 0;
drvinfo->n_stats =
sizeof(
struct rte_eth_stats) / sizeof(uint64_t);
drvinfo->testinfo_len = 0;
return 0;
}
int
rte_ethtool_get_regs_len(uint8_t port_id)
{
int count_regs;
count_regs = rte_eth_dev_get_reg_length(port_id);
if (count_regs > 0)
return count_regs * sizeof(uint32_t);
return count_regs;
}
int
rte_ethtool_get_regs(uint8_t port_id, struct ethtool_regs *regs, void *data)
{
struct rte_dev_reg_info reg_info;
int status;
if (regs == NULL || data == NULL)
return -EINVAL;
reg_info.data = data;
reg_info.length = 0;
if (status)
return status;
regs->version = reg_info.version;
return 0;
}
int
rte_ethtool_get_link(uint8_t port_id)
{
if (!rte_eth_dev_is_valid_port(port_id))
return -ENODEV;
return link.link_status;
}
int
rte_ethtool_get_eeprom_len(uint8_t port_id)
{
}
int
rte_ethtool_get_eeprom(uint8_t port_id, struct ethtool_eeprom *eeprom,
void *words)
{
struct rte_dev_eeprom_info eeprom_info;
int status;
if (eeprom == NULL || words == NULL)
return -EINVAL;
eeprom_info.offset = eeprom->offset;
eeprom_info.length = eeprom->len;
eeprom_info.data = words;
if (status)
return status;
eeprom->magic = eeprom_info.magic;
return 0;
}
int
rte_ethtool_set_eeprom(uint8_t port_id, struct ethtool_eeprom *eeprom,
void *words)
{
struct rte_dev_eeprom_info eeprom_info;
int status;
if (eeprom == NULL || words == NULL || eeprom->offset >= eeprom->len)
return -EINVAL;
eeprom_info.offset = eeprom->offset;
eeprom_info.length = eeprom->len;
eeprom_info.data = words;
if (status)
return status;
eeprom->magic = eeprom_info.magic;
return 0;
}
int
rte_ethtool_get_pauseparam(uint8_t port_id,
struct ethtool_pauseparam *pause_param)
{
int status;
if (pause_param == NULL)
return -EINVAL;
if (status)
return status;
pause_param->tx_pause = 0;
pause_param->rx_pause = 0;
switch (fc_conf.mode) {
pause_param->rx_pause = 1;
break;
pause_param->tx_pause = 1;
break;
pause_param->rx_pause = 1;
pause_param->tx_pause = 1;
default:
break;
}
pause_param->autoneg = (uint32_t)fc_conf.autoneg;
return 0;
}
int
rte_ethtool_set_pauseparam(uint8_t port_id,
struct ethtool_pauseparam *pause_param)
{
int status;
if (pause_param == NULL)
return -EINVAL;
if (status)
return status;
fc_conf.autoneg = (uint8_t)pause_param->autoneg;
if (pause_param->tx_pause) {
if (pause_param->rx_pause)
else
} else {
if (pause_param->rx_pause)
else
}
if (status)
return status;
return 0;
}
int
rte_ethtool_net_open(uint8_t port_id)
{
}
int
rte_ethtool_net_stop(uint8_t port_id)
{
if (!rte_eth_dev_is_valid_port(port_id))
return -ENODEV;
return 0;
}
int
rte_ethtool_net_get_mac_addr(uint8_t port_id,
struct ether_addr *addr)
{
if (!rte_eth_dev_is_valid_port(port_id))
return -ENODEV;
if (addr == NULL)
return -EINVAL;
return 0;
}
int
rte_ethtool_net_set_mac_addr(uint8_t port_id,
struct ether_addr *addr)
{
if (addr == NULL)
return -EINVAL;
}
int
{
if (addr == NULL)
return -EINVAL;
}
int
rte_ethtool_net_change_mtu(uint8_t port_id, int mtu)
{
if (mtu < 0 || mtu > UINT16_MAX)
return -EINVAL;
}
int
rte_ethtool_net_get_stats64(uint8_t port_id,
struct rte_eth_stats *stats)
{
if (stats == NULL)
return -EINVAL;
}
int
rte_ethtool_net_vlan_rx_add_vid(uint8_t port_id, uint16_t vid)
{
}
int
rte_ethtool_net_vlan_rx_kill_vid(uint8_t port_id, uint16_t vid)
{
}
int
rte_ethtool_net_set_rx_mode(uint8_t port_id)
{
uint16_t num_vfs;
uint16_t vf;
memset(&dev_info, 0, sizeof(dev_info));
num_vfs = dev_info.max_vfs;
for (vf = 0; vf < num_vfs; vf++)
return 0;
}
int
rte_ethtool_get_ringparam(uint8_t port_id,
struct ethtool_ringparam *ring_param)
{
int stat;
if (ring_param == NULL)
return -EINVAL;
if (stat != 0)
return stat;
if (stat != 0)
return stat;
memset(ring_param, 0, sizeof(*ring_param));
ring_param->rx_pending = rx_qinfo.nb_desc;
ring_param->rx_max_pending = dev_info.rx_desc_lim.nb_max;
ring_param->tx_pending = tx_qinfo.nb_desc;
ring_param->tx_max_pending = dev_info.tx_desc_lim.nb_max;
return 0;
}
int
rte_ethtool_set_ringparam(uint8_t port_id,
struct ethtool_ringparam *ring_param)
{
int stat;
if (ring_param == NULL)
return -EINVAL;
if (stat != 0)
return stat;
if (stat != 0)
return stat;
if (stat != 0)
return stat;
}