blob: e60f1c6957af9396679b40d67489573c732bacd6 [file] [log] [blame]
Alexander Duyckd4e0fe02009-04-07 14:37:34 +00001/*******************************************************************************
2
3 Intel(R) 82576 Virtual Function Linux driver
Greg Rose2c20ebb2010-11-16 19:41:35 -08004 Copyright(c) 2009 - 2010 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
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28/* ethtool support for igbvf */
29
30#include <linux/netdevice.h>
31#include <linux/ethtool.h>
32#include <linux/pci.h>
33#include <linux/vmalloc.h>
34#include <linux/delay.h>
35
36#include "igbvf.h"
37#include <linux/if_vlan.h>
38
39
40struct igbvf_stats {
41 char stat_string[ETH_GSTRING_LEN];
42 int sizeof_stat;
43 int stat_offset;
44 int base_stat_offset;
45};
46
47#define IGBVF_STAT(current, base) \
48 sizeof(((struct igbvf_adapter *)0)->current), \
49 offsetof(struct igbvf_adapter, current), \
50 offsetof(struct igbvf_adapter, base)
51
52static const struct igbvf_stats igbvf_gstrings_stats[] = {
53 { "rx_packets", IGBVF_STAT(stats.gprc, stats.base_gprc) },
54 { "tx_packets", IGBVF_STAT(stats.gptc, stats.base_gptc) },
55 { "rx_bytes", IGBVF_STAT(stats.gorc, stats.base_gorc) },
56 { "tx_bytes", IGBVF_STAT(stats.gotc, stats.base_gotc) },
57 { "multicast", IGBVF_STAT(stats.mprc, stats.base_mprc) },
58 { "lbrx_bytes", IGBVF_STAT(stats.gorlbc, stats.base_gorlbc) },
59 { "lbrx_packets", IGBVF_STAT(stats.gprlbc, stats.base_gprlbc) },
60 { "tx_restart_queue", IGBVF_STAT(restart_queue, zero_base) },
61 { "rx_long_byte_count", IGBVF_STAT(stats.gorc, stats.base_gorc) },
62 { "rx_csum_offload_good", IGBVF_STAT(hw_csum_good, zero_base) },
63 { "rx_csum_offload_errors", IGBVF_STAT(hw_csum_err, zero_base) },
64 { "rx_header_split", IGBVF_STAT(rx_hdr_split, zero_base) },
65 { "alloc_rx_buff_failed", IGBVF_STAT(alloc_rx_buff_failed, zero_base) },
66};
67
68#define IGBVF_GLOBAL_STATS_LEN ARRAY_SIZE(igbvf_gstrings_stats)
69
70static const char igbvf_gstrings_test[][ETH_GSTRING_LEN] = {
71 "Link test (on/offline)"
72};
73
74#define IGBVF_TEST_LEN ARRAY_SIZE(igbvf_gstrings_test)
75
76static int igbvf_get_settings(struct net_device *netdev,
77 struct ethtool_cmd *ecmd)
78{
79 struct igbvf_adapter *adapter = netdev_priv(netdev);
80 struct e1000_hw *hw = &adapter->hw;
81 u32 status;
82
83 ecmd->supported = SUPPORTED_1000baseT_Full;
84
85 ecmd->advertising = ADVERTISED_1000baseT_Full;
86
87 ecmd->port = -1;
88 ecmd->transceiver = XCVR_DUMMY1;
89
90 status = er32(STATUS);
91 if (status & E1000_STATUS_LU) {
92 if (status & E1000_STATUS_SPEED_1000)
David Decotigny70739492011-04-27 18:32:40 +000093 ethtool_cmd_speed_set(ecmd, SPEED_1000);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000094 else if (status & E1000_STATUS_SPEED_100)
David Decotigny70739492011-04-27 18:32:40 +000095 ethtool_cmd_speed_set(ecmd, SPEED_100);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000096 else
David Decotigny70739492011-04-27 18:32:40 +000097 ethtool_cmd_speed_set(ecmd, SPEED_10);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000098
99 if (status & E1000_STATUS_FD)
100 ecmd->duplex = DUPLEX_FULL;
101 else
102 ecmd->duplex = DUPLEX_HALF;
103 } else {
David Decotigny70739492011-04-27 18:32:40 +0000104 ethtool_cmd_speed_set(ecmd, -1);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000105 ecmd->duplex = -1;
106 }
107
108 ecmd->autoneg = AUTONEG_DISABLE;
109
110 return 0;
111}
112
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000113static int igbvf_set_settings(struct net_device *netdev,
114 struct ethtool_cmd *ecmd)
115{
116 return -EOPNOTSUPP;
117}
118
119static void igbvf_get_pauseparam(struct net_device *netdev,
120 struct ethtool_pauseparam *pause)
121{
122 return;
123}
124
125static int igbvf_set_pauseparam(struct net_device *netdev,
126 struct ethtool_pauseparam *pause)
127{
128 return -EOPNOTSUPP;
129}
130
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000131static u32 igbvf_get_msglevel(struct net_device *netdev)
132{
133 struct igbvf_adapter *adapter = netdev_priv(netdev);
134 return adapter->msg_enable;
135}
136
137static void igbvf_set_msglevel(struct net_device *netdev, u32 data)
138{
139 struct igbvf_adapter *adapter = netdev_priv(netdev);
140 adapter->msg_enable = data;
141}
142
143static int igbvf_get_regs_len(struct net_device *netdev)
144{
145#define IGBVF_REGS_LEN 8
146 return IGBVF_REGS_LEN * sizeof(u32);
147}
148
149static void igbvf_get_regs(struct net_device *netdev,
150 struct ethtool_regs *regs, void *p)
151{
152 struct igbvf_adapter *adapter = netdev_priv(netdev);
153 struct e1000_hw *hw = &adapter->hw;
154 u32 *regs_buff = p;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000155
156 memset(p, 0, IGBVF_REGS_LEN * sizeof(u32));
157
Sergei Shtylyovff938e42011-02-28 11:57:33 -0800158 regs->version = (1 << 24) | (adapter->pdev->revision << 16) |
159 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,
179 struct ethtool_eeprom *eeprom, u8 *bytes)
180{
181 return -EOPNOTSUPP;
182}
183
184static int igbvf_set_eeprom(struct net_device *netdev,
185 struct ethtool_eeprom *eeprom, u8 *bytes)
186{
187 return -EOPNOTSUPP;
188}
189
190static void igbvf_get_drvinfo(struct net_device *netdev,
191 struct ethtool_drvinfo *drvinfo)
192{
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));
198 strlcpy(drvinfo->fw_version, "N/A",
199 sizeof(drvinfo->fw_version));
200 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
201 sizeof(drvinfo->bus_info));
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000202 drvinfo->regdump_len = igbvf_get_regs_len(netdev);
203 drvinfo->eedump_len = igbvf_get_eeprom_len(netdev);
204}
205
206static void igbvf_get_ringparam(struct net_device *netdev,
207 struct ethtool_ringparam *ring)
208{
209 struct igbvf_adapter *adapter = netdev_priv(netdev);
210 struct igbvf_ring *tx_ring = adapter->tx_ring;
211 struct igbvf_ring *rx_ring = adapter->rx_ring;
212
213 ring->rx_max_pending = IGBVF_MAX_RXD;
214 ring->tx_max_pending = IGBVF_MAX_TXD;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000215 ring->rx_pending = rx_ring->count;
216 ring->tx_pending = tx_ring->count;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000217}
218
219static int igbvf_set_ringparam(struct net_device *netdev,
220 struct ethtool_ringparam *ring)
221{
222 struct igbvf_adapter *adapter = netdev_priv(netdev);
223 struct igbvf_ring *temp_ring;
Alexander Duyck39305962009-10-26 11:32:25 +0000224 int err = 0;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000225 u32 new_rx_count, new_tx_count;
226
227 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
228 return -EINVAL;
229
230 new_rx_count = max(ring->rx_pending, (u32)IGBVF_MIN_RXD);
231 new_rx_count = min(new_rx_count, (u32)IGBVF_MAX_RXD);
232 new_rx_count = ALIGN(new_rx_count, REQ_RX_DESCRIPTOR_MULTIPLE);
233
234 new_tx_count = max(ring->tx_pending, (u32)IGBVF_MIN_TXD);
235 new_tx_count = min(new_tx_count, (u32)IGBVF_MAX_TXD);
236 new_tx_count = ALIGN(new_tx_count, REQ_TX_DESCRIPTOR_MULTIPLE);
237
238 if ((new_tx_count == adapter->tx_ring->count) &&
239 (new_rx_count == adapter->rx_ring->count)) {
240 /* nothing to do */
241 return 0;
242 }
243
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000244 while (test_and_set_bit(__IGBVF_RESETTING, &adapter->state))
245 msleep(1);
246
Alexander Duyck39305962009-10-26 11:32:25 +0000247 if (!netif_running(adapter->netdev)) {
248 adapter->tx_ring->count = new_tx_count;
249 adapter->rx_ring->count = new_rx_count;
250 goto clear_reset;
251 }
252
253 temp_ring = vmalloc(sizeof(struct igbvf_ring));
254 if (!temp_ring) {
255 err = -ENOMEM;
256 goto clear_reset;
257 }
258
259 igbvf_down(adapter);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000260
261 /*
262 * We can't just free everything and then setup again,
263 * because the ISRs in MSI-X mode get passed pointers
264 * to the tx and rx ring structs.
265 */
266 if (new_tx_count != adapter->tx_ring->count) {
267 memcpy(temp_ring, adapter->tx_ring, sizeof(struct igbvf_ring));
268
269 temp_ring->count = new_tx_count;
270 err = igbvf_setup_tx_resources(adapter, temp_ring);
271 if (err)
272 goto err_setup;
273
274 igbvf_free_tx_resources(adapter->tx_ring);
275
276 memcpy(adapter->tx_ring, temp_ring, sizeof(struct igbvf_ring));
277 }
278
279 if (new_rx_count != adapter->rx_ring->count) {
280 memcpy(temp_ring, adapter->rx_ring, sizeof(struct igbvf_ring));
281
282 temp_ring->count = new_rx_count;
283 err = igbvf_setup_rx_resources(adapter, temp_ring);
284 if (err)
285 goto err_setup;
286
287 igbvf_free_rx_resources(adapter->rx_ring);
288
289 memcpy(adapter->rx_ring, temp_ring,sizeof(struct igbvf_ring));
290 }
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000291err_setup:
Alexander Duyck39305962009-10-26 11:32:25 +0000292 igbvf_up(adapter);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000293 vfree(temp_ring);
Alexander Duyck39305962009-10-26 11:32:25 +0000294clear_reset:
295 clear_bit(__IGBVF_RESETTING, &adapter->state);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000296 return err;
297}
298
299static int igbvf_link_test(struct igbvf_adapter *adapter, u64 *data)
300{
301 struct e1000_hw *hw = &adapter->hw;
302 *data = 0;
303
304 hw->mac.ops.check_for_link(hw);
305
306 if (!(er32(STATUS) & E1000_STATUS_LU))
307 *data = 1;
308
309 return *data;
310}
311
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000312static void igbvf_diag_test(struct net_device *netdev,
313 struct ethtool_test *eth_test, u64 *data)
314{
315 struct igbvf_adapter *adapter = netdev_priv(netdev);
316
317 set_bit(__IGBVF_TESTING, &adapter->state);
318
319 /*
320 * Link test performed before hardware reset so autoneg doesn't
321 * interfere with test result
322 */
323 if (igbvf_link_test(adapter, &data[0]))
324 eth_test->flags |= ETH_TEST_FL_FAILED;
325
326 clear_bit(__IGBVF_TESTING, &adapter->state);
327 msleep_interruptible(4 * 1000);
328}
329
330static void igbvf_get_wol(struct net_device *netdev,
331 struct ethtool_wolinfo *wol)
332{
333 wol->supported = 0;
334 wol->wolopts = 0;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000335}
336
337static int igbvf_set_wol(struct net_device *netdev,
338 struct ethtool_wolinfo *wol)
339{
340 return -EOPNOTSUPP;
341}
342
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000343static int igbvf_get_coalesce(struct net_device *netdev,
344 struct ethtool_coalesce *ec)
345{
346 struct igbvf_adapter *adapter = netdev_priv(netdev);
347
348 if (adapter->itr_setting <= 3)
349 ec->rx_coalesce_usecs = adapter->itr_setting;
350 else
351 ec->rx_coalesce_usecs = adapter->itr_setting >> 2;
352
353 return 0;
354}
355
356static int igbvf_set_coalesce(struct net_device *netdev,
357 struct ethtool_coalesce *ec)
358{
359 struct igbvf_adapter *adapter = netdev_priv(netdev);
360 struct e1000_hw *hw = &adapter->hw;
361
362 if ((ec->rx_coalesce_usecs > IGBVF_MAX_ITR_USECS) ||
363 ((ec->rx_coalesce_usecs > 3) &&
364 (ec->rx_coalesce_usecs < IGBVF_MIN_ITR_USECS)) ||
365 (ec->rx_coalesce_usecs == 2))
366 return -EINVAL;
367
368 /* convert to rate of irq's per second */
369 if (ec->rx_coalesce_usecs && ec->rx_coalesce_usecs <= 3) {
370 adapter->itr = IGBVF_START_ITR;
371 adapter->itr_setting = ec->rx_coalesce_usecs;
372 } else {
373 adapter->itr = ec->rx_coalesce_usecs << 2;
374 adapter->itr_setting = adapter->itr;
375 }
376
377 writel(adapter->itr,
378 hw->hw_addr + adapter->rx_ring[0].itr_register);
379
380 return 0;
381}
382
383static int igbvf_nway_reset(struct net_device *netdev)
384{
385 struct igbvf_adapter *adapter = netdev_priv(netdev);
386 if (netif_running(netdev))
387 igbvf_reinit_locked(adapter);
388 return 0;
389}
390
391
392static void igbvf_get_ethtool_stats(struct net_device *netdev,
393 struct ethtool_stats *stats,
394 u64 *data)
395{
396 struct igbvf_adapter *adapter = netdev_priv(netdev);
397 int i;
398
399 igbvf_update_stats(adapter);
400 for (i = 0; i < IGBVF_GLOBAL_STATS_LEN; i++) {
401 char *p = (char *)adapter +
402 igbvf_gstrings_stats[i].stat_offset;
403 char *b = (char *)adapter +
404 igbvf_gstrings_stats[i].base_stat_offset;
405 data[i] = ((igbvf_gstrings_stats[i].sizeof_stat ==
406 sizeof(u64)) ? (*(u64 *)p - *(u64 *)b) :
407 (*(u32 *)p - *(u32 *)b));
408 }
409
410}
411
Ben Hutchings15f0a392009-10-01 11:58:24 +0000412static int igbvf_get_sset_count(struct net_device *dev, int stringset)
413{
414 switch(stringset) {
415 case ETH_SS_TEST:
416 return IGBVF_TEST_LEN;
417 case ETH_SS_STATS:
418 return IGBVF_GLOBAL_STATS_LEN;
419 default:
420 return -EINVAL;
421 }
422}
423
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000424static void igbvf_get_strings(struct net_device *netdev, u32 stringset,
425 u8 *data)
426{
427 u8 *p = data;
428 int i;
429
430 switch (stringset) {
431 case ETH_SS_TEST:
432 memcpy(data, *igbvf_gstrings_test, sizeof(igbvf_gstrings_test));
433 break;
434 case ETH_SS_STATS:
435 for (i = 0; i < IGBVF_GLOBAL_STATS_LEN; i++) {
436 memcpy(p, igbvf_gstrings_stats[i].stat_string,
437 ETH_GSTRING_LEN);
438 p += ETH_GSTRING_LEN;
439 }
440 break;
441 }
442}
443
444static const struct ethtool_ops igbvf_ethtool_ops = {
445 .get_settings = igbvf_get_settings,
446 .set_settings = igbvf_set_settings,
447 .get_drvinfo = igbvf_get_drvinfo,
448 .get_regs_len = igbvf_get_regs_len,
449 .get_regs = igbvf_get_regs,
450 .get_wol = igbvf_get_wol,
451 .set_wol = igbvf_set_wol,
452 .get_msglevel = igbvf_get_msglevel,
453 .set_msglevel = igbvf_set_msglevel,
454 .nway_reset = igbvf_nway_reset,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +0000455 .get_link = ethtool_op_get_link,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000456 .get_eeprom_len = igbvf_get_eeprom_len,
457 .get_eeprom = igbvf_get_eeprom,
458 .set_eeprom = igbvf_set_eeprom,
459 .get_ringparam = igbvf_get_ringparam,
460 .set_ringparam = igbvf_set_ringparam,
461 .get_pauseparam = igbvf_get_pauseparam,
462 .set_pauseparam = igbvf_set_pauseparam,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000463 .self_test = igbvf_diag_test,
Ben Hutchings15f0a392009-10-01 11:58:24 +0000464 .get_sset_count = igbvf_get_sset_count,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000465 .get_strings = igbvf_get_strings,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000466 .get_ethtool_stats = igbvf_get_ethtool_stats,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000467 .get_coalesce = igbvf_get_coalesce,
468 .set_coalesce = igbvf_set_coalesce,
469};
470
471void igbvf_set_ethtool_ops(struct net_device *netdev)
472{
473 /* have to "undeclare" const on this struct to remove warnings */
474 SET_ETHTOOL_OPS(netdev, (struct ethtool_ops *)&igbvf_ethtool_ops);
475}