blob: 90f078eff8e60d86b491763c7a2b40edf7012052 [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchings0a6f40c2011-02-25 00:01:34 +00004 * Copyright 2006-2010 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#include <linux/netdevice.h>
12#include <linux/ethtool.h>
13#include <linux/rtnetlink.h>
Ben Hutchingsc39d35e2010-12-07 19:11:26 +000014#include <linux/in.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010015#include "net_driver.h"
Ben Hutchings04cc8ca2008-12-12 21:50:46 -080016#include "workarounds.h"
Ben Hutchings3273c2e2008-05-07 13:36:19 +010017#include "selftest.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010018#include "efx.h"
Ben Hutchingsb4187e42010-09-20 08:43:42 +000019#include "filter.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000020#include "nic.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010021
Ben Hutchings8ceee662008-04-27 12:55:59 +010022struct ethtool_string {
23 char name[ETH_GSTRING_LEN];
24};
25
26struct efx_ethtool_stat {
27 const char *name;
28 enum {
29 EFX_ETHTOOL_STAT_SOURCE_mac_stats,
30 EFX_ETHTOOL_STAT_SOURCE_nic,
Ben Hutchings119226c2011-02-18 19:14:13 +000031 EFX_ETHTOOL_STAT_SOURCE_channel,
32 EFX_ETHTOOL_STAT_SOURCE_tx_queue
Ben Hutchings8ceee662008-04-27 12:55:59 +010033 } source;
34 unsigned offset;
35 u64(*get_stat) (void *field); /* Reader function */
36};
37
38/* Initialiser for a struct #efx_ethtool_stat with type-checking */
39#define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \
40 get_stat_function) { \
41 .name = #stat_name, \
42 .source = EFX_ETHTOOL_STAT_SOURCE_##source_name, \
43 .offset = ((((field_type *) 0) == \
44 &((struct efx_##source_name *)0)->field) ? \
45 offsetof(struct efx_##source_name, field) : \
46 offsetof(struct efx_##source_name, field)), \
47 .get_stat = get_stat_function, \
48}
49
50static u64 efx_get_uint_stat(void *field)
51{
52 return *(unsigned int *)field;
53}
54
Ben Hutchings8ceee662008-04-27 12:55:59 +010055static u64 efx_get_u64_stat(void *field)
56{
57 return *(u64 *) field;
58}
59
60static u64 efx_get_atomic_stat(void *field)
61{
62 return atomic_read((atomic_t *) field);
63}
64
Ben Hutchings8ceee662008-04-27 12:55:59 +010065#define EFX_ETHTOOL_U64_MAC_STAT(field) \
Ben Hutchings9c636ba2012-01-05 17:19:45 +000066 EFX_ETHTOOL_STAT(field, mac_stats, field, \
Ben Hutchings8ceee662008-04-27 12:55:59 +010067 u64, efx_get_u64_stat)
68
69#define EFX_ETHTOOL_UINT_NIC_STAT(name) \
70 EFX_ETHTOOL_STAT(name, nic, n_##name, \
71 unsigned int, efx_get_uint_stat)
72
73#define EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(field) \
74 EFX_ETHTOOL_STAT(field, nic, field, \
75 atomic_t, efx_get_atomic_stat)
76
77#define EFX_ETHTOOL_UINT_CHANNEL_STAT(field) \
78 EFX_ETHTOOL_STAT(field, channel, n_##field, \
79 unsigned int, efx_get_uint_stat)
80
Ben Hutchings119226c2011-02-18 19:14:13 +000081#define EFX_ETHTOOL_UINT_TXQ_STAT(field) \
82 EFX_ETHTOOL_STAT(tx_##field, tx_queue, field, \
83 unsigned int, efx_get_uint_stat)
84
Ben Hutchings18e83e42012-01-05 19:05:20 +000085static const struct efx_ethtool_stat efx_ethtool_stats[] = {
Ben Hutchings8ceee662008-04-27 12:55:59 +010086 EFX_ETHTOOL_U64_MAC_STAT(tx_bytes),
87 EFX_ETHTOOL_U64_MAC_STAT(tx_good_bytes),
88 EFX_ETHTOOL_U64_MAC_STAT(tx_bad_bytes),
Ben Hutchingsf9c76252011-10-12 17:20:25 +010089 EFX_ETHTOOL_U64_MAC_STAT(tx_packets),
90 EFX_ETHTOOL_U64_MAC_STAT(tx_bad),
91 EFX_ETHTOOL_U64_MAC_STAT(tx_pause),
92 EFX_ETHTOOL_U64_MAC_STAT(tx_control),
93 EFX_ETHTOOL_U64_MAC_STAT(tx_unicast),
94 EFX_ETHTOOL_U64_MAC_STAT(tx_multicast),
95 EFX_ETHTOOL_U64_MAC_STAT(tx_broadcast),
96 EFX_ETHTOOL_U64_MAC_STAT(tx_lt64),
97 EFX_ETHTOOL_U64_MAC_STAT(tx_64),
98 EFX_ETHTOOL_U64_MAC_STAT(tx_65_to_127),
99 EFX_ETHTOOL_U64_MAC_STAT(tx_128_to_255),
100 EFX_ETHTOOL_U64_MAC_STAT(tx_256_to_511),
101 EFX_ETHTOOL_U64_MAC_STAT(tx_512_to_1023),
102 EFX_ETHTOOL_U64_MAC_STAT(tx_1024_to_15xx),
103 EFX_ETHTOOL_U64_MAC_STAT(tx_15xx_to_jumbo),
104 EFX_ETHTOOL_U64_MAC_STAT(tx_gtjumbo),
105 EFX_ETHTOOL_U64_MAC_STAT(tx_collision),
106 EFX_ETHTOOL_U64_MAC_STAT(tx_single_collision),
107 EFX_ETHTOOL_U64_MAC_STAT(tx_multiple_collision),
108 EFX_ETHTOOL_U64_MAC_STAT(tx_excessive_collision),
109 EFX_ETHTOOL_U64_MAC_STAT(tx_deferred),
110 EFX_ETHTOOL_U64_MAC_STAT(tx_late_collision),
111 EFX_ETHTOOL_U64_MAC_STAT(tx_excessive_deferred),
112 EFX_ETHTOOL_U64_MAC_STAT(tx_non_tcpudp),
113 EFX_ETHTOOL_U64_MAC_STAT(tx_mac_src_error),
114 EFX_ETHTOOL_U64_MAC_STAT(tx_ip_src_error),
Ben Hutchings119226c2011-02-18 19:14:13 +0000115 EFX_ETHTOOL_UINT_TXQ_STAT(tso_bursts),
116 EFX_ETHTOOL_UINT_TXQ_STAT(tso_long_headers),
117 EFX_ETHTOOL_UINT_TXQ_STAT(tso_packets),
118 EFX_ETHTOOL_UINT_TXQ_STAT(pushes),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100119 EFX_ETHTOOL_U64_MAC_STAT(rx_bytes),
120 EFX_ETHTOOL_U64_MAC_STAT(rx_good_bytes),
121 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_bytes),
Ben Hutchingsf9c76252011-10-12 17:20:25 +0100122 EFX_ETHTOOL_U64_MAC_STAT(rx_packets),
123 EFX_ETHTOOL_U64_MAC_STAT(rx_good),
124 EFX_ETHTOOL_U64_MAC_STAT(rx_bad),
125 EFX_ETHTOOL_U64_MAC_STAT(rx_pause),
126 EFX_ETHTOOL_U64_MAC_STAT(rx_control),
127 EFX_ETHTOOL_U64_MAC_STAT(rx_unicast),
128 EFX_ETHTOOL_U64_MAC_STAT(rx_multicast),
129 EFX_ETHTOOL_U64_MAC_STAT(rx_broadcast),
130 EFX_ETHTOOL_U64_MAC_STAT(rx_lt64),
131 EFX_ETHTOOL_U64_MAC_STAT(rx_64),
132 EFX_ETHTOOL_U64_MAC_STAT(rx_65_to_127),
133 EFX_ETHTOOL_U64_MAC_STAT(rx_128_to_255),
134 EFX_ETHTOOL_U64_MAC_STAT(rx_256_to_511),
135 EFX_ETHTOOL_U64_MAC_STAT(rx_512_to_1023),
136 EFX_ETHTOOL_U64_MAC_STAT(rx_1024_to_15xx),
137 EFX_ETHTOOL_U64_MAC_STAT(rx_15xx_to_jumbo),
138 EFX_ETHTOOL_U64_MAC_STAT(rx_gtjumbo),
139 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_lt64),
140 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_64_to_15xx),
141 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_15xx_to_jumbo),
142 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_gtjumbo),
143 EFX_ETHTOOL_U64_MAC_STAT(rx_overflow),
144 EFX_ETHTOOL_U64_MAC_STAT(rx_missed),
145 EFX_ETHTOOL_U64_MAC_STAT(rx_false_carrier),
146 EFX_ETHTOOL_U64_MAC_STAT(rx_symbol_error),
147 EFX_ETHTOOL_U64_MAC_STAT(rx_align_error),
148 EFX_ETHTOOL_U64_MAC_STAT(rx_length_error),
149 EFX_ETHTOOL_U64_MAC_STAT(rx_internal_error),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100150 EFX_ETHTOOL_UINT_NIC_STAT(rx_nodesc_drop_cnt),
151 EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(rx_reset),
152 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tobe_disc),
153 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_ip_hdr_chksum_err),
154 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tcp_udp_chksum_err),
Ben Hutchingsc1ac4032009-11-28 05:36:29 +0000155 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_mcast_mismatch),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100156 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_frm_trunc),
157};
158
159/* Number of ethtool statistics */
160#define EFX_ETHTOOL_NUM_STATS ARRAY_SIZE(efx_ethtool_stats)
161
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100162#define EFX_ETHTOOL_EEPROM_MAGIC 0xEFAB
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100163
Ben Hutchings8ceee662008-04-27 12:55:59 +0100164/**************************************************************************
165 *
166 * Ethtool operations
167 *
168 **************************************************************************
169 */
170
171/* Identify device by flashing LEDs */
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100172static int efx_ethtool_phys_id(struct net_device *net_dev,
173 enum ethtool_phys_id_state state)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100174{
Ben Hutchings767e4682008-09-01 12:43:14 +0100175 struct efx_nic *efx = netdev_priv(net_dev);
Allan, Bruce Wfce55922011-04-13 13:09:10 +0000176 enum efx_led_mode mode = EFX_LED_DEFAULT;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100177
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100178 switch (state) {
179 case ETHTOOL_ID_ON:
180 mode = EFX_LED_ON;
181 break;
182 case ETHTOOL_ID_OFF:
183 mode = EFX_LED_OFF;
184 break;
185 case ETHTOOL_ID_INACTIVE:
186 mode = EFX_LED_DEFAULT;
187 break;
Allan, Bruce Wfce55922011-04-13 13:09:10 +0000188 case ETHTOOL_ID_ACTIVE:
189 return 1; /* cycle on/off once per second */
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100190 }
Ben Hutchings398468e2009-11-23 16:03:45 +0000191
Ben Hutchingsc5e129a2011-04-02 00:43:46 +0100192 efx->type->set_id_led(efx, mode);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100193 return 0;
194}
195
196/* This must be called with rtnl_lock held. */
stephen hemmingerd2156972010-10-18 05:27:31 +0000197static int efx_ethtool_get_settings(struct net_device *net_dev,
198 struct ethtool_cmd *ecmd)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100199{
Ben Hutchings767e4682008-09-01 12:43:14 +0100200 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000201 struct efx_link_state *link_state = &efx->link_state;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100202
203 mutex_lock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800204 efx->phy_op->get_settings(efx, ecmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100205 mutex_unlock(&efx->mac_lock);
206
Ben Hutchings754c6532010-02-03 09:31:57 +0000207 /* GMAC does not support 1000Mbps HD */
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800208 ecmd->supported &= ~SUPPORTED_1000baseT_Half;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000209 /* Both MACs support pause frames (bidirectional and respond-only) */
210 ecmd->supported |= SUPPORTED_Pause | SUPPORTED_Asym_Pause;
211
212 if (LOOPBACK_INTERNAL(efx)) {
David Decotigny70739492011-04-27 18:32:40 +0000213 ethtool_cmd_speed_set(ecmd, link_state->speed);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000214 ecmd->duplex = link_state->fd ? DUPLEX_FULL : DUPLEX_HALF;
215 }
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800216
217 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100218}
219
220/* This must be called with rtnl_lock held. */
stephen hemmingerd2156972010-10-18 05:27:31 +0000221static int efx_ethtool_set_settings(struct net_device *net_dev,
222 struct ethtool_cmd *ecmd)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100223{
Ben Hutchings767e4682008-09-01 12:43:14 +0100224 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100225 int rc;
226
Ben Hutchings754c6532010-02-03 09:31:57 +0000227 /* GMAC does not support 1000Mbps HD */
David Decotigny25db0332011-04-27 18:32:39 +0000228 if ((ethtool_cmd_speed(ecmd) == SPEED_1000) &&
229 (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 Hutchings1ac02262012-09-13 02:22:52 +0100340 struct efx_channel *channel =
341 efx_get_channel(efx, efx->tx_channel_offset);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100342 struct efx_tx_queue *tx_queue;
343
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000344 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100345 efx_fill_test(test_index++, strings, data,
346 &lb_tests->tx_sent[tx_queue->queue],
347 EFX_TX_QUEUE_NAME(tx_queue),
348 EFX_LOOPBACK_NAME(mode, "tx_sent"));
349 efx_fill_test(test_index++, strings, data,
350 &lb_tests->tx_done[tx_queue->queue],
351 EFX_TX_QUEUE_NAME(tx_queue),
352 EFX_LOOPBACK_NAME(mode, "tx_done"));
353 }
354 efx_fill_test(test_index++, strings, data,
355 &lb_tests->rx_good,
Ben Hutchings11e66962008-12-12 22:05:48 -0800356 "rx", 0,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100357 EFX_LOOPBACK_NAME(mode, "rx_good"));
358 efx_fill_test(test_index++, strings, data,
359 &lb_tests->rx_bad,
Ben Hutchings11e66962008-12-12 22:05:48 -0800360 "rx", 0,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100361 EFX_LOOPBACK_NAME(mode, "rx_bad"));
362
363 return test_index;
364}
365
366/**
367 * efx_ethtool_fill_self_tests - get self-test details
368 * @efx: Efx NIC
369 * @tests: Efx self-test results structure, or %NULL
370 * @strings: Ethtool strings, or %NULL
371 * @data: Ethtool test results, or %NULL
372 */
373static int efx_ethtool_fill_self_tests(struct efx_nic *efx,
374 struct efx_self_tests *tests,
375 struct ethtool_string *strings,
376 u64 *data)
377{
378 struct efx_channel *channel;
Ben Hutchings17967212008-12-26 13:47:25 -0800379 unsigned int n = 0, i;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100380 enum efx_loopback_mode mode;
381
Ben Hutchings4f16c072010-02-03 09:30:50 +0000382 efx_fill_test(n++, strings, data, &tests->phy_alive,
383 "phy", 0, "alive", NULL);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100384 efx_fill_test(n++, strings, data, &tests->nvram,
385 "core", 0, "nvram", NULL);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100386 efx_fill_test(n++, strings, data, &tests->interrupt,
387 "core", 0, "interrupt", NULL);
388
389 /* Event queues */
390 efx_for_each_channel(channel, efx) {
391 efx_fill_test(n++, strings, data,
392 &tests->eventq_dma[channel->channel],
393 EFX_CHANNEL_NAME(channel),
394 "eventq.dma", NULL);
395 efx_fill_test(n++, strings, data,
396 &tests->eventq_int[channel->channel],
397 EFX_CHANNEL_NAME(channel),
398 "eventq.int", NULL);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100399 }
400
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100401 efx_fill_test(n++, strings, data, &tests->registers,
402 "core", 0, "registers", NULL);
Ben Hutchings17967212008-12-26 13:47:25 -0800403
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000404 if (efx->phy_op->run_tests != NULL) {
405 EFX_BUG_ON_PARANOID(efx->phy_op->test_name == NULL);
406
407 for (i = 0; true; ++i) {
408 const char *name;
409
410 EFX_BUG_ON_PARANOID(i >= EFX_MAX_PHY_TESTS);
411 name = efx->phy_op->test_name(efx, i);
412 if (name == NULL)
413 break;
414
Ben Hutchings4f16c072010-02-03 09:30:50 +0000415 efx_fill_test(n++, strings, data, &tests->phy_ext[i],
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000416 "phy", 0, name, NULL);
417 }
418 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100419
420 /* Loopback tests */
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100421 for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100422 if (!(efx->loopback_modes & (1 << mode)))
423 continue;
424 n = efx_fill_loopback_test(efx,
425 &tests->loopback[mode], mode, n,
426 strings, data);
427 }
428
429 return n;
430}
431
Ben Hutchings3594e132008-09-01 12:48:12 +0100432static int efx_ethtool_get_sset_count(struct net_device *net_dev,
433 int string_set)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100434{
Ben Hutchings3594e132008-09-01 12:48:12 +0100435 switch (string_set) {
436 case ETH_SS_STATS:
437 return EFX_ETHTOOL_NUM_STATS;
438 case ETH_SS_TEST:
439 return efx_ethtool_fill_self_tests(netdev_priv(net_dev),
440 NULL, NULL, NULL);
441 default:
442 return -EINVAL;
443 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100444}
445
Ben Hutchings8ceee662008-04-27 12:55:59 +0100446static void efx_ethtool_get_strings(struct net_device *net_dev,
447 u32 string_set, u8 *strings)
448{
Ben Hutchings767e4682008-09-01 12:43:14 +0100449 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100450 struct ethtool_string *ethtool_strings =
451 (struct ethtool_string *)strings;
452 int i;
453
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100454 switch (string_set) {
455 case ETH_SS_STATS:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100456 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++)
Ben Hutchingsa4ed2d42012-07-02 21:36:59 +0100457 strlcpy(ethtool_strings[i].name,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100458 efx_ethtool_stats[i].name,
459 sizeof(ethtool_strings[i].name));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100460 break;
461 case ETH_SS_TEST:
462 efx_ethtool_fill_self_tests(efx, NULL,
463 ethtool_strings, NULL);
464 break;
465 default:
466 /* No other string sets */
467 break;
468 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100469}
470
471static void efx_ethtool_get_stats(struct net_device *net_dev,
472 struct ethtool_stats *stats,
473 u64 *data)
474{
Ben Hutchings767e4682008-09-01 12:43:14 +0100475 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100476 struct efx_mac_stats *mac_stats = &efx->mac_stats;
Ben Hutchings18e83e42012-01-05 19:05:20 +0000477 const struct efx_ethtool_stat *stat;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100478 struct efx_channel *channel;
Ben Hutchings119226c2011-02-18 19:14:13 +0000479 struct efx_tx_queue *tx_queue;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100480 int i;
481
482 EFX_BUG_ON_PARANOID(stats->n_stats != EFX_ETHTOOL_NUM_STATS);
483
Ben Hutchings1cb34522011-09-02 23:23:00 +0100484 spin_lock_bh(&efx->stats_lock);
485
Ben Hutchings8ceee662008-04-27 12:55:59 +0100486 /* Update MAC and NIC statistics */
Ben Hutchings1cb34522011-09-02 23:23:00 +0100487 efx->type->update_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100488
489 /* Fill detailed statistics buffer */
490 for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++) {
491 stat = &efx_ethtool_stats[i];
492 switch (stat->source) {
493 case EFX_ETHTOOL_STAT_SOURCE_mac_stats:
494 data[i] = stat->get_stat((void *)mac_stats +
495 stat->offset);
496 break;
497 case EFX_ETHTOOL_STAT_SOURCE_nic:
498 data[i] = stat->get_stat((void *)efx + stat->offset);
499 break;
500 case EFX_ETHTOOL_STAT_SOURCE_channel:
501 data[i] = 0;
502 efx_for_each_channel(channel, efx)
503 data[i] += stat->get_stat((void *)channel +
504 stat->offset);
505 break;
Ben Hutchings119226c2011-02-18 19:14:13 +0000506 case EFX_ETHTOOL_STAT_SOURCE_tx_queue:
507 data[i] = 0;
508 efx_for_each_channel(channel, efx) {
509 efx_for_each_channel_tx_queue(tx_queue, channel)
510 data[i] +=
511 stat->get_stat((void *)tx_queue
512 + stat->offset);
513 }
514 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100515 }
516 }
Ben Hutchings1cb34522011-09-02 23:23:00 +0100517
518 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100519}
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 Hutchingsf16aeea2012-07-27 19:31:16 +0100533 if (efx->state != STATE_READY) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100534 rc = -EIO;
535 goto fail1;
536 }
537
Ben Hutchingsac33ac62010-12-07 18:29:52 +0000538 netif_info(efx, drv, efx->net_dev, "starting %sline testing\n",
539 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
540
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100541 /* We need rx buffers and interrupts. */
542 already_up = (efx->net_dev->flags & IFF_UP);
543 if (!already_up) {
544 rc = dev_open(efx->net_dev);
545 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000546 netif_err(efx, drv, efx->net_dev,
547 "failed opening device.\n");
Eric Dumazet28801f32011-02-16 03:48:38 +0000548 goto fail1;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100549 }
550 }
551
Eric Dumazet28801f32011-02-16 03:48:38 +0000552 rc = efx_selftest(efx, efx_tests, test->flags);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100553
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100554 if (!already_up)
555 dev_close(efx->net_dev);
556
Ben Hutchingsac33ac62010-12-07 18:29:52 +0000557 netif_info(efx, drv, efx->net_dev, "%s %sline self-tests\n",
558 rc == 0 ? "passed" : "failed",
559 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100560
Eric Dumazet28801f32011-02-16 03:48:38 +0000561fail1:
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100562 /* Fill ethtool results structures */
Eric Dumazet28801f32011-02-16 03:48:38 +0000563 efx_ethtool_fill_self_tests(efx, efx_tests, NULL, data);
564 kfree(efx_tests);
565fail:
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100566 if (rc)
567 test->flags |= ETH_TEST_FL_FAILED;
568}
569
Ben Hutchings8ceee662008-04-27 12:55:59 +0100570/* Restart autonegotiation */
571static int efx_ethtool_nway_reset(struct net_device *net_dev)
572{
Ben Hutchings767e4682008-09-01 12:43:14 +0100573 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100574
Ben Hutchings68e7f452009-04-29 08:05:08 +0000575 return mdio45_nway_restart(&efx->mdio);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100576}
577
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000578/*
579 * Each channel has a single IRQ and moderation timer, started by any
580 * completion (or other event). Unless the module parameter
581 * separate_tx_channels is set, IRQs and moderation are therefore
582 * shared between RX and TX completions. In this case, when RX IRQ
583 * moderation is explicitly changed then TX IRQ moderation is
584 * automatically changed too, but otherwise we fail if the two values
585 * are requested to be different.
586 *
Ben Hutchings13225972011-09-05 07:43:49 +0000587 * The hardware does not support a limit on the number of completions
588 * before an IRQ, so we do not use the max_frames fields. We should
589 * report and require that max_frames == (usecs != 0), but this would
590 * invalidate existing user documentation.
591 *
592 * The hardware does not have distinct settings for interrupt
593 * moderation while the previous IRQ is being handled, so we should
594 * not use the 'irq' fields. However, an earlier developer
595 * misunderstood the meaning of the 'irq' fields and the driver did
596 * not support the standard fields. To avoid invalidating existing
597 * user documentation, we report and accept changes through either the
598 * standard or 'irq' fields. If both are changed at the same time, we
599 * prefer the standard field.
600 *
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000601 * We implement adaptive IRQ moderation, but use a different algorithm
602 * from that assumed in the definition of struct ethtool_coalesce.
603 * Therefore we do not use any of the adaptive moderation parameters
604 * in it.
605 */
606
Ben Hutchings8ceee662008-04-27 12:55:59 +0100607static int efx_ethtool_get_coalesce(struct net_device *net_dev,
608 struct ethtool_coalesce *coalesce)
609{
Ben Hutchings767e4682008-09-01 12:43:14 +0100610 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000611 unsigned int tx_usecs, rx_usecs;
612 bool rx_adaptive;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100613
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000614 efx_get_irq_moderation(efx, &tx_usecs, &rx_usecs, &rx_adaptive);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100615
Ben Hutchings13225972011-09-05 07:43:49 +0000616 coalesce->tx_coalesce_usecs = tx_usecs;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000617 coalesce->tx_coalesce_usecs_irq = tx_usecs;
Ben Hutchings13225972011-09-05 07:43:49 +0000618 coalesce->rx_coalesce_usecs = rx_usecs;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000619 coalesce->rx_coalesce_usecs_irq = rx_usecs;
620 coalesce->use_adaptive_rx_coalesce = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000621
Ben Hutchings8ceee662008-04-27 12:55:59 +0100622 return 0;
623}
624
Ben Hutchings8ceee662008-04-27 12:55:59 +0100625static int efx_ethtool_set_coalesce(struct net_device *net_dev,
626 struct ethtool_coalesce *coalesce)
627{
Ben Hutchings767e4682008-09-01 12:43:14 +0100628 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100629 struct efx_channel *channel;
Ben Hutchingsb548f972011-09-05 07:41:44 +0000630 unsigned int tx_usecs, rx_usecs;
Ben Hutchings9e393b32011-09-05 07:43:04 +0000631 bool adaptive, rx_may_override_tx;
632 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100633
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000634 if (coalesce->use_adaptive_tx_coalesce)
Ben Hutchings9f85ee92011-09-05 07:41:27 +0000635 return -EINVAL;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100636
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000637 efx_get_irq_moderation(efx, &tx_usecs, &rx_usecs, &adaptive);
638
Ben Hutchings13225972011-09-05 07:43:49 +0000639 if (coalesce->rx_coalesce_usecs != rx_usecs)
640 rx_usecs = coalesce->rx_coalesce_usecs;
641 else
642 rx_usecs = coalesce->rx_coalesce_usecs_irq;
643
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000644 adaptive = coalesce->use_adaptive_rx_coalesce;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100645
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +0000646 /* If channels are shared, TX IRQ moderation can be quietly
647 * overridden unless it is changed from its old value.
648 */
Ben Hutchings13225972011-09-05 07:43:49 +0000649 rx_may_override_tx = (coalesce->tx_coalesce_usecs == tx_usecs &&
650 coalesce->tx_coalesce_usecs_irq == tx_usecs);
651 if (coalesce->tx_coalesce_usecs != tx_usecs)
652 tx_usecs = coalesce->tx_coalesce_usecs;
653 else
654 tx_usecs = coalesce->tx_coalesce_usecs_irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100655
Ben Hutchings9e393b32011-09-05 07:43:04 +0000656 rc = efx_init_irq_moderation(efx, tx_usecs, rx_usecs, adaptive,
657 rx_may_override_tx);
658 if (rc != 0)
659 return rc;
660
Ben Hutchings8ceee662008-04-27 12:55:59 +0100661 efx_for_each_channel(channel, efx)
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000662 efx->type->push_irq_moderation(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100663
664 return 0;
665}
666
Ben Hutchings46426102010-09-10 06:42:33 +0000667static void efx_ethtool_get_ringparam(struct net_device *net_dev,
668 struct ethtool_ringparam *ring)
669{
670 struct efx_nic *efx = netdev_priv(net_dev);
671
672 ring->rx_max_pending = EFX_MAX_DMAQ_SIZE;
673 ring->tx_max_pending = EFX_MAX_DMAQ_SIZE;
Ben Hutchings46426102010-09-10 06:42:33 +0000674 ring->rx_pending = efx->rxq_entries;
675 ring->tx_pending = efx->txq_entries;
Ben Hutchings46426102010-09-10 06:42:33 +0000676}
677
678static int efx_ethtool_set_ringparam(struct net_device *net_dev,
679 struct ethtool_ringparam *ring)
680{
681 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000682 u32 txq_entries;
Ben Hutchings46426102010-09-10 06:42:33 +0000683
684 if (ring->rx_mini_pending || ring->rx_jumbo_pending ||
685 ring->rx_pending > EFX_MAX_DMAQ_SIZE ||
686 ring->tx_pending > EFX_MAX_DMAQ_SIZE)
687 return -EINVAL;
688
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000689 if (ring->rx_pending < EFX_RXQ_MIN_ENT) {
Ben Hutchings46426102010-09-10 06:42:33 +0000690 netif_err(efx, drv, efx->net_dev,
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000691 "RX queues cannot be smaller than %u\n",
692 EFX_RXQ_MIN_ENT);
Ben Hutchings46426102010-09-10 06:42:33 +0000693 return -EINVAL;
694 }
695
Ben Hutchings7e6d06f2012-07-30 15:57:44 +0000696 txq_entries = max(ring->tx_pending, EFX_TXQ_MIN_ENT(efx));
697 if (txq_entries != ring->tx_pending)
698 netif_warn(efx, drv, efx->net_dev,
699 "increasing TX queue size to minimum of %u\n",
700 txq_entries);
701
702 return efx_realloc_channels(efx, ring->rx_pending, txq_entries);
Ben Hutchings46426102010-09-10 06:42:33 +0000703}
704
Ben Hutchings8ceee662008-04-27 12:55:59 +0100705static int efx_ethtool_set_pauseparam(struct net_device *net_dev,
706 struct ethtool_pauseparam *pause)
707{
Ben Hutchings767e4682008-09-01 12:43:14 +0100708 struct efx_nic *efx = netdev_priv(net_dev);
David S. Millerb56269462011-05-17 17:53:22 -0400709 u8 wanted_fc, old_fc;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000710 u32 old_adv;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800711 bool reset;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000712 int rc = 0;
713
714 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100715
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800716 wanted_fc = ((pause->rx_pause ? EFX_FC_RX : 0) |
717 (pause->tx_pause ? EFX_FC_TX : 0) |
718 (pause->autoneg ? EFX_FC_AUTO : 0));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100719
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800720 if ((wanted_fc & EFX_FC_TX) && !(wanted_fc & EFX_FC_RX)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000721 netif_dbg(efx, drv, efx->net_dev,
722 "Flow control unsupported: tx ON rx OFF\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000723 rc = -EINVAL;
724 goto out;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800725 }
726
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000727 if ((wanted_fc & EFX_FC_AUTO) && !efx->link_advertising) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000728 netif_dbg(efx, drv, efx->net_dev,
729 "Autonegotiation is disabled\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000730 rc = -EINVAL;
731 goto out;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800732 }
733
734 /* TX flow control may automatically turn itself off if the
735 * link partner (intermittently) stops responding to pause
736 * frames. There isn't any indication that this has happened,
737 * so the best we do is leave it up to the user to spot this
738 * and fix it be cycling transmit flow control on this end. */
739 reset = (wanted_fc & EFX_FC_TX) && !(efx->wanted_fc & EFX_FC_TX);
740 if (EFX_WORKAROUND_11482(efx) && reset) {
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000741 if (efx_nic_rev(efx) == EFX_REV_FALCON_B0) {
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800742 /* Recover by resetting the EM block */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000743 falcon_stop_nic_stats(efx);
744 falcon_drain_tx_fifo(efx);
Ben Hutchings710b2082011-09-03 00:15:00 +0100745 falcon_reconfigure_xmac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000746 falcon_start_nic_stats(efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800747 } else {
748 /* Schedule a reset to recover */
749 efx_schedule_reset(efx, RESET_TYPE_INVISIBLE);
750 }
751 }
752
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000753 old_adv = efx->link_advertising;
754 old_fc = efx->wanted_fc;
755 efx_link_set_wanted_fc(efx, wanted_fc);
756 if (efx->link_advertising != old_adv ||
757 (efx->wanted_fc ^ old_fc) & EFX_FC_AUTO) {
758 rc = efx->phy_op->reconfigure(efx);
759 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000760 netif_err(efx, drv, efx->net_dev,
761 "Unable to advertise requested flow "
762 "control setting\n");
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000763 goto out;
764 }
765 }
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800766
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000767 /* Reconfigure the MAC. The PHY *may* generate a link state change event
768 * if the user just changed the advertised capabilities, but there's no
769 * harm doing this twice */
Ben Hutchings710b2082011-09-03 00:15:00 +0100770 efx->type->reconfigure_mac(efx);
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800771
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000772out:
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800773 mutex_unlock(&efx->mac_lock);
774
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000775 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100776}
777
778static void efx_ethtool_get_pauseparam(struct net_device *net_dev,
779 struct ethtool_pauseparam *pause)
780{
Ben Hutchings767e4682008-09-01 12:43:14 +0100781 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100782
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800783 pause->rx_pause = !!(efx->wanted_fc & EFX_FC_RX);
784 pause->tx_pause = !!(efx->wanted_fc & EFX_FC_TX);
785 pause->autoneg = !!(efx->wanted_fc & EFX_FC_AUTO);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100786}
787
788
Ben Hutchings89c758f2009-11-29 03:43:07 +0000789static void efx_ethtool_get_wol(struct net_device *net_dev,
790 struct ethtool_wolinfo *wol)
791{
792 struct efx_nic *efx = netdev_priv(net_dev);
793 return efx->type->get_wol(efx, wol);
794}
795
796
797static int efx_ethtool_set_wol(struct net_device *net_dev,
798 struct ethtool_wolinfo *wol)
799{
800 struct efx_nic *efx = netdev_priv(net_dev);
801 return efx->type->set_wol(efx, wol->wolopts);
802}
803
stephen hemmingerd2156972010-10-18 05:27:31 +0000804static int efx_ethtool_reset(struct net_device *net_dev, u32 *flags)
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000805{
806 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100807 int rc;
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000808
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100809 rc = efx->type->map_reset_flags(flags);
810 if (rc < 0)
811 return rc;
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000812
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100813 return efx_reset(efx, rc);
Ben Hutchingseb9f6742009-11-29 03:43:15 +0000814}
815
Ben Hutchingsc274d652012-02-02 22:41:49 +0000816/* MAC address mask including only MC flag */
817static const u8 mac_addr_mc_mask[ETH_ALEN] = { 0x01, 0, 0, 0, 0, 0 };
818
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000819static int efx_ethtool_get_class_rule(struct efx_nic *efx,
820 struct ethtool_rx_flow_spec *rule)
821{
822 struct ethtool_tcpip4_spec *ip_entry = &rule->h_u.tcp_ip4_spec;
823 struct ethtool_tcpip4_spec *ip_mask = &rule->m_u.tcp_ip4_spec;
Ben Hutchingsc274d652012-02-02 22:41:49 +0000824 struct ethhdr *mac_entry = &rule->h_u.ether_spec;
825 struct ethhdr *mac_mask = &rule->m_u.ether_spec;
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000826 struct efx_filter_spec spec;
827 u16 vid;
828 u8 proto;
829 int rc;
830
831 rc = efx_filter_get_filter_safe(efx, EFX_FILTER_PRI_MANUAL,
832 rule->location, &spec);
833 if (rc)
834 return rc;
835
836 if (spec.dmaq_id == 0xfff)
837 rule->ring_cookie = RX_CLS_FLOW_DISC;
838 else
839 rule->ring_cookie = spec.dmaq_id;
840
Ben Hutchingsc274d652012-02-02 22:41:49 +0000841 if (spec.type == EFX_FILTER_MC_DEF || spec.type == EFX_FILTER_UC_DEF) {
842 rule->flow_type = ETHER_FLOW;
843 memcpy(mac_mask->h_dest, mac_addr_mc_mask, ETH_ALEN);
844 if (spec.type == EFX_FILTER_MC_DEF)
845 memcpy(mac_entry->h_dest, mac_addr_mc_mask, ETH_ALEN);
846 return 0;
847 }
848
849 rc = efx_filter_get_eth_local(&spec, &vid, mac_entry->h_dest);
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000850 if (rc == 0) {
851 rule->flow_type = ETHER_FLOW;
Ben Hutchingsc274d652012-02-02 22:41:49 +0000852 memset(mac_mask->h_dest, ~0, ETH_ALEN);
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000853 if (vid != EFX_FILTER_VID_UNSPEC) {
854 rule->flow_type |= FLOW_EXT;
855 rule->h_ext.vlan_tci = htons(vid);
856 rule->m_ext.vlan_tci = htons(0xfff);
857 }
858 return 0;
859 }
860
861 rc = efx_filter_get_ipv4_local(&spec, &proto,
862 &ip_entry->ip4dst, &ip_entry->pdst);
863 if (rc != 0) {
864 rc = efx_filter_get_ipv4_full(
Ben Hutchingsac70b2e2012-08-15 18:09:15 +0100865 &spec, &proto, &ip_entry->ip4dst, &ip_entry->pdst,
866 &ip_entry->ip4src, &ip_entry->psrc);
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000867 EFX_WARN_ON_PARANOID(rc);
868 ip_mask->ip4src = ~0;
869 ip_mask->psrc = ~0;
870 }
871 rule->flow_type = (proto == IPPROTO_TCP) ? TCP_V4_FLOW : UDP_V4_FLOW;
872 ip_mask->ip4dst = ~0;
873 ip_mask->pdst = ~0;
874 return rc;
875}
876
Ben Hutchings765c9f42010-06-30 05:06:28 +0000877static int
878efx_ethtool_get_rxnfc(struct net_device *net_dev,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000879 struct ethtool_rxnfc *info, u32 *rule_locs)
Ben Hutchings765c9f42010-06-30 05:06:28 +0000880{
881 struct efx_nic *efx = netdev_priv(net_dev);
882
883 switch (info->cmd) {
884 case ETHTOOL_GRXRINGS:
885 info->data = efx->n_rx_channels;
886 return 0;
887
888 case ETHTOOL_GRXFH: {
889 unsigned min_revision = 0;
890
891 info->data = 0;
892 switch (info->flow_type) {
893 case TCP_V4_FLOW:
894 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
895 /* fall through */
896 case UDP_V4_FLOW:
897 case SCTP_V4_FLOW:
898 case AH_ESP_V4_FLOW:
899 case IPV4_FLOW:
900 info->data |= RXH_IP_SRC | RXH_IP_DST;
901 min_revision = EFX_REV_FALCON_B0;
902 break;
903 case TCP_V6_FLOW:
904 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
905 /* fall through */
906 case UDP_V6_FLOW:
907 case SCTP_V6_FLOW:
908 case AH_ESP_V6_FLOW:
909 case IPV6_FLOW:
910 info->data |= RXH_IP_SRC | RXH_IP_DST;
911 min_revision = EFX_REV_SIENA_A0;
912 break;
913 default:
914 break;
915 }
916 if (efx_nic_rev(efx) < min_revision)
917 info->data = 0;
918 return 0;
919 }
920
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000921 case ETHTOOL_GRXCLSRLCNT:
922 info->data = efx_filter_get_rx_id_limit(efx);
923 if (info->data == 0)
924 return -EOPNOTSUPP;
925 info->data |= RX_CLS_LOC_SPECIAL;
926 info->rule_cnt =
927 efx_filter_count_rx_used(efx, EFX_FILTER_PRI_MANUAL);
928 return 0;
929
930 case ETHTOOL_GRXCLSRULE:
931 if (efx_filter_get_rx_id_limit(efx) == 0)
932 return -EOPNOTSUPP;
933 return efx_ethtool_get_class_rule(efx, &info->fs);
934
935 case ETHTOOL_GRXCLSRLALL: {
936 s32 rc;
937 info->data = efx_filter_get_rx_id_limit(efx);
938 if (info->data == 0)
939 return -EOPNOTSUPP;
940 rc = efx_filter_get_rx_ids(efx, EFX_FILTER_PRI_MANUAL,
941 rule_locs, info->rule_cnt);
942 if (rc < 0)
943 return rc;
944 info->rule_cnt = rc;
945 return 0;
946 }
947
Ben Hutchings765c9f42010-06-30 05:06:28 +0000948 default:
949 return -EOPNOTSUPP;
950 }
951}
952
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000953static int efx_ethtool_set_class_rule(struct efx_nic *efx,
954 struct ethtool_rx_flow_spec *rule)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000955{
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000956 struct ethtool_tcpip4_spec *ip_entry = &rule->h_u.tcp_ip4_spec;
957 struct ethtool_tcpip4_spec *ip_mask = &rule->m_u.tcp_ip4_spec;
958 struct ethhdr *mac_entry = &rule->h_u.ether_spec;
959 struct ethhdr *mac_mask = &rule->m_u.ether_spec;
960 struct efx_filter_spec spec;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000961 int rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000962
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000963 /* Check that user wants us to choose the location */
Ben Hutchings9e0f9a12012-09-04 18:57:25 +0100964 if (rule->location != RX_CLS_LOC_ANY)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000965 return -EINVAL;
966
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000967 /* Range-check ring_cookie */
968 if (rule->ring_cookie >= efx->n_rx_channels &&
969 rule->ring_cookie != RX_CLS_FLOW_DISC)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000970 return -EINVAL;
971
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000972 /* Check for unsupported extensions */
973 if ((rule->flow_type & FLOW_EXT) &&
974 (rule->m_ext.vlan_etype | rule->m_ext.data[0] |
975 rule->m_ext.data[1]))
976 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000977
Ben Hutchings9e0f9a12012-09-04 18:57:25 +0100978 efx_filter_init_rx(&spec, EFX_FILTER_PRI_MANUAL, 0,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000979 (rule->ring_cookie == RX_CLS_FLOW_DISC) ?
980 0xfff : rule->ring_cookie);
981
982 switch (rule->flow_type) {
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000983 case TCP_V4_FLOW:
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000984 case UDP_V4_FLOW: {
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000985 u8 proto = (rule->flow_type == TCP_V4_FLOW ?
Ben Hutchingsc39d35e2010-12-07 19:11:26 +0000986 IPPROTO_TCP : IPPROTO_UDP);
987
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000988 /* Must match all of destination, */
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000989 if ((__force u32)~ip_mask->ip4dst |
990 (__force u16)~ip_mask->pdst)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000991 return -EINVAL;
992 /* all or none of source, */
993 if ((ip_mask->ip4src | ip_mask->psrc) &&
994 ((__force u32)~ip_mask->ip4src |
995 (__force u16)~ip_mask->psrc))
996 return -EINVAL;
997 /* and nothing else */
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +0000998 if (ip_mask->tos | rule->m_ext.vlan_tci)
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000999 return -EINVAL;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001000
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001001 if (ip_mask->ip4src)
1002 rc = efx_filter_set_ipv4_full(&spec, proto,
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001003 ip_entry->ip4dst,
1004 ip_entry->pdst,
1005 ip_entry->ip4src,
1006 ip_entry->psrc);
1007 else
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001008 rc = efx_filter_set_ipv4_local(&spec, proto,
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001009 ip_entry->ip4dst,
1010 ip_entry->pdst);
1011 if (rc)
1012 return rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001013 break;
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001014 }
1015
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001016 case ETHER_FLOW | FLOW_EXT:
Ben Hutchingsc274d652012-02-02 22:41:49 +00001017 case ETHER_FLOW: {
1018 u16 vlan_tag_mask = (rule->flow_type & FLOW_EXT ?
1019 ntohs(rule->m_ext.vlan_tci) : 0);
1020
1021 /* Must not match on source address or Ethertype */
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
Ben Hutchingsc274d652012-02-02 22:41:49 +00001026 /* Is it a default UC or MC filter? */
Joe Perches2e42e472012-05-09 17:17:46 +00001027 if (ether_addr_equal(mac_mask->h_dest, mac_addr_mc_mask) &&
Ben Hutchingsc274d652012-02-02 22:41:49 +00001028 vlan_tag_mask == 0) {
1029 if (is_multicast_ether_addr(mac_entry->h_dest))
1030 rc = efx_filter_set_mc_def(&spec);
1031 else
1032 rc = efx_filter_set_uc_def(&spec);
1033 }
1034 /* Otherwise, it must match all of destination and all
1035 * or none of VID.
1036 */
1037 else if (is_broadcast_ether_addr(mac_mask->h_dest) &&
1038 (vlan_tag_mask == 0xfff || vlan_tag_mask == 0)) {
1039 rc = efx_filter_set_eth_local(
1040 &spec,
1041 vlan_tag_mask ?
1042 ntohs(rule->h_ext.vlan_tci) : EFX_FILTER_VID_UNSPEC,
1043 mac_entry->h_dest);
1044 } else {
1045 rc = -EINVAL;
1046 }
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001047 if (rc)
1048 return rc;
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001049 break;
Ben Hutchingsc274d652012-02-02 22:41:49 +00001050 }
Ben Hutchingsc39d35e2010-12-07 19:11:26 +00001051
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001052 default:
1053 return -EINVAL;
1054 }
1055
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001056 rc = efx_filter_insert_filter(efx, &spec, true);
1057 if (rc < 0)
1058 return rc;
Ben Hutchings47a84672011-05-14 02:35:25 +01001059
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001060 rule->location = rc;
1061 return 0;
1062}
1063
1064static int efx_ethtool_set_rxnfc(struct net_device *net_dev,
1065 struct ethtool_rxnfc *info)
1066{
1067 struct efx_nic *efx = netdev_priv(net_dev);
1068
1069 if (efx_filter_get_rx_id_limit(efx) == 0)
1070 return -EOPNOTSUPP;
1071
1072 switch (info->cmd) {
1073 case ETHTOOL_SRXCLSRLINS:
1074 return efx_ethtool_set_class_rule(efx, &info->fs);
1075
1076 case ETHTOOL_SRXCLSRLDEL:
1077 return efx_filter_remove_id_safe(efx, EFX_FILTER_PRI_MANUAL,
1078 info->fs.location);
1079
1080 default:
1081 return -EOPNOTSUPP;
1082 }
Ben Hutchingsb4187e42010-09-20 08:43:42 +00001083}
1084
Ben Hutchings7850f632011-12-15 13:55:01 +00001085static u32 efx_ethtool_get_rxfh_indir_size(struct net_device *net_dev)
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 Hutchingscd2d5b52012-02-14 00:48:07 +00001089 return ((efx_nic_rev(efx) < EFX_REV_FALCON_B0 ||
1090 efx->n_rx_channels == 1) ?
Ben Hutchings7850f632011-12-15 13:55:01 +00001091 0 : ARRAY_SIZE(efx->rx_indir_table));
1092}
Ben Hutchings765c9f42010-06-30 05:06:28 +00001093
Ben Hutchings7850f632011-12-15 13:55:01 +00001094static int efx_ethtool_get_rxfh_indir(struct net_device *net_dev, u32 *indir)
1095{
1096 struct efx_nic *efx = netdev_priv(net_dev);
1097
1098 memcpy(indir, efx->rx_indir_table, sizeof(efx->rx_indir_table));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001099 return 0;
1100}
1101
1102static int efx_ethtool_set_rxfh_indir(struct net_device *net_dev,
Ben Hutchings7850f632011-12-15 13:55:01 +00001103 const u32 *indir)
Ben Hutchings765c9f42010-06-30 05:06:28 +00001104{
1105 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings765c9f42010-06-30 05:06:28 +00001106
Ben Hutchings7850f632011-12-15 13:55:01 +00001107 memcpy(efx->rx_indir_table, indir, sizeof(efx->rx_indir_table));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001108 efx_nic_push_rx_indir_table(efx);
1109 return 0;
1110}
1111
Stuart Hodgsonc087bd22012-05-01 18:50:43 +01001112static int efx_ethtool_get_module_eeprom(struct net_device *net_dev,
1113 struct ethtool_eeprom *ee,
1114 u8 *data)
1115{
1116 struct efx_nic *efx = netdev_priv(net_dev);
1117 int ret;
1118
1119 if (!efx->phy_op || !efx->phy_op->get_module_eeprom)
1120 return -EOPNOTSUPP;
1121
1122 mutex_lock(&efx->mac_lock);
1123 ret = efx->phy_op->get_module_eeprom(efx, ee, data);
1124 mutex_unlock(&efx->mac_lock);
1125
1126 return ret;
1127}
1128
1129static int efx_ethtool_get_module_info(struct net_device *net_dev,
1130 struct ethtool_modinfo *modinfo)
1131{
1132 struct efx_nic *efx = netdev_priv(net_dev);
1133 int ret;
1134
1135 if (!efx->phy_op || !efx->phy_op->get_module_info)
1136 return -EOPNOTSUPP;
1137
1138 mutex_lock(&efx->mac_lock);
1139 ret = efx->phy_op->get_module_info(efx, modinfo);
1140 mutex_unlock(&efx->mac_lock);
1141
1142 return ret;
1143}
1144
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001145const struct ethtool_ops efx_ethtool_ops = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001146 .get_settings = efx_ethtool_get_settings,
1147 .set_settings = efx_ethtool_set_settings,
1148 .get_drvinfo = efx_ethtool_get_drvinfo,
Ben Hutchings5b98c1b2010-06-21 03:06:53 +00001149 .get_regs_len = efx_ethtool_get_regs_len,
1150 .get_regs = efx_ethtool_get_regs,
Ben Hutchings62776d02010-06-23 11:30:07 +00001151 .get_msglevel = efx_ethtool_get_msglevel,
1152 .set_msglevel = efx_ethtool_set_msglevel,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001153 .nway_reset = efx_ethtool_nway_reset,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +00001154 .get_link = ethtool_op_get_link,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001155 .get_coalesce = efx_ethtool_get_coalesce,
1156 .set_coalesce = efx_ethtool_set_coalesce,
Ben Hutchings46426102010-09-10 06:42:33 +00001157 .get_ringparam = efx_ethtool_get_ringparam,
1158 .set_ringparam = efx_ethtool_set_ringparam,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001159 .get_pauseparam = efx_ethtool_get_pauseparam,
1160 .set_pauseparam = efx_ethtool_set_pauseparam,
Ben Hutchings3594e132008-09-01 12:48:12 +01001161 .get_sset_count = efx_ethtool_get_sset_count,
Ben Hutchings3273c2e2008-05-07 13:36:19 +01001162 .self_test = efx_ethtool_self_test,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001163 .get_strings = efx_ethtool_get_strings,
Ben Hutchingsc5e129a2011-04-02 00:43:46 +01001164 .set_phys_id = efx_ethtool_phys_id,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001165 .get_ethtool_stats = efx_ethtool_get_stats,
Ben Hutchings89c758f2009-11-29 03:43:07 +00001166 .get_wol = efx_ethtool_get_wol,
1167 .set_wol = efx_ethtool_set_wol,
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001168 .reset = efx_ethtool_reset,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001169 .get_rxnfc = efx_ethtool_get_rxnfc,
Ben Hutchingsb2bb7b72012-01-03 12:05:47 +00001170 .set_rxnfc = efx_ethtool_set_rxnfc,
Ben Hutchings7850f632011-12-15 13:55:01 +00001171 .get_rxfh_indir_size = efx_ethtool_get_rxfh_indir_size,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001172 .get_rxfh_indir = efx_ethtool_get_rxfh_indir,
1173 .set_rxfh_indir = efx_ethtool_set_rxfh_indir,
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001174 .get_ts_info = efx_ptp_get_ts_info,
Stuart Hodgsonc087bd22012-05-01 18:50:43 +01001175 .get_module_info = efx_ethtool_get_module_info,
1176 .get_module_eeprom = efx_ethtool_get_module_eeprom,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001177};