1 /****************************************************************************
2 * Driver for Solarflare network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
4 * Copyright 2006-2013 Solarflare Communications Inc.
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.
11 #include <linux/netdevice.h>
12 #include <linux/ethtool.h>
13 #include <linux/rtnetlink.h>
15 #include "net_driver.h"
16 #include "workarounds.h"
22 struct efx_sw_stat_desc
{
25 EFX_ETHTOOL_STAT_SOURCE_nic
,
26 EFX_ETHTOOL_STAT_SOURCE_channel
,
27 EFX_ETHTOOL_STAT_SOURCE_tx_queue
30 u64(*get_stat
) (void *field
); /* Reader function */
33 /* Initialiser for a struct efx_sw_stat_desc with type-checking */
34 #define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \
35 get_stat_function) { \
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, \
45 static u64
efx_get_uint_stat(void *field
)
47 return *(unsigned int *)field
;
50 static u64
efx_get_atomic_stat(void *field
)
52 return atomic_read((atomic_t
*) field
);
55 #define EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(field) \
56 EFX_ETHTOOL_STAT(field, nic, field, \
57 atomic_t, efx_get_atomic_stat)
59 #define EFX_ETHTOOL_UINT_CHANNEL_STAT(field) \
60 EFX_ETHTOOL_STAT(field, channel, n_##field, \
61 unsigned int, efx_get_uint_stat)
63 #define EFX_ETHTOOL_UINT_TXQ_STAT(field) \
64 EFX_ETHTOOL_STAT(tx_##field, tx_queue, field, \
65 unsigned int, efx_get_uint_stat)
67 static const struct efx_sw_stat_desc efx_sw_stat_desc
[] = {
68 EFX_ETHTOOL_UINT_TXQ_STAT(merge_events
),
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
),
73 EFX_ETHTOOL_UINT_TXQ_STAT(pio_packets
),
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
),
78 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_mcast_mismatch
),
79 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_frm_trunc
),
80 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_merge_events
),
81 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_merge_packets
),
84 #define EFX_ETHTOOL_SW_STAT_COUNT ARRAY_SIZE(efx_sw_stat_desc)
86 #define EFX_ETHTOOL_EEPROM_MAGIC 0xEFAB
88 /**************************************************************************
92 **************************************************************************
95 /* Identify device by flashing LEDs */
96 static int efx_ethtool_phys_id(struct net_device
*net_dev
,
97 enum ethtool_phys_id_state state
)
99 struct efx_nic
*efx
= netdev_priv(net_dev
);
100 enum efx_led_mode mode
= EFX_LED_DEFAULT
;
109 case ETHTOOL_ID_INACTIVE
:
110 mode
= EFX_LED_DEFAULT
;
112 case ETHTOOL_ID_ACTIVE
:
113 return 1; /* cycle on/off once per second */
116 efx
->type
->set_id_led(efx
, mode
);
120 /* This must be called with rtnl_lock held. */
121 static int efx_ethtool_get_settings(struct net_device
*net_dev
,
122 struct ethtool_cmd
*ecmd
)
124 struct efx_nic
*efx
= netdev_priv(net_dev
);
125 struct efx_link_state
*link_state
= &efx
->link_state
;
127 mutex_lock(&efx
->mac_lock
);
128 efx
->phy_op
->get_settings(efx
, ecmd
);
129 mutex_unlock(&efx
->mac_lock
);
131 /* Both MACs support pause frames (bidirectional and respond-only) */
132 ecmd
->supported
|= SUPPORTED_Pause
| SUPPORTED_Asym_Pause
;
134 if (LOOPBACK_INTERNAL(efx
)) {
135 ethtool_cmd_speed_set(ecmd
, link_state
->speed
);
136 ecmd
->duplex
= link_state
->fd
? DUPLEX_FULL
: DUPLEX_HALF
;
142 /* This must be called with rtnl_lock held. */
143 static int efx_ethtool_set_settings(struct net_device
*net_dev
,
144 struct ethtool_cmd
*ecmd
)
146 struct efx_nic
*efx
= netdev_priv(net_dev
);
149 /* GMAC does not support 1000Mbps HD */
150 if ((ethtool_cmd_speed(ecmd
) == SPEED_1000
) &&
151 (ecmd
->duplex
!= DUPLEX_FULL
)) {
152 netif_dbg(efx
, drv
, efx
->net_dev
,
153 "rejecting unsupported 1000Mbps HD setting\n");
157 mutex_lock(&efx
->mac_lock
);
158 rc
= efx
->phy_op
->set_settings(efx
, ecmd
);
159 mutex_unlock(&efx
->mac_lock
);
163 static void efx_ethtool_get_drvinfo(struct net_device
*net_dev
,
164 struct ethtool_drvinfo
*info
)
166 struct efx_nic
*efx
= netdev_priv(net_dev
);
168 strlcpy(info
->driver
, KBUILD_MODNAME
, sizeof(info
->driver
));
169 strlcpy(info
->version
, EFX_DRIVER_VERSION
, sizeof(info
->version
));
170 if (efx_nic_rev(efx
) >= EFX_REV_SIENA_A0
)
171 efx_mcdi_print_fwver(efx
, info
->fw_version
,
172 sizeof(info
->fw_version
));
173 strlcpy(info
->bus_info
, pci_name(efx
->pci_dev
), sizeof(info
->bus_info
));
176 static int efx_ethtool_get_regs_len(struct net_device
*net_dev
)
178 return efx_nic_get_regs_len(netdev_priv(net_dev
));
181 static void efx_ethtool_get_regs(struct net_device
*net_dev
,
182 struct ethtool_regs
*regs
, void *buf
)
184 struct efx_nic
*efx
= netdev_priv(net_dev
);
186 regs
->version
= efx
->type
->revision
;
187 efx_nic_get_regs(efx
, buf
);
190 static u32
efx_ethtool_get_msglevel(struct net_device
*net_dev
)
192 struct efx_nic
*efx
= netdev_priv(net_dev
);
193 return efx
->msg_enable
;
196 static void efx_ethtool_set_msglevel(struct net_device
*net_dev
, u32 msg_enable
)
198 struct efx_nic
*efx
= netdev_priv(net_dev
);
199 efx
->msg_enable
= msg_enable
;
203 * efx_fill_test - fill in an individual self-test entry
204 * @test_index: Index of the test
205 * @strings: Ethtool strings, or %NULL
206 * @data: Ethtool test results, or %NULL
207 * @test: Pointer to test result (used only if data != %NULL)
208 * @unit_format: Unit name format (e.g. "chan\%d")
209 * @unit_id: Unit id (e.g. 0 for "chan0")
210 * @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
211 * @test_id: Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent")
213 * Fill in an individual self-test entry.
215 static void efx_fill_test(unsigned int test_index
, u8
*strings
, u64
*data
,
216 int *test
, const char *unit_format
, int unit_id
,
217 const char *test_format
, const char *test_id
)
219 char unit_str
[ETH_GSTRING_LEN
], test_str
[ETH_GSTRING_LEN
];
221 /* Fill data value, if applicable */
223 data
[test_index
] = *test
;
225 /* Fill string, if applicable */
227 if (strchr(unit_format
, '%'))
228 snprintf(unit_str
, sizeof(unit_str
),
229 unit_format
, unit_id
);
231 strcpy(unit_str
, unit_format
);
232 snprintf(test_str
, sizeof(test_str
), test_format
, test_id
);
233 snprintf(strings
+ test_index
* ETH_GSTRING_LEN
,
235 "%-6s %-24s", unit_str
, test_str
);
239 #define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
240 #define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue
241 #define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue
242 #define EFX_LOOPBACK_NAME(_mode, _counter) \
243 "loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode)
246 * efx_fill_loopback_test - fill in a block of loopback self-test entries
248 * @lb_tests: Efx loopback self-test results structure
249 * @mode: Loopback test mode
250 * @test_index: Starting index of the test
251 * @strings: Ethtool strings, or %NULL
252 * @data: Ethtool test results, or %NULL
254 * Fill in a block of loopback self-test entries. Return new test
257 static int efx_fill_loopback_test(struct efx_nic
*efx
,
258 struct efx_loopback_self_tests
*lb_tests
,
259 enum efx_loopback_mode mode
,
260 unsigned int test_index
,
261 u8
*strings
, u64
*data
)
263 struct efx_channel
*channel
=
264 efx_get_channel(efx
, efx
->tx_channel_offset
);
265 struct efx_tx_queue
*tx_queue
;
267 efx_for_each_channel_tx_queue(tx_queue
, channel
) {
268 efx_fill_test(test_index
++, strings
, data
,
269 &lb_tests
->tx_sent
[tx_queue
->queue
],
270 EFX_TX_QUEUE_NAME(tx_queue
),
271 EFX_LOOPBACK_NAME(mode
, "tx_sent"));
272 efx_fill_test(test_index
++, strings
, data
,
273 &lb_tests
->tx_done
[tx_queue
->queue
],
274 EFX_TX_QUEUE_NAME(tx_queue
),
275 EFX_LOOPBACK_NAME(mode
, "tx_done"));
277 efx_fill_test(test_index
++, strings
, data
,
280 EFX_LOOPBACK_NAME(mode
, "rx_good"));
281 efx_fill_test(test_index
++, strings
, data
,
284 EFX_LOOPBACK_NAME(mode
, "rx_bad"));
290 * efx_ethtool_fill_self_tests - get self-test details
292 * @tests: Efx self-test results structure, or %NULL
293 * @strings: Ethtool strings, or %NULL
294 * @data: Ethtool test results, or %NULL
296 * Get self-test number of strings, strings, and/or test results.
297 * Return number of strings (== number of test results).
299 * The reason for merging these three functions is to make sure that
300 * they can never be inconsistent.
302 static int efx_ethtool_fill_self_tests(struct efx_nic
*efx
,
303 struct efx_self_tests
*tests
,
304 u8
*strings
, u64
*data
)
306 struct efx_channel
*channel
;
307 unsigned int n
= 0, i
;
308 enum efx_loopback_mode mode
;
310 efx_fill_test(n
++, strings
, data
, &tests
->phy_alive
,
311 "phy", 0, "alive", NULL
);
312 efx_fill_test(n
++, strings
, data
, &tests
->nvram
,
313 "core", 0, "nvram", NULL
);
314 efx_fill_test(n
++, strings
, data
, &tests
->interrupt
,
315 "core", 0, "interrupt", NULL
);
318 efx_for_each_channel(channel
, efx
) {
319 efx_fill_test(n
++, strings
, data
,
320 &tests
->eventq_dma
[channel
->channel
],
321 EFX_CHANNEL_NAME(channel
),
323 efx_fill_test(n
++, strings
, data
,
324 &tests
->eventq_int
[channel
->channel
],
325 EFX_CHANNEL_NAME(channel
),
329 efx_fill_test(n
++, strings
, data
, &tests
->memory
,
330 "core", 0, "memory", NULL
);
331 efx_fill_test(n
++, strings
, data
, &tests
->registers
,
332 "core", 0, "registers", NULL
);
334 if (efx
->phy_op
->run_tests
!= NULL
) {
335 EFX_BUG_ON_PARANOID(efx
->phy_op
->test_name
== NULL
);
337 for (i
= 0; true; ++i
) {
340 EFX_BUG_ON_PARANOID(i
>= EFX_MAX_PHY_TESTS
);
341 name
= efx
->phy_op
->test_name(efx
, i
);
345 efx_fill_test(n
++, strings
, data
, &tests
->phy_ext
[i
],
346 "phy", 0, name
, NULL
);
351 for (mode
= LOOPBACK_NONE
; mode
<= LOOPBACK_TEST_MAX
; mode
++) {
352 if (!(efx
->loopback_modes
& (1 << mode
)))
354 n
= efx_fill_loopback_test(efx
,
355 &tests
->loopback
[mode
], mode
, n
,
362 static size_t efx_describe_per_queue_stats(struct efx_nic
*efx
, u8
*strings
)
365 struct efx_channel
*channel
;
367 efx_for_each_channel(channel
, efx
) {
368 if (efx_channel_has_tx_queues(channel
)) {
370 if (strings
!= NULL
) {
371 snprintf(strings
, ETH_GSTRING_LEN
,
373 channel
->tx_queue
[0].queue
/
376 strings
+= ETH_GSTRING_LEN
;
380 efx_for_each_channel(channel
, efx
) {
381 if (efx_channel_has_rx_queue(channel
)) {
383 if (strings
!= NULL
) {
384 snprintf(strings
, ETH_GSTRING_LEN
,
385 "rx-%d.rx_packets", channel
->channel
);
386 strings
+= ETH_GSTRING_LEN
;
393 static int efx_ethtool_get_sset_count(struct net_device
*net_dev
,
396 struct efx_nic
*efx
= netdev_priv(net_dev
);
398 switch (string_set
) {
400 return efx
->type
->describe_stats(efx
, NULL
) +
401 EFX_ETHTOOL_SW_STAT_COUNT
+
402 efx_describe_per_queue_stats(efx
, NULL
) +
403 efx_ptp_describe_stats(efx
, NULL
);
405 return efx_ethtool_fill_self_tests(efx
, NULL
, NULL
, NULL
);
411 static void efx_ethtool_get_strings(struct net_device
*net_dev
,
412 u32 string_set
, u8
*strings
)
414 struct efx_nic
*efx
= netdev_priv(net_dev
);
417 switch (string_set
) {
419 strings
+= (efx
->type
->describe_stats(efx
, strings
) *
421 for (i
= 0; i
< EFX_ETHTOOL_SW_STAT_COUNT
; i
++)
422 strlcpy(strings
+ i
* ETH_GSTRING_LEN
,
423 efx_sw_stat_desc
[i
].name
, ETH_GSTRING_LEN
);
424 strings
+= EFX_ETHTOOL_SW_STAT_COUNT
* ETH_GSTRING_LEN
;
425 strings
+= (efx_describe_per_queue_stats(efx
, strings
) *
427 efx_ptp_describe_stats(efx
, strings
);
430 efx_ethtool_fill_self_tests(efx
, NULL
, strings
, NULL
);
433 /* No other string sets */
438 static void efx_ethtool_get_stats(struct net_device
*net_dev
,
439 struct ethtool_stats
*stats
,
442 struct efx_nic
*efx
= netdev_priv(net_dev
);
443 const struct efx_sw_stat_desc
*stat
;
444 struct efx_channel
*channel
;
445 struct efx_tx_queue
*tx_queue
;
446 struct efx_rx_queue
*rx_queue
;
449 spin_lock_bh(&efx
->stats_lock
);
451 /* Get NIC statistics */
452 data
+= efx
->type
->update_stats(efx
, data
, NULL
);
454 /* Get software statistics */
455 for (i
= 0; i
< EFX_ETHTOOL_SW_STAT_COUNT
; i
++) {
456 stat
= &efx_sw_stat_desc
[i
];
457 switch (stat
->source
) {
458 case EFX_ETHTOOL_STAT_SOURCE_nic
:
459 data
[i
] = stat
->get_stat((void *)efx
+ stat
->offset
);
461 case EFX_ETHTOOL_STAT_SOURCE_channel
:
463 efx_for_each_channel(channel
, efx
)
464 data
[i
] += stat
->get_stat((void *)channel
+
467 case EFX_ETHTOOL_STAT_SOURCE_tx_queue
:
469 efx_for_each_channel(channel
, efx
) {
470 efx_for_each_channel_tx_queue(tx_queue
, channel
)
472 stat
->get_stat((void *)tx_queue
478 data
+= EFX_ETHTOOL_SW_STAT_COUNT
;
480 spin_unlock_bh(&efx
->stats_lock
);
482 efx_for_each_channel(channel
, efx
) {
483 if (efx_channel_has_tx_queues(channel
)) {
485 efx_for_each_channel_tx_queue(tx_queue
, channel
) {
486 *data
+= tx_queue
->tx_packets
;
491 efx_for_each_channel(channel
, efx
) {
492 if (efx_channel_has_rx_queue(channel
)) {
494 efx_for_each_channel_rx_queue(rx_queue
, channel
) {
495 *data
+= rx_queue
->rx_packets
;
501 efx_ptp_update_stats(efx
, data
);
504 static void efx_ethtool_self_test(struct net_device
*net_dev
,
505 struct ethtool_test
*test
, u64
*data
)
507 struct efx_nic
*efx
= netdev_priv(net_dev
);
508 struct efx_self_tests
*efx_tests
;
512 efx_tests
= kzalloc(sizeof(*efx_tests
), GFP_KERNEL
);
516 if (efx
->state
!= STATE_READY
) {
521 netif_info(efx
, drv
, efx
->net_dev
, "starting %sline testing\n",
522 (test
->flags
& ETH_TEST_FL_OFFLINE
) ? "off" : "on");
524 /* We need rx buffers and interrupts. */
525 already_up
= (efx
->net_dev
->flags
& IFF_UP
);
527 rc
= dev_open(efx
->net_dev
);
529 netif_err(efx
, drv
, efx
->net_dev
,
530 "failed opening device.\n");
535 rc
= efx_selftest(efx
, efx_tests
, test
->flags
);
538 dev_close(efx
->net_dev
);
540 netif_info(efx
, drv
, efx
->net_dev
, "%s %sline self-tests\n",
541 rc
== 0 ? "passed" : "failed",
542 (test
->flags
& ETH_TEST_FL_OFFLINE
) ? "off" : "on");
545 efx_ethtool_fill_self_tests(efx
, efx_tests
, NULL
, data
);
549 test
->flags
|= ETH_TEST_FL_FAILED
;
552 /* Restart autonegotiation */
553 static int efx_ethtool_nway_reset(struct net_device
*net_dev
)
555 struct efx_nic
*efx
= netdev_priv(net_dev
);
557 return mdio45_nway_restart(&efx
->mdio
);
561 * Each channel has a single IRQ and moderation timer, started by any
562 * completion (or other event). Unless the module parameter
563 * separate_tx_channels is set, IRQs and moderation are therefore
564 * shared between RX and TX completions. In this case, when RX IRQ
565 * moderation is explicitly changed then TX IRQ moderation is
566 * automatically changed too, but otherwise we fail if the two values
567 * are requested to be different.
569 * The hardware does not support a limit on the number of completions
570 * before an IRQ, so we do not use the max_frames fields. We should
571 * report and require that max_frames == (usecs != 0), but this would
572 * invalidate existing user documentation.
574 * The hardware does not have distinct settings for interrupt
575 * moderation while the previous IRQ is being handled, so we should
576 * not use the 'irq' fields. However, an earlier developer
577 * misunderstood the meaning of the 'irq' fields and the driver did
578 * not support the standard fields. To avoid invalidating existing
579 * user documentation, we report and accept changes through either the
580 * standard or 'irq' fields. If both are changed at the same time, we
581 * prefer the standard field.
583 * We implement adaptive IRQ moderation, but use a different algorithm
584 * from that assumed in the definition of struct ethtool_coalesce.
585 * Therefore we do not use any of the adaptive moderation parameters
589 static int efx_ethtool_get_coalesce(struct net_device
*net_dev
,
590 struct ethtool_coalesce
*coalesce
)
592 struct efx_nic
*efx
= netdev_priv(net_dev
);
593 unsigned int tx_usecs
, rx_usecs
;
596 efx_get_irq_moderation(efx
, &tx_usecs
, &rx_usecs
, &rx_adaptive
);
598 coalesce
->tx_coalesce_usecs
= tx_usecs
;
599 coalesce
->tx_coalesce_usecs_irq
= tx_usecs
;
600 coalesce
->rx_coalesce_usecs
= rx_usecs
;
601 coalesce
->rx_coalesce_usecs_irq
= rx_usecs
;
602 coalesce
->use_adaptive_rx_coalesce
= rx_adaptive
;
607 static int efx_ethtool_set_coalesce(struct net_device
*net_dev
,
608 struct ethtool_coalesce
*coalesce
)
610 struct efx_nic
*efx
= netdev_priv(net_dev
);
611 struct efx_channel
*channel
;
612 unsigned int tx_usecs
, rx_usecs
;
613 bool adaptive
, rx_may_override_tx
;
616 if (coalesce
->use_adaptive_tx_coalesce
)
619 efx_get_irq_moderation(efx
, &tx_usecs
, &rx_usecs
, &adaptive
);
621 if (coalesce
->rx_coalesce_usecs
!= rx_usecs
)
622 rx_usecs
= coalesce
->rx_coalesce_usecs
;
624 rx_usecs
= coalesce
->rx_coalesce_usecs_irq
;
626 adaptive
= coalesce
->use_adaptive_rx_coalesce
;
628 /* If channels are shared, TX IRQ moderation can be quietly
629 * overridden unless it is changed from its old value.
631 rx_may_override_tx
= (coalesce
->tx_coalesce_usecs
== tx_usecs
&&
632 coalesce
->tx_coalesce_usecs_irq
== tx_usecs
);
633 if (coalesce
->tx_coalesce_usecs
!= tx_usecs
)
634 tx_usecs
= coalesce
->tx_coalesce_usecs
;
636 tx_usecs
= coalesce
->tx_coalesce_usecs_irq
;
638 rc
= efx_init_irq_moderation(efx
, tx_usecs
, rx_usecs
, adaptive
,
643 efx_for_each_channel(channel
, efx
)
644 efx
->type
->push_irq_moderation(channel
);
649 static void efx_ethtool_get_ringparam(struct net_device
*net_dev
,
650 struct ethtool_ringparam
*ring
)
652 struct efx_nic
*efx
= netdev_priv(net_dev
);
654 ring
->rx_max_pending
= EFX_MAX_DMAQ_SIZE
;
655 ring
->tx_max_pending
= EFX_TXQ_MAX_ENT(efx
);
656 ring
->rx_pending
= efx
->rxq_entries
;
657 ring
->tx_pending
= efx
->txq_entries
;
660 static int efx_ethtool_set_ringparam(struct net_device
*net_dev
,
661 struct ethtool_ringparam
*ring
)
663 struct efx_nic
*efx
= netdev_priv(net_dev
);
666 if (ring
->rx_mini_pending
|| ring
->rx_jumbo_pending
||
667 ring
->rx_pending
> EFX_MAX_DMAQ_SIZE
||
668 ring
->tx_pending
> EFX_TXQ_MAX_ENT(efx
))
671 if (ring
->rx_pending
< EFX_RXQ_MIN_ENT
) {
672 netif_err(efx
, drv
, efx
->net_dev
,
673 "RX queues cannot be smaller than %u\n",
678 txq_entries
= max(ring
->tx_pending
, EFX_TXQ_MIN_ENT(efx
));
679 if (txq_entries
!= ring
->tx_pending
)
680 netif_warn(efx
, drv
, efx
->net_dev
,
681 "increasing TX queue size to minimum of %u\n",
684 return efx_realloc_channels(efx
, ring
->rx_pending
, txq_entries
);
687 static int efx_ethtool_set_pauseparam(struct net_device
*net_dev
,
688 struct ethtool_pauseparam
*pause
)
690 struct efx_nic
*efx
= netdev_priv(net_dev
);
691 u8 wanted_fc
, old_fc
;
695 mutex_lock(&efx
->mac_lock
);
697 wanted_fc
= ((pause
->rx_pause
? EFX_FC_RX
: 0) |
698 (pause
->tx_pause
? EFX_FC_TX
: 0) |
699 (pause
->autoneg
? EFX_FC_AUTO
: 0));
701 if ((wanted_fc
& EFX_FC_TX
) && !(wanted_fc
& EFX_FC_RX
)) {
702 netif_dbg(efx
, drv
, efx
->net_dev
,
703 "Flow control unsupported: tx ON rx OFF\n");
708 if ((wanted_fc
& EFX_FC_AUTO
) && !efx
->link_advertising
) {
709 netif_dbg(efx
, drv
, efx
->net_dev
,
710 "Autonegotiation is disabled\n");
715 /* Hook for Falcon bug 11482 workaround */
716 if (efx
->type
->prepare_enable_fc_tx
&&
717 (wanted_fc
& EFX_FC_TX
) && !(efx
->wanted_fc
& EFX_FC_TX
))
718 efx
->type
->prepare_enable_fc_tx(efx
);
720 old_adv
= efx
->link_advertising
;
721 old_fc
= efx
->wanted_fc
;
722 efx_link_set_wanted_fc(efx
, wanted_fc
);
723 if (efx
->link_advertising
!= old_adv
||
724 (efx
->wanted_fc
^ old_fc
) & EFX_FC_AUTO
) {
725 rc
= efx
->phy_op
->reconfigure(efx
);
727 netif_err(efx
, drv
, efx
->net_dev
,
728 "Unable to advertise requested flow "
729 "control setting\n");
734 /* Reconfigure the MAC. The PHY *may* generate a link state change event
735 * if the user just changed the advertised capabilities, but there's no
736 * harm doing this twice */
737 efx_mac_reconfigure(efx
);
740 mutex_unlock(&efx
->mac_lock
);
745 static void efx_ethtool_get_pauseparam(struct net_device
*net_dev
,
746 struct ethtool_pauseparam
*pause
)
748 struct efx_nic
*efx
= netdev_priv(net_dev
);
750 pause
->rx_pause
= !!(efx
->wanted_fc
& EFX_FC_RX
);
751 pause
->tx_pause
= !!(efx
->wanted_fc
& EFX_FC_TX
);
752 pause
->autoneg
= !!(efx
->wanted_fc
& EFX_FC_AUTO
);
755 static void efx_ethtool_get_wol(struct net_device
*net_dev
,
756 struct ethtool_wolinfo
*wol
)
758 struct efx_nic
*efx
= netdev_priv(net_dev
);
759 return efx
->type
->get_wol(efx
, wol
);
763 static int efx_ethtool_set_wol(struct net_device
*net_dev
,
764 struct ethtool_wolinfo
*wol
)
766 struct efx_nic
*efx
= netdev_priv(net_dev
);
767 return efx
->type
->set_wol(efx
, wol
->wolopts
);
770 static int efx_ethtool_reset(struct net_device
*net_dev
, u32
*flags
)
772 struct efx_nic
*efx
= netdev_priv(net_dev
);
775 rc
= efx
->type
->map_reset_flags(flags
);
779 return efx_reset(efx
, rc
);
782 /* MAC address mask including only I/G bit */
783 static const u8 mac_addr_ig_mask
[ETH_ALEN
] __aligned(2) = {0x01, 0, 0, 0, 0, 0};
785 #define IP4_ADDR_FULL_MASK ((__force __be32)~0)
786 #define IP_PROTO_FULL_MASK 0xFF
787 #define PORT_FULL_MASK ((__force __be16)~0)
788 #define ETHER_TYPE_FULL_MASK ((__force __be16)~0)
790 static inline void ip6_fill_mask(__be32
*mask
)
792 mask
[0] = mask
[1] = mask
[2] = mask
[3] = ~(__be32
)0;
795 static int efx_ethtool_get_class_rule(struct efx_nic
*efx
,
796 struct ethtool_rx_flow_spec
*rule
)
798 struct ethtool_tcpip4_spec
*ip_entry
= &rule
->h_u
.tcp_ip4_spec
;
799 struct ethtool_tcpip4_spec
*ip_mask
= &rule
->m_u
.tcp_ip4_spec
;
800 struct ethtool_usrip4_spec
*uip_entry
= &rule
->h_u
.usr_ip4_spec
;
801 struct ethtool_usrip4_spec
*uip_mask
= &rule
->m_u
.usr_ip4_spec
;
802 struct ethtool_tcpip6_spec
*ip6_entry
= &rule
->h_u
.tcp_ip6_spec
;
803 struct ethtool_tcpip6_spec
*ip6_mask
= &rule
->m_u
.tcp_ip6_spec
;
804 struct ethtool_usrip6_spec
*uip6_entry
= &rule
->h_u
.usr_ip6_spec
;
805 struct ethtool_usrip6_spec
*uip6_mask
= &rule
->m_u
.usr_ip6_spec
;
806 struct ethhdr
*mac_entry
= &rule
->h_u
.ether_spec
;
807 struct ethhdr
*mac_mask
= &rule
->m_u
.ether_spec
;
808 struct efx_filter_spec spec
;
811 rc
= efx_filter_get_filter_safe(efx
, EFX_FILTER_PRI_MANUAL
,
812 rule
->location
, &spec
);
816 if (spec
.dmaq_id
== EFX_FILTER_RX_DMAQ_ID_DROP
)
817 rule
->ring_cookie
= RX_CLS_FLOW_DISC
;
819 rule
->ring_cookie
= spec
.dmaq_id
;
821 if ((spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
) &&
822 spec
.ether_type
== htons(ETH_P_IP
) &&
823 (spec
.match_flags
& EFX_FILTER_MATCH_IP_PROTO
) &&
824 (spec
.ip_proto
== IPPROTO_TCP
|| spec
.ip_proto
== IPPROTO_UDP
) &&
826 ~(EFX_FILTER_MATCH_ETHER_TYPE
| EFX_FILTER_MATCH_OUTER_VID
|
827 EFX_FILTER_MATCH_LOC_HOST
| EFX_FILTER_MATCH_REM_HOST
|
828 EFX_FILTER_MATCH_IP_PROTO
|
829 EFX_FILTER_MATCH_LOC_PORT
| EFX_FILTER_MATCH_REM_PORT
))) {
830 rule
->flow_type
= ((spec
.ip_proto
== IPPROTO_TCP
) ?
831 TCP_V4_FLOW
: UDP_V4_FLOW
);
832 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_HOST
) {
833 ip_entry
->ip4dst
= spec
.loc_host
[0];
834 ip_mask
->ip4dst
= IP4_ADDR_FULL_MASK
;
836 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_HOST
) {
837 ip_entry
->ip4src
= spec
.rem_host
[0];
838 ip_mask
->ip4src
= IP4_ADDR_FULL_MASK
;
840 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_PORT
) {
841 ip_entry
->pdst
= spec
.loc_port
;
842 ip_mask
->pdst
= PORT_FULL_MASK
;
844 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_PORT
) {
845 ip_entry
->psrc
= spec
.rem_port
;
846 ip_mask
->psrc
= PORT_FULL_MASK
;
848 } else if ((spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
) &&
849 spec
.ether_type
== htons(ETH_P_IPV6
) &&
850 (spec
.match_flags
& EFX_FILTER_MATCH_IP_PROTO
) &&
851 (spec
.ip_proto
== IPPROTO_TCP
|| spec
.ip_proto
== IPPROTO_UDP
) &&
853 ~(EFX_FILTER_MATCH_ETHER_TYPE
| EFX_FILTER_MATCH_OUTER_VID
|
854 EFX_FILTER_MATCH_LOC_HOST
| EFX_FILTER_MATCH_REM_HOST
|
855 EFX_FILTER_MATCH_IP_PROTO
|
856 EFX_FILTER_MATCH_LOC_PORT
| EFX_FILTER_MATCH_REM_PORT
))) {
857 rule
->flow_type
= ((spec
.ip_proto
== IPPROTO_TCP
) ?
858 TCP_V6_FLOW
: UDP_V6_FLOW
);
859 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_HOST
) {
860 memcpy(ip6_entry
->ip6dst
, spec
.loc_host
,
861 sizeof(ip6_entry
->ip6dst
));
862 ip6_fill_mask(ip6_mask
->ip6dst
);
864 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_HOST
) {
865 memcpy(ip6_entry
->ip6src
, spec
.rem_host
,
866 sizeof(ip6_entry
->ip6src
));
867 ip6_fill_mask(ip6_mask
->ip6src
);
869 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_PORT
) {
870 ip6_entry
->pdst
= spec
.loc_port
;
871 ip6_mask
->pdst
= PORT_FULL_MASK
;
873 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_PORT
) {
874 ip6_entry
->psrc
= spec
.rem_port
;
875 ip6_mask
->psrc
= PORT_FULL_MASK
;
877 } else if (!(spec
.match_flags
&
878 ~(EFX_FILTER_MATCH_LOC_MAC
| EFX_FILTER_MATCH_LOC_MAC_IG
|
879 EFX_FILTER_MATCH_REM_MAC
| EFX_FILTER_MATCH_ETHER_TYPE
|
880 EFX_FILTER_MATCH_OUTER_VID
))) {
881 rule
->flow_type
= ETHER_FLOW
;
882 if (spec
.match_flags
&
883 (EFX_FILTER_MATCH_LOC_MAC
| EFX_FILTER_MATCH_LOC_MAC_IG
)) {
884 ether_addr_copy(mac_entry
->h_dest
, spec
.loc_mac
);
885 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_MAC
)
886 eth_broadcast_addr(mac_mask
->h_dest
);
888 ether_addr_copy(mac_mask
->h_dest
,
891 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_MAC
) {
892 ether_addr_copy(mac_entry
->h_source
, spec
.rem_mac
);
893 eth_broadcast_addr(mac_mask
->h_source
);
895 if (spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
) {
896 mac_entry
->h_proto
= spec
.ether_type
;
897 mac_mask
->h_proto
= ETHER_TYPE_FULL_MASK
;
899 } else if (spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
&&
900 spec
.ether_type
== htons(ETH_P_IP
) &&
902 ~(EFX_FILTER_MATCH_ETHER_TYPE
| EFX_FILTER_MATCH_OUTER_VID
|
903 EFX_FILTER_MATCH_LOC_HOST
| EFX_FILTER_MATCH_REM_HOST
|
904 EFX_FILTER_MATCH_IP_PROTO
))) {
905 rule
->flow_type
= IPV4_USER_FLOW
;
906 uip_entry
->ip_ver
= ETH_RX_NFC_IP4
;
907 if (spec
.match_flags
& EFX_FILTER_MATCH_IP_PROTO
) {
908 uip_mask
->proto
= IP_PROTO_FULL_MASK
;
909 uip_entry
->proto
= spec
.ip_proto
;
911 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_HOST
) {
912 uip_entry
->ip4dst
= spec
.loc_host
[0];
913 uip_mask
->ip4dst
= IP4_ADDR_FULL_MASK
;
915 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_HOST
) {
916 uip_entry
->ip4src
= spec
.rem_host
[0];
917 uip_mask
->ip4src
= IP4_ADDR_FULL_MASK
;
919 } else if (spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
&&
920 spec
.ether_type
== htons(ETH_P_IPV6
) &&
922 ~(EFX_FILTER_MATCH_ETHER_TYPE
| EFX_FILTER_MATCH_OUTER_VID
|
923 EFX_FILTER_MATCH_LOC_HOST
| EFX_FILTER_MATCH_REM_HOST
|
924 EFX_FILTER_MATCH_IP_PROTO
))) {
925 rule
->flow_type
= IPV6_USER_FLOW
;
926 if (spec
.match_flags
& EFX_FILTER_MATCH_IP_PROTO
) {
927 uip6_mask
->l4_proto
= IP_PROTO_FULL_MASK
;
928 uip6_entry
->l4_proto
= spec
.ip_proto
;
930 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_HOST
) {
931 memcpy(uip6_entry
->ip6dst
, spec
.loc_host
,
932 sizeof(uip6_entry
->ip6dst
));
933 ip6_fill_mask(uip6_mask
->ip6dst
);
935 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_HOST
) {
936 memcpy(uip6_entry
->ip6src
, spec
.rem_host
,
937 sizeof(uip6_entry
->ip6src
));
938 ip6_fill_mask(uip6_mask
->ip6src
);
941 /* The above should handle all filters that we insert */
946 if (spec
.match_flags
& EFX_FILTER_MATCH_OUTER_VID
) {
947 rule
->flow_type
|= FLOW_EXT
;
948 rule
->h_ext
.vlan_tci
= spec
.outer_vid
;
949 rule
->m_ext
.vlan_tci
= htons(0xfff);
956 efx_ethtool_get_rxnfc(struct net_device
*net_dev
,
957 struct ethtool_rxnfc
*info
, u32
*rule_locs
)
959 struct efx_nic
*efx
= netdev_priv(net_dev
);
962 case ETHTOOL_GRXRINGS
:
963 info
->data
= efx
->n_rx_channels
;
966 case ETHTOOL_GRXFH
: {
967 unsigned min_revision
= 0;
970 switch (info
->flow_type
) {
972 info
->data
|= RXH_L4_B_0_1
| RXH_L4_B_2_3
;
978 info
->data
|= RXH_IP_SRC
| RXH_IP_DST
;
979 min_revision
= EFX_REV_FALCON_B0
;
982 info
->data
|= RXH_L4_B_0_1
| RXH_L4_B_2_3
;
988 info
->data
|= RXH_IP_SRC
| RXH_IP_DST
;
989 min_revision
= EFX_REV_SIENA_A0
;
994 if (efx_nic_rev(efx
) < min_revision
)
999 case ETHTOOL_GRXCLSRLCNT
:
1000 info
->data
= efx_filter_get_rx_id_limit(efx
);
1001 if (info
->data
== 0)
1003 info
->data
|= RX_CLS_LOC_SPECIAL
;
1005 efx_filter_count_rx_used(efx
, EFX_FILTER_PRI_MANUAL
);
1008 case ETHTOOL_GRXCLSRULE
:
1009 if (efx_filter_get_rx_id_limit(efx
) == 0)
1011 return efx_ethtool_get_class_rule(efx
, &info
->fs
);
1013 case ETHTOOL_GRXCLSRLALL
: {
1015 info
->data
= efx_filter_get_rx_id_limit(efx
);
1016 if (info
->data
== 0)
1018 rc
= efx_filter_get_rx_ids(efx
, EFX_FILTER_PRI_MANUAL
,
1019 rule_locs
, info
->rule_cnt
);
1022 info
->rule_cnt
= rc
;
1031 static inline bool ip6_mask_is_full(__be32 mask
[4])
1033 return !~(mask
[0] & mask
[1] & mask
[2] & mask
[3]);
1036 static inline bool ip6_mask_is_empty(__be32 mask
[4])
1038 return !(mask
[0] | mask
[1] | mask
[2] | mask
[3]);
1041 static int efx_ethtool_set_class_rule(struct efx_nic
*efx
,
1042 struct ethtool_rx_flow_spec
*rule
)
1044 struct ethtool_tcpip4_spec
*ip_entry
= &rule
->h_u
.tcp_ip4_spec
;
1045 struct ethtool_tcpip4_spec
*ip_mask
= &rule
->m_u
.tcp_ip4_spec
;
1046 struct ethtool_usrip4_spec
*uip_entry
= &rule
->h_u
.usr_ip4_spec
;
1047 struct ethtool_usrip4_spec
*uip_mask
= &rule
->m_u
.usr_ip4_spec
;
1048 struct ethtool_tcpip6_spec
*ip6_entry
= &rule
->h_u
.tcp_ip6_spec
;
1049 struct ethtool_tcpip6_spec
*ip6_mask
= &rule
->m_u
.tcp_ip6_spec
;
1050 struct ethtool_usrip6_spec
*uip6_entry
= &rule
->h_u
.usr_ip6_spec
;
1051 struct ethtool_usrip6_spec
*uip6_mask
= &rule
->m_u
.usr_ip6_spec
;
1052 struct ethhdr
*mac_entry
= &rule
->h_u
.ether_spec
;
1053 struct ethhdr
*mac_mask
= &rule
->m_u
.ether_spec
;
1054 struct efx_filter_spec spec
;
1057 /* Check that user wants us to choose the location */
1058 if (rule
->location
!= RX_CLS_LOC_ANY
)
1061 /* Range-check ring_cookie */
1062 if (rule
->ring_cookie
>= efx
->n_rx_channels
&&
1063 rule
->ring_cookie
!= RX_CLS_FLOW_DISC
)
1066 /* Check for unsupported extensions */
1067 if ((rule
->flow_type
& FLOW_EXT
) &&
1068 (rule
->m_ext
.vlan_etype
|| rule
->m_ext
.data
[0] ||
1069 rule
->m_ext
.data
[1]))
1072 efx_filter_init_rx(&spec
, EFX_FILTER_PRI_MANUAL
,
1073 efx
->rx_scatter
? EFX_FILTER_FLAG_RX_SCATTER
: 0,
1074 (rule
->ring_cookie
== RX_CLS_FLOW_DISC
) ?
1075 EFX_FILTER_RX_DMAQ_ID_DROP
: rule
->ring_cookie
);
1077 switch (rule
->flow_type
& ~FLOW_EXT
) {
1080 spec
.match_flags
= (EFX_FILTER_MATCH_ETHER_TYPE
|
1081 EFX_FILTER_MATCH_IP_PROTO
);
1082 spec
.ether_type
= htons(ETH_P_IP
);
1083 spec
.ip_proto
= ((rule
->flow_type
& ~FLOW_EXT
) == TCP_V4_FLOW
?
1084 IPPROTO_TCP
: IPPROTO_UDP
);
1085 if (ip_mask
->ip4dst
) {
1086 if (ip_mask
->ip4dst
!= IP4_ADDR_FULL_MASK
)
1088 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_HOST
;
1089 spec
.loc_host
[0] = ip_entry
->ip4dst
;
1091 if (ip_mask
->ip4src
) {
1092 if (ip_mask
->ip4src
!= IP4_ADDR_FULL_MASK
)
1094 spec
.match_flags
|= EFX_FILTER_MATCH_REM_HOST
;
1095 spec
.rem_host
[0] = ip_entry
->ip4src
;
1097 if (ip_mask
->pdst
) {
1098 if (ip_mask
->pdst
!= PORT_FULL_MASK
)
1100 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_PORT
;
1101 spec
.loc_port
= ip_entry
->pdst
;
1103 if (ip_mask
->psrc
) {
1104 if (ip_mask
->psrc
!= PORT_FULL_MASK
)
1106 spec
.match_flags
|= EFX_FILTER_MATCH_REM_PORT
;
1107 spec
.rem_port
= ip_entry
->psrc
;
1115 spec
.match_flags
= (EFX_FILTER_MATCH_ETHER_TYPE
|
1116 EFX_FILTER_MATCH_IP_PROTO
);
1117 spec
.ether_type
= htons(ETH_P_IPV6
);
1118 spec
.ip_proto
= ((rule
->flow_type
& ~FLOW_EXT
) == TCP_V6_FLOW
?
1119 IPPROTO_TCP
: IPPROTO_UDP
);
1120 if (!ip6_mask_is_empty(ip6_mask
->ip6dst
)) {
1121 if (!ip6_mask_is_full(ip6_mask
->ip6dst
))
1123 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_HOST
;
1124 memcpy(spec
.loc_host
, ip6_entry
->ip6dst
, sizeof(spec
.loc_host
));
1126 if (!ip6_mask_is_empty(ip6_mask
->ip6src
)) {
1127 if (!ip6_mask_is_full(ip6_mask
->ip6src
))
1129 spec
.match_flags
|= EFX_FILTER_MATCH_REM_HOST
;
1130 memcpy(spec
.rem_host
, ip6_entry
->ip6src
, sizeof(spec
.rem_host
));
1132 if (ip6_mask
->pdst
) {
1133 if (ip6_mask
->pdst
!= PORT_FULL_MASK
)
1135 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_PORT
;
1136 spec
.loc_port
= ip6_entry
->pdst
;
1138 if (ip6_mask
->psrc
) {
1139 if (ip6_mask
->psrc
!= PORT_FULL_MASK
)
1141 spec
.match_flags
|= EFX_FILTER_MATCH_REM_PORT
;
1142 spec
.rem_port
= ip6_entry
->psrc
;
1144 if (ip6_mask
->tclass
)
1148 case IPV4_USER_FLOW
:
1149 if (uip_mask
->l4_4_bytes
|| uip_mask
->tos
|| uip_mask
->ip_ver
||
1150 uip_entry
->ip_ver
!= ETH_RX_NFC_IP4
)
1152 spec
.match_flags
= EFX_FILTER_MATCH_ETHER_TYPE
;
1153 spec
.ether_type
= htons(ETH_P_IP
);
1154 if (uip_mask
->ip4dst
) {
1155 if (uip_mask
->ip4dst
!= IP4_ADDR_FULL_MASK
)
1157 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_HOST
;
1158 spec
.loc_host
[0] = uip_entry
->ip4dst
;
1160 if (uip_mask
->ip4src
) {
1161 if (uip_mask
->ip4src
!= IP4_ADDR_FULL_MASK
)
1163 spec
.match_flags
|= EFX_FILTER_MATCH_REM_HOST
;
1164 spec
.rem_host
[0] = uip_entry
->ip4src
;
1166 if (uip_mask
->proto
) {
1167 if (uip_mask
->proto
!= IP_PROTO_FULL_MASK
)
1169 spec
.match_flags
|= EFX_FILTER_MATCH_IP_PROTO
;
1170 spec
.ip_proto
= uip_entry
->proto
;
1174 case IPV6_USER_FLOW
:
1175 if (uip6_mask
->l4_4_bytes
|| uip6_mask
->tclass
)
1177 spec
.match_flags
= EFX_FILTER_MATCH_ETHER_TYPE
;
1178 spec
.ether_type
= htons(ETH_P_IPV6
);
1179 if (!ip6_mask_is_empty(uip6_mask
->ip6dst
)) {
1180 if (!ip6_mask_is_full(uip6_mask
->ip6dst
))
1182 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_HOST
;
1183 memcpy(spec
.loc_host
, uip6_entry
->ip6dst
, sizeof(spec
.loc_host
));
1185 if (!ip6_mask_is_empty(uip6_mask
->ip6src
)) {
1186 if (!ip6_mask_is_full(uip6_mask
->ip6src
))
1188 spec
.match_flags
|= EFX_FILTER_MATCH_REM_HOST
;
1189 memcpy(spec
.rem_host
, uip6_entry
->ip6src
, sizeof(spec
.rem_host
));
1191 if (uip6_mask
->l4_proto
) {
1192 if (uip6_mask
->l4_proto
!= IP_PROTO_FULL_MASK
)
1194 spec
.match_flags
|= EFX_FILTER_MATCH_IP_PROTO
;
1195 spec
.ip_proto
= uip6_entry
->l4_proto
;
1200 if (!is_zero_ether_addr(mac_mask
->h_dest
)) {
1201 if (ether_addr_equal(mac_mask
->h_dest
,
1203 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_MAC_IG
;
1204 else if (is_broadcast_ether_addr(mac_mask
->h_dest
))
1205 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_MAC
;
1208 ether_addr_copy(spec
.loc_mac
, mac_entry
->h_dest
);
1210 if (!is_zero_ether_addr(mac_mask
->h_source
)) {
1211 if (!is_broadcast_ether_addr(mac_mask
->h_source
))
1213 spec
.match_flags
|= EFX_FILTER_MATCH_REM_MAC
;
1214 ether_addr_copy(spec
.rem_mac
, mac_entry
->h_source
);
1216 if (mac_mask
->h_proto
) {
1217 if (mac_mask
->h_proto
!= ETHER_TYPE_FULL_MASK
)
1219 spec
.match_flags
|= EFX_FILTER_MATCH_ETHER_TYPE
;
1220 spec
.ether_type
= mac_entry
->h_proto
;
1228 if ((rule
->flow_type
& FLOW_EXT
) && rule
->m_ext
.vlan_tci
) {
1229 if (rule
->m_ext
.vlan_tci
!= htons(0xfff))
1231 spec
.match_flags
|= EFX_FILTER_MATCH_OUTER_VID
;
1232 spec
.outer_vid
= rule
->h_ext
.vlan_tci
;
1235 rc
= efx_filter_insert_filter(efx
, &spec
, true);
1239 rule
->location
= rc
;
1243 static int efx_ethtool_set_rxnfc(struct net_device
*net_dev
,
1244 struct ethtool_rxnfc
*info
)
1246 struct efx_nic
*efx
= netdev_priv(net_dev
);
1248 if (efx_filter_get_rx_id_limit(efx
) == 0)
1251 switch (info
->cmd
) {
1252 case ETHTOOL_SRXCLSRLINS
:
1253 return efx_ethtool_set_class_rule(efx
, &info
->fs
);
1255 case ETHTOOL_SRXCLSRLDEL
:
1256 return efx_filter_remove_id_safe(efx
, EFX_FILTER_PRI_MANUAL
,
1264 static u32
efx_ethtool_get_rxfh_indir_size(struct net_device
*net_dev
)
1266 struct efx_nic
*efx
= netdev_priv(net_dev
);
1268 return ((efx_nic_rev(efx
) < EFX_REV_FALCON_B0
||
1269 efx
->n_rx_channels
== 1) ?
1270 0 : ARRAY_SIZE(efx
->rx_indir_table
));
1273 static int efx_ethtool_get_rxfh(struct net_device
*net_dev
, u32
*indir
, u8
*key
,
1276 struct efx_nic
*efx
= netdev_priv(net_dev
);
1279 *hfunc
= ETH_RSS_HASH_TOP
;
1281 memcpy(indir
, efx
->rx_indir_table
, sizeof(efx
->rx_indir_table
));
1285 static int efx_ethtool_set_rxfh(struct net_device
*net_dev
, const u32
*indir
,
1286 const u8
*key
, const u8 hfunc
)
1288 struct efx_nic
*efx
= netdev_priv(net_dev
);
1290 /* We do not allow change in unsupported parameters */
1292 (hfunc
!= ETH_RSS_HASH_NO_CHANGE
&& hfunc
!= ETH_RSS_HASH_TOP
))
1297 return efx
->type
->rx_push_rss_config(efx
, true, indir
);
1300 static int efx_ethtool_get_ts_info(struct net_device
*net_dev
,
1301 struct ethtool_ts_info
*ts_info
)
1303 struct efx_nic
*efx
= netdev_priv(net_dev
);
1305 /* Software capabilities */
1306 ts_info
->so_timestamping
= (SOF_TIMESTAMPING_RX_SOFTWARE
|
1307 SOF_TIMESTAMPING_SOFTWARE
);
1308 ts_info
->phc_index
= -1;
1310 efx_ptp_get_ts_info(efx
, ts_info
);
1314 static int efx_ethtool_get_module_eeprom(struct net_device
*net_dev
,
1315 struct ethtool_eeprom
*ee
,
1318 struct efx_nic
*efx
= netdev_priv(net_dev
);
1321 if (!efx
->phy_op
|| !efx
->phy_op
->get_module_eeprom
)
1324 mutex_lock(&efx
->mac_lock
);
1325 ret
= efx
->phy_op
->get_module_eeprom(efx
, ee
, data
);
1326 mutex_unlock(&efx
->mac_lock
);
1331 static int efx_ethtool_get_module_info(struct net_device
*net_dev
,
1332 struct ethtool_modinfo
*modinfo
)
1334 struct efx_nic
*efx
= netdev_priv(net_dev
);
1337 if (!efx
->phy_op
|| !efx
->phy_op
->get_module_info
)
1340 mutex_lock(&efx
->mac_lock
);
1341 ret
= efx
->phy_op
->get_module_info(efx
, modinfo
);
1342 mutex_unlock(&efx
->mac_lock
);
1347 const struct ethtool_ops efx_ethtool_ops
= {
1348 .get_settings
= efx_ethtool_get_settings
,
1349 .set_settings
= efx_ethtool_set_settings
,
1350 .get_drvinfo
= efx_ethtool_get_drvinfo
,
1351 .get_regs_len
= efx_ethtool_get_regs_len
,
1352 .get_regs
= efx_ethtool_get_regs
,
1353 .get_msglevel
= efx_ethtool_get_msglevel
,
1354 .set_msglevel
= efx_ethtool_set_msglevel
,
1355 .nway_reset
= efx_ethtool_nway_reset
,
1356 .get_link
= ethtool_op_get_link
,
1357 .get_coalesce
= efx_ethtool_get_coalesce
,
1358 .set_coalesce
= efx_ethtool_set_coalesce
,
1359 .get_ringparam
= efx_ethtool_get_ringparam
,
1360 .set_ringparam
= efx_ethtool_set_ringparam
,
1361 .get_pauseparam
= efx_ethtool_get_pauseparam
,
1362 .set_pauseparam
= efx_ethtool_set_pauseparam
,
1363 .get_sset_count
= efx_ethtool_get_sset_count
,
1364 .self_test
= efx_ethtool_self_test
,
1365 .get_strings
= efx_ethtool_get_strings
,
1366 .set_phys_id
= efx_ethtool_phys_id
,
1367 .get_ethtool_stats
= efx_ethtool_get_stats
,
1368 .get_wol
= efx_ethtool_get_wol
,
1369 .set_wol
= efx_ethtool_set_wol
,
1370 .reset
= efx_ethtool_reset
,
1371 .get_rxnfc
= efx_ethtool_get_rxnfc
,
1372 .set_rxnfc
= efx_ethtool_set_rxnfc
,
1373 .get_rxfh_indir_size
= efx_ethtool_get_rxfh_indir_size
,
1374 .get_rxfh
= efx_ethtool_get_rxfh
,
1375 .set_rxfh
= efx_ethtool_set_rxfh
,
1376 .get_ts_info
= efx_ethtool_get_ts_info
,
1377 .get_module_info
= efx_ethtool_get_module_info
,
1378 .get_module_eeprom
= efx_ethtool_get_module_eeprom
,