1 // SPDX-License-Identifier: GPL-2.0-only
2 /****************************************************************************
3 * Driver for Solarflare network controllers and boards
4 * Copyright 2019 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.
10 #include <linux/module.h>
11 #include <linux/netdevice.h>
12 #include "net_driver.h"
16 #include "rx_common.h"
17 #include "ethtool_common.h"
18 #include "mcdi_port_common.h"
20 struct efx_sw_stat_desc
{
23 EFX_ETHTOOL_STAT_SOURCE_nic
,
24 EFX_ETHTOOL_STAT_SOURCE_channel
,
25 EFX_ETHTOOL_STAT_SOURCE_tx_queue
28 u64 (*get_stat
)(void *field
); /* Reader function */
31 /* Initialiser for a struct efx_sw_stat_desc with type-checking */
32 #define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \
33 get_stat_function) { \
35 .source = EFX_ETHTOOL_STAT_SOURCE_##source_name, \
36 .offset = ((((field_type *) 0) == \
37 &((struct efx_##source_name *)0)->field) ? \
38 offsetof(struct efx_##source_name, field) : \
39 offsetof(struct efx_##source_name, field)), \
40 .get_stat = get_stat_function, \
43 static u64
efx_get_uint_stat(void *field
)
45 return *(unsigned int *)field
;
48 static u64
efx_get_atomic_stat(void *field
)
50 return atomic_read((atomic_t
*) field
);
53 #define EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(field) \
54 EFX_ETHTOOL_STAT(field, nic, field, \
55 atomic_t, efx_get_atomic_stat)
57 #define EFX_ETHTOOL_UINT_CHANNEL_STAT(field) \
58 EFX_ETHTOOL_STAT(field, channel, n_##field, \
59 unsigned int, efx_get_uint_stat)
60 #define EFX_ETHTOOL_UINT_CHANNEL_STAT_NO_N(field) \
61 EFX_ETHTOOL_STAT(field, channel, field, \
62 unsigned int, efx_get_uint_stat)
64 #define EFX_ETHTOOL_UINT_TXQ_STAT(field) \
65 EFX_ETHTOOL_STAT(tx_##field, tx_queue, field, \
66 unsigned int, efx_get_uint_stat)
68 static const struct efx_sw_stat_desc efx_sw_stat_desc
[] = {
69 EFX_ETHTOOL_UINT_TXQ_STAT(merge_events
),
70 EFX_ETHTOOL_UINT_TXQ_STAT(tso_bursts
),
71 EFX_ETHTOOL_UINT_TXQ_STAT(tso_long_headers
),
72 EFX_ETHTOOL_UINT_TXQ_STAT(tso_packets
),
73 EFX_ETHTOOL_UINT_TXQ_STAT(tso_fallbacks
),
74 EFX_ETHTOOL_UINT_TXQ_STAT(pushes
),
75 EFX_ETHTOOL_UINT_TXQ_STAT(pio_packets
),
76 EFX_ETHTOOL_UINT_TXQ_STAT(cb_packets
),
77 EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(rx_reset
),
78 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tobe_disc
),
79 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_ip_hdr_chksum_err
),
80 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tcp_udp_chksum_err
),
81 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_inner_ip_hdr_chksum_err
),
82 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_inner_tcp_udp_chksum_err
),
83 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_outer_ip_hdr_chksum_err
),
84 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_outer_tcp_udp_chksum_err
),
85 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_eth_crc_err
),
86 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_mcast_mismatch
),
87 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_frm_trunc
),
88 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_merge_events
),
89 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_merge_packets
),
90 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_xdp_drops
),
91 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_xdp_bad_drops
),
92 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_xdp_tx
),
93 EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_xdp_redirect
),
94 #ifdef CONFIG_RFS_ACCEL
95 EFX_ETHTOOL_UINT_CHANNEL_STAT_NO_N(rfs_filter_count
),
96 EFX_ETHTOOL_UINT_CHANNEL_STAT(rfs_succeeded
),
97 EFX_ETHTOOL_UINT_CHANNEL_STAT(rfs_failed
),
101 #define EFX_ETHTOOL_SW_STAT_COUNT ARRAY_SIZE(efx_sw_stat_desc)
103 void efx_ethtool_get_drvinfo(struct net_device
*net_dev
,
104 struct ethtool_drvinfo
*info
)
106 struct efx_nic
*efx
= netdev_priv(net_dev
);
108 strlcpy(info
->driver
, KBUILD_MODNAME
, sizeof(info
->driver
));
109 efx_mcdi_print_fwver(efx
, info
->fw_version
,
110 sizeof(info
->fw_version
));
111 strlcpy(info
->bus_info
, pci_name(efx
->pci_dev
), sizeof(info
->bus_info
));
114 u32
efx_ethtool_get_msglevel(struct net_device
*net_dev
)
116 struct efx_nic
*efx
= netdev_priv(net_dev
);
118 return efx
->msg_enable
;
121 void efx_ethtool_set_msglevel(struct net_device
*net_dev
, u32 msg_enable
)
123 struct efx_nic
*efx
= netdev_priv(net_dev
);
125 efx
->msg_enable
= msg_enable
;
128 void efx_ethtool_self_test(struct net_device
*net_dev
,
129 struct ethtool_test
*test
, u64
*data
)
131 struct efx_nic
*efx
= netdev_priv(net_dev
);
132 struct efx_self_tests
*efx_tests
;
136 efx_tests
= kzalloc(sizeof(*efx_tests
), GFP_KERNEL
);
140 if (efx
->state
!= STATE_READY
) {
145 netif_info(efx
, drv
, efx
->net_dev
, "starting %sline testing\n",
146 (test
->flags
& ETH_TEST_FL_OFFLINE
) ? "off" : "on");
148 /* We need rx buffers and interrupts. */
149 already_up
= (efx
->net_dev
->flags
& IFF_UP
);
151 rc
= dev_open(efx
->net_dev
, NULL
);
153 netif_err(efx
, drv
, efx
->net_dev
,
154 "failed opening device.\n");
159 rc
= efx_selftest(efx
, efx_tests
, test
->flags
);
162 dev_close(efx
->net_dev
);
164 netif_info(efx
, drv
, efx
->net_dev
, "%s %sline self-tests\n",
165 rc
== 0 ? "passed" : "failed",
166 (test
->flags
& ETH_TEST_FL_OFFLINE
) ? "off" : "on");
169 efx_ethtool_fill_self_tests(efx
, efx_tests
, NULL
, data
);
173 test
->flags
|= ETH_TEST_FL_FAILED
;
176 void efx_ethtool_get_pauseparam(struct net_device
*net_dev
,
177 struct ethtool_pauseparam
*pause
)
179 struct efx_nic
*efx
= netdev_priv(net_dev
);
181 pause
->rx_pause
= !!(efx
->wanted_fc
& EFX_FC_RX
);
182 pause
->tx_pause
= !!(efx
->wanted_fc
& EFX_FC_TX
);
183 pause
->autoneg
= !!(efx
->wanted_fc
& EFX_FC_AUTO
);
186 int efx_ethtool_set_pauseparam(struct net_device
*net_dev
,
187 struct ethtool_pauseparam
*pause
)
189 struct efx_nic
*efx
= netdev_priv(net_dev
);
190 u8 wanted_fc
, old_fc
;
194 mutex_lock(&efx
->mac_lock
);
196 wanted_fc
= ((pause
->rx_pause
? EFX_FC_RX
: 0) |
197 (pause
->tx_pause
? EFX_FC_TX
: 0) |
198 (pause
->autoneg
? EFX_FC_AUTO
: 0));
200 if ((wanted_fc
& EFX_FC_TX
) && !(wanted_fc
& EFX_FC_RX
)) {
201 netif_dbg(efx
, drv
, efx
->net_dev
,
202 "Flow control unsupported: tx ON rx OFF\n");
207 if ((wanted_fc
& EFX_FC_AUTO
) && !efx
->link_advertising
[0]) {
208 netif_dbg(efx
, drv
, efx
->net_dev
,
209 "Autonegotiation is disabled\n");
214 /* Hook for Falcon bug 11482 workaround */
215 if (efx
->type
->prepare_enable_fc_tx
&&
216 (wanted_fc
& EFX_FC_TX
) && !(efx
->wanted_fc
& EFX_FC_TX
))
217 efx
->type
->prepare_enable_fc_tx(efx
);
219 old_adv
= efx
->link_advertising
[0];
220 old_fc
= efx
->wanted_fc
;
221 efx_link_set_wanted_fc(efx
, wanted_fc
);
222 if (efx
->link_advertising
[0] != old_adv
||
223 (efx
->wanted_fc
^ old_fc
) & EFX_FC_AUTO
) {
224 rc
= efx_mcdi_port_reconfigure(efx
);
226 netif_err(efx
, drv
, efx
->net_dev
,
227 "Unable to advertise requested flow "
228 "control setting\n");
233 /* Reconfigure the MAC. The PHY *may* generate a link state change event
234 * if the user just changed the advertised capabilities, but there's no
235 * harm doing this twice */
236 efx_mac_reconfigure(efx
, false);
239 mutex_unlock(&efx
->mac_lock
);
245 * efx_fill_test - fill in an individual self-test entry
246 * @test_index: Index of the test
247 * @strings: Ethtool strings, or %NULL
248 * @data: Ethtool test results, or %NULL
249 * @test: Pointer to test result (used only if data != %NULL)
250 * @unit_format: Unit name format (e.g. "chan\%d")
251 * @unit_id: Unit id (e.g. 0 for "chan0")
252 * @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
253 * @test_id: Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent")
255 * Fill in an individual self-test entry.
257 static void efx_fill_test(unsigned int test_index
, u8
*strings
, u64
*data
,
258 int *test
, const char *unit_format
, int unit_id
,
259 const char *test_format
, const char *test_id
)
261 char unit_str
[ETH_GSTRING_LEN
], test_str
[ETH_GSTRING_LEN
];
263 /* Fill data value, if applicable */
265 data
[test_index
] = *test
;
267 /* Fill string, if applicable */
269 if (strchr(unit_format
, '%'))
270 snprintf(unit_str
, sizeof(unit_str
),
271 unit_format
, unit_id
);
273 strcpy(unit_str
, unit_format
);
274 snprintf(test_str
, sizeof(test_str
), test_format
, test_id
);
275 snprintf(strings
+ test_index
* ETH_GSTRING_LEN
,
277 "%-6s %-24s", unit_str
, test_str
);
281 #define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
282 #define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->label
283 #define EFX_LOOPBACK_NAME(_mode, _counter) \
284 "loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode)
287 * efx_fill_loopback_test - fill in a block of loopback self-test entries
289 * @lb_tests: Efx loopback self-test results structure
290 * @mode: Loopback test mode
291 * @test_index: Starting index of the test
292 * @strings: Ethtool strings, or %NULL
293 * @data: Ethtool test results, or %NULL
295 * Fill in a block of loopback self-test entries. Return new test
298 static int efx_fill_loopback_test(struct efx_nic
*efx
,
299 struct efx_loopback_self_tests
*lb_tests
,
300 enum efx_loopback_mode mode
,
301 unsigned int test_index
,
302 u8
*strings
, u64
*data
)
304 struct efx_channel
*channel
=
305 efx_get_channel(efx
, efx
->tx_channel_offset
);
306 struct efx_tx_queue
*tx_queue
;
308 efx_for_each_channel_tx_queue(tx_queue
, channel
) {
309 efx_fill_test(test_index
++, strings
, data
,
310 &lb_tests
->tx_sent
[tx_queue
->label
],
311 EFX_TX_QUEUE_NAME(tx_queue
),
312 EFX_LOOPBACK_NAME(mode
, "tx_sent"));
313 efx_fill_test(test_index
++, strings
, data
,
314 &lb_tests
->tx_done
[tx_queue
->label
],
315 EFX_TX_QUEUE_NAME(tx_queue
),
316 EFX_LOOPBACK_NAME(mode
, "tx_done"));
318 efx_fill_test(test_index
++, strings
, data
,
321 EFX_LOOPBACK_NAME(mode
, "rx_good"));
322 efx_fill_test(test_index
++, strings
, data
,
325 EFX_LOOPBACK_NAME(mode
, "rx_bad"));
331 * efx_ethtool_fill_self_tests - get self-test details
333 * @tests: Efx self-test results structure, or %NULL
334 * @strings: Ethtool strings, or %NULL
335 * @data: Ethtool test results, or %NULL
337 * Get self-test number of strings, strings, and/or test results.
338 * Return number of strings (== number of test results).
340 * The reason for merging these three functions is to make sure that
341 * they can never be inconsistent.
343 int efx_ethtool_fill_self_tests(struct efx_nic
*efx
,
344 struct efx_self_tests
*tests
,
345 u8
*strings
, u64
*data
)
347 struct efx_channel
*channel
;
348 unsigned int n
= 0, i
;
349 enum efx_loopback_mode mode
;
351 efx_fill_test(n
++, strings
, data
, &tests
->phy_alive
,
352 "phy", 0, "alive", NULL
);
353 efx_fill_test(n
++, strings
, data
, &tests
->nvram
,
354 "core", 0, "nvram", NULL
);
355 efx_fill_test(n
++, strings
, data
, &tests
->interrupt
,
356 "core", 0, "interrupt", NULL
);
359 efx_for_each_channel(channel
, efx
) {
360 efx_fill_test(n
++, strings
, data
,
361 &tests
->eventq_dma
[channel
->channel
],
362 EFX_CHANNEL_NAME(channel
),
364 efx_fill_test(n
++, strings
, data
,
365 &tests
->eventq_int
[channel
->channel
],
366 EFX_CHANNEL_NAME(channel
),
370 efx_fill_test(n
++, strings
, data
, &tests
->memory
,
371 "core", 0, "memory", NULL
);
372 efx_fill_test(n
++, strings
, data
, &tests
->registers
,
373 "core", 0, "registers", NULL
);
375 for (i
= 0; true; ++i
) {
378 EFX_WARN_ON_PARANOID(i
>= EFX_MAX_PHY_TESTS
);
379 name
= efx_mcdi_phy_test_name(efx
, i
);
383 efx_fill_test(n
++, strings
, data
, &tests
->phy_ext
[i
], "phy", 0, name
, NULL
);
387 for (mode
= LOOPBACK_NONE
; mode
<= LOOPBACK_TEST_MAX
; mode
++) {
388 if (!(efx
->loopback_modes
& (1 << mode
)))
390 n
= efx_fill_loopback_test(efx
,
391 &tests
->loopback
[mode
], mode
, n
,
398 static size_t efx_describe_per_queue_stats(struct efx_nic
*efx
, u8
*strings
)
401 struct efx_channel
*channel
;
403 efx_for_each_channel(channel
, efx
) {
404 if (efx_channel_has_tx_queues(channel
)) {
406 if (strings
!= NULL
) {
407 snprintf(strings
, ETH_GSTRING_LEN
,
409 channel
->tx_queue
[0].queue
/
410 EFX_MAX_TXQ_PER_CHANNEL
);
412 strings
+= ETH_GSTRING_LEN
;
416 efx_for_each_channel(channel
, efx
) {
417 if (efx_channel_has_rx_queue(channel
)) {
419 if (strings
!= NULL
) {
420 snprintf(strings
, ETH_GSTRING_LEN
,
421 "rx-%d.rx_packets", channel
->channel
);
422 strings
+= ETH_GSTRING_LEN
;
426 if (efx
->xdp_tx_queue_count
&& efx
->xdp_tx_queues
) {
429 for (xdp
= 0; xdp
< efx
->xdp_tx_queue_count
; xdp
++) {
432 snprintf(strings
, ETH_GSTRING_LEN
,
433 "tx-xdp-cpu-%hu.tx_packets", xdp
);
434 strings
+= ETH_GSTRING_LEN
;
442 int efx_ethtool_get_sset_count(struct net_device
*net_dev
, int string_set
)
444 struct efx_nic
*efx
= netdev_priv(net_dev
);
446 switch (string_set
) {
448 return efx
->type
->describe_stats(efx
, NULL
) +
449 EFX_ETHTOOL_SW_STAT_COUNT
+
450 efx_describe_per_queue_stats(efx
, NULL
) +
451 efx_ptp_describe_stats(efx
, NULL
);
453 return efx_ethtool_fill_self_tests(efx
, NULL
, NULL
, NULL
);
459 void efx_ethtool_get_strings(struct net_device
*net_dev
,
460 u32 string_set
, u8
*strings
)
462 struct efx_nic
*efx
= netdev_priv(net_dev
);
465 switch (string_set
) {
467 strings
+= (efx
->type
->describe_stats(efx
, strings
) *
469 for (i
= 0; i
< EFX_ETHTOOL_SW_STAT_COUNT
; i
++)
470 strlcpy(strings
+ i
* ETH_GSTRING_LEN
,
471 efx_sw_stat_desc
[i
].name
, ETH_GSTRING_LEN
);
472 strings
+= EFX_ETHTOOL_SW_STAT_COUNT
* ETH_GSTRING_LEN
;
473 strings
+= (efx_describe_per_queue_stats(efx
, strings
) *
475 efx_ptp_describe_stats(efx
, strings
);
478 efx_ethtool_fill_self_tests(efx
, NULL
, strings
, NULL
);
481 /* No other string sets */
486 void efx_ethtool_get_stats(struct net_device
*net_dev
,
487 struct ethtool_stats
*stats
,
490 struct efx_nic
*efx
= netdev_priv(net_dev
);
491 const struct efx_sw_stat_desc
*stat
;
492 struct efx_channel
*channel
;
493 struct efx_tx_queue
*tx_queue
;
494 struct efx_rx_queue
*rx_queue
;
497 spin_lock_bh(&efx
->stats_lock
);
499 /* Get NIC statistics */
500 data
+= efx
->type
->update_stats(efx
, data
, NULL
);
502 /* Get software statistics */
503 for (i
= 0; i
< EFX_ETHTOOL_SW_STAT_COUNT
; i
++) {
504 stat
= &efx_sw_stat_desc
[i
];
505 switch (stat
->source
) {
506 case EFX_ETHTOOL_STAT_SOURCE_nic
:
507 data
[i
] = stat
->get_stat((void *)efx
+ stat
->offset
);
509 case EFX_ETHTOOL_STAT_SOURCE_channel
:
511 efx_for_each_channel(channel
, efx
)
512 data
[i
] += stat
->get_stat((void *)channel
+
515 case EFX_ETHTOOL_STAT_SOURCE_tx_queue
:
517 efx_for_each_channel(channel
, efx
) {
518 efx_for_each_channel_tx_queue(tx_queue
, channel
)
520 stat
->get_stat((void *)tx_queue
526 data
+= EFX_ETHTOOL_SW_STAT_COUNT
;
528 spin_unlock_bh(&efx
->stats_lock
);
530 efx_for_each_channel(channel
, efx
) {
531 if (efx_channel_has_tx_queues(channel
)) {
533 efx_for_each_channel_tx_queue(tx_queue
, channel
) {
534 *data
+= tx_queue
->tx_packets
;
539 efx_for_each_channel(channel
, efx
) {
540 if (efx_channel_has_rx_queue(channel
)) {
542 efx_for_each_channel_rx_queue(rx_queue
, channel
) {
543 *data
+= rx_queue
->rx_packets
;
548 if (efx
->xdp_tx_queue_count
&& efx
->xdp_tx_queues
) {
551 for (xdp
= 0; xdp
< efx
->xdp_tx_queue_count
; xdp
++) {
552 data
[0] = efx
->xdp_tx_queues
[xdp
]->tx_packets
;
557 efx_ptp_update_stats(efx
, data
);
560 /* This must be called with rtnl_lock held. */
561 int efx_ethtool_get_link_ksettings(struct net_device
*net_dev
,
562 struct ethtool_link_ksettings
*cmd
)
564 struct efx_nic
*efx
= netdev_priv(net_dev
);
565 struct efx_link_state
*link_state
= &efx
->link_state
;
568 mutex_lock(&efx
->mac_lock
);
569 efx_mcdi_phy_get_link_ksettings(efx
, cmd
);
570 mutex_unlock(&efx
->mac_lock
);
572 /* Both MACs support pause frames (bidirectional and respond-only) */
573 ethtool_convert_link_mode_to_legacy_u32(&supported
,
574 cmd
->link_modes
.supported
);
576 supported
|= SUPPORTED_Pause
| SUPPORTED_Asym_Pause
;
578 ethtool_convert_legacy_u32_to_link_mode(cmd
->link_modes
.supported
,
581 if (LOOPBACK_INTERNAL(efx
)) {
582 cmd
->base
.speed
= link_state
->speed
;
583 cmd
->base
.duplex
= link_state
->fd
? DUPLEX_FULL
: DUPLEX_HALF
;
589 /* This must be called with rtnl_lock held. */
590 int efx_ethtool_set_link_ksettings(struct net_device
*net_dev
,
591 const struct ethtool_link_ksettings
*cmd
)
593 struct efx_nic
*efx
= netdev_priv(net_dev
);
596 /* GMAC does not support 1000Mbps HD */
597 if ((cmd
->base
.speed
== SPEED_1000
) &&
598 (cmd
->base
.duplex
!= DUPLEX_FULL
)) {
599 netif_dbg(efx
, drv
, efx
->net_dev
,
600 "rejecting unsupported 1000Mbps HD setting\n");
604 mutex_lock(&efx
->mac_lock
);
605 rc
= efx_mcdi_phy_set_link_ksettings(efx
, cmd
);
606 mutex_unlock(&efx
->mac_lock
);
610 int efx_ethtool_get_fecparam(struct net_device
*net_dev
,
611 struct ethtool_fecparam
*fecparam
)
613 struct efx_nic
*efx
= netdev_priv(net_dev
);
616 mutex_lock(&efx
->mac_lock
);
617 rc
= efx_mcdi_phy_get_fecparam(efx
, fecparam
);
618 mutex_unlock(&efx
->mac_lock
);
623 int efx_ethtool_set_fecparam(struct net_device
*net_dev
,
624 struct ethtool_fecparam
*fecparam
)
626 struct efx_nic
*efx
= netdev_priv(net_dev
);
629 mutex_lock(&efx
->mac_lock
);
630 rc
= efx_mcdi_phy_set_fecparam(efx
, fecparam
);
631 mutex_unlock(&efx
->mac_lock
);
636 /* MAC address mask including only I/G bit */
637 static const u8 mac_addr_ig_mask
[ETH_ALEN
] __aligned(2) = {0x01, 0, 0, 0, 0, 0};
639 #define IP4_ADDR_FULL_MASK ((__force __be32)~0)
640 #define IP_PROTO_FULL_MASK 0xFF
641 #define PORT_FULL_MASK ((__force __be16)~0)
642 #define ETHER_TYPE_FULL_MASK ((__force __be16)~0)
644 static inline void ip6_fill_mask(__be32
*mask
)
646 mask
[0] = mask
[1] = mask
[2] = mask
[3] = ~(__be32
)0;
649 static int efx_ethtool_get_class_rule(struct efx_nic
*efx
,
650 struct ethtool_rx_flow_spec
*rule
,
653 struct ethtool_tcpip4_spec
*ip_entry
= &rule
->h_u
.tcp_ip4_spec
;
654 struct ethtool_tcpip4_spec
*ip_mask
= &rule
->m_u
.tcp_ip4_spec
;
655 struct ethtool_usrip4_spec
*uip_entry
= &rule
->h_u
.usr_ip4_spec
;
656 struct ethtool_usrip4_spec
*uip_mask
= &rule
->m_u
.usr_ip4_spec
;
657 struct ethtool_tcpip6_spec
*ip6_entry
= &rule
->h_u
.tcp_ip6_spec
;
658 struct ethtool_tcpip6_spec
*ip6_mask
= &rule
->m_u
.tcp_ip6_spec
;
659 struct ethtool_usrip6_spec
*uip6_entry
= &rule
->h_u
.usr_ip6_spec
;
660 struct ethtool_usrip6_spec
*uip6_mask
= &rule
->m_u
.usr_ip6_spec
;
661 struct ethhdr
*mac_entry
= &rule
->h_u
.ether_spec
;
662 struct ethhdr
*mac_mask
= &rule
->m_u
.ether_spec
;
663 struct efx_filter_spec spec
;
666 rc
= efx_filter_get_filter_safe(efx
, EFX_FILTER_PRI_MANUAL
,
667 rule
->location
, &spec
);
671 if (spec
.dmaq_id
== EFX_FILTER_RX_DMAQ_ID_DROP
)
672 rule
->ring_cookie
= RX_CLS_FLOW_DISC
;
674 rule
->ring_cookie
= spec
.dmaq_id
;
676 if ((spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
) &&
677 spec
.ether_type
== htons(ETH_P_IP
) &&
678 (spec
.match_flags
& EFX_FILTER_MATCH_IP_PROTO
) &&
679 (spec
.ip_proto
== IPPROTO_TCP
|| spec
.ip_proto
== IPPROTO_UDP
) &&
681 ~(EFX_FILTER_MATCH_ETHER_TYPE
| EFX_FILTER_MATCH_OUTER_VID
|
682 EFX_FILTER_MATCH_LOC_HOST
| EFX_FILTER_MATCH_REM_HOST
|
683 EFX_FILTER_MATCH_IP_PROTO
|
684 EFX_FILTER_MATCH_LOC_PORT
| EFX_FILTER_MATCH_REM_PORT
))) {
685 rule
->flow_type
= ((spec
.ip_proto
== IPPROTO_TCP
) ?
686 TCP_V4_FLOW
: UDP_V4_FLOW
);
687 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_HOST
) {
688 ip_entry
->ip4dst
= spec
.loc_host
[0];
689 ip_mask
->ip4dst
= IP4_ADDR_FULL_MASK
;
691 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_HOST
) {
692 ip_entry
->ip4src
= spec
.rem_host
[0];
693 ip_mask
->ip4src
= IP4_ADDR_FULL_MASK
;
695 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_PORT
) {
696 ip_entry
->pdst
= spec
.loc_port
;
697 ip_mask
->pdst
= PORT_FULL_MASK
;
699 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_PORT
) {
700 ip_entry
->psrc
= spec
.rem_port
;
701 ip_mask
->psrc
= PORT_FULL_MASK
;
703 } else if ((spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
) &&
704 spec
.ether_type
== htons(ETH_P_IPV6
) &&
705 (spec
.match_flags
& EFX_FILTER_MATCH_IP_PROTO
) &&
706 (spec
.ip_proto
== IPPROTO_TCP
|| spec
.ip_proto
== IPPROTO_UDP
) &&
708 ~(EFX_FILTER_MATCH_ETHER_TYPE
| EFX_FILTER_MATCH_OUTER_VID
|
709 EFX_FILTER_MATCH_LOC_HOST
| EFX_FILTER_MATCH_REM_HOST
|
710 EFX_FILTER_MATCH_IP_PROTO
|
711 EFX_FILTER_MATCH_LOC_PORT
| EFX_FILTER_MATCH_REM_PORT
))) {
712 rule
->flow_type
= ((spec
.ip_proto
== IPPROTO_TCP
) ?
713 TCP_V6_FLOW
: UDP_V6_FLOW
);
714 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_HOST
) {
715 memcpy(ip6_entry
->ip6dst
, spec
.loc_host
,
716 sizeof(ip6_entry
->ip6dst
));
717 ip6_fill_mask(ip6_mask
->ip6dst
);
719 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_HOST
) {
720 memcpy(ip6_entry
->ip6src
, spec
.rem_host
,
721 sizeof(ip6_entry
->ip6src
));
722 ip6_fill_mask(ip6_mask
->ip6src
);
724 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_PORT
) {
725 ip6_entry
->pdst
= spec
.loc_port
;
726 ip6_mask
->pdst
= PORT_FULL_MASK
;
728 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_PORT
) {
729 ip6_entry
->psrc
= spec
.rem_port
;
730 ip6_mask
->psrc
= PORT_FULL_MASK
;
732 } else if (!(spec
.match_flags
&
733 ~(EFX_FILTER_MATCH_LOC_MAC
| EFX_FILTER_MATCH_LOC_MAC_IG
|
734 EFX_FILTER_MATCH_REM_MAC
| EFX_FILTER_MATCH_ETHER_TYPE
|
735 EFX_FILTER_MATCH_OUTER_VID
))) {
736 rule
->flow_type
= ETHER_FLOW
;
737 if (spec
.match_flags
&
738 (EFX_FILTER_MATCH_LOC_MAC
| EFX_FILTER_MATCH_LOC_MAC_IG
)) {
739 ether_addr_copy(mac_entry
->h_dest
, spec
.loc_mac
);
740 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_MAC
)
741 eth_broadcast_addr(mac_mask
->h_dest
);
743 ether_addr_copy(mac_mask
->h_dest
,
746 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_MAC
) {
747 ether_addr_copy(mac_entry
->h_source
, spec
.rem_mac
);
748 eth_broadcast_addr(mac_mask
->h_source
);
750 if (spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
) {
751 mac_entry
->h_proto
= spec
.ether_type
;
752 mac_mask
->h_proto
= ETHER_TYPE_FULL_MASK
;
754 } else if (spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
&&
755 spec
.ether_type
== htons(ETH_P_IP
) &&
757 ~(EFX_FILTER_MATCH_ETHER_TYPE
| EFX_FILTER_MATCH_OUTER_VID
|
758 EFX_FILTER_MATCH_LOC_HOST
| EFX_FILTER_MATCH_REM_HOST
|
759 EFX_FILTER_MATCH_IP_PROTO
))) {
760 rule
->flow_type
= IPV4_USER_FLOW
;
761 uip_entry
->ip_ver
= ETH_RX_NFC_IP4
;
762 if (spec
.match_flags
& EFX_FILTER_MATCH_IP_PROTO
) {
763 uip_mask
->proto
= IP_PROTO_FULL_MASK
;
764 uip_entry
->proto
= spec
.ip_proto
;
766 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_HOST
) {
767 uip_entry
->ip4dst
= spec
.loc_host
[0];
768 uip_mask
->ip4dst
= IP4_ADDR_FULL_MASK
;
770 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_HOST
) {
771 uip_entry
->ip4src
= spec
.rem_host
[0];
772 uip_mask
->ip4src
= IP4_ADDR_FULL_MASK
;
774 } else if (spec
.match_flags
& EFX_FILTER_MATCH_ETHER_TYPE
&&
775 spec
.ether_type
== htons(ETH_P_IPV6
) &&
777 ~(EFX_FILTER_MATCH_ETHER_TYPE
| EFX_FILTER_MATCH_OUTER_VID
|
778 EFX_FILTER_MATCH_LOC_HOST
| EFX_FILTER_MATCH_REM_HOST
|
779 EFX_FILTER_MATCH_IP_PROTO
))) {
780 rule
->flow_type
= IPV6_USER_FLOW
;
781 if (spec
.match_flags
& EFX_FILTER_MATCH_IP_PROTO
) {
782 uip6_mask
->l4_proto
= IP_PROTO_FULL_MASK
;
783 uip6_entry
->l4_proto
= spec
.ip_proto
;
785 if (spec
.match_flags
& EFX_FILTER_MATCH_LOC_HOST
) {
786 memcpy(uip6_entry
->ip6dst
, spec
.loc_host
,
787 sizeof(uip6_entry
->ip6dst
));
788 ip6_fill_mask(uip6_mask
->ip6dst
);
790 if (spec
.match_flags
& EFX_FILTER_MATCH_REM_HOST
) {
791 memcpy(uip6_entry
->ip6src
, spec
.rem_host
,
792 sizeof(uip6_entry
->ip6src
));
793 ip6_fill_mask(uip6_mask
->ip6src
);
796 /* The above should handle all filters that we insert */
801 if (spec
.match_flags
& EFX_FILTER_MATCH_OUTER_VID
) {
802 rule
->flow_type
|= FLOW_EXT
;
803 rule
->h_ext
.vlan_tci
= spec
.outer_vid
;
804 rule
->m_ext
.vlan_tci
= htons(0xfff);
807 if (spec
.flags
& EFX_FILTER_FLAG_RX_RSS
) {
808 rule
->flow_type
|= FLOW_RSS
;
809 *rss_context
= spec
.rss_context
;
815 int efx_ethtool_get_rxnfc(struct net_device
*net_dev
,
816 struct ethtool_rxnfc
*info
, u32
*rule_locs
)
818 struct efx_nic
*efx
= netdev_priv(net_dev
);
823 case ETHTOOL_GRXRINGS
:
824 info
->data
= efx
->n_rx_channels
;
827 case ETHTOOL_GRXFH
: {
828 struct efx_rss_context
*ctx
= &efx
->rss_context
;
831 mutex_lock(&efx
->rss_lock
);
832 if (info
->flow_type
& FLOW_RSS
&& info
->rss_context
) {
833 ctx
= efx_find_rss_context_entry(efx
, info
->rss_context
);
841 if (!efx_rss_active(ctx
)) /* No RSS */
842 goto out_setdata_unlock
;
844 switch (info
->flow_type
& ~FLOW_RSS
) {
847 if (ctx
->rx_hash_udp_4tuple
)
848 data
= (RXH_L4_B_0_1
| RXH_L4_B_2_3
|
849 RXH_IP_SRC
| RXH_IP_DST
);
851 data
= RXH_IP_SRC
| RXH_IP_DST
;
855 data
= (RXH_L4_B_0_1
| RXH_L4_B_2_3
|
856 RXH_IP_SRC
| RXH_IP_DST
);
864 data
= RXH_IP_SRC
| RXH_IP_DST
;
872 mutex_unlock(&efx
->rss_lock
);
876 case ETHTOOL_GRXCLSRLCNT
:
877 info
->data
= efx_filter_get_rx_id_limit(efx
);
880 info
->data
|= RX_CLS_LOC_SPECIAL
;
882 efx_filter_count_rx_used(efx
, EFX_FILTER_PRI_MANUAL
);
885 case ETHTOOL_GRXCLSRULE
:
886 if (efx_filter_get_rx_id_limit(efx
) == 0)
888 rc
= efx_ethtool_get_class_rule(efx
, &info
->fs
, &rss_context
);
891 if (info
->fs
.flow_type
& FLOW_RSS
)
892 info
->rss_context
= rss_context
;
895 case ETHTOOL_GRXCLSRLALL
:
896 info
->data
= efx_filter_get_rx_id_limit(efx
);
899 rc
= efx_filter_get_rx_ids(efx
, EFX_FILTER_PRI_MANUAL
,
900 rule_locs
, info
->rule_cnt
);
911 static inline bool ip6_mask_is_full(__be32 mask
[4])
913 return !~(mask
[0] & mask
[1] & mask
[2] & mask
[3]);
916 static inline bool ip6_mask_is_empty(__be32 mask
[4])
918 return !(mask
[0] | mask
[1] | mask
[2] | mask
[3]);
921 static int efx_ethtool_set_class_rule(struct efx_nic
*efx
,
922 struct ethtool_rx_flow_spec
*rule
,
925 struct ethtool_tcpip4_spec
*ip_entry
= &rule
->h_u
.tcp_ip4_spec
;
926 struct ethtool_tcpip4_spec
*ip_mask
= &rule
->m_u
.tcp_ip4_spec
;
927 struct ethtool_usrip4_spec
*uip_entry
= &rule
->h_u
.usr_ip4_spec
;
928 struct ethtool_usrip4_spec
*uip_mask
= &rule
->m_u
.usr_ip4_spec
;
929 struct ethtool_tcpip6_spec
*ip6_entry
= &rule
->h_u
.tcp_ip6_spec
;
930 struct ethtool_tcpip6_spec
*ip6_mask
= &rule
->m_u
.tcp_ip6_spec
;
931 struct ethtool_usrip6_spec
*uip6_entry
= &rule
->h_u
.usr_ip6_spec
;
932 struct ethtool_usrip6_spec
*uip6_mask
= &rule
->m_u
.usr_ip6_spec
;
933 u32 flow_type
= rule
->flow_type
& ~(FLOW_EXT
| FLOW_RSS
);
934 struct ethhdr
*mac_entry
= &rule
->h_u
.ether_spec
;
935 struct ethhdr
*mac_mask
= &rule
->m_u
.ether_spec
;
936 enum efx_filter_flags flags
= 0;
937 struct efx_filter_spec spec
;
940 /* Check that user wants us to choose the location */
941 if (rule
->location
!= RX_CLS_LOC_ANY
)
944 /* Range-check ring_cookie */
945 if (rule
->ring_cookie
>= efx
->n_rx_channels
&&
946 rule
->ring_cookie
!= RX_CLS_FLOW_DISC
)
949 /* Check for unsupported extensions */
950 if ((rule
->flow_type
& FLOW_EXT
) &&
951 (rule
->m_ext
.vlan_etype
|| rule
->m_ext
.data
[0] ||
952 rule
->m_ext
.data
[1]))
956 flags
|= EFX_FILTER_FLAG_RX_SCATTER
;
957 if (rule
->flow_type
& FLOW_RSS
)
958 flags
|= EFX_FILTER_FLAG_RX_RSS
;
960 efx_filter_init_rx(&spec
, EFX_FILTER_PRI_MANUAL
, flags
,
961 (rule
->ring_cookie
== RX_CLS_FLOW_DISC
) ?
962 EFX_FILTER_RX_DMAQ_ID_DROP
: rule
->ring_cookie
);
964 if (rule
->flow_type
& FLOW_RSS
)
965 spec
.rss_context
= rss_context
;
970 spec
.match_flags
= (EFX_FILTER_MATCH_ETHER_TYPE
|
971 EFX_FILTER_MATCH_IP_PROTO
);
972 spec
.ether_type
= htons(ETH_P_IP
);
973 spec
.ip_proto
= flow_type
== TCP_V4_FLOW
? IPPROTO_TCP
975 if (ip_mask
->ip4dst
) {
976 if (ip_mask
->ip4dst
!= IP4_ADDR_FULL_MASK
)
978 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_HOST
;
979 spec
.loc_host
[0] = ip_entry
->ip4dst
;
981 if (ip_mask
->ip4src
) {
982 if (ip_mask
->ip4src
!= IP4_ADDR_FULL_MASK
)
984 spec
.match_flags
|= EFX_FILTER_MATCH_REM_HOST
;
985 spec
.rem_host
[0] = ip_entry
->ip4src
;
988 if (ip_mask
->pdst
!= PORT_FULL_MASK
)
990 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_PORT
;
991 spec
.loc_port
= ip_entry
->pdst
;
994 if (ip_mask
->psrc
!= PORT_FULL_MASK
)
996 spec
.match_flags
|= EFX_FILTER_MATCH_REM_PORT
;
997 spec
.rem_port
= ip_entry
->psrc
;
1005 spec
.match_flags
= (EFX_FILTER_MATCH_ETHER_TYPE
|
1006 EFX_FILTER_MATCH_IP_PROTO
);
1007 spec
.ether_type
= htons(ETH_P_IPV6
);
1008 spec
.ip_proto
= flow_type
== TCP_V6_FLOW
? IPPROTO_TCP
1010 if (!ip6_mask_is_empty(ip6_mask
->ip6dst
)) {
1011 if (!ip6_mask_is_full(ip6_mask
->ip6dst
))
1013 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_HOST
;
1014 memcpy(spec
.loc_host
, ip6_entry
->ip6dst
, sizeof(spec
.loc_host
));
1016 if (!ip6_mask_is_empty(ip6_mask
->ip6src
)) {
1017 if (!ip6_mask_is_full(ip6_mask
->ip6src
))
1019 spec
.match_flags
|= EFX_FILTER_MATCH_REM_HOST
;
1020 memcpy(spec
.rem_host
, ip6_entry
->ip6src
, sizeof(spec
.rem_host
));
1022 if (ip6_mask
->pdst
) {
1023 if (ip6_mask
->pdst
!= PORT_FULL_MASK
)
1025 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_PORT
;
1026 spec
.loc_port
= ip6_entry
->pdst
;
1028 if (ip6_mask
->psrc
) {
1029 if (ip6_mask
->psrc
!= PORT_FULL_MASK
)
1031 spec
.match_flags
|= EFX_FILTER_MATCH_REM_PORT
;
1032 spec
.rem_port
= ip6_entry
->psrc
;
1034 if (ip6_mask
->tclass
)
1038 case IPV4_USER_FLOW
:
1039 if (uip_mask
->l4_4_bytes
|| uip_mask
->tos
|| uip_mask
->ip_ver
||
1040 uip_entry
->ip_ver
!= ETH_RX_NFC_IP4
)
1042 spec
.match_flags
= EFX_FILTER_MATCH_ETHER_TYPE
;
1043 spec
.ether_type
= htons(ETH_P_IP
);
1044 if (uip_mask
->ip4dst
) {
1045 if (uip_mask
->ip4dst
!= IP4_ADDR_FULL_MASK
)
1047 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_HOST
;
1048 spec
.loc_host
[0] = uip_entry
->ip4dst
;
1050 if (uip_mask
->ip4src
) {
1051 if (uip_mask
->ip4src
!= IP4_ADDR_FULL_MASK
)
1053 spec
.match_flags
|= EFX_FILTER_MATCH_REM_HOST
;
1054 spec
.rem_host
[0] = uip_entry
->ip4src
;
1056 if (uip_mask
->proto
) {
1057 if (uip_mask
->proto
!= IP_PROTO_FULL_MASK
)
1059 spec
.match_flags
|= EFX_FILTER_MATCH_IP_PROTO
;
1060 spec
.ip_proto
= uip_entry
->proto
;
1064 case IPV6_USER_FLOW
:
1065 if (uip6_mask
->l4_4_bytes
|| uip6_mask
->tclass
)
1067 spec
.match_flags
= EFX_FILTER_MATCH_ETHER_TYPE
;
1068 spec
.ether_type
= htons(ETH_P_IPV6
);
1069 if (!ip6_mask_is_empty(uip6_mask
->ip6dst
)) {
1070 if (!ip6_mask_is_full(uip6_mask
->ip6dst
))
1072 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_HOST
;
1073 memcpy(spec
.loc_host
, uip6_entry
->ip6dst
, sizeof(spec
.loc_host
));
1075 if (!ip6_mask_is_empty(uip6_mask
->ip6src
)) {
1076 if (!ip6_mask_is_full(uip6_mask
->ip6src
))
1078 spec
.match_flags
|= EFX_FILTER_MATCH_REM_HOST
;
1079 memcpy(spec
.rem_host
, uip6_entry
->ip6src
, sizeof(spec
.rem_host
));
1081 if (uip6_mask
->l4_proto
) {
1082 if (uip6_mask
->l4_proto
!= IP_PROTO_FULL_MASK
)
1084 spec
.match_flags
|= EFX_FILTER_MATCH_IP_PROTO
;
1085 spec
.ip_proto
= uip6_entry
->l4_proto
;
1090 if (!is_zero_ether_addr(mac_mask
->h_dest
)) {
1091 if (ether_addr_equal(mac_mask
->h_dest
,
1093 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_MAC_IG
;
1094 else if (is_broadcast_ether_addr(mac_mask
->h_dest
))
1095 spec
.match_flags
|= EFX_FILTER_MATCH_LOC_MAC
;
1098 ether_addr_copy(spec
.loc_mac
, mac_entry
->h_dest
);
1100 if (!is_zero_ether_addr(mac_mask
->h_source
)) {
1101 if (!is_broadcast_ether_addr(mac_mask
->h_source
))
1103 spec
.match_flags
|= EFX_FILTER_MATCH_REM_MAC
;
1104 ether_addr_copy(spec
.rem_mac
, mac_entry
->h_source
);
1106 if (mac_mask
->h_proto
) {
1107 if (mac_mask
->h_proto
!= ETHER_TYPE_FULL_MASK
)
1109 spec
.match_flags
|= EFX_FILTER_MATCH_ETHER_TYPE
;
1110 spec
.ether_type
= mac_entry
->h_proto
;
1118 if ((rule
->flow_type
& FLOW_EXT
) && rule
->m_ext
.vlan_tci
) {
1119 if (rule
->m_ext
.vlan_tci
!= htons(0xfff))
1121 spec
.match_flags
|= EFX_FILTER_MATCH_OUTER_VID
;
1122 spec
.outer_vid
= rule
->h_ext
.vlan_tci
;
1125 rc
= efx_filter_insert_filter(efx
, &spec
, true);
1129 rule
->location
= rc
;
1133 int efx_ethtool_set_rxnfc(struct net_device
*net_dev
,
1134 struct ethtool_rxnfc
*info
)
1136 struct efx_nic
*efx
= netdev_priv(net_dev
);
1138 if (efx_filter_get_rx_id_limit(efx
) == 0)
1141 switch (info
->cmd
) {
1142 case ETHTOOL_SRXCLSRLINS
:
1143 return efx_ethtool_set_class_rule(efx
, &info
->fs
,
1146 case ETHTOOL_SRXCLSRLDEL
:
1147 return efx_filter_remove_id_safe(efx
, EFX_FILTER_PRI_MANUAL
,
1155 u32
efx_ethtool_get_rxfh_indir_size(struct net_device
*net_dev
)
1157 struct efx_nic
*efx
= netdev_priv(net_dev
);
1159 if (efx
->n_rx_channels
== 1)
1161 return ARRAY_SIZE(efx
->rss_context
.rx_indir_table
);
1164 u32
efx_ethtool_get_rxfh_key_size(struct net_device
*net_dev
)
1166 struct efx_nic
*efx
= netdev_priv(net_dev
);
1168 return efx
->type
->rx_hash_key_size
;
1171 int efx_ethtool_get_rxfh(struct net_device
*net_dev
, u32
*indir
, u8
*key
,
1174 struct efx_nic
*efx
= netdev_priv(net_dev
);
1177 rc
= efx
->type
->rx_pull_rss_config(efx
);
1182 *hfunc
= ETH_RSS_HASH_TOP
;
1184 memcpy(indir
, efx
->rss_context
.rx_indir_table
,
1185 sizeof(efx
->rss_context
.rx_indir_table
));
1187 memcpy(key
, efx
->rss_context
.rx_hash_key
,
1188 efx
->type
->rx_hash_key_size
);
1192 int efx_ethtool_set_rxfh(struct net_device
*net_dev
, const u32
*indir
,
1193 const u8
*key
, const u8 hfunc
)
1195 struct efx_nic
*efx
= netdev_priv(net_dev
);
1197 /* Hash function is Toeplitz, cannot be changed */
1198 if (hfunc
!= ETH_RSS_HASH_NO_CHANGE
&& hfunc
!= ETH_RSS_HASH_TOP
)
1204 key
= efx
->rss_context
.rx_hash_key
;
1206 indir
= efx
->rss_context
.rx_indir_table
;
1208 return efx
->type
->rx_push_rss_config(efx
, true, indir
, key
);
1211 int efx_ethtool_get_rxfh_context(struct net_device
*net_dev
, u32
*indir
,
1212 u8
*key
, u8
*hfunc
, u32 rss_context
)
1214 struct efx_nic
*efx
= netdev_priv(net_dev
);
1215 struct efx_rss_context
*ctx
;
1218 if (!efx
->type
->rx_pull_rss_context_config
)
1221 mutex_lock(&efx
->rss_lock
);
1222 ctx
= efx_find_rss_context_entry(efx
, rss_context
);
1227 rc
= efx
->type
->rx_pull_rss_context_config(efx
, ctx
);
1232 *hfunc
= ETH_RSS_HASH_TOP
;
1234 memcpy(indir
, ctx
->rx_indir_table
, sizeof(ctx
->rx_indir_table
));
1236 memcpy(key
, ctx
->rx_hash_key
, efx
->type
->rx_hash_key_size
);
1238 mutex_unlock(&efx
->rss_lock
);
1242 int efx_ethtool_set_rxfh_context(struct net_device
*net_dev
,
1243 const u32
*indir
, const u8
*key
,
1244 const u8 hfunc
, u32
*rss_context
,
1247 struct efx_nic
*efx
= netdev_priv(net_dev
);
1248 struct efx_rss_context
*ctx
;
1249 bool allocated
= false;
1252 if (!efx
->type
->rx_push_rss_context_config
)
1254 /* Hash function is Toeplitz, cannot be changed */
1255 if (hfunc
!= ETH_RSS_HASH_NO_CHANGE
&& hfunc
!= ETH_RSS_HASH_TOP
)
1258 mutex_lock(&efx
->rss_lock
);
1260 if (*rss_context
== ETH_RXFH_CONTEXT_ALLOC
) {
1262 /* alloc + delete == Nothing to do */
1266 ctx
= efx_alloc_rss_context_entry(efx
);
1271 ctx
->context_id
= EFX_MCDI_RSS_CONTEXT_INVALID
;
1272 /* Initialise indir table and key to defaults */
1273 efx_set_default_rx_indir_table(efx
, ctx
);
1274 netdev_rss_key_fill(ctx
->rx_hash_key
, sizeof(ctx
->rx_hash_key
));
1277 ctx
= efx_find_rss_context_entry(efx
, *rss_context
);
1285 /* delete this context */
1286 rc
= efx
->type
->rx_push_rss_context_config(efx
, ctx
, NULL
, NULL
);
1288 efx_free_rss_context_entry(ctx
);
1293 key
= ctx
->rx_hash_key
;
1295 indir
= ctx
->rx_indir_table
;
1297 rc
= efx
->type
->rx_push_rss_context_config(efx
, ctx
, indir
, key
);
1298 if (rc
&& allocated
)
1299 efx_free_rss_context_entry(ctx
);
1301 *rss_context
= ctx
->user_id
;
1303 mutex_unlock(&efx
->rss_lock
);
1307 int efx_ethtool_reset(struct net_device
*net_dev
, u32
*flags
)
1309 struct efx_nic
*efx
= netdev_priv(net_dev
);
1312 rc
= efx
->type
->map_reset_flags(flags
);
1316 return efx_reset(efx
, rc
);
1319 int efx_ethtool_get_module_eeprom(struct net_device
*net_dev
,
1320 struct ethtool_eeprom
*ee
,
1323 struct efx_nic
*efx
= netdev_priv(net_dev
);
1326 mutex_lock(&efx
->mac_lock
);
1327 ret
= efx_mcdi_phy_get_module_eeprom(efx
, ee
, data
);
1328 mutex_unlock(&efx
->mac_lock
);
1333 int efx_ethtool_get_module_info(struct net_device
*net_dev
,
1334 struct ethtool_modinfo
*modinfo
)
1336 struct efx_nic
*efx
= netdev_priv(net_dev
);
1339 mutex_lock(&efx
->mac_lock
);
1340 ret
= efx_mcdi_phy_get_module_info(efx
, modinfo
);
1341 mutex_unlock(&efx
->mac_lock
);