blob: 79894160a9a4da920444c4e28d1fa82bdfe5347c [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.
4 * Copyright 2006-2008 Solarflare Communications Inc.
5 *
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>
14#include "net_driver.h"
Ben Hutchings3273c2e2008-05-07 13:36:19 +010015#include "selftest.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010016#include "efx.h"
17#include "ethtool.h"
18#include "falcon.h"
19#include "gmii.h"
Ben Hutchings4a5b5042008-09-01 12:47:16 +010020#include "spi.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010021#include "mac.h"
22
Ben Hutchings3273c2e2008-05-07 13:36:19 +010023const char *efx_loopback_mode_names[] = {
24 [LOOPBACK_NONE] = "NONE",
25 [LOOPBACK_MAC] = "MAC",
26 [LOOPBACK_XGMII] = "XGMII",
27 [LOOPBACK_XGXS] = "XGXS",
28 [LOOPBACK_XAUI] = "XAUI",
29 [LOOPBACK_PHY] = "PHY",
30 [LOOPBACK_PHYXS] = "PHY(XS)",
31 [LOOPBACK_PCS] = "PHY(PCS)",
32 [LOOPBACK_PMAPMD] = "PHY(PMAPMD)",
33 [LOOPBACK_NETWORK] = "NETWORK",
34};
35
Ben Hutchings8ceee662008-04-27 12:55:59 +010036struct ethtool_string {
37 char name[ETH_GSTRING_LEN];
38};
39
40struct efx_ethtool_stat {
41 const char *name;
42 enum {
43 EFX_ETHTOOL_STAT_SOURCE_mac_stats,
44 EFX_ETHTOOL_STAT_SOURCE_nic,
45 EFX_ETHTOOL_STAT_SOURCE_channel
46 } source;
47 unsigned offset;
48 u64(*get_stat) (void *field); /* Reader function */
49};
50
51/* Initialiser for a struct #efx_ethtool_stat with type-checking */
52#define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \
53 get_stat_function) { \
54 .name = #stat_name, \
55 .source = EFX_ETHTOOL_STAT_SOURCE_##source_name, \
56 .offset = ((((field_type *) 0) == \
57 &((struct efx_##source_name *)0)->field) ? \
58 offsetof(struct efx_##source_name, field) : \
59 offsetof(struct efx_##source_name, field)), \
60 .get_stat = get_stat_function, \
61}
62
63static u64 efx_get_uint_stat(void *field)
64{
65 return *(unsigned int *)field;
66}
67
68static u64 efx_get_ulong_stat(void *field)
69{
70 return *(unsigned long *)field;
71}
72
73static u64 efx_get_u64_stat(void *field)
74{
75 return *(u64 *) field;
76}
77
78static u64 efx_get_atomic_stat(void *field)
79{
80 return atomic_read((atomic_t *) field);
81}
82
83#define EFX_ETHTOOL_ULONG_MAC_STAT(field) \
84 EFX_ETHTOOL_STAT(field, mac_stats, field, \
85 unsigned long, efx_get_ulong_stat)
86
87#define EFX_ETHTOOL_U64_MAC_STAT(field) \
88 EFX_ETHTOOL_STAT(field, mac_stats, field, \
89 u64, efx_get_u64_stat)
90
91#define EFX_ETHTOOL_UINT_NIC_STAT(name) \
92 EFX_ETHTOOL_STAT(name, nic, n_##name, \
93 unsigned int, efx_get_uint_stat)
94
95#define EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(field) \
96 EFX_ETHTOOL_STAT(field, nic, field, \
97 atomic_t, efx_get_atomic_stat)
98
99#define EFX_ETHTOOL_UINT_CHANNEL_STAT(field) \
100 EFX_ETHTOOL_STAT(field, channel, n_##field, \
101 unsigned int, efx_get_uint_stat)
102
103static struct efx_ethtool_stat efx_ethtool_stats[] = {
104 EFX_ETHTOOL_U64_MAC_STAT(tx_bytes),
105 EFX_ETHTOOL_U64_MAC_STAT(tx_good_bytes),
106 EFX_ETHTOOL_U64_MAC_STAT(tx_bad_bytes),
107 EFX_ETHTOOL_ULONG_MAC_STAT(tx_packets),
108 EFX_ETHTOOL_ULONG_MAC_STAT(tx_bad),
109 EFX_ETHTOOL_ULONG_MAC_STAT(tx_pause),
110 EFX_ETHTOOL_ULONG_MAC_STAT(tx_control),
111 EFX_ETHTOOL_ULONG_MAC_STAT(tx_unicast),
112 EFX_ETHTOOL_ULONG_MAC_STAT(tx_multicast),
113 EFX_ETHTOOL_ULONG_MAC_STAT(tx_broadcast),
114 EFX_ETHTOOL_ULONG_MAC_STAT(tx_lt64),
115 EFX_ETHTOOL_ULONG_MAC_STAT(tx_64),
116 EFX_ETHTOOL_ULONG_MAC_STAT(tx_65_to_127),
117 EFX_ETHTOOL_ULONG_MAC_STAT(tx_128_to_255),
118 EFX_ETHTOOL_ULONG_MAC_STAT(tx_256_to_511),
119 EFX_ETHTOOL_ULONG_MAC_STAT(tx_512_to_1023),
120 EFX_ETHTOOL_ULONG_MAC_STAT(tx_1024_to_15xx),
121 EFX_ETHTOOL_ULONG_MAC_STAT(tx_15xx_to_jumbo),
122 EFX_ETHTOOL_ULONG_MAC_STAT(tx_gtjumbo),
123 EFX_ETHTOOL_ULONG_MAC_STAT(tx_collision),
124 EFX_ETHTOOL_ULONG_MAC_STAT(tx_single_collision),
125 EFX_ETHTOOL_ULONG_MAC_STAT(tx_multiple_collision),
126 EFX_ETHTOOL_ULONG_MAC_STAT(tx_excessive_collision),
127 EFX_ETHTOOL_ULONG_MAC_STAT(tx_deferred),
128 EFX_ETHTOOL_ULONG_MAC_STAT(tx_late_collision),
129 EFX_ETHTOOL_ULONG_MAC_STAT(tx_excessive_deferred),
130 EFX_ETHTOOL_ULONG_MAC_STAT(tx_non_tcpudp),
131 EFX_ETHTOOL_ULONG_MAC_STAT(tx_mac_src_error),
132 EFX_ETHTOOL_ULONG_MAC_STAT(tx_ip_src_error),
133 EFX_ETHTOOL_U64_MAC_STAT(rx_bytes),
134 EFX_ETHTOOL_U64_MAC_STAT(rx_good_bytes),
135 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_bytes),
136 EFX_ETHTOOL_ULONG_MAC_STAT(rx_packets),
137 EFX_ETHTOOL_ULONG_MAC_STAT(rx_good),
138 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad),
139 EFX_ETHTOOL_ULONG_MAC_STAT(rx_pause),
140 EFX_ETHTOOL_ULONG_MAC_STAT(rx_control),
141 EFX_ETHTOOL_ULONG_MAC_STAT(rx_unicast),
142 EFX_ETHTOOL_ULONG_MAC_STAT(rx_multicast),
143 EFX_ETHTOOL_ULONG_MAC_STAT(rx_broadcast),
144 EFX_ETHTOOL_ULONG_MAC_STAT(rx_lt64),
145 EFX_ETHTOOL_ULONG_MAC_STAT(rx_64),
146 EFX_ETHTOOL_ULONG_MAC_STAT(rx_65_to_127),
147 EFX_ETHTOOL_ULONG_MAC_STAT(rx_128_to_255),
148 EFX_ETHTOOL_ULONG_MAC_STAT(rx_256_to_511),
149 EFX_ETHTOOL_ULONG_MAC_STAT(rx_512_to_1023),
150 EFX_ETHTOOL_ULONG_MAC_STAT(rx_1024_to_15xx),
151 EFX_ETHTOOL_ULONG_MAC_STAT(rx_15xx_to_jumbo),
152 EFX_ETHTOOL_ULONG_MAC_STAT(rx_gtjumbo),
153 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_lt64),
154 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_64_to_15xx),
155 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_15xx_to_jumbo),
156 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_gtjumbo),
157 EFX_ETHTOOL_ULONG_MAC_STAT(rx_overflow),
158 EFX_ETHTOOL_ULONG_MAC_STAT(rx_missed),
159 EFX_ETHTOOL_ULONG_MAC_STAT(rx_false_carrier),
160 EFX_ETHTOOL_ULONG_MAC_STAT(rx_symbol_error),
161 EFX_ETHTOOL_ULONG_MAC_STAT(rx_align_error),
162 EFX_ETHTOOL_ULONG_MAC_STAT(rx_length_error),
163 EFX_ETHTOOL_ULONG_MAC_STAT(rx_internal_error),
164 EFX_ETHTOOL_UINT_NIC_STAT(rx_nodesc_drop_cnt),
165 EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(rx_reset),
166 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tobe_disc),
167 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_ip_hdr_chksum_err),
168 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tcp_udp_chksum_err),
169 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_frm_trunc),
170};
171
172/* Number of ethtool statistics */
173#define EFX_ETHTOOL_NUM_STATS ARRAY_SIZE(efx_ethtool_stats)
174
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100175/* EEPROM range with gPXE configuration */
176#define EFX_ETHTOOL_EEPROM_MAGIC 0xEFAB
177#define EFX_ETHTOOL_EEPROM_MIN 0x100U
178#define EFX_ETHTOOL_EEPROM_MAX 0x400U
179
Ben Hutchings8ceee662008-04-27 12:55:59 +0100180/**************************************************************************
181 *
182 * Ethtool operations
183 *
184 **************************************************************************
185 */
186
187/* Identify device by flashing LEDs */
188static int efx_ethtool_phys_id(struct net_device *net_dev, u32 seconds)
189{
Ben Hutchings767e4682008-09-01 12:43:14 +0100190 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100191
192 efx->board_info.blink(efx, 1);
193 schedule_timeout_interruptible(seconds * HZ);
194 efx->board_info.blink(efx, 0);
195 return 0;
196}
197
198/* This must be called with rtnl_lock held. */
199int efx_ethtool_get_settings(struct net_device *net_dev,
200 struct ethtool_cmd *ecmd)
201{
Ben Hutchings767e4682008-09-01 12:43:14 +0100202 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100203 int rc;
204
205 mutex_lock(&efx->mac_lock);
206 rc = falcon_xmac_get_settings(efx, ecmd);
207 mutex_unlock(&efx->mac_lock);
208
209 return rc;
210}
211
212/* This must be called with rtnl_lock held. */
213int efx_ethtool_set_settings(struct net_device *net_dev,
214 struct ethtool_cmd *ecmd)
215{
Ben Hutchings767e4682008-09-01 12:43:14 +0100216 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100217 int rc;
218
219 mutex_lock(&efx->mac_lock);
220 rc = falcon_xmac_set_settings(efx, ecmd);
221 mutex_unlock(&efx->mac_lock);
222 if (!rc)
223 efx_reconfigure_port(efx);
224
225 return rc;
226}
227
228static void efx_ethtool_get_drvinfo(struct net_device *net_dev,
229 struct ethtool_drvinfo *info)
230{
Ben Hutchings767e4682008-09-01 12:43:14 +0100231 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100232
233 strlcpy(info->driver, EFX_DRIVER_NAME, sizeof(info->driver));
234 strlcpy(info->version, EFX_DRIVER_VERSION, sizeof(info->version));
235 strlcpy(info->bus_info, pci_name(efx->pci_dev), sizeof(info->bus_info));
236}
237
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100238/**
239 * efx_fill_test - fill in an individual self-test entry
240 * @test_index: Index of the test
241 * @strings: Ethtool strings, or %NULL
242 * @data: Ethtool test results, or %NULL
243 * @test: Pointer to test result (used only if data != %NULL)
244 * @unit_format: Unit name format (e.g. "channel\%d")
245 * @unit_id: Unit id (e.g. 0 for "channel0")
246 * @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
247 * @test_id: Test id (e.g. "PHY" for "loopback.PHY.tx_sent")
248 *
249 * Fill in an individual self-test entry.
250 */
251static void efx_fill_test(unsigned int test_index,
252 struct ethtool_string *strings, u64 *data,
253 int *test, const char *unit_format, int unit_id,
254 const char *test_format, const char *test_id)
255{
256 struct ethtool_string unit_str, test_str;
257
258 /* Fill data value, if applicable */
259 if (data)
260 data[test_index] = *test;
261
262 /* Fill string, if applicable */
263 if (strings) {
264 snprintf(unit_str.name, sizeof(unit_str.name),
265 unit_format, unit_id);
266 snprintf(test_str.name, sizeof(test_str.name),
267 test_format, test_id);
268 snprintf(strings[test_index].name,
269 sizeof(strings[test_index].name),
270 "%-9s%-17s", unit_str.name, test_str.name);
271 }
272}
273
274#define EFX_PORT_NAME "port%d", 0
275#define EFX_CHANNEL_NAME(_channel) "channel%d", _channel->channel
276#define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue
277#define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue
278#define EFX_LOOPBACK_NAME(_mode, _counter) \
279 "loopback.%s." _counter, LOOPBACK_MODE_NAME(mode)
280
281/**
282 * efx_fill_loopback_test - fill in a block of loopback self-test entries
283 * @efx: Efx NIC
284 * @lb_tests: Efx loopback self-test results structure
285 * @mode: Loopback test mode
286 * @test_index: Starting index of the test
287 * @strings: Ethtool strings, or %NULL
288 * @data: Ethtool test results, or %NULL
289 */
290static int efx_fill_loopback_test(struct efx_nic *efx,
291 struct efx_loopback_self_tests *lb_tests,
292 enum efx_loopback_mode mode,
293 unsigned int test_index,
294 struct ethtool_string *strings, u64 *data)
295{
296 struct efx_tx_queue *tx_queue;
297
298 efx_for_each_tx_queue(tx_queue, efx) {
299 efx_fill_test(test_index++, strings, data,
300 &lb_tests->tx_sent[tx_queue->queue],
301 EFX_TX_QUEUE_NAME(tx_queue),
302 EFX_LOOPBACK_NAME(mode, "tx_sent"));
303 efx_fill_test(test_index++, strings, data,
304 &lb_tests->tx_done[tx_queue->queue],
305 EFX_TX_QUEUE_NAME(tx_queue),
306 EFX_LOOPBACK_NAME(mode, "tx_done"));
307 }
308 efx_fill_test(test_index++, strings, data,
309 &lb_tests->rx_good,
310 EFX_PORT_NAME,
311 EFX_LOOPBACK_NAME(mode, "rx_good"));
312 efx_fill_test(test_index++, strings, data,
313 &lb_tests->rx_bad,
314 EFX_PORT_NAME,
315 EFX_LOOPBACK_NAME(mode, "rx_bad"));
316
317 return test_index;
318}
319
320/**
321 * efx_ethtool_fill_self_tests - get self-test details
322 * @efx: Efx NIC
323 * @tests: Efx self-test results structure, or %NULL
324 * @strings: Ethtool strings, or %NULL
325 * @data: Ethtool test results, or %NULL
326 */
327static int efx_ethtool_fill_self_tests(struct efx_nic *efx,
328 struct efx_self_tests *tests,
329 struct ethtool_string *strings,
330 u64 *data)
331{
332 struct efx_channel *channel;
333 unsigned int n = 0;
334 enum efx_loopback_mode mode;
335
336 /* Interrupt */
337 efx_fill_test(n++, strings, data, &tests->interrupt,
338 "core", 0, "interrupt", NULL);
339
340 /* Event queues */
341 efx_for_each_channel(channel, efx) {
342 efx_fill_test(n++, strings, data,
343 &tests->eventq_dma[channel->channel],
344 EFX_CHANNEL_NAME(channel),
345 "eventq.dma", NULL);
346 efx_fill_test(n++, strings, data,
347 &tests->eventq_int[channel->channel],
348 EFX_CHANNEL_NAME(channel),
349 "eventq.int", NULL);
350 efx_fill_test(n++, strings, data,
351 &tests->eventq_poll[channel->channel],
352 EFX_CHANNEL_NAME(channel),
353 "eventq.poll", NULL);
354 }
355
356 /* PHY presence */
357 efx_fill_test(n++, strings, data, &tests->phy_ok,
358 EFX_PORT_NAME, "phy_ok", NULL);
359
360 /* Loopback tests */
361 efx_fill_test(n++, strings, data, &tests->loopback_speed,
362 EFX_PORT_NAME, "loopback.speed", NULL);
363 efx_fill_test(n++, strings, data, &tests->loopback_full_duplex,
364 EFX_PORT_NAME, "loopback.full_duplex", NULL);
365 for (mode = LOOPBACK_NONE; mode < LOOPBACK_TEST_MAX; mode++) {
366 if (!(efx->loopback_modes & (1 << mode)))
367 continue;
368 n = efx_fill_loopback_test(efx,
369 &tests->loopback[mode], mode, n,
370 strings, data);
371 }
372
373 return n;
374}
375
Ben Hutchings3594e132008-09-01 12:48:12 +0100376static int efx_ethtool_get_sset_count(struct net_device *net_dev,
377 int string_set)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100378{
Ben Hutchings3594e132008-09-01 12:48:12 +0100379 switch (string_set) {
380 case ETH_SS_STATS:
381 return EFX_ETHTOOL_NUM_STATS;
382 case ETH_SS_TEST:
383 return efx_ethtool_fill_self_tests(netdev_priv(net_dev),
384 NULL, NULL, NULL);
385 default:
386 return -EINVAL;
387 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100388}
389
Ben Hutchings8ceee662008-04-27 12:55:59 +0100390static void efx_ethtool_get_strings(struct net_device *net_dev,
391 u32 string_set, u8 *strings)
392{
Ben Hutchings767e4682008-09-01 12:43:14 +0100393 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100394 struct ethtool_string *ethtool_strings =
395 (struct ethtool_string *)strings;
396 int i;
397
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100398 switch (string_set) {
399 case ETH_SS_STATS:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100400 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++)
401 strncpy(ethtool_strings[i].name,
402 efx_ethtool_stats[i].name,
403 sizeof(ethtool_strings[i].name));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100404 break;
405 case ETH_SS_TEST:
406 efx_ethtool_fill_self_tests(efx, NULL,
407 ethtool_strings, NULL);
408 break;
409 default:
410 /* No other string sets */
411 break;
412 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100413}
414
415static void efx_ethtool_get_stats(struct net_device *net_dev,
416 struct ethtool_stats *stats,
417 u64 *data)
418{
Ben Hutchings767e4682008-09-01 12:43:14 +0100419 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100420 struct efx_mac_stats *mac_stats = &efx->mac_stats;
421 struct efx_ethtool_stat *stat;
422 struct efx_channel *channel;
423 int i;
424
425 EFX_BUG_ON_PARANOID(stats->n_stats != EFX_ETHTOOL_NUM_STATS);
426
427 /* Update MAC and NIC statistics */
428 net_dev->get_stats(net_dev);
429
430 /* Fill detailed statistics buffer */
431 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++) {
432 stat = &efx_ethtool_stats[i];
433 switch (stat->source) {
434 case EFX_ETHTOOL_STAT_SOURCE_mac_stats:
435 data[i] = stat->get_stat((void *)mac_stats +
436 stat->offset);
437 break;
438 case EFX_ETHTOOL_STAT_SOURCE_nic:
439 data[i] = stat->get_stat((void *)efx + stat->offset);
440 break;
441 case EFX_ETHTOOL_STAT_SOURCE_channel:
442 data[i] = 0;
443 efx_for_each_channel(channel, efx)
444 data[i] += stat->get_stat((void *)channel +
445 stat->offset);
446 break;
447 }
448 }
449}
450
Ben Hutchings8ceee662008-04-27 12:55:59 +0100451static int efx_ethtool_set_rx_csum(struct net_device *net_dev, u32 enable)
452{
Ben Hutchings767e4682008-09-01 12:43:14 +0100453 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100454
455 /* No way to stop the hardware doing the checks; we just
456 * ignore the result.
457 */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100458 efx->rx_checksum_enabled = !!enable;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100459
460 return 0;
461}
462
463static u32 efx_ethtool_get_rx_csum(struct net_device *net_dev)
464{
Ben Hutchings767e4682008-09-01 12:43:14 +0100465 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100466
467 return efx->rx_checksum_enabled;
468}
469
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100470static void efx_ethtool_self_test(struct net_device *net_dev,
471 struct ethtool_test *test, u64 *data)
472{
Ben Hutchings767e4682008-09-01 12:43:14 +0100473 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100474 struct efx_self_tests efx_tests;
475 int offline, already_up;
476 int rc;
477
478 ASSERT_RTNL();
479 if (efx->state != STATE_RUNNING) {
480 rc = -EIO;
481 goto fail1;
482 }
483
484 /* We need rx buffers and interrupts. */
485 already_up = (efx->net_dev->flags & IFF_UP);
486 if (!already_up) {
487 rc = dev_open(efx->net_dev);
488 if (rc) {
489 EFX_ERR(efx, "failed opening device.\n");
490 goto fail2;
491 }
492 }
493
494 memset(&efx_tests, 0, sizeof(efx_tests));
495 offline = (test->flags & ETH_TEST_FL_OFFLINE);
496
497 /* Perform online self tests first */
498 rc = efx_online_test(efx, &efx_tests);
499 if (rc)
500 goto out;
501
502 /* Perform offline tests only if online tests passed */
503 if (offline) {
504 /* Stop the kernel from sending packets during the test. */
505 efx_stop_queue(efx);
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100506 efx_flush_queues(efx);
507
508 rc = efx_offline_test(efx, &efx_tests,
509 efx->loopback_modes);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100510 efx_wake_queue(efx);
511 }
512
513 out:
514 if (!already_up)
515 dev_close(efx->net_dev);
516
517 EFX_LOG(efx, "%s all %sline self-tests\n",
518 rc == 0 ? "passed" : "failed", offline ? "off" : "on");
519
520 fail2:
521 fail1:
522 /* Fill ethtool results structures */
523 efx_ethtool_fill_self_tests(efx, &efx_tests, NULL, data);
524 if (rc)
525 test->flags |= ETH_TEST_FL_FAILED;
526}
527
Ben Hutchings8ceee662008-04-27 12:55:59 +0100528/* Restart autonegotiation */
529static int efx_ethtool_nway_reset(struct net_device *net_dev)
530{
Ben Hutchings767e4682008-09-01 12:43:14 +0100531 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100532
533 return mii_nway_restart(&efx->mii);
534}
535
536static u32 efx_ethtool_get_link(struct net_device *net_dev)
537{
Ben Hutchings767e4682008-09-01 12:43:14 +0100538 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100539
540 return efx->link_up;
541}
542
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100543static int efx_ethtool_get_eeprom_len(struct net_device *net_dev)
544{
545 struct efx_nic *efx = netdev_priv(net_dev);
546 struct efx_spi_device *spi = efx->spi_eeprom;
547
548 if (!spi)
549 return 0;
550 return min(spi->size, EFX_ETHTOOL_EEPROM_MAX) -
551 min(spi->size, EFX_ETHTOOL_EEPROM_MIN);
552}
553
554static int efx_ethtool_get_eeprom(struct net_device *net_dev,
555 struct ethtool_eeprom *eeprom, u8 *buf)
556{
557 struct efx_nic *efx = netdev_priv(net_dev);
558 struct efx_spi_device *spi = efx->spi_eeprom;
559 size_t len;
560 int rc;
561
562 rc = falcon_spi_read(spi, eeprom->offset + EFX_ETHTOOL_EEPROM_MIN,
563 eeprom->len, &len, buf);
564 eeprom->magic = EFX_ETHTOOL_EEPROM_MAGIC;
565 eeprom->len = len;
566 return rc;
567}
568
569static int efx_ethtool_set_eeprom(struct net_device *net_dev,
570 struct ethtool_eeprom *eeprom, u8 *buf)
571{
572 struct efx_nic *efx = netdev_priv(net_dev);
573 struct efx_spi_device *spi = efx->spi_eeprom;
574 size_t len;
575 int rc;
576
577 if (eeprom->magic != EFX_ETHTOOL_EEPROM_MAGIC)
578 return -EINVAL;
579
580 rc = falcon_spi_write(spi, eeprom->offset + EFX_ETHTOOL_EEPROM_MIN,
581 eeprom->len, &len, buf);
582 eeprom->len = len;
583 return rc;
584}
585
Ben Hutchings8ceee662008-04-27 12:55:59 +0100586static int efx_ethtool_get_coalesce(struct net_device *net_dev,
587 struct ethtool_coalesce *coalesce)
588{
Ben Hutchings767e4682008-09-01 12:43:14 +0100589 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100590 struct efx_tx_queue *tx_queue;
591 struct efx_rx_queue *rx_queue;
592 struct efx_channel *channel;
593
594 memset(coalesce, 0, sizeof(*coalesce));
595
596 /* Find lowest IRQ moderation across all used TX queues */
597 coalesce->tx_coalesce_usecs_irq = ~((u32) 0);
598 efx_for_each_tx_queue(tx_queue, efx) {
599 channel = tx_queue->channel;
600 if (channel->irq_moderation < coalesce->tx_coalesce_usecs_irq) {
601 if (channel->used_flags != EFX_USED_BY_RX_TX)
602 coalesce->tx_coalesce_usecs_irq =
603 channel->irq_moderation;
604 else
605 coalesce->tx_coalesce_usecs_irq = 0;
606 }
607 }
608
609 /* Find lowest IRQ moderation across all used RX queues */
610 coalesce->rx_coalesce_usecs_irq = ~((u32) 0);
611 efx_for_each_rx_queue(rx_queue, efx) {
612 channel = rx_queue->channel;
613 if (channel->irq_moderation < coalesce->rx_coalesce_usecs_irq)
614 coalesce->rx_coalesce_usecs_irq =
615 channel->irq_moderation;
616 }
617
618 return 0;
619}
620
621/* Set coalescing parameters
622 * The difficulties occur for shared channels
623 */
624static 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;
629 struct efx_tx_queue *tx_queue;
630 unsigned tx_usecs, rx_usecs;
631
632 if (coalesce->use_adaptive_rx_coalesce ||
633 coalesce->use_adaptive_tx_coalesce)
634 return -EOPNOTSUPP;
635
636 if (coalesce->rx_coalesce_usecs || coalesce->tx_coalesce_usecs) {
637 EFX_ERR(efx, "invalid coalescing setting. "
638 "Only rx/tx_coalesce_usecs_irq are supported\n");
639 return -EOPNOTSUPP;
640 }
641
642 rx_usecs = coalesce->rx_coalesce_usecs_irq;
643 tx_usecs = coalesce->tx_coalesce_usecs_irq;
644
645 /* If the channel is shared only allow RX parameters to be set */
646 efx_for_each_tx_queue(tx_queue, efx) {
647 if ((tx_queue->channel->used_flags == EFX_USED_BY_RX_TX) &&
648 tx_usecs) {
649 EFX_ERR(efx, "Channel is shared. "
650 "Only RX coalescing may be set\n");
651 return -EOPNOTSUPP;
652 }
653 }
654
655 efx_init_irq_moderation(efx, tx_usecs, rx_usecs);
656
657 /* Reset channel to pick up new moderation value. Note that
658 * this may change the value of the irq_moderation field
659 * (e.g. to allow for hardware timer granularity).
660 */
661 efx_for_each_channel(channel, efx)
662 falcon_set_int_moderation(channel);
663
664 return 0;
665}
666
667static int efx_ethtool_set_pauseparam(struct net_device *net_dev,
668 struct ethtool_pauseparam *pause)
669{
Ben Hutchings767e4682008-09-01 12:43:14 +0100670 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100671 enum efx_fc_type flow_control = efx->flow_control;
672 int rc;
673
674 flow_control &= ~(EFX_FC_RX | EFX_FC_TX | EFX_FC_AUTO);
675 flow_control |= pause->rx_pause ? EFX_FC_RX : 0;
676 flow_control |= pause->tx_pause ? EFX_FC_TX : 0;
677 flow_control |= pause->autoneg ? EFX_FC_AUTO : 0;
678
679 /* Try to push the pause parameters */
680 mutex_lock(&efx->mac_lock);
681 rc = falcon_xmac_set_pause(efx, flow_control);
682 mutex_unlock(&efx->mac_lock);
683
684 if (!rc)
685 efx_reconfigure_port(efx);
686
687 return rc;
688}
689
690static void efx_ethtool_get_pauseparam(struct net_device *net_dev,
691 struct ethtool_pauseparam *pause)
692{
Ben Hutchings767e4682008-09-01 12:43:14 +0100693 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100694
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100695 pause->rx_pause = !!(efx->flow_control & EFX_FC_RX);
696 pause->tx_pause = !!(efx->flow_control & EFX_FC_TX);
697 pause->autoneg = !!(efx->flow_control & EFX_FC_AUTO);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100698}
699
700
701struct ethtool_ops efx_ethtool_ops = {
702 .get_settings = efx_ethtool_get_settings,
703 .set_settings = efx_ethtool_set_settings,
704 .get_drvinfo = efx_ethtool_get_drvinfo,
705 .nway_reset = efx_ethtool_nway_reset,
706 .get_link = efx_ethtool_get_link,
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100707 .get_eeprom_len = efx_ethtool_get_eeprom_len,
708 .get_eeprom = efx_ethtool_get_eeprom,
709 .set_eeprom = efx_ethtool_set_eeprom,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100710 .get_coalesce = efx_ethtool_get_coalesce,
711 .set_coalesce = efx_ethtool_set_coalesce,
712 .get_pauseparam = efx_ethtool_get_pauseparam,
713 .set_pauseparam = efx_ethtool_set_pauseparam,
714 .get_rx_csum = efx_ethtool_get_rx_csum,
715 .set_rx_csum = efx_ethtool_set_rx_csum,
716 .get_tx_csum = ethtool_op_get_tx_csum,
Ben Hutchings60ac1062008-09-01 12:44:59 +0100717 .set_tx_csum = ethtool_op_set_tx_csum,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100718 .get_sg = ethtool_op_get_sg,
719 .set_sg = ethtool_op_set_sg,
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100720 .get_tso = ethtool_op_get_tso,
Ben Hutchings60ac1062008-09-01 12:44:59 +0100721 .set_tso = ethtool_op_set_tso,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100722 .get_flags = ethtool_op_get_flags,
723 .set_flags = ethtool_op_set_flags,
Ben Hutchings3594e132008-09-01 12:48:12 +0100724 .get_sset_count = efx_ethtool_get_sset_count,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100725 .self_test = efx_ethtool_self_test,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100726 .get_strings = efx_ethtool_get_strings,
727 .phys_id = efx_ethtool_phys_id,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100728 .get_ethtool_stats = efx_ethtool_get_stats,
729};