]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/ethernet/sfc/ethtool.c
Merge tag 'vmwgfx-fixes-3.14-2014-02-18' of git://people.freedesktop.org/~thomash...
[mirror_ubuntu-artful-kernel.git] / drivers / net / ethernet / sfc / ethtool.c
CommitLineData
8ceee660 1/****************************************************************************
f7a6d2c4 2 * Driver for Solarflare network controllers and boards
8ceee660 3 * Copyright 2005-2006 Fen Systems Ltd.
f7a6d2c4 4 * Copyright 2006-2013 Solarflare Communications Inc.
8ceee660
BH
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#include <linux/netdevice.h>
12#include <linux/ethtool.h>
13#include <linux/rtnetlink.h>
c39d35eb 14#include <linux/in.h>
8ceee660 15#include "net_driver.h"
04cc8cac 16#include "workarounds.h"
3273c2e8 17#include "selftest.h"
8ceee660 18#include "efx.h"
b4187e42 19#include "filter.h"
744093c9 20#include "nic.h"
8ceee660 21
cd0ecc9a 22struct efx_sw_stat_desc {
8ceee660
BH
23 const char *name;
24 enum {
8ceee660 25 EFX_ETHTOOL_STAT_SOURCE_nic,
119226c5
BH
26 EFX_ETHTOOL_STAT_SOURCE_channel,
27 EFX_ETHTOOL_STAT_SOURCE_tx_queue
8ceee660
BH
28 } source;
29 unsigned offset;
30 u64(*get_stat) (void *field); /* Reader function */
31};
32
cd0ecc9a 33/* Initialiser for a struct efx_sw_stat_desc with type-checking */
8ceee660
BH
34#define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \
35 get_stat_function) { \
36 .name = #stat_name, \
37 .source = EFX_ETHTOOL_STAT_SOURCE_##source_name, \
38 .offset = ((((field_type *) 0) == \
39 &((struct efx_##source_name *)0)->field) ? \
40 offsetof(struct efx_##source_name, field) : \
41 offsetof(struct efx_##source_name, field)), \
42 .get_stat = get_stat_function, \
43}
44
45static u64 efx_get_uint_stat(void *field)
46{
47 return *(unsigned int *)field;
48}
49
8ceee660
BH
50static u64 efx_get_atomic_stat(void *field)
51{
52 return atomic_read((atomic_t *) field);
53}
54
8ceee660
BH
55#define EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(field) \
56 EFX_ETHTOOL_STAT(field, nic, field, \
57 atomic_t, efx_get_atomic_stat)
58
59#define EFX_ETHTOOL_UINT_CHANNEL_STAT(field) \
60 EFX_ETHTOOL_STAT(field, channel, n_##field, \
61 unsigned int, efx_get_uint_stat)
62
119226c5
BH
63#define EFX_ETHTOOL_UINT_TXQ_STAT(field) \
64 EFX_ETHTOOL_STAT(tx_##field, tx_queue, field, \
65 unsigned int, efx_get_uint_stat)
66
cd0ecc9a 67static const struct efx_sw_stat_desc efx_sw_stat_desc[] = {
02e12165 68 EFX_ETHTOOL_UINT_TXQ_STAT(merge_events),
119226c5
BH
69 EFX_ETHTOOL_UINT_TXQ_STAT(tso_bursts),
70 EFX_ETHTOOL_UINT_TXQ_STAT(tso_long_headers),
71 EFX_ETHTOOL_UINT_TXQ_STAT(tso_packets),
72 EFX_ETHTOOL_UINT_TXQ_STAT(pushes),
ee45fd92 73 EFX_ETHTOOL_UINT_TXQ_STAT(pio_packets),
8ceee660
BH
74 EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(rx_reset),
75 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tobe_disc),
76 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_ip_hdr_chksum_err),
77 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tcp_udp_chksum_err),
c1ac403b 78 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_mcast_mismatch),
8ceee660 79 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_frm_trunc),
85740cdf 80 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_nodesc_trunc),
8127d661
BH
81 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_merge_events),
82 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_merge_packets),
8ceee660
BH
83};
84
cd0ecc9a 85#define EFX_ETHTOOL_SW_STAT_COUNT ARRAY_SIZE(efx_sw_stat_desc)
8ceee660 86
4a5b504d 87#define EFX_ETHTOOL_EEPROM_MAGIC 0xEFAB
4a5b504d 88
8ceee660
BH
89/**************************************************************************
90 *
91 * Ethtool operations
92 *
93 **************************************************************************
94 */
95
96/* Identify device by flashing LEDs */
c5e129ac
BH
97static int efx_ethtool_phys_id(struct net_device *net_dev,
98 enum ethtool_phys_id_state state)
8ceee660 99{
767e468c 100 struct efx_nic *efx = netdev_priv(net_dev);
fce55922 101 enum efx_led_mode mode = EFX_LED_DEFAULT;
8ceee660 102
c5e129ac
BH
103 switch (state) {
104 case ETHTOOL_ID_ON:
105 mode = EFX_LED_ON;
106 break;
107 case ETHTOOL_ID_OFF:
108 mode = EFX_LED_OFF;
109 break;
110 case ETHTOOL_ID_INACTIVE:
111 mode = EFX_LED_DEFAULT;
112 break;
fce55922
AB
113 case ETHTOOL_ID_ACTIVE:
114 return 1; /* cycle on/off once per second */
c5e129ac 115 }
398468ed 116
c5e129ac 117 efx->type->set_id_led(efx, mode);
8ceee660
BH
118 return 0;
119}
120
121/* This must be called with rtnl_lock held. */
d215697f 122static int efx_ethtool_get_settings(struct net_device *net_dev,
123 struct ethtool_cmd *ecmd)
8ceee660 124{
767e468c 125 struct efx_nic *efx = netdev_priv(net_dev);
d3245b28 126 struct efx_link_state *link_state = &efx->link_state;
8ceee660
BH
127
128 mutex_lock(&efx->mac_lock);
177dfcd8 129 efx->phy_op->get_settings(efx, ecmd);
8ceee660
BH
130 mutex_unlock(&efx->mac_lock);
131
d3245b28
BH
132 /* Both MACs support pause frames (bidirectional and respond-only) */
133 ecmd->supported |= SUPPORTED_Pause | SUPPORTED_Asym_Pause;
134
135 if (LOOPBACK_INTERNAL(efx)) {
70739497 136 ethtool_cmd_speed_set(ecmd, link_state->speed);
d3245b28
BH
137 ecmd->duplex = link_state->fd ? DUPLEX_FULL : DUPLEX_HALF;
138 }
177dfcd8
BH
139
140 return 0;
8ceee660
BH
141}
142
143/* This must be called with rtnl_lock held. */
d215697f 144static int efx_ethtool_set_settings(struct net_device *net_dev,
145 struct ethtool_cmd *ecmd)
8ceee660 146{
767e468c 147 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660
BH
148 int rc;
149
754c653a 150 /* GMAC does not support 1000Mbps HD */
25db0338
DD
151 if ((ethtool_cmd_speed(ecmd) == SPEED_1000) &&
152 (ecmd->duplex != DUPLEX_FULL)) {
62776d03
BH
153 netif_dbg(efx, drv, efx->net_dev,
154 "rejecting unsupported 1000Mbps HD setting\n");
177dfcd8
BH
155 return -EINVAL;
156 }
157
8ceee660 158 mutex_lock(&efx->mac_lock);
177dfcd8 159 rc = efx->phy_op->set_settings(efx, ecmd);
8ceee660 160 mutex_unlock(&efx->mac_lock);
8ceee660
BH
161 return rc;
162}
163
164static void efx_ethtool_get_drvinfo(struct net_device *net_dev,
165 struct ethtool_drvinfo *info)
166{
767e468c 167 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660 168
c5d5f5fd 169 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
8ceee660 170 strlcpy(info->version, EFX_DRIVER_VERSION, sizeof(info->version));
8880f4ec 171 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0)
e5f0fd27
BH
172 efx_mcdi_print_fwver(efx, info->fw_version,
173 sizeof(info->fw_version));
8ceee660
BH
174 strlcpy(info->bus_info, pci_name(efx->pci_dev), sizeof(info->bus_info));
175}
176
5b98c1bf
BH
177static int efx_ethtool_get_regs_len(struct net_device *net_dev)
178{
179 return efx_nic_get_regs_len(netdev_priv(net_dev));
180}
181
182static void efx_ethtool_get_regs(struct net_device *net_dev,
183 struct ethtool_regs *regs, void *buf)
184{
185 struct efx_nic *efx = netdev_priv(net_dev);
186
187 regs->version = efx->type->revision;
188 efx_nic_get_regs(efx, buf);
189}
190
62776d03
BH
191static u32 efx_ethtool_get_msglevel(struct net_device *net_dev)
192{
193 struct efx_nic *efx = netdev_priv(net_dev);
194 return efx->msg_enable;
195}
196
197static void efx_ethtool_set_msglevel(struct net_device *net_dev, u32 msg_enable)
198{
199 struct efx_nic *efx = netdev_priv(net_dev);
200 efx->msg_enable = msg_enable;
201}
202
3273c2e8
BH
203/**
204 * efx_fill_test - fill in an individual self-test entry
205 * @test_index: Index of the test
206 * @strings: Ethtool strings, or %NULL
207 * @data: Ethtool test results, or %NULL
208 * @test: Pointer to test result (used only if data != %NULL)
740ced99
BH
209 * @unit_format: Unit name format (e.g. "chan\%d")
210 * @unit_id: Unit id (e.g. 0 for "chan0")
3273c2e8 211 * @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
740ced99 212 * @test_id: Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent")
3273c2e8
BH
213 *
214 * Fill in an individual self-test entry.
215 */
b681e57c 216static void efx_fill_test(unsigned int test_index, u8 *strings, u64 *data,
3273c2e8
BH
217 int *test, const char *unit_format, int unit_id,
218 const char *test_format, const char *test_id)
219{
b681e57c 220 char unit_str[ETH_GSTRING_LEN], test_str[ETH_GSTRING_LEN];
3273c2e8
BH
221
222 /* Fill data value, if applicable */
223 if (data)
224 data[test_index] = *test;
225
226 /* Fill string, if applicable */
227 if (strings) {
11e66966 228 if (strchr(unit_format, '%'))
b681e57c 229 snprintf(unit_str, sizeof(unit_str),
11e66966
BH
230 unit_format, unit_id);
231 else
b681e57c
BH
232 strcpy(unit_str, unit_format);
233 snprintf(test_str, sizeof(test_str), test_format, test_id);
234 snprintf(strings + test_index * ETH_GSTRING_LEN,
235 ETH_GSTRING_LEN,
236 "%-6s %-24s", unit_str, test_str);
3273c2e8
BH
237 }
238}
239
740ced99 240#define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
3273c2e8
BH
241#define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue
242#define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue
243#define EFX_LOOPBACK_NAME(_mode, _counter) \
c459302d 244 "loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode)
3273c2e8
BH
245
246/**
247 * efx_fill_loopback_test - fill in a block of loopback self-test entries
248 * @efx: Efx NIC
249 * @lb_tests: Efx loopback self-test results structure
250 * @mode: Loopback test mode
251 * @test_index: Starting index of the test
252 * @strings: Ethtool strings, or %NULL
253 * @data: Ethtool test results, or %NULL
254 */
255static int efx_fill_loopback_test(struct efx_nic *efx,
256 struct efx_loopback_self_tests *lb_tests,
257 enum efx_loopback_mode mode,
258 unsigned int test_index,
b681e57c 259 u8 *strings, u64 *data)
3273c2e8 260{
1ac0226e
BH
261 struct efx_channel *channel =
262 efx_get_channel(efx, efx->tx_channel_offset);
3273c2e8
BH
263 struct efx_tx_queue *tx_queue;
264
f7d12cdc 265 efx_for_each_channel_tx_queue(tx_queue, channel) {
3273c2e8
BH
266 efx_fill_test(test_index++, strings, data,
267 &lb_tests->tx_sent[tx_queue->queue],
268 EFX_TX_QUEUE_NAME(tx_queue),
269 EFX_LOOPBACK_NAME(mode, "tx_sent"));
270 efx_fill_test(test_index++, strings, data,
271 &lb_tests->tx_done[tx_queue->queue],
272 EFX_TX_QUEUE_NAME(tx_queue),
273 EFX_LOOPBACK_NAME(mode, "tx_done"));
274 }
275 efx_fill_test(test_index++, strings, data,
276 &lb_tests->rx_good,
11e66966 277 "rx", 0,
3273c2e8
BH
278 EFX_LOOPBACK_NAME(mode, "rx_good"));
279 efx_fill_test(test_index++, strings, data,
280 &lb_tests->rx_bad,
11e66966 281 "rx", 0,
3273c2e8
BH
282 EFX_LOOPBACK_NAME(mode, "rx_bad"));
283
284 return test_index;
285}
286
287/**
288 * efx_ethtool_fill_self_tests - get self-test details
289 * @efx: Efx NIC
290 * @tests: Efx self-test results structure, or %NULL
291 * @strings: Ethtool strings, or %NULL
292 * @data: Ethtool test results, or %NULL
293 */
294static int efx_ethtool_fill_self_tests(struct efx_nic *efx,
295 struct efx_self_tests *tests,
b681e57c 296 u8 *strings, u64 *data)
3273c2e8
BH
297{
298 struct efx_channel *channel;
1796721a 299 unsigned int n = 0, i;
3273c2e8
BH
300 enum efx_loopback_mode mode;
301
4f16c073
BH
302 efx_fill_test(n++, strings, data, &tests->phy_alive,
303 "phy", 0, "alive", NULL);
8c8661e4
BH
304 efx_fill_test(n++, strings, data, &tests->nvram,
305 "core", 0, "nvram", NULL);
3273c2e8
BH
306 efx_fill_test(n++, strings, data, &tests->interrupt,
307 "core", 0, "interrupt", NULL);
308
309 /* Event queues */
310 efx_for_each_channel(channel, efx) {
311 efx_fill_test(n++, strings, data,
312 &tests->eventq_dma[channel->channel],
313 EFX_CHANNEL_NAME(channel),
314 "eventq.dma", NULL);
315 efx_fill_test(n++, strings, data,
316 &tests->eventq_int[channel->channel],
317 EFX_CHANNEL_NAME(channel),
318 "eventq.int", NULL);
3273c2e8
BH
319 }
320
74cd60a4
JC
321 efx_fill_test(n++, strings, data, &tests->memory,
322 "core", 0, "memory", NULL);
8c8661e4
BH
323 efx_fill_test(n++, strings, data, &tests->registers,
324 "core", 0, "registers", NULL);
1796721a 325
c1c4f453
BH
326 if (efx->phy_op->run_tests != NULL) {
327 EFX_BUG_ON_PARANOID(efx->phy_op->test_name == NULL);
328
329 for (i = 0; true; ++i) {
330 const char *name;
331
332 EFX_BUG_ON_PARANOID(i >= EFX_MAX_PHY_TESTS);
333 name = efx->phy_op->test_name(efx, i);
334 if (name == NULL)
335 break;
336
4f16c073 337 efx_fill_test(n++, strings, data, &tests->phy_ext[i],
c1c4f453
BH
338 "phy", 0, name, NULL);
339 }
340 }
3273c2e8
BH
341
342 /* Loopback tests */
8c8661e4 343 for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) {
3273c2e8
BH
344 if (!(efx->loopback_modes & (1 << mode)))
345 continue;
346 n = efx_fill_loopback_test(efx,
347 &tests->loopback[mode], mode, n,
348 strings, data);
349 }
350
351 return n;
352}
353
3594e131
BH
354static int efx_ethtool_get_sset_count(struct net_device *net_dev,
355 int string_set)
8ceee660 356{
cd0ecc9a
BH
357 struct efx_nic *efx = netdev_priv(net_dev);
358
3594e131
BH
359 switch (string_set) {
360 case ETH_SS_STATS:
cd0ecc9a 361 return efx->type->describe_stats(efx, NULL) +
99691c4a
BH
362 EFX_ETHTOOL_SW_STAT_COUNT +
363 efx_ptp_describe_stats(efx, NULL);
3594e131 364 case ETH_SS_TEST:
cd0ecc9a 365 return efx_ethtool_fill_self_tests(efx, NULL, NULL, NULL);
3594e131
BH
366 default:
367 return -EINVAL;
368 }
3273c2e8
BH
369}
370
8ceee660
BH
371static void efx_ethtool_get_strings(struct net_device *net_dev,
372 u32 string_set, u8 *strings)
373{
767e468c 374 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660
BH
375 int i;
376
3273c2e8
BH
377 switch (string_set) {
378 case ETH_SS_STATS:
cd0ecc9a
BH
379 strings += (efx->type->describe_stats(efx, strings) *
380 ETH_GSTRING_LEN);
381 for (i = 0; i < EFX_ETHTOOL_SW_STAT_COUNT; i++)
b681e57c 382 strlcpy(strings + i * ETH_GSTRING_LEN,
cd0ecc9a 383 efx_sw_stat_desc[i].name, ETH_GSTRING_LEN);
99691c4a
BH
384 strings += EFX_ETHTOOL_SW_STAT_COUNT * ETH_GSTRING_LEN;
385 efx_ptp_describe_stats(efx, strings);
3273c2e8
BH
386 break;
387 case ETH_SS_TEST:
b681e57c 388 efx_ethtool_fill_self_tests(efx, NULL, strings, NULL);
3273c2e8
BH
389 break;
390 default:
391 /* No other string sets */
392 break;
393 }
8ceee660
BH
394}
395
396static void efx_ethtool_get_stats(struct net_device *net_dev,
397 struct ethtool_stats *stats,
398 u64 *data)
399{
767e468c 400 struct efx_nic *efx = netdev_priv(net_dev);
cd0ecc9a 401 const struct efx_sw_stat_desc *stat;
8ceee660 402 struct efx_channel *channel;
119226c5 403 struct efx_tx_queue *tx_queue;
8ceee660
BH
404 int i;
405
1cb34522
BH
406 spin_lock_bh(&efx->stats_lock);
407
cd0ecc9a
BH
408 /* Get NIC statistics */
409 data += efx->type->update_stats(efx, data, NULL);
8ceee660 410
cd0ecc9a
BH
411 /* Get software statistics */
412 for (i = 0; i < EFX_ETHTOOL_SW_STAT_COUNT; i++) {
413 stat = &efx_sw_stat_desc[i];
8ceee660 414 switch (stat->source) {
8ceee660
BH
415 case EFX_ETHTOOL_STAT_SOURCE_nic:
416 data[i] = stat->get_stat((void *)efx + stat->offset);
417 break;
418 case EFX_ETHTOOL_STAT_SOURCE_channel:
419 data[i] = 0;
420 efx_for_each_channel(channel, efx)
421 data[i] += stat->get_stat((void *)channel +
422 stat->offset);
423 break;
119226c5
BH
424 case EFX_ETHTOOL_STAT_SOURCE_tx_queue:
425 data[i] = 0;
426 efx_for_each_channel(channel, efx) {
427 efx_for_each_channel_tx_queue(tx_queue, channel)
428 data[i] +=
429 stat->get_stat((void *)tx_queue
430 + stat->offset);
431 }
432 break;
8ceee660
BH
433 }
434 }
99691c4a 435 data += EFX_ETHTOOL_SW_STAT_COUNT;
1cb34522
BH
436
437 spin_unlock_bh(&efx->stats_lock);
99691c4a
BH
438
439 efx_ptp_update_stats(efx, data);
8ceee660
BH
440}
441
3273c2e8
BH
442static void efx_ethtool_self_test(struct net_device *net_dev,
443 struct ethtool_test *test, u64 *data)
444{
767e468c 445 struct efx_nic *efx = netdev_priv(net_dev);
28801f35 446 struct efx_self_tests *efx_tests;
2ef3068e 447 int already_up;
28801f35
ED
448 int rc = -ENOMEM;
449
450 efx_tests = kzalloc(sizeof(*efx_tests), GFP_KERNEL);
451 if (!efx_tests)
452 goto fail;
453
f16aeea0 454 if (efx->state != STATE_READY) {
3273c2e8
BH
455 rc = -EIO;
456 goto fail1;
457 }
458
ac33ac61
BH
459 netif_info(efx, drv, efx->net_dev, "starting %sline testing\n",
460 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
461
3273c2e8
BH
462 /* We need rx buffers and interrupts. */
463 already_up = (efx->net_dev->flags & IFF_UP);
464 if (!already_up) {
465 rc = dev_open(efx->net_dev);
466 if (rc) {
62776d03
BH
467 netif_err(efx, drv, efx->net_dev,
468 "failed opening device.\n");
28801f35 469 goto fail1;
3273c2e8
BH
470 }
471 }
472
28801f35 473 rc = efx_selftest(efx, efx_tests, test->flags);
3273c2e8 474
3273c2e8
BH
475 if (!already_up)
476 dev_close(efx->net_dev);
477
ac33ac61
BH
478 netif_info(efx, drv, efx->net_dev, "%s %sline self-tests\n",
479 rc == 0 ? "passed" : "failed",
480 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
3273c2e8 481
28801f35 482fail1:
3273c2e8 483 /* Fill ethtool results structures */
28801f35
ED
484 efx_ethtool_fill_self_tests(efx, efx_tests, NULL, data);
485 kfree(efx_tests);
486fail:
3273c2e8
BH
487 if (rc)
488 test->flags |= ETH_TEST_FL_FAILED;
489}
490
8ceee660
BH
491/* Restart autonegotiation */
492static int efx_ethtool_nway_reset(struct net_device *net_dev)
493{
767e468c 494 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660 495
68e7f45e 496 return mdio45_nway_restart(&efx->mdio);
8ceee660
BH
497}
498
a0c4faf5
BH
499/*
500 * Each channel has a single IRQ and moderation timer, started by any
501 * completion (or other event). Unless the module parameter
502 * separate_tx_channels is set, IRQs and moderation are therefore
503 * shared between RX and TX completions. In this case, when RX IRQ
504 * moderation is explicitly changed then TX IRQ moderation is
505 * automatically changed too, but otherwise we fail if the two values
506 * are requested to be different.
507 *
13225977
BH
508 * The hardware does not support a limit on the number of completions
509 * before an IRQ, so we do not use the max_frames fields. We should
510 * report and require that max_frames == (usecs != 0), but this would
511 * invalidate existing user documentation.
512 *
513 * The hardware does not have distinct settings for interrupt
514 * moderation while the previous IRQ is being handled, so we should
515 * not use the 'irq' fields. However, an earlier developer
516 * misunderstood the meaning of the 'irq' fields and the driver did
517 * not support the standard fields. To avoid invalidating existing
518 * user documentation, we report and accept changes through either the
519 * standard or 'irq' fields. If both are changed at the same time, we
520 * prefer the standard field.
521 *
a0c4faf5
BH
522 * We implement adaptive IRQ moderation, but use a different algorithm
523 * from that assumed in the definition of struct ethtool_coalesce.
524 * Therefore we do not use any of the adaptive moderation parameters
525 * in it.
526 */
527
8ceee660
BH
528static int efx_ethtool_get_coalesce(struct net_device *net_dev,
529 struct ethtool_coalesce *coalesce)
530{
767e468c 531 struct efx_nic *efx = netdev_priv(net_dev);
a0c4faf5
BH
532 unsigned int tx_usecs, rx_usecs;
533 bool rx_adaptive;
8ceee660 534
a0c4faf5 535 efx_get_irq_moderation(efx, &tx_usecs, &rx_usecs, &rx_adaptive);
8ceee660 536
13225977 537 coalesce->tx_coalesce_usecs = tx_usecs;
a0c4faf5 538 coalesce->tx_coalesce_usecs_irq = tx_usecs;
13225977 539 coalesce->rx_coalesce_usecs = rx_usecs;
a0c4faf5
BH
540 coalesce->rx_coalesce_usecs_irq = rx_usecs;
541 coalesce->use_adaptive_rx_coalesce = rx_adaptive;
0d86ebd8 542
8ceee660
BH
543 return 0;
544}
545
8ceee660
BH
546static int efx_ethtool_set_coalesce(struct net_device *net_dev,
547 struct ethtool_coalesce *coalesce)
548{
767e468c 549 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660 550 struct efx_channel *channel;
b548f976 551 unsigned int tx_usecs, rx_usecs;
9e393b30
BH
552 bool adaptive, rx_may_override_tx;
553 int rc;
8ceee660 554
6fb70fd1 555 if (coalesce->use_adaptive_tx_coalesce)
9f85ee9c 556 return -EINVAL;
8ceee660 557
a0c4faf5
BH
558 efx_get_irq_moderation(efx, &tx_usecs, &rx_usecs, &adaptive);
559
13225977
BH
560 if (coalesce->rx_coalesce_usecs != rx_usecs)
561 rx_usecs = coalesce->rx_coalesce_usecs;
562 else
563 rx_usecs = coalesce->rx_coalesce_usecs_irq;
564
6fb70fd1 565 adaptive = coalesce->use_adaptive_rx_coalesce;
8ceee660 566
a0c4faf5
BH
567 /* If channels are shared, TX IRQ moderation can be quietly
568 * overridden unless it is changed from its old value.
569 */
13225977
BH
570 rx_may_override_tx = (coalesce->tx_coalesce_usecs == tx_usecs &&
571 coalesce->tx_coalesce_usecs_irq == tx_usecs);
572 if (coalesce->tx_coalesce_usecs != tx_usecs)
573 tx_usecs = coalesce->tx_coalesce_usecs;
574 else
575 tx_usecs = coalesce->tx_coalesce_usecs_irq;
8ceee660 576
9e393b30
BH
577 rc = efx_init_irq_moderation(efx, tx_usecs, rx_usecs, adaptive,
578 rx_may_override_tx);
579 if (rc != 0)
580 return rc;
581
8ceee660 582 efx_for_each_channel(channel, efx)
ef2b90ee 583 efx->type->push_irq_moderation(channel);
8ceee660
BH
584
585 return 0;
586}
587
4642610c
BH
588static void efx_ethtool_get_ringparam(struct net_device *net_dev,
589 struct ethtool_ringparam *ring)
590{
591 struct efx_nic *efx = netdev_priv(net_dev);
592
593 ring->rx_max_pending = EFX_MAX_DMAQ_SIZE;
d9317aea 594 ring->tx_max_pending = EFX_TXQ_MAX_ENT(efx);
4642610c
BH
595 ring->rx_pending = efx->rxq_entries;
596 ring->tx_pending = efx->txq_entries;
4642610c
BH
597}
598
599static int efx_ethtool_set_ringparam(struct net_device *net_dev,
600 struct ethtool_ringparam *ring)
601{
602 struct efx_nic *efx = netdev_priv(net_dev);
7e6d06f0 603 u32 txq_entries;
4642610c
BH
604
605 if (ring->rx_mini_pending || ring->rx_jumbo_pending ||
606 ring->rx_pending > EFX_MAX_DMAQ_SIZE ||
d9317aea 607 ring->tx_pending > EFX_TXQ_MAX_ENT(efx))
4642610c
BH
608 return -EINVAL;
609
7e6d06f0 610 if (ring->rx_pending < EFX_RXQ_MIN_ENT) {
4642610c 611 netif_err(efx, drv, efx->net_dev,
7e6d06f0
BH
612 "RX queues cannot be smaller than %u\n",
613 EFX_RXQ_MIN_ENT);
4642610c
BH
614 return -EINVAL;
615 }
616
7e6d06f0
BH
617 txq_entries = max(ring->tx_pending, EFX_TXQ_MIN_ENT(efx));
618 if (txq_entries != ring->tx_pending)
619 netif_warn(efx, drv, efx->net_dev,
620 "increasing TX queue size to minimum of %u\n",
621 txq_entries);
622
623 return efx_realloc_channels(efx, ring->rx_pending, txq_entries);
4642610c
BH
624}
625
8ceee660
BH
626static int efx_ethtool_set_pauseparam(struct net_device *net_dev,
627 struct ethtool_pauseparam *pause)
628{
767e468c 629 struct efx_nic *efx = netdev_priv(net_dev);
b5626946 630 u8 wanted_fc, old_fc;
d3245b28 631 u32 old_adv;
d3245b28
BH
632 int rc = 0;
633
634 mutex_lock(&efx->mac_lock);
8ceee660 635
04cc8cac
BH
636 wanted_fc = ((pause->rx_pause ? EFX_FC_RX : 0) |
637 (pause->tx_pause ? EFX_FC_TX : 0) |
638 (pause->autoneg ? EFX_FC_AUTO : 0));
639
640 if ((wanted_fc & EFX_FC_TX) && !(wanted_fc & EFX_FC_RX)) {
62776d03
BH
641 netif_dbg(efx, drv, efx->net_dev,
642 "Flow control unsupported: tx ON rx OFF\n");
d3245b28
BH
643 rc = -EINVAL;
644 goto out;
04cc8cac
BH
645 }
646
d3245b28 647 if ((wanted_fc & EFX_FC_AUTO) && !efx->link_advertising) {
62776d03
BH
648 netif_dbg(efx, drv, efx->net_dev,
649 "Autonegotiation is disabled\n");
d3245b28
BH
650 rc = -EINVAL;
651 goto out;
04cc8cac
BH
652 }
653
9dd3a13b
BH
654 /* Hook for Falcon bug 11482 workaround */
655 if (efx->type->prepare_enable_fc_tx &&
656 (wanted_fc & EFX_FC_TX) && !(efx->wanted_fc & EFX_FC_TX))
657 efx->type->prepare_enable_fc_tx(efx);
04cc8cac 658
d3245b28
BH
659 old_adv = efx->link_advertising;
660 old_fc = efx->wanted_fc;
661 efx_link_set_wanted_fc(efx, wanted_fc);
662 if (efx->link_advertising != old_adv ||
663 (efx->wanted_fc ^ old_fc) & EFX_FC_AUTO) {
664 rc = efx->phy_op->reconfigure(efx);
665 if (rc) {
62776d03
BH
666 netif_err(efx, drv, efx->net_dev,
667 "Unable to advertise requested flow "
668 "control setting\n");
d3245b28
BH
669 goto out;
670 }
671 }
04cc8cac 672
d3245b28
BH
673 /* Reconfigure the MAC. The PHY *may* generate a link state change event
674 * if the user just changed the advertised capabilities, but there's no
675 * harm doing this twice */
710b208d 676 efx->type->reconfigure_mac(efx);
04cc8cac 677
d3245b28 678out:
04cc8cac 679 mutex_unlock(&efx->mac_lock);
8ceee660 680
d3245b28 681 return rc;
8ceee660
BH
682}
683
684static void efx_ethtool_get_pauseparam(struct net_device *net_dev,
685 struct ethtool_pauseparam *pause)
686{
767e468c 687 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660 688
04cc8cac
BH
689 pause->rx_pause = !!(efx->wanted_fc & EFX_FC_RX);
690 pause->tx_pause = !!(efx->wanted_fc & EFX_FC_TX);
691 pause->autoneg = !!(efx->wanted_fc & EFX_FC_AUTO);
8ceee660
BH
692}
693
694
89c758fa
BH
695static void efx_ethtool_get_wol(struct net_device *net_dev,
696 struct ethtool_wolinfo *wol)
697{
698 struct efx_nic *efx = netdev_priv(net_dev);
699 return efx->type->get_wol(efx, wol);
700}
701
702
703static int efx_ethtool_set_wol(struct net_device *net_dev,
704 struct ethtool_wolinfo *wol)
705{
706 struct efx_nic *efx = netdev_priv(net_dev);
707 return efx->type->set_wol(efx, wol->wolopts);
708}
709
d215697f 710static int efx_ethtool_reset(struct net_device *net_dev, u32 *flags)
eb9f6744
BH
711{
712 struct efx_nic *efx = netdev_priv(net_dev);
0e2a9c7c 713 int rc;
eb9f6744 714
0e2a9c7c
BH
715 rc = efx->type->map_reset_flags(flags);
716 if (rc < 0)
717 return rc;
eb9f6744 718
0e2a9c7c 719 return efx_reset(efx, rc);
eb9f6744
BH
720}
721
7c460d9b
BH
722/* MAC address mask including only I/G bit */
723static const u8 mac_addr_ig_mask[ETH_ALEN] = { 0x01, 0, 0, 0, 0, 0 };
c274d65c 724
0e0c3408
BH
725#define IP4_ADDR_FULL_MASK ((__force __be32)~0)
726#define PORT_FULL_MASK ((__force __be16)~0)
7c460d9b 727#define ETHER_TYPE_FULL_MASK ((__force __be16)~0)
0e0c3408 728
b2bb7b77
BH
729static int efx_ethtool_get_class_rule(struct efx_nic *efx,
730 struct ethtool_rx_flow_spec *rule)
731{
732 struct ethtool_tcpip4_spec *ip_entry = &rule->h_u.tcp_ip4_spec;
733 struct ethtool_tcpip4_spec *ip_mask = &rule->m_u.tcp_ip4_spec;
c274d65c
BH
734 struct ethhdr *mac_entry = &rule->h_u.ether_spec;
735 struct ethhdr *mac_mask = &rule->m_u.ether_spec;
b2bb7b77 736 struct efx_filter_spec spec;
b2bb7b77
BH
737 int rc;
738
739 rc = efx_filter_get_filter_safe(efx, EFX_FILTER_PRI_MANUAL,
740 rule->location, &spec);
741 if (rc)
742 return rc;
743
f26e958c 744 if (spec.dmaq_id == EFX_FILTER_RX_DMAQ_ID_DROP)
b2bb7b77
BH
745 rule->ring_cookie = RX_CLS_FLOW_DISC;
746 else
747 rule->ring_cookie = spec.dmaq_id;
748
7c460d9b
BH
749 if ((spec.match_flags & EFX_FILTER_MATCH_ETHER_TYPE) &&
750 spec.ether_type == htons(ETH_P_IP) &&
751 (spec.match_flags & EFX_FILTER_MATCH_IP_PROTO) &&
752 (spec.ip_proto == IPPROTO_TCP || spec.ip_proto == IPPROTO_UDP) &&
753 !(spec.match_flags &
754 ~(EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_OUTER_VID |
755 EFX_FILTER_MATCH_LOC_HOST | EFX_FILTER_MATCH_REM_HOST |
756 EFX_FILTER_MATCH_IP_PROTO |
757 EFX_FILTER_MATCH_LOC_PORT | EFX_FILTER_MATCH_REM_PORT))) {
758 rule->flow_type = ((spec.ip_proto == IPPROTO_TCP) ?
759 TCP_V4_FLOW : UDP_V4_FLOW);
760 if (spec.match_flags & EFX_FILTER_MATCH_LOC_HOST) {
761 ip_entry->ip4dst = spec.loc_host[0];
762 ip_mask->ip4dst = IP4_ADDR_FULL_MASK;
763 }
764 if (spec.match_flags & EFX_FILTER_MATCH_REM_HOST) {
765 ip_entry->ip4src = spec.rem_host[0];
766 ip_mask->ip4src = IP4_ADDR_FULL_MASK;
767 }
768 if (spec.match_flags & EFX_FILTER_MATCH_LOC_PORT) {
769 ip_entry->pdst = spec.loc_port;
770 ip_mask->pdst = PORT_FULL_MASK;
771 }
772 if (spec.match_flags & EFX_FILTER_MATCH_REM_PORT) {
773 ip_entry->psrc = spec.rem_port;
774 ip_mask->psrc = PORT_FULL_MASK;
775 }
776 } else if (!(spec.match_flags &
777 ~(EFX_FILTER_MATCH_LOC_MAC | EFX_FILTER_MATCH_LOC_MAC_IG |
778 EFX_FILTER_MATCH_REM_MAC | EFX_FILTER_MATCH_ETHER_TYPE |
779 EFX_FILTER_MATCH_OUTER_VID))) {
b2bb7b77 780 rule->flow_type = ETHER_FLOW;
7c460d9b
BH
781 if (spec.match_flags &
782 (EFX_FILTER_MATCH_LOC_MAC | EFX_FILTER_MATCH_LOC_MAC_IG)) {
783 memcpy(mac_entry->h_dest, spec.loc_mac, ETH_ALEN);
784 if (spec.match_flags & EFX_FILTER_MATCH_LOC_MAC)
785 memset(mac_mask->h_dest, ~0, ETH_ALEN);
786 else
787 memcpy(mac_mask->h_dest, mac_addr_ig_mask,
788 ETH_ALEN);
b2bb7b77 789 }
7c460d9b
BH
790 if (spec.match_flags & EFX_FILTER_MATCH_REM_MAC) {
791 memcpy(mac_entry->h_source, spec.rem_mac, ETH_ALEN);
792 memset(mac_mask->h_source, ~0, ETH_ALEN);
793 }
794 if (spec.match_flags & EFX_FILTER_MATCH_ETHER_TYPE) {
795 mac_entry->h_proto = spec.ether_type;
796 mac_mask->h_proto = ETHER_TYPE_FULL_MASK;
797 }
798 } else {
799 /* The above should handle all filters that we insert */
800 WARN_ON(1);
801 return -EINVAL;
b2bb7b77
BH
802 }
803
7c460d9b
BH
804 if (spec.match_flags & EFX_FILTER_MATCH_OUTER_VID) {
805 rule->flow_type |= FLOW_EXT;
806 rule->h_ext.vlan_tci = spec.outer_vid;
807 rule->m_ext.vlan_tci = htons(0xfff);
b2bb7b77 808 }
7c460d9b 809
b2bb7b77
BH
810 return rc;
811}
812
765c9f46
BH
813static int
814efx_ethtool_get_rxnfc(struct net_device *net_dev,
b2bb7b77 815 struct ethtool_rxnfc *info, u32 *rule_locs)
765c9f46
BH
816{
817 struct efx_nic *efx = netdev_priv(net_dev);
818
819 switch (info->cmd) {
820 case ETHTOOL_GRXRINGS:
821 info->data = efx->n_rx_channels;
822 return 0;
823
824 case ETHTOOL_GRXFH: {
825 unsigned min_revision = 0;
826
827 info->data = 0;
828 switch (info->flow_type) {
829 case TCP_V4_FLOW:
830 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
831 /* fall through */
832 case UDP_V4_FLOW:
833 case SCTP_V4_FLOW:
834 case AH_ESP_V4_FLOW:
835 case IPV4_FLOW:
836 info->data |= RXH_IP_SRC | RXH_IP_DST;
837 min_revision = EFX_REV_FALCON_B0;
838 break;
839 case TCP_V6_FLOW:
840 info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
841 /* fall through */
842 case UDP_V6_FLOW:
843 case SCTP_V6_FLOW:
844 case AH_ESP_V6_FLOW:
845 case IPV6_FLOW:
846 info->data |= RXH_IP_SRC | RXH_IP_DST;
847 min_revision = EFX_REV_SIENA_A0;
848 break;
849 default:
850 break;
851 }
852 if (efx_nic_rev(efx) < min_revision)
853 info->data = 0;
854 return 0;
855 }
856
b2bb7b77
BH
857 case ETHTOOL_GRXCLSRLCNT:
858 info->data = efx_filter_get_rx_id_limit(efx);
859 if (info->data == 0)
860 return -EOPNOTSUPP;
861 info->data |= RX_CLS_LOC_SPECIAL;
862 info->rule_cnt =
863 efx_filter_count_rx_used(efx, EFX_FILTER_PRI_MANUAL);
864 return 0;
865
866 case ETHTOOL_GRXCLSRULE:
867 if (efx_filter_get_rx_id_limit(efx) == 0)
868 return -EOPNOTSUPP;
869 return efx_ethtool_get_class_rule(efx, &info->fs);
870
871 case ETHTOOL_GRXCLSRLALL: {
872 s32 rc;
873 info->data = efx_filter_get_rx_id_limit(efx);
874 if (info->data == 0)
875 return -EOPNOTSUPP;
876 rc = efx_filter_get_rx_ids(efx, EFX_FILTER_PRI_MANUAL,
877 rule_locs, info->rule_cnt);
878 if (rc < 0)
879 return rc;
880 info->rule_cnt = rc;
881 return 0;
882 }
883
765c9f46
BH
884 default:
885 return -EOPNOTSUPP;
886 }
887}
888
b2bb7b77
BH
889static int efx_ethtool_set_class_rule(struct efx_nic *efx,
890 struct ethtool_rx_flow_spec *rule)
b4187e42 891{
b2bb7b77
BH
892 struct ethtool_tcpip4_spec *ip_entry = &rule->h_u.tcp_ip4_spec;
893 struct ethtool_tcpip4_spec *ip_mask = &rule->m_u.tcp_ip4_spec;
894 struct ethhdr *mac_entry = &rule->h_u.ether_spec;
895 struct ethhdr *mac_mask = &rule->m_u.ether_spec;
896 struct efx_filter_spec spec;
c39d35eb 897 int rc;
b4187e42 898
b2bb7b77 899 /* Check that user wants us to choose the location */
9e0f9a10 900 if (rule->location != RX_CLS_LOC_ANY)
b4187e42
BH
901 return -EINVAL;
902
b2bb7b77
BH
903 /* Range-check ring_cookie */
904 if (rule->ring_cookie >= efx->n_rx_channels &&
905 rule->ring_cookie != RX_CLS_FLOW_DISC)
b4187e42
BH
906 return -EINVAL;
907
b2bb7b77
BH
908 /* Check for unsupported extensions */
909 if ((rule->flow_type & FLOW_EXT) &&
0e0c3408 910 (rule->m_ext.vlan_etype || rule->m_ext.data[0] ||
b2bb7b77
BH
911 rule->m_ext.data[1]))
912 return -EINVAL;
913
85740cdf
BH
914 efx_filter_init_rx(&spec, EFX_FILTER_PRI_MANUAL,
915 efx->rx_scatter ? EFX_FILTER_FLAG_RX_SCATTER : 0,
b2bb7b77 916 (rule->ring_cookie == RX_CLS_FLOW_DISC) ?
f26e958c 917 EFX_FILTER_RX_DMAQ_ID_DROP : rule->ring_cookie);
c39d35eb 918
7c460d9b 919 switch (rule->flow_type & ~FLOW_EXT) {
b4187e42 920 case TCP_V4_FLOW:
7c460d9b
BH
921 case UDP_V4_FLOW:
922 spec.match_flags = (EFX_FILTER_MATCH_ETHER_TYPE |
923 EFX_FILTER_MATCH_IP_PROTO);
924 spec.ether_type = htons(ETH_P_IP);
925 spec.ip_proto = ((rule->flow_type & ~FLOW_EXT) == TCP_V4_FLOW ?
926 IPPROTO_TCP : IPPROTO_UDP);
927 if (ip_mask->ip4dst) {
928 if (ip_mask->ip4dst != IP4_ADDR_FULL_MASK)
929 return -EINVAL;
930 spec.match_flags |= EFX_FILTER_MATCH_LOC_HOST;
931 spec.loc_host[0] = ip_entry->ip4dst;
932 }
933 if (ip_mask->ip4src) {
934 if (ip_mask->ip4src != IP4_ADDR_FULL_MASK)
935 return -EINVAL;
936 spec.match_flags |= EFX_FILTER_MATCH_REM_HOST;
937 spec.rem_host[0] = ip_entry->ip4src;
938 }
939 if (ip_mask->pdst) {
940 if (ip_mask->pdst != PORT_FULL_MASK)
941 return -EINVAL;
942 spec.match_flags |= EFX_FILTER_MATCH_LOC_PORT;
943 spec.loc_port = ip_entry->pdst;
944 }
945 if (ip_mask->psrc) {
946 if (ip_mask->psrc != PORT_FULL_MASK)
947 return -EINVAL;
948 spec.match_flags |= EFX_FILTER_MATCH_REM_PORT;
949 spec.rem_port = ip_entry->psrc;
950 }
951 if (ip_mask->tos)
b4187e42
BH
952 return -EINVAL;
953 break;
c274d65c 954
7c460d9b
BH
955 case ETHER_FLOW:
956 if (!is_zero_ether_addr(mac_mask->h_dest)) {
957 if (ether_addr_equal(mac_mask->h_dest,
958 mac_addr_ig_mask))
959 spec.match_flags |= EFX_FILTER_MATCH_LOC_MAC_IG;
960 else if (is_broadcast_ether_addr(mac_mask->h_dest))
961 spec.match_flags |= EFX_FILTER_MATCH_LOC_MAC;
c274d65c 962 else
7c460d9b
BH
963 return -EINVAL;
964 memcpy(spec.loc_mac, mac_entry->h_dest, ETH_ALEN);
c274d65c 965 }
7c460d9b
BH
966 if (!is_zero_ether_addr(mac_mask->h_source)) {
967 if (!is_broadcast_ether_addr(mac_mask->h_source))
968 return -EINVAL;
969 spec.match_flags |= EFX_FILTER_MATCH_REM_MAC;
970 memcpy(spec.rem_mac, mac_entry->h_source, ETH_ALEN);
971 }
972 if (mac_mask->h_proto) {
973 if (mac_mask->h_proto != ETHER_TYPE_FULL_MASK)
974 return -EINVAL;
975 spec.match_flags |= EFX_FILTER_MATCH_ETHER_TYPE;
976 spec.ether_type = mac_entry->h_proto;
c274d65c 977 }
b4187e42 978 break;
c39d35eb 979
b4187e42
BH
980 default:
981 return -EINVAL;
982 }
983
7c460d9b
BH
984 if ((rule->flow_type & FLOW_EXT) && rule->m_ext.vlan_tci) {
985 if (rule->m_ext.vlan_tci != htons(0xfff))
986 return -EINVAL;
987 spec.match_flags |= EFX_FILTER_MATCH_OUTER_VID;
988 spec.outer_vid = rule->h_ext.vlan_tci;
989 }
990
b2bb7b77
BH
991 rc = efx_filter_insert_filter(efx, &spec, true);
992 if (rc < 0)
993 return rc;
47a8467c 994
b2bb7b77
BH
995 rule->location = rc;
996 return 0;
997}
998
999static int efx_ethtool_set_rxnfc(struct net_device *net_dev,
1000 struct ethtool_rxnfc *info)
1001{
1002 struct efx_nic *efx = netdev_priv(net_dev);
1003
1004 if (efx_filter_get_rx_id_limit(efx) == 0)
1005 return -EOPNOTSUPP;
1006
1007 switch (info->cmd) {
1008 case ETHTOOL_SRXCLSRLINS:
1009 return efx_ethtool_set_class_rule(efx, &info->fs);
1010
1011 case ETHTOOL_SRXCLSRLDEL:
1012 return efx_filter_remove_id_safe(efx, EFX_FILTER_PRI_MANUAL,
1013 info->fs.location);
1014
1015 default:
1016 return -EOPNOTSUPP;
1017 }
b4187e42
BH
1018}
1019
7850f63f 1020static u32 efx_ethtool_get_rxfh_indir_size(struct net_device *net_dev)
765c9f46
BH
1021{
1022 struct efx_nic *efx = netdev_priv(net_dev);
765c9f46 1023
cd2d5b52
BH
1024 return ((efx_nic_rev(efx) < EFX_REV_FALCON_B0 ||
1025 efx->n_rx_channels == 1) ?
7850f63f
BH
1026 0 : ARRAY_SIZE(efx->rx_indir_table));
1027}
1028
1029static int efx_ethtool_get_rxfh_indir(struct net_device *net_dev, u32 *indir)
1030{
1031 struct efx_nic *efx = netdev_priv(net_dev);
765c9f46 1032
7850f63f 1033 memcpy(indir, efx->rx_indir_table, sizeof(efx->rx_indir_table));
765c9f46
BH
1034 return 0;
1035}
1036
1037static int efx_ethtool_set_rxfh_indir(struct net_device *net_dev,
7850f63f 1038 const u32 *indir)
765c9f46
BH
1039{
1040 struct efx_nic *efx = netdev_priv(net_dev);
765c9f46 1041
7850f63f 1042 memcpy(efx->rx_indir_table, indir, sizeof(efx->rx_indir_table));
d43050c0 1043 efx->type->rx_push_rss_config(efx);
765c9f46
BH
1044 return 0;
1045}
1046
b51ca34a
FW
1047static int efx_ethtool_get_ts_info(struct net_device *net_dev,
1048 struct ethtool_ts_info *ts_info)
62ebac92
BH
1049{
1050 struct efx_nic *efx = netdev_priv(net_dev);
1051
1052 /* Software capabilities */
1053 ts_info->so_timestamping = (SOF_TIMESTAMPING_RX_SOFTWARE |
1054 SOF_TIMESTAMPING_SOFTWARE);
1055 ts_info->phc_index = -1;
1056
1057 efx_ptp_get_ts_info(efx, ts_info);
1058 return 0;
1059}
1060
c087bd2c
SH
1061static int efx_ethtool_get_module_eeprom(struct net_device *net_dev,
1062 struct ethtool_eeprom *ee,
1063 u8 *data)
1064{
1065 struct efx_nic *efx = netdev_priv(net_dev);
1066 int ret;
1067
1068 if (!efx->phy_op || !efx->phy_op->get_module_eeprom)
1069 return -EOPNOTSUPP;
1070
1071 mutex_lock(&efx->mac_lock);
1072 ret = efx->phy_op->get_module_eeprom(efx, ee, data);
1073 mutex_unlock(&efx->mac_lock);
1074
1075 return ret;
1076}
1077
1078static int efx_ethtool_get_module_info(struct net_device *net_dev,
1079 struct ethtool_modinfo *modinfo)
1080{
1081 struct efx_nic *efx = netdev_priv(net_dev);
1082 int ret;
1083
1084 if (!efx->phy_op || !efx->phy_op->get_module_info)
1085 return -EOPNOTSUPP;
1086
1087 mutex_lock(&efx->mac_lock);
1088 ret = efx->phy_op->get_module_info(efx, modinfo);
1089 mutex_unlock(&efx->mac_lock);
1090
1091 return ret;
1092}
1093
0fc0b732 1094const struct ethtool_ops efx_ethtool_ops = {
8ceee660
BH
1095 .get_settings = efx_ethtool_get_settings,
1096 .set_settings = efx_ethtool_set_settings,
1097 .get_drvinfo = efx_ethtool_get_drvinfo,
5b98c1bf
BH
1098 .get_regs_len = efx_ethtool_get_regs_len,
1099 .get_regs = efx_ethtool_get_regs,
62776d03
BH
1100 .get_msglevel = efx_ethtool_get_msglevel,
1101 .set_msglevel = efx_ethtool_set_msglevel,
8ceee660 1102 .nway_reset = efx_ethtool_nway_reset,
ed4ba4b5 1103 .get_link = ethtool_op_get_link,
8ceee660
BH
1104 .get_coalesce = efx_ethtool_get_coalesce,
1105 .set_coalesce = efx_ethtool_set_coalesce,
4642610c
BH
1106 .get_ringparam = efx_ethtool_get_ringparam,
1107 .set_ringparam = efx_ethtool_set_ringparam,
8ceee660
BH
1108 .get_pauseparam = efx_ethtool_get_pauseparam,
1109 .set_pauseparam = efx_ethtool_set_pauseparam,
3594e131 1110 .get_sset_count = efx_ethtool_get_sset_count,
3273c2e8 1111 .self_test = efx_ethtool_self_test,
8ceee660 1112 .get_strings = efx_ethtool_get_strings,
c5e129ac 1113 .set_phys_id = efx_ethtool_phys_id,
8ceee660 1114 .get_ethtool_stats = efx_ethtool_get_stats,
89c758fa
BH
1115 .get_wol = efx_ethtool_get_wol,
1116 .set_wol = efx_ethtool_set_wol,
eb9f6744 1117 .reset = efx_ethtool_reset,
765c9f46 1118 .get_rxnfc = efx_ethtool_get_rxnfc,
b2bb7b77 1119 .set_rxnfc = efx_ethtool_set_rxnfc,
7850f63f 1120 .get_rxfh_indir_size = efx_ethtool_get_rxfh_indir_size,
765c9f46
BH
1121 .get_rxfh_indir = efx_ethtool_get_rxfh_indir,
1122 .set_rxfh_indir = efx_ethtool_set_rxfh_indir,
62ebac92 1123 .get_ts_info = efx_ethtool_get_ts_info,
c087bd2c
SH
1124 .get_module_info = efx_ethtool_get_module_info,
1125 .get_module_eeprom = efx_ethtool_get_module_eeprom,
8ceee660 1126};