blob: 8dea1b1367ef65603592d9949fe55af0521cbcf8 [file] [log] [blame]
Alexander Duyckd4e0fe02009-04-07 14:37:34 +00001/*******************************************************************************
2
3 Intel(R) 82576 Virtual Function Linux driver
Mitch A Williams2a06ed92012-01-17 04:09:05 +00004 Copyright(c) 2009 - 2012 Intel Corporation.
Alexander Duyckd4e0fe02009-04-07 14:37:34 +00005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
Jeff Kirsher03405012015-01-21 09:57:50 +000016 this program; if not, see <http://www.gnu.org/licenses/>.
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000017
18 The full GNU General Public License is included in this distribution in
19 the file called "COPYING".
20
21 Contact Information:
22 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24
25*******************************************************************************/
26
27/* ethtool support for igbvf */
28
29#include <linux/netdevice.h>
30#include <linux/ethtool.h>
31#include <linux/pci.h>
32#include <linux/vmalloc.h>
33#include <linux/delay.h>
34
35#include "igbvf.h"
36#include <linux/if_vlan.h>
37
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000038struct igbvf_stats {
39 char stat_string[ETH_GSTRING_LEN];
40 int sizeof_stat;
41 int stat_offset;
42 int base_stat_offset;
43};
44
45#define IGBVF_STAT(current, base) \
46 sizeof(((struct igbvf_adapter *)0)->current), \
47 offsetof(struct igbvf_adapter, current), \
48 offsetof(struct igbvf_adapter, base)
49
50static const struct igbvf_stats igbvf_gstrings_stats[] = {
51 { "rx_packets", IGBVF_STAT(stats.gprc, stats.base_gprc) },
52 { "tx_packets", IGBVF_STAT(stats.gptc, stats.base_gptc) },
53 { "rx_bytes", IGBVF_STAT(stats.gorc, stats.base_gorc) },
54 { "tx_bytes", IGBVF_STAT(stats.gotc, stats.base_gotc) },
55 { "multicast", IGBVF_STAT(stats.mprc, stats.base_mprc) },
56 { "lbrx_bytes", IGBVF_STAT(stats.gorlbc, stats.base_gorlbc) },
57 { "lbrx_packets", IGBVF_STAT(stats.gprlbc, stats.base_gprlbc) },
58 { "tx_restart_queue", IGBVF_STAT(restart_queue, zero_base) },
59 { "rx_long_byte_count", IGBVF_STAT(stats.gorc, stats.base_gorc) },
60 { "rx_csum_offload_good", IGBVF_STAT(hw_csum_good, zero_base) },
61 { "rx_csum_offload_errors", IGBVF_STAT(hw_csum_err, zero_base) },
62 { "rx_header_split", IGBVF_STAT(rx_hdr_split, zero_base) },
63 { "alloc_rx_buff_failed", IGBVF_STAT(alloc_rx_buff_failed, zero_base) },
64};
65
66#define IGBVF_GLOBAL_STATS_LEN ARRAY_SIZE(igbvf_gstrings_stats)
67
68static const char igbvf_gstrings_test[][ETH_GSTRING_LEN] = {
69 "Link test (on/offline)"
70};
71
72#define IGBVF_TEST_LEN ARRAY_SIZE(igbvf_gstrings_test)
73
74static int igbvf_get_settings(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +000075 struct ethtool_cmd *ecmd)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000076{
77 struct igbvf_adapter *adapter = netdev_priv(netdev);
78 struct e1000_hw *hw = &adapter->hw;
79 u32 status;
80
81 ecmd->supported = SUPPORTED_1000baseT_Full;
82
83 ecmd->advertising = ADVERTISED_1000baseT_Full;
84
85 ecmd->port = -1;
86 ecmd->transceiver = XCVR_DUMMY1;
87
88 status = er32(STATUS);
89 if (status & E1000_STATUS_LU) {
90 if (status & E1000_STATUS_SPEED_1000)
David Decotigny70739492011-04-27 18:32:40 +000091 ethtool_cmd_speed_set(ecmd, SPEED_1000);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000092 else if (status & E1000_STATUS_SPEED_100)
David Decotigny70739492011-04-27 18:32:40 +000093 ethtool_cmd_speed_set(ecmd, SPEED_100);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000094 else
David Decotigny70739492011-04-27 18:32:40 +000095 ethtool_cmd_speed_set(ecmd, SPEED_10);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000096
97 if (status & E1000_STATUS_FD)
98 ecmd->duplex = DUPLEX_FULL;
99 else
100 ecmd->duplex = DUPLEX_HALF;
101 } else {
Jiri Pirko537fae02014-06-06 14:17:00 +0200102 ethtool_cmd_speed_set(ecmd, SPEED_UNKNOWN);
103 ecmd->duplex = DUPLEX_UNKNOWN;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000104 }
105
106 ecmd->autoneg = AUTONEG_DISABLE;
107
108 return 0;
109}
110
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000111static int igbvf_set_settings(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000112 struct ethtool_cmd *ecmd)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000113{
114 return -EOPNOTSUPP;
115}
116
117static void igbvf_get_pauseparam(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000118 struct ethtool_pauseparam *pause)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000119{
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000120}
121
122static int igbvf_set_pauseparam(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000123 struct ethtool_pauseparam *pause)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000124{
125 return -EOPNOTSUPP;
126}
127
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000128static u32 igbvf_get_msglevel(struct net_device *netdev)
129{
130 struct igbvf_adapter *adapter = netdev_priv(netdev);
Jeff Kirsher03405012015-01-21 09:57:50 +0000131
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000132 return adapter->msg_enable;
133}
134
135static void igbvf_set_msglevel(struct net_device *netdev, u32 data)
136{
137 struct igbvf_adapter *adapter = netdev_priv(netdev);
Jeff Kirsher03405012015-01-21 09:57:50 +0000138
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000139 adapter->msg_enable = data;
140}
141
142static int igbvf_get_regs_len(struct net_device *netdev)
143{
144#define IGBVF_REGS_LEN 8
145 return IGBVF_REGS_LEN * sizeof(u32);
146}
147
148static void igbvf_get_regs(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000149 struct ethtool_regs *regs, void *p)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000150{
151 struct igbvf_adapter *adapter = netdev_priv(netdev);
152 struct e1000_hw *hw = &adapter->hw;
153 u32 *regs_buff = p;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000154
155 memset(p, 0, IGBVF_REGS_LEN * sizeof(u32));
156
Jacob Keller0ed2dbf2016-04-13 16:08:31 -0700157 regs->version = (1u << 24) |
158 (adapter->pdev->revision << 16) |
Sergei Shtylyovff938e42011-02-28 11:57:33 -0800159 adapter->pdev->device;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000160
161 regs_buff[0] = er32(CTRL);
162 regs_buff[1] = er32(STATUS);
163
164 regs_buff[2] = er32(RDLEN(0));
165 regs_buff[3] = er32(RDH(0));
166 regs_buff[4] = er32(RDT(0));
167
168 regs_buff[5] = er32(TDLEN(0));
169 regs_buff[6] = er32(TDH(0));
170 regs_buff[7] = er32(TDT(0));
171}
172
173static int igbvf_get_eeprom_len(struct net_device *netdev)
174{
175 return 0;
176}
177
178static int igbvf_get_eeprom(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000179 struct ethtool_eeprom *eeprom, u8 *bytes)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000180{
181 return -EOPNOTSUPP;
182}
183
184static int igbvf_set_eeprom(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000185 struct ethtool_eeprom *eeprom, u8 *bytes)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000186{
187 return -EOPNOTSUPP;
188}
189
190static void igbvf_get_drvinfo(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000191 struct ethtool_drvinfo *drvinfo)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000192{
193 struct igbvf_adapter *adapter = netdev_priv(netdev);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000194
Rick Jones612a94d2011-11-14 08:13:25 +0000195 strlcpy(drvinfo->driver, igbvf_driver_name, sizeof(drvinfo->driver));
196 strlcpy(drvinfo->version, igbvf_driver_version,
197 sizeof(drvinfo->version));
Rick Jones612a94d2011-11-14 08:13:25 +0000198 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
199 sizeof(drvinfo->bus_info));
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000200}
201
202static void igbvf_get_ringparam(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000203 struct ethtool_ringparam *ring)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000204{
205 struct igbvf_adapter *adapter = netdev_priv(netdev);
206 struct igbvf_ring *tx_ring = adapter->tx_ring;
207 struct igbvf_ring *rx_ring = adapter->rx_ring;
208
209 ring->rx_max_pending = IGBVF_MAX_RXD;
210 ring->tx_max_pending = IGBVF_MAX_TXD;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000211 ring->rx_pending = rx_ring->count;
212 ring->tx_pending = tx_ring->count;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000213}
214
215static int igbvf_set_ringparam(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000216 struct ethtool_ringparam *ring)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000217{
218 struct igbvf_adapter *adapter = netdev_priv(netdev);
219 struct igbvf_ring *temp_ring;
Alexander Duyck39305962009-10-26 11:32:25 +0000220 int err = 0;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000221 u32 new_rx_count, new_tx_count;
222
223 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
224 return -EINVAL;
225
Jeff Kirsher5beef762015-02-20 20:55:56 -0800226 new_rx_count = max_t(u32, ring->rx_pending, IGBVF_MIN_RXD);
227 new_rx_count = min_t(u32, new_rx_count, IGBVF_MAX_RXD);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000228 new_rx_count = ALIGN(new_rx_count, REQ_RX_DESCRIPTOR_MULTIPLE);
229
Jeff Kirsher5beef762015-02-20 20:55:56 -0800230 new_tx_count = max_t(u32, ring->tx_pending, IGBVF_MIN_TXD);
231 new_tx_count = min_t(u32, new_tx_count, IGBVF_MAX_TXD);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000232 new_tx_count = ALIGN(new_tx_count, REQ_TX_DESCRIPTOR_MULTIPLE);
233
234 if ((new_tx_count == adapter->tx_ring->count) &&
235 (new_rx_count == adapter->rx_ring->count)) {
236 /* nothing to do */
237 return 0;
238 }
239
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000240 while (test_and_set_bit(__IGBVF_RESETTING, &adapter->state))
Jeff Kirsher5beef762015-02-20 20:55:56 -0800241 usleep_range(1000, 2000);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000242
Alexander Duyck39305962009-10-26 11:32:25 +0000243 if (!netif_running(adapter->netdev)) {
244 adapter->tx_ring->count = new_tx_count;
245 adapter->rx_ring->count = new_rx_count;
246 goto clear_reset;
247 }
248
249 temp_ring = vmalloc(sizeof(struct igbvf_ring));
250 if (!temp_ring) {
251 err = -ENOMEM;
252 goto clear_reset;
253 }
254
255 igbvf_down(adapter);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000256
Jeff Kirsher03405012015-01-21 09:57:50 +0000257 /* We can't just free everything and then setup again,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000258 * because the ISRs in MSI-X mode get passed pointers
Jeff Kirsher03405012015-01-21 09:57:50 +0000259 * to the Tx and Rx ring structs.
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000260 */
261 if (new_tx_count != adapter->tx_ring->count) {
262 memcpy(temp_ring, adapter->tx_ring, sizeof(struct igbvf_ring));
263
264 temp_ring->count = new_tx_count;
265 err = igbvf_setup_tx_resources(adapter, temp_ring);
266 if (err)
267 goto err_setup;
268
269 igbvf_free_tx_resources(adapter->tx_ring);
270
271 memcpy(adapter->tx_ring, temp_ring, sizeof(struct igbvf_ring));
272 }
273
274 if (new_rx_count != adapter->rx_ring->count) {
275 memcpy(temp_ring, adapter->rx_ring, sizeof(struct igbvf_ring));
276
277 temp_ring->count = new_rx_count;
278 err = igbvf_setup_rx_resources(adapter, temp_ring);
279 if (err)
280 goto err_setup;
281
282 igbvf_free_rx_resources(adapter->rx_ring);
283
Jeff Kirsher03405012015-01-21 09:57:50 +0000284 memcpy(adapter->rx_ring, temp_ring, sizeof(struct igbvf_ring));
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000285 }
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000286err_setup:
Alexander Duyck39305962009-10-26 11:32:25 +0000287 igbvf_up(adapter);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000288 vfree(temp_ring);
Alexander Duyck39305962009-10-26 11:32:25 +0000289clear_reset:
290 clear_bit(__IGBVF_RESETTING, &adapter->state);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000291 return err;
292}
293
294static int igbvf_link_test(struct igbvf_adapter *adapter, u64 *data)
295{
296 struct e1000_hw *hw = &adapter->hw;
297 *data = 0;
298
299 hw->mac.ops.check_for_link(hw);
300
301 if (!(er32(STATUS) & E1000_STATUS_LU))
302 *data = 1;
303
304 return *data;
305}
306
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000307static void igbvf_diag_test(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000308 struct ethtool_test *eth_test, u64 *data)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000309{
310 struct igbvf_adapter *adapter = netdev_priv(netdev);
311
312 set_bit(__IGBVF_TESTING, &adapter->state);
313
Jeff Kirsher03405012015-01-21 09:57:50 +0000314 /* Link test performed before hardware reset so autoneg doesn't
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000315 * interfere with test result
316 */
317 if (igbvf_link_test(adapter, &data[0]))
318 eth_test->flags |= ETH_TEST_FL_FAILED;
319
320 clear_bit(__IGBVF_TESTING, &adapter->state);
321 msleep_interruptible(4 * 1000);
322}
323
324static void igbvf_get_wol(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000325 struct ethtool_wolinfo *wol)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000326{
327 wol->supported = 0;
328 wol->wolopts = 0;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000329}
330
331static int igbvf_set_wol(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000332 struct ethtool_wolinfo *wol)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000333{
334 return -EOPNOTSUPP;
335}
336
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000337static int igbvf_get_coalesce(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000338 struct ethtool_coalesce *ec)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000339{
340 struct igbvf_adapter *adapter = netdev_priv(netdev);
341
Mitch A Williamsab50a2a2012-01-14 08:10:50 +0000342 if (adapter->requested_itr <= 3)
343 ec->rx_coalesce_usecs = adapter->requested_itr;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000344 else
Mitch A Williamsab50a2a2012-01-14 08:10:50 +0000345 ec->rx_coalesce_usecs = adapter->current_itr >> 2;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000346
347 return 0;
348}
349
350static int igbvf_set_coalesce(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000351 struct ethtool_coalesce *ec)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000352{
353 struct igbvf_adapter *adapter = netdev_priv(netdev);
354 struct e1000_hw *hw = &adapter->hw;
355
Mitch A Williams0e90b492012-06-30 00:23:19 +0000356 if ((ec->rx_coalesce_usecs >= IGBVF_MIN_ITR_USECS) &&
Jeff Kirsher03405012015-01-21 09:57:50 +0000357 (ec->rx_coalesce_usecs <= IGBVF_MAX_ITR_USECS)) {
Mitch A Williamsab50a2a2012-01-14 08:10:50 +0000358 adapter->current_itr = ec->rx_coalesce_usecs << 2;
359 adapter->requested_itr = 1000000000 /
360 (adapter->current_itr * 256);
Mitch A Williams0e90b492012-06-30 00:23:19 +0000361 } else if ((ec->rx_coalesce_usecs == 3) ||
362 (ec->rx_coalesce_usecs == 2)) {
363 adapter->current_itr = IGBVF_START_ITR;
364 adapter->requested_itr = ec->rx_coalesce_usecs;
365 } else if (ec->rx_coalesce_usecs == 0) {
Jeff Kirsher03405012015-01-21 09:57:50 +0000366 /* The user's desire is to turn off interrupt throttling
Mitch A Williams0e90b492012-06-30 00:23:19 +0000367 * altogether, but due to HW limitations, we can't do that.
368 * Instead we set a very small value in EITR, which would
369 * allow ~967k interrupts per second, but allow the adapter's
370 * internal clocking to still function properly.
371 */
372 adapter->current_itr = 4;
373 adapter->requested_itr = 1000000000 /
374 (adapter->current_itr * 256);
Jeff Kirsher03405012015-01-21 09:57:50 +0000375 } else {
Mitch A Williams0e90b492012-06-30 00:23:19 +0000376 return -EINVAL;
Jeff Kirsher03405012015-01-21 09:57:50 +0000377 }
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000378
Mitch A Williamsab50a2a2012-01-14 08:10:50 +0000379 writel(adapter->current_itr,
380 hw->hw_addr + adapter->rx_ring->itr_register);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000381
382 return 0;
383}
384
385static int igbvf_nway_reset(struct net_device *netdev)
386{
387 struct igbvf_adapter *adapter = netdev_priv(netdev);
Jeff Kirsher03405012015-01-21 09:57:50 +0000388
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000389 if (netif_running(netdev))
390 igbvf_reinit_locked(adapter);
391 return 0;
392}
393
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000394static void igbvf_get_ethtool_stats(struct net_device *netdev,
Jeff Kirsher03405012015-01-21 09:57:50 +0000395 struct ethtool_stats *stats,
396 u64 *data)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000397{
398 struct igbvf_adapter *adapter = netdev_priv(netdev);
399 int i;
400
401 igbvf_update_stats(adapter);
402 for (i = 0; i < IGBVF_GLOBAL_STATS_LEN; i++) {
403 char *p = (char *)adapter +
Jeff Kirsher03405012015-01-21 09:57:50 +0000404 igbvf_gstrings_stats[i].stat_offset;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000405 char *b = (char *)adapter +
Jeff Kirsher03405012015-01-21 09:57:50 +0000406 igbvf_gstrings_stats[i].base_stat_offset;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000407 data[i] = ((igbvf_gstrings_stats[i].sizeof_stat ==
Jeff Kirsher03405012015-01-21 09:57:50 +0000408 sizeof(u64)) ? (*(u64 *)p - *(u64 *)b) :
409 (*(u32 *)p - *(u32 *)b));
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000410 }
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000411}
412
Ben Hutchings15f0a392009-10-01 11:58:24 +0000413static int igbvf_get_sset_count(struct net_device *dev, int stringset)
414{
Jeff Kirsher03405012015-01-21 09:57:50 +0000415 switch (stringset) {
Ben Hutchings15f0a392009-10-01 11:58:24 +0000416 case ETH_SS_TEST:
417 return IGBVF_TEST_LEN;
418 case ETH_SS_STATS:
419 return IGBVF_GLOBAL_STATS_LEN;
420 default:
421 return -EINVAL;
422 }
423}
424
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000425static void igbvf_get_strings(struct net_device *netdev, u32 stringset,
Jeff Kirsher03405012015-01-21 09:57:50 +0000426 u8 *data)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000427{
428 u8 *p = data;
429 int i;
430
431 switch (stringset) {
432 case ETH_SS_TEST:
433 memcpy(data, *igbvf_gstrings_test, sizeof(igbvf_gstrings_test));
434 break;
435 case ETH_SS_STATS:
436 for (i = 0; i < IGBVF_GLOBAL_STATS_LEN; i++) {
437 memcpy(p, igbvf_gstrings_stats[i].stat_string,
438 ETH_GSTRING_LEN);
439 p += ETH_GSTRING_LEN;
440 }
441 break;
442 }
443}
444
445static const struct ethtool_ops igbvf_ethtool_ops = {
446 .get_settings = igbvf_get_settings,
447 .set_settings = igbvf_set_settings,
448 .get_drvinfo = igbvf_get_drvinfo,
449 .get_regs_len = igbvf_get_regs_len,
450 .get_regs = igbvf_get_regs,
451 .get_wol = igbvf_get_wol,
452 .set_wol = igbvf_set_wol,
453 .get_msglevel = igbvf_get_msglevel,
454 .set_msglevel = igbvf_set_msglevel,
455 .nway_reset = igbvf_nway_reset,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +0000456 .get_link = ethtool_op_get_link,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000457 .get_eeprom_len = igbvf_get_eeprom_len,
458 .get_eeprom = igbvf_get_eeprom,
459 .set_eeprom = igbvf_set_eeprom,
460 .get_ringparam = igbvf_get_ringparam,
461 .set_ringparam = igbvf_set_ringparam,
462 .get_pauseparam = igbvf_get_pauseparam,
463 .set_pauseparam = igbvf_set_pauseparam,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000464 .self_test = igbvf_diag_test,
Ben Hutchings15f0a392009-10-01 11:58:24 +0000465 .get_sset_count = igbvf_get_sset_count,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000466 .get_strings = igbvf_get_strings,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000467 .get_ethtool_stats = igbvf_get_ethtool_stats,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000468 .get_coalesce = igbvf_get_coalesce,
469 .set_coalesce = igbvf_set_coalesce,
470};
471
472void igbvf_set_ethtool_ops(struct net_device *netdev)
473{
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +0000474 netdev->ethtool_ops = &igbvf_ethtool_ops;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000475}