1 /*******************************************************************************
3 Intel 82599 Virtual Function driver
4 Copyright(c) 1999 - 2015 Intel Corporation.
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.
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
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, see <http://www.gnu.org/licenses/>.
18 The full GNU General Public License is included in this distribution in
19 the file called "COPYING".
22 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25 *******************************************************************************/
27 /* ethtool support for ixgbevf */
29 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31 #include <linux/types.h>
32 #include <linux/module.h>
33 #include <linux/slab.h>
34 #include <linux/pci.h>
35 #include <linux/netdevice.h>
36 #include <linux/ethtool.h>
37 #include <linux/vmalloc.h>
38 #include <linux/if_vlan.h>
39 #include <linux/uaccess.h>
43 #define IXGBE_ALL_RAR_ENTRIES 16
45 enum {NETDEV_STATS, IXGBEVF_STATS};
48 char stat_string[ETH_GSTRING_LEN];
54 #define IXGBEVF_STAT(_name, _stat) { \
55 .stat_string = _name, \
56 .type = IXGBEVF_STATS, \
57 .sizeof_stat = FIELD_SIZEOF(struct ixgbevf_adapter, _stat), \
58 .stat_offset = offsetof(struct ixgbevf_adapter, _stat) \
61 #define IXGBEVF_NETDEV_STAT(_net_stat) { \
62 .stat_string = #_net_stat, \
63 .type = NETDEV_STATS, \
64 .sizeof_stat = FIELD_SIZEOF(struct net_device_stats, _net_stat), \
65 .stat_offset = offsetof(struct net_device_stats, _net_stat) \
68 static struct ixgbe_stats ixgbevf_gstrings_stats[] = {
69 IXGBEVF_NETDEV_STAT(rx_packets),
70 IXGBEVF_NETDEV_STAT(tx_packets),
71 IXGBEVF_NETDEV_STAT(rx_bytes),
72 IXGBEVF_NETDEV_STAT(tx_bytes),
73 IXGBEVF_STAT("tx_busy", tx_busy),
74 IXGBEVF_STAT("tx_restart_queue", restart_queue),
75 IXGBEVF_STAT("tx_timeout_count", tx_timeout_count),
76 IXGBEVF_NETDEV_STAT(multicast),
77 IXGBEVF_STAT("rx_csum_offload_errors", hw_csum_rx_error),
80 #define IXGBEVF_QUEUE_STATS_LEN ( \
81 (((struct ixgbevf_adapter *)netdev_priv(netdev))->num_tx_queues + \
82 ((struct ixgbevf_adapter *)netdev_priv(netdev))->num_rx_queues) * \
83 (sizeof(struct ixgbevf_stats) / sizeof(u64)))
84 #define IXGBEVF_GLOBAL_STATS_LEN ARRAY_SIZE(ixgbevf_gstrings_stats)
86 #define IXGBEVF_STATS_LEN (IXGBEVF_GLOBAL_STATS_LEN + IXGBEVF_QUEUE_STATS_LEN)
87 static const char ixgbe_gstrings_test[][ETH_GSTRING_LEN] = {
88 "Register test (offline)",
89 "Link test (on/offline)"
92 #define IXGBEVF_TEST_LEN (sizeof(ixgbe_gstrings_test) / ETH_GSTRING_LEN)
94 static int ixgbevf_get_settings(struct net_device *netdev,
95 struct ethtool_cmd *ecmd)
97 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
98 struct ixgbe_hw *hw = &adapter->hw;
102 ecmd->supported = SUPPORTED_10000baseT_Full;
103 ecmd->autoneg = AUTONEG_DISABLE;
104 ecmd->transceiver = XCVR_DUMMY1;
107 hw->mac.get_link_status = 1;
108 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
111 __u32 speed = SPEED_10000;
113 switch (link_speed) {
114 case IXGBE_LINK_SPEED_10GB_FULL:
117 case IXGBE_LINK_SPEED_1GB_FULL:
120 case IXGBE_LINK_SPEED_100_FULL:
125 ethtool_cmd_speed_set(ecmd, speed);
126 ecmd->duplex = DUPLEX_FULL;
128 ethtool_cmd_speed_set(ecmd, SPEED_UNKNOWN);
129 ecmd->duplex = DUPLEX_UNKNOWN;
135 static u32 ixgbevf_get_msglevel(struct net_device *netdev)
137 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
139 return adapter->msg_enable;
142 static void ixgbevf_set_msglevel(struct net_device *netdev, u32 data)
144 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
146 adapter->msg_enable = data;
149 #define IXGBE_GET_STAT(_A_, _R_) (_A_->stats._R_)
151 static int ixgbevf_get_regs_len(struct net_device *netdev)
153 #define IXGBE_REGS_LEN 45
154 return IXGBE_REGS_LEN * sizeof(u32);
157 static void ixgbevf_get_regs(struct net_device *netdev,
158 struct ethtool_regs *regs,
161 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
162 struct ixgbe_hw *hw = &adapter->hw;
164 u32 regs_len = ixgbevf_get_regs_len(netdev);
167 memset(p, 0, regs_len);
169 /* generate a number suitable for ethtool's register version */
170 regs->version = (1u << 24) | (hw->revision_id << 16) | hw->device_id;
172 /* General Registers */
173 regs_buff[0] = IXGBE_READ_REG(hw, IXGBE_VFCTRL);
174 regs_buff[1] = IXGBE_READ_REG(hw, IXGBE_VFSTATUS);
175 regs_buff[2] = IXGBE_READ_REG(hw, IXGBE_VFLINKS);
176 regs_buff[3] = IXGBE_READ_REG(hw, IXGBE_VFRXMEMWRAP);
177 regs_buff[4] = IXGBE_READ_REG(hw, IXGBE_VFFRTIMER);
180 /* don't read EICR because it can clear interrupt causes, instead
181 * read EICS which is a shadow but doesn't clear EICR
183 regs_buff[5] = IXGBE_READ_REG(hw, IXGBE_VTEICS);
184 regs_buff[6] = IXGBE_READ_REG(hw, IXGBE_VTEICS);
185 regs_buff[7] = IXGBE_READ_REG(hw, IXGBE_VTEIMS);
186 regs_buff[8] = IXGBE_READ_REG(hw, IXGBE_VTEIMC);
187 regs_buff[9] = IXGBE_READ_REG(hw, IXGBE_VTEIAC);
188 regs_buff[10] = IXGBE_READ_REG(hw, IXGBE_VTEIAM);
189 regs_buff[11] = IXGBE_READ_REG(hw, IXGBE_VTEITR(0));
190 regs_buff[12] = IXGBE_READ_REG(hw, IXGBE_VTIVAR(0));
191 regs_buff[13] = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC);
194 for (i = 0; i < 2; i++)
195 regs_buff[14 + i] = IXGBE_READ_REG(hw, IXGBE_VFRDBAL(i));
196 for (i = 0; i < 2; i++)
197 regs_buff[16 + i] = IXGBE_READ_REG(hw, IXGBE_VFRDBAH(i));
198 for (i = 0; i < 2; i++)
199 regs_buff[18 + i] = IXGBE_READ_REG(hw, IXGBE_VFRDLEN(i));
200 for (i = 0; i < 2; i++)
201 regs_buff[20 + i] = IXGBE_READ_REG(hw, IXGBE_VFRDH(i));
202 for (i = 0; i < 2; i++)
203 regs_buff[22 + i] = IXGBE_READ_REG(hw, IXGBE_VFRDT(i));
204 for (i = 0; i < 2; i++)
205 regs_buff[24 + i] = IXGBE_READ_REG(hw, IXGBE_VFRXDCTL(i));
206 for (i = 0; i < 2; i++)
207 regs_buff[26 + i] = IXGBE_READ_REG(hw, IXGBE_VFSRRCTL(i));
210 regs_buff[28] = IXGBE_READ_REG(hw, IXGBE_VFPSRTYPE);
213 for (i = 0; i < 2; i++)
214 regs_buff[29 + i] = IXGBE_READ_REG(hw, IXGBE_VFTDBAL(i));
215 for (i = 0; i < 2; i++)
216 regs_buff[31 + i] = IXGBE_READ_REG(hw, IXGBE_VFTDBAH(i));
217 for (i = 0; i < 2; i++)
218 regs_buff[33 + i] = IXGBE_READ_REG(hw, IXGBE_VFTDLEN(i));
219 for (i = 0; i < 2; i++)
220 regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_VFTDH(i));
221 for (i = 0; i < 2; i++)
222 regs_buff[37 + i] = IXGBE_READ_REG(hw, IXGBE_VFTDT(i));
223 for (i = 0; i < 2; i++)
224 regs_buff[39 + i] = IXGBE_READ_REG(hw, IXGBE_VFTXDCTL(i));
225 for (i = 0; i < 2; i++)
226 regs_buff[41 + i] = IXGBE_READ_REG(hw, IXGBE_VFTDWBAL(i));
227 for (i = 0; i < 2; i++)
228 regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_VFTDWBAH(i));
231 static void ixgbevf_get_drvinfo(struct net_device *netdev,
232 struct ethtool_drvinfo *drvinfo)
234 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
236 strlcpy(drvinfo->driver, ixgbevf_driver_name, sizeof(drvinfo->driver));
237 strlcpy(drvinfo->version, ixgbevf_driver_version,
238 sizeof(drvinfo->version));
239 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
240 sizeof(drvinfo->bus_info));
243 static void ixgbevf_get_ringparam(struct net_device *netdev,
244 struct ethtool_ringparam *ring)
246 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
248 ring->rx_max_pending = IXGBEVF_MAX_RXD;
249 ring->tx_max_pending = IXGBEVF_MAX_TXD;
250 ring->rx_pending = adapter->rx_ring_count;
251 ring->tx_pending = adapter->tx_ring_count;
254 static int ixgbevf_set_ringparam(struct net_device *netdev,
255 struct ethtool_ringparam *ring)
257 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
258 struct ixgbevf_ring *tx_ring = NULL, *rx_ring = NULL;
259 u32 new_rx_count, new_tx_count;
262 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
265 new_tx_count = max_t(u32, ring->tx_pending, IXGBEVF_MIN_TXD);
266 new_tx_count = min_t(u32, new_tx_count, IXGBEVF_MAX_TXD);
267 new_tx_count = ALIGN(new_tx_count, IXGBE_REQ_TX_DESCRIPTOR_MULTIPLE);
269 new_rx_count = max_t(u32, ring->rx_pending, IXGBEVF_MIN_RXD);
270 new_rx_count = min_t(u32, new_rx_count, IXGBEVF_MAX_RXD);
271 new_rx_count = ALIGN(new_rx_count, IXGBE_REQ_RX_DESCRIPTOR_MULTIPLE);
273 /* if nothing to do return success */
274 if ((new_tx_count == adapter->tx_ring_count) &&
275 (new_rx_count == adapter->rx_ring_count))
278 while (test_and_set_bit(__IXGBEVF_RESETTING, &adapter->state))
279 usleep_range(1000, 2000);
281 if (!netif_running(adapter->netdev)) {
282 for (i = 0; i < adapter->num_tx_queues; i++)
283 adapter->tx_ring[i]->count = new_tx_count;
284 for (i = 0; i < adapter->num_rx_queues; i++)
285 adapter->rx_ring[i]->count = new_rx_count;
286 adapter->tx_ring_count = new_tx_count;
287 adapter->rx_ring_count = new_rx_count;
291 if (new_tx_count != adapter->tx_ring_count) {
292 tx_ring = vmalloc(adapter->num_tx_queues * sizeof(*tx_ring));
298 for (i = 0; i < adapter->num_tx_queues; i++) {
299 /* clone ring and setup updated count */
300 tx_ring[i] = *adapter->tx_ring[i];
301 tx_ring[i].count = new_tx_count;
302 err = ixgbevf_setup_tx_resources(&tx_ring[i]);
306 ixgbevf_free_tx_resources(&tx_ring[i]);
317 if (new_rx_count != adapter->rx_ring_count) {
318 rx_ring = vmalloc(adapter->num_rx_queues * sizeof(*rx_ring));
324 for (i = 0; i < adapter->num_rx_queues; i++) {
325 /* clone ring and setup updated count */
326 rx_ring[i] = *adapter->rx_ring[i];
327 rx_ring[i].count = new_rx_count;
328 err = ixgbevf_setup_rx_resources(&rx_ring[i]);
332 ixgbevf_free_rx_resources(&rx_ring[i]);
343 /* bring interface down to prepare for update */
344 ixgbevf_down(adapter);
348 for (i = 0; i < adapter->num_tx_queues; i++) {
349 ixgbevf_free_tx_resources(adapter->tx_ring[i]);
350 *adapter->tx_ring[i] = tx_ring[i];
352 adapter->tx_ring_count = new_tx_count;
360 for (i = 0; i < adapter->num_rx_queues; i++) {
361 ixgbevf_free_rx_resources(adapter->rx_ring[i]);
362 *adapter->rx_ring[i] = rx_ring[i];
364 adapter->rx_ring_count = new_rx_count;
370 /* restore interface using new values */
374 /* free Tx resources if Rx error is encountered */
376 for (i = 0; i < adapter->num_tx_queues; i++)
377 ixgbevf_free_tx_resources(&tx_ring[i]);
381 clear_bit(__IXGBEVF_RESETTING, &adapter->state);
385 static int ixgbevf_get_sset_count(struct net_device *netdev, int stringset)
389 return IXGBEVF_TEST_LEN;
391 return IXGBEVF_STATS_LEN;
397 static void ixgbevf_get_ethtool_stats(struct net_device *netdev,
398 struct ethtool_stats *stats, u64 *data)
400 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
401 struct rtnl_link_stats64 temp;
402 const struct rtnl_link_stats64 *net_stats;
404 struct ixgbevf_ring *ring;
408 ixgbevf_update_stats(adapter);
409 net_stats = dev_get_stats(netdev, &temp);
410 for (i = 0; i < IXGBEVF_GLOBAL_STATS_LEN; i++) {
411 switch (ixgbevf_gstrings_stats[i].type) {
413 p = (char *)net_stats +
414 ixgbevf_gstrings_stats[i].stat_offset;
417 p = (char *)adapter +
418 ixgbevf_gstrings_stats[i].stat_offset;
425 data[i] = (ixgbevf_gstrings_stats[i].sizeof_stat ==
426 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
429 /* populate Tx queue data */
430 for (j = 0; j < adapter->num_tx_queues; j++) {
431 ring = adapter->tx_ring[j];
435 #ifdef BP_EXTENDED_STATS
444 start = u64_stats_fetch_begin_irq(&ring->syncp);
445 data[i] = ring->stats.packets;
446 data[i + 1] = ring->stats.bytes;
447 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
449 #ifdef BP_EXTENDED_STATS
450 data[i] = ring->stats.yields;
451 data[i + 1] = ring->stats.misses;
452 data[i + 2] = ring->stats.cleaned;
457 /* populate Rx queue data */
458 for (j = 0; j < adapter->num_rx_queues; j++) {
459 ring = adapter->rx_ring[j];
463 #ifdef BP_EXTENDED_STATS
472 start = u64_stats_fetch_begin_irq(&ring->syncp);
473 data[i] = ring->stats.packets;
474 data[i + 1] = ring->stats.bytes;
475 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
477 #ifdef BP_EXTENDED_STATS
478 data[i] = ring->stats.yields;
479 data[i + 1] = ring->stats.misses;
480 data[i + 2] = ring->stats.cleaned;
486 static void ixgbevf_get_strings(struct net_device *netdev, u32 stringset,
489 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
490 char *p = (char *)data;
495 memcpy(data, *ixgbe_gstrings_test,
496 IXGBEVF_TEST_LEN * ETH_GSTRING_LEN);
499 for (i = 0; i < IXGBEVF_GLOBAL_STATS_LEN; i++) {
500 memcpy(p, ixgbevf_gstrings_stats[i].stat_string,
502 p += ETH_GSTRING_LEN;
505 for (i = 0; i < adapter->num_tx_queues; i++) {
506 sprintf(p, "tx_queue_%u_packets", i);
507 p += ETH_GSTRING_LEN;
508 sprintf(p, "tx_queue_%u_bytes", i);
509 p += ETH_GSTRING_LEN;
510 #ifdef BP_EXTENDED_STATS
511 sprintf(p, "tx_queue_%u_bp_napi_yield", i);
512 p += ETH_GSTRING_LEN;
513 sprintf(p, "tx_queue_%u_bp_misses", i);
514 p += ETH_GSTRING_LEN;
515 sprintf(p, "tx_queue_%u_bp_cleaned", i);
516 p += ETH_GSTRING_LEN;
517 #endif /* BP_EXTENDED_STATS */
519 for (i = 0; i < adapter->num_rx_queues; i++) {
520 sprintf(p, "rx_queue_%u_packets", i);
521 p += ETH_GSTRING_LEN;
522 sprintf(p, "rx_queue_%u_bytes", i);
523 p += ETH_GSTRING_LEN;
524 #ifdef BP_EXTENDED_STATS
525 sprintf(p, "rx_queue_%u_bp_poll_yield", i);
526 p += ETH_GSTRING_LEN;
527 sprintf(p, "rx_queue_%u_bp_misses", i);
528 p += ETH_GSTRING_LEN;
529 sprintf(p, "rx_queue_%u_bp_cleaned", i);
530 p += ETH_GSTRING_LEN;
531 #endif /* BP_EXTENDED_STATS */
537 static int ixgbevf_link_test(struct ixgbevf_adapter *adapter, u64 *data)
539 struct ixgbe_hw *hw = &adapter->hw;
544 hw->mac.ops.check_link(hw, &link_speed, &link_up, true);
551 /* ethtool register test data */
552 struct ixgbevf_reg_test {
560 /* In the hardware, registers are laid out either singly, in arrays
561 * spaced 0x40 bytes apart, or in contiguous tables. We assume
562 * most tests take place on arrays or single registers (handled
563 * as a single-element array) and special-case the tables.
564 * Table tests are always pattern tests.
566 * We also make provision for some required setup steps by specifying
567 * registers to be written without any read-back testing.
570 #define PATTERN_TEST 1
571 #define SET_READ_TEST 2
572 #define WRITE_NO_TEST 3
573 #define TABLE32_TEST 4
574 #define TABLE64_TEST_LO 5
575 #define TABLE64_TEST_HI 6
577 /* default VF register test */
578 static const struct ixgbevf_reg_test reg_test_vf[] = {
579 { IXGBE_VFRDBAL(0), 2, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFF80 },
580 { IXGBE_VFRDBAH(0), 2, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
581 { IXGBE_VFRDLEN(0), 2, PATTERN_TEST, 0x000FFF80, 0x000FFFFF },
582 { IXGBE_VFRXDCTL(0), 2, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE },
583 { IXGBE_VFRDT(0), 2, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF },
584 { IXGBE_VFRXDCTL(0), 2, WRITE_NO_TEST, 0, 0 },
585 { IXGBE_VFTDBAL(0), 2, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF },
586 { IXGBE_VFTDBAH(0), 2, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
587 { IXGBE_VFTDLEN(0), 2, PATTERN_TEST, 0x000FFF80, 0x000FFF80 },
591 static const u32 register_test_patterns[] = {
592 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF
595 static bool reg_pattern_test(struct ixgbevf_adapter *adapter, u64 *data,
596 int reg, u32 mask, u32 write)
598 u32 pat, val, before;
600 if (IXGBE_REMOVED(adapter->hw.hw_addr)) {
604 for (pat = 0; pat < ARRAY_SIZE(register_test_patterns); pat++) {
605 before = ixgbevf_read_reg(&adapter->hw, reg);
606 ixgbe_write_reg(&adapter->hw, reg,
607 register_test_patterns[pat] & write);
608 val = ixgbevf_read_reg(&adapter->hw, reg);
609 if (val != (register_test_patterns[pat] & write & mask)) {
611 "pattern test reg %04X failed: got 0x%08X expected 0x%08X\n",
613 register_test_patterns[pat] & write & mask);
615 ixgbe_write_reg(&adapter->hw, reg, before);
618 ixgbe_write_reg(&adapter->hw, reg, before);
623 static bool reg_set_and_check(struct ixgbevf_adapter *adapter, u64 *data,
624 int reg, u32 mask, u32 write)
628 if (IXGBE_REMOVED(adapter->hw.hw_addr)) {
632 before = ixgbevf_read_reg(&adapter->hw, reg);
633 ixgbe_write_reg(&adapter->hw, reg, write & mask);
634 val = ixgbevf_read_reg(&adapter->hw, reg);
635 if ((write & mask) != (val & mask)) {
636 pr_err("set/check reg %04X test failed: got 0x%08X expected 0x%08X\n",
637 reg, (val & mask), write & mask);
639 ixgbe_write_reg(&adapter->hw, reg, before);
642 ixgbe_write_reg(&adapter->hw, reg, before);
646 static int ixgbevf_reg_test(struct ixgbevf_adapter *adapter, u64 *data)
648 const struct ixgbevf_reg_test *test;
651 if (IXGBE_REMOVED(adapter->hw.hw_addr)) {
652 dev_err(&adapter->pdev->dev,
653 "Adapter removed - register test blocked\n");
659 /* Perform the register test, looping through the test table
660 * until we either fail or reach the null entry.
663 for (i = 0; i < test->array_len; i++) {
666 switch (test->test_type) {
668 b = reg_pattern_test(adapter, data,
669 test->reg + (i * 0x40),
674 b = reg_set_and_check(adapter, data,
675 test->reg + (i * 0x40),
680 ixgbe_write_reg(&adapter->hw,
681 test->reg + (i * 0x40),
685 b = reg_pattern_test(adapter, data,
690 case TABLE64_TEST_LO:
691 b = reg_pattern_test(adapter, data,
696 case TABLE64_TEST_HI:
697 b = reg_pattern_test(adapter, data,
698 test->reg + 4 + (i * 8),
713 static void ixgbevf_diag_test(struct net_device *netdev,
714 struct ethtool_test *eth_test, u64 *data)
716 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
717 bool if_running = netif_running(netdev);
719 if (IXGBE_REMOVED(adapter->hw.hw_addr)) {
720 dev_err(&adapter->pdev->dev,
721 "Adapter removed - test blocked\n");
724 eth_test->flags |= ETH_TEST_FL_FAILED;
727 set_bit(__IXGBEVF_TESTING, &adapter->state);
728 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
731 hw_dbg(&adapter->hw, "offline testing starting\n");
733 /* Link test performed before hardware reset so autoneg doesn't
734 * interfere with test result
736 if (ixgbevf_link_test(adapter, &data[1]))
737 eth_test->flags |= ETH_TEST_FL_FAILED;
740 /* indicate we're in test mode */
741 ixgbevf_close(netdev);
743 ixgbevf_reset(adapter);
745 hw_dbg(&adapter->hw, "register testing starting\n");
746 if (ixgbevf_reg_test(adapter, &data[0]))
747 eth_test->flags |= ETH_TEST_FL_FAILED;
749 ixgbevf_reset(adapter);
751 clear_bit(__IXGBEVF_TESTING, &adapter->state);
753 ixgbevf_open(netdev);
755 hw_dbg(&adapter->hw, "online testing starting\n");
757 if (ixgbevf_link_test(adapter, &data[1]))
758 eth_test->flags |= ETH_TEST_FL_FAILED;
760 /* Online tests aren't run; pass by default */
763 clear_bit(__IXGBEVF_TESTING, &adapter->state);
765 msleep_interruptible(4 * 1000);
768 static int ixgbevf_nway_reset(struct net_device *netdev)
770 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
772 if (netif_running(netdev))
773 ixgbevf_reinit_locked(adapter);
778 static int ixgbevf_get_coalesce(struct net_device *netdev,
779 struct ethtool_coalesce *ec)
781 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
783 /* only valid if in constant ITR mode */
784 if (adapter->rx_itr_setting <= 1)
785 ec->rx_coalesce_usecs = adapter->rx_itr_setting;
787 ec->rx_coalesce_usecs = adapter->rx_itr_setting >> 2;
789 /* if in mixed Tx/Rx queues per vector mode, report only Rx settings */
790 if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count)
793 /* only valid if in constant ITR mode */
794 if (adapter->tx_itr_setting <= 1)
795 ec->tx_coalesce_usecs = adapter->tx_itr_setting;
797 ec->tx_coalesce_usecs = adapter->tx_itr_setting >> 2;
802 static int ixgbevf_set_coalesce(struct net_device *netdev,
803 struct ethtool_coalesce *ec)
805 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
806 struct ixgbevf_q_vector *q_vector;
808 u16 tx_itr_param, rx_itr_param;
810 /* don't accept Tx specific changes if we've got mixed RxTx vectors */
811 if (adapter->q_vector[0]->tx.count &&
812 adapter->q_vector[0]->rx.count && ec->tx_coalesce_usecs)
815 if ((ec->rx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)) ||
816 (ec->tx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)))
819 if (ec->rx_coalesce_usecs > 1)
820 adapter->rx_itr_setting = ec->rx_coalesce_usecs << 2;
822 adapter->rx_itr_setting = ec->rx_coalesce_usecs;
824 if (adapter->rx_itr_setting == 1)
825 rx_itr_param = IXGBE_20K_ITR;
827 rx_itr_param = adapter->rx_itr_setting;
829 if (ec->tx_coalesce_usecs > 1)
830 adapter->tx_itr_setting = ec->tx_coalesce_usecs << 2;
832 adapter->tx_itr_setting = ec->tx_coalesce_usecs;
834 if (adapter->tx_itr_setting == 1)
835 tx_itr_param = IXGBE_12K_ITR;
837 tx_itr_param = adapter->tx_itr_setting;
839 num_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
841 for (i = 0; i < num_vectors; i++) {
842 q_vector = adapter->q_vector[i];
843 if (q_vector->tx.count && !q_vector->rx.count)
845 q_vector->itr = tx_itr_param;
847 /* Rx only or mixed */
848 q_vector->itr = rx_itr_param;
849 ixgbevf_write_eitr(q_vector);
855 static int ixgbevf_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info,
856 u32 *rules __always_unused)
858 struct ixgbevf_adapter *adapter = netdev_priv(dev);
861 case ETHTOOL_GRXRINGS:
862 info->data = adapter->num_rx_queues;
865 hw_dbg(&adapter->hw, "Command parameters not supported\n");
870 static u32 ixgbevf_get_rxfh_indir_size(struct net_device *netdev)
872 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
874 if (adapter->hw.mac.type >= ixgbe_mac_X550_vf)
875 return IXGBEVF_X550_VFRETA_SIZE;
877 return IXGBEVF_82599_RETA_SIZE;
880 static u32 ixgbevf_get_rxfh_key_size(struct net_device *netdev)
882 return IXGBEVF_RSS_HASH_KEY_SIZE;
885 static int ixgbevf_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key,
888 struct ixgbevf_adapter *adapter = netdev_priv(netdev);
892 *hfunc = ETH_RSS_HASH_TOP;
894 if (adapter->hw.mac.type >= ixgbe_mac_X550_vf) {
896 memcpy(key, adapter->rss_key, sizeof(adapter->rss_key));
901 for (i = 0; i < IXGBEVF_X550_VFRETA_SIZE; i++)
902 indir[i] = adapter->rss_indir_tbl[i];
905 /* If neither indirection table nor hash key was requested
906 * - just return a success avoiding taking any locks.
911 spin_lock_bh(&adapter->mbx_lock);
913 err = ixgbevf_get_reta_locked(&adapter->hw, indir,
914 adapter->num_rx_queues);
917 err = ixgbevf_get_rss_key_locked(&adapter->hw, key);
919 spin_unlock_bh(&adapter->mbx_lock);
925 static const struct ethtool_ops ixgbevf_ethtool_ops = {
926 .get_settings = ixgbevf_get_settings,
927 .get_drvinfo = ixgbevf_get_drvinfo,
928 .get_regs_len = ixgbevf_get_regs_len,
929 .get_regs = ixgbevf_get_regs,
930 .nway_reset = ixgbevf_nway_reset,
931 .get_link = ethtool_op_get_link,
932 .get_ringparam = ixgbevf_get_ringparam,
933 .set_ringparam = ixgbevf_set_ringparam,
934 .get_msglevel = ixgbevf_get_msglevel,
935 .set_msglevel = ixgbevf_set_msglevel,
936 .self_test = ixgbevf_diag_test,
937 .get_sset_count = ixgbevf_get_sset_count,
938 .get_strings = ixgbevf_get_strings,
939 .get_ethtool_stats = ixgbevf_get_ethtool_stats,
940 .get_coalesce = ixgbevf_get_coalesce,
941 .set_coalesce = ixgbevf_set_coalesce,
942 .get_rxnfc = ixgbevf_get_rxnfc,
943 .get_rxfh_indir_size = ixgbevf_get_rxfh_indir_size,
944 .get_rxfh_key_size = ixgbevf_get_rxfh_key_size,
945 .get_rxfh = ixgbevf_get_rxfh,
948 void ixgbevf_set_ethtool_ops(struct net_device *netdev)
950 netdev->ethtool_ops = &ixgbevf_ethtool_ops;