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_nodesc_trunc
),
81 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_merge_events
),
82 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_merge_packets
),
85 #define EFX_ETHTOOL_SW_STAT_COUNT ARRAY_SIZE(efx_sw_stat_desc)
87 #define EFX_ETHTOOL_EEPROM_MAGIC 0xEFAB
89 /**************************************************************************
93 **************************************************************************
96 /* Identify device by flashing LEDs */
97 static int efx_ethtool_phys_id(struct net_device
*net_dev
,
98 enum ethtool_phys_id_state state
)
100 struct efx_nic
*efx
= netdev_priv(net_dev
);
101 enum efx_led_mode mode
= EFX_LED_DEFAULT
;
110 case ETHTOOL_ID_INACTIVE
:
111 mode
= EFX_LED_DEFAULT
;
113 case ETHTOOL_ID_ACTIVE
:
114 return 1; /* cycle on/off once per second */
117 efx
->type
->set_id_led(efx
, mode
);
121 /* This must be called with rtnl_lock held. */
122 static int efx_ethtool_get_settings(struct net_device
*net_dev
,
123 struct ethtool_cmd
*ecmd
)
125 struct efx_nic
*efx
= netdev_priv(net_dev
);
126 struct efx_link_state
*link_state
= &efx
->link_state
;
128 mutex_lock(&efx
->mac_lock
);
129 efx
->phy_op
->get_settings(efx
, ecmd
);
130 mutex_unlock(&efx
->mac_lock
);
132 /* Both MACs support pause frames (bidirectional and respond-only) */
133 ecmd
->supported
|= SUPPORTED_Pause
| SUPPORTED_Asym_Pause
;
135 if (LOOPBACK_INTERNAL(efx
)) {
136 ethtool_cmd_speed_set(ecmd
, link_state
->speed
);
137 ecmd
->duplex
= link_state
->fd
? DUPLEX_FULL
: DUPLEX_HALF
;
143 /* This must be called with rtnl_lock held. */
144 static int efx_ethtool_set_settings(struct net_device
*net_dev
,
145 struct ethtool_cmd
*ecmd
)
147 struct efx_nic
*efx
= netdev_priv(net_dev
);
150 /* GMAC does not support 1000Mbps HD */
151 if ((ethtool_cmd_speed(ecmd
) == SPEED_1000
) &&
152 (ecmd
->duplex
!= DUPLEX_FULL
)) {
153 netif_dbg(efx
, drv
, efx
->net_dev
,
154 "rejecting unsupported 1000Mbps HD setting\n");
158 mutex_lock(&efx
->mac_lock
);
159 rc
= efx
->phy_op
->set_settings(efx
, ecmd
);
160 mutex_unlock(&efx
->mac_lock
);
164 static void efx_ethtool_get_drvinfo(struct net_device
*net_dev
,
165 struct ethtool_drvinfo
*info
)
167 struct efx_nic
*efx
= netdev_priv(net_dev
);
169 strlcpy(info
->driver
, KBUILD_MODNAME
, sizeof(info
->driver
));
170 strlcpy(info
->version
, EFX_DRIVER_VERSION
, sizeof(info
->version
));
171 if (efx_nic_rev(efx
) >= EFX_REV_SIENA_A0
)
172 efx_mcdi_print_fwver(efx
, info
->fw_version
,
173 sizeof(info
->fw_version
));
174 strlcpy(info
->bus_info
, pci_name(efx
->pci_dev
), sizeof(info
->bus_info
));
177 static int efx_ethtool_get_regs_len(struct net_device
*net_dev
)
179 return efx_nic_get_regs_len(netdev_priv(net_dev
));
182 static void efx_ethtool_get_regs(struct net_device
*net_dev
,
183 struct ethtool_regs
*regs
, void *buf
)
185 struct efx_nic
*efx
= netdev_priv(net_dev
);
187 regs
->version
= efx
->type
->revision
;
188 efx_nic_get_regs(efx
, buf
);
191 static u32
efx_ethtool_get_msglevel(struct net_device
*net_dev
)
193 struct efx_nic
*efx
= netdev_priv(net_dev
);
194 return efx
->msg_enable
;
197 static void efx_ethtool_set_msglevel(struct net_device
*net_dev
, u32 msg_enable
)
199 struct efx_nic
*efx
= netdev_priv(net_dev
);
200 efx
->msg_enable
= msg_enable
;
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)
209 * @unit_format: Unit name format (e.g. "chan\%d")
210 * @unit_id: Unit id (e.g. 0 for "chan0")
211 * @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
212 * @test_id: Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent")
214 * Fill in an individual self-test entry.
216 static void efx_fill_test(unsigned int test_index
, u8
*strings
, u64
*data
,
217 int *test
, const char *unit_format
, int unit_id
,
218 const char *test_format
, const char *test_id
)
220 char unit_str
[ETH_GSTRING_LEN
], test_str
[ETH_GSTRING_LEN
];
222 /* Fill data value, if applicable */
224 data
[test_index
] = *test
;
226 /* Fill string, if applicable */
228 if (strchr(unit_format
, '%'))
229 snprintf(unit_str
, sizeof(unit_str
),
230 unit_format
, unit_id
);
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
,
236 "%-6s %-24s", unit_str
, test_str
);
240 #define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
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) \
244 "loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode)
247 * efx_fill_loopback_test - fill in a block of loopback self-test entries
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
255 * Fill in a block of loopback self-test entries. Return new test
258 static int efx_fill_loopback_test(struct efx_nic
*efx
,
259 struct efx_loopback_self_tests
*lb_tests
,
260 enum efx_loopback_mode mode
,
261 unsigned int test_index
,
262 u8
*strings
, u64
*data
)
264 struct efx_channel
*channel
=
265 efx_get_channel(efx
, efx
->tx_channel_offset
);
266 struct efx_tx_queue
*tx_queue
;
268 efx_for_each_channel_tx_queue(tx_queue
, channel
) {
269 efx_fill_test(test_index
++, strings
, data
,
270 &lb_tests
->tx_sent
[tx_queue
->queue
],
271 EFX_TX_QUEUE_NAME(tx_queue
),
272 EFX_LOOPBACK_NAME(mode
, "tx_sent"));
273 efx_fill_test(test_index
++, strings
, data
,
274 &lb_tests
->tx_done
[tx_queue
->queue
],
275 EFX_TX_QUEUE_NAME(tx_queue
),
276 EFX_LOOPBACK_NAME(mode
, "tx_done"));
278 efx_fill_test(test_index
++, strings
, data
,
281 EFX_LOOPBACK_NAME(mode
, "rx_good"));
282 efx_fill_test(test_index
++, strings
, data
,
285 EFX_LOOPBACK_NAME(mode
, "rx_bad"));
291 * efx_ethtool_fill_self_tests - get self-test details
293 * @tests: Efx self-test results structure, or %NULL
294 * @strings: Ethtool strings, or %NULL
295 * @data: Ethtool test results, or %NULL
297 * Get self-test number of strings, strings, and/or test results.
298 * Return number of strings (== number of test results).
300 * The reason for merging these three functions is to make sure that
301 * they can never be inconsistent.
303 static int efx_ethtool_fill_self_tests(struct efx_nic
*efx
,
304 struct efx_self_tests
*tests
,
305 u8
*strings
, u64
*data
)
307 struct efx_channel
*channel
;
308 unsigned int n
= 0, i
;
309 enum efx_loopback_mode mode
;
311 efx_fill_test(n
++, strings
, data
, &tests
->phy_alive
,
312 "phy", 0, "alive", NULL
);
313 efx_fill_test(n
++, strings
, data
, &tests
->nvram
,
314 "core", 0, "nvram", NULL
);
315 efx_fill_test(n
++, strings
, data
, &tests
->interrupt
,
316 "core", 0, "interrupt", NULL
);
319 efx_for_each_channel(channel
, efx
) {
320 efx_fill_test(n
++, strings
, data
,
321 &tests
->eventq_dma
[channel
->channel
],
322 EFX_CHANNEL_NAME(channel
),
324 efx_fill_test(n
++, strings
, data
,
325 &tests
->eventq_int
[channel
->channel
],
326 EFX_CHANNEL_NAME(channel
),
330 efx_fill_test(n
++, strings
, data
, &tests
->memory
,
331 "core", 0, "memory", NULL
);
332 efx_fill_test(n
++, strings
, data
, &tests
->registers
,
333 "core", 0, "registers", NULL
);
335 if (efx
->phy_op
->run_tests
!= NULL
) {
336 EFX_BUG_ON_PARANOID(efx
->phy_op
->test_name
== NULL
);
338 for (i
= 0; true; ++i
) {
341 EFX_BUG_ON_PARANOID(i
>= EFX_MAX_PHY_TESTS
);
342 name
= efx
->phy_op
->test_name(efx
, i
);
346 efx_fill_test(n
++, strings
, data
, &tests
->phy_ext
[i
],
347 "phy", 0, name
, NULL
);
352 for (mode
= LOOPBACK_NONE
; mode
<= LOOPBACK_TEST_MAX
; mode
++) {
353 if (!(efx
->loopback_modes
& (1 << mode
)))
355 n
= efx_fill_loopback_test(efx
,
356 &tests
->loopback
[mode
], mode
, n
,
363 static int efx_ethtool_get_sset_count(struct net_device
*net_dev
,
366 struct efx_nic
*efx
= netdev_priv(net_dev
);
368 switch (string_set
) {
370 return efx
->type
->describe_stats(efx
, NULL
) +
371 EFX_ETHTOOL_SW_STAT_COUNT
+
372 efx_ptp_describe_stats(efx
, NULL
);
374 return efx_ethtool_fill_self_tests(efx
, NULL
, NULL
, NULL
);
380 static void efx_ethtool_get_strings(struct net_device
*net_dev
,
381 u32 string_set
, u8
*strings
)
383 struct efx_nic
*efx
= netdev_priv(net_dev
);
386 switch (string_set
) {
388 strings
+= (efx
->type
->describe_stats(efx
, strings
) *
390 for (i
= 0; i
< EFX_ETHTOOL_SW_STAT_COUNT
; i
++)
391 strlcpy(strings
+ i
* ETH_GSTRING_LEN
,
392 efx_sw_stat_desc
[i
].name
, ETH_GSTRING_LEN
);
393 strings
+= EFX_ETHTOOL_SW_STAT_COUNT
* ETH_GSTRING_LEN
;
394 efx_ptp_describe_stats(efx
, strings
);
397 efx_ethtool_fill_self_tests(efx
, NULL
, strings
, NULL
);
400 /* No other string sets */
405 static void efx_ethtool_get_stats(struct net_device
*net_dev
,
406 struct ethtool_stats
*stats
,
409 struct efx_nic
*efx
= netdev_priv(net_dev
);
410 const struct efx_sw_stat_desc
*stat
;
411 struct efx_channel
*channel
;
412 struct efx_tx_queue
*tx_queue
;
415 spin_lock_bh(&efx
->stats_lock
);
417 /* Get NIC statistics */
418 data
+= efx
->type
->update_stats(efx
, data
, NULL
);
420 /* Get software statistics */
421 for (i
= 0; i
< EFX_ETHTOOL_SW_STAT_COUNT
; i
++) {
422 stat
= &efx_sw_stat_desc
[i
];
423 switch (stat
->source
) {
424 case EFX_ETHTOOL_STAT_SOURCE_nic
:
425 data
[i
] = stat
->get_stat((void *)efx
+ stat
->offset
);
427 case EFX_ETHTOOL_STAT_SOURCE_channel
:
429 efx_for_each_channel(channel
, efx
)
430 data
[i
] += stat
->get_stat((void *)channel
+
433 case EFX_ETHTOOL_STAT_SOURCE_tx_queue
:
435 efx_for_each_channel(channel
, efx
) {
436 efx_for_each_channel_tx_queue(tx_queue
, channel
)
438 stat
->get_stat((void *)tx_queue
444 data
+= EFX_ETHTOOL_SW_STAT_COUNT
;
446 spin_unlock_bh(&efx
->stats_lock
);
448 efx_ptp_update_stats(efx
, data
);
451 static void efx_ethtool_self_test(struct net_device
*net_dev
,
452 struct ethtool_test
*test
, u64
*data
)
454 struct efx_nic
*efx
= netdev_priv(net_dev
);
455 struct efx_self_tests
*efx_tests
;
459 efx_tests
= kzalloc(sizeof(*efx_tests
), GFP_KERNEL
);
463 if (efx
->state
!= STATE_READY
) {
468 netif_info(efx
, drv
, efx
->net_dev
, "starting %sline testing\n",
469 (test
->flags
& ETH_TEST_FL_OFFLINE
) ? "off" : "on");
471 /* We need rx buffers and interrupts. */
472 already_up
= (efx
->net_dev
->flags
& IFF_UP
);
474 rc
= dev_open(efx
->net_dev
);
476 netif_err(efx
, drv
, efx
->net_dev
,
477 "failed opening device.\n");
482 rc
= efx_selftest(efx
, efx_tests
, test
->flags
);
485 dev_close(efx
->net_dev
);
487 netif_info(efx
, drv
, efx
->net_dev
, "%s %sline self-tests\n",
488 rc
== 0 ? "passed" : "failed",
489 (test
->flags
& ETH_TEST_FL_OFFLINE
) ? "off" : "on");
492 efx_ethtool_fill_self_tests(efx
, efx_tests
, NULL
, data
);
496 test
->flags
|= ETH_TEST_FL_FAILED
;
499 /* Restart autonegotiation */
500 static int efx_ethtool_nway_reset(struct net_device
*net_dev
)
502 struct efx_nic
*efx
= netdev_priv(net_dev
);
504 return mdio45_nway_restart(&efx
->mdio
);
508 * Each channel has a single IRQ and moderation timer, started by any
509 * completion (or other event). Unless the module parameter
510 * separate_tx_channels is set, IRQs and moderation are therefore
511 * shared between RX and TX completions. In this case, when RX IRQ
512 * moderation is explicitly changed then TX IRQ moderation is
513 * automatically changed too, but otherwise we fail if the two values
514 * are requested to be different.
516 * The hardware does not support a limit on the number of completions
517 * before an IRQ, so we do not use the max_frames fields. We should
518 * report and require that max_frames == (usecs != 0), but this would
519 * invalidate existing user documentation.
521 * The hardware does not have distinct settings for interrupt
522 * moderation while the previous IRQ is being handled, so we should
523 * not use the 'irq' fields. However, an earlier developer
524 * misunderstood the meaning of the 'irq' fields and the driver did
525 * not support the standard fields. To avoid invalidating existing
526 * user documentation, we report and accept changes through either the
527 * standard or 'irq' fields. If both are changed at the same time, we
528 * prefer the standard field.
530 * We implement adaptive IRQ moderation, but use a different algorithm
531 * from that assumed in the definition of struct ethtool_coalesce.
532 * Therefore we do not use any of the adaptive moderation parameters
536 static int efx_ethtool_get_coalesce(struct net_device
*net_dev
,
537 struct ethtool_coalesce
*coalesce
)
539 struct efx_nic
*efx
= netdev_priv(net_dev
);
540 unsigned int tx_usecs
, rx_usecs
;
543 efx_get_irq_moderation(efx
, &tx_usecs
, &rx_usecs
, &rx_adaptive
);
545 coalesce
->tx_coalesce_usecs
= tx_usecs
;
546 coalesce
->tx_coalesce_usecs_irq
= tx_usecs
;
547 coalesce
->rx_coalesce_usecs
= rx_usecs
;
548 coalesce
->rx_coalesce_usecs_irq
= rx_usecs
;
549 coalesce
->use_adaptive_rx_coalesce
= rx_adaptive
;
554 static int efx_ethtool_set_coalesce(struct net_device
*net_dev
,
555 struct ethtool_coalesce
*coalesce
)
557 struct efx_nic
*efx
= netdev_priv(net_dev
);
558 struct efx_channel
*channel
;
559 unsigned int tx_usecs
, rx_usecs
;
560 bool adaptive
, rx_may_override_tx
;
563 if (coalesce
->use_adaptive_tx_coalesce
)
566 efx_get_irq_moderation(efx
, &tx_usecs
, &rx_usecs
, &adaptive
);
568 if (coalesce
->rx_coalesce_usecs
!= rx_usecs
)
569 rx_usecs
= coalesce
->rx_coalesce_usecs
;
571 rx_usecs
= coalesce
->rx_coalesce_usecs_irq
;
573 adaptive
= coalesce
->use_adaptive_rx_coalesce
;
575 /* If channels are shared, TX IRQ moderation can be quietly
576 * overridden unless it is changed from its old value.
578 rx_may_override_tx
= (coalesce
->tx_coalesce_usecs
== tx_usecs
&&
579 coalesce
->tx_coalesce_usecs_irq
== tx_usecs
);
580 if (coalesce
->tx_coalesce_usecs
!= tx_usecs
)
581 tx_usecs
= coalesce
->tx_coalesce_usecs
;
583 tx_usecs
= coalesce
->tx_coalesce_usecs_irq
;
585 rc
= efx_init_irq_moderation(efx
, tx_usecs
, rx_usecs
, adaptive
,
590 efx_for_each_channel(channel
, efx
)
591 efx
->type
->push_irq_moderation(channel
);
596 static void efx_ethtool_get_ringparam(struct net_device
*net_dev
,
597 struct ethtool_ringparam
*ring
)
599 struct efx_nic
*efx
= netdev_priv(net_dev
);
601 ring
->rx_max_pending
= EFX_MAX_DMAQ_SIZE
;
602 ring
->tx_max_pending
= EFX_TXQ_MAX_ENT(efx
);
603 ring
->rx_pending
= efx
->rxq_entries
;
604 ring
->tx_pending
= efx
->txq_entries
;
607 static int efx_ethtool_set_ringparam(struct net_device
*net_dev
,
608 struct ethtool_ringparam
*ring
)
610 struct efx_nic
*efx
= netdev_priv(net_dev
);
613 if (ring
->rx_mini_pending
|| ring
->rx_jumbo_pending
||
614 ring
->rx_pending
> EFX_MAX_DMAQ_SIZE
||
615 ring
->tx_pending
> EFX_TXQ_MAX_ENT(efx
))
618 if (ring
->rx_pending
< EFX_RXQ_MIN_ENT
) {
619 netif_err(efx
, drv
, efx
->net_dev
,
620 "RX queues cannot be smaller than %u\n",
625 txq_entries
= max(ring
->tx_pending
, EFX_TXQ_MIN_ENT(efx
));
626 if (txq_entries
!= ring
->tx_pending
)
627 netif_warn(efx
, drv
, efx
->net_dev
,
628 "increasing TX queue size to minimum of %u\n",
631 return efx_realloc_channels(efx
, ring
->rx_pending
, txq_entries
);
634 static int efx_ethtool_set_pauseparam(struct net_device
*net_dev
,
635 struct ethtool_pauseparam
*pause
)
637 struct efx_nic
*efx
= netdev_priv(net_dev
);
638 u8 wanted_fc
, old_fc
;
642 mutex_lock(&efx
->mac_lock
);
644 wanted_fc
= ((pause
->rx_pause
? EFX_FC_RX
: 0) |
645 (pause
->tx_pause
? EFX_FC_TX
: 0) |
646 (pause
->autoneg
? EFX_FC_AUTO
: 0));
648 if ((wanted_fc
& EFX_FC_TX
) && !(wanted_fc
& EFX_FC_RX
)) {
649 netif_dbg(efx
, drv
, efx
->net_dev
,
650 "Flow control unsupported: tx ON rx OFF\n");
655 if ((wanted_fc
& EFX_FC_AUTO
) && !efx
->link_advertising
) {
656 netif_dbg(efx
, drv
, efx
->net_dev
,
657 "Autonegotiation is disabled\n");
662 /* Hook for Falcon bug 11482 workaround */
663 if (efx
->type
->prepare_enable_fc_tx
&&
664 (wanted_fc
& EFX_FC_TX
) && !(efx
->wanted_fc
& EFX_FC_TX
))
665 efx
->type
->prepare_enable_fc_tx(efx
);
667 old_adv
= efx
->link_advertising
;
668 old_fc
= efx
->wanted_fc
;
669 efx_link_set_wanted_fc(efx
, wanted_fc
);
670 if (efx
->link_advertising
!= old_adv
||
671 (efx
->wanted_fc
^ old_fc
) & EFX_FC_AUTO
) {
672 rc
= efx
->phy_op
->reconfigure(efx
);
674 netif_err(efx
, drv
, efx
->net_dev
,
675 "Unable to advertise requested flow "
676 "control setting\n");
681 /* Reconfigure the MAC. The PHY *may* generate a link state change event
682 * if the user just changed the advertised capabilities, but there's no
683 * harm doing this twice */
684 efx
->type
->reconfigure_mac(efx
);
687 mutex_unlock(&efx
->mac_lock
);
692 static void efx_ethtool_get_pauseparam(struct net_device
*net_dev
,
693 struct ethtool_pauseparam
*pause
)
695 struct efx_nic
*efx
= netdev_priv(net_dev
);
697 pause
->rx_pause
= !!(efx
->wanted_fc
& EFX_FC_RX
);
698 pause
->tx_pause
= !!(efx
->wanted_fc
& EFX_FC_TX
);
699 pause
->autoneg
= !!(efx
->wanted_fc
& EFX_FC_AUTO
);
702 static void efx_ethtool_get_wol(struct net_device
*net_dev
,
703 struct ethtool_wolinfo
*wol
)
705 struct efx_nic
*efx
= netdev_priv(net_dev
);
706 return efx
->type
->get_wol(efx
, wol
);
710 static int efx_ethtool_set_wol(struct net_device
*net_dev
,
711 struct ethtool_wolinfo
*wol
)
713 struct efx_nic
*efx
= netdev_priv(net_dev
);
714 return efx
->type
->set_wol(efx
, wol
->wolopts
);
717 static int efx_ethtool_reset(struct net_device
*net_dev
, u32
*flags
)
719 struct efx_nic
*efx
= netdev_priv(net_dev
);
722 rc
= efx
->type
->map_reset_flags(flags
);
726 return efx_reset(efx
, rc
);
729 /* MAC address mask including only I/G bit */
730 static const u8 mac_addr_ig_mask
[ETH_ALEN
] __aligned(2) = {0x01, 0, 0, 0, 0, 0};
732 #define IP4_ADDR_FULL_MASK ((__force __be32)~0)
733 #define PORT_FULL_MASK ((__force __be16)~0)
734 #define ETHER_TYPE_FULL_MASK ((__force __be16)~0)
736 static int efx_ethtool_get_class_rule(struct efx_nic
*efx
,
737 struct ethtool_rx_flow_spec
*rule
)
739 struct ethtool_tcpip4_spec
*ip_entry
= &rule
->h_u
.tcp_ip4_spec
;
740 struct ethtool_tcpip4_spec
*ip_mask
= &rule
->m_u
.tcp_ip4_spec
;
741 struct ethhdr
*mac_entry
= &rule
->h_u
.ether_spec
;
742 struct ethhdr
*mac_mask
= &rule
->m_u
.ether_spec
;
743 struct efx_filter_spec spec
;
746 rc
= efx_filter_get_filter_safe(efx
, EFX_FILTER_PRI_MANUAL
,
747 rule
->location
, &spec
);
751 if (spec
.dmaq_id
== EFX_FILTER_RX_DMAQ_ID_DROP
)
752 rule
->ring_cookie
= RX_CLS_FLOW_DISC
;
754 rule
->ring_cookie
= spec
.dmaq_id
;
756 if ((spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
) &&
757 spec
.ether_type
== htons(ETH_P_IP
) &&
758 (spec
.match_flags
& EFX_FILTER_MATCH_IP_PROTO
) &&
759 (spec
.ip_proto
== IPPROTO_TCP
|| spec
.ip_proto
== IPPROTO_UDP
) &&
761 ~(EFX_FILTER_MATCH_ETHER_TYPE
| EFX_FILTER_MATCH_OUTER_VID
|
762 EFX_FILTER_MATCH_LOC_HOST
| EFX_FILTER_MATCH_REM_HOST
|
763 EFX_FILTER_MATCH_IP_PROTO
|
764 EFX_FILTER_MATCH_LOC_PORT
| EFX_FILTER_MATCH_REM_PORT
))) {
765 rule
->flow_type
= ((spec
.ip_proto
== IPPROTO_TCP
) ?
766 TCP_V4_FLOW
: UDP_V4_FLOW
);
767 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_HOST
) {
768 ip_entry
->ip4dst
= spec
.loc_host
[0];
769 ip_mask
->ip4dst
= IP4_ADDR_FULL_MASK
;
771 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_HOST
) {
772 ip_entry
->ip4src
= spec
.rem_host
[0];
773 ip_mask
->ip4src
= IP4_ADDR_FULL_MASK
;
775 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_PORT
) {
776 ip_entry
->pdst
= spec
.loc_port
;
777 ip_mask
->pdst
= PORT_FULL_MASK
;
779 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_PORT
) {
780 ip_entry
->psrc
= spec
.rem_port
;
781 ip_mask
->psrc
= PORT_FULL_MASK
;
783 } else if (!(spec
.match_flags
&
784 ~(EFX_FILTER_MATCH_LOC_MAC
| EFX_FILTER_MATCH_LOC_MAC_IG
|
785 EFX_FILTER_MATCH_REM_MAC
| EFX_FILTER_MATCH_ETHER_TYPE
|
786 EFX_FILTER_MATCH_OUTER_VID
))) {
787 rule
->flow_type
= ETHER_FLOW
;
788 if (spec
.match_flags
&
789 (EFX_FILTER_MATCH_LOC_MAC
| EFX_FILTER_MATCH_LOC_MAC_IG
)) {
790 ether_addr_copy(mac_entry
->h_dest
, spec
.loc_mac
);
791 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_MAC
)
792 eth_broadcast_addr(mac_mask
->h_dest
);
794 ether_addr_copy(mac_mask
->h_dest
,
797 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_MAC
) {
798 ether_addr_copy(mac_entry
->h_source
, spec
.rem_mac
);
799 eth_broadcast_addr(mac_mask
->h_source
);
801 if (spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
) {
802 mac_entry
->h_proto
= spec
.ether_type
;
803 mac_mask
->h_proto
= ETHER_TYPE_FULL_MASK
;
806 /* The above should handle all filters that we insert */
811 if (spec
.match_flags
& EFX_FILTER_MATCH_OUTER_VID
) {
812 rule
->flow_type
|= FLOW_EXT
;
813 rule
->h_ext
.vlan_tci
= spec
.outer_vid
;
814 rule
->m_ext
.vlan_tci
= htons(0xfff);
821 efx_ethtool_get_rxnfc(struct net_device
*net_dev
,
822 struct ethtool_rxnfc
*info
, u32
*rule_locs
)
824 struct efx_nic
*efx
= netdev_priv(net_dev
);
827 case ETHTOOL_GRXRINGS
:
828 info
->data
= efx
->n_rx_channels
;
831 case ETHTOOL_GRXFH
: {
832 unsigned min_revision
= 0;
835 switch (info
->flow_type
) {
837 info
->data
|= RXH_L4_B_0_1
| RXH_L4_B_2_3
;
843 info
->data
|= RXH_IP_SRC
| RXH_IP_DST
;
844 min_revision
= EFX_REV_FALCON_B0
;
847 info
->data
|= RXH_L4_B_0_1
| RXH_L4_B_2_3
;
853 info
->data
|= RXH_IP_SRC
| RXH_IP_DST
;
854 min_revision
= EFX_REV_SIENA_A0
;
859 if (efx_nic_rev(efx
) < min_revision
)
864 case ETHTOOL_GRXCLSRLCNT
:
865 info
->data
= efx_filter_get_rx_id_limit(efx
);
868 info
->data
|= RX_CLS_LOC_SPECIAL
;
870 efx_filter_count_rx_used(efx
, EFX_FILTER_PRI_MANUAL
);
873 case ETHTOOL_GRXCLSRULE
:
874 if (efx_filter_get_rx_id_limit(efx
) == 0)
876 return efx_ethtool_get_class_rule(efx
, &info
->fs
);
878 case ETHTOOL_GRXCLSRLALL
: {
880 info
->data
= efx_filter_get_rx_id_limit(efx
);
883 rc
= efx_filter_get_rx_ids(efx
, EFX_FILTER_PRI_MANUAL
,
884 rule_locs
, info
->rule_cnt
);
896 static int efx_ethtool_set_class_rule(struct efx_nic
*efx
,
897 struct ethtool_rx_flow_spec
*rule
)
899 struct ethtool_tcpip4_spec
*ip_entry
= &rule
->h_u
.tcp_ip4_spec
;
900 struct ethtool_tcpip4_spec
*ip_mask
= &rule
->m_u
.tcp_ip4_spec
;
901 struct ethhdr
*mac_entry
= &rule
->h_u
.ether_spec
;
902 struct ethhdr
*mac_mask
= &rule
->m_u
.ether_spec
;
903 struct efx_filter_spec spec
;
906 /* Check that user wants us to choose the location */
907 if (rule
->location
!= RX_CLS_LOC_ANY
)
910 /* Range-check ring_cookie */
911 if (rule
->ring_cookie
>= efx
->n_rx_channels
&&
912 rule
->ring_cookie
!= RX_CLS_FLOW_DISC
)
915 /* Check for unsupported extensions */
916 if ((rule
->flow_type
& FLOW_EXT
) &&
917 (rule
->m_ext
.vlan_etype
|| rule
->m_ext
.data
[0] ||
918 rule
->m_ext
.data
[1]))
921 efx_filter_init_rx(&spec
, EFX_FILTER_PRI_MANUAL
,
922 efx
->rx_scatter
? EFX_FILTER_FLAG_RX_SCATTER
: 0,
923 (rule
->ring_cookie
== RX_CLS_FLOW_DISC
) ?
924 EFX_FILTER_RX_DMAQ_ID_DROP
: rule
->ring_cookie
);
926 switch (rule
->flow_type
& ~FLOW_EXT
) {
929 spec
.match_flags
= (EFX_FILTER_MATCH_ETHER_TYPE
|
930 EFX_FILTER_MATCH_IP_PROTO
);
931 spec
.ether_type
= htons(ETH_P_IP
);
932 spec
.ip_proto
= ((rule
->flow_type
& ~FLOW_EXT
) == TCP_V4_FLOW
?
933 IPPROTO_TCP
: IPPROTO_UDP
);
934 if (ip_mask
->ip4dst
) {
935 if (ip_mask
->ip4dst
!= IP4_ADDR_FULL_MASK
)
937 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_HOST
;
938 spec
.loc_host
[0] = ip_entry
->ip4dst
;
940 if (ip_mask
->ip4src
) {
941 if (ip_mask
->ip4src
!= IP4_ADDR_FULL_MASK
)
943 spec
.match_flags
|= EFX_FILTER_MATCH_REM_HOST
;
944 spec
.rem_host
[0] = ip_entry
->ip4src
;
947 if (ip_mask
->pdst
!= PORT_FULL_MASK
)
949 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_PORT
;
950 spec
.loc_port
= ip_entry
->pdst
;
953 if (ip_mask
->psrc
!= PORT_FULL_MASK
)
955 spec
.match_flags
|= EFX_FILTER_MATCH_REM_PORT
;
956 spec
.rem_port
= ip_entry
->psrc
;
963 if (!is_zero_ether_addr(mac_mask
->h_dest
)) {
964 if (ether_addr_equal(mac_mask
->h_dest
,
966 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_MAC_IG
;
967 else if (is_broadcast_ether_addr(mac_mask
->h_dest
))
968 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_MAC
;
971 ether_addr_copy(spec
.loc_mac
, mac_entry
->h_dest
);
973 if (!is_zero_ether_addr(mac_mask
->h_source
)) {
974 if (!is_broadcast_ether_addr(mac_mask
->h_source
))
976 spec
.match_flags
|= EFX_FILTER_MATCH_REM_MAC
;
977 ether_addr_copy(spec
.rem_mac
, mac_entry
->h_source
);
979 if (mac_mask
->h_proto
) {
980 if (mac_mask
->h_proto
!= ETHER_TYPE_FULL_MASK
)
982 spec
.match_flags
|= EFX_FILTER_MATCH_ETHER_TYPE
;
983 spec
.ether_type
= mac_entry
->h_proto
;
991 if ((rule
->flow_type
& FLOW_EXT
) && rule
->m_ext
.vlan_tci
) {
992 if (rule
->m_ext
.vlan_tci
!= htons(0xfff))
994 spec
.match_flags
|= EFX_FILTER_MATCH_OUTER_VID
;
995 spec
.outer_vid
= rule
->h_ext
.vlan_tci
;
998 rc
= efx_filter_insert_filter(efx
, &spec
, true);
1002 rule
->location
= rc
;
1006 static int efx_ethtool_set_rxnfc(struct net_device
*net_dev
,
1007 struct ethtool_rxnfc
*info
)
1009 struct efx_nic
*efx
= netdev_priv(net_dev
);
1011 if (efx_filter_get_rx_id_limit(efx
) == 0)
1014 switch (info
->cmd
) {
1015 case ETHTOOL_SRXCLSRLINS
:
1016 return efx_ethtool_set_class_rule(efx
, &info
->fs
);
1018 case ETHTOOL_SRXCLSRLDEL
:
1019 return efx_filter_remove_id_safe(efx
, EFX_FILTER_PRI_MANUAL
,
1027 static u32
efx_ethtool_get_rxfh_indir_size(struct net_device
*net_dev
)
1029 struct efx_nic
*efx
= netdev_priv(net_dev
);
1031 return ((efx_nic_rev(efx
) < EFX_REV_FALCON_B0
||
1032 efx
->n_rx_channels
== 1) ?
1033 0 : ARRAY_SIZE(efx
->rx_indir_table
));
1036 static int efx_ethtool_get_rxfh(struct net_device
*net_dev
, u32
*indir
, u8
*key
)
1038 struct efx_nic
*efx
= netdev_priv(net_dev
);
1040 memcpy(indir
, efx
->rx_indir_table
, sizeof(efx
->rx_indir_table
));
1044 static int efx_ethtool_set_rxfh(struct net_device
*net_dev
,
1045 const u32
*indir
, const u8
*key
)
1047 struct efx_nic
*efx
= netdev_priv(net_dev
);
1049 memcpy(efx
->rx_indir_table
, indir
, sizeof(efx
->rx_indir_table
));
1050 efx
->type
->rx_push_rss_config(efx
);
1054 static int efx_ethtool_get_ts_info(struct net_device
*net_dev
,
1055 struct ethtool_ts_info
*ts_info
)
1057 struct efx_nic
*efx
= netdev_priv(net_dev
);
1059 /* Software capabilities */
1060 ts_info
->so_timestamping
= (SOF_TIMESTAMPING_RX_SOFTWARE
|
1061 SOF_TIMESTAMPING_SOFTWARE
);
1062 ts_info
->phc_index
= -1;
1064 efx_ptp_get_ts_info(efx
, ts_info
);
1068 static int efx_ethtool_get_module_eeprom(struct net_device
*net_dev
,
1069 struct ethtool_eeprom
*ee
,
1072 struct efx_nic
*efx
= netdev_priv(net_dev
);
1075 if (!efx
->phy_op
|| !efx
->phy_op
->get_module_eeprom
)
1078 mutex_lock(&efx
->mac_lock
);
1079 ret
= efx
->phy_op
->get_module_eeprom(efx
, ee
, data
);
1080 mutex_unlock(&efx
->mac_lock
);
1085 static int efx_ethtool_get_module_info(struct net_device
*net_dev
,
1086 struct ethtool_modinfo
*modinfo
)
1088 struct efx_nic
*efx
= netdev_priv(net_dev
);
1091 if (!efx
->phy_op
|| !efx
->phy_op
->get_module_info
)
1094 mutex_lock(&efx
->mac_lock
);
1095 ret
= efx
->phy_op
->get_module_info(efx
, modinfo
);
1096 mutex_unlock(&efx
->mac_lock
);
1101 const struct ethtool_ops efx_ethtool_ops
= {
1102 .get_settings
= efx_ethtool_get_settings
,
1103 .set_settings
= efx_ethtool_set_settings
,
1104 .get_drvinfo
= efx_ethtool_get_drvinfo
,
1105 .get_regs_len
= efx_ethtool_get_regs_len
,
1106 .get_regs
= efx_ethtool_get_regs
,
1107 .get_msglevel
= efx_ethtool_get_msglevel
,
1108 .set_msglevel
= efx_ethtool_set_msglevel
,
1109 .nway_reset
= efx_ethtool_nway_reset
,
1110 .get_link
= ethtool_op_get_link
,
1111 .get_coalesce
= efx_ethtool_get_coalesce
,
1112 .set_coalesce
= efx_ethtool_set_coalesce
,
1113 .get_ringparam
= efx_ethtool_get_ringparam
,
1114 .set_ringparam
= efx_ethtool_set_ringparam
,
1115 .get_pauseparam
= efx_ethtool_get_pauseparam
,
1116 .set_pauseparam
= efx_ethtool_set_pauseparam
,
1117 .get_sset_count
= efx_ethtool_get_sset_count
,
1118 .self_test
= efx_ethtool_self_test
,
1119 .get_strings
= efx_ethtool_get_strings
,
1120 .set_phys_id
= efx_ethtool_phys_id
,
1121 .get_ethtool_stats
= efx_ethtool_get_stats
,
1122 .get_wol
= efx_ethtool_get_wol
,
1123 .set_wol
= efx_ethtool_set_wol
,
1124 .reset
= efx_ethtool_reset
,
1125 .get_rxnfc
= efx_ethtool_get_rxnfc
,
1126 .set_rxnfc
= efx_ethtool_set_rxnfc
,
1127 .get_rxfh_indir_size
= efx_ethtool_get_rxfh_indir_size
,
1128 .get_rxfh
= efx_ethtool_get_rxfh
,
1129 .set_rxfh
= efx_ethtool_set_rxfh
,
1130 .get_ts_info
= efx_ethtool_get_ts_info
,
1131 .get_module_info
= efx_ethtool_get_module_info
,
1132 .get_module_eeprom
= efx_ethtool_get_module_eeprom
,