2008-04-27 11:55:59 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* Driver for Solarflare Solarstorm network controllers and boards
|
|
|
|
* Copyright 2005-2006 Fen Systems Ltd.
|
2009-11-29 15:16:19 +00:00
|
|
|
* Copyright 2006-2009 Solarflare Communications Inc.
|
2008-04-27 11:55:59 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation, incorporated herein by reference.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/ethtool.h>
|
|
|
|
#include <linux/rtnetlink.h>
|
2010-12-07 19:11:26 +00:00
|
|
|
#include <linux/in.h>
|
2008-04-27 11:55:59 +00:00
|
|
|
#include "net_driver.h"
|
2008-12-13 05:50:46 +00:00
|
|
|
#include "workarounds.h"
|
2008-05-07 12:36:19 +00:00
|
|
|
#include "selftest.h"
|
2008-04-27 11:55:59 +00:00
|
|
|
#include "efx.h"
|
2010-09-20 08:43:42 +00:00
|
|
|
#include "filter.h"
|
2009-11-29 15:12:08 +00:00
|
|
|
#include "nic.h"
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
struct ethtool_string {
|
|
|
|
char name[ETH_GSTRING_LEN];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct efx_ethtool_stat {
|
|
|
|
const char *name;
|
|
|
|
enum {
|
|
|
|
EFX_ETHTOOL_STAT_SOURCE_mac_stats,
|
|
|
|
EFX_ETHTOOL_STAT_SOURCE_nic,
|
|
|
|
EFX_ETHTOOL_STAT_SOURCE_channel
|
|
|
|
} source;
|
|
|
|
unsigned offset;
|
|
|
|
u64(*get_stat) (void *field); /* Reader function */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Initialiser for a struct #efx_ethtool_stat with type-checking */
|
|
|
|
#define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \
|
|
|
|
get_stat_function) { \
|
|
|
|
.name = #stat_name, \
|
|
|
|
.source = EFX_ETHTOOL_STAT_SOURCE_##source_name, \
|
|
|
|
.offset = ((((field_type *) 0) == \
|
|
|
|
&((struct efx_##source_name *)0)->field) ? \
|
|
|
|
offsetof(struct efx_##source_name, field) : \
|
|
|
|
offsetof(struct efx_##source_name, field)), \
|
|
|
|
.get_stat = get_stat_function, \
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64 efx_get_uint_stat(void *field)
|
|
|
|
{
|
|
|
|
return *(unsigned int *)field;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64 efx_get_ulong_stat(void *field)
|
|
|
|
{
|
|
|
|
return *(unsigned long *)field;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64 efx_get_u64_stat(void *field)
|
|
|
|
{
|
|
|
|
return *(u64 *) field;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64 efx_get_atomic_stat(void *field)
|
|
|
|
{
|
|
|
|
return atomic_read((atomic_t *) field);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define EFX_ETHTOOL_ULONG_MAC_STAT(field) \
|
|
|
|
EFX_ETHTOOL_STAT(field, mac_stats, field, \
|
|
|
|
unsigned long, efx_get_ulong_stat)
|
|
|
|
|
|
|
|
#define EFX_ETHTOOL_U64_MAC_STAT(field) \
|
|
|
|
EFX_ETHTOOL_STAT(field, mac_stats, field, \
|
|
|
|
u64, efx_get_u64_stat)
|
|
|
|
|
|
|
|
#define EFX_ETHTOOL_UINT_NIC_STAT(name) \
|
|
|
|
EFX_ETHTOOL_STAT(name, nic, n_##name, \
|
|
|
|
unsigned int, efx_get_uint_stat)
|
|
|
|
|
|
|
|
#define EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(field) \
|
|
|
|
EFX_ETHTOOL_STAT(field, nic, field, \
|
|
|
|
atomic_t, efx_get_atomic_stat)
|
|
|
|
|
|
|
|
#define EFX_ETHTOOL_UINT_CHANNEL_STAT(field) \
|
|
|
|
EFX_ETHTOOL_STAT(field, channel, n_##field, \
|
|
|
|
unsigned int, efx_get_uint_stat)
|
|
|
|
|
|
|
|
static struct efx_ethtool_stat efx_ethtool_stats[] = {
|
|
|
|
EFX_ETHTOOL_U64_MAC_STAT(tx_bytes),
|
|
|
|
EFX_ETHTOOL_U64_MAC_STAT(tx_good_bytes),
|
|
|
|
EFX_ETHTOOL_U64_MAC_STAT(tx_bad_bytes),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_packets),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_bad),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_pause),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_control),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_unicast),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_multicast),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_broadcast),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_lt64),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_64),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_65_to_127),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_128_to_255),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_256_to_511),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_512_to_1023),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_1024_to_15xx),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_15xx_to_jumbo),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_gtjumbo),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_collision),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_single_collision),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_multiple_collision),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_excessive_collision),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_deferred),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_late_collision),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_excessive_deferred),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_non_tcpudp),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_mac_src_error),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(tx_ip_src_error),
|
|
|
|
EFX_ETHTOOL_U64_MAC_STAT(rx_bytes),
|
|
|
|
EFX_ETHTOOL_U64_MAC_STAT(rx_good_bytes),
|
|
|
|
EFX_ETHTOOL_U64_MAC_STAT(rx_bad_bytes),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_packets),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_good),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_pause),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_control),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_unicast),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_multicast),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_broadcast),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_lt64),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_64),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_65_to_127),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_128_to_255),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_256_to_511),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_512_to_1023),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_1024_to_15xx),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_15xx_to_jumbo),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_gtjumbo),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_lt64),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_64_to_15xx),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_15xx_to_jumbo),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_gtjumbo),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_overflow),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_missed),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_false_carrier),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_symbol_error),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_align_error),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_length_error),
|
|
|
|
EFX_ETHTOOL_ULONG_MAC_STAT(rx_internal_error),
|
|
|
|
EFX_ETHTOOL_UINT_NIC_STAT(rx_nodesc_drop_cnt),
|
|
|
|
EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(rx_reset),
|
|
|
|
EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tobe_disc),
|
|
|
|
EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_ip_hdr_chksum_err),
|
|
|
|
EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tcp_udp_chksum_err),
|
2009-11-28 05:36:29 +00:00
|
|
|
EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_mcast_mismatch),
|
2008-04-27 11:55:59 +00:00
|
|
|
EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_frm_trunc),
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Number of ethtool statistics */
|
|
|
|
#define EFX_ETHTOOL_NUM_STATS ARRAY_SIZE(efx_ethtool_stats)
|
|
|
|
|
2008-09-01 11:47:16 +00:00
|
|
|
#define EFX_ETHTOOL_EEPROM_MAGIC 0xEFAB
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Ethtool operations
|
|
|
|
*
|
|
|
|
**************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Identify device by flashing LEDs */
|
2008-12-13 05:32:10 +00:00
|
|
|
static int efx_ethtool_phys_id(struct net_device *net_dev, u32 count)
|
2008-04-27 11:55:59 +00:00
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2009-11-23 16:03:45 +00:00
|
|
|
do {
|
2009-11-29 03:43:43 +00:00
|
|
|
efx->type->set_id_led(efx, EFX_LED_ON);
|
2009-11-23 16:03:45 +00:00
|
|
|
schedule_timeout_interruptible(HZ / 2);
|
|
|
|
|
2009-11-29 03:43:43 +00:00
|
|
|
efx->type->set_id_led(efx, EFX_LED_OFF);
|
2009-11-23 16:03:45 +00:00
|
|
|
schedule_timeout_interruptible(HZ / 2);
|
|
|
|
} while (!signal_pending(current) && --count != 0);
|
|
|
|
|
2009-11-29 03:43:43 +00:00
|
|
|
efx->type->set_id_led(efx, EFX_LED_DEFAULT);
|
2008-04-27 11:55:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This must be called with rtnl_lock held. */
|
2010-10-18 05:27:31 +00:00
|
|
|
static int efx_ethtool_get_settings(struct net_device *net_dev,
|
|
|
|
struct ethtool_cmd *ecmd)
|
2008-04-27 11:55:59 +00:00
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2009-11-29 03:42:41 +00:00
|
|
|
struct efx_link_state *link_state = &efx->link_state;
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
mutex_lock(&efx->mac_lock);
|
2008-12-13 05:50:08 +00:00
|
|
|
efx->phy_op->get_settings(efx, ecmd);
|
2008-04-27 11:55:59 +00:00
|
|
|
mutex_unlock(&efx->mac_lock);
|
|
|
|
|
2010-02-03 09:31:57 +00:00
|
|
|
/* GMAC does not support 1000Mbps HD */
|
2008-12-13 05:50:08 +00:00
|
|
|
ecmd->supported &= ~SUPPORTED_1000baseT_Half;
|
2009-11-29 03:42:41 +00:00
|
|
|
/* Both MACs support pause frames (bidirectional and respond-only) */
|
|
|
|
ecmd->supported |= SUPPORTED_Pause | SUPPORTED_Asym_Pause;
|
|
|
|
|
|
|
|
if (LOOPBACK_INTERNAL(efx)) {
|
|
|
|
ecmd->speed = link_state->speed;
|
|
|
|
ecmd->duplex = link_state->fd ? DUPLEX_FULL : DUPLEX_HALF;
|
|
|
|
}
|
2008-12-13 05:50:08 +00:00
|
|
|
|
|
|
|
return 0;
|
2008-04-27 11:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This must be called with rtnl_lock held. */
|
2010-10-18 05:27:31 +00:00
|
|
|
static int efx_ethtool_set_settings(struct net_device *net_dev,
|
|
|
|
struct ethtool_cmd *ecmd)
|
2008-04-27 11:55:59 +00:00
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
int rc;
|
|
|
|
|
2010-02-03 09:31:57 +00:00
|
|
|
/* GMAC does not support 1000Mbps HD */
|
2008-12-13 05:50:08 +00:00
|
|
|
if (ecmd->speed == SPEED_1000 && ecmd->duplex != DUPLEX_FULL) {
|
2010-06-23 11:30:07 +00:00
|
|
|
netif_dbg(efx, drv, efx->net_dev,
|
|
|
|
"rejecting unsupported 1000Mbps HD setting\n");
|
2008-12-13 05:50:08 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
mutex_lock(&efx->mac_lock);
|
2008-12-13 05:50:08 +00:00
|
|
|
rc = efx->phy_op->set_settings(efx, ecmd);
|
2008-04-27 11:55:59 +00:00
|
|
|
mutex_unlock(&efx->mac_lock);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void efx_ethtool_get_drvinfo(struct net_device *net_dev,
|
|
|
|
struct ethtool_drvinfo *info)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2010-06-23 11:30:26 +00:00
|
|
|
strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
|
2008-04-27 11:55:59 +00:00
|
|
|
strlcpy(info->version, EFX_DRIVER_VERSION, sizeof(info->version));
|
2009-11-29 15:15:41 +00:00
|
|
|
if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0)
|
|
|
|
siena_print_fwver(efx, info->fw_version,
|
|
|
|
sizeof(info->fw_version));
|
2008-04-27 11:55:59 +00:00
|
|
|
strlcpy(info->bus_info, pci_name(efx->pci_dev), sizeof(info->bus_info));
|
|
|
|
}
|
|
|
|
|
2010-06-21 03:06:53 +00:00
|
|
|
static int efx_ethtool_get_regs_len(struct net_device *net_dev)
|
|
|
|
{
|
|
|
|
return efx_nic_get_regs_len(netdev_priv(net_dev));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void efx_ethtool_get_regs(struct net_device *net_dev,
|
|
|
|
struct ethtool_regs *regs, void *buf)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
|
|
|
|
regs->version = efx->type->revision;
|
|
|
|
efx_nic_get_regs(efx, buf);
|
|
|
|
}
|
|
|
|
|
2010-06-23 11:30:07 +00:00
|
|
|
static u32 efx_ethtool_get_msglevel(struct net_device *net_dev)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
return efx->msg_enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void efx_ethtool_set_msglevel(struct net_device *net_dev, u32 msg_enable)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
efx->msg_enable = msg_enable;
|
|
|
|
}
|
|
|
|
|
2008-05-07 12:36:19 +00:00
|
|
|
/**
|
|
|
|
* efx_fill_test - fill in an individual self-test entry
|
|
|
|
* @test_index: Index of the test
|
|
|
|
* @strings: Ethtool strings, or %NULL
|
|
|
|
* @data: Ethtool test results, or %NULL
|
|
|
|
* @test: Pointer to test result (used only if data != %NULL)
|
2008-12-13 05:41:55 +00:00
|
|
|
* @unit_format: Unit name format (e.g. "chan\%d")
|
|
|
|
* @unit_id: Unit id (e.g. 0 for "chan0")
|
2008-05-07 12:36:19 +00:00
|
|
|
* @test_format: Test name format (e.g. "loopback.\%s.tx.sent")
|
2008-12-13 05:41:55 +00:00
|
|
|
* @test_id: Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent")
|
2008-05-07 12:36:19 +00:00
|
|
|
*
|
|
|
|
* Fill in an individual self-test entry.
|
|
|
|
*/
|
|
|
|
static void efx_fill_test(unsigned int test_index,
|
|
|
|
struct ethtool_string *strings, u64 *data,
|
|
|
|
int *test, const char *unit_format, int unit_id,
|
|
|
|
const char *test_format, const char *test_id)
|
|
|
|
{
|
|
|
|
struct ethtool_string unit_str, test_str;
|
|
|
|
|
|
|
|
/* Fill data value, if applicable */
|
|
|
|
if (data)
|
|
|
|
data[test_index] = *test;
|
|
|
|
|
|
|
|
/* Fill string, if applicable */
|
|
|
|
if (strings) {
|
2008-12-13 06:05:48 +00:00
|
|
|
if (strchr(unit_format, '%'))
|
|
|
|
snprintf(unit_str.name, sizeof(unit_str.name),
|
|
|
|
unit_format, unit_id);
|
|
|
|
else
|
|
|
|
strcpy(unit_str.name, unit_format);
|
2008-05-07 12:36:19 +00:00
|
|
|
snprintf(test_str.name, sizeof(test_str.name),
|
|
|
|
test_format, test_id);
|
|
|
|
snprintf(strings[test_index].name,
|
|
|
|
sizeof(strings[test_index].name),
|
2008-12-13 05:41:55 +00:00
|
|
|
"%-6s %-24s", unit_str.name, test_str.name);
|
2008-05-07 12:36:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-13 05:41:55 +00:00
|
|
|
#define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel
|
2008-05-07 12:36:19 +00:00
|
|
|
#define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue
|
|
|
|
#define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue
|
|
|
|
#define EFX_LOOPBACK_NAME(_mode, _counter) \
|
2009-11-23 16:08:17 +00:00
|
|
|
"loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode)
|
2008-05-07 12:36:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* efx_fill_loopback_test - fill in a block of loopback self-test entries
|
|
|
|
* @efx: Efx NIC
|
|
|
|
* @lb_tests: Efx loopback self-test results structure
|
|
|
|
* @mode: Loopback test mode
|
|
|
|
* @test_index: Starting index of the test
|
|
|
|
* @strings: Ethtool strings, or %NULL
|
|
|
|
* @data: Ethtool test results, or %NULL
|
|
|
|
*/
|
|
|
|
static int efx_fill_loopback_test(struct efx_nic *efx,
|
|
|
|
struct efx_loopback_self_tests *lb_tests,
|
|
|
|
enum efx_loopback_mode mode,
|
|
|
|
unsigned int test_index,
|
|
|
|
struct ethtool_string *strings, u64 *data)
|
|
|
|
{
|
2010-09-10 06:41:47 +00:00
|
|
|
struct efx_channel *channel = efx_get_channel(efx, 0);
|
2008-05-07 12:36:19 +00:00
|
|
|
struct efx_tx_queue *tx_queue;
|
|
|
|
|
2010-09-10 06:41:47 +00:00
|
|
|
efx_for_each_channel_tx_queue(tx_queue, channel) {
|
2008-05-07 12:36:19 +00:00
|
|
|
efx_fill_test(test_index++, strings, data,
|
|
|
|
&lb_tests->tx_sent[tx_queue->queue],
|
|
|
|
EFX_TX_QUEUE_NAME(tx_queue),
|
|
|
|
EFX_LOOPBACK_NAME(mode, "tx_sent"));
|
|
|
|
efx_fill_test(test_index++, strings, data,
|
|
|
|
&lb_tests->tx_done[tx_queue->queue],
|
|
|
|
EFX_TX_QUEUE_NAME(tx_queue),
|
|
|
|
EFX_LOOPBACK_NAME(mode, "tx_done"));
|
|
|
|
}
|
|
|
|
efx_fill_test(test_index++, strings, data,
|
|
|
|
&lb_tests->rx_good,
|
2008-12-13 06:05:48 +00:00
|
|
|
"rx", 0,
|
2008-05-07 12:36:19 +00:00
|
|
|
EFX_LOOPBACK_NAME(mode, "rx_good"));
|
|
|
|
efx_fill_test(test_index++, strings, data,
|
|
|
|
&lb_tests->rx_bad,
|
2008-12-13 06:05:48 +00:00
|
|
|
"rx", 0,
|
2008-05-07 12:36:19 +00:00
|
|
|
EFX_LOOPBACK_NAME(mode, "rx_bad"));
|
|
|
|
|
|
|
|
return test_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* efx_ethtool_fill_self_tests - get self-test details
|
|
|
|
* @efx: Efx NIC
|
|
|
|
* @tests: Efx self-test results structure, or %NULL
|
|
|
|
* @strings: Ethtool strings, or %NULL
|
|
|
|
* @data: Ethtool test results, or %NULL
|
|
|
|
*/
|
|
|
|
static int efx_ethtool_fill_self_tests(struct efx_nic *efx,
|
|
|
|
struct efx_self_tests *tests,
|
|
|
|
struct ethtool_string *strings,
|
|
|
|
u64 *data)
|
|
|
|
{
|
|
|
|
struct efx_channel *channel;
|
2008-12-26 21:47:25 +00:00
|
|
|
unsigned int n = 0, i;
|
2008-05-07 12:36:19 +00:00
|
|
|
enum efx_loopback_mode mode;
|
|
|
|
|
2010-02-03 09:30:50 +00:00
|
|
|
efx_fill_test(n++, strings, data, &tests->phy_alive,
|
|
|
|
"phy", 0, "alive", NULL);
|
2008-09-01 11:49:02 +00:00
|
|
|
efx_fill_test(n++, strings, data, &tests->nvram,
|
|
|
|
"core", 0, "nvram", NULL);
|
2008-05-07 12:36:19 +00:00
|
|
|
efx_fill_test(n++, strings, data, &tests->interrupt,
|
|
|
|
"core", 0, "interrupt", NULL);
|
|
|
|
|
|
|
|
/* Event queues */
|
|
|
|
efx_for_each_channel(channel, efx) {
|
|
|
|
efx_fill_test(n++, strings, data,
|
|
|
|
&tests->eventq_dma[channel->channel],
|
|
|
|
EFX_CHANNEL_NAME(channel),
|
|
|
|
"eventq.dma", NULL);
|
|
|
|
efx_fill_test(n++, strings, data,
|
|
|
|
&tests->eventq_int[channel->channel],
|
|
|
|
EFX_CHANNEL_NAME(channel),
|
|
|
|
"eventq.int", NULL);
|
|
|
|
efx_fill_test(n++, strings, data,
|
|
|
|
&tests->eventq_poll[channel->channel],
|
|
|
|
EFX_CHANNEL_NAME(channel),
|
|
|
|
"eventq.poll", NULL);
|
|
|
|
}
|
|
|
|
|
2008-09-01 11:49:02 +00:00
|
|
|
efx_fill_test(n++, strings, data, &tests->registers,
|
|
|
|
"core", 0, "registers", NULL);
|
2008-12-26 21:47:25 +00:00
|
|
|
|
2009-11-29 15:08:55 +00:00
|
|
|
if (efx->phy_op->run_tests != NULL) {
|
|
|
|
EFX_BUG_ON_PARANOID(efx->phy_op->test_name == NULL);
|
|
|
|
|
|
|
|
for (i = 0; true; ++i) {
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
EFX_BUG_ON_PARANOID(i >= EFX_MAX_PHY_TESTS);
|
|
|
|
name = efx->phy_op->test_name(efx, i);
|
|
|
|
if (name == NULL)
|
|
|
|
break;
|
|
|
|
|
2010-02-03 09:30:50 +00:00
|
|
|
efx_fill_test(n++, strings, data, &tests->phy_ext[i],
|
2009-11-29 15:08:55 +00:00
|
|
|
"phy", 0, name, NULL);
|
|
|
|
}
|
|
|
|
}
|
2008-05-07 12:36:19 +00:00
|
|
|
|
|
|
|
/* Loopback tests */
|
2008-09-01 11:49:02 +00:00
|
|
|
for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) {
|
2008-05-07 12:36:19 +00:00
|
|
|
if (!(efx->loopback_modes & (1 << mode)))
|
|
|
|
continue;
|
|
|
|
n = efx_fill_loopback_test(efx,
|
|
|
|
&tests->loopback[mode], mode, n,
|
|
|
|
strings, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2008-09-01 11:48:12 +00:00
|
|
|
static int efx_ethtool_get_sset_count(struct net_device *net_dev,
|
|
|
|
int string_set)
|
2008-04-27 11:55:59 +00:00
|
|
|
{
|
2008-09-01 11:48:12 +00:00
|
|
|
switch (string_set) {
|
|
|
|
case ETH_SS_STATS:
|
|
|
|
return EFX_ETHTOOL_NUM_STATS;
|
|
|
|
case ETH_SS_TEST:
|
|
|
|
return efx_ethtool_fill_self_tests(netdev_priv(net_dev),
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2008-05-07 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
static void efx_ethtool_get_strings(struct net_device *net_dev,
|
|
|
|
u32 string_set, u8 *strings)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
struct ethtool_string *ethtool_strings =
|
|
|
|
(struct ethtool_string *)strings;
|
|
|
|
int i;
|
|
|
|
|
2008-05-07 12:36:19 +00:00
|
|
|
switch (string_set) {
|
|
|
|
case ETH_SS_STATS:
|
2008-04-27 11:55:59 +00:00
|
|
|
for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++)
|
|
|
|
strncpy(ethtool_strings[i].name,
|
|
|
|
efx_ethtool_stats[i].name,
|
|
|
|
sizeof(ethtool_strings[i].name));
|
2008-05-07 12:36:19 +00:00
|
|
|
break;
|
|
|
|
case ETH_SS_TEST:
|
|
|
|
efx_ethtool_fill_self_tests(efx, NULL,
|
|
|
|
ethtool_strings, NULL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* No other string sets */
|
|
|
|
break;
|
|
|
|
}
|
2008-04-27 11:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void efx_ethtool_get_stats(struct net_device *net_dev,
|
|
|
|
struct ethtool_stats *stats,
|
|
|
|
u64 *data)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
struct efx_mac_stats *mac_stats = &efx->mac_stats;
|
|
|
|
struct efx_ethtool_stat *stat;
|
|
|
|
struct efx_channel *channel;
|
2010-07-07 21:58:56 +00:00
|
|
|
struct rtnl_link_stats64 temp;
|
2008-04-27 11:55:59 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
EFX_BUG_ON_PARANOID(stats->n_stats != EFX_ETHTOOL_NUM_STATS);
|
|
|
|
|
|
|
|
/* Update MAC and NIC statistics */
|
2010-07-07 21:58:56 +00:00
|
|
|
dev_get_stats(net_dev, &temp);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
/* Fill detailed statistics buffer */
|
|
|
|
for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++) {
|
|
|
|
stat = &efx_ethtool_stats[i];
|
|
|
|
switch (stat->source) {
|
|
|
|
case EFX_ETHTOOL_STAT_SOURCE_mac_stats:
|
|
|
|
data[i] = stat->get_stat((void *)mac_stats +
|
|
|
|
stat->offset);
|
|
|
|
break;
|
|
|
|
case EFX_ETHTOOL_STAT_SOURCE_nic:
|
|
|
|
data[i] = stat->get_stat((void *)efx + stat->offset);
|
|
|
|
break;
|
|
|
|
case EFX_ETHTOOL_STAT_SOURCE_channel:
|
|
|
|
data[i] = 0;
|
|
|
|
efx_for_each_channel(channel, efx)
|
|
|
|
data[i] += stat->get_stat((void *)channel +
|
|
|
|
stat->offset);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-29 15:16:05 +00:00
|
|
|
static int efx_ethtool_set_tso(struct net_device *net_dev, u32 enable)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx __attribute__ ((unused)) = netdev_priv(net_dev);
|
|
|
|
unsigned long features;
|
|
|
|
|
|
|
|
features = NETIF_F_TSO;
|
|
|
|
if (efx->type->offload_features & NETIF_F_V6_CSUM)
|
|
|
|
features |= NETIF_F_TSO6;
|
|
|
|
|
|
|
|
if (enable)
|
|
|
|
net_dev->features |= features;
|
|
|
|
else
|
|
|
|
net_dev->features &= ~features;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-29 15:11:02 +00:00
|
|
|
static int efx_ethtool_set_tx_csum(struct net_device *net_dev, u32 enable)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
unsigned long features = efx->type->offload_features & NETIF_F_ALL_CSUM;
|
|
|
|
|
|
|
|
if (enable)
|
|
|
|
net_dev->features |= features;
|
|
|
|
else
|
|
|
|
net_dev->features &= ~features;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
static int efx_ethtool_set_rx_csum(struct net_device *net_dev, u32 enable)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
/* No way to stop the hardware doing the checks; we just
|
|
|
|
* ignore the result.
|
|
|
|
*/
|
2008-09-01 11:46:50 +00:00
|
|
|
efx->rx_checksum_enabled = !!enable;
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32 efx_ethtool_get_rx_csum(struct net_device *net_dev)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
return efx->rx_checksum_enabled;
|
|
|
|
}
|
|
|
|
|
2010-06-23 11:31:28 +00:00
|
|
|
static int efx_ethtool_set_flags(struct net_device *net_dev, u32 data)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2010-09-20 08:43:42 +00:00
|
|
|
u32 supported = (efx->type->offload_features &
|
|
|
|
(ETH_FLAG_RXHASH | ETH_FLAG_NTUPLE));
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = ethtool_op_set_flags(net_dev, data, supported);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
2010-12-07 19:02:27 +00:00
|
|
|
if (!(data & ETH_FLAG_NTUPLE))
|
|
|
|
efx_filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
|
2010-06-23 11:31:28 +00:00
|
|
|
|
2010-09-20 08:43:42 +00:00
|
|
|
return 0;
|
2010-06-23 11:31:28 +00:00
|
|
|
}
|
|
|
|
|
2008-05-07 12:36:19 +00:00
|
|
|
static void efx_ethtool_self_test(struct net_device *net_dev,
|
|
|
|
struct ethtool_test *test, u64 *data)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-05-07 12:36:19 +00:00
|
|
|
struct efx_self_tests efx_tests;
|
2008-12-26 21:47:04 +00:00
|
|
|
int already_up;
|
2008-05-07 12:36:19 +00:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
ASSERT_RTNL();
|
|
|
|
if (efx->state != STATE_RUNNING) {
|
|
|
|
rc = -EIO;
|
|
|
|
goto fail1;
|
|
|
|
}
|
|
|
|
|
2010-12-07 18:29:52 +00:00
|
|
|
netif_info(efx, drv, efx->net_dev, "starting %sline testing\n",
|
|
|
|
(test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
|
|
|
|
|
2008-05-07 12:36:19 +00:00
|
|
|
/* We need rx buffers and interrupts. */
|
|
|
|
already_up = (efx->net_dev->flags & IFF_UP);
|
|
|
|
if (!already_up) {
|
|
|
|
rc = dev_open(efx->net_dev);
|
|
|
|
if (rc) {
|
2010-06-23 11:30:07 +00:00
|
|
|
netif_err(efx, drv, efx->net_dev,
|
|
|
|
"failed opening device.\n");
|
2008-05-07 12:36:19 +00:00
|
|
|
goto fail2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&efx_tests, 0, sizeof(efx_tests));
|
|
|
|
|
2008-12-26 21:47:04 +00:00
|
|
|
rc = efx_selftest(efx, &efx_tests, test->flags);
|
2008-05-07 12:36:19 +00:00
|
|
|
|
|
|
|
if (!already_up)
|
|
|
|
dev_close(efx->net_dev);
|
|
|
|
|
2010-12-07 18:29:52 +00:00
|
|
|
netif_info(efx, drv, efx->net_dev, "%s %sline self-tests\n",
|
|
|
|
rc == 0 ? "passed" : "failed",
|
|
|
|
(test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on");
|
2008-05-07 12:36:19 +00:00
|
|
|
|
|
|
|
fail2:
|
|
|
|
fail1:
|
|
|
|
/* Fill ethtool results structures */
|
|
|
|
efx_ethtool_fill_self_tests(efx, &efx_tests, NULL, data);
|
|
|
|
if (rc)
|
|
|
|
test->flags |= ETH_TEST_FL_FAILED;
|
|
|
|
}
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
/* Restart autonegotiation */
|
|
|
|
static int efx_ethtool_nway_reset(struct net_device *net_dev)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2009-04-29 08:05:08 +00:00
|
|
|
return mdio45_nway_restart(&efx->mdio);
|
2008-04-27 11:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int efx_ethtool_get_coalesce(struct net_device *net_dev,
|
|
|
|
struct ethtool_coalesce *coalesce)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
struct efx_channel *channel;
|
|
|
|
|
|
|
|
memset(coalesce, 0, sizeof(*coalesce));
|
|
|
|
|
|
|
|
/* Find lowest IRQ moderation across all used TX queues */
|
|
|
|
coalesce->tx_coalesce_usecs_irq = ~((u32) 0);
|
2010-09-10 06:41:47 +00:00
|
|
|
efx_for_each_channel(channel, efx) {
|
|
|
|
if (!efx_channel_get_tx_queue(channel, 0))
|
|
|
|
continue;
|
2008-04-27 11:55:59 +00:00
|
|
|
if (channel->irq_moderation < coalesce->tx_coalesce_usecs_irq) {
|
2010-04-28 09:30:43 +00:00
|
|
|
if (channel->channel < efx->n_rx_channels)
|
2008-04-27 11:55:59 +00:00
|
|
|
coalesce->tx_coalesce_usecs_irq =
|
|
|
|
channel->irq_moderation;
|
|
|
|
else
|
|
|
|
coalesce->tx_coalesce_usecs_irq = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-20 13:30:37 +00:00
|
|
|
coalesce->use_adaptive_rx_coalesce = efx->irq_rx_adaptive;
|
|
|
|
coalesce->rx_coalesce_usecs_irq = efx->irq_rx_moderation;
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2009-11-29 03:43:56 +00:00
|
|
|
coalesce->tx_coalesce_usecs_irq *= EFX_IRQ_MOD_RESOLUTION;
|
|
|
|
coalesce->rx_coalesce_usecs_irq *= EFX_IRQ_MOD_RESOLUTION;
|
2009-10-23 08:32:13 +00:00
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set coalescing parameters
|
|
|
|
* The difficulties occur for shared channels
|
|
|
|
*/
|
|
|
|
static int efx_ethtool_set_coalesce(struct net_device *net_dev,
|
|
|
|
struct ethtool_coalesce *coalesce)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
struct efx_channel *channel;
|
2009-03-20 13:30:37 +00:00
|
|
|
unsigned tx_usecs, rx_usecs, adaptive;
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2009-03-20 13:30:37 +00:00
|
|
|
if (coalesce->use_adaptive_tx_coalesce)
|
2008-04-27 11:55:59 +00:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if (coalesce->rx_coalesce_usecs || coalesce->tx_coalesce_usecs) {
|
2010-06-23 11:30:07 +00:00
|
|
|
netif_err(efx, drv, efx->net_dev, "invalid coalescing setting. "
|
|
|
|
"Only rx/tx_coalesce_usecs_irq are supported\n");
|
2008-04-27 11:55:59 +00:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
rx_usecs = coalesce->rx_coalesce_usecs_irq;
|
|
|
|
tx_usecs = coalesce->tx_coalesce_usecs_irq;
|
2009-03-20 13:30:37 +00:00
|
|
|
adaptive = coalesce->use_adaptive_rx_coalesce;
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
/* If the channel is shared only allow RX parameters to be set */
|
2010-09-10 06:41:47 +00:00
|
|
|
efx_for_each_channel(channel, efx) {
|
|
|
|
if (efx_channel_get_rx_queue(channel) &&
|
|
|
|
efx_channel_get_tx_queue(channel, 0) &&
|
2008-04-27 11:55:59 +00:00
|
|
|
tx_usecs) {
|
2010-06-23 11:30:07 +00:00
|
|
|
netif_err(efx, drv, efx->net_dev, "Channel is shared. "
|
|
|
|
"Only RX coalescing may be set\n");
|
2008-04-27 11:55:59 +00:00
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-20 13:30:37 +00:00
|
|
|
efx_init_irq_moderation(efx, tx_usecs, rx_usecs, adaptive);
|
2008-04-27 11:55:59 +00:00
|
|
|
efx_for_each_channel(channel, efx)
|
2009-11-29 03:42:31 +00:00
|
|
|
efx->type->push_irq_moderation(channel);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-10 06:42:33 +00:00
|
|
|
static void efx_ethtool_get_ringparam(struct net_device *net_dev,
|
|
|
|
struct ethtool_ringparam *ring)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
|
|
|
|
ring->rx_max_pending = EFX_MAX_DMAQ_SIZE;
|
|
|
|
ring->tx_max_pending = EFX_MAX_DMAQ_SIZE;
|
|
|
|
ring->rx_mini_max_pending = 0;
|
|
|
|
ring->rx_jumbo_max_pending = 0;
|
|
|
|
ring->rx_pending = efx->rxq_entries;
|
|
|
|
ring->tx_pending = efx->txq_entries;
|
|
|
|
ring->rx_mini_pending = 0;
|
|
|
|
ring->rx_jumbo_pending = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int efx_ethtool_set_ringparam(struct net_device *net_dev,
|
|
|
|
struct ethtool_ringparam *ring)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
|
|
|
|
if (ring->rx_mini_pending || ring->rx_jumbo_pending ||
|
|
|
|
ring->rx_pending > EFX_MAX_DMAQ_SIZE ||
|
|
|
|
ring->tx_pending > EFX_MAX_DMAQ_SIZE)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (ring->rx_pending < EFX_MIN_RING_SIZE ||
|
|
|
|
ring->tx_pending < EFX_MIN_RING_SIZE) {
|
|
|
|
netif_err(efx, drv, efx->net_dev,
|
|
|
|
"TX and RX queues cannot be smaller than %ld\n",
|
|
|
|
EFX_MIN_RING_SIZE);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return efx_realloc_channels(efx, ring->rx_pending, ring->tx_pending);
|
|
|
|
}
|
|
|
|
|
2008-04-27 11:55:59 +00:00
|
|
|
static int efx_ethtool_set_pauseparam(struct net_device *net_dev,
|
|
|
|
struct ethtool_pauseparam *pause)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2009-11-29 03:42:41 +00:00
|
|
|
enum efx_fc_type wanted_fc, old_fc;
|
|
|
|
u32 old_adv;
|
2008-12-13 05:50:46 +00:00
|
|
|
bool reset;
|
2009-11-29 03:42:41 +00:00
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
mutex_lock(&efx->mac_lock);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2008-12-13 05:50:46 +00:00
|
|
|
wanted_fc = ((pause->rx_pause ? EFX_FC_RX : 0) |
|
|
|
|
(pause->tx_pause ? EFX_FC_TX : 0) |
|
|
|
|
(pause->autoneg ? EFX_FC_AUTO : 0));
|
|
|
|
|
|
|
|
if ((wanted_fc & EFX_FC_TX) && !(wanted_fc & EFX_FC_RX)) {
|
2010-06-23 11:30:07 +00:00
|
|
|
netif_dbg(efx, drv, efx->net_dev,
|
|
|
|
"Flow control unsupported: tx ON rx OFF\n");
|
2009-11-29 03:42:41 +00:00
|
|
|
rc = -EINVAL;
|
|
|
|
goto out;
|
2008-12-13 05:50:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-29 03:42:41 +00:00
|
|
|
if ((wanted_fc & EFX_FC_AUTO) && !efx->link_advertising) {
|
2010-06-23 11:30:07 +00:00
|
|
|
netif_dbg(efx, drv, efx->net_dev,
|
|
|
|
"Autonegotiation is disabled\n");
|
2009-11-29 03:42:41 +00:00
|
|
|
rc = -EINVAL;
|
|
|
|
goto out;
|
2008-12-13 05:50:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TX flow control may automatically turn itself off if the
|
|
|
|
* link partner (intermittently) stops responding to pause
|
|
|
|
* frames. There isn't any indication that this has happened,
|
|
|
|
* so the best we do is leave it up to the user to spot this
|
|
|
|
* and fix it be cycling transmit flow control on this end. */
|
|
|
|
reset = (wanted_fc & EFX_FC_TX) && !(efx->wanted_fc & EFX_FC_TX);
|
|
|
|
if (EFX_WORKAROUND_11482(efx) && reset) {
|
2009-11-28 05:36:04 +00:00
|
|
|
if (efx_nic_rev(efx) == EFX_REV_FALCON_B0) {
|
2008-12-13 05:50:46 +00:00
|
|
|
/* Recover by resetting the EM block */
|
2009-11-29 03:42:41 +00:00
|
|
|
falcon_stop_nic_stats(efx);
|
|
|
|
falcon_drain_tx_fifo(efx);
|
|
|
|
efx->mac_op->reconfigure(efx);
|
|
|
|
falcon_start_nic_stats(efx);
|
2008-12-13 05:50:46 +00:00
|
|
|
} else {
|
|
|
|
/* Schedule a reset to recover */
|
|
|
|
efx_schedule_reset(efx, RESET_TYPE_INVISIBLE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-29 03:42:41 +00:00
|
|
|
old_adv = efx->link_advertising;
|
|
|
|
old_fc = efx->wanted_fc;
|
|
|
|
efx_link_set_wanted_fc(efx, wanted_fc);
|
|
|
|
if (efx->link_advertising != old_adv ||
|
|
|
|
(efx->wanted_fc ^ old_fc) & EFX_FC_AUTO) {
|
|
|
|
rc = efx->phy_op->reconfigure(efx);
|
|
|
|
if (rc) {
|
2010-06-23 11:30:07 +00:00
|
|
|
netif_err(efx, drv, efx->net_dev,
|
|
|
|
"Unable to advertise requested flow "
|
|
|
|
"control setting\n");
|
2009-11-29 03:42:41 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2008-12-13 05:50:46 +00:00
|
|
|
|
2009-11-29 03:42:41 +00:00
|
|
|
/* Reconfigure the MAC. The PHY *may* generate a link state change event
|
|
|
|
* if the user just changed the advertised capabilities, but there's no
|
|
|
|
* harm doing this twice */
|
|
|
|
efx->mac_op->reconfigure(efx);
|
2008-12-13 05:50:46 +00:00
|
|
|
|
2009-11-29 03:42:41 +00:00
|
|
|
out:
|
2008-12-13 05:50:46 +00:00
|
|
|
mutex_unlock(&efx->mac_lock);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2009-11-29 03:42:41 +00:00
|
|
|
return rc;
|
2008-04-27 11:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void efx_ethtool_get_pauseparam(struct net_device *net_dev,
|
|
|
|
struct ethtool_pauseparam *pause)
|
|
|
|
{
|
2008-09-01 11:43:14 +00:00
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
2008-04-27 11:55:59 +00:00
|
|
|
|
2008-12-13 05:50:46 +00:00
|
|
|
pause->rx_pause = !!(efx->wanted_fc & EFX_FC_RX);
|
|
|
|
pause->tx_pause = !!(efx->wanted_fc & EFX_FC_TX);
|
|
|
|
pause->autoneg = !!(efx->wanted_fc & EFX_FC_AUTO);
|
2008-04-27 11:55:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-29 03:43:07 +00:00
|
|
|
static void efx_ethtool_get_wol(struct net_device *net_dev,
|
|
|
|
struct ethtool_wolinfo *wol)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
return efx->type->get_wol(efx, wol);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int efx_ethtool_set_wol(struct net_device *net_dev,
|
|
|
|
struct ethtool_wolinfo *wol)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
return efx->type->set_wol(efx, wol->wolopts);
|
|
|
|
}
|
|
|
|
|
2010-10-18 05:27:31 +00:00
|
|
|
static int efx_ethtool_reset(struct net_device *net_dev, u32 *flags)
|
2009-11-29 03:43:15 +00:00
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
enum reset_type method;
|
|
|
|
enum {
|
|
|
|
ETH_RESET_EFX_INVISIBLE = (ETH_RESET_DMA | ETH_RESET_FILTER |
|
|
|
|
ETH_RESET_OFFLOAD | ETH_RESET_MAC)
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Check for minimal reset flags */
|
|
|
|
if ((*flags & ETH_RESET_EFX_INVISIBLE) != ETH_RESET_EFX_INVISIBLE)
|
|
|
|
return -EINVAL;
|
|
|
|
*flags ^= ETH_RESET_EFX_INVISIBLE;
|
|
|
|
method = RESET_TYPE_INVISIBLE;
|
|
|
|
|
|
|
|
if (*flags & ETH_RESET_PHY) {
|
|
|
|
*flags ^= ETH_RESET_PHY;
|
|
|
|
method = RESET_TYPE_ALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((*flags & efx->type->reset_world_flags) ==
|
|
|
|
efx->type->reset_world_flags) {
|
|
|
|
*flags ^= efx->type->reset_world_flags;
|
|
|
|
method = RESET_TYPE_WORLD;
|
|
|
|
}
|
|
|
|
|
|
|
|
return efx_reset(efx, method);
|
|
|
|
}
|
|
|
|
|
2010-06-30 05:06:28 +00:00
|
|
|
static int
|
|
|
|
efx_ethtool_get_rxnfc(struct net_device *net_dev,
|
|
|
|
struct ethtool_rxnfc *info, void *rules __always_unused)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
|
|
|
|
switch (info->cmd) {
|
|
|
|
case ETHTOOL_GRXRINGS:
|
|
|
|
info->data = efx->n_rx_channels;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case ETHTOOL_GRXFH: {
|
|
|
|
unsigned min_revision = 0;
|
|
|
|
|
|
|
|
info->data = 0;
|
|
|
|
switch (info->flow_type) {
|
|
|
|
case TCP_V4_FLOW:
|
|
|
|
info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
|
|
|
|
/* fall through */
|
|
|
|
case UDP_V4_FLOW:
|
|
|
|
case SCTP_V4_FLOW:
|
|
|
|
case AH_ESP_V4_FLOW:
|
|
|
|
case IPV4_FLOW:
|
|
|
|
info->data |= RXH_IP_SRC | RXH_IP_DST;
|
|
|
|
min_revision = EFX_REV_FALCON_B0;
|
|
|
|
break;
|
|
|
|
case TCP_V6_FLOW:
|
|
|
|
info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
|
|
|
|
/* fall through */
|
|
|
|
case UDP_V6_FLOW:
|
|
|
|
case SCTP_V6_FLOW:
|
|
|
|
case AH_ESP_V6_FLOW:
|
|
|
|
case IPV6_FLOW:
|
|
|
|
info->data |= RXH_IP_SRC | RXH_IP_DST;
|
|
|
|
min_revision = EFX_REV_SIENA_A0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (efx_nic_rev(efx) < min_revision)
|
|
|
|
info->data = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-20 08:43:42 +00:00
|
|
|
static int efx_ethtool_set_rx_ntuple(struct net_device *net_dev,
|
|
|
|
struct ethtool_rx_ntuple *ntuple)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
struct ethtool_tcpip4_spec *ip_entry = &ntuple->fs.h_u.tcp_ip4_spec;
|
|
|
|
struct ethtool_tcpip4_spec *ip_mask = &ntuple->fs.m_u.tcp_ip4_spec;
|
|
|
|
struct ethhdr *mac_entry = &ntuple->fs.h_u.ether_spec;
|
|
|
|
struct ethhdr *mac_mask = &ntuple->fs.m_u.ether_spec;
|
|
|
|
struct efx_filter_spec filter;
|
2010-12-07 19:11:26 +00:00
|
|
|
int rc;
|
2010-09-20 08:43:42 +00:00
|
|
|
|
|
|
|
/* Range-check action */
|
|
|
|
if (ntuple->fs.action < ETHTOOL_RXNTUPLE_ACTION_CLEAR ||
|
|
|
|
ntuple->fs.action >= (s32)efx->n_rx_channels)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (~ntuple->fs.data_mask)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2010-12-07 19:11:26 +00:00
|
|
|
efx_filter_init_rx(&filter, EFX_FILTER_PRI_MANUAL, 0,
|
|
|
|
(ntuple->fs.action == ETHTOOL_RXNTUPLE_ACTION_DROP) ?
|
|
|
|
0xfff : ntuple->fs.action);
|
|
|
|
|
2010-09-20 08:43:42 +00:00
|
|
|
switch (ntuple->fs.flow_type) {
|
|
|
|
case TCP_V4_FLOW:
|
2010-12-07 19:11:26 +00:00
|
|
|
case UDP_V4_FLOW: {
|
|
|
|
u8 proto = (ntuple->fs.flow_type == TCP_V4_FLOW ?
|
|
|
|
IPPROTO_TCP : IPPROTO_UDP);
|
|
|
|
|
2010-09-20 08:43:42 +00:00
|
|
|
/* Must match all of destination, */
|
|
|
|
if (ip_mask->ip4dst | ip_mask->pdst)
|
|
|
|
return -EINVAL;
|
|
|
|
/* all or none of source, */
|
|
|
|
if ((ip_mask->ip4src | ip_mask->psrc) &&
|
|
|
|
((__force u32)~ip_mask->ip4src |
|
|
|
|
(__force u16)~ip_mask->psrc))
|
|
|
|
return -EINVAL;
|
|
|
|
/* and nothing else */
|
|
|
|
if ((u8)~ip_mask->tos | (u16)~ntuple->fs.vlan_tag_mask)
|
|
|
|
return -EINVAL;
|
2010-12-07 19:11:26 +00:00
|
|
|
|
|
|
|
if (!ip_mask->ip4src)
|
|
|
|
rc = efx_filter_set_ipv4_full(&filter, proto,
|
|
|
|
ip_entry->ip4dst,
|
|
|
|
ip_entry->pdst,
|
|
|
|
ip_entry->ip4src,
|
|
|
|
ip_entry->psrc);
|
|
|
|
else
|
|
|
|
rc = efx_filter_set_ipv4_local(&filter, proto,
|
|
|
|
ip_entry->ip4dst,
|
|
|
|
ip_entry->pdst);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
2010-09-20 08:43:42 +00:00
|
|
|
break;
|
2010-12-07 19:11:26 +00:00
|
|
|
}
|
|
|
|
|
2010-09-20 08:43:42 +00:00
|
|
|
case ETHER_FLOW:
|
|
|
|
/* Must match all of destination, */
|
|
|
|
if (!is_zero_ether_addr(mac_mask->h_dest))
|
|
|
|
return -EINVAL;
|
|
|
|
/* all or none of VID, */
|
|
|
|
if (ntuple->fs.vlan_tag_mask != 0xf000 &&
|
|
|
|
ntuple->fs.vlan_tag_mask != 0xffff)
|
|
|
|
return -EINVAL;
|
|
|
|
/* and nothing else */
|
|
|
|
if (!is_broadcast_ether_addr(mac_mask->h_source) ||
|
|
|
|
mac_mask->h_proto != htons(0xffff))
|
|
|
|
return -EINVAL;
|
2010-12-07 19:11:26 +00:00
|
|
|
|
|
|
|
rc = efx_filter_set_eth_local(
|
|
|
|
&filter,
|
|
|
|
(ntuple->fs.vlan_tag_mask == 0xf000) ?
|
|
|
|
ntuple->fs.vlan_tag : EFX_FILTER_VID_UNSPEC,
|
|
|
|
mac_entry->h_dest);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
2010-09-20 08:43:42 +00:00
|
|
|
break;
|
2010-12-07 19:11:26 +00:00
|
|
|
|
2010-09-20 08:43:42 +00:00
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2010-12-07 19:11:26 +00:00
|
|
|
if (ntuple->fs.action == ETHTOOL_RXNTUPLE_ACTION_CLEAR)
|
2010-09-20 08:43:42 +00:00
|
|
|
return efx_filter_remove_filter(efx, &filter);
|
2010-12-07 19:11:26 +00:00
|
|
|
else
|
2010-09-20 08:43:42 +00:00
|
|
|
return efx_filter_insert_filter(efx, &filter, true);
|
|
|
|
}
|
|
|
|
|
2010-06-30 05:06:28 +00:00
|
|
|
static int efx_ethtool_get_rxfh_indir(struct net_device *net_dev,
|
|
|
|
struct ethtool_rxfh_indir *indir)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
size_t copy_size =
|
|
|
|
min_t(size_t, indir->size, ARRAY_SIZE(efx->rx_indir_table));
|
|
|
|
|
|
|
|
if (efx_nic_rev(efx) < EFX_REV_FALCON_B0)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
indir->size = ARRAY_SIZE(efx->rx_indir_table);
|
|
|
|
memcpy(indir->ring_index, efx->rx_indir_table,
|
|
|
|
copy_size * sizeof(indir->ring_index[0]));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int efx_ethtool_set_rxfh_indir(struct net_device *net_dev,
|
|
|
|
const struct ethtool_rxfh_indir *indir)
|
|
|
|
{
|
|
|
|
struct efx_nic *efx = netdev_priv(net_dev);
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (efx_nic_rev(efx) < EFX_REV_FALCON_B0)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
/* Validate size and indices */
|
|
|
|
if (indir->size != ARRAY_SIZE(efx->rx_indir_table))
|
|
|
|
return -EINVAL;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
|
|
|
|
if (indir->ring_index[i] >= efx->n_rx_channels)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
memcpy(efx->rx_indir_table, indir->ring_index,
|
|
|
|
sizeof(efx->rx_indir_table));
|
|
|
|
efx_nic_push_rx_indir_table(efx);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-02 08:03:33 +00:00
|
|
|
const struct ethtool_ops efx_ethtool_ops = {
|
2008-04-27 11:55:59 +00:00
|
|
|
.get_settings = efx_ethtool_get_settings,
|
|
|
|
.set_settings = efx_ethtool_set_settings,
|
|
|
|
.get_drvinfo = efx_ethtool_get_drvinfo,
|
2010-06-21 03:06:53 +00:00
|
|
|
.get_regs_len = efx_ethtool_get_regs_len,
|
|
|
|
.get_regs = efx_ethtool_get_regs,
|
2010-06-23 11:30:07 +00:00
|
|
|
.get_msglevel = efx_ethtool_get_msglevel,
|
|
|
|
.set_msglevel = efx_ethtool_set_msglevel,
|
2008-04-27 11:55:59 +00:00
|
|
|
.nway_reset = efx_ethtool_nway_reset,
|
2010-12-09 12:10:25 +00:00
|
|
|
.get_link = ethtool_op_get_link,
|
2008-04-27 11:55:59 +00:00
|
|
|
.get_coalesce = efx_ethtool_get_coalesce,
|
|
|
|
.set_coalesce = efx_ethtool_set_coalesce,
|
2010-09-10 06:42:33 +00:00
|
|
|
.get_ringparam = efx_ethtool_get_ringparam,
|
|
|
|
.set_ringparam = efx_ethtool_set_ringparam,
|
2008-04-27 11:55:59 +00:00
|
|
|
.get_pauseparam = efx_ethtool_get_pauseparam,
|
|
|
|
.set_pauseparam = efx_ethtool_set_pauseparam,
|
|
|
|
.get_rx_csum = efx_ethtool_get_rx_csum,
|
|
|
|
.set_rx_csum = efx_ethtool_set_rx_csum,
|
|
|
|
.get_tx_csum = ethtool_op_get_tx_csum,
|
2009-11-29 15:11:02 +00:00
|
|
|
/* Need to enable/disable IPv6 too */
|
|
|
|
.set_tx_csum = efx_ethtool_set_tx_csum,
|
2008-04-27 11:55:59 +00:00
|
|
|
.get_sg = ethtool_op_get_sg,
|
|
|
|
.set_sg = ethtool_op_set_sg,
|
2008-05-07 11:51:12 +00:00
|
|
|
.get_tso = ethtool_op_get_tso,
|
2009-11-29 15:16:05 +00:00
|
|
|
/* Need to enable/disable TSO-IPv6 too */
|
|
|
|
.set_tso = efx_ethtool_set_tso,
|
2008-04-27 11:55:59 +00:00
|
|
|
.get_flags = ethtool_op_get_flags,
|
2010-06-23 11:31:28 +00:00
|
|
|
.set_flags = efx_ethtool_set_flags,
|
2008-09-01 11:48:12 +00:00
|
|
|
.get_sset_count = efx_ethtool_get_sset_count,
|
2008-05-07 12:36:19 +00:00
|
|
|
.self_test = efx_ethtool_self_test,
|
2008-04-27 11:55:59 +00:00
|
|
|
.get_strings = efx_ethtool_get_strings,
|
|
|
|
.phys_id = efx_ethtool_phys_id,
|
|
|
|
.get_ethtool_stats = efx_ethtool_get_stats,
|
2009-11-29 03:43:07 +00:00
|
|
|
.get_wol = efx_ethtool_get_wol,
|
|
|
|
.set_wol = efx_ethtool_set_wol,
|
2009-11-29 03:43:15 +00:00
|
|
|
.reset = efx_ethtool_reset,
|
2010-06-30 05:06:28 +00:00
|
|
|
.get_rxnfc = efx_ethtool_get_rxnfc,
|
2010-09-20 08:43:42 +00:00
|
|
|
.set_rx_ntuple = efx_ethtool_set_rx_ntuple,
|
2010-06-30 05:06:28 +00:00
|
|
|
.get_rxfh_indir = efx_ethtool_get_rxfh_indir,
|
|
|
|
.set_rxfh_indir = efx_ethtool_set_rxfh_indir,
|
2008-04-27 11:55:59 +00:00
|
|
|
};
|