diff mbox

[net-next,RFC,3/7] i40evf: core ethtool functionality

Message ID 1377233609-11627-4-git-send-email-jeffrey.t.kirsher@intel.com
State RFC, archived
Delegated to: David Miller
Headers show

Commit Message

Kirsher, Jeffrey T Aug. 23, 2013, 4:53 a.m. UTC
From: Mitch A Williams <mitch.a.williams@intel.com>

This patch contains the ethtool interface and related functionality.
Since the VF driver is mostly unaware of link, much of that
functionality is unused. The driver implements ethtool hooks for
statistics, driver info, and some basic non-link-related driver
settings.

Signed-off-by: Mitch Williams <mitch.a.williams@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
---
 drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c | 411 +++++++++++++++++++++
 1 file changed, 411 insertions(+)
 create mode 100644 drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c

Comments

Ben Hutchings Aug. 27, 2013, 5:27 p.m. UTC | #1
On Thu, 2013-08-22 at 21:53 -0700, Jeff Kirsher wrote:
[...]
> --- /dev/null
> +++ b/drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c
[...]
> +/**
> + * i40evf_get_settings - Get Link Speed and Duplex settings
> + * @netdev: network interface device structure
> + * @ecmd: ethtool command
> + *
> + * Reports speed/duplex settings. Because this is a VF, we don't know what
> + * kind of link we really have, so we fake it.
> + **/
> +static int i40evf_get_settings(struct net_device *netdev,
> +			       struct ethtool_cmd *ecmd)
> +{
> +	ecmd->supported = SUPPORTED_10000baseT_Full;

This is silly.

> +	ecmd->autoneg = AUTONEG_DISABLE;
> +	ecmd->transceiver = XCVR_DUMMY1;
> +	ecmd->port = -1;

PORT_NONE, I think.

> +	return 0;
> +}
> +
> +/**
> + * i40evf_get_sset_count - Get length of string set
> + * @netdev: network interface device structure
> + * @sset: id of string set
> + *
> + * Reports size (in bytes) of string set.

Not in bytes.

>  This driver only supports
> + * strings for statistics.
> + **/
[...]
> +/**
> + * i40evf_get_strings - Get string set
> + * @netdev: network interface device structure
> + * @sset: id of string set
> + * @data: buffer for string data
> + *
> + * Strings are concatenated into the data buffer, separated by nulls.

This looks like a description of a Windows-style double-null-terminated
string list, not an ethtool string set.

> + **/
> +static void i40evf_get_strings(struct net_device *netdev, u32 sset, u8 *data)
> +{
> +	struct i40evf_adapter *adapter = netdev_priv(netdev);
> +	u8 *p = data;
> +	int i;
> +
> +	if (sset == ETH_SS_STATS) {
> +		for (i = 0; i < I40EVF_GLOBAL_STATS_LEN; i++) {
> +			memcpy(p, i40evf_gstrings_stats[i].stat_string,
> +			       ETH_GSTRING_LEN);
> +			p += ETH_GSTRING_LEN;
> +		}
> +		for (i = 0; i < adapter->vsi_res->num_queue_pairs; i++) {
> +			snprintf(p, ETH_GSTRING_LEN, "%s.tx_queue_%u.packets",
> +				 netdev->name, i);
> +			p += ETH_GSTRING_LEN;
> +			snprintf(p, ETH_GSTRING_LEN, "%s.tx_queue_%u.bytes",
> +				 netdev->name, i);
> +			p += ETH_GSTRING_LEN;
> +		}
> +		for (i = 0; i < adapter->vsi_res->num_queue_pairs; i++) {
> +			snprintf(p, ETH_GSTRING_LEN, "%s.rx_queue_%u.packets",
> +				 netdev->name, i);
> +			p += ETH_GSTRING_LEN;
> +			snprintf(p, ETH_GSTRING_LEN, "%s.rx_queue_%u.bytes",
> +				 netdev->name, i);
> +			p += ETH_GSTRING_LEN;

It is completely redundant to put the device name into statistic names,
and is liable to cause the names to be truncated.  There was also a
discussion about how to name per-queue statistics a while back, which
seemed to end in agreement:

http://thread.gmane.org/gmane.linux.network/273014/focus=12205

So I think the name formats should be "tx-%u.packets" etc.

[...]
> +/**
> + * i40evf_get_drvinto - Get driver info
> + * @netdev: network interface device structure
> + * @drvinfo: ethool driver info structure
> + *
> + * Returns information about the driver and device for display to the user.
> + **/
> +static void i40evf_get_drvinfo(struct net_device *netdev,
> +			       struct ethtool_drvinfo *drvinfo)
> +{
> +	struct i40evf_adapter *adapter = netdev_priv(netdev);
> +
> +	strncpy(drvinfo->driver, i40evf_driver_name, 32);
> +	strncpy(drvinfo->version, i40evf_driver_version, 32);
> +
> +	strncpy(drvinfo->fw_version, "N/A", 4);

If there is no firmware version then don't set fw_version at all.

> +	strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32);

Use strlcpy() not strncpy() for all of the other strings.

> +	drvinfo->n_stats = I40EVF_STATS_LEN;
> +	drvinfo->regdump_len = 0;

Don't set these at all, as they are initialised by the ethtool core
based on other driver operations.

[...]
> +static void i40evf_get_ringparam(struct net_device *netdev,
> +				  struct ethtool_ringparam *ring)
> +{
> +	struct i40evf_adapter *adapter = netdev_priv(netdev);
> +	struct i40e_ring *tx_ring = &adapter->tx_rings[0];
> +	struct i40e_ring *rx_ring = &adapter->rx_rings[0];
> +
> +	ring->rx_max_pending = I40EVF_MAX_RXD;
> +	ring->tx_max_pending = I40EVF_MAX_TXD;
> +	ring->rx_mini_max_pending = 0;
> +	ring->rx_jumbo_max_pending = 0;
> +	ring->rx_pending = rx_ring->count;
> +	ring->tx_pending = tx_ring->count;
> +	ring->rx_mini_pending = 0;
> +	ring->rx_jumbo_pending = 0;
> +}

No need to set the unsupported fields to 0.

[...]
> +static int i40evf_get_coalesce(struct net_device *netdev,
> +			     struct ethtool_coalesce *ec)
> +{
> +	struct i40evf_adapter *adapter = netdev_priv(netdev);
> +	struct i40e_vsi *vsi = &adapter->vsi;
> +
> +	ec->tx_max_coalesced_frames_irq = vsi->work_limit;
> +	ec->rx_max_coalesced_frames_irq = vsi->work_limit;

Use the fields without the '_irq' suffix.  The '_irq' suffixed fields
are there for some NICs that change coalescing behaviour depending on
whether the previous IRQ is still being handled.

[...]
> +static int i40evf_set_coalesce(struct net_device *netdev,
> +			     struct ethtool_coalesce *ec)
> +{
> +	struct i40evf_adapter *adapter = netdev_priv(netdev);
> +	struct i40e_hw *hw = &adapter->hw;
> +	struct i40e_vsi *vsi = &adapter->vsi;
> +	struct i40e_q_vector *q_vector;
> +	int i;
> +
> +	if (ec->tx_max_coalesced_frames_irq || ec->rx_max_coalesced_frames_irq)
> +		vsi->work_limit = ec->tx_max_coalesced_frames_irq;
[...]

Again, use the fields without the '_irq' suffix.

Ben.
Mitch Williams Aug. 27, 2013, 6:23 p.m. UTC | #2
> -----Original Message-----

> From: Ben Hutchings [mailto:bhutchings@solarflare.com]

> Sent: Tuesday, August 27, 2013 10:28 AM

> To: Kirsher, Jeffrey T

> Cc: davem@davemloft.net; Williams, Mitch A; netdev@vger.kernel.org;

> gospo@redhat.com; sassmann@redhat.com

> Subject: Re: [net-next RFC 3/7] i40evf: core ethtool functionality

> 

> On Thu, 2013-08-22 at 21:53 -0700, Jeff Kirsher wrote:

> [...]

> > --- /dev/null

> > +++ b/drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c

> [...]

> > +/**

> > + * i40evf_get_settings - Get Link Speed and Duplex settings

> > + * @netdev: network interface device structure

> > + * @ecmd: ethtool command

> > + *

> > + * Reports speed/duplex settings. Because this is a VF, we don't know

> what

> > + * kind of link we really have, so we fake it.

> > + **/

> > +static int i40evf_get_settings(struct net_device *netdev,

> > +			       struct ethtool_cmd *ecmd)

> > +{

> > +	ecmd->supported = SUPPORTED_10000baseT_Full;

> 

> This is silly.

> 

> > +	ecmd->autoneg = AUTONEG_DISABLE;

> > +	ecmd->transceiver = XCVR_DUMMY1;

> > +	ecmd->port = -1;

> 

> PORT_NONE, I think.

> 

> > +	return 0;

> > +}

> > +

> > +/**

> > + * i40evf_get_sset_count - Get length of string set

> > + * @netdev: network interface device structure

> > + * @sset: id of string set

> > + *

> > + * Reports size (in bytes) of string set.

> 

> Not in bytes.

> 

> >  This driver only supports

> > + * strings for statistics.

> > + **/

> [...]

> > +/**

> > + * i40evf_get_strings - Get string set

> > + * @netdev: network interface device structure

> > + * @sset: id of string set

> > + * @data: buffer for string data

> > + *

> > + * Strings are concatenated into the data buffer, separated by nulls.

> 

> This looks like a description of a Windows-style double-null-terminated

> string list, not an ethtool string set.

> 

> > + **/

> > +static void i40evf_get_strings(struct net_device *netdev, u32 sset, u8

> *data)

> > +{

> > +	struct i40evf_adapter *adapter = netdev_priv(netdev);

> > +	u8 *p = data;

> > +	int i;

> > +

> > +	if (sset == ETH_SS_STATS) {

> > +		for (i = 0; i < I40EVF_GLOBAL_STATS_LEN; i++) {

> > +			memcpy(p, i40evf_gstrings_stats[i].stat_string,

> > +			       ETH_GSTRING_LEN);

> > +			p += ETH_GSTRING_LEN;

> > +		}

> > +		for (i = 0; i < adapter->vsi_res->num_queue_pairs; i++) {

> > +			snprintf(p, ETH_GSTRING_LEN, "%s.tx_queue_%u.packets",

> > +				 netdev->name, i);

> > +			p += ETH_GSTRING_LEN;

> > +			snprintf(p, ETH_GSTRING_LEN, "%s.tx_queue_%u.bytes",

> > +				 netdev->name, i);

> > +			p += ETH_GSTRING_LEN;

> > +		}

> > +		for (i = 0; i < adapter->vsi_res->num_queue_pairs; i++) {

> > +			snprintf(p, ETH_GSTRING_LEN, "%s.rx_queue_%u.packets",

> > +				 netdev->name, i);

> > +			p += ETH_GSTRING_LEN;

> > +			snprintf(p, ETH_GSTRING_LEN, "%s.rx_queue_%u.bytes",

> > +				 netdev->name, i);

> > +			p += ETH_GSTRING_LEN;

> 

> It is completely redundant to put the device name into statistic names,

> and is liable to cause the names to be truncated.  There was also a

> discussion about how to name per-queue statistics a while back, which

> seemed to end in agreement:

> 

> http://thread.gmane.org/gmane.linux.network/273014/focus=12205

> 

> So I think the name formats should be "tx-%u.packets" etc.

> 

> [...]

> > +/**

> > + * i40evf_get_drvinto - Get driver info

> > + * @netdev: network interface device structure

> > + * @drvinfo: ethool driver info structure

> > + *

> > + * Returns information about the driver and device for display to the

> user.

> > + **/

> > +static void i40evf_get_drvinfo(struct net_device *netdev,

> > +			       struct ethtool_drvinfo *drvinfo)

> > +{

> > +	struct i40evf_adapter *adapter = netdev_priv(netdev);

> > +

> > +	strncpy(drvinfo->driver, i40evf_driver_name, 32);

> > +	strncpy(drvinfo->version, i40evf_driver_version, 32);

> > +

> > +	strncpy(drvinfo->fw_version, "N/A", 4);

> 

> If there is no firmware version then don't set fw_version at all.

> 

> > +	strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32);

> 

> Use strlcpy() not strncpy() for all of the other strings.

> 

> > +	drvinfo->n_stats = I40EVF_STATS_LEN;

> > +	drvinfo->regdump_len = 0;

> 

> Don't set these at all, as they are initialised by the ethtool core

> based on other driver operations.

> 

> [...]

> > +static void i40evf_get_ringparam(struct net_device *netdev,

> > +				  struct ethtool_ringparam *ring)

> > +{

> > +	struct i40evf_adapter *adapter = netdev_priv(netdev);

> > +	struct i40e_ring *tx_ring = &adapter->tx_rings[0];

> > +	struct i40e_ring *rx_ring = &adapter->rx_rings[0];

> > +

> > +	ring->rx_max_pending = I40EVF_MAX_RXD;

> > +	ring->tx_max_pending = I40EVF_MAX_TXD;

> > +	ring->rx_mini_max_pending = 0;

> > +	ring->rx_jumbo_max_pending = 0;

> > +	ring->rx_pending = rx_ring->count;

> > +	ring->tx_pending = tx_ring->count;

> > +	ring->rx_mini_pending = 0;

> > +	ring->rx_jumbo_pending = 0;

> > +}

> 

> No need to set the unsupported fields to 0.

> 

> [...]

> > +static int i40evf_get_coalesce(struct net_device *netdev,

> > +			     struct ethtool_coalesce *ec)

> > +{

> > +	struct i40evf_adapter *adapter = netdev_priv(netdev);

> > +	struct i40e_vsi *vsi = &adapter->vsi;

> > +

> > +	ec->tx_max_coalesced_frames_irq = vsi->work_limit;

> > +	ec->rx_max_coalesced_frames_irq = vsi->work_limit;

> 

> Use the fields without the '_irq' suffix.  The '_irq' suffixed fields

> are there for some NICs that change coalescing behaviour depending on

> whether the previous IRQ is still being handled.

> 

> [...]

> > +static int i40evf_set_coalesce(struct net_device *netdev,

> > +			     struct ethtool_coalesce *ec)

> > +{

> > +	struct i40evf_adapter *adapter = netdev_priv(netdev);

> > +	struct i40e_hw *hw = &adapter->hw;

> > +	struct i40e_vsi *vsi = &adapter->vsi;

> > +	struct i40e_q_vector *q_vector;

> > +	int i;

> > +

> > +	if (ec->tx_max_coalesced_frames_irq || ec->rx_max_coalesced_frames_irq)

> > +		vsi->work_limit = ec->tx_max_coalesced_frames_irq;

> [...]

> 

> Again, use the fields without the '_irq' suffix.

> 

> Ben.

> 


Thanks for the review, Ben. I'll fix all of these before we send this out again.
-Mitch


> --

> Ben Hutchings, Staff Engineer, Solarflare

> Not speaking for my employer; that's the marketing department's job.

> They asked us to note that Solarflare product names are trademarked.
diff mbox

Patch

diff --git a/drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c b/drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c
new file mode 100644
index 0000000..314b015
--- /dev/null
+++ b/drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c
@@ -0,0 +1,411 @@ 
+/*******************************************************************************
+
+  Intel Ethernet Controller XL710 Family Linux Driver
+  Copyright(c) 2013 Intel Corporation.
+
+  This program is free software; you can redistribute it and/or modify it
+  under the terms and conditions of the GNU General Public License,
+  version 2, as published by the Free Software Foundation.
+
+  This program is distributed in the hope it will be useful, but WITHOUT
+  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+  more details.
+
+  You should have received a copy of the GNU General Public License along with
+  this program; if not, write to the Free Software Foundation, Inc.,
+  51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
+
+  The full GNU General Public License is included in this distribution in
+  the file called "COPYING".
+
+  Contact Information:
+  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
+  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
+
+*******************************************************************************/
+
+/* ethtool support for i40evf */
+
+#include <linux/types.h>
+#include <linux/module.h>
+#include <linux/pci.h>
+#include <linux/netdevice.h>
+#include <linux/ethtool.h>
+#include <linux/vmalloc.h>
+#include <linux/uaccess.h>
+
+#include "i40evf.h"
+
+
+
+struct i40evf_stats {
+	char stat_string[ETH_GSTRING_LEN];
+	int stat_offset;
+};
+
+#define I40EVF_STAT(_name, _stat) { \
+	.stat_string = _name, \
+	.stat_offset = offsetof(struct i40evf_adapter, _stat) \
+}
+
+/* All stats are u64, so we don't need to track the size of the field. */
+static const struct i40evf_stats i40evf_gstrings_stats[] = {
+	I40EVF_STAT("rx_bytes", current_stats.rx_bytes),
+	I40EVF_STAT("rx_unicast", current_stats.rx_unicast),
+	I40EVF_STAT("rx_multicast", current_stats.rx_multicast),
+	I40EVF_STAT("rx_broadcast", current_stats.rx_broadcast),
+	I40EVF_STAT("rx_discards", current_stats.rx_discards),
+	I40EVF_STAT("rx_errors", current_stats.rx_errors),
+	I40EVF_STAT("rx_missed", current_stats.rx_missed),
+	I40EVF_STAT("rx_unknown_protocol", current_stats.rx_unknown_protocol),
+	I40EVF_STAT("tx_bytes", current_stats.tx_bytes),
+	I40EVF_STAT("tx_unicast", current_stats.tx_unicast),
+	I40EVF_STAT("tx_multicast", current_stats.tx_multicast),
+	I40EVF_STAT("tx_broadcast", current_stats.tx_broadcast),
+	I40EVF_STAT("tx_discards", current_stats.tx_discards),
+	I40EVF_STAT("tx_errors", current_stats.tx_errors),
+};
+
+#define I40EVF_GLOBAL_STATS_LEN ARRAY_SIZE(i40evf_gstrings_stats)
+#define I40EVF_QUEUE_STATS_LEN \
+	(((struct i40evf_adapter *) \
+		netdev_priv(netdev))->vsi_res->num_queue_pairs * 4)
+#define I40EVF_STATS_LEN (I40EVF_GLOBAL_STATS_LEN + I40EVF_QUEUE_STATS_LEN)
+
+/**
+ * i40evf_get_settings - Get Link Speed and Duplex settings
+ * @netdev: network interface device structure
+ * @ecmd: ethtool command
+ *
+ * Reports speed/duplex settings. Because this is a VF, we don't know what
+ * kind of link we really have, so we fake it.
+ **/
+static int i40evf_get_settings(struct net_device *netdev,
+			       struct ethtool_cmd *ecmd)
+{
+	ecmd->supported = SUPPORTED_10000baseT_Full;
+	ecmd->autoneg = AUTONEG_DISABLE;
+	ecmd->transceiver = XCVR_DUMMY1;
+	ecmd->port = -1;
+
+	return 0;
+}
+
+/**
+ * i40evf_get_sset_count - Get length of string set
+ * @netdev: network interface device structure
+ * @sset: id of string set
+ *
+ * Reports size (in bytes) of string set. This driver only supports
+ * strings for statistics.
+ **/
+static int i40evf_get_sset_count(struct net_device *netdev, int sset)
+{
+	if (sset == ETH_SS_STATS)
+		return I40EVF_STATS_LEN;
+	else
+		return -ENOTSUPP;
+}
+
+/**
+ * i40evf_get_ethtool_stats - report device statistics
+ * @netdev: network interface device structure
+ * @stats: ethtool statistics structure
+ * @data: pointer to data buffer
+ *
+ * All statistics are added to the data buffer as an array of u64.
+ **/
+static void i40evf_get_ethtool_stats(struct net_device *netdev,
+				     struct ethtool_stats *stats, u64 *data)
+{
+	struct i40evf_adapter *adapter = netdev_priv(netdev);
+	int i, j;
+	char *p;
+
+	for (i = 0; i < I40EVF_GLOBAL_STATS_LEN; i++) {
+		p = (char *)adapter + i40evf_gstrings_stats[i].stat_offset;
+		data[i] =  *(u64 *)p;
+	}
+	for (j = 0; j < adapter->vsi_res->num_queue_pairs; j++) {
+		data[i++] = adapter->tx_rings[j].tx_stats.packets;
+		data[i++] = adapter->tx_rings[j].tx_stats.bytes;
+	}
+	for (j = 0; j < adapter->vsi_res->num_queue_pairs; j++) {
+		data[i++] = adapter->rx_rings[j].tx_stats.packets;
+		data[i++] = adapter->rx_rings[j].tx_stats.bytes;
+	}
+}
+
+/**
+ * i40evf_get_strings - Get string set
+ * @netdev: network interface device structure
+ * @sset: id of string set
+ * @data: buffer for string data
+ *
+ * Strings are concatenated into the data buffer, separated by nulls.
+ **/
+static void i40evf_get_strings(struct net_device *netdev, u32 sset, u8 *data)
+{
+	struct i40evf_adapter *adapter = netdev_priv(netdev);
+	u8 *p = data;
+	int i;
+
+	if (sset == ETH_SS_STATS) {
+		for (i = 0; i < I40EVF_GLOBAL_STATS_LEN; i++) {
+			memcpy(p, i40evf_gstrings_stats[i].stat_string,
+			       ETH_GSTRING_LEN);
+			p += ETH_GSTRING_LEN;
+		}
+		for (i = 0; i < adapter->vsi_res->num_queue_pairs; i++) {
+			snprintf(p, ETH_GSTRING_LEN, "%s.tx_queue_%u.packets",
+				 netdev->name, i);
+			p += ETH_GSTRING_LEN;
+			snprintf(p, ETH_GSTRING_LEN, "%s.tx_queue_%u.bytes",
+				 netdev->name, i);
+			p += ETH_GSTRING_LEN;
+		}
+		for (i = 0; i < adapter->vsi_res->num_queue_pairs; i++) {
+			snprintf(p, ETH_GSTRING_LEN, "%s.rx_queue_%u.packets",
+				 netdev->name, i);
+			p += ETH_GSTRING_LEN;
+			snprintf(p, ETH_GSTRING_LEN, "%s.rx_queue_%u.bytes",
+				 netdev->name, i);
+			p += ETH_GSTRING_LEN;
+		}
+	}
+}
+
+
+/**
+ * i40evf_get_msglevel - Get debug message level
+ * @netdev: network interface device structure
+ *
+ * Returns current debug message level.
+ **/
+static u32 i40evf_get_msglevel(struct net_device *netdev)
+{
+	struct i40evf_adapter *adapter = netdev_priv(netdev);
+	return adapter->msg_enable;
+}
+
+/**
+ * i40evf_get_msglevel - Set debug message level
+ * @netdev: network interface device structure
+ * @data: message level
+ *
+ * Set current debug message level. Higher values cause the driver to
+ * be noisier.
+ **/
+static void i40evf_set_msglevel(struct net_device *netdev, u32 data)
+{
+	struct i40evf_adapter *adapter = netdev_priv(netdev);
+	adapter->msg_enable = data;
+}
+
+/**
+ * i40evf_get_drvinto - Get driver info
+ * @netdev: network interface device structure
+ * @drvinfo: ethool driver info structure
+ *
+ * Returns information about the driver and device for display to the user.
+ **/
+static void i40evf_get_drvinfo(struct net_device *netdev,
+			       struct ethtool_drvinfo *drvinfo)
+{
+	struct i40evf_adapter *adapter = netdev_priv(netdev);
+
+	strncpy(drvinfo->driver, i40evf_driver_name, 32);
+	strncpy(drvinfo->version, i40evf_driver_version, 32);
+
+	strncpy(drvinfo->fw_version, "N/A", 4);
+	strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32);
+	drvinfo->n_stats = I40EVF_STATS_LEN;
+	drvinfo->regdump_len = 0;
+}
+
+/**
+ * i40evf_get_ringparam - Get ring parameters
+ * @netdev: network interface device structure
+ * @ring: ethtool ringparam structure
+ *
+ * Returns current ring parameters. TX and RX rings are reported separately,
+ * but the number of rings is not reported.
+ **/
+static void i40evf_get_ringparam(struct net_device *netdev,
+				  struct ethtool_ringparam *ring)
+{
+	struct i40evf_adapter *adapter = netdev_priv(netdev);
+	struct i40e_ring *tx_ring = &adapter->tx_rings[0];
+	struct i40e_ring *rx_ring = &adapter->rx_rings[0];
+
+	ring->rx_max_pending = I40EVF_MAX_RXD;
+	ring->tx_max_pending = I40EVF_MAX_TXD;
+	ring->rx_mini_max_pending = 0;
+	ring->rx_jumbo_max_pending = 0;
+	ring->rx_pending = rx_ring->count;
+	ring->tx_pending = tx_ring->count;
+	ring->rx_mini_pending = 0;
+	ring->rx_jumbo_pending = 0;
+}
+
+/**
+ * i40evf_set_ringparam - Set ring parameters
+ * @netdev: network interface device structure
+ * @ring: ethtool ringparam structure
+ *
+ * Sets ring parameters. TX and RX rings are controlled separately, but the
+ * number of rings is not specified, so all rings get the same settings.
+ **/
+static int i40evf_set_ringparam(struct net_device *netdev,
+				struct ethtool_ringparam *ring)
+{
+	struct i40evf_adapter *adapter = netdev_priv(netdev);
+	u32 new_rx_count, new_tx_count;
+
+	if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
+		return -EINVAL;
+
+	new_tx_count = clamp_t(u32, ring->tx_pending,
+			       I40EVF_MIN_TXD,
+			       I40EVF_MAX_TXD);
+	new_tx_count = ALIGN(new_tx_count, I40EVF_REQ_DESCRIPTOR_MULTIPLE);
+
+	new_rx_count = clamp_t(u32, ring->rx_pending,
+			       I40EVF_MIN_RXD,
+			       I40EVF_MAX_RXD);
+	new_rx_count = ALIGN(new_rx_count, I40EVF_REQ_DESCRIPTOR_MULTIPLE);
+
+	/* if nothing to do return success */
+	if ((new_tx_count == adapter->txd_count) &&
+	    (new_rx_count == adapter->rxd_count))
+		return 0;
+
+	adapter->txd_count = new_tx_count;
+	adapter->rxd_count = new_rx_count;
+
+	if (netif_running(netdev))
+		i40evf_reinit_locked(adapter);
+	return 0;
+}
+
+/**
+ * i40evf_get_coalesce - Get interrupt coalescing settings
+ * @netdev: network interface device structure
+ * @ec: ethtool coalesce structure
+ *
+ * Returns current coalescing settings. This is referred to elsewhere in the
+ * driver as Interrupt Throttle Rate, as this is how the hardware describes
+ * this functionality.
+ **/
+static int i40evf_get_coalesce(struct net_device *netdev,
+			     struct ethtool_coalesce *ec)
+{
+	struct i40evf_adapter *adapter = netdev_priv(netdev);
+	struct i40e_vsi *vsi = &adapter->vsi;
+
+	ec->tx_max_coalesced_frames_irq = vsi->work_limit;
+	ec->rx_max_coalesced_frames_irq = vsi->work_limit;
+
+	if (ITR_IS_DYNAMIC(vsi->rx_itr_setting))
+		ec->rx_coalesce_usecs = 1;
+	else
+		ec->rx_coalesce_usecs = vsi->rx_itr_setting;
+
+	if (ITR_IS_DYNAMIC(vsi->tx_itr_setting))
+		ec->tx_coalesce_usecs = 1;
+	else
+		ec->tx_coalesce_usecs = vsi->tx_itr_setting;
+
+	return 0;
+}
+
+/**
+ * i40evf_set_coalesce - Set interrupt coalescing settings
+ * @netdev: network interface device structure
+ * @ec: ethtool coalesce structure
+ *
+ * Change current coalescing settings.
+ **/
+static int i40evf_set_coalesce(struct net_device *netdev,
+			     struct ethtool_coalesce *ec)
+{
+	struct i40evf_adapter *adapter = netdev_priv(netdev);
+	struct i40e_hw *hw = &adapter->hw;
+	struct i40e_vsi *vsi = &adapter->vsi;
+	struct i40e_q_vector *q_vector;
+	int i;
+
+	if (ec->tx_max_coalesced_frames_irq || ec->rx_max_coalesced_frames_irq)
+		vsi->work_limit = ec->tx_max_coalesced_frames_irq;
+
+	switch (ec->rx_coalesce_usecs) {
+	case 0:
+		vsi->rx_itr_setting = 0;
+		break;
+	case 1:
+		vsi->rx_itr_setting = (I40E_ITR_DYNAMIC
+				       | ITR_REG_TO_USEC(I40E_ITR_RX_DEF));
+		break;
+	default:
+		if ((ec->rx_coalesce_usecs < (I40E_MIN_ITR << 1)) ||
+		    (ec->rx_coalesce_usecs > (I40E_MAX_ITR << 1)))
+			return -EINVAL;
+		vsi->rx_itr_setting = ec->rx_coalesce_usecs;
+		break;
+	}
+
+	switch (ec->tx_coalesce_usecs) {
+	case 0:
+		vsi->tx_itr_setting = 0;
+		break;
+	case 1:
+		vsi->tx_itr_setting = (I40E_ITR_DYNAMIC
+				       | ITR_REG_TO_USEC(I40E_ITR_TX_DEF));
+		break;
+	default:
+		if ((ec->tx_coalesce_usecs < (I40E_MIN_ITR << 1)) ||
+		    (ec->tx_coalesce_usecs > (I40E_MAX_ITR << 1)))
+			return -EINVAL;
+		vsi->tx_itr_setting = ec->tx_coalesce_usecs;
+		break;
+	}
+
+	for (i = 0; i < adapter->num_msix_vectors - NONQ_VECS; i++) {
+		q_vector = adapter->q_vector[i];
+		q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
+		wr32(hw, I40E_VFINT_ITRN1(0, i), q_vector->rx.itr);
+		q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
+		wr32(hw, I40E_VFINT_ITRN1(1, i), q_vector->tx.itr);
+		flush(hw);
+	}
+
+	return 0;
+}
+
+static struct ethtool_ops i40evf_ethtool_ops = {
+	.get_settings           = i40evf_get_settings,
+	.get_drvinfo            = i40evf_get_drvinfo,
+	.get_link               = ethtool_op_get_link,
+	.get_ringparam          = i40evf_get_ringparam,
+	.set_ringparam		= i40evf_set_ringparam,
+	.get_strings		= i40evf_get_strings,
+	.get_ethtool_stats	= i40evf_get_ethtool_stats,
+	.get_sset_count		= i40evf_get_sset_count,
+	.get_msglevel           = i40evf_get_msglevel,
+	.set_msglevel           = i40evf_set_msglevel,
+	.get_coalesce           = i40evf_get_coalesce,
+	.set_coalesce           = i40evf_set_coalesce,
+};
+
+/**
+ * i40evf_set_ethtool_ops - Initialize ethtool ops struct
+ * @netdev: network interface device structure
+ *
+ * Sets ethtool ops struct in our netdev so that ethtool can call
+ * our functions.
+ **/
+void i40evf_set_ethtool_ops(struct net_device *netdev)
+{
+	SET_ETHTOOL_OPS(netdev, &i40evf_ethtool_ops);
+}