1 /****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
4 * Copyright 2006-2010 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 ethtool_string
{
23 char name
[ETH_GSTRING_LEN
];
26 struct efx_ethtool_stat
{
29 EFX_ETHTOOL_STAT_SOURCE_mac_stats
,
30 EFX_ETHTOOL_STAT_SOURCE_nic
,
31 EFX_ETHTOOL_STAT_SOURCE_channel
,
32 EFX_ETHTOOL_STAT_SOURCE_tx_queue
35 u64(*get_stat
) (void *field
); /* Reader function */
38 /* Initialiser for a struct #efx_ethtool_stat with type-checking */
39 #define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \
40 get_stat_function) { \
42 .source = EFX_ETHTOOL_STAT_SOURCE_##source_name, \
43 .offset = ((((field_type *) 0) == \
44 &((struct efx_##source_name *)0)->field) ? \
45 offsetof(struct efx_##source_name, field) : \
46 offsetof(struct efx_##source_name, field)), \
47 .get_stat = get_stat_function, \
50 static u64
efx_get_uint_stat(void *field
)
52 return *(unsigned int *)field
;
55 static u64
efx_get_ulong_stat(void *field
)
57 return *(unsigned long *)field
;
60 static u64
efx_get_u64_stat(void *field
)
62 return *(u64
*) field
;
65 static u64
efx_get_atomic_stat(void *field
)
67 return atomic_read((atomic_t
*) field
);
70 #define EFX_ETHTOOL_ULONG_MAC_STAT(field) \
71 EFX_ETHTOOL_STAT(field, mac_stats, field, \
72 unsigned long, efx_get_ulong_stat)
74 #define EFX_ETHTOOL_U64_MAC_STAT(field) \
75 EFX_ETHTOOL_STAT(field, mac_stats, field, \
76 u64, efx_get_u64_stat)
78 #define EFX_ETHTOOL_UINT_NIC_STAT(name) \
79 EFX_ETHTOOL_STAT(name, nic, n_##name, \
80 unsigned int, efx_get_uint_stat)
82 #define EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(field) \
83 EFX_ETHTOOL_STAT(field, nic, field, \
84 atomic_t, efx_get_atomic_stat)
86 #define EFX_ETHTOOL_UINT_CHANNEL_STAT(field) \
87 EFX_ETHTOOL_STAT(field, channel, n_##field, \
88 unsigned int, efx_get_uint_stat)
90 #define EFX_ETHTOOL_UINT_TXQ_STAT(field) \
91 EFX_ETHTOOL_STAT(tx_##field, tx_queue, field, \
92 unsigned int, efx_get_uint_stat)
94 static struct efx_ethtool_stat efx_ethtool_stats
[] = {
95 EFX_ETHTOOL_U64_MAC_STAT(tx_bytes
),
96 EFX_ETHTOOL_U64_MAC_STAT(tx_good_bytes
),
97 EFX_ETHTOOL_U64_MAC_STAT(tx_bad_bytes
),
98 EFX_ETHTOOL_ULONG_MAC_STAT(tx_packets
),
99 EFX_ETHTOOL_ULONG_MAC_STAT(tx_bad
),
100 EFX_ETHTOOL_ULONG_MAC_STAT(tx_pause
),
101 EFX_ETHTOOL_ULONG_MAC_STAT(tx_control
),
102 EFX_ETHTOOL_ULONG_MAC_STAT(tx_unicast
),
103 EFX_ETHTOOL_ULONG_MAC_STAT(tx_multicast
),
104 EFX_ETHTOOL_ULONG_MAC_STAT(tx_broadcast
),
105 EFX_ETHTOOL_ULONG_MAC_STAT(tx_lt64
),
106 EFX_ETHTOOL_ULONG_MAC_STAT(tx_64
),
107 EFX_ETHTOOL_ULONG_MAC_STAT(tx_65_to_127
),
108 EFX_ETHTOOL_ULONG_MAC_STAT(tx_128_to_255
),
109 EFX_ETHTOOL_ULONG_MAC_STAT(tx_256_to_511
),
110 EFX_ETHTOOL_ULONG_MAC_STAT(tx_512_to_1023
),
111 EFX_ETHTOOL_ULONG_MAC_STAT(tx_1024_to_15xx
),
112 EFX_ETHTOOL_ULONG_MAC_STAT(tx_15xx_to_jumbo
),
113 EFX_ETHTOOL_ULONG_MAC_STAT(tx_gtjumbo
),
114 EFX_ETHTOOL_ULONG_MAC_STAT(tx_collision
),
115 EFX_ETHTOOL_ULONG_MAC_STAT(tx_single_collision
),
116 EFX_ETHTOOL_ULONG_MAC_STAT(tx_multiple_collision
),
117 EFX_ETHTOOL_ULONG_MAC_STAT(tx_excessive_collision
),
118 EFX_ETHTOOL_ULONG_MAC_STAT(tx_deferred
),
119 EFX_ETHTOOL_ULONG_MAC_STAT(tx_late_collision
),
120 EFX_ETHTOOL_ULONG_MAC_STAT(tx_excessive_deferred
),
121 EFX_ETHTOOL_ULONG_MAC_STAT(tx_non_tcpudp
),
122 EFX_ETHTOOL_ULONG_MAC_STAT(tx_mac_src_error
),
123 EFX_ETHTOOL_ULONG_MAC_STAT(tx_ip_src_error
),
124 EFX_ETHTOOL_UINT_TXQ_STAT(tso_bursts
),
125 EFX_ETHTOOL_UINT_TXQ_STAT(tso_long_headers
),
126 EFX_ETHTOOL_UINT_TXQ_STAT(tso_packets
),
127 EFX_ETHTOOL_UINT_TXQ_STAT(pushes
),
128 EFX_ETHTOOL_U64_MAC_STAT(rx_bytes
),
129 EFX_ETHTOOL_U64_MAC_STAT(rx_good_bytes
),
130 EFX_ETHTOOL_U64_MAC_STAT(rx_bad_bytes
),
131 EFX_ETHTOOL_ULONG_MAC_STAT(rx_packets
),
132 EFX_ETHTOOL_ULONG_MAC_STAT(rx_good
),
133 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad
),
134 EFX_ETHTOOL_ULONG_MAC_STAT(rx_pause
),
135 EFX_ETHTOOL_ULONG_MAC_STAT(rx_control
),
136 EFX_ETHTOOL_ULONG_MAC_STAT(rx_unicast
),
137 EFX_ETHTOOL_ULONG_MAC_STAT(rx_multicast
),
138 EFX_ETHTOOL_ULONG_MAC_STAT(rx_broadcast
),
139 EFX_ETHTOOL_ULONG_MAC_STAT(rx_lt64
),
140 EFX_ETHTOOL_ULONG_MAC_STAT(rx_64
),
141 EFX_ETHTOOL_ULONG_MAC_STAT(rx_65_to_127
),
142 EFX_ETHTOOL_ULONG_MAC_STAT(rx_128_to_255
),
143 EFX_ETHTOOL_ULONG_MAC_STAT(rx_256_to_511
),
144 EFX_ETHTOOL_ULONG_MAC_STAT(rx_512_to_1023
),
145 EFX_ETHTOOL_ULONG_MAC_STAT(rx_1024_to_15xx
),
146 EFX_ETHTOOL_ULONG_MAC_STAT(rx_15xx_to_jumbo
),
147 EFX_ETHTOOL_ULONG_MAC_STAT(rx_gtjumbo
),
148 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_lt64
),
149 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_64_to_15xx
),
150 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_15xx_to_jumbo
),
151 EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_gtjumbo
),
152 EFX_ETHTOOL_ULONG_MAC_STAT(rx_overflow
),
153 EFX_ETHTOOL_ULONG_MAC_STAT(rx_missed
),
154 EFX_ETHTOOL_ULONG_MAC_STAT(rx_false_carrier
),
155 EFX_ETHTOOL_ULONG_MAC_STAT(rx_symbol_error
),
156 EFX_ETHTOOL_ULONG_MAC_STAT(rx_align_error
),
157 EFX_ETHTOOL_ULONG_MAC_STAT(rx_length_error
),
158 EFX_ETHTOOL_ULONG_MAC_STAT(rx_internal_error
),
159 EFX_ETHTOOL_UINT_NIC_STAT(rx_nodesc_drop_cnt
),
160 EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(rx_reset
),
161 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tobe_disc
),
162 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_ip_hdr_chksum_err
),
163 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tcp_udp_chksum_err
),
164 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_mcast_mismatch
),
165 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_frm_trunc
),
168 /* Number of ethtool statistics */
169 #define EFX_ETHTOOL_NUM_STATS ARRAY_SIZE(efx_ethtool_stats)
171 #define EFX_ETHTOOL_EEPROM_MAGIC 0xEFAB
173 /**************************************************************************
177 **************************************************************************
180 /* Identify device by flashing LEDs */
181 static int efx_ethtool_phys_id(struct net_device
*net_dev
, u32 count
)
183 struct efx_nic
*efx
= netdev_priv(net_dev
);
186 efx
->type
->set_id_led(efx
, EFX_LED_ON
);
187 schedule_timeout_interruptible(HZ
/ 2);
189 efx
->type
->set_id_led(efx
, EFX_LED_OFF
);
190 schedule_timeout_interruptible(HZ
/ 2);
191 } while (!signal_pending(current
) && --count
!= 0);
193 efx
->type
->set_id_led(efx
, EFX_LED_DEFAULT
);
197 /* This must be called with rtnl_lock held. */
198 static int efx_ethtool_get_settings(struct net_device
*net_dev
,
199 struct ethtool_cmd
*ecmd
)
201 struct efx_nic
*efx
= netdev_priv(net_dev
);
202 struct efx_link_state
*link_state
= &efx
->link_state
;
204 mutex_lock(&efx
->mac_lock
);
205 efx
->phy_op
->get_settings(efx
, ecmd
);
206 mutex_unlock(&efx
->mac_lock
);
208 /* GMAC does not support 1000Mbps HD */
209 ecmd
->supported
&= ~SUPPORTED_1000baseT_Half
;
210 /* Both MACs support pause frames (bidirectional and respond-only) */
211 ecmd
->supported
|= SUPPORTED_Pause
| SUPPORTED_Asym_Pause
;
213 if (LOOPBACK_INTERNAL(efx
)) {
214 ecmd
->speed
= link_state
->speed
;
215 ecmd
->duplex
= link_state
->fd
? DUPLEX_FULL
: DUPLEX_HALF
;
221 /* This must be called with rtnl_lock held. */
222 static int efx_ethtool_set_settings(struct net_device
*net_dev
,
223 struct ethtool_cmd
*ecmd
)
225 struct efx_nic
*efx
= netdev_priv(net_dev
);
228 /* GMAC does not support 1000Mbps HD */
229 if (ecmd
->speed
== SPEED_1000
&& ecmd
->duplex
!= DUPLEX_FULL
) {
230 netif_dbg(efx
, drv
, efx
->net_dev
,
231 "rejecting unsupported 1000Mbps HD setting\n");
235 mutex_lock(&efx
->mac_lock
);
236 rc
= efx
->phy_op
->set_settings(efx
, ecmd
);
237 mutex_unlock(&efx
->mac_lock
);
241 static void efx_ethtool_get_drvinfo(struct net_device
*net_dev
,
242 struct ethtool_drvinfo
*info
)
244 struct efx_nic
*efx
= netdev_priv(net_dev
);
246 strlcpy(info
->driver
, KBUILD_MODNAME
, sizeof(info
->driver
));
247 strlcpy(info
->version
, EFX_DRIVER_VERSION
, sizeof(info
->version
));
248 if (efx_nic_rev(efx
) >= EFX_REV_SIENA_A0
)
249 efx_mcdi_print_fwver(efx
, info
->fw_version
,
250 sizeof(info
->fw_version
));
251 strlcpy(info
->bus_info
, pci_name(efx
->pci_dev
), sizeof(info
->bus_info
));
254 static int efx_ethtool_get_regs_len(struct net_device
*net_dev
)
256 return efx_nic_get_regs_len(netdev_priv(net_dev
));
259 static void efx_ethtool_get_regs(struct net_device
*net_dev
,
260 struct ethtool_regs
*regs
, void *buf
)
262 struct efx_nic
*efx
= netdev_priv(net_dev
);
264 regs
->version
= efx
->type
->revision
;
265 efx_nic_get_regs(efx
, buf
);
268 static u32
efx_ethtool_get_msglevel(struct net_device
*net_dev
)
270 struct efx_nic
*efx
= netdev_priv(net_dev
);
271 return efx
->msg_enable
;
274 static void efx_ethtool_set_msglevel(struct net_device
*net_dev
, u32 msg_enable
)
276 struct efx_nic
*efx
= netdev_priv(net_dev
);
277 efx
->msg_enable
= msg_enable
;
281 * efx_fill_test - fill in an individual self-test entry
282 * @test_index: Index of the test
283 * @strings: Ethtool strings, or %NULL
284 * @data: Ethtool test results, or %NULL
285 * @test: Pointer to test result (used only if data != %NULL)
286 * @unit_format: Unit name format (e.g. "chan\%d")
287 * @unit_id: Unit id (e.g. 0 for "chan0")
288 * @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
289 * @test_id: Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent")
291 * Fill in an individual self-test entry.
293 static void efx_fill_test(unsigned int test_index
,
294 struct ethtool_string
*strings
, u64
*data
,
295 int *test
, const char *unit_format
, int unit_id
,
296 const char *test_format
, const char *test_id
)
298 struct ethtool_string unit_str
, test_str
;
300 /* Fill data value, if applicable */
302 data
[test_index
] = *test
;
304 /* Fill string, if applicable */
306 if (strchr(unit_format
, '%'))
307 snprintf(unit_str
.name
, sizeof(unit_str
.name
),
308 unit_format
, unit_id
);
310 strcpy(unit_str
.name
, unit_format
);
311 snprintf(test_str
.name
, sizeof(test_str
.name
),
312 test_format
, test_id
);
313 snprintf(strings
[test_index
].name
,
314 sizeof(strings
[test_index
].name
),
315 "%-6s %-24s", unit_str
.name
, test_str
.name
);
319 #define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
320 #define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue
321 #define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue
322 #define EFX_LOOPBACK_NAME(_mode, _counter) \
323 "loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode)
326 * efx_fill_loopback_test - fill in a block of loopback self-test entries
328 * @lb_tests: Efx loopback self-test results structure
329 * @mode: Loopback test mode
330 * @test_index: Starting index of the test
331 * @strings: Ethtool strings, or %NULL
332 * @data: Ethtool test results, or %NULL
334 static int efx_fill_loopback_test(struct efx_nic
*efx
,
335 struct efx_loopback_self_tests
*lb_tests
,
336 enum efx_loopback_mode mode
,
337 unsigned int test_index
,
338 struct ethtool_string
*strings
, u64
*data
)
340 struct efx_channel
*channel
= efx_get_channel(efx
, 0);
341 struct efx_tx_queue
*tx_queue
;
343 efx_for_each_channel_tx_queue(tx_queue
, channel
) {
344 efx_fill_test(test_index
++, strings
, data
,
345 &lb_tests
->tx_sent
[tx_queue
->queue
],
346 EFX_TX_QUEUE_NAME(tx_queue
),
347 EFX_LOOPBACK_NAME(mode
, "tx_sent"));
348 efx_fill_test(test_index
++, strings
, data
,
349 &lb_tests
->tx_done
[tx_queue
->queue
],
350 EFX_TX_QUEUE_NAME(tx_queue
),
351 EFX_LOOPBACK_NAME(mode
, "tx_done"));
353 efx_fill_test(test_index
++, strings
, data
,
356 EFX_LOOPBACK_NAME(mode
, "rx_good"));
357 efx_fill_test(test_index
++, strings
, data
,
360 EFX_LOOPBACK_NAME(mode
, "rx_bad"));
366 * efx_ethtool_fill_self_tests - get self-test details
368 * @tests: Efx self-test results structure, or %NULL
369 * @strings: Ethtool strings, or %NULL
370 * @data: Ethtool test results, or %NULL
372 static int efx_ethtool_fill_self_tests(struct efx_nic
*efx
,
373 struct efx_self_tests
*tests
,
374 struct ethtool_string
*strings
,
377 struct efx_channel
*channel
;
378 unsigned int n
= 0, i
;
379 enum efx_loopback_mode mode
;
381 efx_fill_test(n
++, strings
, data
, &tests
->phy_alive
,
382 "phy", 0, "alive", NULL
);
383 efx_fill_test(n
++, strings
, data
, &tests
->nvram
,
384 "core", 0, "nvram", NULL
);
385 efx_fill_test(n
++, strings
, data
, &tests
->interrupt
,
386 "core", 0, "interrupt", NULL
);
389 efx_for_each_channel(channel
, efx
) {
390 efx_fill_test(n
++, strings
, data
,
391 &tests
->eventq_dma
[channel
->channel
],
392 EFX_CHANNEL_NAME(channel
),
394 efx_fill_test(n
++, strings
, data
,
395 &tests
->eventq_int
[channel
->channel
],
396 EFX_CHANNEL_NAME(channel
),
398 efx_fill_test(n
++, strings
, data
,
399 &tests
->eventq_poll
[channel
->channel
],
400 EFX_CHANNEL_NAME(channel
),
401 "eventq.poll", NULL
);
404 efx_fill_test(n
++, strings
, data
, &tests
->registers
,
405 "core", 0, "registers", NULL
);
407 if (efx
->phy_op
->run_tests
!= NULL
) {
408 EFX_BUG_ON_PARANOID(efx
->phy_op
->test_name
== NULL
);
410 for (i
= 0; true; ++i
) {
413 EFX_BUG_ON_PARANOID(i
>= EFX_MAX_PHY_TESTS
);
414 name
= efx
->phy_op
->test_name(efx
, i
);
418 efx_fill_test(n
++, strings
, data
, &tests
->phy_ext
[i
],
419 "phy", 0, name
, NULL
);
424 for (mode
= LOOPBACK_NONE
; mode
<= LOOPBACK_TEST_MAX
; mode
++) {
425 if (!(efx
->loopback_modes
& (1 << mode
)))
427 n
= efx_fill_loopback_test(efx
,
428 &tests
->loopback
[mode
], mode
, n
,
435 static int efx_ethtool_get_sset_count(struct net_device
*net_dev
,
438 switch (string_set
) {
440 return EFX_ETHTOOL_NUM_STATS
;
442 return efx_ethtool_fill_self_tests(netdev_priv(net_dev
),
449 static void efx_ethtool_get_strings(struct net_device
*net_dev
,
450 u32 string_set
, u8
*strings
)
452 struct efx_nic
*efx
= netdev_priv(net_dev
);
453 struct ethtool_string
*ethtool_strings
=
454 (struct ethtool_string
*)strings
;
457 switch (string_set
) {
459 for (i
= 0; i
< EFX_ETHTOOL_NUM_STATS
; i
++)
460 strncpy(ethtool_strings
[i
].name
,
461 efx_ethtool_stats
[i
].name
,
462 sizeof(ethtool_strings
[i
].name
));
465 efx_ethtool_fill_self_tests(efx
, NULL
,
466 ethtool_strings
, NULL
);
469 /* No other string sets */
474 static void efx_ethtool_get_stats(struct net_device
*net_dev
,
475 struct ethtool_stats
*stats
,
478 struct efx_nic
*efx
= netdev_priv(net_dev
);
479 struct efx_mac_stats
*mac_stats
= &efx
->mac_stats
;
480 struct efx_ethtool_stat
*stat
;
481 struct efx_channel
*channel
;
482 struct efx_tx_queue
*tx_queue
;
483 struct rtnl_link_stats64 temp
;
486 EFX_BUG_ON_PARANOID(stats
->n_stats
!= EFX_ETHTOOL_NUM_STATS
);
488 /* Update MAC and NIC statistics */
489 dev_get_stats(net_dev
, &temp
);
491 /* Fill detailed statistics buffer */
492 for (i
= 0; i
< EFX_ETHTOOL_NUM_STATS
; i
++) {
493 stat
= &efx_ethtool_stats
[i
];
494 switch (stat
->source
) {
495 case EFX_ETHTOOL_STAT_SOURCE_mac_stats
:
496 data
[i
] = stat
->get_stat((void *)mac_stats
+
499 case EFX_ETHTOOL_STAT_SOURCE_nic
:
500 data
[i
] = stat
->get_stat((void *)efx
+ stat
->offset
);
502 case EFX_ETHTOOL_STAT_SOURCE_channel
:
504 efx_for_each_channel(channel
, efx
)
505 data
[i
] += stat
->get_stat((void *)channel
+
508 case EFX_ETHTOOL_STAT_SOURCE_tx_queue
:
510 efx_for_each_channel(channel
, efx
) {
511 efx_for_each_channel_tx_queue(tx_queue
, channel
)
513 stat
->get_stat((void *)tx_queue
521 static int efx_ethtool_set_tso(struct net_device
*net_dev
, u32 enable
)
523 struct efx_nic
*efx
__attribute__ ((unused
)) = netdev_priv(net_dev
);
526 features
= NETIF_F_TSO
;
527 if (efx
->type
->offload_features
& NETIF_F_V6_CSUM
)
528 features
|= NETIF_F_TSO6
;
531 net_dev
->features
|= features
;
533 net_dev
->features
&= ~features
;
538 static int efx_ethtool_set_tx_csum(struct net_device
*net_dev
, u32 enable
)
540 struct efx_nic
*efx
= netdev_priv(net_dev
);
541 u32 features
= efx
->type
->offload_features
& NETIF_F_ALL_CSUM
;
544 net_dev
->features
|= features
;
546 net_dev
->features
&= ~features
;
551 static int efx_ethtool_set_rx_csum(struct net_device
*net_dev
, u32 enable
)
553 struct efx_nic
*efx
= netdev_priv(net_dev
);
555 /* No way to stop the hardware doing the checks; we just
558 efx
->rx_checksum_enabled
= !!enable
;
563 static u32
efx_ethtool_get_rx_csum(struct net_device
*net_dev
)
565 struct efx_nic
*efx
= netdev_priv(net_dev
);
567 return efx
->rx_checksum_enabled
;
570 static int efx_ethtool_set_flags(struct net_device
*net_dev
, u32 data
)
572 struct efx_nic
*efx
= netdev_priv(net_dev
);
573 u32 supported
= (efx
->type
->offload_features
&
574 (ETH_FLAG_RXHASH
| ETH_FLAG_NTUPLE
));
577 rc
= ethtool_op_set_flags(net_dev
, data
, supported
);
581 if (!(data
& ETH_FLAG_NTUPLE
))
582 efx_filter_clear_rx(efx
, EFX_FILTER_PRI_MANUAL
);
587 static void efx_ethtool_self_test(struct net_device
*net_dev
,
588 struct ethtool_test
*test
, u64
*data
)
590 struct efx_nic
*efx
= netdev_priv(net_dev
);
591 struct efx_self_tests
*efx_tests
;
595 efx_tests
= kzalloc(sizeof(*efx_tests
), GFP_KERNEL
);
601 if (efx
->state
!= STATE_RUNNING
) {
606 netif_info(efx
, drv
, efx
->net_dev
, "starting %sline testing\n",
607 (test
->flags
& ETH_TEST_FL_OFFLINE
) ? "off" : "on");
609 /* We need rx buffers and interrupts. */
610 already_up
= (efx
->net_dev
->flags
& IFF_UP
);
612 rc
= dev_open(efx
->net_dev
);
614 netif_err(efx
, drv
, efx
->net_dev
,
615 "failed opening device.\n");
620 rc
= efx_selftest(efx
, efx_tests
, test
->flags
);
623 dev_close(efx
->net_dev
);
625 netif_info(efx
, drv
, efx
->net_dev
, "%s %sline self-tests\n",
626 rc
== 0 ? "passed" : "failed",
627 (test
->flags
& ETH_TEST_FL_OFFLINE
) ? "off" : "on");
630 /* Fill ethtool results structures */
631 efx_ethtool_fill_self_tests(efx
, efx_tests
, NULL
, data
);
635 test
->flags
|= ETH_TEST_FL_FAILED
;
638 /* Restart autonegotiation */
639 static int efx_ethtool_nway_reset(struct net_device
*net_dev
)
641 struct efx_nic
*efx
= netdev_priv(net_dev
);
643 return mdio45_nway_restart(&efx
->mdio
);
646 static int efx_ethtool_get_coalesce(struct net_device
*net_dev
,
647 struct ethtool_coalesce
*coalesce
)
649 struct efx_nic
*efx
= netdev_priv(net_dev
);
650 struct efx_channel
*channel
;
652 memset(coalesce
, 0, sizeof(*coalesce
));
654 /* Find lowest IRQ moderation across all used TX queues */
655 coalesce
->tx_coalesce_usecs_irq
= ~((u32
) 0);
656 efx_for_each_channel(channel
, efx
) {
657 if (!efx_channel_has_tx_queues(channel
))
659 if (channel
->irq_moderation
< coalesce
->tx_coalesce_usecs_irq
) {
660 if (channel
->channel
< efx
->n_rx_channels
)
661 coalesce
->tx_coalesce_usecs_irq
=
662 channel
->irq_moderation
;
664 coalesce
->tx_coalesce_usecs_irq
= 0;
668 coalesce
->use_adaptive_rx_coalesce
= efx
->irq_rx_adaptive
;
669 coalesce
->rx_coalesce_usecs_irq
= efx
->irq_rx_moderation
;
671 coalesce
->tx_coalesce_usecs_irq
*= EFX_IRQ_MOD_RESOLUTION
;
672 coalesce
->rx_coalesce_usecs_irq
*= EFX_IRQ_MOD_RESOLUTION
;
677 /* Set coalescing parameters
678 * The difficulties occur for shared channels
680 static int efx_ethtool_set_coalesce(struct net_device
*net_dev
,
681 struct ethtool_coalesce
*coalesce
)
683 struct efx_nic
*efx
= netdev_priv(net_dev
);
684 struct efx_channel
*channel
;
685 unsigned tx_usecs
, rx_usecs
, adaptive
;
687 if (coalesce
->use_adaptive_tx_coalesce
)
690 if (coalesce
->rx_coalesce_usecs
|| coalesce
->tx_coalesce_usecs
) {
691 netif_err(efx
, drv
, efx
->net_dev
, "invalid coalescing setting. "
692 "Only rx/tx_coalesce_usecs_irq are supported\n");
696 rx_usecs
= coalesce
->rx_coalesce_usecs_irq
;
697 tx_usecs
= coalesce
->tx_coalesce_usecs_irq
;
698 adaptive
= coalesce
->use_adaptive_rx_coalesce
;
700 /* If the channel is shared only allow RX parameters to be set */
701 efx_for_each_channel(channel
, efx
) {
702 if (efx_channel_has_rx_queue(channel
) &&
703 efx_channel_has_tx_queues(channel
) &&
705 netif_err(efx
, drv
, efx
->net_dev
, "Channel is shared. "
706 "Only RX coalescing may be set\n");
711 efx_init_irq_moderation(efx
, tx_usecs
, rx_usecs
, adaptive
);
712 efx_for_each_channel(channel
, efx
)
713 efx
->type
->push_irq_moderation(channel
);
718 static void efx_ethtool_get_ringparam(struct net_device
*net_dev
,
719 struct ethtool_ringparam
*ring
)
721 struct efx_nic
*efx
= netdev_priv(net_dev
);
723 ring
->rx_max_pending
= EFX_MAX_DMAQ_SIZE
;
724 ring
->tx_max_pending
= EFX_MAX_DMAQ_SIZE
;
725 ring
->rx_mini_max_pending
= 0;
726 ring
->rx_jumbo_max_pending
= 0;
727 ring
->rx_pending
= efx
->rxq_entries
;
728 ring
->tx_pending
= efx
->txq_entries
;
729 ring
->rx_mini_pending
= 0;
730 ring
->rx_jumbo_pending
= 0;
733 static int efx_ethtool_set_ringparam(struct net_device
*net_dev
,
734 struct ethtool_ringparam
*ring
)
736 struct efx_nic
*efx
= netdev_priv(net_dev
);
738 if (ring
->rx_mini_pending
|| ring
->rx_jumbo_pending
||
739 ring
->rx_pending
> EFX_MAX_DMAQ_SIZE
||
740 ring
->tx_pending
> EFX_MAX_DMAQ_SIZE
)
743 if (ring
->rx_pending
< EFX_MIN_RING_SIZE
||
744 ring
->tx_pending
< EFX_MIN_RING_SIZE
) {
745 netif_err(efx
, drv
, efx
->net_dev
,
746 "TX and RX queues cannot be smaller than %ld\n",
751 return efx_realloc_channels(efx
, ring
->rx_pending
, ring
->tx_pending
);
754 static int efx_ethtool_set_pauseparam(struct net_device
*net_dev
,
755 struct ethtool_pauseparam
*pause
)
757 struct efx_nic
*efx
= netdev_priv(net_dev
);
758 enum efx_fc_type wanted_fc
, old_fc
;
763 mutex_lock(&efx
->mac_lock
);
765 wanted_fc
= ((pause
->rx_pause
? EFX_FC_RX
: 0) |
766 (pause
->tx_pause
? EFX_FC_TX
: 0) |
767 (pause
->autoneg
? EFX_FC_AUTO
: 0));
769 if ((wanted_fc
& EFX_FC_TX
) && !(wanted_fc
& EFX_FC_RX
)) {
770 netif_dbg(efx
, drv
, efx
->net_dev
,
771 "Flow control unsupported: tx ON rx OFF\n");
776 if ((wanted_fc
& EFX_FC_AUTO
) && !efx
->link_advertising
) {
777 netif_dbg(efx
, drv
, efx
->net_dev
,
778 "Autonegotiation is disabled\n");
783 /* TX flow control may automatically turn itself off if the
784 * link partner (intermittently) stops responding to pause
785 * frames. There isn't any indication that this has happened,
786 * so the best we do is leave it up to the user to spot this
787 * and fix it be cycling transmit flow control on this end. */
788 reset
= (wanted_fc
& EFX_FC_TX
) && !(efx
->wanted_fc
& EFX_FC_TX
);
789 if (EFX_WORKAROUND_11482(efx
) && reset
) {
790 if (efx_nic_rev(efx
) == EFX_REV_FALCON_B0
) {
791 /* Recover by resetting the EM block */
792 falcon_stop_nic_stats(efx
);
793 falcon_drain_tx_fifo(efx
);
794 efx
->mac_op
->reconfigure(efx
);
795 falcon_start_nic_stats(efx
);
797 /* Schedule a reset to recover */
798 efx_schedule_reset(efx
, RESET_TYPE_INVISIBLE
);
802 old_adv
= efx
->link_advertising
;
803 old_fc
= efx
->wanted_fc
;
804 efx_link_set_wanted_fc(efx
, wanted_fc
);
805 if (efx
->link_advertising
!= old_adv
||
806 (efx
->wanted_fc
^ old_fc
) & EFX_FC_AUTO
) {
807 rc
= efx
->phy_op
->reconfigure(efx
);
809 netif_err(efx
, drv
, efx
->net_dev
,
810 "Unable to advertise requested flow "
811 "control setting\n");
816 /* Reconfigure the MAC. The PHY *may* generate a link state change event
817 * if the user just changed the advertised capabilities, but there's no
818 * harm doing this twice */
819 efx
->mac_op
->reconfigure(efx
);
822 mutex_unlock(&efx
->mac_lock
);
827 static void efx_ethtool_get_pauseparam(struct net_device
*net_dev
,
828 struct ethtool_pauseparam
*pause
)
830 struct efx_nic
*efx
= netdev_priv(net_dev
);
832 pause
->rx_pause
= !!(efx
->wanted_fc
& EFX_FC_RX
);
833 pause
->tx_pause
= !!(efx
->wanted_fc
& EFX_FC_TX
);
834 pause
->autoneg
= !!(efx
->wanted_fc
& EFX_FC_AUTO
);
838 static void efx_ethtool_get_wol(struct net_device
*net_dev
,
839 struct ethtool_wolinfo
*wol
)
841 struct efx_nic
*efx
= netdev_priv(net_dev
);
842 return efx
->type
->get_wol(efx
, wol
);
846 static int efx_ethtool_set_wol(struct net_device
*net_dev
,
847 struct ethtool_wolinfo
*wol
)
849 struct efx_nic
*efx
= netdev_priv(net_dev
);
850 return efx
->type
->set_wol(efx
, wol
->wolopts
);
853 static int efx_ethtool_reset(struct net_device
*net_dev
, u32
*flags
)
855 struct efx_nic
*efx
= netdev_priv(net_dev
);
856 enum reset_type method
;
858 ETH_RESET_EFX_INVISIBLE
= (ETH_RESET_DMA
| ETH_RESET_FILTER
|
859 ETH_RESET_OFFLOAD
| ETH_RESET_MAC
)
862 /* Check for minimal reset flags */
863 if ((*flags
& ETH_RESET_EFX_INVISIBLE
) != ETH_RESET_EFX_INVISIBLE
)
865 *flags
^= ETH_RESET_EFX_INVISIBLE
;
866 method
= RESET_TYPE_INVISIBLE
;
868 if (*flags
& ETH_RESET_PHY
) {
869 *flags
^= ETH_RESET_PHY
;
870 method
= RESET_TYPE_ALL
;
873 if ((*flags
& efx
->type
->reset_world_flags
) ==
874 efx
->type
->reset_world_flags
) {
875 *flags
^= efx
->type
->reset_world_flags
;
876 method
= RESET_TYPE_WORLD
;
879 return efx_reset(efx
, method
);
883 efx_ethtool_get_rxnfc(struct net_device
*net_dev
,
884 struct ethtool_rxnfc
*info
, void *rules __always_unused
)
886 struct efx_nic
*efx
= netdev_priv(net_dev
);
889 case ETHTOOL_GRXRINGS
:
890 info
->data
= efx
->n_rx_channels
;
893 case ETHTOOL_GRXFH
: {
894 unsigned min_revision
= 0;
897 switch (info
->flow_type
) {
899 info
->data
|= RXH_L4_B_0_1
| RXH_L4_B_2_3
;
905 info
->data
|= RXH_IP_SRC
| RXH_IP_DST
;
906 min_revision
= EFX_REV_FALCON_B0
;
909 info
->data
|= RXH_L4_B_0_1
| RXH_L4_B_2_3
;
915 info
->data
|= RXH_IP_SRC
| RXH_IP_DST
;
916 min_revision
= EFX_REV_SIENA_A0
;
921 if (efx_nic_rev(efx
) < min_revision
)
931 static int efx_ethtool_set_rx_ntuple(struct net_device
*net_dev
,
932 struct ethtool_rx_ntuple
*ntuple
)
934 struct efx_nic
*efx
= netdev_priv(net_dev
);
935 struct ethtool_tcpip4_spec
*ip_entry
= &ntuple
->fs
.h_u
.tcp_ip4_spec
;
936 struct ethtool_tcpip4_spec
*ip_mask
= &ntuple
->fs
.m_u
.tcp_ip4_spec
;
937 struct ethhdr
*mac_entry
= &ntuple
->fs
.h_u
.ether_spec
;
938 struct ethhdr
*mac_mask
= &ntuple
->fs
.m_u
.ether_spec
;
939 struct efx_filter_spec filter
;
942 /* Range-check action */
943 if (ntuple
->fs
.action
< ETHTOOL_RXNTUPLE_ACTION_CLEAR
||
944 ntuple
->fs
.action
>= (s32
)efx
->n_rx_channels
)
947 if (~ntuple
->fs
.data_mask
)
950 efx_filter_init_rx(&filter
, EFX_FILTER_PRI_MANUAL
, 0,
951 (ntuple
->fs
.action
== ETHTOOL_RXNTUPLE_ACTION_DROP
) ?
952 0xfff : ntuple
->fs
.action
);
954 switch (ntuple
->fs
.flow_type
) {
957 u8 proto
= (ntuple
->fs
.flow_type
== TCP_V4_FLOW
?
958 IPPROTO_TCP
: IPPROTO_UDP
);
960 /* Must match all of destination, */
961 if (ip_mask
->ip4dst
| ip_mask
->pdst
)
963 /* all or none of source, */
964 if ((ip_mask
->ip4src
| ip_mask
->psrc
) &&
965 ((__force u32
)~ip_mask
->ip4src
|
966 (__force u16
)~ip_mask
->psrc
))
968 /* and nothing else */
969 if ((u8
)~ip_mask
->tos
| (u16
)~ntuple
->fs
.vlan_tag_mask
)
972 if (!ip_mask
->ip4src
)
973 rc
= efx_filter_set_ipv4_full(&filter
, proto
,
979 rc
= efx_filter_set_ipv4_local(&filter
, proto
,
988 /* Must match all of destination, */
989 if (!is_zero_ether_addr(mac_mask
->h_dest
))
991 /* all or none of VID, */
992 if (ntuple
->fs
.vlan_tag_mask
!= 0xf000 &&
993 ntuple
->fs
.vlan_tag_mask
!= 0xffff)
995 /* and nothing else */
996 if (!is_broadcast_ether_addr(mac_mask
->h_source
) ||
997 mac_mask
->h_proto
!= htons(0xffff))
1000 rc
= efx_filter_set_eth_local(
1002 (ntuple
->fs
.vlan_tag_mask
== 0xf000) ?
1003 ntuple
->fs
.vlan_tag
: EFX_FILTER_VID_UNSPEC
,
1013 if (ntuple
->fs
.action
== ETHTOOL_RXNTUPLE_ACTION_CLEAR
)
1014 return efx_filter_remove_filter(efx
, &filter
);
1016 return efx_filter_insert_filter(efx
, &filter
, true);
1019 static int efx_ethtool_get_rxfh_indir(struct net_device
*net_dev
,
1020 struct ethtool_rxfh_indir
*indir
)
1022 struct efx_nic
*efx
= netdev_priv(net_dev
);
1024 min_t(size_t, indir
->size
, ARRAY_SIZE(efx
->rx_indir_table
));
1026 if (efx_nic_rev(efx
) < EFX_REV_FALCON_B0
)
1029 indir
->size
= ARRAY_SIZE(efx
->rx_indir_table
);
1030 memcpy(indir
->ring_index
, efx
->rx_indir_table
,
1031 copy_size
* sizeof(indir
->ring_index
[0]));
1035 static int efx_ethtool_set_rxfh_indir(struct net_device
*net_dev
,
1036 const struct ethtool_rxfh_indir
*indir
)
1038 struct efx_nic
*efx
= netdev_priv(net_dev
);
1041 if (efx_nic_rev(efx
) < EFX_REV_FALCON_B0
)
1044 /* Validate size and indices */
1045 if (indir
->size
!= ARRAY_SIZE(efx
->rx_indir_table
))
1047 for (i
= 0; i
< ARRAY_SIZE(efx
->rx_indir_table
); i
++)
1048 if (indir
->ring_index
[i
] >= efx
->n_rx_channels
)
1051 memcpy(efx
->rx_indir_table
, indir
->ring_index
,
1052 sizeof(efx
->rx_indir_table
));
1053 efx_nic_push_rx_indir_table(efx
);
1057 const struct ethtool_ops efx_ethtool_ops
= {
1058 .get_settings
= efx_ethtool_get_settings
,
1059 .set_settings
= efx_ethtool_set_settings
,
1060 .get_drvinfo
= efx_ethtool_get_drvinfo
,
1061 .get_regs_len
= efx_ethtool_get_regs_len
,
1062 .get_regs
= efx_ethtool_get_regs
,
1063 .get_msglevel
= efx_ethtool_get_msglevel
,
1064 .set_msglevel
= efx_ethtool_set_msglevel
,
1065 .nway_reset
= efx_ethtool_nway_reset
,
1066 .get_link
= ethtool_op_get_link
,
1067 .get_coalesce
= efx_ethtool_get_coalesce
,
1068 .set_coalesce
= efx_ethtool_set_coalesce
,
1069 .get_ringparam
= efx_ethtool_get_ringparam
,
1070 .set_ringparam
= efx_ethtool_set_ringparam
,
1071 .get_pauseparam
= efx_ethtool_get_pauseparam
,
1072 .set_pauseparam
= efx_ethtool_set_pauseparam
,
1073 .get_rx_csum
= efx_ethtool_get_rx_csum
,
1074 .set_rx_csum
= efx_ethtool_set_rx_csum
,
1075 .get_tx_csum
= ethtool_op_get_tx_csum
,
1076 /* Need to enable/disable IPv6 too */
1077 .set_tx_csum
= efx_ethtool_set_tx_csum
,
1078 .get_sg
= ethtool_op_get_sg
,
1079 .set_sg
= ethtool_op_set_sg
,
1080 .get_tso
= ethtool_op_get_tso
,
1081 /* Need to enable/disable TSO-IPv6 too */
1082 .set_tso
= efx_ethtool_set_tso
,
1083 .get_flags
= ethtool_op_get_flags
,
1084 .set_flags
= efx_ethtool_set_flags
,
1085 .get_sset_count
= efx_ethtool_get_sset_count
,
1086 .self_test
= efx_ethtool_self_test
,
1087 .get_strings
= efx_ethtool_get_strings
,
1088 .phys_id
= efx_ethtool_phys_id
,
1089 .get_ethtool_stats
= efx_ethtool_get_stats
,
1090 .get_wol
= efx_ethtool_get_wol
,
1091 .set_wol
= efx_ethtool_set_wol
,
1092 .reset
= efx_ethtool_reset
,
1093 .get_rxnfc
= efx_ethtool_get_rxnfc
,
1094 .set_rx_ntuple
= efx_ethtool_set_rx_ntuple
,
1095 .get_rxfh_indir
= efx_ethtool_get_rxfh_indir
,
1096 .set_rxfh_indir
= efx_ethtool_set_rxfh_indir
,