blob: ba901167801340bae724fd79278309676dfd672e [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) \
Ben Hutchings9c636ba2012-01-05 17:19:45 +000071 EFX_ETHTOOL_STAT(field, mac_stats, field, \
Ben Hutchings8ceee662008-04-27 12:55:59 +010072 unsigned long, efx_get_ulong_stat)
73
74#define EFX_ETHTOOL_U64_MAC_STAT(field) \
Ben Hutchings9c636ba2012-01-05 17:19:45 +000075 EFX_ETHTOOL_STAT(field, mac_stats, field, \
Ben Hutchings8ceee662008-04-27 12:55:59 +010076 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 Hutchings18e83e42012-01-05 19:05:20 +000094static const struct efx_ethtool_stat efx_ethtool_stats[] = {
Ben Hutchings8ceee662008-04-27 12:55:59 +010095 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 Hutchingsc5e129a2011-04-02 00:43:46 +0100181static int efx_ethtool_phys_id(struct net_device *net_dev,
182 enum ethtool_phys_id_state state)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100183{
Ben Hutchings767e4682008-09-01 12:43:14 +0100184 struct efx_nic *efx = netdev_priv(net_dev);
Allan, Bruce Wfce55922011-04-13 13:09:10 +0000185 enum efx_led_mode mode = EFX_LED_DEFAULT;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100186
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100187 switch (state) {
188 case ETHTOOL_ID_ON:
189 mode = EFX_LED_ON;
190 break;
191 case ETHTOOL_ID_OFF:
192 mode = EFX_LED_OFF;
193 break;
194 case ETHTOOL_ID_INACTIVE:
195 mode = EFX_LED_DEFAULT;
196 break;
Allan, Bruce Wfce55922011-04-13 13:09:10 +0000197 case ETHTOOL_ID_ACTIVE:
198 return 1; /* cycle on/off once per second */
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100199 }
Ben Hutchings398468e2009-11-23 16:03:45 +0000200
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100201 efx->type->set_id_led(efx, mode);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100202 return 0;
203}
204
205/* This must be called with rtnl_lock held. */
stephen hemmingerd2156972010-10-18 05:27:31 +0000206static int efx_ethtool_get_settings(struct net_device *net_dev,
207 struct ethtool_cmd *ecmd)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100208{
Ben Hutchings767e4682008-09-01 12:43:14 +0100209 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000210 struct efx_link_state *link_state = &efx->link_state;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100211
212 mutex_lock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800213 efx->phy_op->get_settings(efx, ecmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100214 mutex_unlock(&efx->mac_lock);
215
Ben Hutchings754c6532010-02-03 09:31:57 +0000216 /* GMAC does not support 1000Mbps HD */
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800217 ecmd->supported &= ~SUPPORTED_1000baseT_Half;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000218 /* Both MACs support pause frames (bidirectional and respond-only) */
219 ecmd->supported |= SUPPORTED_Pause | SUPPORTED_Asym_Pause;
220
221 if (LOOPBACK_INTERNAL(efx)) {
David Decotigny70739492011-04-27 18:32:40 +0000222 ethtool_cmd_speed_set(ecmd, link_state->speed);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000223 ecmd->duplex = link_state->fd ? DUPLEX_FULL : DUPLEX_HALF;
224 }
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800225
226 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100227}
228
229/* This must be called with rtnl_lock held. */
stephen hemmingerd2156972010-10-18 05:27:31 +0000230static int efx_ethtool_set_settings(struct net_device *net_dev,
231 struct ethtool_cmd *ecmd)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100232{
Ben Hutchings767e4682008-09-01 12:43:14 +0100233 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100234 int rc;
235
Ben Hutchings754c6532010-02-03 09:31:57 +0000236 /* GMAC does not support 1000Mbps HD */
David Decotigny25db0332011-04-27 18:32:39 +0000237 if ((ethtool_cmd_speed(ecmd) == SPEED_1000) &&
238 (ecmd->duplex != DUPLEX_FULL)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000239 netif_dbg(efx, drv, efx->net_dev,
240 "rejecting unsupported 1000Mbps HD setting\n");
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800241 return -EINVAL;
242 }
243
Ben Hutchings8ceee662008-04-27 12:55:59 +0100244 mutex_lock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800245 rc = efx->phy_op->set_settings(efx, ecmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100246 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100247 return rc;
248}
249
250static void efx_ethtool_get_drvinfo(struct net_device *net_dev,
251 struct ethtool_drvinfo *info)
252{
Ben Hutchings767e4682008-09-01 12:43:14 +0100253 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100254
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +0000255 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100256 strlcpy(info->version, EFX_DRIVER_VERSION, sizeof(info->version));
Ben Hutchings8880f4e2009-11-29 15:15:41 +0000257 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0)
Ben Hutchingse5f0fd22011-02-24 23:57:47 +0000258 efx_mcdi_print_fwver(efx, info->fw_version,
259 sizeof(info->fw_version));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100260 strlcpy(info->bus_info, pci_name(efx->pci_dev), sizeof(info->bus_info));
261}
262
Ben Hutchings5b98c1b2010-06-21 03:06:53 +0000263static int efx_ethtool_get_regs_len(struct net_device *net_dev)
264{
265 return efx_nic_get_regs_len(netdev_priv(net_dev));
266}
267
268static void efx_ethtool_get_regs(struct net_device *net_dev,
269 struct ethtool_regs *regs, void *buf)
270{
271 struct efx_nic *efx = netdev_priv(net_dev);
272
273 regs->version = efx->type->revision;
274 efx_nic_get_regs(efx, buf);
275}
276
Ben Hutchings62776d02010-06-23 11:30:07 +0000277static u32 efx_ethtool_get_msglevel(struct net_device *net_dev)
278{
279 struct efx_nic *efx = netdev_priv(net_dev);
280 return efx->msg_enable;
281}
282
283static void efx_ethtool_set_msglevel(struct net_device *net_dev, u32 msg_enable)
284{
285 struct efx_nic *efx = netdev_priv(net_dev);
286 efx->msg_enable = msg_enable;
287}
288
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100289/**
290 * efx_fill_test - fill in an individual self-test entry
291 * @test_index: Index of the test
292 * @strings: Ethtool strings, or %NULL
293 * @data: Ethtool test results, or %NULL
294 * @test: Pointer to test result (used only if data != %NULL)
Ben Hutchings740ced92008-12-12 21:41:55 -0800295 * @unit_format: Unit name format (e.g. "chan\%d")
296 * @unit_id: Unit id (e.g. 0 for "chan0")
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100297 * @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
Ben Hutchings740ced92008-12-12 21:41:55 -0800298 * @test_id: Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent")
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100299 *
300 * Fill in an individual self-test entry.
301 */
302static void efx_fill_test(unsigned int test_index,
303 struct ethtool_string *strings, u64 *data,
304 int *test, const char *unit_format, int unit_id,
305 const char *test_format, const char *test_id)
306{
307 struct ethtool_string unit_str, test_str;
308
309 /* Fill data value, if applicable */
310 if (data)
311 data[test_index] = *test;
312
313 /* Fill string, if applicable */
314 if (strings) {
Ben Hutchings11e66962008-12-12 22:05:48 -0800315 if (strchr(unit_format, '%'))
316 snprintf(unit_str.name, sizeof(unit_str.name),
317 unit_format, unit_id);
318 else
319 strcpy(unit_str.name, unit_format);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100320 snprintf(test_str.name, sizeof(test_str.name),
321 test_format, test_id);
322 snprintf(strings[test_index].name,
323 sizeof(strings[test_index].name),
Ben Hutchings740ced92008-12-12 21:41:55 -0800324 "%-6s %-24s", unit_str.name, test_str.name);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100325 }
326}
327
Ben Hutchings740ced92008-12-12 21:41:55 -0800328#define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100329#define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue
330#define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue
331#define EFX_LOOPBACK_NAME(_mode, _counter) \
Ben Hutchingsc4593022009-11-23 16:08:17 +0000332 "loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100333
334/**
335 * efx_fill_loopback_test - fill in a block of loopback self-test entries
336 * @efx: Efx NIC
337 * @lb_tests: Efx loopback self-test results structure
338 * @mode: Loopback test mode
339 * @test_index: Starting index of the test
340 * @strings: Ethtool strings, or %NULL
341 * @data: Ethtool test results, or %NULL
342 */
343static int efx_fill_loopback_test(struct efx_nic *efx,
344 struct efx_loopback_self_tests *lb_tests,
345 enum efx_loopback_mode mode,
346 unsigned int test_index,
347 struct ethtool_string *strings, u64 *data)
348{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000349 struct efx_channel *channel = efx_get_channel(efx, 0);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100350 struct efx_tx_queue *tx_queue;
351
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000352 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100353 efx_fill_test(test_index++, strings, data,
354 &lb_tests->tx_sent[tx_queue->queue],
355 EFX_TX_QUEUE_NAME(tx_queue),
356 EFX_LOOPBACK_NAME(mode, "tx_sent"));
357 efx_fill_test(test_index++, strings, data,
358 &lb_tests->tx_done[tx_queue->queue],
359 EFX_TX_QUEUE_NAME(tx_queue),
360 EFX_LOOPBACK_NAME(mode, "tx_done"));
361 }
362 efx_fill_test(test_index++, strings, data,
363 &lb_tests->rx_good,
Ben Hutchings11e66962008-12-12 22:05:48 -0800364 "rx", 0,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100365 EFX_LOOPBACK_NAME(mode, "rx_good"));
366 efx_fill_test(test_index++, strings, data,
367 &lb_tests->rx_bad,
Ben Hutchings11e66962008-12-12 22:05:48 -0800368 "rx", 0,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100369 EFX_LOOPBACK_NAME(mode, "rx_bad"));
370
371 return test_index;
372}
373
374/**
375 * efx_ethtool_fill_self_tests - get self-test details
376 * @efx: Efx NIC
377 * @tests: Efx self-test results structure, or %NULL
378 * @strings: Ethtool strings, or %NULL
379 * @data: Ethtool test results, or %NULL
380 */
381static int efx_ethtool_fill_self_tests(struct efx_nic *efx,
382 struct efx_self_tests *tests,
383 struct ethtool_string *strings,
384 u64 *data)
385{
386 struct efx_channel *channel;
Ben Hutchings17967212008-12-26 13:47:25 -0800387 unsigned int n = 0, i;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100388 enum efx_loopback_mode mode;
389
Ben Hutchings4f16c072010-02-03 09:30:50 +0000390 efx_fill_test(n++, strings, data, &tests->phy_alive,
391 "phy", 0, "alive", NULL);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100392 efx_fill_test(n++, strings, data, &tests->nvram,
393 "core", 0, "nvram", NULL);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100394 efx_fill_test(n++, strings, data, &tests->interrupt,
395 "core", 0, "interrupt", NULL);
396
397 /* Event queues */
398 efx_for_each_channel(channel, efx) {
399 efx_fill_test(n++, strings, data,
400 &tests->eventq_dma[channel->channel],
401 EFX_CHANNEL_NAME(channel),
402 "eventq.dma", NULL);
403 efx_fill_test(n++, strings, data,
404 &tests->eventq_int[channel->channel],
405 EFX_CHANNEL_NAME(channel),
406 "eventq.int", NULL);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100407 }
408
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100409 efx_fill_test(n++, strings, data, &tests->registers,
410 "core", 0, "registers", NULL);
Ben Hutchings17967212008-12-26 13:47:25 -0800411
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000412 if (efx->phy_op->run_tests != NULL) {
413 EFX_BUG_ON_PARANOID(efx->phy_op->test_name == NULL);
414
415 for (i = 0; true; ++i) {
416 const char *name;
417
418 EFX_BUG_ON_PARANOID(i >= EFX_MAX_PHY_TESTS);
419 name = efx->phy_op->test_name(efx, i);
420 if (name == NULL)
421 break;
422
Ben Hutchings4f16c072010-02-03 09:30:50 +0000423 efx_fill_test(n++, strings, data, &tests->phy_ext[i],
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000424 "phy", 0, name, NULL);
425 }
426 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100427
428 /* Loopback tests */
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100429 for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100430 if (!(efx->loopback_modes & (1 << mode)))
431 continue;
432 n = efx_fill_loopback_test(efx,
433 &tests->loopback[mode], mode, n,
434 strings, data);
435 }
436
437 return n;
438}
439
Ben Hutchings3594e132008-09-01 12:48:12 +0100440static int efx_ethtool_get_sset_count(struct net_device *net_dev,
441 int string_set)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100442{
Ben Hutchings3594e132008-09-01 12:48:12 +0100443 switch (string_set) {
444 case ETH_SS_STATS:
445 return EFX_ETHTOOL_NUM_STATS;
446 case ETH_SS_TEST:
447 return efx_ethtool_fill_self_tests(netdev_priv(net_dev),
448 NULL, NULL, NULL);
449 default:
450 return -EINVAL;
451 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100452}
453
Ben Hutchings8ceee662008-04-27 12:55:59 +0100454static void efx_ethtool_get_strings(struct net_device *net_dev,
455 u32 string_set, u8 *strings)
456{
Ben Hutchings767e4682008-09-01 12:43:14 +0100457 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100458 struct ethtool_string *ethtool_strings =
459 (struct ethtool_string *)strings;
460 int i;
461
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100462 switch (string_set) {
463 case ETH_SS_STATS:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100464 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++)
465 strncpy(ethtool_strings[i].name,
466 efx_ethtool_stats[i].name,
467 sizeof(ethtool_strings[i].name));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100468 break;
469 case ETH_SS_TEST:
470 efx_ethtool_fill_self_tests(efx, NULL,
471 ethtool_strings, NULL);
472 break;
473 default:
474 /* No other string sets */
475 break;
476 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100477}
478
479static void efx_ethtool_get_stats(struct net_device *net_dev,
480 struct ethtool_stats *stats,
481 u64 *data)
482{
Ben Hutchings767e4682008-09-01 12:43:14 +0100483 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100484 struct efx_mac_stats *mac_stats = &efx->mac_stats;
Ben Hutchings18e83e42012-01-05 19:05:20 +0000485 const struct efx_ethtool_stat *stat;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100486 struct efx_channel *channel;
Ben Hutchings119226c2011-02-18 19:14:13 +0000487 struct efx_tx_queue *tx_queue;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100488 int i;
489
490 EFX_BUG_ON_PARANOID(stats->n_stats != EFX_ETHTOOL_NUM_STATS);
491
Ben Hutchings1cb34522011-09-02 23:23:00 +0100492 spin_lock_bh(&efx->stats_lock);
493
Ben Hutchings8ceee662008-04-27 12:55:59 +0100494 /* Update MAC and NIC statistics */
Ben Hutchings1cb34522011-09-02 23:23:00 +0100495 efx->type->update_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100496
497 /* Fill detailed statistics buffer */
498 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++) {
499 stat = &efx_ethtool_stats[i];
500 switch (stat->source) {
501 case EFX_ETHTOOL_STAT_SOURCE_mac_stats:
502 data[i] = stat->get_stat((void *)mac_stats +
503 stat->offset);
504 break;
505 case EFX_ETHTOOL_STAT_SOURCE_nic:
506 data[i] = stat->get_stat((void *)efx + stat->offset);
507 break;
508 case EFX_ETHTOOL_STAT_SOURCE_channel:
509 data[i] = 0;
510 efx_for_each_channel(channel, efx)
511 data[i] += stat->get_stat((void *)channel +
512 stat->offset);
513 break;
Ben Hutchings119226c2011-02-18 19:14:13 +0000514 case EFX_ETHTOOL_STAT_SOURCE_tx_queue:
515 data[i] = 0;
516 efx_for_each_channel(channel, efx) {
517 efx_for_each_channel_tx_queue(tx_queue, channel)
518 data[i] +=
519 stat->get_stat((void *)tx_queue
520 + stat->offset);
521 }
522 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100523 }
524 }
Ben Hutchings1cb34522011-09-02 23:23:00 +0100525
526 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100527}
528
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100529static void efx_ethtool_self_test(struct net_device *net_dev,
530 struct ethtool_test *test, u64 *data)
531{
Ben Hutchings767e4682008-09-01 12:43:14 +0100532 struct efx_nic *efx = netdev_priv(net_dev);
Eric Dumazet28801f32011-02-16 03:48:38 +0000533 struct efx_self_tests *efx_tests;
Ben Hutchings2ef30682008-12-26 13:47:04 -0800534 int already_up;
Eric Dumazet28801f32011-02-16 03:48:38 +0000535 int rc = -ENOMEM;
536
537 efx_tests = kzalloc(sizeof(*efx_tests), GFP_KERNEL);
538 if (!efx_tests)
539 goto fail;
540
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100541
542 ASSERT_RTNL();
543 if (efx->state != STATE_RUNNING) {
544 rc = -EIO;
545 goto fail1;
546 }
547
Ben Hutchingsac33ac62010-12-07 18:29:52 +0000548 netif_info(efx, drv, efx->net_dev, "starting %sline testing\n",
549 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
550
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100551 /* We need rx buffers and interrupts. */
552 already_up = (efx->net_dev->flags & IFF_UP);
553 if (!already_up) {
554 rc = dev_open(efx->net_dev);
555 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000556 netif_err(efx, drv, efx->net_dev,
557 "failed opening device.\n");
Eric Dumazet28801f32011-02-16 03:48:38 +0000558 goto fail1;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100559 }
560 }
561
Eric Dumazet28801f32011-02-16 03:48:38 +0000562 rc = efx_selftest(efx, efx_tests, test->flags);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100563
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100564 if (!already_up)
565 dev_close(efx->net_dev);
566
Ben Hutchingsac33ac62010-12-07 18:29:52 +0000567 netif_info(efx, drv, efx->net_dev, "%s %sline self-tests\n",
568 rc == 0 ? "passed" : "failed",
569 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100570
Eric Dumazet28801f32011-02-16 03:48:38 +0000571fail1:
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100572 /* Fill ethtool results structures */
Eric Dumazet28801f32011-02-16 03:48:38 +0000573 efx_ethtool_fill_self_tests(efx, efx_tests, NULL, data);
574 kfree(efx_tests);
575fail:
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100576 if (rc)
577 test->flags |= ETH_TEST_FL_FAILED;
578}
579
Ben Hutchings8ceee662008-04-27 12:55:59 +0100580/* Restart autonegotiation */
581static int efx_ethtool_nway_reset(struct net_device *net_dev)
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
Ben Hutchings68e7f452009-04-29 08:05:08 +0000585 return mdio45_nway_restart(&efx->mdio);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100586}
587
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000588/*
589 * Each channel has a single IRQ and moderation timer, started by any
590 * completion (or other event). Unless the module parameter
591 * separate_tx_channels is set, IRQs and moderation are therefore
592 * shared between RX and TX completions. In this case, when RX IRQ
593 * moderation is explicitly changed then TX IRQ moderation is
594 * automatically changed too, but otherwise we fail if the two values
595 * are requested to be different.
596 *
Ben Hutchings13225972011-09-05 07:43:49 +0000597 * The hardware does not support a limit on the number of completions
598 * before an IRQ, so we do not use the max_frames fields. We should
599 * report and require that max_frames == (usecs != 0), but this would
600 * invalidate existing user documentation.
601 *
602 * The hardware does not have distinct settings for interrupt
603 * moderation while the previous IRQ is being handled, so we should
604 * not use the 'irq' fields. However, an earlier developer
605 * misunderstood the meaning of the 'irq' fields and the driver did
606 * not support the standard fields. To avoid invalidating existing
607 * user documentation, we report and accept changes through either the
608 * standard or 'irq' fields. If both are changed at the same time, we
609 * prefer the standard field.
610 *
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000611 * We implement adaptive IRQ moderation, but use a different algorithm
612 * from that assumed in the definition of struct ethtool_coalesce.
613 * Therefore we do not use any of the adaptive moderation parameters
614 * in it.
615 */
616
Ben Hutchings8ceee662008-04-27 12:55:59 +0100617static int efx_ethtool_get_coalesce(struct net_device *net_dev,
618 struct ethtool_coalesce *coalesce)
619{
Ben Hutchings767e4682008-09-01 12:43:14 +0100620 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000621 unsigned int tx_usecs, rx_usecs;
622 bool rx_adaptive;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100623
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000624 efx_get_irq_moderation(efx, &tx_usecs, &rx_usecs, &rx_adaptive);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100625
Ben Hutchings13225972011-09-05 07:43:49 +0000626 coalesce->tx_coalesce_usecs = tx_usecs;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000627 coalesce->tx_coalesce_usecs_irq = tx_usecs;
Ben Hutchings13225972011-09-05 07:43:49 +0000628 coalesce->rx_coalesce_usecs = rx_usecs;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000629 coalesce->rx_coalesce_usecs_irq = rx_usecs;
630 coalesce->use_adaptive_rx_coalesce = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000631
Ben Hutchings8ceee662008-04-27 12:55:59 +0100632 return 0;
633}
634
Ben Hutchings8ceee662008-04-27 12:55:59 +0100635static int efx_ethtool_set_coalesce(struct net_device *net_dev,
636 struct ethtool_coalesce *coalesce)
637{
Ben Hutchings767e4682008-09-01 12:43:14 +0100638 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100639 struct efx_channel *channel;
Ben Hutchingsb548f972011-09-05 07:41:44 +0000640 unsigned int tx_usecs, rx_usecs;
Ben Hutchings9e393b32011-09-05 07:43:04 +0000641 bool adaptive, rx_may_override_tx;
642 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100643
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000644 if (coalesce->use_adaptive_tx_coalesce)
Ben Hutchings9f85ee92011-09-05 07:41:27 +0000645 return -EINVAL;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100646
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000647 efx_get_irq_moderation(efx, &tx_usecs, &rx_usecs, &adaptive);
648
Ben Hutchings13225972011-09-05 07:43:49 +0000649 if (coalesce->rx_coalesce_usecs != rx_usecs)
650 rx_usecs = coalesce->rx_coalesce_usecs;
651 else
652 rx_usecs = coalesce->rx_coalesce_usecs_irq;
653
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000654 adaptive = coalesce->use_adaptive_rx_coalesce;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100655
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000656 /* If channels are shared, TX IRQ moderation can be quietly
657 * overridden unless it is changed from its old value.
658 */
Ben Hutchings13225972011-09-05 07:43:49 +0000659 rx_may_override_tx = (coalesce->tx_coalesce_usecs == tx_usecs &&
660 coalesce->tx_coalesce_usecs_irq == tx_usecs);
661 if (coalesce->tx_coalesce_usecs != tx_usecs)
662 tx_usecs = coalesce->tx_coalesce_usecs;
663 else
664 tx_usecs = coalesce->tx_coalesce_usecs_irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100665
Ben Hutchings9e393b32011-09-05 07:43:04 +0000666 rc = efx_init_irq_moderation(efx, tx_usecs, rx_usecs, adaptive,
667 rx_may_override_tx);
668 if (rc != 0)
669 return rc;
670
Ben Hutchings8ceee662008-04-27 12:55:59 +0100671 efx_for_each_channel(channel, efx)
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000672 efx->type->push_irq_moderation(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100673
674 return 0;
675}
676
Ben Hutchings46426102010-09-10 06:42:33 +0000677static void efx_ethtool_get_ringparam(struct net_device *net_dev,
678 struct ethtool_ringparam *ring)
679{
680 struct efx_nic *efx = netdev_priv(net_dev);
681
682 ring->rx_max_pending = EFX_MAX_DMAQ_SIZE;
683 ring->tx_max_pending = EFX_MAX_DMAQ_SIZE;
Ben Hutchings46426102010-09-10 06:42:33 +0000684 ring->rx_pending = efx->rxq_entries;
685 ring->tx_pending = efx->txq_entries;
Ben Hutchings46426102010-09-10 06:42:33 +0000686}
687
688static int efx_ethtool_set_ringparam(struct net_device *net_dev,
689 struct ethtool_ringparam *ring)
690{
691 struct efx_nic *efx = netdev_priv(net_dev);
692
693 if (ring->rx_mini_pending || ring->rx_jumbo_pending ||
694 ring->rx_pending > EFX_MAX_DMAQ_SIZE ||
695 ring->tx_pending > EFX_MAX_DMAQ_SIZE)
696 return -EINVAL;
697
698 if (ring->rx_pending < EFX_MIN_RING_SIZE ||
699 ring->tx_pending < EFX_MIN_RING_SIZE) {
700 netif_err(efx, drv, efx->net_dev,
701 "TX and RX queues cannot be smaller than %ld\n",
702 EFX_MIN_RING_SIZE);
703 return -EINVAL;
704 }
705
706 return efx_realloc_channels(efx, ring->rx_pending, ring->tx_pending);
707}
708
Ben Hutchings8ceee662008-04-27 12:55:59 +0100709static int efx_ethtool_set_pauseparam(struct net_device *net_dev,
710 struct ethtool_pauseparam *pause)
711{
Ben Hutchings767e4682008-09-01 12:43:14 +0100712 struct efx_nic *efx = netdev_priv(net_dev);
David S. Millerb56269462011-05-17 17:53:22 -0400713 u8 wanted_fc, old_fc;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000714 u32 old_adv;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800715 bool reset;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000716 int rc = 0;
717
718 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100719
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800720 wanted_fc = ((pause->rx_pause ? EFX_FC_RX : 0) |
721 (pause->tx_pause ? EFX_FC_TX : 0) |
722 (pause->autoneg ? EFX_FC_AUTO : 0));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100723
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800724 if ((wanted_fc & EFX_FC_TX) && !(wanted_fc & EFX_FC_RX)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000725 netif_dbg(efx, drv, efx->net_dev,
726 "Flow control unsupported: tx ON rx OFF\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000727 rc = -EINVAL;
728 goto out;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800729 }
730
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000731 if ((wanted_fc & EFX_FC_AUTO) && !efx->link_advertising) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000732 netif_dbg(efx, drv, efx->net_dev,
733 "Autonegotiation is disabled\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000734 rc = -EINVAL;
735 goto out;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800736 }
737
738 /* TX flow control may automatically turn itself off if the
739 * link partner (intermittently) stops responding to pause
740 * frames. There isn't any indication that this has happened,
741 * so the best we do is leave it up to the user to spot this
742 * and fix it be cycling transmit flow control on this end. */
743 reset = (wanted_fc & EFX_FC_TX) && !(efx->wanted_fc & EFX_FC_TX);
744 if (EFX_WORKAROUND_11482(efx) && reset) {
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000745 if (efx_nic_rev(efx) == EFX_REV_FALCON_B0) {
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800746 /* Recover by resetting the EM block */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000747 falcon_stop_nic_stats(efx);
748 falcon_drain_tx_fifo(efx);
Ben Hutchings710b2082011-09-03 00:15:00 +0100749 falcon_reconfigure_xmac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000750 falcon_start_nic_stats(efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800751 } else {
752 /* Schedule a reset to recover */
753 efx_schedule_reset(efx, RESET_TYPE_INVISIBLE);
754 }
755 }
756
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000757 old_adv = efx->link_advertising;
758 old_fc = efx->wanted_fc;
759 efx_link_set_wanted_fc(efx, wanted_fc);
760 if (efx->link_advertising != old_adv ||
761 (efx->wanted_fc ^ old_fc) & EFX_FC_AUTO) {
762 rc = efx->phy_op->reconfigure(efx);
763 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000764 netif_err(efx, drv, efx->net_dev,
765 "Unable to advertise requested flow "
766 "control setting\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000767 goto out;
768 }
769 }
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800770
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000771 /* Reconfigure the MAC. The PHY *may* generate a link state change event
772 * if the user just changed the advertised capabilities, but there's no
773 * harm doing this twice */
Ben Hutchings710b2082011-09-03 00:15:00 +0100774 efx->type->reconfigure_mac(efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800775
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000776out:
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800777 mutex_unlock(&efx->mac_lock);
778
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000779 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100780}
781
782static void efx_ethtool_get_pauseparam(struct net_device *net_dev,
783 struct ethtool_pauseparam *pause)
784{
Ben Hutchings767e4682008-09-01 12:43:14 +0100785 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100786
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800787 pause->rx_pause = !!(efx->wanted_fc & EFX_FC_RX);
788 pause->tx_pause = !!(efx->wanted_fc & EFX_FC_TX);
789 pause->autoneg = !!(efx->wanted_fc & EFX_FC_AUTO);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100790}
791
792
Ben Hutchings89c758f2009-11-29 03:43:07 +0000793static void efx_ethtool_get_wol(struct net_device *net_dev,
794 struct ethtool_wolinfo *wol)
795{
796 struct efx_nic *efx = netdev_priv(net_dev);
797 return efx->type->get_wol(efx, wol);
798}
799
800
801static int efx_ethtool_set_wol(struct net_device *net_dev,
802 struct ethtool_wolinfo *wol)
803{
804 struct efx_nic *efx = netdev_priv(net_dev);
805 return efx->type->set_wol(efx, wol->wolopts);
806}
807
stephen hemmingerd2156972010-10-18 05:27:31 +0000808static int efx_ethtool_reset(struct net_device *net_dev, u32 *flags)
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000809{
810 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100811 int rc;
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000812
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100813 rc = efx->type->map_reset_flags(flags);
814 if (rc < 0)
815 return rc;
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000816
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100817 return efx_reset(efx, rc);
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000818}
819
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000820static int efx_ethtool_get_class_rule(struct efx_nic *efx,
821 struct ethtool_rx_flow_spec *rule)
822{
823 struct ethtool_tcpip4_spec *ip_entry = &rule->h_u.tcp_ip4_spec;
824 struct ethtool_tcpip4_spec *ip_mask = &rule->m_u.tcp_ip4_spec;
825 struct efx_filter_spec spec;
826 u16 vid;
827 u8 proto;
828 int rc;
829
830 rc = efx_filter_get_filter_safe(efx, EFX_FILTER_PRI_MANUAL,
831 rule->location, &spec);
832 if (rc)
833 return rc;
834
835 if (spec.dmaq_id == 0xfff)
836 rule->ring_cookie = RX_CLS_FLOW_DISC;
837 else
838 rule->ring_cookie = spec.dmaq_id;
839
840 rc = efx_filter_get_eth_local(&spec, &vid,
841 rule->h_u.ether_spec.h_dest);
842 if (rc == 0) {
843 rule->flow_type = ETHER_FLOW;
844 memset(rule->m_u.ether_spec.h_dest, ~0, ETH_ALEN);
845 if (vid != EFX_FILTER_VID_UNSPEC) {
846 rule->flow_type |= FLOW_EXT;
847 rule->h_ext.vlan_tci = htons(vid);
848 rule->m_ext.vlan_tci = htons(0xfff);
849 }
850 return 0;
851 }
852
853 rc = efx_filter_get_ipv4_local(&spec, &proto,
854 &ip_entry->ip4dst, &ip_entry->pdst);
855 if (rc != 0) {
856 rc = efx_filter_get_ipv4_full(
857 &spec, &proto, &ip_entry->ip4src, &ip_entry->psrc,
858 &ip_entry->ip4dst, &ip_entry->pdst);
859 EFX_WARN_ON_PARANOID(rc);
860 ip_mask->ip4src = ~0;
861 ip_mask->psrc = ~0;
862 }
863 rule->flow_type = (proto == IPPROTO_TCP) ? TCP_V4_FLOW : UDP_V4_FLOW;
864 ip_mask->ip4dst = ~0;
865 ip_mask->pdst = ~0;
866 return rc;
867}
868
Ben Hutchings765c9f42010-06-30 05:06:28 +0000869static int
870efx_ethtool_get_rxnfc(struct net_device *net_dev,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000871 struct ethtool_rxnfc *info, u32 *rule_locs)
Ben Hutchings765c9f42010-06-30 05:06:28 +0000872{
873 struct efx_nic *efx = netdev_priv(net_dev);
874
875 switch (info->cmd) {
876 case ETHTOOL_GRXRINGS:
877 info->data = efx->n_rx_channels;
878 return 0;
879
880 case ETHTOOL_GRXFH: {
881 unsigned min_revision = 0;
882
883 info->data = 0;
884 switch (info->flow_type) {
885 case TCP_V4_FLOW:
886 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
887 /* fall through */
888 case UDP_V4_FLOW:
889 case SCTP_V4_FLOW:
890 case AH_ESP_V4_FLOW:
891 case IPV4_FLOW:
892 info->data |= RXH_IP_SRC | RXH_IP_DST;
893 min_revision = EFX_REV_FALCON_B0;
894 break;
895 case TCP_V6_FLOW:
896 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
897 /* fall through */
898 case UDP_V6_FLOW:
899 case SCTP_V6_FLOW:
900 case AH_ESP_V6_FLOW:
901 case IPV6_FLOW:
902 info->data |= RXH_IP_SRC | RXH_IP_DST;
903 min_revision = EFX_REV_SIENA_A0;
904 break;
905 default:
906 break;
907 }
908 if (efx_nic_rev(efx) < min_revision)
909 info->data = 0;
910 return 0;
911 }
912
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000913 case ETHTOOL_GRXCLSRLCNT:
914 info->data = efx_filter_get_rx_id_limit(efx);
915 if (info->data == 0)
916 return -EOPNOTSUPP;
917 info->data |= RX_CLS_LOC_SPECIAL;
918 info->rule_cnt =
919 efx_filter_count_rx_used(efx, EFX_FILTER_PRI_MANUAL);
920 return 0;
921
922 case ETHTOOL_GRXCLSRULE:
923 if (efx_filter_get_rx_id_limit(efx) == 0)
924 return -EOPNOTSUPP;
925 return efx_ethtool_get_class_rule(efx, &info->fs);
926
927 case ETHTOOL_GRXCLSRLALL: {
928 s32 rc;
929 info->data = efx_filter_get_rx_id_limit(efx);
930 if (info->data == 0)
931 return -EOPNOTSUPP;
932 rc = efx_filter_get_rx_ids(efx, EFX_FILTER_PRI_MANUAL,
933 rule_locs, info->rule_cnt);
934 if (rc < 0)
935 return rc;
936 info->rule_cnt = rc;
937 return 0;
938 }
939
Ben Hutchings765c9f42010-06-30 05:06:28 +0000940 default:
941 return -EOPNOTSUPP;
942 }
943}
944
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000945static int efx_ethtool_set_class_rule(struct efx_nic *efx,
946 struct ethtool_rx_flow_spec *rule)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000947{
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000948 struct ethtool_tcpip4_spec *ip_entry = &rule->h_u.tcp_ip4_spec;
949 struct ethtool_tcpip4_spec *ip_mask = &rule->m_u.tcp_ip4_spec;
950 struct ethhdr *mac_entry = &rule->h_u.ether_spec;
951 struct ethhdr *mac_mask = &rule->m_u.ether_spec;
952 struct efx_filter_spec spec;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000953 int rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000954
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000955 /* Check that user wants us to choose the location */
956 if (rule->location != RX_CLS_LOC_ANY &&
957 rule->location != RX_CLS_LOC_FIRST &&
958 rule->location != RX_CLS_LOC_LAST)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000959 return -EINVAL;
960
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000961 /* Range-check ring_cookie */
962 if (rule->ring_cookie >= efx->n_rx_channels &&
963 rule->ring_cookie != RX_CLS_FLOW_DISC)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000964 return -EINVAL;
965
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000966 /* Check for unsupported extensions */
967 if ((rule->flow_type & FLOW_EXT) &&
968 (rule->m_ext.vlan_etype | rule->m_ext.data[0] |
969 rule->m_ext.data[1]))
970 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000971
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000972 efx_filter_init_rx(&spec, EFX_FILTER_PRI_MANUAL,
973 (rule->location == RX_CLS_LOC_FIRST) ?
974 EFX_FILTER_FLAG_RX_OVERRIDE_IP : 0,
975 (rule->ring_cookie == RX_CLS_FLOW_DISC) ?
976 0xfff : rule->ring_cookie);
977
978 switch (rule->flow_type) {
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000979 case TCP_V4_FLOW:
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000980 case UDP_V4_FLOW: {
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000981 u8 proto = (rule->flow_type == TCP_V4_FLOW ?
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000982 IPPROTO_TCP : IPPROTO_UDP);
983
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000984 /* Must match all of destination, */
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000985 if ((__force u32)~ip_mask->ip4dst |
986 (__force u16)~ip_mask->pdst)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000987 return -EINVAL;
988 /* all or none of source, */
989 if ((ip_mask->ip4src | ip_mask->psrc) &&
990 ((__force u32)~ip_mask->ip4src |
991 (__force u16)~ip_mask->psrc))
992 return -EINVAL;
993 /* and nothing else */
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000994 if (ip_mask->tos | rule->m_ext.vlan_tci)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000995 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000996
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000997 if (ip_mask->ip4src)
998 rc = efx_filter_set_ipv4_full(&spec, proto,
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000999 ip_entry->ip4dst,
1000 ip_entry->pdst,
1001 ip_entry->ip4src,
1002 ip_entry->psrc);
1003 else
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001004 rc = efx_filter_set_ipv4_local(&spec, proto,
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001005 ip_entry->ip4dst,
1006 ip_entry->pdst);
1007 if (rc)
1008 return rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001009 break;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001010 }
1011
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001012 case ETHER_FLOW | FLOW_EXT:
1013 /* Must match all or none of VID */
1014 if (rule->m_ext.vlan_tci != htons(0xfff) &&
1015 rule->m_ext.vlan_tci != 0)
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001016 return -EINVAL;
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001017 case ETHER_FLOW:
1018 /* Must match all of destination */
1019 if (!is_broadcast_ether_addr(mac_mask->h_dest))
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001020 return -EINVAL;
1021 /* and nothing else */
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001022 if (!is_zero_ether_addr(mac_mask->h_source) ||
1023 mac_mask->h_proto)
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001024 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001025
1026 rc = efx_filter_set_eth_local(
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001027 &spec,
1028 (rule->flow_type & FLOW_EXT && rule->m_ext.vlan_tci) ?
1029 ntohs(rule->h_ext.vlan_tci) : EFX_FILTER_VID_UNSPEC,
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001030 mac_entry->h_dest);
1031 if (rc)
1032 return rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001033 break;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001034
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001035 default:
1036 return -EINVAL;
1037 }
1038
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001039 rc = efx_filter_insert_filter(efx, &spec, true);
1040 if (rc < 0)
1041 return rc;
Ben Hutchings47a84672011-05-14 02:35:25 +01001042
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001043 rule->location = rc;
1044 return 0;
1045}
1046
1047static int efx_ethtool_set_rxnfc(struct net_device *net_dev,
1048 struct ethtool_rxnfc *info)
1049{
1050 struct efx_nic *efx = netdev_priv(net_dev);
1051
1052 if (efx_filter_get_rx_id_limit(efx) == 0)
1053 return -EOPNOTSUPP;
1054
1055 switch (info->cmd) {
1056 case ETHTOOL_SRXCLSRLINS:
1057 return efx_ethtool_set_class_rule(efx, &info->fs);
1058
1059 case ETHTOOL_SRXCLSRLDEL:
1060 return efx_filter_remove_id_safe(efx, EFX_FILTER_PRI_MANUAL,
1061 info->fs.location);
1062
1063 default:
1064 return -EOPNOTSUPP;
1065 }
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001066}
1067
Ben Hutchings7850f632011-12-15 13:55:01 +00001068static u32 efx_ethtool_get_rxfh_indir_size(struct net_device *net_dev)
Ben Hutchings765c9f42010-06-30 05:06:28 +00001069{
1070 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings765c9f42010-06-30 05:06:28 +00001071
Ben Hutchings7850f632011-12-15 13:55:01 +00001072 return (efx_nic_rev(efx) < EFX_REV_FALCON_B0 ?
1073 0 : ARRAY_SIZE(efx->rx_indir_table));
1074}
Ben Hutchings765c9f42010-06-30 05:06:28 +00001075
Ben Hutchings7850f632011-12-15 13:55:01 +00001076static int efx_ethtool_get_rxfh_indir(struct net_device *net_dev, u32 *indir)
1077{
1078 struct efx_nic *efx = netdev_priv(net_dev);
1079
1080 memcpy(indir, efx->rx_indir_table, sizeof(efx->rx_indir_table));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001081 return 0;
1082}
1083
1084static int efx_ethtool_set_rxfh_indir(struct net_device *net_dev,
Ben Hutchings7850f632011-12-15 13:55:01 +00001085 const u32 *indir)
Ben Hutchings765c9f42010-06-30 05:06:28 +00001086{
1087 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings765c9f42010-06-30 05:06:28 +00001088
Ben Hutchings7850f632011-12-15 13:55:01 +00001089 memcpy(efx->rx_indir_table, indir, sizeof(efx->rx_indir_table));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001090 efx_nic_push_rx_indir_table(efx);
1091 return 0;
1092}
1093
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001094const struct ethtool_ops efx_ethtool_ops = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001095 .get_settings = efx_ethtool_get_settings,
1096 .set_settings = efx_ethtool_set_settings,
1097 .get_drvinfo = efx_ethtool_get_drvinfo,
Ben Hutchings5b98c1b2010-06-21 03:06:53 +00001098 .get_regs_len = efx_ethtool_get_regs_len,
1099 .get_regs = efx_ethtool_get_regs,
Ben Hutchings62776d02010-06-23 11:30:07 +00001100 .get_msglevel = efx_ethtool_get_msglevel,
1101 .set_msglevel = efx_ethtool_set_msglevel,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001102 .nway_reset = efx_ethtool_nway_reset,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +00001103 .get_link = ethtool_op_get_link,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001104 .get_coalesce = efx_ethtool_get_coalesce,
1105 .set_coalesce = efx_ethtool_set_coalesce,
Ben Hutchings46426102010-09-10 06:42:33 +00001106 .get_ringparam = efx_ethtool_get_ringparam,
1107 .set_ringparam = efx_ethtool_set_ringparam,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001108 .get_pauseparam = efx_ethtool_get_pauseparam,
1109 .set_pauseparam = efx_ethtool_set_pauseparam,
Ben Hutchings3594e132008-09-01 12:48:12 +01001110 .get_sset_count = efx_ethtool_get_sset_count,
Ben Hutchings3273c2e2008-05-07 13:36:19 +01001111 .self_test = efx_ethtool_self_test,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001112 .get_strings = efx_ethtool_get_strings,
Ben Hutchingsc5e129a2011-04-02 00:43:46 +01001113 .set_phys_id = efx_ethtool_phys_id,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001114 .get_ethtool_stats = efx_ethtool_get_stats,
Ben Hutchings89c758f2009-11-29 03:43:07 +00001115 .get_wol = efx_ethtool_get_wol,
1116 .set_wol = efx_ethtool_set_wol,
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001117 .reset = efx_ethtool_reset,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001118 .get_rxnfc = efx_ethtool_get_rxnfc,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001119 .set_rxnfc = efx_ethtool_set_rxnfc,
Ben Hutchings7850f632011-12-15 13:55:01 +00001120 .get_rxfh_indir_size = efx_ethtool_get_rxfh_indir_size,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001121 .get_rxfh_indir = efx_ethtool_get_rxfh_indir,
1122 .set_rxfh_indir = efx_ethtool_set_rxfh_indir,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001123};