blob: ec5cacd427ec12d7a504387d6f4643fac2c052b0 [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchings0a6f40c2011-02-25 00:01:34 +00004 * Copyright 2006-2010 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#include <linux/netdevice.h>
12#include <linux/ethtool.h>
13#include <linux/rtnetlink.h>
Ben Hutchingsc39d35e2010-12-07 19:11:26 +000014#include <linux/in.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010015#include "net_driver.h"
Ben Hutchings04cc8ca2008-12-12 21:50:46 -080016#include "workarounds.h"
Ben Hutchings3273c2e2008-05-07 13:36:19 +010017#include "selftest.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010018#include "efx.h"
Ben Hutchingsb4187e42010-09-20 08:43:42 +000019#include "filter.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000020#include "nic.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010021
Ben Hutchings8ceee662008-04-27 12:55:59 +010022struct ethtool_string {
23 char name[ETH_GSTRING_LEN];
24};
25
26struct efx_ethtool_stat {
27 const char *name;
28 enum {
29 EFX_ETHTOOL_STAT_SOURCE_mac_stats,
30 EFX_ETHTOOL_STAT_SOURCE_nic,
Ben Hutchings119226c2011-02-18 19:14:13 +000031 EFX_ETHTOOL_STAT_SOURCE_channel,
32 EFX_ETHTOOL_STAT_SOURCE_tx_queue
Ben Hutchings8ceee662008-04-27 12:55:59 +010033 } source;
34 unsigned offset;
35 u64(*get_stat) (void *field); /* Reader function */
36};
37
38/* Initialiser for a struct #efx_ethtool_stat with type-checking */
39#define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \
40 get_stat_function) { \
41 .name = #stat_name, \
42 .source = EFX_ETHTOOL_STAT_SOURCE_##source_name, \
43 .offset = ((((field_type *) 0) == \
44 &((struct efx_##source_name *)0)->field) ? \
45 offsetof(struct efx_##source_name, field) : \
46 offsetof(struct efx_##source_name, field)), \
47 .get_stat = get_stat_function, \
48}
49
50static u64 efx_get_uint_stat(void *field)
51{
52 return *(unsigned int *)field;
53}
54
Ben Hutchings8ceee662008-04-27 12:55:59 +010055static u64 efx_get_u64_stat(void *field)
56{
57 return *(u64 *) field;
58}
59
60static u64 efx_get_atomic_stat(void *field)
61{
62 return atomic_read((atomic_t *) field);
63}
64
Ben Hutchings8ceee662008-04-27 12:55:59 +010065#define EFX_ETHTOOL_U64_MAC_STAT(field) \
Ben Hutchings9c636ba2012-01-05 17:19:45 +000066 EFX_ETHTOOL_STAT(field, mac_stats, field, \
Ben Hutchings8ceee662008-04-27 12:55:59 +010067 u64, efx_get_u64_stat)
68
69#define EFX_ETHTOOL_UINT_NIC_STAT(name) \
70 EFX_ETHTOOL_STAT(name, nic, n_##name, \
71 unsigned int, efx_get_uint_stat)
72
73#define EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(field) \
74 EFX_ETHTOOL_STAT(field, nic, field, \
75 atomic_t, efx_get_atomic_stat)
76
77#define EFX_ETHTOOL_UINT_CHANNEL_STAT(field) \
78 EFX_ETHTOOL_STAT(field, channel, n_##field, \
79 unsigned int, efx_get_uint_stat)
80
Ben Hutchings119226c2011-02-18 19:14:13 +000081#define EFX_ETHTOOL_UINT_TXQ_STAT(field) \
82 EFX_ETHTOOL_STAT(tx_##field, tx_queue, field, \
83 unsigned int, efx_get_uint_stat)
84
Ben Hutchings18e83e42012-01-05 19:05:20 +000085static const struct efx_ethtool_stat efx_ethtool_stats[] = {
Ben Hutchings8ceee662008-04-27 12:55:59 +010086 EFX_ETHTOOL_U64_MAC_STAT(tx_bytes),
87 EFX_ETHTOOL_U64_MAC_STAT(tx_good_bytes),
88 EFX_ETHTOOL_U64_MAC_STAT(tx_bad_bytes),
Ben Hutchingsf9c76252011-10-12 17:20:25 +010089 EFX_ETHTOOL_U64_MAC_STAT(tx_packets),
90 EFX_ETHTOOL_U64_MAC_STAT(tx_bad),
91 EFX_ETHTOOL_U64_MAC_STAT(tx_pause),
92 EFX_ETHTOOL_U64_MAC_STAT(tx_control),
93 EFX_ETHTOOL_U64_MAC_STAT(tx_unicast),
94 EFX_ETHTOOL_U64_MAC_STAT(tx_multicast),
95 EFX_ETHTOOL_U64_MAC_STAT(tx_broadcast),
96 EFX_ETHTOOL_U64_MAC_STAT(tx_lt64),
97 EFX_ETHTOOL_U64_MAC_STAT(tx_64),
98 EFX_ETHTOOL_U64_MAC_STAT(tx_65_to_127),
99 EFX_ETHTOOL_U64_MAC_STAT(tx_128_to_255),
100 EFX_ETHTOOL_U64_MAC_STAT(tx_256_to_511),
101 EFX_ETHTOOL_U64_MAC_STAT(tx_512_to_1023),
102 EFX_ETHTOOL_U64_MAC_STAT(tx_1024_to_15xx),
103 EFX_ETHTOOL_U64_MAC_STAT(tx_15xx_to_jumbo),
104 EFX_ETHTOOL_U64_MAC_STAT(tx_gtjumbo),
105 EFX_ETHTOOL_U64_MAC_STAT(tx_collision),
106 EFX_ETHTOOL_U64_MAC_STAT(tx_single_collision),
107 EFX_ETHTOOL_U64_MAC_STAT(tx_multiple_collision),
108 EFX_ETHTOOL_U64_MAC_STAT(tx_excessive_collision),
109 EFX_ETHTOOL_U64_MAC_STAT(tx_deferred),
110 EFX_ETHTOOL_U64_MAC_STAT(tx_late_collision),
111 EFX_ETHTOOL_U64_MAC_STAT(tx_excessive_deferred),
112 EFX_ETHTOOL_U64_MAC_STAT(tx_non_tcpudp),
113 EFX_ETHTOOL_U64_MAC_STAT(tx_mac_src_error),
114 EFX_ETHTOOL_U64_MAC_STAT(tx_ip_src_error),
Ben Hutchings119226c2011-02-18 19:14:13 +0000115 EFX_ETHTOOL_UINT_TXQ_STAT(tso_bursts),
116 EFX_ETHTOOL_UINT_TXQ_STAT(tso_long_headers),
117 EFX_ETHTOOL_UINT_TXQ_STAT(tso_packets),
118 EFX_ETHTOOL_UINT_TXQ_STAT(pushes),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100119 EFX_ETHTOOL_U64_MAC_STAT(rx_bytes),
120 EFX_ETHTOOL_U64_MAC_STAT(rx_good_bytes),
121 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_bytes),
Ben Hutchingsf9c76252011-10-12 17:20:25 +0100122 EFX_ETHTOOL_U64_MAC_STAT(rx_packets),
123 EFX_ETHTOOL_U64_MAC_STAT(rx_good),
124 EFX_ETHTOOL_U64_MAC_STAT(rx_bad),
125 EFX_ETHTOOL_U64_MAC_STAT(rx_pause),
126 EFX_ETHTOOL_U64_MAC_STAT(rx_control),
127 EFX_ETHTOOL_U64_MAC_STAT(rx_unicast),
128 EFX_ETHTOOL_U64_MAC_STAT(rx_multicast),
129 EFX_ETHTOOL_U64_MAC_STAT(rx_broadcast),
130 EFX_ETHTOOL_U64_MAC_STAT(rx_lt64),
131 EFX_ETHTOOL_U64_MAC_STAT(rx_64),
132 EFX_ETHTOOL_U64_MAC_STAT(rx_65_to_127),
133 EFX_ETHTOOL_U64_MAC_STAT(rx_128_to_255),
134 EFX_ETHTOOL_U64_MAC_STAT(rx_256_to_511),
135 EFX_ETHTOOL_U64_MAC_STAT(rx_512_to_1023),
136 EFX_ETHTOOL_U64_MAC_STAT(rx_1024_to_15xx),
137 EFX_ETHTOOL_U64_MAC_STAT(rx_15xx_to_jumbo),
138 EFX_ETHTOOL_U64_MAC_STAT(rx_gtjumbo),
139 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_lt64),
140 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_64_to_15xx),
141 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_15xx_to_jumbo),
142 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_gtjumbo),
143 EFX_ETHTOOL_U64_MAC_STAT(rx_overflow),
144 EFX_ETHTOOL_U64_MAC_STAT(rx_missed),
145 EFX_ETHTOOL_U64_MAC_STAT(rx_false_carrier),
146 EFX_ETHTOOL_U64_MAC_STAT(rx_symbol_error),
147 EFX_ETHTOOL_U64_MAC_STAT(rx_align_error),
148 EFX_ETHTOOL_U64_MAC_STAT(rx_length_error),
149 EFX_ETHTOOL_U64_MAC_STAT(rx_internal_error),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100150 EFX_ETHTOOL_UINT_NIC_STAT(rx_nodesc_drop_cnt),
151 EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(rx_reset),
152 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tobe_disc),
153 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_ip_hdr_chksum_err),
154 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tcp_udp_chksum_err),
Ben Hutchingsc1ac4032009-11-28 05:36:29 +0000155 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_mcast_mismatch),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100156 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_frm_trunc),
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000157 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_nodesc_trunc),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100158};
159
160/* Number of ethtool statistics */
161#define EFX_ETHTOOL_NUM_STATS ARRAY_SIZE(efx_ethtool_stats)
162
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100163#define EFX_ETHTOOL_EEPROM_MAGIC 0xEFAB
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100164
Ben Hutchings8ceee662008-04-27 12:55:59 +0100165/**************************************************************************
166 *
167 * Ethtool operations
168 *
169 **************************************************************************
170 */
171
172/* Identify device by flashing LEDs */
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100173static int efx_ethtool_phys_id(struct net_device *net_dev,
174 enum ethtool_phys_id_state state)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100175{
Ben Hutchings767e4682008-09-01 12:43:14 +0100176 struct efx_nic *efx = netdev_priv(net_dev);
Allan, Bruce Wfce55922011-04-13 13:09:10 +0000177 enum efx_led_mode mode = EFX_LED_DEFAULT;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100178
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100179 switch (state) {
180 case ETHTOOL_ID_ON:
181 mode = EFX_LED_ON;
182 break;
183 case ETHTOOL_ID_OFF:
184 mode = EFX_LED_OFF;
185 break;
186 case ETHTOOL_ID_INACTIVE:
187 mode = EFX_LED_DEFAULT;
188 break;
Allan, Bruce Wfce55922011-04-13 13:09:10 +0000189 case ETHTOOL_ID_ACTIVE:
190 return 1; /* cycle on/off once per second */
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100191 }
Ben Hutchings398468e2009-11-23 16:03:45 +0000192
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100193 efx->type->set_id_led(efx, mode);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100194 return 0;
195}
196
197/* This must be called with rtnl_lock held. */
stephen hemmingerd2156972010-10-18 05:27:31 +0000198static int efx_ethtool_get_settings(struct net_device *net_dev,
199 struct ethtool_cmd *ecmd)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100200{
Ben Hutchings767e4682008-09-01 12:43:14 +0100201 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000202 struct efx_link_state *link_state = &efx->link_state;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100203
204 mutex_lock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800205 efx->phy_op->get_settings(efx, ecmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100206 mutex_unlock(&efx->mac_lock);
207
Ben Hutchings754c6532010-02-03 09:31:57 +0000208 /* GMAC does not support 1000Mbps HD */
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800209 ecmd->supported &= ~SUPPORTED_1000baseT_Half;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000210 /* Both MACs support pause frames (bidirectional and respond-only) */
211 ecmd->supported |= SUPPORTED_Pause | SUPPORTED_Asym_Pause;
212
213 if (LOOPBACK_INTERNAL(efx)) {
David Decotigny70739492011-04-27 18:32:40 +0000214 ethtool_cmd_speed_set(ecmd, link_state->speed);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000215 ecmd->duplex = link_state->fd ? DUPLEX_FULL : DUPLEX_HALF;
216 }
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800217
218 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100219}
220
221/* This must be called with rtnl_lock held. */
stephen hemmingerd2156972010-10-18 05:27:31 +0000222static int efx_ethtool_set_settings(struct net_device *net_dev,
223 struct ethtool_cmd *ecmd)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100224{
Ben Hutchings767e4682008-09-01 12:43:14 +0100225 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100226 int rc;
227
Ben Hutchings754c6532010-02-03 09:31:57 +0000228 /* GMAC does not support 1000Mbps HD */
David Decotigny25db0332011-04-27 18:32:39 +0000229 if ((ethtool_cmd_speed(ecmd) == SPEED_1000) &&
230 (ecmd->duplex != DUPLEX_FULL)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000231 netif_dbg(efx, drv, efx->net_dev,
232 "rejecting unsupported 1000Mbps HD setting\n");
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800233 return -EINVAL;
234 }
235
Ben Hutchings8ceee662008-04-27 12:55:59 +0100236 mutex_lock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800237 rc = efx->phy_op->set_settings(efx, ecmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100238 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100239 return rc;
240}
241
242static void efx_ethtool_get_drvinfo(struct net_device *net_dev,
243 struct ethtool_drvinfo *info)
244{
Ben Hutchings767e4682008-09-01 12:43:14 +0100245 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100246
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +0000247 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100248 strlcpy(info->version, EFX_DRIVER_VERSION, sizeof(info->version));
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000249 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0)
Ben Hutchingse5f0fd22011-02-24 23:57:47 +0000250 efx_mcdi_print_fwver(efx, info->fw_version,
251 sizeof(info->fw_version));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100252 strlcpy(info->bus_info, pci_name(efx->pci_dev), sizeof(info->bus_info));
253}
254
Ben Hutchings5b98c1b2010-06-21 03:06:53 +0000255static int efx_ethtool_get_regs_len(struct net_device *net_dev)
256{
257 return efx_nic_get_regs_len(netdev_priv(net_dev));
258}
259
260static void efx_ethtool_get_regs(struct net_device *net_dev,
261 struct ethtool_regs *regs, void *buf)
262{
263 struct efx_nic *efx = netdev_priv(net_dev);
264
265 regs->version = efx->type->revision;
266 efx_nic_get_regs(efx, buf);
267}
268
Ben Hutchings62776d02010-06-23 11:30:07 +0000269static u32 efx_ethtool_get_msglevel(struct net_device *net_dev)
270{
271 struct efx_nic *efx = netdev_priv(net_dev);
272 return efx->msg_enable;
273}
274
275static void efx_ethtool_set_msglevel(struct net_device *net_dev, u32 msg_enable)
276{
277 struct efx_nic *efx = netdev_priv(net_dev);
278 efx->msg_enable = msg_enable;
279}
280
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100281/**
282 * efx_fill_test - fill in an individual self-test entry
283 * @test_index: Index of the test
284 * @strings: Ethtool strings, or %NULL
285 * @data: Ethtool test results, or %NULL
286 * @test: Pointer to test result (used only if data != %NULL)
Ben Hutchings740ced92008-12-12 21:41:55 -0800287 * @unit_format: Unit name format (e.g. "chan\%d")
288 * @unit_id: Unit id (e.g. 0 for "chan0")
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100289 * @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
Ben Hutchings740ced92008-12-12 21:41:55 -0800290 * @test_id: Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent")
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100291 *
292 * Fill in an individual self-test entry.
293 */
294static void efx_fill_test(unsigned int test_index,
295 struct ethtool_string *strings, u64 *data,
296 int *test, const char *unit_format, int unit_id,
297 const char *test_format, const char *test_id)
298{
299 struct ethtool_string unit_str, test_str;
300
301 /* Fill data value, if applicable */
302 if (data)
303 data[test_index] = *test;
304
305 /* Fill string, if applicable */
306 if (strings) {
Ben Hutchings11e66962008-12-12 22:05:48 -0800307 if (strchr(unit_format, '%'))
308 snprintf(unit_str.name, sizeof(unit_str.name),
309 unit_format, unit_id);
310 else
311 strcpy(unit_str.name, unit_format);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100312 snprintf(test_str.name, sizeof(test_str.name),
313 test_format, test_id);
314 snprintf(strings[test_index].name,
315 sizeof(strings[test_index].name),
Ben Hutchings740ced92008-12-12 21:41:55 -0800316 "%-6s %-24s", unit_str.name, test_str.name);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100317 }
318}
319
Ben Hutchings740ced92008-12-12 21:41:55 -0800320#define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100321#define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue
322#define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue
323#define EFX_LOOPBACK_NAME(_mode, _counter) \
Ben Hutchingsc4593022009-11-23 16:08:17 +0000324 "loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100325
326/**
327 * efx_fill_loopback_test - fill in a block of loopback self-test entries
328 * @efx: Efx NIC
329 * @lb_tests: Efx loopback self-test results structure
330 * @mode: Loopback test mode
331 * @test_index: Starting index of the test
332 * @strings: Ethtool strings, or %NULL
333 * @data: Ethtool test results, or %NULL
334 */
335static int efx_fill_loopback_test(struct efx_nic *efx,
336 struct efx_loopback_self_tests *lb_tests,
337 enum efx_loopback_mode mode,
338 unsigned int test_index,
339 struct ethtool_string *strings, u64 *data)
340{
Ben Hutchings1ac02262012-09-13 02:22:52 +0100341 struct efx_channel *channel =
342 efx_get_channel(efx, efx->tx_channel_offset);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100343 struct efx_tx_queue *tx_queue;
344
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000345 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100346 efx_fill_test(test_index++, strings, data,
347 &lb_tests->tx_sent[tx_queue->queue],
348 EFX_TX_QUEUE_NAME(tx_queue),
349 EFX_LOOPBACK_NAME(mode, "tx_sent"));
350 efx_fill_test(test_index++, strings, data,
351 &lb_tests->tx_done[tx_queue->queue],
352 EFX_TX_QUEUE_NAME(tx_queue),
353 EFX_LOOPBACK_NAME(mode, "tx_done"));
354 }
355 efx_fill_test(test_index++, strings, data,
356 &lb_tests->rx_good,
Ben Hutchings11e66962008-12-12 22:05:48 -0800357 "rx", 0,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100358 EFX_LOOPBACK_NAME(mode, "rx_good"));
359 efx_fill_test(test_index++, strings, data,
360 &lb_tests->rx_bad,
Ben Hutchings11e66962008-12-12 22:05:48 -0800361 "rx", 0,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100362 EFX_LOOPBACK_NAME(mode, "rx_bad"));
363
364 return test_index;
365}
366
367/**
368 * efx_ethtool_fill_self_tests - get self-test details
369 * @efx: Efx NIC
370 * @tests: Efx self-test results structure, or %NULL
371 * @strings: Ethtool strings, or %NULL
372 * @data: Ethtool test results, or %NULL
373 */
374static int efx_ethtool_fill_self_tests(struct efx_nic *efx,
375 struct efx_self_tests *tests,
376 struct ethtool_string *strings,
377 u64 *data)
378{
379 struct efx_channel *channel;
Ben Hutchings17967212008-12-26 13:47:25 -0800380 unsigned int n = 0, i;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100381 enum efx_loopback_mode mode;
382
Ben Hutchings4f16c072010-02-03 09:30:50 +0000383 efx_fill_test(n++, strings, data, &tests->phy_alive,
384 "phy", 0, "alive", NULL);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100385 efx_fill_test(n++, strings, data, &tests->nvram,
386 "core", 0, "nvram", NULL);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100387 efx_fill_test(n++, strings, data, &tests->interrupt,
388 "core", 0, "interrupt", NULL);
389
390 /* Event queues */
391 efx_for_each_channel(channel, efx) {
392 efx_fill_test(n++, strings, data,
393 &tests->eventq_dma[channel->channel],
394 EFX_CHANNEL_NAME(channel),
395 "eventq.dma", NULL);
396 efx_fill_test(n++, strings, data,
397 &tests->eventq_int[channel->channel],
398 EFX_CHANNEL_NAME(channel),
399 "eventq.int", NULL);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100400 }
401
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100402 efx_fill_test(n++, strings, data, &tests->registers,
403 "core", 0, "registers", NULL);
Ben Hutchings17967212008-12-26 13:47:25 -0800404
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000405 if (efx->phy_op->run_tests != NULL) {
406 EFX_BUG_ON_PARANOID(efx->phy_op->test_name == NULL);
407
408 for (i = 0; true; ++i) {
409 const char *name;
410
411 EFX_BUG_ON_PARANOID(i >= EFX_MAX_PHY_TESTS);
412 name = efx->phy_op->test_name(efx, i);
413 if (name == NULL)
414 break;
415
Ben Hutchings4f16c072010-02-03 09:30:50 +0000416 efx_fill_test(n++, strings, data, &tests->phy_ext[i],
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000417 "phy", 0, name, NULL);
418 }
419 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100420
421 /* Loopback tests */
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100422 for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100423 if (!(efx->loopback_modes & (1 << mode)))
424 continue;
425 n = efx_fill_loopback_test(efx,
426 &tests->loopback[mode], mode, n,
427 strings, data);
428 }
429
430 return n;
431}
432
Ben Hutchings3594e132008-09-01 12:48:12 +0100433static int efx_ethtool_get_sset_count(struct net_device *net_dev,
434 int string_set)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100435{
Ben Hutchings3594e132008-09-01 12:48:12 +0100436 switch (string_set) {
437 case ETH_SS_STATS:
438 return EFX_ETHTOOL_NUM_STATS;
439 case ETH_SS_TEST:
440 return efx_ethtool_fill_self_tests(netdev_priv(net_dev),
441 NULL, NULL, NULL);
442 default:
443 return -EINVAL;
444 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100445}
446
Ben Hutchings8ceee662008-04-27 12:55:59 +0100447static void efx_ethtool_get_strings(struct net_device *net_dev,
448 u32 string_set, u8 *strings)
449{
Ben Hutchings767e4682008-09-01 12:43:14 +0100450 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100451 struct ethtool_string *ethtool_strings =
452 (struct ethtool_string *)strings;
453 int i;
454
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100455 switch (string_set) {
456 case ETH_SS_STATS:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100457 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++)
Ben Hutchingsa4ed2d42012-07-02 21:36:59 +0100458 strlcpy(ethtool_strings[i].name,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100459 efx_ethtool_stats[i].name,
460 sizeof(ethtool_strings[i].name));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100461 break;
462 case ETH_SS_TEST:
463 efx_ethtool_fill_self_tests(efx, NULL,
464 ethtool_strings, NULL);
465 break;
466 default:
467 /* No other string sets */
468 break;
469 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100470}
471
472static void efx_ethtool_get_stats(struct net_device *net_dev,
473 struct ethtool_stats *stats,
474 u64 *data)
475{
Ben Hutchings767e4682008-09-01 12:43:14 +0100476 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100477 struct efx_mac_stats *mac_stats = &efx->mac_stats;
Ben Hutchings18e83e42012-01-05 19:05:20 +0000478 const struct efx_ethtool_stat *stat;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100479 struct efx_channel *channel;
Ben Hutchings119226c2011-02-18 19:14:13 +0000480 struct efx_tx_queue *tx_queue;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100481 int i;
482
483 EFX_BUG_ON_PARANOID(stats->n_stats != EFX_ETHTOOL_NUM_STATS);
484
Ben Hutchings1cb34522011-09-02 23:23:00 +0100485 spin_lock_bh(&efx->stats_lock);
486
Ben Hutchings8ceee662008-04-27 12:55:59 +0100487 /* Update MAC and NIC statistics */
Ben Hutchings1cb34522011-09-02 23:23:00 +0100488 efx->type->update_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100489
490 /* Fill detailed statistics buffer */
491 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++) {
492 stat = &efx_ethtool_stats[i];
493 switch (stat->source) {
494 case EFX_ETHTOOL_STAT_SOURCE_mac_stats:
495 data[i] = stat->get_stat((void *)mac_stats +
496 stat->offset);
497 break;
498 case EFX_ETHTOOL_STAT_SOURCE_nic:
499 data[i] = stat->get_stat((void *)efx + stat->offset);
500 break;
501 case EFX_ETHTOOL_STAT_SOURCE_channel:
502 data[i] = 0;
503 efx_for_each_channel(channel, efx)
504 data[i] += stat->get_stat((void *)channel +
505 stat->offset);
506 break;
Ben Hutchings119226c2011-02-18 19:14:13 +0000507 case EFX_ETHTOOL_STAT_SOURCE_tx_queue:
508 data[i] = 0;
509 efx_for_each_channel(channel, efx) {
510 efx_for_each_channel_tx_queue(tx_queue, channel)
511 data[i] +=
512 stat->get_stat((void *)tx_queue
513 + stat->offset);
514 }
515 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100516 }
517 }
Ben Hutchings1cb34522011-09-02 23:23:00 +0100518
519 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100520}
521
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100522static void efx_ethtool_self_test(struct net_device *net_dev,
523 struct ethtool_test *test, u64 *data)
524{
Ben Hutchings767e4682008-09-01 12:43:14 +0100525 struct efx_nic *efx = netdev_priv(net_dev);
Eric Dumazet28801f32011-02-16 03:48:38 +0000526 struct efx_self_tests *efx_tests;
Ben Hutchings2ef30682008-12-26 13:47:04 -0800527 int already_up;
Eric Dumazet28801f32011-02-16 03:48:38 +0000528 int rc = -ENOMEM;
529
530 efx_tests = kzalloc(sizeof(*efx_tests), GFP_KERNEL);
531 if (!efx_tests)
532 goto fail;
533
Ben Hutchingsf16aeea2012-07-27 19:31:16 +0100534 if (efx->state != STATE_READY) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100535 rc = -EIO;
536 goto fail1;
537 }
538
Ben Hutchingsac33ac62010-12-07 18:29:52 +0000539 netif_info(efx, drv, efx->net_dev, "starting %sline testing\n",
540 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
541
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100542 /* We need rx buffers and interrupts. */
543 already_up = (efx->net_dev->flags & IFF_UP);
544 if (!already_up) {
545 rc = dev_open(efx->net_dev);
546 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000547 netif_err(efx, drv, efx->net_dev,
548 "failed opening device.\n");
Eric Dumazet28801f32011-02-16 03:48:38 +0000549 goto fail1;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100550 }
551 }
552
Eric Dumazet28801f32011-02-16 03:48:38 +0000553 rc = efx_selftest(efx, efx_tests, test->flags);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100554
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100555 if (!already_up)
556 dev_close(efx->net_dev);
557
Ben Hutchingsac33ac62010-12-07 18:29:52 +0000558 netif_info(efx, drv, efx->net_dev, "%s %sline self-tests\n",
559 rc == 0 ? "passed" : "failed",
560 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100561
Eric Dumazet28801f32011-02-16 03:48:38 +0000562fail1:
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100563 /* Fill ethtool results structures */
Eric Dumazet28801f32011-02-16 03:48:38 +0000564 efx_ethtool_fill_self_tests(efx, efx_tests, NULL, data);
565 kfree(efx_tests);
566fail:
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100567 if (rc)
568 test->flags |= ETH_TEST_FL_FAILED;
569}
570
Ben Hutchings8ceee662008-04-27 12:55:59 +0100571/* Restart autonegotiation */
572static int efx_ethtool_nway_reset(struct net_device *net_dev)
573{
Ben Hutchings767e4682008-09-01 12:43:14 +0100574 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100575
Ben Hutchings68e7f452009-04-29 08:05:08 +0000576 return mdio45_nway_restart(&efx->mdio);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100577}
578
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000579/*
580 * Each channel has a single IRQ and moderation timer, started by any
581 * completion (or other event). Unless the module parameter
582 * separate_tx_channels is set, IRQs and moderation are therefore
583 * shared between RX and TX completions. In this case, when RX IRQ
584 * moderation is explicitly changed then TX IRQ moderation is
585 * automatically changed too, but otherwise we fail if the two values
586 * are requested to be different.
587 *
Ben Hutchings13225972011-09-05 07:43:49 +0000588 * The hardware does not support a limit on the number of completions
589 * before an IRQ, so we do not use the max_frames fields. We should
590 * report and require that max_frames == (usecs != 0), but this would
591 * invalidate existing user documentation.
592 *
593 * The hardware does not have distinct settings for interrupt
594 * moderation while the previous IRQ is being handled, so we should
595 * not use the 'irq' fields. However, an earlier developer
596 * misunderstood the meaning of the 'irq' fields and the driver did
597 * not support the standard fields. To avoid invalidating existing
598 * user documentation, we report and accept changes through either the
599 * standard or 'irq' fields. If both are changed at the same time, we
600 * prefer the standard field.
601 *
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000602 * We implement adaptive IRQ moderation, but use a different algorithm
603 * from that assumed in the definition of struct ethtool_coalesce.
604 * Therefore we do not use any of the adaptive moderation parameters
605 * in it.
606 */
607
Ben Hutchings8ceee662008-04-27 12:55:59 +0100608static int efx_ethtool_get_coalesce(struct net_device *net_dev,
609 struct ethtool_coalesce *coalesce)
610{
Ben Hutchings767e4682008-09-01 12:43:14 +0100611 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000612 unsigned int tx_usecs, rx_usecs;
613 bool rx_adaptive;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100614
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000615 efx_get_irq_moderation(efx, &tx_usecs, &rx_usecs, &rx_adaptive);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100616
Ben Hutchings13225972011-09-05 07:43:49 +0000617 coalesce->tx_coalesce_usecs = tx_usecs;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000618 coalesce->tx_coalesce_usecs_irq = tx_usecs;
Ben Hutchings13225972011-09-05 07:43:49 +0000619 coalesce->rx_coalesce_usecs = rx_usecs;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000620 coalesce->rx_coalesce_usecs_irq = rx_usecs;
621 coalesce->use_adaptive_rx_coalesce = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000622
Ben Hutchings8ceee662008-04-27 12:55:59 +0100623 return 0;
624}
625
Ben Hutchings8ceee662008-04-27 12:55:59 +0100626static int efx_ethtool_set_coalesce(struct net_device *net_dev,
627 struct ethtool_coalesce *coalesce)
628{
Ben Hutchings767e4682008-09-01 12:43:14 +0100629 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100630 struct efx_channel *channel;
Ben Hutchingsb548f972011-09-05 07:41:44 +0000631 unsigned int tx_usecs, rx_usecs;
Ben Hutchings9e393b32011-09-05 07:43:04 +0000632 bool adaptive, rx_may_override_tx;
633 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100634
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000635 if (coalesce->use_adaptive_tx_coalesce)
Ben Hutchings9f85ee92011-09-05 07:41:27 +0000636 return -EINVAL;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100637
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000638 efx_get_irq_moderation(efx, &tx_usecs, &rx_usecs, &adaptive);
639
Ben Hutchings13225972011-09-05 07:43:49 +0000640 if (coalesce->rx_coalesce_usecs != rx_usecs)
641 rx_usecs = coalesce->rx_coalesce_usecs;
642 else
643 rx_usecs = coalesce->rx_coalesce_usecs_irq;
644
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000645 adaptive = coalesce->use_adaptive_rx_coalesce;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100646
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000647 /* If channels are shared, TX IRQ moderation can be quietly
648 * overridden unless it is changed from its old value.
649 */
Ben Hutchings13225972011-09-05 07:43:49 +0000650 rx_may_override_tx = (coalesce->tx_coalesce_usecs == tx_usecs &&
651 coalesce->tx_coalesce_usecs_irq == tx_usecs);
652 if (coalesce->tx_coalesce_usecs != tx_usecs)
653 tx_usecs = coalesce->tx_coalesce_usecs;
654 else
655 tx_usecs = coalesce->tx_coalesce_usecs_irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100656
Ben Hutchings9e393b32011-09-05 07:43:04 +0000657 rc = efx_init_irq_moderation(efx, tx_usecs, rx_usecs, adaptive,
658 rx_may_override_tx);
659 if (rc != 0)
660 return rc;
661
Ben Hutchings8ceee662008-04-27 12:55:59 +0100662 efx_for_each_channel(channel, efx)
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000663 efx->type->push_irq_moderation(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100664
665 return 0;
666}
667
Ben Hutchings46426102010-09-10 06:42:33 +0000668static void efx_ethtool_get_ringparam(struct net_device *net_dev,
669 struct ethtool_ringparam *ring)
670{
671 struct efx_nic *efx = netdev_priv(net_dev);
672
673 ring->rx_max_pending = EFX_MAX_DMAQ_SIZE;
674 ring->tx_max_pending = EFX_MAX_DMAQ_SIZE;
Ben Hutchings46426102010-09-10 06:42:33 +0000675 ring->rx_pending = efx->rxq_entries;
676 ring->tx_pending = efx->txq_entries;
Ben Hutchings46426102010-09-10 06:42:33 +0000677}
678
679static int efx_ethtool_set_ringparam(struct net_device *net_dev,
680 struct ethtool_ringparam *ring)
681{
682 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000683 u32 txq_entries;
Ben Hutchings46426102010-09-10 06:42:33 +0000684
685 if (ring->rx_mini_pending || ring->rx_jumbo_pending ||
686 ring->rx_pending > EFX_MAX_DMAQ_SIZE ||
687 ring->tx_pending > EFX_MAX_DMAQ_SIZE)
688 return -EINVAL;
689
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000690 if (ring->rx_pending < EFX_RXQ_MIN_ENT) {
Ben Hutchings46426102010-09-10 06:42:33 +0000691 netif_err(efx, drv, efx->net_dev,
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000692 "RX queues cannot be smaller than %u\n",
693 EFX_RXQ_MIN_ENT);
Ben Hutchings46426102010-09-10 06:42:33 +0000694 return -EINVAL;
695 }
696
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000697 txq_entries = max(ring->tx_pending, EFX_TXQ_MIN_ENT(efx));
698 if (txq_entries != ring->tx_pending)
699 netif_warn(efx, drv, efx->net_dev,
700 "increasing TX queue size to minimum of %u\n",
701 txq_entries);
702
703 return efx_realloc_channels(efx, ring->rx_pending, txq_entries);
Ben Hutchings46426102010-09-10 06:42:33 +0000704}
705
Ben Hutchings8ceee662008-04-27 12:55:59 +0100706static int efx_ethtool_set_pauseparam(struct net_device *net_dev,
707 struct ethtool_pauseparam *pause)
708{
Ben Hutchings767e4682008-09-01 12:43:14 +0100709 struct efx_nic *efx = netdev_priv(net_dev);
David S. Millerb56269462011-05-17 17:53:22 -0400710 u8 wanted_fc, old_fc;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000711 u32 old_adv;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000712 int rc = 0;
713
714 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100715
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800716 wanted_fc = ((pause->rx_pause ? EFX_FC_RX : 0) |
717 (pause->tx_pause ? EFX_FC_TX : 0) |
718 (pause->autoneg ? EFX_FC_AUTO : 0));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100719
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800720 if ((wanted_fc & EFX_FC_TX) && !(wanted_fc & EFX_FC_RX)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000721 netif_dbg(efx, drv, efx->net_dev,
722 "Flow control unsupported: tx ON rx OFF\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000723 rc = -EINVAL;
724 goto out;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800725 }
726
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000727 if ((wanted_fc & EFX_FC_AUTO) && !efx->link_advertising) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000728 netif_dbg(efx, drv, efx->net_dev,
729 "Autonegotiation is disabled\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000730 rc = -EINVAL;
731 goto out;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800732 }
733
Ben Hutchings9dd3a132012-09-13 01:11:25 +0100734 /* Hook for Falcon bug 11482 workaround */
735 if (efx->type->prepare_enable_fc_tx &&
736 (wanted_fc & EFX_FC_TX) && !(efx->wanted_fc & EFX_FC_TX))
737 efx->type->prepare_enable_fc_tx(efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800738
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000739 old_adv = efx->link_advertising;
740 old_fc = efx->wanted_fc;
741 efx_link_set_wanted_fc(efx, wanted_fc);
742 if (efx->link_advertising != old_adv ||
743 (efx->wanted_fc ^ old_fc) & EFX_FC_AUTO) {
744 rc = efx->phy_op->reconfigure(efx);
745 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000746 netif_err(efx, drv, efx->net_dev,
747 "Unable to advertise requested flow "
748 "control setting\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000749 goto out;
750 }
751 }
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800752
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000753 /* Reconfigure the MAC. The PHY *may* generate a link state change event
754 * if the user just changed the advertised capabilities, but there's no
755 * harm doing this twice */
Ben Hutchings710b2082011-09-03 00:15:00 +0100756 efx->type->reconfigure_mac(efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800757
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000758out:
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800759 mutex_unlock(&efx->mac_lock);
760
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000761 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100762}
763
764static void efx_ethtool_get_pauseparam(struct net_device *net_dev,
765 struct ethtool_pauseparam *pause)
766{
Ben Hutchings767e4682008-09-01 12:43:14 +0100767 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100768
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800769 pause->rx_pause = !!(efx->wanted_fc & EFX_FC_RX);
770 pause->tx_pause = !!(efx->wanted_fc & EFX_FC_TX);
771 pause->autoneg = !!(efx->wanted_fc & EFX_FC_AUTO);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100772}
773
774
Ben Hutchings89c758f2009-11-29 03:43:07 +0000775static void efx_ethtool_get_wol(struct net_device *net_dev,
776 struct ethtool_wolinfo *wol)
777{
778 struct efx_nic *efx = netdev_priv(net_dev);
779 return efx->type->get_wol(efx, wol);
780}
781
782
783static int efx_ethtool_set_wol(struct net_device *net_dev,
784 struct ethtool_wolinfo *wol)
785{
786 struct efx_nic *efx = netdev_priv(net_dev);
787 return efx->type->set_wol(efx, wol->wolopts);
788}
789
stephen hemmingerd2156972010-10-18 05:27:31 +0000790static int efx_ethtool_reset(struct net_device *net_dev, u32 *flags)
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000791{
792 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100793 int rc;
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000794
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100795 rc = efx->type->map_reset_flags(flags);
796 if (rc < 0)
797 return rc;
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000798
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100799 return efx_reset(efx, rc);
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000800}
801
Ben Hutchingsc274d652012-02-02 22:41:49 +0000802/* MAC address mask including only MC flag */
803static const u8 mac_addr_mc_mask[ETH_ALEN] = { 0x01, 0, 0, 0, 0, 0 };
804
Ben Hutchings0e0c3402012-09-06 02:11:04 +0100805#define IP4_ADDR_FULL_MASK ((__force __be32)~0)
806#define PORT_FULL_MASK ((__force __be16)~0)
807
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000808static int efx_ethtool_get_class_rule(struct efx_nic *efx,
809 struct ethtool_rx_flow_spec *rule)
810{
811 struct ethtool_tcpip4_spec *ip_entry = &rule->h_u.tcp_ip4_spec;
812 struct ethtool_tcpip4_spec *ip_mask = &rule->m_u.tcp_ip4_spec;
Ben Hutchingsc274d652012-02-02 22:41:49 +0000813 struct ethhdr *mac_entry = &rule->h_u.ether_spec;
814 struct ethhdr *mac_mask = &rule->m_u.ether_spec;
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000815 struct efx_filter_spec spec;
816 u16 vid;
817 u8 proto;
818 int rc;
819
820 rc = efx_filter_get_filter_safe(efx, EFX_FILTER_PRI_MANUAL,
821 rule->location, &spec);
822 if (rc)
823 return rc;
824
Ben Hutchingsf26e9582012-10-30 01:01:52 +0000825 if (spec.dmaq_id == EFX_FILTER_RX_DMAQ_ID_DROP)
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000826 rule->ring_cookie = RX_CLS_FLOW_DISC;
827 else
828 rule->ring_cookie = spec.dmaq_id;
829
Ben Hutchingsc274d652012-02-02 22:41:49 +0000830 if (spec.type == EFX_FILTER_MC_DEF || spec.type == EFX_FILTER_UC_DEF) {
831 rule->flow_type = ETHER_FLOW;
832 memcpy(mac_mask->h_dest, mac_addr_mc_mask, ETH_ALEN);
833 if (spec.type == EFX_FILTER_MC_DEF)
834 memcpy(mac_entry->h_dest, mac_addr_mc_mask, ETH_ALEN);
835 return 0;
836 }
837
838 rc = efx_filter_get_eth_local(&spec, &vid, mac_entry->h_dest);
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000839 if (rc == 0) {
840 rule->flow_type = ETHER_FLOW;
Ben Hutchingsc274d652012-02-02 22:41:49 +0000841 memset(mac_mask->h_dest, ~0, ETH_ALEN);
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000842 if (vid != EFX_FILTER_VID_UNSPEC) {
843 rule->flow_type |= FLOW_EXT;
844 rule->h_ext.vlan_tci = htons(vid);
845 rule->m_ext.vlan_tci = htons(0xfff);
846 }
847 return 0;
848 }
849
850 rc = efx_filter_get_ipv4_local(&spec, &proto,
851 &ip_entry->ip4dst, &ip_entry->pdst);
852 if (rc != 0) {
853 rc = efx_filter_get_ipv4_full(
Ben Hutchingsac70b2e2012-08-15 18:09:15 +0100854 &spec, &proto, &ip_entry->ip4dst, &ip_entry->pdst,
855 &ip_entry->ip4src, &ip_entry->psrc);
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000856 EFX_WARN_ON_PARANOID(rc);
Ben Hutchings0e0c3402012-09-06 02:11:04 +0100857 ip_mask->ip4src = IP4_ADDR_FULL_MASK;
858 ip_mask->psrc = PORT_FULL_MASK;
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000859 }
860 rule->flow_type = (proto == IPPROTO_TCP) ? TCP_V4_FLOW : UDP_V4_FLOW;
Ben Hutchings0e0c3402012-09-06 02:11:04 +0100861 ip_mask->ip4dst = IP4_ADDR_FULL_MASK;
862 ip_mask->pdst = PORT_FULL_MASK;
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000863 return rc;
864}
865
Ben Hutchings765c9f42010-06-30 05:06:28 +0000866static int
867efx_ethtool_get_rxnfc(struct net_device *net_dev,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000868 struct ethtool_rxnfc *info, u32 *rule_locs)
Ben Hutchings765c9f42010-06-30 05:06:28 +0000869{
870 struct efx_nic *efx = netdev_priv(net_dev);
871
872 switch (info->cmd) {
873 case ETHTOOL_GRXRINGS:
874 info->data = efx->n_rx_channels;
875 return 0;
876
877 case ETHTOOL_GRXFH: {
878 unsigned min_revision = 0;
879
880 info->data = 0;
881 switch (info->flow_type) {
882 case TCP_V4_FLOW:
883 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
884 /* fall through */
885 case UDP_V4_FLOW:
886 case SCTP_V4_FLOW:
887 case AH_ESP_V4_FLOW:
888 case IPV4_FLOW:
889 info->data |= RXH_IP_SRC | RXH_IP_DST;
890 min_revision = EFX_REV_FALCON_B0;
891 break;
892 case TCP_V6_FLOW:
893 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
894 /* fall through */
895 case UDP_V6_FLOW:
896 case SCTP_V6_FLOW:
897 case AH_ESP_V6_FLOW:
898 case IPV6_FLOW:
899 info->data |= RXH_IP_SRC | RXH_IP_DST;
900 min_revision = EFX_REV_SIENA_A0;
901 break;
902 default:
903 break;
904 }
905 if (efx_nic_rev(efx) < min_revision)
906 info->data = 0;
907 return 0;
908 }
909
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000910 case ETHTOOL_GRXCLSRLCNT:
911 info->data = efx_filter_get_rx_id_limit(efx);
912 if (info->data == 0)
913 return -EOPNOTSUPP;
914 info->data |= RX_CLS_LOC_SPECIAL;
915 info->rule_cnt =
916 efx_filter_count_rx_used(efx, EFX_FILTER_PRI_MANUAL);
917 return 0;
918
919 case ETHTOOL_GRXCLSRULE:
920 if (efx_filter_get_rx_id_limit(efx) == 0)
921 return -EOPNOTSUPP;
922 return efx_ethtool_get_class_rule(efx, &info->fs);
923
924 case ETHTOOL_GRXCLSRLALL: {
925 s32 rc;
926 info->data = efx_filter_get_rx_id_limit(efx);
927 if (info->data == 0)
928 return -EOPNOTSUPP;
929 rc = efx_filter_get_rx_ids(efx, EFX_FILTER_PRI_MANUAL,
930 rule_locs, info->rule_cnt);
931 if (rc < 0)
932 return rc;
933 info->rule_cnt = rc;
934 return 0;
935 }
936
Ben Hutchings765c9f42010-06-30 05:06:28 +0000937 default:
938 return -EOPNOTSUPP;
939 }
940}
941
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000942static int efx_ethtool_set_class_rule(struct efx_nic *efx,
943 struct ethtool_rx_flow_spec *rule)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000944{
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000945 struct ethtool_tcpip4_spec *ip_entry = &rule->h_u.tcp_ip4_spec;
946 struct ethtool_tcpip4_spec *ip_mask = &rule->m_u.tcp_ip4_spec;
947 struct ethhdr *mac_entry = &rule->h_u.ether_spec;
948 struct ethhdr *mac_mask = &rule->m_u.ether_spec;
949 struct efx_filter_spec spec;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000950 int rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000951
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000952 /* Check that user wants us to choose the location */
Ben Hutchings9e0f9a12012-09-04 18:57:25 +0100953 if (rule->location != RX_CLS_LOC_ANY)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000954 return -EINVAL;
955
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000956 /* Range-check ring_cookie */
957 if (rule->ring_cookie >= efx->n_rx_channels &&
958 rule->ring_cookie != RX_CLS_FLOW_DISC)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000959 return -EINVAL;
960
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000961 /* Check for unsupported extensions */
962 if ((rule->flow_type & FLOW_EXT) &&
Ben Hutchings0e0c3402012-09-06 02:11:04 +0100963 (rule->m_ext.vlan_etype || rule->m_ext.data[0] ||
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000964 rule->m_ext.data[1]))
965 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000966
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000967 efx_filter_init_rx(&spec, EFX_FILTER_PRI_MANUAL,
968 efx->rx_scatter ? EFX_FILTER_FLAG_RX_SCATTER : 0,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000969 (rule->ring_cookie == RX_CLS_FLOW_DISC) ?
Ben Hutchingsf26e9582012-10-30 01:01:52 +0000970 EFX_FILTER_RX_DMAQ_ID_DROP : rule->ring_cookie);
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000971
972 switch (rule->flow_type) {
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000973 case TCP_V4_FLOW:
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000974 case UDP_V4_FLOW: {
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000975 u8 proto = (rule->flow_type == TCP_V4_FLOW ?
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000976 IPPROTO_TCP : IPPROTO_UDP);
977
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000978 /* Must match all of destination, */
Ben Hutchings0e0c3402012-09-06 02:11:04 +0100979 if (!(ip_mask->ip4dst == IP4_ADDR_FULL_MASK &&
980 ip_mask->pdst == PORT_FULL_MASK))
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000981 return -EINVAL;
982 /* all or none of source, */
Ben Hutchings0e0c3402012-09-06 02:11:04 +0100983 if ((ip_mask->ip4src || ip_mask->psrc) &&
984 !(ip_mask->ip4src == IP4_ADDR_FULL_MASK &&
985 ip_mask->psrc == PORT_FULL_MASK))
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000986 return -EINVAL;
987 /* and nothing else */
Ben Hutchings0e0c3402012-09-06 02:11:04 +0100988 if (ip_mask->tos || rule->m_ext.vlan_tci)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000989 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000990
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000991 if (ip_mask->ip4src)
992 rc = efx_filter_set_ipv4_full(&spec, proto,
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000993 ip_entry->ip4dst,
994 ip_entry->pdst,
995 ip_entry->ip4src,
996 ip_entry->psrc);
997 else
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000998 rc = efx_filter_set_ipv4_local(&spec, proto,
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000999 ip_entry->ip4dst,
1000 ip_entry->pdst);
1001 if (rc)
1002 return rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001003 break;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001004 }
1005
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001006 case ETHER_FLOW | FLOW_EXT:
Ben Hutchingsc274d652012-02-02 22:41:49 +00001007 case ETHER_FLOW: {
1008 u16 vlan_tag_mask = (rule->flow_type & FLOW_EXT ?
1009 ntohs(rule->m_ext.vlan_tci) : 0);
1010
1011 /* Must not match on source address or Ethertype */
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001012 if (!is_zero_ether_addr(mac_mask->h_source) ||
1013 mac_mask->h_proto)
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001014 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001015
Ben Hutchingsc274d652012-02-02 22:41:49 +00001016 /* Is it a default UC or MC filter? */
Joe Perches2e42e472012-05-09 17:17:46 +00001017 if (ether_addr_equal(mac_mask->h_dest, mac_addr_mc_mask) &&
Ben Hutchingsc274d652012-02-02 22:41:49 +00001018 vlan_tag_mask == 0) {
1019 if (is_multicast_ether_addr(mac_entry->h_dest))
1020 rc = efx_filter_set_mc_def(&spec);
1021 else
1022 rc = efx_filter_set_uc_def(&spec);
1023 }
1024 /* Otherwise, it must match all of destination and all
1025 * or none of VID.
1026 */
1027 else if (is_broadcast_ether_addr(mac_mask->h_dest) &&
1028 (vlan_tag_mask == 0xfff || vlan_tag_mask == 0)) {
1029 rc = efx_filter_set_eth_local(
1030 &spec,
1031 vlan_tag_mask ?
1032 ntohs(rule->h_ext.vlan_tci) : EFX_FILTER_VID_UNSPEC,
1033 mac_entry->h_dest);
1034 } else {
1035 rc = -EINVAL;
1036 }
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001037 if (rc)
1038 return rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001039 break;
Ben Hutchingsc274d652012-02-02 22:41:49 +00001040 }
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001041
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001042 default:
1043 return -EINVAL;
1044 }
1045
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001046 rc = efx_filter_insert_filter(efx, &spec, true);
1047 if (rc < 0)
1048 return rc;
Ben Hutchings47a84672011-05-14 02:35:25 +01001049
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001050 rule->location = rc;
1051 return 0;
1052}
1053
1054static int efx_ethtool_set_rxnfc(struct net_device *net_dev,
1055 struct ethtool_rxnfc *info)
1056{
1057 struct efx_nic *efx = netdev_priv(net_dev);
1058
1059 if (efx_filter_get_rx_id_limit(efx) == 0)
1060 return -EOPNOTSUPP;
1061
1062 switch (info->cmd) {
1063 case ETHTOOL_SRXCLSRLINS:
1064 return efx_ethtool_set_class_rule(efx, &info->fs);
1065
1066 case ETHTOOL_SRXCLSRLDEL:
1067 return efx_filter_remove_id_safe(efx, EFX_FILTER_PRI_MANUAL,
1068 info->fs.location);
1069
1070 default:
1071 return -EOPNOTSUPP;
1072 }
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001073}
1074
Ben Hutchings7850f632011-12-15 13:55:01 +00001075static u32 efx_ethtool_get_rxfh_indir_size(struct net_device *net_dev)
Ben Hutchings765c9f42010-06-30 05:06:28 +00001076{
1077 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings765c9f42010-06-30 05:06:28 +00001078
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001079 return ((efx_nic_rev(efx) < EFX_REV_FALCON_B0 ||
1080 efx->n_rx_channels == 1) ?
Ben Hutchings7850f632011-12-15 13:55:01 +00001081 0 : ARRAY_SIZE(efx->rx_indir_table));
1082}
Ben Hutchings765c9f42010-06-30 05:06:28 +00001083
Ben Hutchings7850f632011-12-15 13:55:01 +00001084static int efx_ethtool_get_rxfh_indir(struct net_device *net_dev, u32 *indir)
1085{
1086 struct efx_nic *efx = netdev_priv(net_dev);
1087
1088 memcpy(indir, efx->rx_indir_table, sizeof(efx->rx_indir_table));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001089 return 0;
1090}
1091
1092static int efx_ethtool_set_rxfh_indir(struct net_device *net_dev,
Ben Hutchings7850f632011-12-15 13:55:01 +00001093 const u32 *indir)
Ben Hutchings765c9f42010-06-30 05:06:28 +00001094{
1095 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings765c9f42010-06-30 05:06:28 +00001096
Ben Hutchings7850f632011-12-15 13:55:01 +00001097 memcpy(efx->rx_indir_table, indir, sizeof(efx->rx_indir_table));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001098 efx_nic_push_rx_indir_table(efx);
1099 return 0;
1100}
1101
Ben Hutchings62ebac92013-04-08 17:34:58 +01001102int efx_ethtool_get_ts_info(struct net_device *net_dev,
1103 struct ethtool_ts_info *ts_info)
1104{
1105 struct efx_nic *efx = netdev_priv(net_dev);
1106
1107 /* Software capabilities */
1108 ts_info->so_timestamping = (SOF_TIMESTAMPING_RX_SOFTWARE |
1109 SOF_TIMESTAMPING_SOFTWARE);
1110 ts_info->phc_index = -1;
1111
1112 efx_ptp_get_ts_info(efx, ts_info);
1113 return 0;
1114}
1115
Stuart Hodgsonc087bd22012-05-01 18:50:43 +01001116static int efx_ethtool_get_module_eeprom(struct net_device *net_dev,
1117 struct ethtool_eeprom *ee,
1118 u8 *data)
1119{
1120 struct efx_nic *efx = netdev_priv(net_dev);
1121 int ret;
1122
1123 if (!efx->phy_op || !efx->phy_op->get_module_eeprom)
1124 return -EOPNOTSUPP;
1125
1126 mutex_lock(&efx->mac_lock);
1127 ret = efx->phy_op->get_module_eeprom(efx, ee, data);
1128 mutex_unlock(&efx->mac_lock);
1129
1130 return ret;
1131}
1132
1133static int efx_ethtool_get_module_info(struct net_device *net_dev,
1134 struct ethtool_modinfo *modinfo)
1135{
1136 struct efx_nic *efx = netdev_priv(net_dev);
1137 int ret;
1138
1139 if (!efx->phy_op || !efx->phy_op->get_module_info)
1140 return -EOPNOTSUPP;
1141
1142 mutex_lock(&efx->mac_lock);
1143 ret = efx->phy_op->get_module_info(efx, modinfo);
1144 mutex_unlock(&efx->mac_lock);
1145
1146 return ret;
1147}
1148
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001149const struct ethtool_ops efx_ethtool_ops = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001150 .get_settings = efx_ethtool_get_settings,
1151 .set_settings = efx_ethtool_set_settings,
1152 .get_drvinfo = efx_ethtool_get_drvinfo,
Ben Hutchings5b98c1b2010-06-21 03:06:53 +00001153 .get_regs_len = efx_ethtool_get_regs_len,
1154 .get_regs = efx_ethtool_get_regs,
Ben Hutchings62776d02010-06-23 11:30:07 +00001155 .get_msglevel = efx_ethtool_get_msglevel,
1156 .set_msglevel = efx_ethtool_set_msglevel,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001157 .nway_reset = efx_ethtool_nway_reset,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +00001158 .get_link = ethtool_op_get_link,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001159 .get_coalesce = efx_ethtool_get_coalesce,
1160 .set_coalesce = efx_ethtool_set_coalesce,
Ben Hutchings46426102010-09-10 06:42:33 +00001161 .get_ringparam = efx_ethtool_get_ringparam,
1162 .set_ringparam = efx_ethtool_set_ringparam,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001163 .get_pauseparam = efx_ethtool_get_pauseparam,
1164 .set_pauseparam = efx_ethtool_set_pauseparam,
Ben Hutchings3594e132008-09-01 12:48:12 +01001165 .get_sset_count = efx_ethtool_get_sset_count,
Ben Hutchings3273c2e2008-05-07 13:36:19 +01001166 .self_test = efx_ethtool_self_test,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001167 .get_strings = efx_ethtool_get_strings,
Ben Hutchingsc5e129a2011-04-02 00:43:46 +01001168 .set_phys_id = efx_ethtool_phys_id,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001169 .get_ethtool_stats = efx_ethtool_get_stats,
Ben Hutchings89c758f2009-11-29 03:43:07 +00001170 .get_wol = efx_ethtool_get_wol,
1171 .set_wol = efx_ethtool_set_wol,
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001172 .reset = efx_ethtool_reset,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001173 .get_rxnfc = efx_ethtool_get_rxnfc,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001174 .set_rxnfc = efx_ethtool_set_rxnfc,
Ben Hutchings7850f632011-12-15 13:55:01 +00001175 .get_rxfh_indir_size = efx_ethtool_get_rxfh_indir_size,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001176 .get_rxfh_indir = efx_ethtool_get_rxfh_indir,
1177 .set_rxfh_indir = efx_ethtool_set_rxfh_indir,
Ben Hutchings62ebac92013-04-08 17:34:58 +01001178 .get_ts_info = efx_ethtool_get_ts_info,
Stuart Hodgsonc087bd22012-05-01 18:50:43 +01001179 .get_module_info = efx_ethtool_get_module_info,
1180 .get_module_eeprom = efx_ethtool_get_module_eeprom,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001181};