1bda68ab9SRemy Horton /*- 2bda68ab9SRemy Horton * BSD LICENSE 3bda68ab9SRemy Horton * 4bda68ab9SRemy Horton * Copyright(c) 2010-2015 Intel Corporation. All rights reserved. 5bda68ab9SRemy Horton * All rights reserved. 6bda68ab9SRemy Horton * 7bda68ab9SRemy Horton * Redistribution and use in source and binary forms, with or without 8bda68ab9SRemy Horton * modification, are permitted provided that the following conditions 9bda68ab9SRemy Horton * are met: 10bda68ab9SRemy Horton * 11bda68ab9SRemy Horton * * Redistributions of source code must retain the above copyright 12bda68ab9SRemy Horton * notice, this list of conditions and the following disclaimer. 13bda68ab9SRemy Horton * * Redistributions in binary form must reproduce the above copyright 14bda68ab9SRemy Horton * notice, this list of conditions and the following disclaimer in 15bda68ab9SRemy Horton * the documentation and/or other materials provided with the 16bda68ab9SRemy Horton * distribution. 17bda68ab9SRemy Horton * * Neither the name of Intel Corporation nor the names of its 18bda68ab9SRemy Horton * contributors may be used to endorse or promote products derived 19bda68ab9SRemy Horton * from this software without specific prior written permission. 20bda68ab9SRemy Horton * 21bda68ab9SRemy Horton * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22bda68ab9SRemy Horton * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23bda68ab9SRemy Horton * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 24bda68ab9SRemy Horton * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 25bda68ab9SRemy Horton * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 26bda68ab9SRemy Horton * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 27bda68ab9SRemy Horton * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 28bda68ab9SRemy Horton * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 29bda68ab9SRemy Horton * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 30bda68ab9SRemy Horton * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 31bda68ab9SRemy Horton * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32bda68ab9SRemy Horton */ 33bda68ab9SRemy Horton #include <stdio.h> 34bda68ab9SRemy Horton #include <string.h> 35bda68ab9SRemy Horton #include <stdint.h> 36bda68ab9SRemy Horton #include <rte_version.h> 37bda68ab9SRemy Horton #include <rte_ethdev.h> 38bda68ab9SRemy Horton #include <rte_ether.h> 39bda68ab9SRemy Horton #include "rte_ethtool.h" 40bda68ab9SRemy Horton 41bda68ab9SRemy Horton #define PKTPOOL_SIZE 512 42bda68ab9SRemy Horton #define PKTPOOL_CACHE 32 43bda68ab9SRemy Horton 44bda68ab9SRemy Horton 45bda68ab9SRemy Horton int 46bda68ab9SRemy Horton rte_ethtool_get_drvinfo(uint8_t port_id, struct ethtool_drvinfo *drvinfo) 47bda68ab9SRemy Horton { 48bda68ab9SRemy Horton struct rte_eth_dev_info dev_info; 49001a1c0fSZyta Szpak struct rte_dev_reg_info reg_info; 50bda68ab9SRemy Horton int n; 51*1e07b4ecSQiming Yang int ret; 52bda68ab9SRemy Horton 53bda68ab9SRemy Horton if (drvinfo == NULL) 54bda68ab9SRemy Horton return -EINVAL; 55bda68ab9SRemy Horton 561414dabcSMauricio Vasquez B RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 57bda68ab9SRemy Horton 58*1e07b4ecSQiming Yang ret = rte_eth_dev_fw_version_get(port_id, drvinfo->fw_version, 59*1e07b4ecSQiming Yang sizeof(drvinfo->fw_version)); 60*1e07b4ecSQiming Yang if (ret < 0) 61*1e07b4ecSQiming Yang printf("firmware version get error: (%s)\n", strerror(-ret)); 62*1e07b4ecSQiming Yang else if (ret > 0) 63*1e07b4ecSQiming Yang printf("Insufficient fw version buffer size, " 64*1e07b4ecSQiming Yang "the minimun size should be %d\n", ret); 65*1e07b4ecSQiming Yang 66bda68ab9SRemy Horton memset(&dev_info, 0, sizeof(dev_info)); 67bda68ab9SRemy Horton rte_eth_dev_info_get(port_id, &dev_info); 68bda68ab9SRemy Horton 69bda68ab9SRemy Horton snprintf(drvinfo->driver, sizeof(drvinfo->driver), "%s", 70bda68ab9SRemy Horton dev_info.driver_name); 71bda68ab9SRemy Horton snprintf(drvinfo->version, sizeof(drvinfo->version), "%s", 72bda68ab9SRemy Horton rte_version()); 736c66be9aSRemy Horton if (dev_info.pci_dev) 74bda68ab9SRemy Horton snprintf(drvinfo->bus_info, sizeof(drvinfo->bus_info), 75bda68ab9SRemy Horton "%04x:%02x:%02x.%x", 766c66be9aSRemy Horton dev_info.pci_dev->addr.domain, 776c66be9aSRemy Horton dev_info.pci_dev->addr.bus, 786c66be9aSRemy Horton dev_info.pci_dev->addr.devid, 796c66be9aSRemy Horton dev_info.pci_dev->addr.function); 806c66be9aSRemy Horton else 816c66be9aSRemy Horton snprintf(drvinfo->bus_info, sizeof(drvinfo->bus_info), "N/A"); 82bda68ab9SRemy Horton 83001a1c0fSZyta Szpak memset(®_info, 0, sizeof(reg_info)); 84001a1c0fSZyta Szpak rte_eth_dev_get_reg_info(port_id, ®_info); 85001a1c0fSZyta Szpak n = reg_info.length; 86bda68ab9SRemy Horton if (n > 0) 87bda68ab9SRemy Horton drvinfo->regdump_len = n; 88bda68ab9SRemy Horton else 89bda68ab9SRemy Horton drvinfo->regdump_len = 0; 90bda68ab9SRemy Horton 91bda68ab9SRemy Horton n = rte_eth_dev_get_eeprom_length(port_id); 92bda68ab9SRemy Horton if (n > 0) 93bda68ab9SRemy Horton drvinfo->eedump_len = n; 94bda68ab9SRemy Horton else 95bda68ab9SRemy Horton drvinfo->eedump_len = 0; 96bda68ab9SRemy Horton 97bda68ab9SRemy Horton drvinfo->n_stats = sizeof(struct rte_eth_stats) / sizeof(uint64_t); 98bda68ab9SRemy Horton drvinfo->testinfo_len = 0; 99bda68ab9SRemy Horton 100bda68ab9SRemy Horton return 0; 101bda68ab9SRemy Horton } 102bda68ab9SRemy Horton 103bda68ab9SRemy Horton int 104bda68ab9SRemy Horton rte_ethtool_get_regs_len(uint8_t port_id) 105bda68ab9SRemy Horton { 106001a1c0fSZyta Szpak struct rte_dev_reg_info reg_info; 107001a1c0fSZyta Szpak int ret; 108bda68ab9SRemy Horton 109001a1c0fSZyta Szpak memset(®_info, 0, sizeof(reg_info)); 110001a1c0fSZyta Szpak 111001a1c0fSZyta Szpak ret = rte_eth_dev_get_reg_info(port_id, ®_info); 112001a1c0fSZyta Szpak if (ret) 113001a1c0fSZyta Szpak return ret; 114001a1c0fSZyta Szpak 115001a1c0fSZyta Szpak return reg_info.length * reg_info.width; 116bda68ab9SRemy Horton } 117bda68ab9SRemy Horton 118bda68ab9SRemy Horton int 119bda68ab9SRemy Horton rte_ethtool_get_regs(uint8_t port_id, struct ethtool_regs *regs, void *data) 120bda68ab9SRemy Horton { 121bda68ab9SRemy Horton struct rte_dev_reg_info reg_info; 122bda68ab9SRemy Horton int status; 123bda68ab9SRemy Horton 124bda68ab9SRemy Horton if (regs == NULL || data == NULL) 125bda68ab9SRemy Horton return -EINVAL; 126bda68ab9SRemy Horton 127bda68ab9SRemy Horton reg_info.data = data; 128bda68ab9SRemy Horton reg_info.length = 0; 129bda68ab9SRemy Horton 130bda68ab9SRemy Horton status = rte_eth_dev_get_reg_info(port_id, ®_info); 131bda68ab9SRemy Horton if (status) 132bda68ab9SRemy Horton return status; 133bda68ab9SRemy Horton regs->version = reg_info.version; 134bda68ab9SRemy Horton 135bda68ab9SRemy Horton return 0; 136bda68ab9SRemy Horton } 137bda68ab9SRemy Horton 138bda68ab9SRemy Horton int 139bda68ab9SRemy Horton rte_ethtool_get_link(uint8_t port_id) 140bda68ab9SRemy Horton { 141bda68ab9SRemy Horton struct rte_eth_link link; 142bda68ab9SRemy Horton 1431414dabcSMauricio Vasquez B RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 144bda68ab9SRemy Horton rte_eth_link_get(port_id, &link); 145bda68ab9SRemy Horton return link.link_status; 146bda68ab9SRemy Horton } 147bda68ab9SRemy Horton 148bda68ab9SRemy Horton int 149bda68ab9SRemy Horton rte_ethtool_get_eeprom_len(uint8_t port_id) 150bda68ab9SRemy Horton { 151bda68ab9SRemy Horton return rte_eth_dev_get_eeprom_length(port_id); 152bda68ab9SRemy Horton } 153bda68ab9SRemy Horton 154bda68ab9SRemy Horton int 155bda68ab9SRemy Horton rte_ethtool_get_eeprom(uint8_t port_id, struct ethtool_eeprom *eeprom, 156bda68ab9SRemy Horton void *words) 157bda68ab9SRemy Horton { 158bda68ab9SRemy Horton struct rte_dev_eeprom_info eeprom_info; 159bda68ab9SRemy Horton int status; 160bda68ab9SRemy Horton 161bda68ab9SRemy Horton if (eeprom == NULL || words == NULL) 162bda68ab9SRemy Horton return -EINVAL; 163bda68ab9SRemy Horton 164bda68ab9SRemy Horton eeprom_info.offset = eeprom->offset; 165bda68ab9SRemy Horton eeprom_info.length = eeprom->len; 166bda68ab9SRemy Horton eeprom_info.data = words; 167bda68ab9SRemy Horton 168bda68ab9SRemy Horton status = rte_eth_dev_get_eeprom(port_id, &eeprom_info); 169bda68ab9SRemy Horton if (status) 170bda68ab9SRemy Horton return status; 171bda68ab9SRemy Horton 172bda68ab9SRemy Horton eeprom->magic = eeprom_info.magic; 173bda68ab9SRemy Horton 174bda68ab9SRemy Horton return 0; 175bda68ab9SRemy Horton } 176bda68ab9SRemy Horton 177bda68ab9SRemy Horton int 178bda68ab9SRemy Horton rte_ethtool_set_eeprom(uint8_t port_id, struct ethtool_eeprom *eeprom, 179bda68ab9SRemy Horton void *words) 180bda68ab9SRemy Horton { 181bda68ab9SRemy Horton struct rte_dev_eeprom_info eeprom_info; 182bda68ab9SRemy Horton int status; 183bda68ab9SRemy Horton 184bda68ab9SRemy Horton if (eeprom == NULL || words == NULL || eeprom->offset >= eeprom->len) 185bda68ab9SRemy Horton return -EINVAL; 186bda68ab9SRemy Horton 187bda68ab9SRemy Horton eeprom_info.offset = eeprom->offset; 188bda68ab9SRemy Horton eeprom_info.length = eeprom->len; 189bda68ab9SRemy Horton eeprom_info.data = words; 190bda68ab9SRemy Horton 191bda68ab9SRemy Horton status = rte_eth_dev_set_eeprom(port_id, &eeprom_info); 192bda68ab9SRemy Horton if (status) 193bda68ab9SRemy Horton return status; 194bda68ab9SRemy Horton 195bda68ab9SRemy Horton eeprom->magic = eeprom_info.magic; 196bda68ab9SRemy Horton 197bda68ab9SRemy Horton return 0; 198bda68ab9SRemy Horton } 199bda68ab9SRemy Horton 200bda68ab9SRemy Horton int 201bda68ab9SRemy Horton rte_ethtool_get_pauseparam(uint8_t port_id, 202bda68ab9SRemy Horton struct ethtool_pauseparam *pause_param) 203bda68ab9SRemy Horton { 204bda68ab9SRemy Horton struct rte_eth_fc_conf fc_conf; 205bda68ab9SRemy Horton int status; 206bda68ab9SRemy Horton 207bda68ab9SRemy Horton if (pause_param == NULL) 208bda68ab9SRemy Horton return -EINVAL; 209bda68ab9SRemy Horton 210bda68ab9SRemy Horton status = rte_eth_dev_flow_ctrl_get(port_id, &fc_conf); 211bda68ab9SRemy Horton if (status) 212bda68ab9SRemy Horton return status; 213bda68ab9SRemy Horton 214bda68ab9SRemy Horton pause_param->tx_pause = 0; 215bda68ab9SRemy Horton pause_param->rx_pause = 0; 216bda68ab9SRemy Horton switch (fc_conf.mode) { 217bda68ab9SRemy Horton case RTE_FC_RX_PAUSE: 218bda68ab9SRemy Horton pause_param->rx_pause = 1; 219bda68ab9SRemy Horton break; 220bda68ab9SRemy Horton case RTE_FC_TX_PAUSE: 221bda68ab9SRemy Horton pause_param->tx_pause = 1; 222bda68ab9SRemy Horton break; 223bda68ab9SRemy Horton case RTE_FC_FULL: 224bda68ab9SRemy Horton pause_param->rx_pause = 1; 225bda68ab9SRemy Horton pause_param->tx_pause = 1; 226bda68ab9SRemy Horton default: 227bda68ab9SRemy Horton /* dummy block to avoid compiler warning */ 228bda68ab9SRemy Horton break; 229bda68ab9SRemy Horton } 230bda68ab9SRemy Horton pause_param->autoneg = (uint32_t)fc_conf.autoneg; 231bda68ab9SRemy Horton 232bda68ab9SRemy Horton return 0; 233bda68ab9SRemy Horton } 234bda68ab9SRemy Horton 235bda68ab9SRemy Horton int 236bda68ab9SRemy Horton rte_ethtool_set_pauseparam(uint8_t port_id, 237bda68ab9SRemy Horton struct ethtool_pauseparam *pause_param) 238bda68ab9SRemy Horton { 239bda68ab9SRemy Horton struct rte_eth_fc_conf fc_conf; 240bda68ab9SRemy Horton int status; 241bda68ab9SRemy Horton 242bda68ab9SRemy Horton if (pause_param == NULL) 243bda68ab9SRemy Horton return -EINVAL; 244bda68ab9SRemy Horton 245bda68ab9SRemy Horton /* 246bda68ab9SRemy Horton * Read device flow control parameter first since 247bda68ab9SRemy Horton * ethtool set_pauseparam op doesn't have all the information. 248bda68ab9SRemy Horton * as defined in struct rte_eth_fc_conf. 249bda68ab9SRemy Horton * This API requires the device to support both 250bda68ab9SRemy Horton * rte_eth_dev_flow_ctrl_get and rte_eth_dev_flow_ctrl_set, otherwise 251bda68ab9SRemy Horton * return -ENOTSUP 252bda68ab9SRemy Horton */ 253bda68ab9SRemy Horton status = rte_eth_dev_flow_ctrl_get(port_id, &fc_conf); 254bda68ab9SRemy Horton if (status) 255bda68ab9SRemy Horton return status; 256bda68ab9SRemy Horton 257bda68ab9SRemy Horton fc_conf.autoneg = (uint8_t)pause_param->autoneg; 258bda68ab9SRemy Horton 259bda68ab9SRemy Horton if (pause_param->tx_pause) { 260bda68ab9SRemy Horton if (pause_param->rx_pause) 261bda68ab9SRemy Horton fc_conf.mode = RTE_FC_FULL; 262bda68ab9SRemy Horton else 263bda68ab9SRemy Horton fc_conf.mode = RTE_FC_TX_PAUSE; 264bda68ab9SRemy Horton } else { 265bda68ab9SRemy Horton if (pause_param->rx_pause) 266bda68ab9SRemy Horton fc_conf.mode = RTE_FC_RX_PAUSE; 267bda68ab9SRemy Horton else 268bda68ab9SRemy Horton fc_conf.mode = RTE_FC_NONE; 269bda68ab9SRemy Horton } 270bda68ab9SRemy Horton 271bda68ab9SRemy Horton status = rte_eth_dev_flow_ctrl_set(port_id, &fc_conf); 272bda68ab9SRemy Horton if (status) 273bda68ab9SRemy Horton return status; 274bda68ab9SRemy Horton 275bda68ab9SRemy Horton return 0; 276bda68ab9SRemy Horton } 277bda68ab9SRemy Horton 278bda68ab9SRemy Horton int 279bda68ab9SRemy Horton rte_ethtool_net_open(uint8_t port_id) 280bda68ab9SRemy Horton { 281bda68ab9SRemy Horton rte_eth_dev_stop(port_id); 282bda68ab9SRemy Horton 283bda68ab9SRemy Horton return rte_eth_dev_start(port_id); 284bda68ab9SRemy Horton } 285bda68ab9SRemy Horton 286bda68ab9SRemy Horton int 287bda68ab9SRemy Horton rte_ethtool_net_stop(uint8_t port_id) 288bda68ab9SRemy Horton { 2891414dabcSMauricio Vasquez B RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 290bda68ab9SRemy Horton rte_eth_dev_stop(port_id); 291bda68ab9SRemy Horton 292bda68ab9SRemy Horton return 0; 293bda68ab9SRemy Horton } 294bda68ab9SRemy Horton 295bda68ab9SRemy Horton int 296bda68ab9SRemy Horton rte_ethtool_net_get_mac_addr(uint8_t port_id, struct ether_addr *addr) 297bda68ab9SRemy Horton { 2981414dabcSMauricio Vasquez B RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 299bda68ab9SRemy Horton if (addr == NULL) 300bda68ab9SRemy Horton return -EINVAL; 301bda68ab9SRemy Horton rte_eth_macaddr_get(port_id, addr); 302bda68ab9SRemy Horton 303bda68ab9SRemy Horton return 0; 304bda68ab9SRemy Horton } 305bda68ab9SRemy Horton 306bda68ab9SRemy Horton int 307bda68ab9SRemy Horton rte_ethtool_net_set_mac_addr(uint8_t port_id, struct ether_addr *addr) 308bda68ab9SRemy Horton { 309bda68ab9SRemy Horton if (addr == NULL) 310bda68ab9SRemy Horton return -EINVAL; 311bda68ab9SRemy Horton return rte_eth_dev_default_mac_addr_set(port_id, addr); 312bda68ab9SRemy Horton } 313bda68ab9SRemy Horton 314bda68ab9SRemy Horton int 315bda68ab9SRemy Horton rte_ethtool_net_validate_addr(uint8_t port_id __rte_unused, 316bda68ab9SRemy Horton struct ether_addr *addr) 317bda68ab9SRemy Horton { 318bda68ab9SRemy Horton if (addr == NULL) 319bda68ab9SRemy Horton return -EINVAL; 320bda68ab9SRemy Horton return is_valid_assigned_ether_addr(addr); 321bda68ab9SRemy Horton } 322bda68ab9SRemy Horton 323bda68ab9SRemy Horton int 324bda68ab9SRemy Horton rte_ethtool_net_change_mtu(uint8_t port_id, int mtu) 325bda68ab9SRemy Horton { 326bda68ab9SRemy Horton if (mtu < 0 || mtu > UINT16_MAX) 327bda68ab9SRemy Horton return -EINVAL; 328bda68ab9SRemy Horton return rte_eth_dev_set_mtu(port_id, (uint16_t)mtu); 329bda68ab9SRemy Horton } 330bda68ab9SRemy Horton 331bda68ab9SRemy Horton int 332bda68ab9SRemy Horton rte_ethtool_net_get_stats64(uint8_t port_id, struct rte_eth_stats *stats) 333bda68ab9SRemy Horton { 334bda68ab9SRemy Horton if (stats == NULL) 335bda68ab9SRemy Horton return -EINVAL; 336bda68ab9SRemy Horton return rte_eth_stats_get(port_id, stats); 337bda68ab9SRemy Horton } 338bda68ab9SRemy Horton 339bda68ab9SRemy Horton int 340bda68ab9SRemy Horton rte_ethtool_net_vlan_rx_add_vid(uint8_t port_id, uint16_t vid) 341bda68ab9SRemy Horton { 342bda68ab9SRemy Horton return rte_eth_dev_vlan_filter(port_id, vid, 1); 343bda68ab9SRemy Horton } 344bda68ab9SRemy Horton 345bda68ab9SRemy Horton int 346bda68ab9SRemy Horton rte_ethtool_net_vlan_rx_kill_vid(uint8_t port_id, uint16_t vid) 347bda68ab9SRemy Horton { 348bda68ab9SRemy Horton return rte_eth_dev_vlan_filter(port_id, vid, 0); 349bda68ab9SRemy Horton } 350bda68ab9SRemy Horton 351bda68ab9SRemy Horton /* 352bda68ab9SRemy Horton * The set_rx_mode provides driver-specific rx mode setting. 353bda68ab9SRemy Horton * This implementation implements rx mode setting based upon 354bda68ab9SRemy Horton * ixgbe/igb drivers. Further improvement is to provide a 355bda68ab9SRemy Horton * callback op field over struct rte_eth_dev::dev_ops so each 356bda68ab9SRemy Horton * driver can register device-specific implementation 357bda68ab9SRemy Horton */ 358bda68ab9SRemy Horton int 359bda68ab9SRemy Horton rte_ethtool_net_set_rx_mode(uint8_t port_id) 360bda68ab9SRemy Horton { 361bda68ab9SRemy Horton uint16_t num_vfs; 362bda68ab9SRemy Horton struct rte_eth_dev_info dev_info; 363bda68ab9SRemy Horton uint16_t vf; 364bda68ab9SRemy Horton 365bda68ab9SRemy Horton memset(&dev_info, 0, sizeof(dev_info)); 366bda68ab9SRemy Horton rte_eth_dev_info_get(port_id, &dev_info); 367bda68ab9SRemy Horton num_vfs = dev_info.max_vfs; 368bda68ab9SRemy Horton 369bda68ab9SRemy Horton /* Set VF vf_rx_mode, VF unsupport status is discard */ 370bda68ab9SRemy Horton for (vf = 0; vf < num_vfs; vf++) 371bda68ab9SRemy Horton rte_eth_dev_set_vf_rxmode(port_id, vf, 372bda68ab9SRemy Horton ETH_VMDQ_ACCEPT_UNTAG, 0); 373bda68ab9SRemy Horton 374bda68ab9SRemy Horton /* Enable Rx vlan filter, VF unspport status is discard */ 375bda68ab9SRemy Horton rte_eth_dev_set_vlan_offload(port_id, ETH_VLAN_FILTER_MASK); 376bda68ab9SRemy Horton 377bda68ab9SRemy Horton return 0; 378bda68ab9SRemy Horton } 379bda68ab9SRemy Horton 380bda68ab9SRemy Horton 381bda68ab9SRemy Horton int 382bda68ab9SRemy Horton rte_ethtool_get_ringparam(uint8_t port_id, 383bda68ab9SRemy Horton struct ethtool_ringparam *ring_param) 384bda68ab9SRemy Horton { 385bda68ab9SRemy Horton struct rte_eth_dev_info dev_info; 386bda68ab9SRemy Horton struct rte_eth_rxq_info rx_qinfo; 387bda68ab9SRemy Horton struct rte_eth_txq_info tx_qinfo; 388bda68ab9SRemy Horton int stat; 389bda68ab9SRemy Horton 390bda68ab9SRemy Horton if (ring_param == NULL) 391bda68ab9SRemy Horton return -EINVAL; 392bda68ab9SRemy Horton 393bda68ab9SRemy Horton rte_eth_dev_info_get(port_id, &dev_info); 394bda68ab9SRemy Horton 395bda68ab9SRemy Horton stat = rte_eth_rx_queue_info_get(port_id, 0, &rx_qinfo); 396bda68ab9SRemy Horton if (stat != 0) 397bda68ab9SRemy Horton return stat; 398bda68ab9SRemy Horton 399bda68ab9SRemy Horton stat = rte_eth_tx_queue_info_get(port_id, 0, &tx_qinfo); 400bda68ab9SRemy Horton if (stat != 0) 401bda68ab9SRemy Horton return stat; 402bda68ab9SRemy Horton 403bda68ab9SRemy Horton memset(ring_param, 0, sizeof(*ring_param)); 404bda68ab9SRemy Horton ring_param->rx_pending = rx_qinfo.nb_desc; 405bda68ab9SRemy Horton ring_param->rx_max_pending = dev_info.rx_desc_lim.nb_max; 406bda68ab9SRemy Horton ring_param->tx_pending = tx_qinfo.nb_desc; 407bda68ab9SRemy Horton ring_param->tx_max_pending = dev_info.tx_desc_lim.nb_max; 408bda68ab9SRemy Horton 409bda68ab9SRemy Horton return 0; 410bda68ab9SRemy Horton } 411bda68ab9SRemy Horton 412bda68ab9SRemy Horton 413bda68ab9SRemy Horton int 414bda68ab9SRemy Horton rte_ethtool_set_ringparam(uint8_t port_id, 415bda68ab9SRemy Horton struct ethtool_ringparam *ring_param) 416bda68ab9SRemy Horton { 417bda68ab9SRemy Horton struct rte_eth_rxq_info rx_qinfo; 418bda68ab9SRemy Horton int stat; 419bda68ab9SRemy Horton 420bda68ab9SRemy Horton if (ring_param == NULL) 421bda68ab9SRemy Horton return -EINVAL; 422bda68ab9SRemy Horton 423bda68ab9SRemy Horton stat = rte_eth_rx_queue_info_get(port_id, 0, &rx_qinfo); 424bda68ab9SRemy Horton if (stat != 0) 425bda68ab9SRemy Horton return stat; 426bda68ab9SRemy Horton 427bda68ab9SRemy Horton rte_eth_dev_stop(port_id); 428bda68ab9SRemy Horton 429bda68ab9SRemy Horton stat = rte_eth_tx_queue_setup(port_id, 0, ring_param->tx_pending, 430bda68ab9SRemy Horton rte_socket_id(), NULL); 431bda68ab9SRemy Horton if (stat != 0) 432bda68ab9SRemy Horton return stat; 433bda68ab9SRemy Horton 434bda68ab9SRemy Horton stat = rte_eth_rx_queue_setup(port_id, 0, ring_param->rx_pending, 435bda68ab9SRemy Horton rte_socket_id(), NULL, rx_qinfo.mp); 436bda68ab9SRemy Horton if (stat != 0) 437bda68ab9SRemy Horton return stat; 438bda68ab9SRemy Horton 439bda68ab9SRemy Horton return rte_eth_dev_start(port_id); 440bda68ab9SRemy Horton } 441