blob: 0d55439725749fbe810f8220249127ceb104bd98 [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
55static u64 efx_get_ulong_stat(void *field)
56{
57 return *(unsigned long *)field;
58}
59
60static u64 efx_get_u64_stat(void *field)
61{
62 return *(u64 *) field;
63}
64
65static u64 efx_get_atomic_stat(void *field)
66{
67 return atomic_read((atomic_t *) field);
68}
69
70#define EFX_ETHTOOL_ULONG_MAC_STAT(field) \
71 EFX_ETHTOOL_STAT(field, mac_stats, field, \
72 unsigned long, efx_get_ulong_stat)
73
74#define EFX_ETHTOOL_U64_MAC_STAT(field) \
75 EFX_ETHTOOL_STAT(field, mac_stats, field, \
76 u64, efx_get_u64_stat)
77
78#define EFX_ETHTOOL_UINT_NIC_STAT(name) \
79 EFX_ETHTOOL_STAT(name, nic, n_##name, \
80 unsigned int, efx_get_uint_stat)
81
82#define EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(field) \
83 EFX_ETHTOOL_STAT(field, nic, field, \
84 atomic_t, efx_get_atomic_stat)
85
86#define EFX_ETHTOOL_UINT_CHANNEL_STAT(field) \
87 EFX_ETHTOOL_STAT(field, channel, n_##field, \
88 unsigned int, efx_get_uint_stat)
89
Ben Hutchings119226c2011-02-18 19:14:13 +000090#define EFX_ETHTOOL_UINT_TXQ_STAT(field) \
91 EFX_ETHTOOL_STAT(tx_##field, tx_queue, field, \
92 unsigned int, efx_get_uint_stat)
93
Ben Hutchings8ceee662008-04-27 12:55:59 +010094static struct efx_ethtool_stat efx_ethtool_stats[] = {
95 EFX_ETHTOOL_U64_MAC_STAT(tx_bytes),
96 EFX_ETHTOOL_U64_MAC_STAT(tx_good_bytes),
97 EFX_ETHTOOL_U64_MAC_STAT(tx_bad_bytes),
98 EFX_ETHTOOL_ULONG_MAC_STAT(tx_packets),
99 EFX_ETHTOOL_ULONG_MAC_STAT(tx_bad),
100 EFX_ETHTOOL_ULONG_MAC_STAT(tx_pause),
101 EFX_ETHTOOL_ULONG_MAC_STAT(tx_control),
102 EFX_ETHTOOL_ULONG_MAC_STAT(tx_unicast),
103 EFX_ETHTOOL_ULONG_MAC_STAT(tx_multicast),
104 EFX_ETHTOOL_ULONG_MAC_STAT(tx_broadcast),
105 EFX_ETHTOOL_ULONG_MAC_STAT(tx_lt64),
106 EFX_ETHTOOL_ULONG_MAC_STAT(tx_64),
107 EFX_ETHTOOL_ULONG_MAC_STAT(tx_65_to_127),
108 EFX_ETHTOOL_ULONG_MAC_STAT(tx_128_to_255),
109 EFX_ETHTOOL_ULONG_MAC_STAT(tx_256_to_511),
110 EFX_ETHTOOL_ULONG_MAC_STAT(tx_512_to_1023),
111 EFX_ETHTOOL_ULONG_MAC_STAT(tx_1024_to_15xx),
112 EFX_ETHTOOL_ULONG_MAC_STAT(tx_15xx_to_jumbo),
113 EFX_ETHTOOL_ULONG_MAC_STAT(tx_gtjumbo),
114 EFX_ETHTOOL_ULONG_MAC_STAT(tx_collision),
115 EFX_ETHTOOL_ULONG_MAC_STAT(tx_single_collision),
116 EFX_ETHTOOL_ULONG_MAC_STAT(tx_multiple_collision),
117 EFX_ETHTOOL_ULONG_MAC_STAT(tx_excessive_collision),
118 EFX_ETHTOOL_ULONG_MAC_STAT(tx_deferred),
119 EFX_ETHTOOL_ULONG_MAC_STAT(tx_late_collision),
120 EFX_ETHTOOL_ULONG_MAC_STAT(tx_excessive_deferred),
121 EFX_ETHTOOL_ULONG_MAC_STAT(tx_non_tcpudp),
122 EFX_ETHTOOL_ULONG_MAC_STAT(tx_mac_src_error),
123 EFX_ETHTOOL_ULONG_MAC_STAT(tx_ip_src_error),
Ben Hutchings119226c2011-02-18 19:14:13 +0000124 EFX_ETHTOOL_UINT_TXQ_STAT(tso_bursts),
125 EFX_ETHTOOL_UINT_TXQ_STAT(tso_long_headers),
126 EFX_ETHTOOL_UINT_TXQ_STAT(tso_packets),
127 EFX_ETHTOOL_UINT_TXQ_STAT(pushes),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100128 EFX_ETHTOOL_U64_MAC_STAT(rx_bytes),
129 EFX_ETHTOOL_U64_MAC_STAT(rx_good_bytes),
130 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_bytes),
131 EFX_ETHTOOL_ULONG_MAC_STAT(rx_packets),
132 EFX_ETHTOOL_ULONG_MAC_STAT(rx_good),
133 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad),
134 EFX_ETHTOOL_ULONG_MAC_STAT(rx_pause),
135 EFX_ETHTOOL_ULONG_MAC_STAT(rx_control),
136 EFX_ETHTOOL_ULONG_MAC_STAT(rx_unicast),
137 EFX_ETHTOOL_ULONG_MAC_STAT(rx_multicast),
138 EFX_ETHTOOL_ULONG_MAC_STAT(rx_broadcast),
139 EFX_ETHTOOL_ULONG_MAC_STAT(rx_lt64),
140 EFX_ETHTOOL_ULONG_MAC_STAT(rx_64),
141 EFX_ETHTOOL_ULONG_MAC_STAT(rx_65_to_127),
142 EFX_ETHTOOL_ULONG_MAC_STAT(rx_128_to_255),
143 EFX_ETHTOOL_ULONG_MAC_STAT(rx_256_to_511),
144 EFX_ETHTOOL_ULONG_MAC_STAT(rx_512_to_1023),
145 EFX_ETHTOOL_ULONG_MAC_STAT(rx_1024_to_15xx),
146 EFX_ETHTOOL_ULONG_MAC_STAT(rx_15xx_to_jumbo),
147 EFX_ETHTOOL_ULONG_MAC_STAT(rx_gtjumbo),
148 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_lt64),
149 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_64_to_15xx),
150 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_15xx_to_jumbo),
151 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_gtjumbo),
152 EFX_ETHTOOL_ULONG_MAC_STAT(rx_overflow),
153 EFX_ETHTOOL_ULONG_MAC_STAT(rx_missed),
154 EFX_ETHTOOL_ULONG_MAC_STAT(rx_false_carrier),
155 EFX_ETHTOOL_ULONG_MAC_STAT(rx_symbol_error),
156 EFX_ETHTOOL_ULONG_MAC_STAT(rx_align_error),
157 EFX_ETHTOOL_ULONG_MAC_STAT(rx_length_error),
158 EFX_ETHTOOL_ULONG_MAC_STAT(rx_internal_error),
159 EFX_ETHTOOL_UINT_NIC_STAT(rx_nodesc_drop_cnt),
160 EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(rx_reset),
161 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tobe_disc),
162 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_ip_hdr_chksum_err),
163 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tcp_udp_chksum_err),
Ben Hutchingsc1ac4032009-11-28 05:36:29 +0000164 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_mcast_mismatch),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100165 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_frm_trunc),
166};
167
168/* Number of ethtool statistics */
169#define EFX_ETHTOOL_NUM_STATS ARRAY_SIZE(efx_ethtool_stats)
170
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100171#define EFX_ETHTOOL_EEPROM_MAGIC 0xEFAB
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100172
Ben Hutchings8ceee662008-04-27 12:55:59 +0100173/**************************************************************************
174 *
175 * Ethtool operations
176 *
177 **************************************************************************
178 */
179
180/* Identify device by flashing LEDs */
Ben Hutchings65f667f2008-12-12 21:32:10 -0800181static int efx_ethtool_phys_id(struct net_device *net_dev, u32 count)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100182{
Ben Hutchings767e4682008-09-01 12:43:14 +0100183 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100184
Ben Hutchings398468e2009-11-23 16:03:45 +0000185 do {
Ben Hutchings06629f02009-11-29 03:43:43 +0000186 efx->type->set_id_led(efx, EFX_LED_ON);
Ben Hutchings398468e2009-11-23 16:03:45 +0000187 schedule_timeout_interruptible(HZ / 2);
188
Ben Hutchings06629f02009-11-29 03:43:43 +0000189 efx->type->set_id_led(efx, EFX_LED_OFF);
Ben Hutchings398468e2009-11-23 16:03:45 +0000190 schedule_timeout_interruptible(HZ / 2);
191 } while (!signal_pending(current) && --count != 0);
192
Ben Hutchings06629f02009-11-29 03:43:43 +0000193 efx->type->set_id_led(efx, EFX_LED_DEFAULT);
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)) {
214 ecmd->speed = link_state->speed;
215 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 */
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800229 if (ecmd->speed == SPEED_1000 && ecmd->duplex != DUPLEX_FULL) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000230 netif_dbg(efx, drv, efx->net_dev,
231 "rejecting unsupported 1000Mbps HD setting\n");
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800232 return -EINVAL;
233 }
234
Ben Hutchings8ceee662008-04-27 12:55:59 +0100235 mutex_lock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800236 rc = efx->phy_op->set_settings(efx, ecmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100237 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100238 return rc;
239}
240
241static void efx_ethtool_get_drvinfo(struct net_device *net_dev,
242 struct ethtool_drvinfo *info)
243{
Ben Hutchings767e4682008-09-01 12:43:14 +0100244 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100245
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +0000246 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100247 strlcpy(info->version, EFX_DRIVER_VERSION, sizeof(info->version));
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000248 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0)
Ben Hutchingse5f0fd22011-02-24 23:57:47 +0000249 efx_mcdi_print_fwver(efx, info->fw_version,
250 sizeof(info->fw_version));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100251 strlcpy(info->bus_info, pci_name(efx->pci_dev), sizeof(info->bus_info));
252}
253
Ben Hutchings5b98c1b2010-06-21 03:06:53 +0000254static int efx_ethtool_get_regs_len(struct net_device *net_dev)
255{
256 return efx_nic_get_regs_len(netdev_priv(net_dev));
257}
258
259static void efx_ethtool_get_regs(struct net_device *net_dev,
260 struct ethtool_regs *regs, void *buf)
261{
262 struct efx_nic *efx = netdev_priv(net_dev);
263
264 regs->version = efx->type->revision;
265 efx_nic_get_regs(efx, buf);
266}
267
Ben Hutchings62776d02010-06-23 11:30:07 +0000268static u32 efx_ethtool_get_msglevel(struct net_device *net_dev)
269{
270 struct efx_nic *efx = netdev_priv(net_dev);
271 return efx->msg_enable;
272}
273
274static void efx_ethtool_set_msglevel(struct net_device *net_dev, u32 msg_enable)
275{
276 struct efx_nic *efx = netdev_priv(net_dev);
277 efx->msg_enable = msg_enable;
278}
279
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100280/**
281 * efx_fill_test - fill in an individual self-test entry
282 * @test_index: Index of the test
283 * @strings: Ethtool strings, or %NULL
284 * @data: Ethtool test results, or %NULL
285 * @test: Pointer to test result (used only if data != %NULL)
Ben Hutchings740ced92008-12-12 21:41:55 -0800286 * @unit_format: Unit name format (e.g. "chan\%d")
287 * @unit_id: Unit id (e.g. 0 for "chan0")
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100288 * @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
Ben Hutchings740ced92008-12-12 21:41:55 -0800289 * @test_id: Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent")
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100290 *
291 * Fill in an individual self-test entry.
292 */
293static void efx_fill_test(unsigned int test_index,
294 struct ethtool_string *strings, u64 *data,
295 int *test, const char *unit_format, int unit_id,
296 const char *test_format, const char *test_id)
297{
298 struct ethtool_string unit_str, test_str;
299
300 /* Fill data value, if applicable */
301 if (data)
302 data[test_index] = *test;
303
304 /* Fill string, if applicable */
305 if (strings) {
Ben Hutchings11e66962008-12-12 22:05:48 -0800306 if (strchr(unit_format, '%'))
307 snprintf(unit_str.name, sizeof(unit_str.name),
308 unit_format, unit_id);
309 else
310 strcpy(unit_str.name, unit_format);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100311 snprintf(test_str.name, sizeof(test_str.name),
312 test_format, test_id);
313 snprintf(strings[test_index].name,
314 sizeof(strings[test_index].name),
Ben Hutchings740ced92008-12-12 21:41:55 -0800315 "%-6s %-24s", unit_str.name, test_str.name);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100316 }
317}
318
Ben Hutchings740ced92008-12-12 21:41:55 -0800319#define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100320#define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue
321#define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue
322#define EFX_LOOPBACK_NAME(_mode, _counter) \
Ben Hutchingsc4593022009-11-23 16:08:17 +0000323 "loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100324
325/**
326 * efx_fill_loopback_test - fill in a block of loopback self-test entries
327 * @efx: Efx NIC
328 * @lb_tests: Efx loopback self-test results structure
329 * @mode: Loopback test mode
330 * @test_index: Starting index of the test
331 * @strings: Ethtool strings, or %NULL
332 * @data: Ethtool test results, or %NULL
333 */
334static int efx_fill_loopback_test(struct efx_nic *efx,
335 struct efx_loopback_self_tests *lb_tests,
336 enum efx_loopback_mode mode,
337 unsigned int test_index,
338 struct ethtool_string *strings, u64 *data)
339{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000340 struct efx_channel *channel = efx_get_channel(efx, 0);
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);
398 efx_fill_test(n++, strings, data,
399 &tests->eventq_poll[channel->channel],
400 EFX_CHANNEL_NAME(channel),
401 "eventq.poll", NULL);
402 }
403
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100404 efx_fill_test(n++, strings, data, &tests->registers,
405 "core", 0, "registers", NULL);
Ben Hutchings17967212008-12-26 13:47:25 -0800406
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000407 if (efx->phy_op->run_tests != NULL) {
408 EFX_BUG_ON_PARANOID(efx->phy_op->test_name == NULL);
409
410 for (i = 0; true; ++i) {
411 const char *name;
412
413 EFX_BUG_ON_PARANOID(i >= EFX_MAX_PHY_TESTS);
414 name = efx->phy_op->test_name(efx, i);
415 if (name == NULL)
416 break;
417
Ben Hutchings4f16c072010-02-03 09:30:50 +0000418 efx_fill_test(n++, strings, data, &tests->phy_ext[i],
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000419 "phy", 0, name, NULL);
420 }
421 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100422
423 /* Loopback tests */
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100424 for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100425 if (!(efx->loopback_modes & (1 << mode)))
426 continue;
427 n = efx_fill_loopback_test(efx,
428 &tests->loopback[mode], mode, n,
429 strings, data);
430 }
431
432 return n;
433}
434
Ben Hutchings3594e132008-09-01 12:48:12 +0100435static int efx_ethtool_get_sset_count(struct net_device *net_dev,
436 int string_set)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100437{
Ben Hutchings3594e132008-09-01 12:48:12 +0100438 switch (string_set) {
439 case ETH_SS_STATS:
440 return EFX_ETHTOOL_NUM_STATS;
441 case ETH_SS_TEST:
442 return efx_ethtool_fill_self_tests(netdev_priv(net_dev),
443 NULL, NULL, NULL);
444 default:
445 return -EINVAL;
446 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100447}
448
Ben Hutchings8ceee662008-04-27 12:55:59 +0100449static void efx_ethtool_get_strings(struct net_device *net_dev,
450 u32 string_set, u8 *strings)
451{
Ben Hutchings767e4682008-09-01 12:43:14 +0100452 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100453 struct ethtool_string *ethtool_strings =
454 (struct ethtool_string *)strings;
455 int i;
456
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100457 switch (string_set) {
458 case ETH_SS_STATS:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100459 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++)
460 strncpy(ethtool_strings[i].name,
461 efx_ethtool_stats[i].name,
462 sizeof(ethtool_strings[i].name));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100463 break;
464 case ETH_SS_TEST:
465 efx_ethtool_fill_self_tests(efx, NULL,
466 ethtool_strings, NULL);
467 break;
468 default:
469 /* No other string sets */
470 break;
471 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100472}
473
474static void efx_ethtool_get_stats(struct net_device *net_dev,
475 struct ethtool_stats *stats,
476 u64 *data)
477{
Ben Hutchings767e4682008-09-01 12:43:14 +0100478 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100479 struct efx_mac_stats *mac_stats = &efx->mac_stats;
480 struct efx_ethtool_stat *stat;
481 struct efx_channel *channel;
Ben Hutchings119226c2011-02-18 19:14:13 +0000482 struct efx_tx_queue *tx_queue;
Eric Dumazet28172732010-07-07 14:58:56 -0700483 struct rtnl_link_stats64 temp;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100484 int i;
485
486 EFX_BUG_ON_PARANOID(stats->n_stats != EFX_ETHTOOL_NUM_STATS);
487
488 /* Update MAC and NIC statistics */
Eric Dumazet28172732010-07-07 14:58:56 -0700489 dev_get_stats(net_dev, &temp);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100490
491 /* Fill detailed statistics buffer */
492 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++) {
493 stat = &efx_ethtool_stats[i];
494 switch (stat->source) {
495 case EFX_ETHTOOL_STAT_SOURCE_mac_stats:
496 data[i] = stat->get_stat((void *)mac_stats +
497 stat->offset);
498 break;
499 case EFX_ETHTOOL_STAT_SOURCE_nic:
500 data[i] = stat->get_stat((void *)efx + stat->offset);
501 break;
502 case EFX_ETHTOOL_STAT_SOURCE_channel:
503 data[i] = 0;
504 efx_for_each_channel(channel, efx)
505 data[i] += stat->get_stat((void *)channel +
506 stat->offset);
507 break;
Ben Hutchings119226c2011-02-18 19:14:13 +0000508 case EFX_ETHTOOL_STAT_SOURCE_tx_queue:
509 data[i] = 0;
510 efx_for_each_channel(channel, efx) {
511 efx_for_each_channel_tx_queue(tx_queue, channel)
512 data[i] +=
513 stat->get_stat((void *)tx_queue
514 + stat->offset);
515 }
516 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100517 }
518 }
519}
520
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100521static void efx_ethtool_self_test(struct net_device *net_dev,
522 struct ethtool_test *test, u64 *data)
523{
Ben Hutchings767e4682008-09-01 12:43:14 +0100524 struct efx_nic *efx = netdev_priv(net_dev);
Eric Dumazet28801f32011-02-16 03:48:38 +0000525 struct efx_self_tests *efx_tests;
Ben Hutchings2ef30682008-12-26 13:47:04 -0800526 int already_up;
Eric Dumazet28801f32011-02-16 03:48:38 +0000527 int rc = -ENOMEM;
528
529 efx_tests = kzalloc(sizeof(*efx_tests), GFP_KERNEL);
530 if (!efx_tests)
531 goto fail;
532
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100533
534 ASSERT_RTNL();
535 if (efx->state != STATE_RUNNING) {
536 rc = -EIO;
537 goto fail1;
538 }
539
Ben Hutchingsac33ac62010-12-07 18:29:52 +0000540 netif_info(efx, drv, efx->net_dev, "starting %sline testing\n",
541 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
542
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100543 /* We need rx buffers and interrupts. */
544 already_up = (efx->net_dev->flags & IFF_UP);
545 if (!already_up) {
546 rc = dev_open(efx->net_dev);
547 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000548 netif_err(efx, drv, efx->net_dev,
549 "failed opening device.\n");
Eric Dumazet28801f32011-02-16 03:48:38 +0000550 goto fail1;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100551 }
552 }
553
Eric Dumazet28801f32011-02-16 03:48:38 +0000554 rc = efx_selftest(efx, efx_tests, test->flags);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100555
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100556 if (!already_up)
557 dev_close(efx->net_dev);
558
Ben Hutchingsac33ac62010-12-07 18:29:52 +0000559 netif_info(efx, drv, efx->net_dev, "%s %sline self-tests\n",
560 rc == 0 ? "passed" : "failed",
561 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100562
Eric Dumazet28801f32011-02-16 03:48:38 +0000563fail1:
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100564 /* Fill ethtool results structures */
Eric Dumazet28801f32011-02-16 03:48:38 +0000565 efx_ethtool_fill_self_tests(efx, efx_tests, NULL, data);
566 kfree(efx_tests);
567fail:
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100568 if (rc)
569 test->flags |= ETH_TEST_FL_FAILED;
570}
571
Ben Hutchings8ceee662008-04-27 12:55:59 +0100572/* Restart autonegotiation */
573static int efx_ethtool_nway_reset(struct net_device *net_dev)
574{
Ben Hutchings767e4682008-09-01 12:43:14 +0100575 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100576
Ben Hutchings68e7f452009-04-29 08:05:08 +0000577 return mdio45_nway_restart(&efx->mdio);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100578}
579
Ben Hutchings8ceee662008-04-27 12:55:59 +0100580static int efx_ethtool_get_coalesce(struct net_device *net_dev,
581 struct ethtool_coalesce *coalesce)
582{
Ben Hutchings767e4682008-09-01 12:43:14 +0100583 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100584 struct efx_channel *channel;
585
586 memset(coalesce, 0, sizeof(*coalesce));
587
588 /* Find lowest IRQ moderation across all used TX queues */
589 coalesce->tx_coalesce_usecs_irq = ~((u32) 0);
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000590 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +0000591 if (!efx_channel_has_tx_queues(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000592 continue;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100593 if (channel->irq_moderation < coalesce->tx_coalesce_usecs_irq) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000594 if (channel->channel < efx->n_rx_channels)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100595 coalesce->tx_coalesce_usecs_irq =
596 channel->irq_moderation;
597 else
598 coalesce->tx_coalesce_usecs_irq = 0;
599 }
600 }
601
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000602 coalesce->use_adaptive_rx_coalesce = efx->irq_rx_adaptive;
603 coalesce->rx_coalesce_usecs_irq = efx->irq_rx_moderation;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100604
Ben Hutchings152b6a62009-11-29 03:43:56 +0000605 coalesce->tx_coalesce_usecs_irq *= EFX_IRQ_MOD_RESOLUTION;
606 coalesce->rx_coalesce_usecs_irq *= EFX_IRQ_MOD_RESOLUTION;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000607
Ben Hutchings8ceee662008-04-27 12:55:59 +0100608 return 0;
609}
610
611/* Set coalescing parameters
612 * The difficulties occur for shared channels
613 */
614static int efx_ethtool_set_coalesce(struct net_device *net_dev,
615 struct ethtool_coalesce *coalesce)
616{
Ben Hutchings767e4682008-09-01 12:43:14 +0100617 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100618 struct efx_channel *channel;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000619 unsigned tx_usecs, rx_usecs, adaptive;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100620
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000621 if (coalesce->use_adaptive_tx_coalesce)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100622 return -EOPNOTSUPP;
623
624 if (coalesce->rx_coalesce_usecs || coalesce->tx_coalesce_usecs) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000625 netif_err(efx, drv, efx->net_dev, "invalid coalescing setting. "
626 "Only rx/tx_coalesce_usecs_irq are supported\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100627 return -EOPNOTSUPP;
628 }
629
630 rx_usecs = coalesce->rx_coalesce_usecs_irq;
631 tx_usecs = coalesce->tx_coalesce_usecs_irq;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000632 adaptive = coalesce->use_adaptive_rx_coalesce;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100633
634 /* If the channel is shared only allow RX parameters to be set */
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000635 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +0000636 if (efx_channel_has_rx_queue(channel) &&
637 efx_channel_has_tx_queues(channel) &&
Ben Hutchings8ceee662008-04-27 12:55:59 +0100638 tx_usecs) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000639 netif_err(efx, drv, efx->net_dev, "Channel is shared. "
640 "Only RX coalescing may be set\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100641 return -EOPNOTSUPP;
642 }
643 }
644
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000645 efx_init_irq_moderation(efx, tx_usecs, rx_usecs, adaptive);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100646 efx_for_each_channel(channel, efx)
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000647 efx->type->push_irq_moderation(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100648
649 return 0;
650}
651
Ben Hutchings46426102010-09-10 06:42:33 +0000652static void efx_ethtool_get_ringparam(struct net_device *net_dev,
653 struct ethtool_ringparam *ring)
654{
655 struct efx_nic *efx = netdev_priv(net_dev);
656
657 ring->rx_max_pending = EFX_MAX_DMAQ_SIZE;
658 ring->tx_max_pending = EFX_MAX_DMAQ_SIZE;
659 ring->rx_mini_max_pending = 0;
660 ring->rx_jumbo_max_pending = 0;
661 ring->rx_pending = efx->rxq_entries;
662 ring->tx_pending = efx->txq_entries;
663 ring->rx_mini_pending = 0;
664 ring->rx_jumbo_pending = 0;
665}
666
667static int efx_ethtool_set_ringparam(struct net_device *net_dev,
668 struct ethtool_ringparam *ring)
669{
670 struct efx_nic *efx = netdev_priv(net_dev);
671
672 if (ring->rx_mini_pending || ring->rx_jumbo_pending ||
673 ring->rx_pending > EFX_MAX_DMAQ_SIZE ||
674 ring->tx_pending > EFX_MAX_DMAQ_SIZE)
675 return -EINVAL;
676
677 if (ring->rx_pending < EFX_MIN_RING_SIZE ||
678 ring->tx_pending < EFX_MIN_RING_SIZE) {
679 netif_err(efx, drv, efx->net_dev,
680 "TX and RX queues cannot be smaller than %ld\n",
681 EFX_MIN_RING_SIZE);
682 return -EINVAL;
683 }
684
685 return efx_realloc_channels(efx, ring->rx_pending, ring->tx_pending);
686}
687
Ben Hutchings8ceee662008-04-27 12:55:59 +0100688static int efx_ethtool_set_pauseparam(struct net_device *net_dev,
689 struct ethtool_pauseparam *pause)
690{
Ben Hutchings767e4682008-09-01 12:43:14 +0100691 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000692 enum efx_fc_type wanted_fc, old_fc;
693 u32 old_adv;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800694 bool reset;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000695 int rc = 0;
696
697 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100698
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800699 wanted_fc = ((pause->rx_pause ? EFX_FC_RX : 0) |
700 (pause->tx_pause ? EFX_FC_TX : 0) |
701 (pause->autoneg ? EFX_FC_AUTO : 0));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100702
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800703 if ((wanted_fc & EFX_FC_TX) && !(wanted_fc & EFX_FC_RX)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000704 netif_dbg(efx, drv, efx->net_dev,
705 "Flow control unsupported: tx ON rx OFF\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000706 rc = -EINVAL;
707 goto out;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800708 }
709
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000710 if ((wanted_fc & EFX_FC_AUTO) && !efx->link_advertising) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000711 netif_dbg(efx, drv, efx->net_dev,
712 "Autonegotiation is disabled\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000713 rc = -EINVAL;
714 goto out;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800715 }
716
717 /* TX flow control may automatically turn itself off if the
718 * link partner (intermittently) stops responding to pause
719 * frames. There isn't any indication that this has happened,
720 * so the best we do is leave it up to the user to spot this
721 * and fix it be cycling transmit flow control on this end. */
722 reset = (wanted_fc & EFX_FC_TX) && !(efx->wanted_fc & EFX_FC_TX);
723 if (EFX_WORKAROUND_11482(efx) && reset) {
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000724 if (efx_nic_rev(efx) == EFX_REV_FALCON_B0) {
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800725 /* Recover by resetting the EM block */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000726 falcon_stop_nic_stats(efx);
727 falcon_drain_tx_fifo(efx);
728 efx->mac_op->reconfigure(efx);
729 falcon_start_nic_stats(efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800730 } else {
731 /* Schedule a reset to recover */
732 efx_schedule_reset(efx, RESET_TYPE_INVISIBLE);
733 }
734 }
735
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000736 old_adv = efx->link_advertising;
737 old_fc = efx->wanted_fc;
738 efx_link_set_wanted_fc(efx, wanted_fc);
739 if (efx->link_advertising != old_adv ||
740 (efx->wanted_fc ^ old_fc) & EFX_FC_AUTO) {
741 rc = efx->phy_op->reconfigure(efx);
742 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000743 netif_err(efx, drv, efx->net_dev,
744 "Unable to advertise requested flow "
745 "control setting\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000746 goto out;
747 }
748 }
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800749
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000750 /* Reconfigure the MAC. The PHY *may* generate a link state change event
751 * if the user just changed the advertised capabilities, but there's no
752 * harm doing this twice */
753 efx->mac_op->reconfigure(efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800754
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000755out:
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800756 mutex_unlock(&efx->mac_lock);
757
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000758 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100759}
760
761static void efx_ethtool_get_pauseparam(struct net_device *net_dev,
762 struct ethtool_pauseparam *pause)
763{
Ben Hutchings767e4682008-09-01 12:43:14 +0100764 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100765
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800766 pause->rx_pause = !!(efx->wanted_fc & EFX_FC_RX);
767 pause->tx_pause = !!(efx->wanted_fc & EFX_FC_TX);
768 pause->autoneg = !!(efx->wanted_fc & EFX_FC_AUTO);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100769}
770
771
Ben Hutchings89c758f2009-11-29 03:43:07 +0000772static void efx_ethtool_get_wol(struct net_device *net_dev,
773 struct ethtool_wolinfo *wol)
774{
775 struct efx_nic *efx = netdev_priv(net_dev);
776 return efx->type->get_wol(efx, wol);
777}
778
779
780static int efx_ethtool_set_wol(struct net_device *net_dev,
781 struct ethtool_wolinfo *wol)
782{
783 struct efx_nic *efx = netdev_priv(net_dev);
784 return efx->type->set_wol(efx, wol->wolopts);
785}
786
stephen hemmingerd2156972010-10-18 05:27:31 +0000787static int efx_ethtool_reset(struct net_device *net_dev, u32 *flags)
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000788{
789 struct efx_nic *efx = netdev_priv(net_dev);
790 enum reset_type method;
791 enum {
792 ETH_RESET_EFX_INVISIBLE = (ETH_RESET_DMA | ETH_RESET_FILTER |
793 ETH_RESET_OFFLOAD | ETH_RESET_MAC)
794 };
795
796 /* Check for minimal reset flags */
797 if ((*flags & ETH_RESET_EFX_INVISIBLE) != ETH_RESET_EFX_INVISIBLE)
798 return -EINVAL;
799 *flags ^= ETH_RESET_EFX_INVISIBLE;
800 method = RESET_TYPE_INVISIBLE;
801
802 if (*flags & ETH_RESET_PHY) {
803 *flags ^= ETH_RESET_PHY;
804 method = RESET_TYPE_ALL;
805 }
806
807 if ((*flags & efx->type->reset_world_flags) ==
808 efx->type->reset_world_flags) {
809 *flags ^= efx->type->reset_world_flags;
810 method = RESET_TYPE_WORLD;
811 }
812
813 return efx_reset(efx, method);
814}
815
Ben Hutchings765c9f42010-06-30 05:06:28 +0000816static int
817efx_ethtool_get_rxnfc(struct net_device *net_dev,
818 struct ethtool_rxnfc *info, void *rules __always_unused)
819{
820 struct efx_nic *efx = netdev_priv(net_dev);
821
822 switch (info->cmd) {
823 case ETHTOOL_GRXRINGS:
824 info->data = efx->n_rx_channels;
825 return 0;
826
827 case ETHTOOL_GRXFH: {
828 unsigned min_revision = 0;
829
830 info->data = 0;
831 switch (info->flow_type) {
832 case TCP_V4_FLOW:
833 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
834 /* fall through */
835 case UDP_V4_FLOW:
836 case SCTP_V4_FLOW:
837 case AH_ESP_V4_FLOW:
838 case IPV4_FLOW:
839 info->data |= RXH_IP_SRC | RXH_IP_DST;
840 min_revision = EFX_REV_FALCON_B0;
841 break;
842 case TCP_V6_FLOW:
843 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
844 /* fall through */
845 case UDP_V6_FLOW:
846 case SCTP_V6_FLOW:
847 case AH_ESP_V6_FLOW:
848 case IPV6_FLOW:
849 info->data |= RXH_IP_SRC | RXH_IP_DST;
850 min_revision = EFX_REV_SIENA_A0;
851 break;
852 default:
853 break;
854 }
855 if (efx_nic_rev(efx) < min_revision)
856 info->data = 0;
857 return 0;
858 }
859
860 default:
861 return -EOPNOTSUPP;
862 }
863}
864
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000865static int efx_ethtool_set_rx_ntuple(struct net_device *net_dev,
866 struct ethtool_rx_ntuple *ntuple)
867{
868 struct efx_nic *efx = netdev_priv(net_dev);
869 struct ethtool_tcpip4_spec *ip_entry = &ntuple->fs.h_u.tcp_ip4_spec;
870 struct ethtool_tcpip4_spec *ip_mask = &ntuple->fs.m_u.tcp_ip4_spec;
871 struct ethhdr *mac_entry = &ntuple->fs.h_u.ether_spec;
872 struct ethhdr *mac_mask = &ntuple->fs.m_u.ether_spec;
873 struct efx_filter_spec filter;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000874 int rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000875
876 /* Range-check action */
877 if (ntuple->fs.action < ETHTOOL_RXNTUPLE_ACTION_CLEAR ||
878 ntuple->fs.action >= (s32)efx->n_rx_channels)
879 return -EINVAL;
880
881 if (~ntuple->fs.data_mask)
882 return -EINVAL;
883
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000884 efx_filter_init_rx(&filter, EFX_FILTER_PRI_MANUAL, 0,
885 (ntuple->fs.action == ETHTOOL_RXNTUPLE_ACTION_DROP) ?
886 0xfff : ntuple->fs.action);
887
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000888 switch (ntuple->fs.flow_type) {
889 case TCP_V4_FLOW:
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000890 case UDP_V4_FLOW: {
891 u8 proto = (ntuple->fs.flow_type == TCP_V4_FLOW ?
892 IPPROTO_TCP : IPPROTO_UDP);
893
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000894 /* Must match all of destination, */
895 if (ip_mask->ip4dst | ip_mask->pdst)
896 return -EINVAL;
897 /* all or none of source, */
898 if ((ip_mask->ip4src | ip_mask->psrc) &&
899 ((__force u32)~ip_mask->ip4src |
900 (__force u16)~ip_mask->psrc))
901 return -EINVAL;
902 /* and nothing else */
903 if ((u8)~ip_mask->tos | (u16)~ntuple->fs.vlan_tag_mask)
904 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000905
906 if (!ip_mask->ip4src)
907 rc = efx_filter_set_ipv4_full(&filter, proto,
908 ip_entry->ip4dst,
909 ip_entry->pdst,
910 ip_entry->ip4src,
911 ip_entry->psrc);
912 else
913 rc = efx_filter_set_ipv4_local(&filter, proto,
914 ip_entry->ip4dst,
915 ip_entry->pdst);
916 if (rc)
917 return rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000918 break;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000919 }
920
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000921 case ETHER_FLOW:
922 /* Must match all of destination, */
923 if (!is_zero_ether_addr(mac_mask->h_dest))
924 return -EINVAL;
925 /* all or none of VID, */
926 if (ntuple->fs.vlan_tag_mask != 0xf000 &&
927 ntuple->fs.vlan_tag_mask != 0xffff)
928 return -EINVAL;
929 /* and nothing else */
930 if (!is_broadcast_ether_addr(mac_mask->h_source) ||
931 mac_mask->h_proto != htons(0xffff))
932 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000933
934 rc = efx_filter_set_eth_local(
935 &filter,
936 (ntuple->fs.vlan_tag_mask == 0xf000) ?
937 ntuple->fs.vlan_tag : EFX_FILTER_VID_UNSPEC,
938 mac_entry->h_dest);
939 if (rc)
940 return rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000941 break;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000942
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000943 default:
944 return -EINVAL;
945 }
946
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000947 if (ntuple->fs.action == ETHTOOL_RXNTUPLE_ACTION_CLEAR)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000948 return efx_filter_remove_filter(efx, &filter);
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000949 else
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000950 return efx_filter_insert_filter(efx, &filter, true);
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000951}
952
Ben Hutchings765c9f42010-06-30 05:06:28 +0000953static int efx_ethtool_get_rxfh_indir(struct net_device *net_dev,
954 struct ethtool_rxfh_indir *indir)
955{
956 struct efx_nic *efx = netdev_priv(net_dev);
957 size_t copy_size =
958 min_t(size_t, indir->size, ARRAY_SIZE(efx->rx_indir_table));
959
960 if (efx_nic_rev(efx) < EFX_REV_FALCON_B0)
961 return -EOPNOTSUPP;
962
963 indir->size = ARRAY_SIZE(efx->rx_indir_table);
964 memcpy(indir->ring_index, efx->rx_indir_table,
965 copy_size * sizeof(indir->ring_index[0]));
966 return 0;
967}
968
969static int efx_ethtool_set_rxfh_indir(struct net_device *net_dev,
970 const struct ethtool_rxfh_indir *indir)
971{
972 struct efx_nic *efx = netdev_priv(net_dev);
973 size_t i;
974
975 if (efx_nic_rev(efx) < EFX_REV_FALCON_B0)
976 return -EOPNOTSUPP;
977
978 /* Validate size and indices */
979 if (indir->size != ARRAY_SIZE(efx->rx_indir_table))
980 return -EINVAL;
981 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
982 if (indir->ring_index[i] >= efx->n_rx_channels)
983 return -EINVAL;
984
985 memcpy(efx->rx_indir_table, indir->ring_index,
986 sizeof(efx->rx_indir_table));
987 efx_nic_push_rx_indir_table(efx);
988 return 0;
989}
990
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700991const struct ethtool_ops efx_ethtool_ops = {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100992 .get_settings = efx_ethtool_get_settings,
993 .set_settings = efx_ethtool_set_settings,
994 .get_drvinfo = efx_ethtool_get_drvinfo,
Ben Hutchings5b98c1b2010-06-21 03:06:53 +0000995 .get_regs_len = efx_ethtool_get_regs_len,
996 .get_regs = efx_ethtool_get_regs,
Ben Hutchings62776d02010-06-23 11:30:07 +0000997 .get_msglevel = efx_ethtool_get_msglevel,
998 .set_msglevel = efx_ethtool_set_msglevel,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100999 .nway_reset = efx_ethtool_nway_reset,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +00001000 .get_link = ethtool_op_get_link,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001001 .get_coalesce = efx_ethtool_get_coalesce,
1002 .set_coalesce = efx_ethtool_set_coalesce,
Ben Hutchings46426102010-09-10 06:42:33 +00001003 .get_ringparam = efx_ethtool_get_ringparam,
1004 .set_ringparam = efx_ethtool_set_ringparam,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001005 .get_pauseparam = efx_ethtool_get_pauseparam,
1006 .set_pauseparam = efx_ethtool_set_pauseparam,
Ben Hutchings3594e132008-09-01 12:48:12 +01001007 .get_sset_count = efx_ethtool_get_sset_count,
Ben Hutchings3273c2e2008-05-07 13:36:19 +01001008 .self_test = efx_ethtool_self_test,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001009 .get_strings = efx_ethtool_get_strings,
1010 .phys_id = efx_ethtool_phys_id,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001011 .get_ethtool_stats = efx_ethtool_get_stats,
Ben Hutchings89c758f2009-11-29 03:43:07 +00001012 .get_wol = efx_ethtool_get_wol,
1013 .set_wol = efx_ethtool_set_wol,
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001014 .reset = efx_ethtool_reset,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001015 .get_rxnfc = efx_ethtool_get_rxnfc,
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001016 .set_rx_ntuple = efx_ethtool_set_rx_ntuple,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001017 .get_rxfh_indir = efx_ethtool_get_rxfh_indir,
1018 .set_rxfh_indir = efx_ethtool_set_rxfh_indir,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001019};