#include <stdio.h>
#include <string.h>
#include <stdint.h>
#ifdef RTE_NET_IXGBE
#endif
#include "rte_ethtool.h"
#define PKTPOOL_SIZE 512
#define PKTPOOL_CACHE 32
int
rte_ethtool_get_drvinfo(uint16_t port_id, struct ethtool_drvinfo *drvinfo)
{
struct rte_dev_reg_info reg_info;
int n;
int ret;
if (drvinfo == NULL)
return -EINVAL;
RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
sizeof(drvinfo->fw_version));
if (ret < 0)
printf("firmware version get error: (%s)\n", strerror(-ret));
else if (ret > 0)
printf("Insufficient fw version buffer size, "
"the minimum size should be %d\n", ret);
if (ret != 0) {
printf("Error during getting device (port %u) info: %s\n",
port_id, strerror(-ret));
return ret;
}
sizeof(drvinfo->driver));
strlcpy(drvinfo->version,
rte_version(),
sizeof(drvinfo->version));
sizeof(drvinfo->bus_info));
memset(®_info, 0, sizeof(reg_info));
n = reg_info.length;
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(uint16_t port_id)
{
struct rte_dev_reg_info reg_info;
int ret;
memset(®_info, 0, sizeof(reg_info));
if (ret)
return ret;
return reg_info.length * reg_info.width;
}
int
rte_ethtool_get_regs(uint16_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(uint16_t port_id)
{
int ret;
RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
if (ret < 0)
return ret;
}
int
rte_ethtool_get_eeprom_len(uint16_t port_id)
{
}
int
rte_ethtool_get_eeprom(uint16_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(uint16_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_module_info(uint16_t port_id, uint32_t *modinfo)
{
}
int
rte_ethtool_get_module_eeprom(uint16_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;
return 0;
}
int
rte_ethtool_get_pauseparam(uint16_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;
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(uint16_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(uint16_t port_id)
{
int ret;
if (ret != 0)
return ret;
}
int
rte_ethtool_net_stop(uint16_t port_id)
{
}
int
rte_ethtool_net_get_mac_addr(uint16_t port_id,
struct rte_ether_addr *addr)
{
int ret;
RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
if (addr == NULL)
return -EINVAL;
if (ret != 0)
return ret;
return 0;
}
int
rte_ethtool_net_set_mac_addr(uint16_t port_id,
struct rte_ether_addr *addr)
{
if (addr == NULL)
return -EINVAL;
}
int
rte_ethtool_net_validate_addr(uint16_t port_id
__rte_unused,
{
if (addr == NULL)
return -EINVAL;
}
int
rte_ethtool_net_change_mtu(uint16_t port_id, int mtu)
{
if (mtu < 0 || mtu > UINT16_MAX)
return -EINVAL;
}
int
rte_ethtool_net_get_stats64(uint16_t port_id,
struct rte_eth_stats *stats)
{
if (stats == NULL)
return -EINVAL;
}
int
rte_ethtool_net_vlan_rx_add_vid(uint16_t port_id, uint16_t vid)
{
}
int
rte_ethtool_net_vlan_rx_kill_vid(uint16_t port_id, uint16_t vid)
{
}
int
rte_ethtool_net_set_rx_mode(uint16_t port_id)
{
uint16_t num_vfs;
uint16_t vf;
int ret;
if (ret != 0)
return ret;
for (vf = 0; vf < num_vfs; vf++) {
#ifdef RTE_NET_IXGBE
#endif
}
if (ret != 0)
return ret;
return 0;
}
int
rte_ethtool_get_ringparam(uint16_t port_id,
struct ethtool_ringparam *ring_param)
{
int stat;
int ret;
if (ring_param == NULL)
return -EINVAL;
if (ret != 0)
return ret;
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->tx_pending = tx_qinfo.
nb_desc;
return 0;
}
int
rte_ethtool_set_ringparam(uint16_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;
if (stat != 0)
return stat;
}