blob: 55c3826447fa8875ea34d5faada849a24c4a0950 [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 Hutchingsd3245b22009-11-29 03:42:41 +0000208 /* Both MACs support pause frames (bidirectional and respond-only) */
209 ecmd->supported |= SUPPORTED_Pause | SUPPORTED_Asym_Pause;
210
211 if (LOOPBACK_INTERNAL(efx)) {
David Decotigny70739492011-04-27 18:32:40 +0000212 ethtool_cmd_speed_set(ecmd, link_state->speed);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000213 ecmd->duplex = link_state->fd ? DUPLEX_FULL : DUPLEX_HALF;
214 }
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800215
216 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100217}
218
219/* This must be called with rtnl_lock held. */
stephen hemmingerd2156972010-10-18 05:27:31 +0000220static int efx_ethtool_set_settings(struct net_device *net_dev,
221 struct ethtool_cmd *ecmd)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100222{
Ben Hutchings767e4682008-09-01 12:43:14 +0100223 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100224 int rc;
225
Ben Hutchings754c6532010-02-03 09:31:57 +0000226 /* GMAC does not support 1000Mbps HD */
David Decotigny25db0332011-04-27 18:32:39 +0000227 if ((ethtool_cmd_speed(ecmd) == SPEED_1000) &&
228 (ecmd->duplex != DUPLEX_FULL)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000229 netif_dbg(efx, drv, efx->net_dev,
230 "rejecting unsupported 1000Mbps HD setting\n");
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800231 return -EINVAL;
232 }
233
Ben Hutchings8ceee662008-04-27 12:55:59 +0100234 mutex_lock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800235 rc = efx->phy_op->set_settings(efx, ecmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100236 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100237 return rc;
238}
239
240static void efx_ethtool_get_drvinfo(struct net_device *net_dev,
241 struct ethtool_drvinfo *info)
242{
Ben Hutchings767e4682008-09-01 12:43:14 +0100243 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100244
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +0000245 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100246 strlcpy(info->version, EFX_DRIVER_VERSION, sizeof(info->version));
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000247 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0)
Ben Hutchingse5f0fd22011-02-24 23:57:47 +0000248 efx_mcdi_print_fwver(efx, info->fw_version,
249 sizeof(info->fw_version));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100250 strlcpy(info->bus_info, pci_name(efx->pci_dev), sizeof(info->bus_info));
251}
252
Ben Hutchings5b98c1b2010-06-21 03:06:53 +0000253static int efx_ethtool_get_regs_len(struct net_device *net_dev)
254{
255 return efx_nic_get_regs_len(netdev_priv(net_dev));
256}
257
258static void efx_ethtool_get_regs(struct net_device *net_dev,
259 struct ethtool_regs *regs, void *buf)
260{
261 struct efx_nic *efx = netdev_priv(net_dev);
262
263 regs->version = efx->type->revision;
264 efx_nic_get_regs(efx, buf);
265}
266
Ben Hutchings62776d02010-06-23 11:30:07 +0000267static u32 efx_ethtool_get_msglevel(struct net_device *net_dev)
268{
269 struct efx_nic *efx = netdev_priv(net_dev);
270 return efx->msg_enable;
271}
272
273static void efx_ethtool_set_msglevel(struct net_device *net_dev, u32 msg_enable)
274{
275 struct efx_nic *efx = netdev_priv(net_dev);
276 efx->msg_enable = msg_enable;
277}
278
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100279/**
280 * efx_fill_test - fill in an individual self-test entry
281 * @test_index: Index of the test
282 * @strings: Ethtool strings, or %NULL
283 * @data: Ethtool test results, or %NULL
284 * @test: Pointer to test result (used only if data != %NULL)
Ben Hutchings740ced92008-12-12 21:41:55 -0800285 * @unit_format: Unit name format (e.g. "chan\%d")
286 * @unit_id: Unit id (e.g. 0 for "chan0")
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100287 * @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
Ben Hutchings740ced92008-12-12 21:41:55 -0800288 * @test_id: Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent")
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100289 *
290 * Fill in an individual self-test entry.
291 */
292static void efx_fill_test(unsigned int test_index,
293 struct ethtool_string *strings, u64 *data,
294 int *test, const char *unit_format, int unit_id,
295 const char *test_format, const char *test_id)
296{
297 struct ethtool_string unit_str, test_str;
298
299 /* Fill data value, if applicable */
300 if (data)
301 data[test_index] = *test;
302
303 /* Fill string, if applicable */
304 if (strings) {
Ben Hutchings11e66962008-12-12 22:05:48 -0800305 if (strchr(unit_format, '%'))
306 snprintf(unit_str.name, sizeof(unit_str.name),
307 unit_format, unit_id);
308 else
309 strcpy(unit_str.name, unit_format);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100310 snprintf(test_str.name, sizeof(test_str.name),
311 test_format, test_id);
312 snprintf(strings[test_index].name,
313 sizeof(strings[test_index].name),
Ben Hutchings740ced92008-12-12 21:41:55 -0800314 "%-6s %-24s", unit_str.name, test_str.name);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100315 }
316}
317
Ben Hutchings740ced92008-12-12 21:41:55 -0800318#define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100319#define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue
320#define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue
321#define EFX_LOOPBACK_NAME(_mode, _counter) \
Ben Hutchingsc4593022009-11-23 16:08:17 +0000322 "loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100323
324/**
325 * efx_fill_loopback_test - fill in a block of loopback self-test entries
326 * @efx: Efx NIC
327 * @lb_tests: Efx loopback self-test results structure
328 * @mode: Loopback test mode
329 * @test_index: Starting index of the test
330 * @strings: Ethtool strings, or %NULL
331 * @data: Ethtool test results, or %NULL
332 */
333static int efx_fill_loopback_test(struct efx_nic *efx,
334 struct efx_loopback_self_tests *lb_tests,
335 enum efx_loopback_mode mode,
336 unsigned int test_index,
337 struct ethtool_string *strings, u64 *data)
338{
Ben Hutchings1ac02262012-09-13 02:22:52 +0100339 struct efx_channel *channel =
340 efx_get_channel(efx, efx->tx_channel_offset);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100341 struct efx_tx_queue *tx_queue;
342
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000343 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100344 efx_fill_test(test_index++, strings, data,
345 &lb_tests->tx_sent[tx_queue->queue],
346 EFX_TX_QUEUE_NAME(tx_queue),
347 EFX_LOOPBACK_NAME(mode, "tx_sent"));
348 efx_fill_test(test_index++, strings, data,
349 &lb_tests->tx_done[tx_queue->queue],
350 EFX_TX_QUEUE_NAME(tx_queue),
351 EFX_LOOPBACK_NAME(mode, "tx_done"));
352 }
353 efx_fill_test(test_index++, strings, data,
354 &lb_tests->rx_good,
Ben Hutchings11e66962008-12-12 22:05:48 -0800355 "rx", 0,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100356 EFX_LOOPBACK_NAME(mode, "rx_good"));
357 efx_fill_test(test_index++, strings, data,
358 &lb_tests->rx_bad,
Ben Hutchings11e66962008-12-12 22:05:48 -0800359 "rx", 0,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100360 EFX_LOOPBACK_NAME(mode, "rx_bad"));
361
362 return test_index;
363}
364
365/**
366 * efx_ethtool_fill_self_tests - get self-test details
367 * @efx: Efx NIC
368 * @tests: Efx self-test results structure, or %NULL
369 * @strings: Ethtool strings, or %NULL
370 * @data: Ethtool test results, or %NULL
371 */
372static int efx_ethtool_fill_self_tests(struct efx_nic *efx,
373 struct efx_self_tests *tests,
374 struct ethtool_string *strings,
375 u64 *data)
376{
377 struct efx_channel *channel;
Ben Hutchings17967212008-12-26 13:47:25 -0800378 unsigned int n = 0, i;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100379 enum efx_loopback_mode mode;
380
Ben Hutchings4f16c072010-02-03 09:30:50 +0000381 efx_fill_test(n++, strings, data, &tests->phy_alive,
382 "phy", 0, "alive", NULL);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100383 efx_fill_test(n++, strings, data, &tests->nvram,
384 "core", 0, "nvram", NULL);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100385 efx_fill_test(n++, strings, data, &tests->interrupt,
386 "core", 0, "interrupt", NULL);
387
388 /* Event queues */
389 efx_for_each_channel(channel, efx) {
390 efx_fill_test(n++, strings, data,
391 &tests->eventq_dma[channel->channel],
392 EFX_CHANNEL_NAME(channel),
393 "eventq.dma", NULL);
394 efx_fill_test(n++, strings, data,
395 &tests->eventq_int[channel->channel],
396 EFX_CHANNEL_NAME(channel),
397 "eventq.int", NULL);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100398 }
399
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100400 efx_fill_test(n++, strings, data, &tests->registers,
401 "core", 0, "registers", NULL);
Ben Hutchings17967212008-12-26 13:47:25 -0800402
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000403 if (efx->phy_op->run_tests != NULL) {
404 EFX_BUG_ON_PARANOID(efx->phy_op->test_name == NULL);
405
406 for (i = 0; true; ++i) {
407 const char *name;
408
409 EFX_BUG_ON_PARANOID(i >= EFX_MAX_PHY_TESTS);
410 name = efx->phy_op->test_name(efx, i);
411 if (name == NULL)
412 break;
413
Ben Hutchings4f16c072010-02-03 09:30:50 +0000414 efx_fill_test(n++, strings, data, &tests->phy_ext[i],
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000415 "phy", 0, name, NULL);
416 }
417 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100418
419 /* Loopback tests */
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100420 for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100421 if (!(efx->loopback_modes & (1 << mode)))
422 continue;
423 n = efx_fill_loopback_test(efx,
424 &tests->loopback[mode], mode, n,
425 strings, data);
426 }
427
428 return n;
429}
430
Ben Hutchings3594e132008-09-01 12:48:12 +0100431static int efx_ethtool_get_sset_count(struct net_device *net_dev,
432 int string_set)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100433{
Ben Hutchings3594e132008-09-01 12:48:12 +0100434 switch (string_set) {
435 case ETH_SS_STATS:
436 return EFX_ETHTOOL_NUM_STATS;
437 case ETH_SS_TEST:
438 return efx_ethtool_fill_self_tests(netdev_priv(net_dev),
439 NULL, NULL, NULL);
440 default:
441 return -EINVAL;
442 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100443}
444
Ben Hutchings8ceee662008-04-27 12:55:59 +0100445static void efx_ethtool_get_strings(struct net_device *net_dev,
446 u32 string_set, u8 *strings)
447{
Ben Hutchings767e4682008-09-01 12:43:14 +0100448 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100449 struct ethtool_string *ethtool_strings =
450 (struct ethtool_string *)strings;
451 int i;
452
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100453 switch (string_set) {
454 case ETH_SS_STATS:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100455 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++)
Ben Hutchingsa4ed2d42012-07-02 21:36:59 +0100456 strlcpy(ethtool_strings[i].name,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100457 efx_ethtool_stats[i].name,
458 sizeof(ethtool_strings[i].name));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100459 break;
460 case ETH_SS_TEST:
461 efx_ethtool_fill_self_tests(efx, NULL,
462 ethtool_strings, NULL);
463 break;
464 default:
465 /* No other string sets */
466 break;
467 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100468}
469
470static void efx_ethtool_get_stats(struct net_device *net_dev,
471 struct ethtool_stats *stats,
472 u64 *data)
473{
Ben Hutchings767e4682008-09-01 12:43:14 +0100474 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100475 struct efx_mac_stats *mac_stats = &efx->mac_stats;
Ben Hutchings18e83e42012-01-05 19:05:20 +0000476 const struct efx_ethtool_stat *stat;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100477 struct efx_channel *channel;
Ben Hutchings119226c2011-02-18 19:14:13 +0000478 struct efx_tx_queue *tx_queue;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100479 int i;
480
481 EFX_BUG_ON_PARANOID(stats->n_stats != EFX_ETHTOOL_NUM_STATS);
482
Ben Hutchings1cb34522011-09-02 23:23:00 +0100483 spin_lock_bh(&efx->stats_lock);
484
Ben Hutchings8ceee662008-04-27 12:55:59 +0100485 /* Update MAC and NIC statistics */
Ben Hutchings1cb34522011-09-02 23:23:00 +0100486 efx->type->update_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100487
488 /* Fill detailed statistics buffer */
489 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++) {
490 stat = &efx_ethtool_stats[i];
491 switch (stat->source) {
492 case EFX_ETHTOOL_STAT_SOURCE_mac_stats:
493 data[i] = stat->get_stat((void *)mac_stats +
494 stat->offset);
495 break;
496 case EFX_ETHTOOL_STAT_SOURCE_nic:
497 data[i] = stat->get_stat((void *)efx + stat->offset);
498 break;
499 case EFX_ETHTOOL_STAT_SOURCE_channel:
500 data[i] = 0;
501 efx_for_each_channel(channel, efx)
502 data[i] += stat->get_stat((void *)channel +
503 stat->offset);
504 break;
Ben Hutchings119226c2011-02-18 19:14:13 +0000505 case EFX_ETHTOOL_STAT_SOURCE_tx_queue:
506 data[i] = 0;
507 efx_for_each_channel(channel, efx) {
508 efx_for_each_channel_tx_queue(tx_queue, channel)
509 data[i] +=
510 stat->get_stat((void *)tx_queue
511 + stat->offset);
512 }
513 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100514 }
515 }
Ben Hutchings1cb34522011-09-02 23:23:00 +0100516
517 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100518}
519
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100520static void efx_ethtool_self_test(struct net_device *net_dev,
521 struct ethtool_test *test, u64 *data)
522{
Ben Hutchings767e4682008-09-01 12:43:14 +0100523 struct efx_nic *efx = netdev_priv(net_dev);
Eric Dumazet28801f32011-02-16 03:48:38 +0000524 struct efx_self_tests *efx_tests;
Ben Hutchings2ef30682008-12-26 13:47:04 -0800525 int already_up;
Eric Dumazet28801f32011-02-16 03:48:38 +0000526 int rc = -ENOMEM;
527
528 efx_tests = kzalloc(sizeof(*efx_tests), GFP_KERNEL);
529 if (!efx_tests)
530 goto fail;
531
Ben Hutchingsf16aeea2012-07-27 19:31:16 +0100532 if (efx->state != STATE_READY) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100533 rc = -EIO;
534 goto fail1;
535 }
536
Ben Hutchingsac33ac62010-12-07 18:29:52 +0000537 netif_info(efx, drv, efx->net_dev, "starting %sline testing\n",
538 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
539
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100540 /* We need rx buffers and interrupts. */
541 already_up = (efx->net_dev->flags & IFF_UP);
542 if (!already_up) {
543 rc = dev_open(efx->net_dev);
544 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000545 netif_err(efx, drv, efx->net_dev,
546 "failed opening device.\n");
Eric Dumazet28801f32011-02-16 03:48:38 +0000547 goto fail1;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100548 }
549 }
550
Eric Dumazet28801f32011-02-16 03:48:38 +0000551 rc = efx_selftest(efx, efx_tests, test->flags);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100552
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100553 if (!already_up)
554 dev_close(efx->net_dev);
555
Ben Hutchingsac33ac62010-12-07 18:29:52 +0000556 netif_info(efx, drv, efx->net_dev, "%s %sline self-tests\n",
557 rc == 0 ? "passed" : "failed",
558 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100559
Eric Dumazet28801f32011-02-16 03:48:38 +0000560fail1:
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100561 /* Fill ethtool results structures */
Eric Dumazet28801f32011-02-16 03:48:38 +0000562 efx_ethtool_fill_self_tests(efx, efx_tests, NULL, data);
563 kfree(efx_tests);
564fail:
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100565 if (rc)
566 test->flags |= ETH_TEST_FL_FAILED;
567}
568
Ben Hutchings8ceee662008-04-27 12:55:59 +0100569/* Restart autonegotiation */
570static int efx_ethtool_nway_reset(struct net_device *net_dev)
571{
Ben Hutchings767e4682008-09-01 12:43:14 +0100572 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100573
Ben Hutchings68e7f452009-04-29 08:05:08 +0000574 return mdio45_nway_restart(&efx->mdio);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100575}
576
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000577/*
578 * Each channel has a single IRQ and moderation timer, started by any
579 * completion (or other event). Unless the module parameter
580 * separate_tx_channels is set, IRQs and moderation are therefore
581 * shared between RX and TX completions. In this case, when RX IRQ
582 * moderation is explicitly changed then TX IRQ moderation is
583 * automatically changed too, but otherwise we fail if the two values
584 * are requested to be different.
585 *
Ben Hutchings13225972011-09-05 07:43:49 +0000586 * The hardware does not support a limit on the number of completions
587 * before an IRQ, so we do not use the max_frames fields. We should
588 * report and require that max_frames == (usecs != 0), but this would
589 * invalidate existing user documentation.
590 *
591 * The hardware does not have distinct settings for interrupt
592 * moderation while the previous IRQ is being handled, so we should
593 * not use the 'irq' fields. However, an earlier developer
594 * misunderstood the meaning of the 'irq' fields and the driver did
595 * not support the standard fields. To avoid invalidating existing
596 * user documentation, we report and accept changes through either the
597 * standard or 'irq' fields. If both are changed at the same time, we
598 * prefer the standard field.
599 *
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000600 * We implement adaptive IRQ moderation, but use a different algorithm
601 * from that assumed in the definition of struct ethtool_coalesce.
602 * Therefore we do not use any of the adaptive moderation parameters
603 * in it.
604 */
605
Ben Hutchings8ceee662008-04-27 12:55:59 +0100606static int efx_ethtool_get_coalesce(struct net_device *net_dev,
607 struct ethtool_coalesce *coalesce)
608{
Ben Hutchings767e4682008-09-01 12:43:14 +0100609 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000610 unsigned int tx_usecs, rx_usecs;
611 bool rx_adaptive;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100612
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000613 efx_get_irq_moderation(efx, &tx_usecs, &rx_usecs, &rx_adaptive);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100614
Ben Hutchings13225972011-09-05 07:43:49 +0000615 coalesce->tx_coalesce_usecs = tx_usecs;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000616 coalesce->tx_coalesce_usecs_irq = tx_usecs;
Ben Hutchings13225972011-09-05 07:43:49 +0000617 coalesce->rx_coalesce_usecs = rx_usecs;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000618 coalesce->rx_coalesce_usecs_irq = rx_usecs;
619 coalesce->use_adaptive_rx_coalesce = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000620
Ben Hutchings8ceee662008-04-27 12:55:59 +0100621 return 0;
622}
623
Ben Hutchings8ceee662008-04-27 12:55:59 +0100624static int efx_ethtool_set_coalesce(struct net_device *net_dev,
625 struct ethtool_coalesce *coalesce)
626{
Ben Hutchings767e4682008-09-01 12:43:14 +0100627 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100628 struct efx_channel *channel;
Ben Hutchingsb548f972011-09-05 07:41:44 +0000629 unsigned int tx_usecs, rx_usecs;
Ben Hutchings9e393b32011-09-05 07:43:04 +0000630 bool adaptive, rx_may_override_tx;
631 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100632
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000633 if (coalesce->use_adaptive_tx_coalesce)
Ben Hutchings9f85ee92011-09-05 07:41:27 +0000634 return -EINVAL;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100635
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000636 efx_get_irq_moderation(efx, &tx_usecs, &rx_usecs, &adaptive);
637
Ben Hutchings13225972011-09-05 07:43:49 +0000638 if (coalesce->rx_coalesce_usecs != rx_usecs)
639 rx_usecs = coalesce->rx_coalesce_usecs;
640 else
641 rx_usecs = coalesce->rx_coalesce_usecs_irq;
642
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000643 adaptive = coalesce->use_adaptive_rx_coalesce;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100644
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000645 /* If channels are shared, TX IRQ moderation can be quietly
646 * overridden unless it is changed from its old value.
647 */
Ben Hutchings13225972011-09-05 07:43:49 +0000648 rx_may_override_tx = (coalesce->tx_coalesce_usecs == tx_usecs &&
649 coalesce->tx_coalesce_usecs_irq == tx_usecs);
650 if (coalesce->tx_coalesce_usecs != tx_usecs)
651 tx_usecs = coalesce->tx_coalesce_usecs;
652 else
653 tx_usecs = coalesce->tx_coalesce_usecs_irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100654
Ben Hutchings9e393b32011-09-05 07:43:04 +0000655 rc = efx_init_irq_moderation(efx, tx_usecs, rx_usecs, adaptive,
656 rx_may_override_tx);
657 if (rc != 0)
658 return rc;
659
Ben Hutchings8ceee662008-04-27 12:55:59 +0100660 efx_for_each_channel(channel, efx)
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000661 efx->type->push_irq_moderation(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100662
663 return 0;
664}
665
Ben Hutchings46426102010-09-10 06:42:33 +0000666static void efx_ethtool_get_ringparam(struct net_device *net_dev,
667 struct ethtool_ringparam *ring)
668{
669 struct efx_nic *efx = netdev_priv(net_dev);
670
671 ring->rx_max_pending = EFX_MAX_DMAQ_SIZE;
672 ring->tx_max_pending = EFX_MAX_DMAQ_SIZE;
Ben Hutchings46426102010-09-10 06:42:33 +0000673 ring->rx_pending = efx->rxq_entries;
674 ring->tx_pending = efx->txq_entries;
Ben Hutchings46426102010-09-10 06:42:33 +0000675}
676
677static int efx_ethtool_set_ringparam(struct net_device *net_dev,
678 struct ethtool_ringparam *ring)
679{
680 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000681 u32 txq_entries;
Ben Hutchings46426102010-09-10 06:42:33 +0000682
683 if (ring->rx_mini_pending || ring->rx_jumbo_pending ||
684 ring->rx_pending > EFX_MAX_DMAQ_SIZE ||
685 ring->tx_pending > EFX_MAX_DMAQ_SIZE)
686 return -EINVAL;
687
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000688 if (ring->rx_pending < EFX_RXQ_MIN_ENT) {
Ben Hutchings46426102010-09-10 06:42:33 +0000689 netif_err(efx, drv, efx->net_dev,
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000690 "RX queues cannot be smaller than %u\n",
691 EFX_RXQ_MIN_ENT);
Ben Hutchings46426102010-09-10 06:42:33 +0000692 return -EINVAL;
693 }
694
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000695 txq_entries = max(ring->tx_pending, EFX_TXQ_MIN_ENT(efx));
696 if (txq_entries != ring->tx_pending)
697 netif_warn(efx, drv, efx->net_dev,
698 "increasing TX queue size to minimum of %u\n",
699 txq_entries);
700
701 return efx_realloc_channels(efx, ring->rx_pending, txq_entries);
Ben Hutchings46426102010-09-10 06:42:33 +0000702}
703
Ben Hutchings8ceee662008-04-27 12:55:59 +0100704static int efx_ethtool_set_pauseparam(struct net_device *net_dev,
705 struct ethtool_pauseparam *pause)
706{
Ben Hutchings767e4682008-09-01 12:43:14 +0100707 struct efx_nic *efx = netdev_priv(net_dev);
David S. Millerb5626942011-05-17 17:53:22 -0400708 u8 wanted_fc, old_fc;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000709 u32 old_adv;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000710 int rc = 0;
711
712 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100713
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800714 wanted_fc = ((pause->rx_pause ? EFX_FC_RX : 0) |
715 (pause->tx_pause ? EFX_FC_TX : 0) |
716 (pause->autoneg ? EFX_FC_AUTO : 0));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100717
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800718 if ((wanted_fc & EFX_FC_TX) && !(wanted_fc & EFX_FC_RX)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000719 netif_dbg(efx, drv, efx->net_dev,
720 "Flow control unsupported: tx ON rx OFF\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000721 rc = -EINVAL;
722 goto out;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800723 }
724
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000725 if ((wanted_fc & EFX_FC_AUTO) && !efx->link_advertising) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000726 netif_dbg(efx, drv, efx->net_dev,
727 "Autonegotiation is disabled\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000728 rc = -EINVAL;
729 goto out;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800730 }
731
Ben Hutchings9dd3a132012-09-13 01:11:25 +0100732 /* Hook for Falcon bug 11482 workaround */
733 if (efx->type->prepare_enable_fc_tx &&
734 (wanted_fc & EFX_FC_TX) && !(efx->wanted_fc & EFX_FC_TX))
735 efx->type->prepare_enable_fc_tx(efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800736
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000737 old_adv = efx->link_advertising;
738 old_fc = efx->wanted_fc;
739 efx_link_set_wanted_fc(efx, wanted_fc);
740 if (efx->link_advertising != old_adv ||
741 (efx->wanted_fc ^ old_fc) & EFX_FC_AUTO) {
742 rc = efx->phy_op->reconfigure(efx);
743 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000744 netif_err(efx, drv, efx->net_dev,
745 "Unable to advertise requested flow "
746 "control setting\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000747 goto out;
748 }
749 }
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800750
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000751 /* Reconfigure the MAC. The PHY *may* generate a link state change event
752 * if the user just changed the advertised capabilities, but there's no
753 * harm doing this twice */
Ben Hutchings710b2082011-09-03 00:15:00 +0100754 efx->type->reconfigure_mac(efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800755
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000756out:
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800757 mutex_unlock(&efx->mac_lock);
758
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000759 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100760}
761
762static void efx_ethtool_get_pauseparam(struct net_device *net_dev,
763 struct ethtool_pauseparam *pause)
764{
Ben Hutchings767e4682008-09-01 12:43:14 +0100765 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100766
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800767 pause->rx_pause = !!(efx->wanted_fc & EFX_FC_RX);
768 pause->tx_pause = !!(efx->wanted_fc & EFX_FC_TX);
769 pause->autoneg = !!(efx->wanted_fc & EFX_FC_AUTO);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100770}
771
772
Ben Hutchings89c758f2009-11-29 03:43:07 +0000773static void efx_ethtool_get_wol(struct net_device *net_dev,
774 struct ethtool_wolinfo *wol)
775{
776 struct efx_nic *efx = netdev_priv(net_dev);
777 return efx->type->get_wol(efx, wol);
778}
779
780
781static int efx_ethtool_set_wol(struct net_device *net_dev,
782 struct ethtool_wolinfo *wol)
783{
784 struct efx_nic *efx = netdev_priv(net_dev);
785 return efx->type->set_wol(efx, wol->wolopts);
786}
787
stephen hemmingerd2156972010-10-18 05:27:31 +0000788static int efx_ethtool_reset(struct net_device *net_dev, u32 *flags)
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000789{
790 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100791 int rc;
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000792
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100793 rc = efx->type->map_reset_flags(flags);
794 if (rc < 0)
795 return rc;
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000796
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100797 return efx_reset(efx, rc);
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000798}
799
Ben Hutchings7c460d92012-10-27 00:33:28 +0100800/* MAC address mask including only I/G bit */
801static const u8 mac_addr_ig_mask[ETH_ALEN] = { 0x01, 0, 0, 0, 0, 0 };
Ben Hutchingsc274d652012-02-02 22:41:49 +0000802
Ben Hutchings0e0c3402012-09-06 02:11:04 +0100803#define IP4_ADDR_FULL_MASK ((__force __be32)~0)
804#define PORT_FULL_MASK ((__force __be16)~0)
Ben Hutchings7c460d92012-10-27 00:33:28 +0100805#define ETHER_TYPE_FULL_MASK ((__force __be16)~0)
Ben Hutchings0e0c3402012-09-06 02:11:04 +0100806
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000807static int efx_ethtool_get_class_rule(struct efx_nic *efx,
808 struct ethtool_rx_flow_spec *rule)
809{
810 struct ethtool_tcpip4_spec *ip_entry = &rule->h_u.tcp_ip4_spec;
811 struct ethtool_tcpip4_spec *ip_mask = &rule->m_u.tcp_ip4_spec;
Ben Hutchingsc274d652012-02-02 22:41:49 +0000812 struct ethhdr *mac_entry = &rule->h_u.ether_spec;
813 struct ethhdr *mac_mask = &rule->m_u.ether_spec;
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000814 struct efx_filter_spec spec;
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000815 int rc;
816
817 rc = efx_filter_get_filter_safe(efx, EFX_FILTER_PRI_MANUAL,
818 rule->location, &spec);
819 if (rc)
820 return rc;
821
Ben Hutchingsf26e9582012-10-30 01:01:52 +0000822 if (spec.dmaq_id == EFX_FILTER_RX_DMAQ_ID_DROP)
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000823 rule->ring_cookie = RX_CLS_FLOW_DISC;
824 else
825 rule->ring_cookie = spec.dmaq_id;
826
Ben Hutchings7c460d92012-10-27 00:33:28 +0100827 if ((spec.match_flags & EFX_FILTER_MATCH_ETHER_TYPE) &&
828 spec.ether_type == htons(ETH_P_IP) &&
829 (spec.match_flags & EFX_FILTER_MATCH_IP_PROTO) &&
830 (spec.ip_proto == IPPROTO_TCP || spec.ip_proto == IPPROTO_UDP) &&
831 !(spec.match_flags &
832 ~(EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_OUTER_VID |
833 EFX_FILTER_MATCH_LOC_HOST | EFX_FILTER_MATCH_REM_HOST |
834 EFX_FILTER_MATCH_IP_PROTO |
835 EFX_FILTER_MATCH_LOC_PORT | EFX_FILTER_MATCH_REM_PORT))) {
836 rule->flow_type = ((spec.ip_proto == IPPROTO_TCP) ?
837 TCP_V4_FLOW : UDP_V4_FLOW);
838 if (spec.match_flags & EFX_FILTER_MATCH_LOC_HOST) {
839 ip_entry->ip4dst = spec.loc_host[0];
840 ip_mask->ip4dst = IP4_ADDR_FULL_MASK;
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000841 }
Ben Hutchings7c460d92012-10-27 00:33:28 +0100842 if (spec.match_flags & EFX_FILTER_MATCH_REM_HOST) {
843 ip_entry->ip4src = spec.rem_host[0];
844 ip_mask->ip4src = IP4_ADDR_FULL_MASK;
845 }
846 if (spec.match_flags & EFX_FILTER_MATCH_LOC_PORT) {
847 ip_entry->pdst = spec.loc_port;
848 ip_mask->pdst = PORT_FULL_MASK;
849 }
850 if (spec.match_flags & EFX_FILTER_MATCH_REM_PORT) {
851 ip_entry->psrc = spec.rem_port;
852 ip_mask->psrc = PORT_FULL_MASK;
853 }
854 } else if (!(spec.match_flags &
855 ~(EFX_FILTER_MATCH_LOC_MAC | EFX_FILTER_MATCH_LOC_MAC_IG |
856 EFX_FILTER_MATCH_REM_MAC | EFX_FILTER_MATCH_ETHER_TYPE |
857 EFX_FILTER_MATCH_OUTER_VID))) {
858 rule->flow_type = ETHER_FLOW;
859 if (spec.match_flags &
860 (EFX_FILTER_MATCH_LOC_MAC | EFX_FILTER_MATCH_LOC_MAC_IG)) {
861 memcpy(mac_entry->h_dest, spec.loc_mac, ETH_ALEN);
862 if (spec.match_flags & EFX_FILTER_MATCH_LOC_MAC)
863 memset(mac_mask->h_dest, ~0, ETH_ALEN);
864 else
865 memcpy(mac_mask->h_dest, mac_addr_ig_mask,
866 ETH_ALEN);
867 }
868 if (spec.match_flags & EFX_FILTER_MATCH_REM_MAC) {
869 memcpy(mac_entry->h_source, spec.rem_mac, ETH_ALEN);
870 memset(mac_mask->h_source, ~0, ETH_ALEN);
871 }
872 if (spec.match_flags & EFX_FILTER_MATCH_ETHER_TYPE) {
873 mac_entry->h_proto = spec.ether_type;
874 mac_mask->h_proto = ETHER_TYPE_FULL_MASK;
875 }
876 } else {
877 /* The above should handle all filters that we insert */
878 WARN_ON(1);
879 return -EINVAL;
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000880 }
881
Ben Hutchings7c460d92012-10-27 00:33:28 +0100882 if (spec.match_flags & EFX_FILTER_MATCH_OUTER_VID) {
883 rule->flow_type |= FLOW_EXT;
884 rule->h_ext.vlan_tci = spec.outer_vid;
885 rule->m_ext.vlan_tci = htons(0xfff);
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000886 }
Ben Hutchings7c460d92012-10-27 00:33:28 +0100887
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000888 return rc;
889}
890
Ben Hutchings765c9f42010-06-30 05:06:28 +0000891static int
892efx_ethtool_get_rxnfc(struct net_device *net_dev,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000893 struct ethtool_rxnfc *info, u32 *rule_locs)
Ben Hutchings765c9f42010-06-30 05:06:28 +0000894{
895 struct efx_nic *efx = netdev_priv(net_dev);
896
897 switch (info->cmd) {
898 case ETHTOOL_GRXRINGS:
899 info->data = efx->n_rx_channels;
900 return 0;
901
902 case ETHTOOL_GRXFH: {
903 unsigned min_revision = 0;
904
905 info->data = 0;
906 switch (info->flow_type) {
907 case TCP_V4_FLOW:
908 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
909 /* fall through */
910 case UDP_V4_FLOW:
911 case SCTP_V4_FLOW:
912 case AH_ESP_V4_FLOW:
913 case IPV4_FLOW:
914 info->data |= RXH_IP_SRC | RXH_IP_DST;
915 min_revision = EFX_REV_FALCON_B0;
916 break;
917 case TCP_V6_FLOW:
918 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
919 /* fall through */
920 case UDP_V6_FLOW:
921 case SCTP_V6_FLOW:
922 case AH_ESP_V6_FLOW:
923 case IPV6_FLOW:
924 info->data |= RXH_IP_SRC | RXH_IP_DST;
925 min_revision = EFX_REV_SIENA_A0;
926 break;
927 default:
928 break;
929 }
930 if (efx_nic_rev(efx) < min_revision)
931 info->data = 0;
932 return 0;
933 }
934
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000935 case ETHTOOL_GRXCLSRLCNT:
936 info->data = efx_filter_get_rx_id_limit(efx);
937 if (info->data == 0)
938 return -EOPNOTSUPP;
939 info->data |= RX_CLS_LOC_SPECIAL;
940 info->rule_cnt =
941 efx_filter_count_rx_used(efx, EFX_FILTER_PRI_MANUAL);
942 return 0;
943
944 case ETHTOOL_GRXCLSRULE:
945 if (efx_filter_get_rx_id_limit(efx) == 0)
946 return -EOPNOTSUPP;
947 return efx_ethtool_get_class_rule(efx, &info->fs);
948
949 case ETHTOOL_GRXCLSRLALL: {
950 s32 rc;
951 info->data = efx_filter_get_rx_id_limit(efx);
952 if (info->data == 0)
953 return -EOPNOTSUPP;
954 rc = efx_filter_get_rx_ids(efx, EFX_FILTER_PRI_MANUAL,
955 rule_locs, info->rule_cnt);
956 if (rc < 0)
957 return rc;
958 info->rule_cnt = rc;
959 return 0;
960 }
961
Ben Hutchings765c9f42010-06-30 05:06:28 +0000962 default:
963 return -EOPNOTSUPP;
964 }
965}
966
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000967static int efx_ethtool_set_class_rule(struct efx_nic *efx,
968 struct ethtool_rx_flow_spec *rule)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000969{
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000970 struct ethtool_tcpip4_spec *ip_entry = &rule->h_u.tcp_ip4_spec;
971 struct ethtool_tcpip4_spec *ip_mask = &rule->m_u.tcp_ip4_spec;
972 struct ethhdr *mac_entry = &rule->h_u.ether_spec;
973 struct ethhdr *mac_mask = &rule->m_u.ether_spec;
974 struct efx_filter_spec spec;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000975 int rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000976
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000977 /* Check that user wants us to choose the location */
Ben Hutchings9e0f9a12012-09-04 18:57:25 +0100978 if (rule->location != RX_CLS_LOC_ANY)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000979 return -EINVAL;
980
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000981 /* Range-check ring_cookie */
982 if (rule->ring_cookie >= efx->n_rx_channels &&
983 rule->ring_cookie != RX_CLS_FLOW_DISC)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000984 return -EINVAL;
985
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000986 /* Check for unsupported extensions */
987 if ((rule->flow_type & FLOW_EXT) &&
Ben Hutchings0e0c3402012-09-06 02:11:04 +0100988 (rule->m_ext.vlan_etype || rule->m_ext.data[0] ||
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000989 rule->m_ext.data[1]))
990 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000991
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000992 efx_filter_init_rx(&spec, EFX_FILTER_PRI_MANUAL,
993 efx->rx_scatter ? EFX_FILTER_FLAG_RX_SCATTER : 0,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000994 (rule->ring_cookie == RX_CLS_FLOW_DISC) ?
Ben Hutchingsf26e9582012-10-30 01:01:52 +0000995 EFX_FILTER_RX_DMAQ_ID_DROP : rule->ring_cookie);
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000996
Ben Hutchings7c460d92012-10-27 00:33:28 +0100997 switch (rule->flow_type & ~FLOW_EXT) {
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000998 case TCP_V4_FLOW:
Ben Hutchings7c460d92012-10-27 00:33:28 +0100999 case UDP_V4_FLOW:
1000 spec.match_flags = (EFX_FILTER_MATCH_ETHER_TYPE |
1001 EFX_FILTER_MATCH_IP_PROTO);
1002 spec.ether_type = htons(ETH_P_IP);
1003 spec.ip_proto = ((rule->flow_type & ~FLOW_EXT) == TCP_V4_FLOW ?
1004 IPPROTO_TCP : IPPROTO_UDP);
1005 if (ip_mask->ip4dst) {
1006 if (ip_mask->ip4dst != IP4_ADDR_FULL_MASK)
1007 return -EINVAL;
1008 spec.match_flags |= EFX_FILTER_MATCH_LOC_HOST;
1009 spec.loc_host[0] = ip_entry->ip4dst;
1010 }
1011 if (ip_mask->ip4src) {
1012 if (ip_mask->ip4src != IP4_ADDR_FULL_MASK)
1013 return -EINVAL;
1014 spec.match_flags |= EFX_FILTER_MATCH_REM_HOST;
1015 spec.rem_host[0] = ip_entry->ip4src;
1016 }
1017 if (ip_mask->pdst) {
1018 if (ip_mask->pdst != PORT_FULL_MASK)
1019 return -EINVAL;
1020 spec.match_flags |= EFX_FILTER_MATCH_LOC_PORT;
1021 spec.loc_port = ip_entry->pdst;
1022 }
1023 if (ip_mask->psrc) {
1024 if (ip_mask->psrc != PORT_FULL_MASK)
1025 return -EINVAL;
1026 spec.match_flags |= EFX_FILTER_MATCH_REM_PORT;
1027 spec.rem_port = ip_entry->psrc;
1028 }
1029 if (ip_mask->tos)
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001030 return -EINVAL;
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001031 break;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001032
Ben Hutchings7c460d92012-10-27 00:33:28 +01001033 case ETHER_FLOW:
1034 if (!is_zero_ether_addr(mac_mask->h_dest)) {
1035 if (ether_addr_equal(mac_mask->h_dest,
1036 mac_addr_ig_mask))
1037 spec.match_flags |= EFX_FILTER_MATCH_LOC_MAC_IG;
1038 else if (is_broadcast_ether_addr(mac_mask->h_dest))
1039 spec.match_flags |= EFX_FILTER_MATCH_LOC_MAC;
Ben Hutchingsc274d652012-02-02 22:41:49 +00001040 else
Ben Hutchings7c460d92012-10-27 00:33:28 +01001041 return -EINVAL;
1042 memcpy(spec.loc_mac, mac_entry->h_dest, ETH_ALEN);
Ben Hutchingsc274d652012-02-02 22:41:49 +00001043 }
Ben Hutchings7c460d92012-10-27 00:33:28 +01001044 if (!is_zero_ether_addr(mac_mask->h_source)) {
1045 if (!is_broadcast_ether_addr(mac_mask->h_source))
1046 return -EINVAL;
1047 spec.match_flags |= EFX_FILTER_MATCH_REM_MAC;
1048 memcpy(spec.rem_mac, mac_entry->h_source, ETH_ALEN);
Ben Hutchingsc274d652012-02-02 22:41:49 +00001049 }
Ben Hutchings7c460d92012-10-27 00:33:28 +01001050 if (mac_mask->h_proto) {
1051 if (mac_mask->h_proto != ETHER_TYPE_FULL_MASK)
1052 return -EINVAL;
1053 spec.match_flags |= EFX_FILTER_MATCH_ETHER_TYPE;
1054 spec.ether_type = mac_entry->h_proto;
1055 }
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001056 break;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001057
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001058 default:
1059 return -EINVAL;
1060 }
1061
Ben Hutchings7c460d92012-10-27 00:33:28 +01001062 if ((rule->flow_type & FLOW_EXT) && rule->m_ext.vlan_tci) {
1063 if (rule->m_ext.vlan_tci != htons(0xfff))
1064 return -EINVAL;
1065 spec.match_flags |= EFX_FILTER_MATCH_OUTER_VID;
1066 spec.outer_vid = rule->h_ext.vlan_tci;
1067 }
1068
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001069 rc = efx_filter_insert_filter(efx, &spec, true);
1070 if (rc < 0)
1071 return rc;
Ben Hutchings47a84672011-05-14 02:35:25 +01001072
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001073 rule->location = rc;
1074 return 0;
1075}
1076
1077static int efx_ethtool_set_rxnfc(struct net_device *net_dev,
1078 struct ethtool_rxnfc *info)
1079{
1080 struct efx_nic *efx = netdev_priv(net_dev);
1081
1082 if (efx_filter_get_rx_id_limit(efx) == 0)
1083 return -EOPNOTSUPP;
1084
1085 switch (info->cmd) {
1086 case ETHTOOL_SRXCLSRLINS:
1087 return efx_ethtool_set_class_rule(efx, &info->fs);
1088
1089 case ETHTOOL_SRXCLSRLDEL:
1090 return efx_filter_remove_id_safe(efx, EFX_FILTER_PRI_MANUAL,
1091 info->fs.location);
1092
1093 default:
1094 return -EOPNOTSUPP;
1095 }
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001096}
1097
Ben Hutchings7850f632011-12-15 13:55:01 +00001098static u32 efx_ethtool_get_rxfh_indir_size(struct net_device *net_dev)
Ben Hutchings765c9f42010-06-30 05:06:28 +00001099{
1100 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings765c9f42010-06-30 05:06:28 +00001101
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001102 return ((efx_nic_rev(efx) < EFX_REV_FALCON_B0 ||
1103 efx->n_rx_channels == 1) ?
Ben Hutchings7850f632011-12-15 13:55:01 +00001104 0 : ARRAY_SIZE(efx->rx_indir_table));
1105}
Ben Hutchings765c9f42010-06-30 05:06:28 +00001106
Ben Hutchings7850f632011-12-15 13:55:01 +00001107static int efx_ethtool_get_rxfh_indir(struct net_device *net_dev, u32 *indir)
1108{
1109 struct efx_nic *efx = netdev_priv(net_dev);
1110
1111 memcpy(indir, efx->rx_indir_table, sizeof(efx->rx_indir_table));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001112 return 0;
1113}
1114
1115static int efx_ethtool_set_rxfh_indir(struct net_device *net_dev,
Ben Hutchings7850f632011-12-15 13:55:01 +00001116 const u32 *indir)
Ben Hutchings765c9f42010-06-30 05:06:28 +00001117{
1118 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings765c9f42010-06-30 05:06:28 +00001119
Ben Hutchings7850f632011-12-15 13:55:01 +00001120 memcpy(efx->rx_indir_table, indir, sizeof(efx->rx_indir_table));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001121 efx_nic_push_rx_indir_table(efx);
1122 return 0;
1123}
1124
Ben Hutchings62ebac92013-04-08 17:34:58 +01001125int efx_ethtool_get_ts_info(struct net_device *net_dev,
1126 struct ethtool_ts_info *ts_info)
1127{
1128 struct efx_nic *efx = netdev_priv(net_dev);
1129
1130 /* Software capabilities */
1131 ts_info->so_timestamping = (SOF_TIMESTAMPING_RX_SOFTWARE |
1132 SOF_TIMESTAMPING_SOFTWARE);
1133 ts_info->phc_index = -1;
1134
1135 efx_ptp_get_ts_info(efx, ts_info);
1136 return 0;
1137}
1138
Stuart Hodgsonc087bd22012-05-01 18:50:43 +01001139static int efx_ethtool_get_module_eeprom(struct net_device *net_dev,
1140 struct ethtool_eeprom *ee,
1141 u8 *data)
1142{
1143 struct efx_nic *efx = netdev_priv(net_dev);
1144 int ret;
1145
1146 if (!efx->phy_op || !efx->phy_op->get_module_eeprom)
1147 return -EOPNOTSUPP;
1148
1149 mutex_lock(&efx->mac_lock);
1150 ret = efx->phy_op->get_module_eeprom(efx, ee, data);
1151 mutex_unlock(&efx->mac_lock);
1152
1153 return ret;
1154}
1155
1156static int efx_ethtool_get_module_info(struct net_device *net_dev,
1157 struct ethtool_modinfo *modinfo)
1158{
1159 struct efx_nic *efx = netdev_priv(net_dev);
1160 int ret;
1161
1162 if (!efx->phy_op || !efx->phy_op->get_module_info)
1163 return -EOPNOTSUPP;
1164
1165 mutex_lock(&efx->mac_lock);
1166 ret = efx->phy_op->get_module_info(efx, modinfo);
1167 mutex_unlock(&efx->mac_lock);
1168
1169 return ret;
1170}
1171
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001172const struct ethtool_ops efx_ethtool_ops = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001173 .get_settings = efx_ethtool_get_settings,
1174 .set_settings = efx_ethtool_set_settings,
1175 .get_drvinfo = efx_ethtool_get_drvinfo,
Ben Hutchings5b98c1b2010-06-21 03:06:53 +00001176 .get_regs_len = efx_ethtool_get_regs_len,
1177 .get_regs = efx_ethtool_get_regs,
Ben Hutchings62776d02010-06-23 11:30:07 +00001178 .get_msglevel = efx_ethtool_get_msglevel,
1179 .set_msglevel = efx_ethtool_set_msglevel,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001180 .nway_reset = efx_ethtool_nway_reset,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +00001181 .get_link = ethtool_op_get_link,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001182 .get_coalesce = efx_ethtool_get_coalesce,
1183 .set_coalesce = efx_ethtool_set_coalesce,
Ben Hutchings46426102010-09-10 06:42:33 +00001184 .get_ringparam = efx_ethtool_get_ringparam,
1185 .set_ringparam = efx_ethtool_set_ringparam,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001186 .get_pauseparam = efx_ethtool_get_pauseparam,
1187 .set_pauseparam = efx_ethtool_set_pauseparam,
Ben Hutchings3594e132008-09-01 12:48:12 +01001188 .get_sset_count = efx_ethtool_get_sset_count,
Ben Hutchings3273c2e2008-05-07 13:36:19 +01001189 .self_test = efx_ethtool_self_test,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001190 .get_strings = efx_ethtool_get_strings,
Ben Hutchingsc5e129a2011-04-02 00:43:46 +01001191 .set_phys_id = efx_ethtool_phys_id,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001192 .get_ethtool_stats = efx_ethtool_get_stats,
Ben Hutchings89c758f2009-11-29 03:43:07 +00001193 .get_wol = efx_ethtool_get_wol,
1194 .set_wol = efx_ethtool_set_wol,
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001195 .reset = efx_ethtool_reset,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001196 .get_rxnfc = efx_ethtool_get_rxnfc,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001197 .set_rxnfc = efx_ethtool_set_rxnfc,
Ben Hutchings7850f632011-12-15 13:55:01 +00001198 .get_rxfh_indir_size = efx_ethtool_get_rxfh_indir_size,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001199 .get_rxfh_indir = efx_ethtool_get_rxfh_indir,
1200 .set_rxfh_indir = efx_ethtool_set_rxfh_indir,
Ben Hutchings62ebac92013-04-08 17:34:58 +01001201 .get_ts_info = efx_ethtool_get_ts_info,
Stuart Hodgsonc087bd22012-05-01 18:50:43 +01001202 .get_module_info = efx_ethtool_get_module_info,
1203 .get_module_eeprom = efx_ethtool_get_module_eeprom,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001204};