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