| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1 | /**************************************************************************** | 
 | 2 |  * Driver for Solarflare Solarstorm network controllers and boards | 
 | 3 |  * Copyright 2005-2006 Fen Systems Ltd. | 
| Ben Hutchings | 906bb26 | 2009-11-29 15:16:19 +0000 | [diff] [blame] | 4 |  * Copyright 2006-2009 Solarflare Communications Inc. | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5 |  * | 
 | 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. | 
 | 9 |  */ | 
 | 10 |  | 
 | 11 | #include <linux/netdevice.h> | 
 | 12 | #include <linux/ethtool.h> | 
 | 13 | #include <linux/rtnetlink.h> | 
 | 14 | #include "net_driver.h" | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 15 | #include "workarounds.h" | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 16 | #include "selftest.h" | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 17 | #include "efx.h" | 
| Ben Hutchings | 744093c | 2009-11-29 15:12:08 +0000 | [diff] [blame] | 18 | #include "nic.h" | 
| Ben Hutchings | 4a5b504 | 2008-09-01 12:47:16 +0100 | [diff] [blame] | 19 | #include "spi.h" | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 20 | #include "mdio_10g.h" | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 21 |  | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 22 | struct ethtool_string { | 
 | 23 | 	char name[ETH_GSTRING_LEN]; | 
 | 24 | }; | 
 | 25 |  | 
 | 26 | struct efx_ethtool_stat { | 
 | 27 | 	const char *name; | 
 | 28 | 	enum { | 
 | 29 | 		EFX_ETHTOOL_STAT_SOURCE_mac_stats, | 
 | 30 | 		EFX_ETHTOOL_STAT_SOURCE_nic, | 
 | 31 | 		EFX_ETHTOOL_STAT_SOURCE_channel | 
 | 32 | 	} source; | 
 | 33 | 	unsigned offset; | 
 | 34 | 	u64(*get_stat) (void *field); /* Reader function */ | 
 | 35 | }; | 
 | 36 |  | 
 | 37 | /* Initialiser for a struct #efx_ethtool_stat with type-checking */ | 
 | 38 | #define EFX_ETHTOOL_STAT(stat_name, source_name, field, field_type, \ | 
 | 39 | 				get_stat_function) {			\ | 
 | 40 | 	.name = #stat_name,						\ | 
 | 41 | 	.source = EFX_ETHTOOL_STAT_SOURCE_##source_name,		\ | 
 | 42 | 	.offset = ((((field_type *) 0) ==				\ | 
 | 43 | 		      &((struct efx_##source_name *)0)->field) ?	\ | 
 | 44 | 		    offsetof(struct efx_##source_name, field) :		\ | 
 | 45 | 		    offsetof(struct efx_##source_name, field)),		\ | 
 | 46 | 	.get_stat = get_stat_function,					\ | 
 | 47 | } | 
 | 48 |  | 
 | 49 | static u64 efx_get_uint_stat(void *field) | 
 | 50 | { | 
 | 51 | 	return *(unsigned int *)field; | 
 | 52 | } | 
 | 53 |  | 
 | 54 | static u64 efx_get_ulong_stat(void *field) | 
 | 55 | { | 
 | 56 | 	return *(unsigned long *)field; | 
 | 57 | } | 
 | 58 |  | 
 | 59 | static u64 efx_get_u64_stat(void *field) | 
 | 60 | { | 
 | 61 | 	return *(u64 *) field; | 
 | 62 | } | 
 | 63 |  | 
 | 64 | static u64 efx_get_atomic_stat(void *field) | 
 | 65 | { | 
 | 66 | 	return atomic_read((atomic_t *) field); | 
 | 67 | } | 
 | 68 |  | 
 | 69 | #define EFX_ETHTOOL_ULONG_MAC_STAT(field)			\ | 
 | 70 | 	EFX_ETHTOOL_STAT(field, mac_stats, field, 		\ | 
 | 71 | 			  unsigned long, efx_get_ulong_stat) | 
 | 72 |  | 
 | 73 | #define EFX_ETHTOOL_U64_MAC_STAT(field)				\ | 
 | 74 | 	EFX_ETHTOOL_STAT(field, mac_stats, field, 		\ | 
 | 75 | 			  u64, efx_get_u64_stat) | 
 | 76 |  | 
 | 77 | #define EFX_ETHTOOL_UINT_NIC_STAT(name)				\ | 
 | 78 | 	EFX_ETHTOOL_STAT(name, nic, n_##name,			\ | 
 | 79 | 			 unsigned int, efx_get_uint_stat) | 
 | 80 |  | 
 | 81 | #define EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(field)		\ | 
 | 82 | 	EFX_ETHTOOL_STAT(field, nic, field,			\ | 
 | 83 | 			 atomic_t, efx_get_atomic_stat) | 
 | 84 |  | 
 | 85 | #define EFX_ETHTOOL_UINT_CHANNEL_STAT(field)			\ | 
 | 86 | 	EFX_ETHTOOL_STAT(field, channel, n_##field,		\ | 
 | 87 | 			 unsigned int, efx_get_uint_stat) | 
 | 88 |  | 
 | 89 | static struct efx_ethtool_stat efx_ethtool_stats[] = { | 
 | 90 | 	EFX_ETHTOOL_U64_MAC_STAT(tx_bytes), | 
 | 91 | 	EFX_ETHTOOL_U64_MAC_STAT(tx_good_bytes), | 
 | 92 | 	EFX_ETHTOOL_U64_MAC_STAT(tx_bad_bytes), | 
 | 93 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_packets), | 
 | 94 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_bad), | 
 | 95 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_pause), | 
 | 96 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_control), | 
 | 97 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_unicast), | 
 | 98 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_multicast), | 
 | 99 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_broadcast), | 
 | 100 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_lt64), | 
 | 101 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_64), | 
 | 102 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_65_to_127), | 
 | 103 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_128_to_255), | 
 | 104 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_256_to_511), | 
 | 105 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_512_to_1023), | 
 | 106 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_1024_to_15xx), | 
 | 107 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_15xx_to_jumbo), | 
 | 108 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_gtjumbo), | 
 | 109 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_collision), | 
 | 110 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_single_collision), | 
 | 111 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_multiple_collision), | 
 | 112 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_excessive_collision), | 
 | 113 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_deferred), | 
 | 114 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_late_collision), | 
 | 115 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_excessive_deferred), | 
 | 116 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_non_tcpudp), | 
 | 117 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_mac_src_error), | 
 | 118 | 	EFX_ETHTOOL_ULONG_MAC_STAT(tx_ip_src_error), | 
 | 119 | 	EFX_ETHTOOL_U64_MAC_STAT(rx_bytes), | 
 | 120 | 	EFX_ETHTOOL_U64_MAC_STAT(rx_good_bytes), | 
 | 121 | 	EFX_ETHTOOL_U64_MAC_STAT(rx_bad_bytes), | 
 | 122 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_packets), | 
 | 123 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_good), | 
 | 124 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad), | 
 | 125 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_pause), | 
 | 126 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_control), | 
 | 127 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_unicast), | 
 | 128 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_multicast), | 
 | 129 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_broadcast), | 
 | 130 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_lt64), | 
 | 131 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_64), | 
 | 132 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_65_to_127), | 
 | 133 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_128_to_255), | 
 | 134 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_256_to_511), | 
 | 135 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_512_to_1023), | 
 | 136 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_1024_to_15xx), | 
 | 137 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_15xx_to_jumbo), | 
 | 138 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_gtjumbo), | 
 | 139 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_lt64), | 
 | 140 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_64_to_15xx), | 
 | 141 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_15xx_to_jumbo), | 
 | 142 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_bad_gtjumbo), | 
 | 143 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_overflow), | 
 | 144 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_missed), | 
 | 145 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_false_carrier), | 
 | 146 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_symbol_error), | 
 | 147 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_align_error), | 
 | 148 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_length_error), | 
 | 149 | 	EFX_ETHTOOL_ULONG_MAC_STAT(rx_internal_error), | 
 | 150 | 	EFX_ETHTOOL_UINT_NIC_STAT(rx_nodesc_drop_cnt), | 
 | 151 | 	EFX_ETHTOOL_ATOMIC_NIC_ERROR_STAT(rx_reset), | 
 | 152 | 	EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tobe_disc), | 
 | 153 | 	EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_ip_hdr_chksum_err), | 
 | 154 | 	EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_tcp_udp_chksum_err), | 
| Ben Hutchings | c1ac403 | 2009-11-28 05:36:29 +0000 | [diff] [blame] | 155 | 	EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_mcast_mismatch), | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 156 | 	EFX_ETHTOOL_UINT_CHANNEL_STAT(rx_frm_trunc), | 
 | 157 | }; | 
 | 158 |  | 
 | 159 | /* Number of ethtool statistics */ | 
 | 160 | #define EFX_ETHTOOL_NUM_STATS ARRAY_SIZE(efx_ethtool_stats) | 
 | 161 |  | 
| Ben Hutchings | 4a5b504 | 2008-09-01 12:47:16 +0100 | [diff] [blame] | 162 | #define EFX_ETHTOOL_EEPROM_MAGIC 0xEFAB | 
| Ben Hutchings | 4a5b504 | 2008-09-01 12:47:16 +0100 | [diff] [blame] | 163 |  | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 164 | /************************************************************************** | 
 | 165 |  * | 
 | 166 |  * Ethtool operations | 
 | 167 |  * | 
 | 168 |  ************************************************************************** | 
 | 169 |  */ | 
 | 170 |  | 
 | 171 | /* Identify device by flashing LEDs */ | 
| Ben Hutchings | 65f667f | 2008-12-12 21:32:10 -0800 | [diff] [blame] | 172 | static int efx_ethtool_phys_id(struct net_device *net_dev, u32 count) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 173 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 174 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 175 |  | 
| Ben Hutchings | 398468e | 2009-11-23 16:03:45 +0000 | [diff] [blame] | 176 | 	do { | 
| Ben Hutchings | 06629f0 | 2009-11-29 03:43:43 +0000 | [diff] [blame] | 177 | 		efx->type->set_id_led(efx, EFX_LED_ON); | 
| Ben Hutchings | 398468e | 2009-11-23 16:03:45 +0000 | [diff] [blame] | 178 | 		schedule_timeout_interruptible(HZ / 2); | 
 | 179 |  | 
| Ben Hutchings | 06629f0 | 2009-11-29 03:43:43 +0000 | [diff] [blame] | 180 | 		efx->type->set_id_led(efx, EFX_LED_OFF); | 
| Ben Hutchings | 398468e | 2009-11-23 16:03:45 +0000 | [diff] [blame] | 181 | 		schedule_timeout_interruptible(HZ / 2); | 
 | 182 | 	} while (!signal_pending(current) && --count != 0); | 
 | 183 |  | 
| Ben Hutchings | 06629f0 | 2009-11-29 03:43:43 +0000 | [diff] [blame] | 184 | 	efx->type->set_id_led(efx, EFX_LED_DEFAULT); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 185 | 	return 0; | 
 | 186 | } | 
 | 187 |  | 
 | 188 | /* This must be called with rtnl_lock held. */ | 
 | 189 | int efx_ethtool_get_settings(struct net_device *net_dev, | 
 | 190 | 			     struct ethtool_cmd *ecmd) | 
 | 191 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 192 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 193 | 	struct efx_link_state *link_state = &efx->link_state; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 194 |  | 
 | 195 | 	mutex_lock(&efx->mac_lock); | 
| Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 196 | 	efx->phy_op->get_settings(efx, ecmd); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 197 | 	mutex_unlock(&efx->mac_lock); | 
 | 198 |  | 
| Ben Hutchings | 754c653 | 2010-02-03 09:31:57 +0000 | [diff] [blame] | 199 | 	/* GMAC does not support 1000Mbps HD */ | 
| Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 200 | 	ecmd->supported &= ~SUPPORTED_1000baseT_Half; | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 201 | 	/* Both MACs support pause frames (bidirectional and respond-only) */ | 
 | 202 | 	ecmd->supported |= SUPPORTED_Pause | SUPPORTED_Asym_Pause; | 
 | 203 |  | 
 | 204 | 	if (LOOPBACK_INTERNAL(efx)) { | 
 | 205 | 		ecmd->speed = link_state->speed; | 
 | 206 | 		ecmd->duplex = link_state->fd ? DUPLEX_FULL : DUPLEX_HALF; | 
 | 207 | 	} | 
| Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 208 |  | 
 | 209 | 	return 0; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 210 | } | 
 | 211 |  | 
 | 212 | /* This must be called with rtnl_lock held. */ | 
 | 213 | int efx_ethtool_set_settings(struct net_device *net_dev, | 
 | 214 | 			     struct ethtool_cmd *ecmd) | 
 | 215 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 216 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 217 | 	int rc; | 
 | 218 |  | 
| Ben Hutchings | 754c653 | 2010-02-03 09:31:57 +0000 | [diff] [blame] | 219 | 	/* GMAC does not support 1000Mbps HD */ | 
| Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 220 | 	if (ecmd->speed == SPEED_1000 && ecmd->duplex != DUPLEX_FULL) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 221 | 		netif_dbg(efx, drv, efx->net_dev, | 
 | 222 | 			  "rejecting unsupported 1000Mbps HD setting\n"); | 
| Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 223 | 		return -EINVAL; | 
 | 224 | 	} | 
 | 225 |  | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 226 | 	mutex_lock(&efx->mac_lock); | 
| Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 227 | 	rc = efx->phy_op->set_settings(efx, ecmd); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 228 | 	mutex_unlock(&efx->mac_lock); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 229 | 	return rc; | 
 | 230 | } | 
 | 231 |  | 
 | 232 | static void efx_ethtool_get_drvinfo(struct net_device *net_dev, | 
 | 233 | 				    struct ethtool_drvinfo *info) | 
 | 234 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 235 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 236 |  | 
| Ben Hutchings | c5d5f5f | 2010-06-23 11:30:26 +0000 | [diff] [blame] | 237 | 	strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 238 | 	strlcpy(info->version, EFX_DRIVER_VERSION, sizeof(info->version)); | 
| Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 239 | 	if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0) | 
 | 240 | 		siena_print_fwver(efx, info->fw_version, | 
 | 241 | 				  sizeof(info->fw_version)); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 242 | 	strlcpy(info->bus_info, pci_name(efx->pci_dev), sizeof(info->bus_info)); | 
 | 243 | } | 
 | 244 |  | 
| Ben Hutchings | 5b98c1b | 2010-06-21 03:06:53 +0000 | [diff] [blame] | 245 | static int efx_ethtool_get_regs_len(struct net_device *net_dev) | 
 | 246 | { | 
 | 247 | 	return efx_nic_get_regs_len(netdev_priv(net_dev)); | 
 | 248 | } | 
 | 249 |  | 
 | 250 | static void efx_ethtool_get_regs(struct net_device *net_dev, | 
 | 251 | 				 struct ethtool_regs *regs, void *buf) | 
 | 252 | { | 
 | 253 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 254 |  | 
 | 255 | 	regs->version = efx->type->revision; | 
 | 256 | 	efx_nic_get_regs(efx, buf); | 
 | 257 | } | 
 | 258 |  | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 259 | static u32 efx_ethtool_get_msglevel(struct net_device *net_dev) | 
 | 260 | { | 
 | 261 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 262 | 	return efx->msg_enable; | 
 | 263 | } | 
 | 264 |  | 
 | 265 | static void efx_ethtool_set_msglevel(struct net_device *net_dev, u32 msg_enable) | 
 | 266 | { | 
 | 267 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 268 | 	efx->msg_enable = msg_enable; | 
 | 269 | } | 
 | 270 |  | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 271 | /** | 
 | 272 |  * efx_fill_test - fill in an individual self-test entry | 
 | 273 |  * @test_index:		Index of the test | 
 | 274 |  * @strings:		Ethtool strings, or %NULL | 
 | 275 |  * @data:		Ethtool test results, or %NULL | 
 | 276 |  * @test:		Pointer to test result (used only if data != %NULL) | 
| Ben Hutchings | 740ced9 | 2008-12-12 21:41:55 -0800 | [diff] [blame] | 277 |  * @unit_format:	Unit name format (e.g. "chan\%d") | 
 | 278 |  * @unit_id:		Unit id (e.g. 0 for "chan0") | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 279 |  * @test_format:	Test name format (e.g. "loopback.\%s.tx.sent") | 
| Ben Hutchings | 740ced9 | 2008-12-12 21:41:55 -0800 | [diff] [blame] | 280 |  * @test_id:		Test id (e.g. "PHYXS" for "loopback.PHYXS.tx_sent") | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 281 |  * | 
 | 282 |  * Fill in an individual self-test entry. | 
 | 283 |  */ | 
 | 284 | static void efx_fill_test(unsigned int test_index, | 
 | 285 | 			  struct ethtool_string *strings, u64 *data, | 
 | 286 | 			  int *test, const char *unit_format, int unit_id, | 
 | 287 | 			  const char *test_format, const char *test_id) | 
 | 288 | { | 
 | 289 | 	struct ethtool_string unit_str, test_str; | 
 | 290 |  | 
 | 291 | 	/* Fill data value, if applicable */ | 
 | 292 | 	if (data) | 
 | 293 | 		data[test_index] = *test; | 
 | 294 |  | 
 | 295 | 	/* Fill string, if applicable */ | 
 | 296 | 	if (strings) { | 
| Ben Hutchings | 11e6696 | 2008-12-12 22:05:48 -0800 | [diff] [blame] | 297 | 		if (strchr(unit_format, '%')) | 
 | 298 | 			snprintf(unit_str.name, sizeof(unit_str.name), | 
 | 299 | 				 unit_format, unit_id); | 
 | 300 | 		else | 
 | 301 | 			strcpy(unit_str.name, unit_format); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 302 | 		snprintf(test_str.name, sizeof(test_str.name), | 
 | 303 | 			 test_format, test_id); | 
 | 304 | 		snprintf(strings[test_index].name, | 
 | 305 | 			 sizeof(strings[test_index].name), | 
| Ben Hutchings | 740ced9 | 2008-12-12 21:41:55 -0800 | [diff] [blame] | 306 | 			 "%-6s %-24s", unit_str.name, test_str.name); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 307 | 	} | 
 | 308 | } | 
 | 309 |  | 
| Ben Hutchings | 740ced9 | 2008-12-12 21:41:55 -0800 | [diff] [blame] | 310 | #define EFX_CHANNEL_NAME(_channel) "chan%d", _channel->channel | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 311 | #define EFX_TX_QUEUE_NAME(_tx_queue) "txq%d", _tx_queue->queue | 
 | 312 | #define EFX_RX_QUEUE_NAME(_rx_queue) "rxq%d", _rx_queue->queue | 
 | 313 | #define EFX_LOOPBACK_NAME(_mode, _counter)			\ | 
| Ben Hutchings | c459302 | 2009-11-23 16:08:17 +0000 | [diff] [blame] | 314 | 	"loopback.%s." _counter, STRING_TABLE_LOOKUP(_mode, efx_loopback_mode) | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 315 |  | 
 | 316 | /** | 
 | 317 |  * efx_fill_loopback_test - fill in a block of loopback self-test entries | 
 | 318 |  * @efx:		Efx NIC | 
 | 319 |  * @lb_tests:		Efx loopback self-test results structure | 
 | 320 |  * @mode:		Loopback test mode | 
 | 321 |  * @test_index:		Starting index of the test | 
 | 322 |  * @strings:		Ethtool strings, or %NULL | 
 | 323 |  * @data:		Ethtool test results, or %NULL | 
 | 324 |  */ | 
 | 325 | static int efx_fill_loopback_test(struct efx_nic *efx, | 
 | 326 | 				  struct efx_loopback_self_tests *lb_tests, | 
 | 327 | 				  enum efx_loopback_mode mode, | 
 | 328 | 				  unsigned int test_index, | 
 | 329 | 				  struct ethtool_string *strings, u64 *data) | 
 | 330 | { | 
 | 331 | 	struct efx_tx_queue *tx_queue; | 
 | 332 |  | 
| Ben Hutchings | 5298c37 | 2010-04-28 09:30:30 +0000 | [diff] [blame] | 333 | 	efx_for_each_channel_tx_queue(tx_queue, &efx->channel[0]) { | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 334 | 		efx_fill_test(test_index++, strings, data, | 
 | 335 | 			      &lb_tests->tx_sent[tx_queue->queue], | 
 | 336 | 			      EFX_TX_QUEUE_NAME(tx_queue), | 
 | 337 | 			      EFX_LOOPBACK_NAME(mode, "tx_sent")); | 
 | 338 | 		efx_fill_test(test_index++, strings, data, | 
 | 339 | 			      &lb_tests->tx_done[tx_queue->queue], | 
 | 340 | 			      EFX_TX_QUEUE_NAME(tx_queue), | 
 | 341 | 			      EFX_LOOPBACK_NAME(mode, "tx_done")); | 
 | 342 | 	} | 
 | 343 | 	efx_fill_test(test_index++, strings, data, | 
 | 344 | 		      &lb_tests->rx_good, | 
| Ben Hutchings | 11e6696 | 2008-12-12 22:05:48 -0800 | [diff] [blame] | 345 | 		      "rx", 0, | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 346 | 		      EFX_LOOPBACK_NAME(mode, "rx_good")); | 
 | 347 | 	efx_fill_test(test_index++, strings, data, | 
 | 348 | 		      &lb_tests->rx_bad, | 
| Ben Hutchings | 11e6696 | 2008-12-12 22:05:48 -0800 | [diff] [blame] | 349 | 		      "rx", 0, | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 350 | 		      EFX_LOOPBACK_NAME(mode, "rx_bad")); | 
 | 351 |  | 
 | 352 | 	return test_index; | 
 | 353 | } | 
 | 354 |  | 
 | 355 | /** | 
 | 356 |  * efx_ethtool_fill_self_tests - get self-test details | 
 | 357 |  * @efx:		Efx NIC | 
 | 358 |  * @tests:		Efx self-test results structure, or %NULL | 
 | 359 |  * @strings:		Ethtool strings, or %NULL | 
 | 360 |  * @data:		Ethtool test results, or %NULL | 
 | 361 |  */ | 
 | 362 | static int efx_ethtool_fill_self_tests(struct efx_nic *efx, | 
 | 363 | 				       struct efx_self_tests *tests, | 
 | 364 | 				       struct ethtool_string *strings, | 
 | 365 | 				       u64 *data) | 
 | 366 | { | 
 | 367 | 	struct efx_channel *channel; | 
| Ben Hutchings | 1796721 | 2008-12-26 13:47:25 -0800 | [diff] [blame] | 368 | 	unsigned int n = 0, i; | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 369 | 	enum efx_loopback_mode mode; | 
 | 370 |  | 
| Ben Hutchings | 4f16c07 | 2010-02-03 09:30:50 +0000 | [diff] [blame] | 371 | 	efx_fill_test(n++, strings, data, &tests->phy_alive, | 
 | 372 | 		      "phy", 0, "alive", NULL); | 
| Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 373 | 	efx_fill_test(n++, strings, data, &tests->nvram, | 
 | 374 | 		      "core", 0, "nvram", NULL); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 375 | 	efx_fill_test(n++, strings, data, &tests->interrupt, | 
 | 376 | 		      "core", 0, "interrupt", NULL); | 
 | 377 |  | 
 | 378 | 	/* Event queues */ | 
 | 379 | 	efx_for_each_channel(channel, efx) { | 
 | 380 | 		efx_fill_test(n++, strings, data, | 
 | 381 | 			      &tests->eventq_dma[channel->channel], | 
 | 382 | 			      EFX_CHANNEL_NAME(channel), | 
 | 383 | 			      "eventq.dma", NULL); | 
 | 384 | 		efx_fill_test(n++, strings, data, | 
 | 385 | 			      &tests->eventq_int[channel->channel], | 
 | 386 | 			      EFX_CHANNEL_NAME(channel), | 
 | 387 | 			      "eventq.int", NULL); | 
 | 388 | 		efx_fill_test(n++, strings, data, | 
 | 389 | 			      &tests->eventq_poll[channel->channel], | 
 | 390 | 			      EFX_CHANNEL_NAME(channel), | 
 | 391 | 			      "eventq.poll", NULL); | 
 | 392 | 	} | 
 | 393 |  | 
| Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 394 | 	efx_fill_test(n++, strings, data, &tests->registers, | 
 | 395 | 		      "core", 0, "registers", NULL); | 
| Ben Hutchings | 1796721 | 2008-12-26 13:47:25 -0800 | [diff] [blame] | 396 |  | 
| Ben Hutchings | c1c4f45 | 2009-11-29 15:08:55 +0000 | [diff] [blame] | 397 | 	if (efx->phy_op->run_tests != NULL) { | 
 | 398 | 		EFX_BUG_ON_PARANOID(efx->phy_op->test_name == NULL); | 
 | 399 |  | 
 | 400 | 		for (i = 0; true; ++i) { | 
 | 401 | 			const char *name; | 
 | 402 |  | 
 | 403 | 			EFX_BUG_ON_PARANOID(i >= EFX_MAX_PHY_TESTS); | 
 | 404 | 			name = efx->phy_op->test_name(efx, i); | 
 | 405 | 			if (name == NULL) | 
 | 406 | 				break; | 
 | 407 |  | 
| Ben Hutchings | 4f16c07 | 2010-02-03 09:30:50 +0000 | [diff] [blame] | 408 | 			efx_fill_test(n++, strings, data, &tests->phy_ext[i], | 
| Ben Hutchings | c1c4f45 | 2009-11-29 15:08:55 +0000 | [diff] [blame] | 409 | 				      "phy", 0, name, NULL); | 
 | 410 | 		} | 
 | 411 | 	} | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 412 |  | 
 | 413 | 	/* Loopback tests */ | 
| Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 414 | 	for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) { | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 415 | 		if (!(efx->loopback_modes & (1 << mode))) | 
 | 416 | 			continue; | 
 | 417 | 		n = efx_fill_loopback_test(efx, | 
 | 418 | 					   &tests->loopback[mode], mode, n, | 
 | 419 | 					   strings, data); | 
 | 420 | 	} | 
 | 421 |  | 
 | 422 | 	return n; | 
 | 423 | } | 
 | 424 |  | 
| Ben Hutchings | 3594e13 | 2008-09-01 12:48:12 +0100 | [diff] [blame] | 425 | static int efx_ethtool_get_sset_count(struct net_device *net_dev, | 
 | 426 | 				      int string_set) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 427 | { | 
| Ben Hutchings | 3594e13 | 2008-09-01 12:48:12 +0100 | [diff] [blame] | 428 | 	switch (string_set) { | 
 | 429 | 	case ETH_SS_STATS: | 
 | 430 | 		return EFX_ETHTOOL_NUM_STATS; | 
 | 431 | 	case ETH_SS_TEST: | 
 | 432 | 		return efx_ethtool_fill_self_tests(netdev_priv(net_dev), | 
 | 433 | 						   NULL, NULL, NULL); | 
 | 434 | 	default: | 
 | 435 | 		return -EINVAL; | 
 | 436 | 	} | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 437 | } | 
 | 438 |  | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 439 | static void efx_ethtool_get_strings(struct net_device *net_dev, | 
 | 440 | 				    u32 string_set, u8 *strings) | 
 | 441 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 442 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 443 | 	struct ethtool_string *ethtool_strings = | 
 | 444 | 		(struct ethtool_string *)strings; | 
 | 445 | 	int i; | 
 | 446 |  | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 447 | 	switch (string_set) { | 
 | 448 | 	case ETH_SS_STATS: | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 449 | 		for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++) | 
 | 450 | 			strncpy(ethtool_strings[i].name, | 
 | 451 | 				efx_ethtool_stats[i].name, | 
 | 452 | 				sizeof(ethtool_strings[i].name)); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 453 | 		break; | 
 | 454 | 	case ETH_SS_TEST: | 
 | 455 | 		efx_ethtool_fill_self_tests(efx, NULL, | 
 | 456 | 					    ethtool_strings, NULL); | 
 | 457 | 		break; | 
 | 458 | 	default: | 
 | 459 | 		/* No other string sets */ | 
 | 460 | 		break; | 
 | 461 | 	} | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 462 | } | 
 | 463 |  | 
 | 464 | static void efx_ethtool_get_stats(struct net_device *net_dev, | 
 | 465 | 				  struct ethtool_stats *stats, | 
 | 466 | 				  u64 *data) | 
 | 467 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 468 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 469 | 	struct efx_mac_stats *mac_stats = &efx->mac_stats; | 
 | 470 | 	struct efx_ethtool_stat *stat; | 
 | 471 | 	struct efx_channel *channel; | 
| Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 472 | 	struct rtnl_link_stats64 temp; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 473 | 	int i; | 
 | 474 |  | 
 | 475 | 	EFX_BUG_ON_PARANOID(stats->n_stats != EFX_ETHTOOL_NUM_STATS); | 
 | 476 |  | 
 | 477 | 	/* Update MAC and NIC statistics */ | 
| Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 478 | 	dev_get_stats(net_dev, &temp); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 479 |  | 
 | 480 | 	/* Fill detailed statistics buffer */ | 
 | 481 | 	for (i = 0; i < EFX_ETHTOOL_NUM_STATS; i++) { | 
 | 482 | 		stat = &efx_ethtool_stats[i]; | 
 | 483 | 		switch (stat->source) { | 
 | 484 | 		case EFX_ETHTOOL_STAT_SOURCE_mac_stats: | 
 | 485 | 			data[i] = stat->get_stat((void *)mac_stats + | 
 | 486 | 						 stat->offset); | 
 | 487 | 			break; | 
 | 488 | 		case EFX_ETHTOOL_STAT_SOURCE_nic: | 
 | 489 | 			data[i] = stat->get_stat((void *)efx + stat->offset); | 
 | 490 | 			break; | 
 | 491 | 		case EFX_ETHTOOL_STAT_SOURCE_channel: | 
 | 492 | 			data[i] = 0; | 
 | 493 | 			efx_for_each_channel(channel, efx) | 
 | 494 | 				data[i] += stat->get_stat((void *)channel + | 
 | 495 | 							  stat->offset); | 
 | 496 | 			break; | 
 | 497 | 		} | 
 | 498 | 	} | 
 | 499 | } | 
 | 500 |  | 
| Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 501 | static int efx_ethtool_set_tso(struct net_device *net_dev, u32 enable) | 
 | 502 | { | 
 | 503 | 	struct efx_nic *efx __attribute__ ((unused)) = netdev_priv(net_dev); | 
 | 504 | 	unsigned long features; | 
 | 505 |  | 
 | 506 | 	features = NETIF_F_TSO; | 
 | 507 | 	if (efx->type->offload_features & NETIF_F_V6_CSUM) | 
 | 508 | 		features |= NETIF_F_TSO6; | 
 | 509 |  | 
 | 510 | 	if (enable) | 
 | 511 | 		net_dev->features |= features; | 
 | 512 | 	else | 
 | 513 | 		net_dev->features &= ~features; | 
 | 514 |  | 
 | 515 | 	return 0; | 
 | 516 | } | 
 | 517 |  | 
| Ben Hutchings | c383b53 | 2009-11-29 15:11:02 +0000 | [diff] [blame] | 518 | static int efx_ethtool_set_tx_csum(struct net_device *net_dev, u32 enable) | 
 | 519 | { | 
 | 520 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 521 | 	unsigned long features = efx->type->offload_features & NETIF_F_ALL_CSUM; | 
 | 522 |  | 
 | 523 | 	if (enable) | 
 | 524 | 		net_dev->features |= features; | 
 | 525 | 	else | 
 | 526 | 		net_dev->features &= ~features; | 
 | 527 |  | 
 | 528 | 	return 0; | 
 | 529 | } | 
 | 530 |  | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 531 | static int efx_ethtool_set_rx_csum(struct net_device *net_dev, u32 enable) | 
 | 532 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 533 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 534 |  | 
 | 535 | 	/* No way to stop the hardware doing the checks; we just | 
 | 536 | 	 * ignore the result. | 
 | 537 | 	 */ | 
| Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 538 | 	efx->rx_checksum_enabled = !!enable; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 539 |  | 
 | 540 | 	return 0; | 
 | 541 | } | 
 | 542 |  | 
 | 543 | static u32 efx_ethtool_get_rx_csum(struct net_device *net_dev) | 
 | 544 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 545 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 546 |  | 
 | 547 | 	return efx->rx_checksum_enabled; | 
 | 548 | } | 
 | 549 |  | 
| Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 550 | static int efx_ethtool_set_flags(struct net_device *net_dev, u32 data) | 
 | 551 | { | 
 | 552 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 553 | 	u32 supported = efx->type->offload_features & ETH_FLAG_RXHASH; | 
 | 554 |  | 
| Ben Hutchings | 1437ce3 | 2010-06-30 02:44:32 +0000 | [diff] [blame] | 555 | 	return ethtool_op_set_flags(net_dev, data, supported); | 
| Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 556 | } | 
 | 557 |  | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 558 | static void efx_ethtool_self_test(struct net_device *net_dev, | 
 | 559 | 				  struct ethtool_test *test, u64 *data) | 
 | 560 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 561 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 562 | 	struct efx_self_tests efx_tests; | 
| Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 563 | 	int already_up; | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 564 | 	int rc; | 
 | 565 |  | 
 | 566 | 	ASSERT_RTNL(); | 
 | 567 | 	if (efx->state != STATE_RUNNING) { | 
 | 568 | 		rc = -EIO; | 
 | 569 | 		goto fail1; | 
 | 570 | 	} | 
 | 571 |  | 
 | 572 | 	/* We need rx buffers and interrupts. */ | 
 | 573 | 	already_up = (efx->net_dev->flags & IFF_UP); | 
 | 574 | 	if (!already_up) { | 
 | 575 | 		rc = dev_open(efx->net_dev); | 
 | 576 | 		if (rc) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 577 | 			netif_err(efx, drv, efx->net_dev, | 
 | 578 | 				  "failed opening device.\n"); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 579 | 			goto fail2; | 
 | 580 | 		} | 
 | 581 | 	} | 
 | 582 |  | 
 | 583 | 	memset(&efx_tests, 0, sizeof(efx_tests)); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 584 |  | 
| Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 585 | 	rc = efx_selftest(efx, &efx_tests, test->flags); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 586 |  | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 587 | 	if (!already_up) | 
 | 588 | 		dev_close(efx->net_dev); | 
 | 589 |  | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 590 | 	netif_dbg(efx, drv, efx->net_dev, "%s %sline self-tests\n", | 
 | 591 | 		  rc == 0 ? "passed" : "failed", | 
 | 592 | 		  (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on"); | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 593 |  | 
 | 594 |  fail2: | 
 | 595 |  fail1: | 
 | 596 | 	/* Fill ethtool results structures */ | 
 | 597 | 	efx_ethtool_fill_self_tests(efx, &efx_tests, NULL, data); | 
 | 598 | 	if (rc) | 
 | 599 | 		test->flags |= ETH_TEST_FL_FAILED; | 
 | 600 | } | 
 | 601 |  | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 602 | /* Restart autonegotiation */ | 
 | 603 | static int efx_ethtool_nway_reset(struct net_device *net_dev) | 
 | 604 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 605 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 606 |  | 
| Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 607 | 	return mdio45_nway_restart(&efx->mdio); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 608 | } | 
 | 609 |  | 
 | 610 | static u32 efx_ethtool_get_link(struct net_device *net_dev) | 
 | 611 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 612 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 613 |  | 
| Ben Hutchings | eb50c0d | 2009-11-23 16:06:30 +0000 | [diff] [blame] | 614 | 	return efx->link_state.up; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 615 | } | 
 | 616 |  | 
| Ben Hutchings | 4a5b504 | 2008-09-01 12:47:16 +0100 | [diff] [blame] | 617 | static int efx_ethtool_get_eeprom_len(struct net_device *net_dev) | 
 | 618 | { | 
 | 619 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 620 | 	struct efx_spi_device *spi = efx->spi_eeprom; | 
 | 621 |  | 
 | 622 | 	if (!spi) | 
 | 623 | 		return 0; | 
| Ben Hutchings | 0a95f56 | 2008-11-04 20:33:11 +0000 | [diff] [blame] | 624 | 	return min(spi->size, EFX_EEPROM_BOOTCONFIG_END) - | 
 | 625 | 		min(spi->size, EFX_EEPROM_BOOTCONFIG_START); | 
| Ben Hutchings | 4a5b504 | 2008-09-01 12:47:16 +0100 | [diff] [blame] | 626 | } | 
 | 627 |  | 
 | 628 | static int efx_ethtool_get_eeprom(struct net_device *net_dev, | 
 | 629 | 				  struct ethtool_eeprom *eeprom, u8 *buf) | 
 | 630 | { | 
 | 631 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 632 | 	struct efx_spi_device *spi = efx->spi_eeprom; | 
 | 633 | 	size_t len; | 
 | 634 | 	int rc; | 
 | 635 |  | 
| Ben Hutchings | ca54a9f | 2008-12-12 22:06:24 -0800 | [diff] [blame] | 636 | 	rc = mutex_lock_interruptible(&efx->spi_lock); | 
 | 637 | 	if (rc) | 
 | 638 | 		return rc; | 
| Ben Hutchings | 7688483 | 2009-11-29 15:10:44 +0000 | [diff] [blame] | 639 | 	rc = falcon_spi_read(efx, spi, | 
 | 640 | 			     eeprom->offset + EFX_EEPROM_BOOTCONFIG_START, | 
| Ben Hutchings | 4a5b504 | 2008-09-01 12:47:16 +0100 | [diff] [blame] | 641 | 			     eeprom->len, &len, buf); | 
| Ben Hutchings | f415072 | 2008-11-04 20:34:28 +0000 | [diff] [blame] | 642 | 	mutex_unlock(&efx->spi_lock); | 
| Ben Hutchings | ca54a9f | 2008-12-12 22:06:24 -0800 | [diff] [blame] | 643 |  | 
| Ben Hutchings | 4a5b504 | 2008-09-01 12:47:16 +0100 | [diff] [blame] | 644 | 	eeprom->magic = EFX_ETHTOOL_EEPROM_MAGIC; | 
 | 645 | 	eeprom->len = len; | 
 | 646 | 	return rc; | 
 | 647 | } | 
 | 648 |  | 
 | 649 | static int efx_ethtool_set_eeprom(struct net_device *net_dev, | 
 | 650 | 				  struct ethtool_eeprom *eeprom, u8 *buf) | 
 | 651 | { | 
 | 652 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 653 | 	struct efx_spi_device *spi = efx->spi_eeprom; | 
 | 654 | 	size_t len; | 
 | 655 | 	int rc; | 
 | 656 |  | 
 | 657 | 	if (eeprom->magic != EFX_ETHTOOL_EEPROM_MAGIC) | 
 | 658 | 		return -EINVAL; | 
 | 659 |  | 
| Ben Hutchings | ca54a9f | 2008-12-12 22:06:24 -0800 | [diff] [blame] | 660 | 	rc = mutex_lock_interruptible(&efx->spi_lock); | 
 | 661 | 	if (rc) | 
 | 662 | 		return rc; | 
| Ben Hutchings | 7688483 | 2009-11-29 15:10:44 +0000 | [diff] [blame] | 663 | 	rc = falcon_spi_write(efx, spi, | 
 | 664 | 			      eeprom->offset + EFX_EEPROM_BOOTCONFIG_START, | 
| Ben Hutchings | 4a5b504 | 2008-09-01 12:47:16 +0100 | [diff] [blame] | 665 | 			      eeprom->len, &len, buf); | 
| Ben Hutchings | f415072 | 2008-11-04 20:34:28 +0000 | [diff] [blame] | 666 | 	mutex_unlock(&efx->spi_lock); | 
| Ben Hutchings | ca54a9f | 2008-12-12 22:06:24 -0800 | [diff] [blame] | 667 |  | 
| Ben Hutchings | 4a5b504 | 2008-09-01 12:47:16 +0100 | [diff] [blame] | 668 | 	eeprom->len = len; | 
 | 669 | 	return rc; | 
 | 670 | } | 
 | 671 |  | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 672 | static int efx_ethtool_get_coalesce(struct net_device *net_dev, | 
 | 673 | 				    struct ethtool_coalesce *coalesce) | 
 | 674 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 675 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 676 | 	struct efx_tx_queue *tx_queue; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 677 | 	struct efx_channel *channel; | 
 | 678 |  | 
 | 679 | 	memset(coalesce, 0, sizeof(*coalesce)); | 
 | 680 |  | 
 | 681 | 	/* Find lowest IRQ moderation across all used TX queues */ | 
 | 682 | 	coalesce->tx_coalesce_usecs_irq = ~((u32) 0); | 
 | 683 | 	efx_for_each_tx_queue(tx_queue, efx) { | 
 | 684 | 		channel = tx_queue->channel; | 
 | 685 | 		if (channel->irq_moderation < coalesce->tx_coalesce_usecs_irq) { | 
| Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 686 | 			if (channel->channel < efx->n_rx_channels) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 687 | 				coalesce->tx_coalesce_usecs_irq = | 
 | 688 | 					channel->irq_moderation; | 
 | 689 | 			else | 
 | 690 | 				coalesce->tx_coalesce_usecs_irq = 0; | 
 | 691 | 		} | 
 | 692 | 	} | 
 | 693 |  | 
| Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 694 | 	coalesce->use_adaptive_rx_coalesce = efx->irq_rx_adaptive; | 
 | 695 | 	coalesce->rx_coalesce_usecs_irq = efx->irq_rx_moderation; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 696 |  | 
| Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 697 | 	coalesce->tx_coalesce_usecs_irq *= EFX_IRQ_MOD_RESOLUTION; | 
 | 698 | 	coalesce->rx_coalesce_usecs_irq *= EFX_IRQ_MOD_RESOLUTION; | 
| Ben Hutchings | 0d86ebd | 2009-10-23 08:32:13 +0000 | [diff] [blame] | 699 |  | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 700 | 	return 0; | 
 | 701 | } | 
 | 702 |  | 
 | 703 | /* Set coalescing parameters | 
 | 704 |  * The difficulties occur for shared channels | 
 | 705 |  */ | 
 | 706 | static int efx_ethtool_set_coalesce(struct net_device *net_dev, | 
 | 707 | 				    struct ethtool_coalesce *coalesce) | 
 | 708 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 709 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 710 | 	struct efx_channel *channel; | 
 | 711 | 	struct efx_tx_queue *tx_queue; | 
| Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 712 | 	unsigned tx_usecs, rx_usecs, adaptive; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 713 |  | 
| Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 714 | 	if (coalesce->use_adaptive_tx_coalesce) | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 715 | 		return -EOPNOTSUPP; | 
 | 716 |  | 
 | 717 | 	if (coalesce->rx_coalesce_usecs || coalesce->tx_coalesce_usecs) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 718 | 		netif_err(efx, drv, efx->net_dev, "invalid coalescing setting. " | 
 | 719 | 			  "Only rx/tx_coalesce_usecs_irq are supported\n"); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 720 | 		return -EOPNOTSUPP; | 
 | 721 | 	} | 
 | 722 |  | 
 | 723 | 	rx_usecs = coalesce->rx_coalesce_usecs_irq; | 
 | 724 | 	tx_usecs = coalesce->tx_coalesce_usecs_irq; | 
| Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 725 | 	adaptive = coalesce->use_adaptive_rx_coalesce; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 726 |  | 
 | 727 | 	/* If the channel is shared only allow RX parameters to be set */ | 
 | 728 | 	efx_for_each_tx_queue(tx_queue, efx) { | 
| Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 729 | 		if ((tx_queue->channel->channel < efx->n_rx_channels) && | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 730 | 		    tx_usecs) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 731 | 			netif_err(efx, drv, efx->net_dev, "Channel is shared. " | 
 | 732 | 				  "Only RX coalescing may be set\n"); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 733 | 			return -EOPNOTSUPP; | 
 | 734 | 		} | 
 | 735 | 	} | 
 | 736 |  | 
| Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 737 | 	efx_init_irq_moderation(efx, tx_usecs, rx_usecs, adaptive); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 738 | 	efx_for_each_channel(channel, efx) | 
| Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 739 | 		efx->type->push_irq_moderation(channel); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 740 |  | 
 | 741 | 	return 0; | 
 | 742 | } | 
 | 743 |  | 
 | 744 | static int efx_ethtool_set_pauseparam(struct net_device *net_dev, | 
 | 745 | 				      struct ethtool_pauseparam *pause) | 
 | 746 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 747 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 748 | 	enum efx_fc_type wanted_fc, old_fc; | 
 | 749 | 	u32 old_adv; | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 750 | 	bool reset; | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 751 | 	int rc = 0; | 
 | 752 |  | 
 | 753 | 	mutex_lock(&efx->mac_lock); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 754 |  | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 755 | 	wanted_fc = ((pause->rx_pause ? EFX_FC_RX : 0) | | 
 | 756 | 		     (pause->tx_pause ? EFX_FC_TX : 0) | | 
 | 757 | 		     (pause->autoneg ? EFX_FC_AUTO : 0)); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 758 |  | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 759 | 	if ((wanted_fc & EFX_FC_TX) && !(wanted_fc & EFX_FC_RX)) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 760 | 		netif_dbg(efx, drv, efx->net_dev, | 
 | 761 | 			  "Flow control unsupported: tx ON rx OFF\n"); | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 762 | 		rc = -EINVAL; | 
 | 763 | 		goto out; | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 764 | 	} | 
 | 765 |  | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 766 | 	if ((wanted_fc & EFX_FC_AUTO) && !efx->link_advertising) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 767 | 		netif_dbg(efx, drv, efx->net_dev, | 
 | 768 | 			  "Autonegotiation is disabled\n"); | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 769 | 		rc = -EINVAL; | 
 | 770 | 		goto out; | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 771 | 	} | 
 | 772 |  | 
 | 773 | 	/* TX flow control may automatically turn itself off if the | 
 | 774 | 	 * link partner (intermittently) stops responding to pause | 
 | 775 | 	 * frames. There isn't any indication that this has happened, | 
 | 776 | 	 * so the best we do is leave it up to the user to spot this | 
 | 777 | 	 * and fix it be cycling transmit flow control on this end. */ | 
 | 778 | 	reset = (wanted_fc & EFX_FC_TX) && !(efx->wanted_fc & EFX_FC_TX); | 
 | 779 | 	if (EFX_WORKAROUND_11482(efx) && reset) { | 
| Ben Hutchings | daeda63 | 2009-11-28 05:36:04 +0000 | [diff] [blame] | 780 | 		if (efx_nic_rev(efx) == EFX_REV_FALCON_B0) { | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 781 | 			/* Recover by resetting the EM block */ | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 782 | 			falcon_stop_nic_stats(efx); | 
 | 783 | 			falcon_drain_tx_fifo(efx); | 
 | 784 | 			efx->mac_op->reconfigure(efx); | 
 | 785 | 			falcon_start_nic_stats(efx); | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 786 | 		} else { | 
 | 787 | 			/* Schedule a reset to recover */ | 
 | 788 | 			efx_schedule_reset(efx, RESET_TYPE_INVISIBLE); | 
 | 789 | 		} | 
 | 790 | 	} | 
 | 791 |  | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 792 | 	old_adv = efx->link_advertising; | 
 | 793 | 	old_fc = efx->wanted_fc; | 
 | 794 | 	efx_link_set_wanted_fc(efx, wanted_fc); | 
 | 795 | 	if (efx->link_advertising != old_adv || | 
 | 796 | 	    (efx->wanted_fc ^ old_fc) & EFX_FC_AUTO) { | 
 | 797 | 		rc = efx->phy_op->reconfigure(efx); | 
 | 798 | 		if (rc) { | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 799 | 			netif_err(efx, drv, efx->net_dev, | 
 | 800 | 				  "Unable to advertise requested flow " | 
 | 801 | 				  "control setting\n"); | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 802 | 			goto out; | 
 | 803 | 		} | 
 | 804 | 	} | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 805 |  | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 806 | 	/* Reconfigure the MAC. The PHY *may* generate a link state change event | 
 | 807 | 	 * if the user just changed the advertised capabilities, but there's no | 
 | 808 | 	 * harm doing this twice */ | 
 | 809 | 	efx->mac_op->reconfigure(efx); | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 810 |  | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 811 | out: | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 812 | 	mutex_unlock(&efx->mac_lock); | 
 | 813 |  | 
| Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 814 | 	return rc; | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 815 | } | 
 | 816 |  | 
 | 817 | static void efx_ethtool_get_pauseparam(struct net_device *net_dev, | 
 | 818 | 				       struct ethtool_pauseparam *pause) | 
 | 819 | { | 
| Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 820 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 821 |  | 
| Ben Hutchings | 04cc8ca | 2008-12-12 21:50:46 -0800 | [diff] [blame] | 822 | 	pause->rx_pause = !!(efx->wanted_fc & EFX_FC_RX); | 
 | 823 | 	pause->tx_pause = !!(efx->wanted_fc & EFX_FC_TX); | 
 | 824 | 	pause->autoneg = !!(efx->wanted_fc & EFX_FC_AUTO); | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 825 | } | 
 | 826 |  | 
 | 827 |  | 
| Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 828 | static void efx_ethtool_get_wol(struct net_device *net_dev, | 
 | 829 | 				struct ethtool_wolinfo *wol) | 
 | 830 | { | 
 | 831 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 832 | 	return efx->type->get_wol(efx, wol); | 
 | 833 | } | 
 | 834 |  | 
 | 835 |  | 
 | 836 | static int efx_ethtool_set_wol(struct net_device *net_dev, | 
 | 837 | 			       struct ethtool_wolinfo *wol) | 
 | 838 | { | 
 | 839 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 840 | 	return efx->type->set_wol(efx, wol->wolopts); | 
 | 841 | } | 
 | 842 |  | 
| Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 843 | extern int efx_ethtool_reset(struct net_device *net_dev, u32 *flags) | 
 | 844 | { | 
 | 845 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 846 | 	enum reset_type method; | 
 | 847 | 	enum { | 
 | 848 | 		ETH_RESET_EFX_INVISIBLE = (ETH_RESET_DMA | ETH_RESET_FILTER | | 
 | 849 | 					   ETH_RESET_OFFLOAD | ETH_RESET_MAC) | 
 | 850 | 	}; | 
 | 851 |  | 
 | 852 | 	/* Check for minimal reset flags */ | 
 | 853 | 	if ((*flags & ETH_RESET_EFX_INVISIBLE) != ETH_RESET_EFX_INVISIBLE) | 
 | 854 | 		return -EINVAL; | 
 | 855 | 	*flags ^= ETH_RESET_EFX_INVISIBLE; | 
 | 856 | 	method = RESET_TYPE_INVISIBLE; | 
 | 857 |  | 
 | 858 | 	if (*flags & ETH_RESET_PHY) { | 
 | 859 | 		*flags ^= ETH_RESET_PHY; | 
 | 860 | 		method = RESET_TYPE_ALL; | 
 | 861 | 	} | 
 | 862 |  | 
 | 863 | 	if ((*flags & efx->type->reset_world_flags) == | 
 | 864 | 	    efx->type->reset_world_flags) { | 
 | 865 | 		*flags ^= efx->type->reset_world_flags; | 
 | 866 | 		method = RESET_TYPE_WORLD; | 
 | 867 | 	} | 
 | 868 |  | 
 | 869 | 	return efx_reset(efx, method); | 
 | 870 | } | 
 | 871 |  | 
| Ben Hutchings | 765c9f4 | 2010-06-30 05:06:28 +0000 | [diff] [blame] | 872 | static int | 
 | 873 | efx_ethtool_get_rxnfc(struct net_device *net_dev, | 
 | 874 | 		      struct ethtool_rxnfc *info, void *rules __always_unused) | 
 | 875 | { | 
 | 876 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 877 |  | 
 | 878 | 	switch (info->cmd) { | 
 | 879 | 	case ETHTOOL_GRXRINGS: | 
 | 880 | 		info->data = efx->n_rx_channels; | 
 | 881 | 		return 0; | 
 | 882 |  | 
 | 883 | 	case ETHTOOL_GRXFH: { | 
 | 884 | 		unsigned min_revision = 0; | 
 | 885 |  | 
 | 886 | 		info->data = 0; | 
 | 887 | 		switch (info->flow_type) { | 
 | 888 | 		case TCP_V4_FLOW: | 
 | 889 | 			info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3; | 
 | 890 | 			/* fall through */ | 
 | 891 | 		case UDP_V4_FLOW: | 
 | 892 | 		case SCTP_V4_FLOW: | 
 | 893 | 		case AH_ESP_V4_FLOW: | 
 | 894 | 		case IPV4_FLOW: | 
 | 895 | 			info->data |= RXH_IP_SRC | RXH_IP_DST; | 
 | 896 | 			min_revision = EFX_REV_FALCON_B0; | 
 | 897 | 			break; | 
 | 898 | 		case TCP_V6_FLOW: | 
 | 899 | 			info->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3; | 
 | 900 | 			/* fall through */ | 
 | 901 | 		case UDP_V6_FLOW: | 
 | 902 | 		case SCTP_V6_FLOW: | 
 | 903 | 		case AH_ESP_V6_FLOW: | 
 | 904 | 		case IPV6_FLOW: | 
 | 905 | 			info->data |= RXH_IP_SRC | RXH_IP_DST; | 
 | 906 | 			min_revision = EFX_REV_SIENA_A0; | 
 | 907 | 			break; | 
 | 908 | 		default: | 
 | 909 | 			break; | 
 | 910 | 		} | 
 | 911 | 		if (efx_nic_rev(efx) < min_revision) | 
 | 912 | 			info->data = 0; | 
 | 913 | 		return 0; | 
 | 914 | 	} | 
 | 915 |  | 
 | 916 | 	default: | 
 | 917 | 		return -EOPNOTSUPP; | 
 | 918 | 	} | 
 | 919 | } | 
 | 920 |  | 
 | 921 | static int efx_ethtool_get_rxfh_indir(struct net_device *net_dev, | 
 | 922 | 				      struct ethtool_rxfh_indir *indir) | 
 | 923 | { | 
 | 924 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 925 | 	size_t copy_size = | 
 | 926 | 		min_t(size_t, indir->size, ARRAY_SIZE(efx->rx_indir_table)); | 
 | 927 |  | 
 | 928 | 	if (efx_nic_rev(efx) < EFX_REV_FALCON_B0) | 
 | 929 | 		return -EOPNOTSUPP; | 
 | 930 |  | 
 | 931 | 	indir->size = ARRAY_SIZE(efx->rx_indir_table); | 
 | 932 | 	memcpy(indir->ring_index, efx->rx_indir_table, | 
 | 933 | 	       copy_size * sizeof(indir->ring_index[0])); | 
 | 934 | 	return 0; | 
 | 935 | } | 
 | 936 |  | 
 | 937 | static int efx_ethtool_set_rxfh_indir(struct net_device *net_dev, | 
 | 938 | 				      const struct ethtool_rxfh_indir *indir) | 
 | 939 | { | 
 | 940 | 	struct efx_nic *efx = netdev_priv(net_dev); | 
 | 941 | 	size_t i; | 
 | 942 |  | 
 | 943 | 	if (efx_nic_rev(efx) < EFX_REV_FALCON_B0) | 
 | 944 | 		return -EOPNOTSUPP; | 
 | 945 |  | 
 | 946 | 	/* Validate size and indices */ | 
 | 947 | 	if (indir->size != ARRAY_SIZE(efx->rx_indir_table)) | 
 | 948 | 		return -EINVAL; | 
 | 949 | 	for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++) | 
 | 950 | 		if (indir->ring_index[i] >= efx->n_rx_channels) | 
 | 951 | 			return -EINVAL; | 
 | 952 |  | 
 | 953 | 	memcpy(efx->rx_indir_table, indir->ring_index, | 
 | 954 | 	       sizeof(efx->rx_indir_table)); | 
 | 955 | 	efx_nic_push_rx_indir_table(efx); | 
 | 956 | 	return 0; | 
 | 957 | } | 
 | 958 |  | 
| Stephen Hemminger | 0fc0b73 | 2009-09-02 01:03:33 -0700 | [diff] [blame] | 959 | const struct ethtool_ops efx_ethtool_ops = { | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 960 | 	.get_settings		= efx_ethtool_get_settings, | 
 | 961 | 	.set_settings		= efx_ethtool_set_settings, | 
 | 962 | 	.get_drvinfo		= efx_ethtool_get_drvinfo, | 
| Ben Hutchings | 5b98c1b | 2010-06-21 03:06:53 +0000 | [diff] [blame] | 963 | 	.get_regs_len		= efx_ethtool_get_regs_len, | 
 | 964 | 	.get_regs		= efx_ethtool_get_regs, | 
| Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 965 | 	.get_msglevel		= efx_ethtool_get_msglevel, | 
 | 966 | 	.set_msglevel		= efx_ethtool_set_msglevel, | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 967 | 	.nway_reset		= efx_ethtool_nway_reset, | 
 | 968 | 	.get_link		= efx_ethtool_get_link, | 
| Ben Hutchings | 4a5b504 | 2008-09-01 12:47:16 +0100 | [diff] [blame] | 969 | 	.get_eeprom_len		= efx_ethtool_get_eeprom_len, | 
 | 970 | 	.get_eeprom		= efx_ethtool_get_eeprom, | 
 | 971 | 	.set_eeprom		= efx_ethtool_set_eeprom, | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 972 | 	.get_coalesce		= efx_ethtool_get_coalesce, | 
 | 973 | 	.set_coalesce		= efx_ethtool_set_coalesce, | 
 | 974 | 	.get_pauseparam         = efx_ethtool_get_pauseparam, | 
 | 975 | 	.set_pauseparam         = efx_ethtool_set_pauseparam, | 
 | 976 | 	.get_rx_csum		= efx_ethtool_get_rx_csum, | 
 | 977 | 	.set_rx_csum		= efx_ethtool_set_rx_csum, | 
 | 978 | 	.get_tx_csum		= ethtool_op_get_tx_csum, | 
| Ben Hutchings | c383b53 | 2009-11-29 15:11:02 +0000 | [diff] [blame] | 979 | 	/* Need to enable/disable IPv6 too */ | 
 | 980 | 	.set_tx_csum		= efx_ethtool_set_tx_csum, | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 981 | 	.get_sg			= ethtool_op_get_sg, | 
 | 982 | 	.set_sg			= ethtool_op_set_sg, | 
| Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 983 | 	.get_tso		= ethtool_op_get_tso, | 
| Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 984 | 	/* Need to enable/disable TSO-IPv6 too */ | 
 | 985 | 	.set_tso		= efx_ethtool_set_tso, | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 986 | 	.get_flags		= ethtool_op_get_flags, | 
| Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 987 | 	.set_flags		= efx_ethtool_set_flags, | 
| Ben Hutchings | 3594e13 | 2008-09-01 12:48:12 +0100 | [diff] [blame] | 988 | 	.get_sset_count		= efx_ethtool_get_sset_count, | 
| Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 989 | 	.self_test		= efx_ethtool_self_test, | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 990 | 	.get_strings		= efx_ethtool_get_strings, | 
 | 991 | 	.phys_id		= efx_ethtool_phys_id, | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 992 | 	.get_ethtool_stats	= efx_ethtool_get_stats, | 
| Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 993 | 	.get_wol                = efx_ethtool_get_wol, | 
 | 994 | 	.set_wol                = efx_ethtool_set_wol, | 
| Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 995 | 	.reset			= efx_ethtool_reset, | 
| Ben Hutchings | 765c9f4 | 2010-06-30 05:06:28 +0000 | [diff] [blame] | 996 | 	.get_rxnfc		= efx_ethtool_get_rxnfc, | 
 | 997 | 	.get_rxfh_indir		= efx_ethtool_get_rxfh_indir, | 
 | 998 | 	.set_rxfh_indir		= efx_ethtool_set_rxfh_indir, | 
| Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 999 | }; |