blob: 9f76be1431b1ebf9840a6b7d075e1f218d617c76 [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustad49425df2016-04-01 12:18:09 -07004 Copyright(c) 1999 - 2016 Intel Corporation.
Auke Kok9a799d72007-09-15 14:07:45 -07005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Jacob Kellerb89aae72014-02-22 01:23:50 +000023 Linux NICS <linux.nics@intel.com>
Auke Kok9a799d72007-09-15 14:07:45 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29/* ethtool support for ixgbe */
30
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000031#include <linux/interrupt.h>
Auke Kok9a799d72007-09-15 14:07:45 -070032#include <linux/types.h>
33#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Auke Kok9a799d72007-09-15 14:07:45 -070035#include <linux/pci.h>
36#include <linux/netdevice.h>
37#include <linux/ethtool.h>
38#include <linux/vmalloc.h>
Alexander Duyckf8003262012-03-03 02:35:52 +000039#include <linux/highmem.h>
Auke Kok9a799d72007-09-15 14:07:45 -070040#include <linux/uaccess.h>
41
42#include "ixgbe.h"
Aurélien Guillaume71858ac2013-01-17 06:55:24 +000043#include "ixgbe_phy.h"
Auke Kok9a799d72007-09-15 14:07:45 -070044
45
46#define IXGBE_ALL_RAR_ENTRIES 16
47
Ajit Khaparde29c3a052009-10-13 01:47:33 +000048enum {NETDEV_STATS, IXGBE_STATS};
49
Auke Kok9a799d72007-09-15 14:07:45 -070050struct ixgbe_stats {
51 char stat_string[ETH_GSTRING_LEN];
Ajit Khaparde29c3a052009-10-13 01:47:33 +000052 int type;
Auke Kok9a799d72007-09-15 14:07:45 -070053 int sizeof_stat;
54 int stat_offset;
55};
56
Ajit Khaparde29c3a052009-10-13 01:47:33 +000057#define IXGBE_STAT(m) IXGBE_STATS, \
58 sizeof(((struct ixgbe_adapter *)0)->m), \
59 offsetof(struct ixgbe_adapter, m)
60#define IXGBE_NETDEV_STAT(m) NETDEV_STATS, \
Eric Dumazet55bad822010-07-23 13:44:21 +000061 sizeof(((struct rtnl_link_stats64 *)0)->m), \
62 offsetof(struct rtnl_link_stats64, m)
Ajit Khaparde29c3a052009-10-13 01:47:33 +000063
Stephen Hemminger1bba2e82012-01-05 06:29:54 +000064static const struct ixgbe_stats ixgbe_gstrings_stats[] = {
Eric Dumazet55bad822010-07-23 13:44:21 +000065 {"rx_packets", IXGBE_NETDEV_STAT(rx_packets)},
66 {"tx_packets", IXGBE_NETDEV_STAT(tx_packets)},
67 {"rx_bytes", IXGBE_NETDEV_STAT(rx_bytes)},
68 {"tx_bytes", IXGBE_NETDEV_STAT(tx_bytes)},
Ben Greearaad71912009-09-30 12:08:16 +000069 {"rx_pkts_nic", IXGBE_STAT(stats.gprc)},
70 {"tx_pkts_nic", IXGBE_STAT(stats.gptc)},
71 {"rx_bytes_nic", IXGBE_STAT(stats.gorc)},
72 {"tx_bytes_nic", IXGBE_STAT(stats.gotc)},
Auke Kok9a799d72007-09-15 14:07:45 -070073 {"lsc_int", IXGBE_STAT(lsc_int)},
74 {"tx_busy", IXGBE_STAT(tx_busy)},
75 {"non_eop_descs", IXGBE_STAT(non_eop_descs)},
Eric Dumazet55bad822010-07-23 13:44:21 +000076 {"rx_errors", IXGBE_NETDEV_STAT(rx_errors)},
77 {"tx_errors", IXGBE_NETDEV_STAT(tx_errors)},
78 {"rx_dropped", IXGBE_NETDEV_STAT(rx_dropped)},
79 {"tx_dropped", IXGBE_NETDEV_STAT(tx_dropped)},
80 {"multicast", IXGBE_NETDEV_STAT(multicast)},
Auke Kok9a799d72007-09-15 14:07:45 -070081 {"broadcast", IXGBE_STAT(stats.bprc)},
82 {"rx_no_buffer_count", IXGBE_STAT(stats.rnbc[0]) },
Eric Dumazet55bad822010-07-23 13:44:21 +000083 {"collisions", IXGBE_NETDEV_STAT(collisions)},
84 {"rx_over_errors", IXGBE_NETDEV_STAT(rx_over_errors)},
85 {"rx_crc_errors", IXGBE_NETDEV_STAT(rx_crc_errors)},
86 {"rx_frame_errors", IXGBE_NETDEV_STAT(rx_frame_errors)},
Mallikarjuna R Chilakala94b982b2009-11-23 06:32:06 +000087 {"hw_rsc_aggregated", IXGBE_STAT(rsc_total_count)},
88 {"hw_rsc_flushed", IXGBE_STAT(rsc_total_flush)},
Peter P Waskiewicz Jrc4cf55e2009-06-04 16:01:43 +000089 {"fdir_match", IXGBE_STAT(stats.fdirmatch)},
90 {"fdir_miss", IXGBE_STAT(stats.fdirmiss)},
Alexander Duyckd034acf2011-04-27 09:25:34 +000091 {"fdir_overflow", IXGBE_STAT(fdir_overflow)},
Eric Dumazet55bad822010-07-23 13:44:21 +000092 {"rx_fifo_errors", IXGBE_NETDEV_STAT(rx_fifo_errors)},
93 {"rx_missed_errors", IXGBE_NETDEV_STAT(rx_missed_errors)},
94 {"tx_aborted_errors", IXGBE_NETDEV_STAT(tx_aborted_errors)},
95 {"tx_carrier_errors", IXGBE_NETDEV_STAT(tx_carrier_errors)},
96 {"tx_fifo_errors", IXGBE_NETDEV_STAT(tx_fifo_errors)},
97 {"tx_heartbeat_errors", IXGBE_NETDEV_STAT(tx_heartbeat_errors)},
Auke Kok9a799d72007-09-15 14:07:45 -070098 {"tx_timeout_count", IXGBE_STAT(tx_timeout_count)},
99 {"tx_restart_queue", IXGBE_STAT(restart_queue)},
100 {"rx_long_length_errors", IXGBE_STAT(stats.roc)},
101 {"rx_short_length_errors", IXGBE_STAT(stats.ruc)},
Auke Kok9a799d72007-09-15 14:07:45 -0700102 {"tx_flow_control_xon", IXGBE_STAT(stats.lxontxc)},
103 {"rx_flow_control_xon", IXGBE_STAT(stats.lxonrxc)},
104 {"tx_flow_control_xoff", IXGBE_STAT(stats.lxofftxc)},
105 {"rx_flow_control_xoff", IXGBE_STAT(stats.lxoffrxc)},
Auke Kok9a799d72007-09-15 14:07:45 -0700106 {"rx_csum_offload_errors", IXGBE_STAT(hw_csum_rx_error)},
Auke Kok9a799d72007-09-15 14:07:45 -0700107 {"alloc_rx_page_failed", IXGBE_STAT(alloc_rx_page_failed)},
108 {"alloc_rx_buff_failed", IXGBE_STAT(alloc_rx_buff_failed)},
PJ Waskiewicze8e26352009-02-27 15:45:05 +0000109 {"rx_no_dma_resources", IXGBE_STAT(hw_rx_no_dma_resources)},
Emil Tantilov58f6bcf2011-04-21 08:43:43 +0000110 {"os2bmc_rx_by_bmc", IXGBE_STAT(stats.o2bgptc)},
111 {"os2bmc_tx_by_bmc", IXGBE_STAT(stats.b2ospc)},
112 {"os2bmc_tx_by_host", IXGBE_STAT(stats.o2bspc)},
113 {"os2bmc_rx_by_host", IXGBE_STAT(stats.b2ogprc)},
Yi Zou6d455222009-05-13 13:12:16 +0000114#ifdef IXGBE_FCOE
115 {"fcoe_bad_fccrc", IXGBE_STAT(stats.fccrc)},
116 {"rx_fcoe_dropped", IXGBE_STAT(stats.fcoerpdc)},
117 {"rx_fcoe_packets", IXGBE_STAT(stats.fcoeprc)},
118 {"rx_fcoe_dwords", IXGBE_STAT(stats.fcoedwrc)},
Amir Hanania7b859eb2011-08-31 02:07:55 +0000119 {"fcoe_noddp", IXGBE_STAT(stats.fcoe_noddp)},
120 {"fcoe_noddp_ext_buff", IXGBE_STAT(stats.fcoe_noddp_ext_buff)},
Yi Zou6d455222009-05-13 13:12:16 +0000121 {"tx_fcoe_packets", IXGBE_STAT(stats.fcoeptc)},
122 {"tx_fcoe_dwords", IXGBE_STAT(stats.fcoedwtc)},
123#endif /* IXGBE_FCOE */
Auke Kok9a799d72007-09-15 14:07:45 -0700124};
125
John Fastabend9cc00b52012-01-28 03:32:17 +0000126/* ixgbe allocates num_tx_queues and num_rx_queues symmetrically so
127 * we set the num_rx_queues to evaluate to num_tx_queues. This is
128 * used because we do not have a good way to get the max number of
129 * rx queues with CONFIG_RPS disabled.
130 */
131#define IXGBE_NUM_RX_QUEUES netdev->num_tx_queues
132
133#define IXGBE_QUEUE_STATS_LEN ( \
134 (netdev->num_tx_queues + IXGBE_NUM_RX_QUEUES) * \
Wang Chen454d7c92008-11-12 23:37:49 -0800135 (sizeof(struct ixgbe_queue_stats) / sizeof(u64)))
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700136#define IXGBE_GLOBAL_STATS_LEN ARRAY_SIZE(ixgbe_gstrings_stats)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800137#define IXGBE_PB_STATS_LEN ( \
John Fastabend9cc00b52012-01-28 03:32:17 +0000138 (sizeof(((struct ixgbe_adapter *)0)->stats.pxonrxc) + \
139 sizeof(((struct ixgbe_adapter *)0)->stats.pxontxc) + \
140 sizeof(((struct ixgbe_adapter *)0)->stats.pxoffrxc) + \
141 sizeof(((struct ixgbe_adapter *)0)->stats.pxofftxc)) \
142 / sizeof(u64))
Alexander Duyck2f90b862008-11-20 20:52:10 -0800143#define IXGBE_STATS_LEN (IXGBE_GLOBAL_STATS_LEN + \
Jacob Kellere7cf7452014-04-09 06:03:10 +0000144 IXGBE_PB_STATS_LEN + \
145 IXGBE_QUEUE_STATS_LEN)
Auke Kok9a799d72007-09-15 14:07:45 -0700146
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +0000147static const char ixgbe_gstrings_test[][ETH_GSTRING_LEN] = {
148 "Register test (offline)", "Eeprom test (offline)",
149 "Interrupt test (offline)", "Loopback test (offline)",
150 "Link test (on/offline)"
151};
152#define IXGBE_TEST_LEN sizeof(ixgbe_gstrings_test) / ETH_GSTRING_LEN
153
Veola Nazareth695b8162015-11-11 16:22:59 -0700154/* currently supported speeds for 10G */
155#define ADVRTSD_MSK_10G (SUPPORTED_10000baseT_Full | \
156 SUPPORTED_10000baseKX4_Full | \
157 SUPPORTED_10000baseKR_Full)
158
159#define ixgbe_isbackplane(type) ((type) == ixgbe_media_type_backplane)
160
161static u32 ixgbe_get_supported_10gtypes(struct ixgbe_hw *hw)
162{
163 if (!ixgbe_isbackplane(hw->phy.media_type))
164 return SUPPORTED_10000baseT_Full;
165
166 switch (hw->device_id) {
167 case IXGBE_DEV_ID_82598:
168 case IXGBE_DEV_ID_82599_KX4:
169 case IXGBE_DEV_ID_82599_KX4_MEZZ:
170 case IXGBE_DEV_ID_X550EM_X_KX4:
171 return SUPPORTED_10000baseKX4_Full;
172 case IXGBE_DEV_ID_82598_BX:
173 case IXGBE_DEV_ID_82599_KR:
174 case IXGBE_DEV_ID_X550EM_X_KR:
175 return SUPPORTED_10000baseKR_Full;
176 default:
177 return SUPPORTED_10000baseKX4_Full |
178 SUPPORTED_10000baseKR_Full;
179 }
180}
181
Auke Kok9a799d72007-09-15 14:07:45 -0700182static int ixgbe_get_settings(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000183 struct ethtool_cmd *ecmd)
Auke Kok9a799d72007-09-15 14:07:45 -0700184{
185 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800186 struct ixgbe_hw *hw = &adapter->hw;
Jacob Kellerdb018962012-06-08 06:59:17 +0000187 ixgbe_link_speed supported_link;
Josh Hayfd0326f2012-12-15 03:28:30 +0000188 bool autoneg = false;
Auke Kok9a799d72007-09-15 14:07:45 -0700189
Jacob Kellerdb018962012-06-08 06:59:17 +0000190 hw->mac.ops.get_link_capabilities(hw, &supported_link, &autoneg);
Auke Kok9a799d72007-09-15 14:07:45 -0700191
Jacob Kellerdb018962012-06-08 06:59:17 +0000192 /* set the supported link speeds */
193 if (supported_link & IXGBE_LINK_SPEED_10GB_FULL)
Veola Nazareth695b8162015-11-11 16:22:59 -0700194 ecmd->supported |= ixgbe_get_supported_10gtypes(hw);
Jacob Kellerdb018962012-06-08 06:59:17 +0000195 if (supported_link & IXGBE_LINK_SPEED_1GB_FULL)
196 ecmd->supported |= SUPPORTED_1000baseT_Full;
197 if (supported_link & IXGBE_LINK_SPEED_100_FULL)
Veola Nazareth695b8162015-11-11 16:22:59 -0700198 ecmd->supported |= ixgbe_isbackplane(hw->phy.media_type) ?
199 SUPPORTED_1000baseKX_Full :
200 SUPPORTED_1000baseT_Full;
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000201
Veola Nazareth695b8162015-11-11 16:22:59 -0700202 /* default advertised speed if phy.autoneg_advertised isn't set */
203 ecmd->advertising = ecmd->supported;
Jacob Kellerdb018962012-06-08 06:59:17 +0000204 /* set the advertised speeds */
205 if (hw->phy.autoneg_advertised) {
Veola Nazareth695b8162015-11-11 16:22:59 -0700206 ecmd->advertising = 0;
Jacob Kellerdb018962012-06-08 06:59:17 +0000207 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_100_FULL)
208 ecmd->advertising |= ADVERTISED_100baseT_Full;
209 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_10GB_FULL)
Veola Nazareth695b8162015-11-11 16:22:59 -0700210 ecmd->advertising |= ecmd->supported & ADVRTSD_MSK_10G;
211 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_1GB_FULL) {
212 if (ecmd->supported & SUPPORTED_1000baseKX_Full)
213 ecmd->advertising |= ADVERTISED_1000baseKX_Full;
214 else
215 ecmd->advertising |= ADVERTISED_1000baseT_Full;
216 }
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800217 } else {
Emil Tantiloved33ff62013-08-30 07:55:24 +0000218 if (hw->phy.multispeed_fiber && !autoneg) {
219 if (supported_link & IXGBE_LINK_SPEED_10GB_FULL)
220 ecmd->advertising = ADVERTISED_10000baseT_Full;
221 }
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800222 }
223
Jacob Kellerdb018962012-06-08 06:59:17 +0000224 if (autoneg) {
225 ecmd->supported |= SUPPORTED_Autoneg;
226 ecmd->advertising |= ADVERTISED_Autoneg;
227 ecmd->autoneg = AUTONEG_ENABLE;
228 } else
229 ecmd->autoneg = AUTONEG_DISABLE;
230
231 ecmd->transceiver = XCVR_EXTERNAL;
232
233 /* Determine the remaining settings based on the PHY type. */
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000234 switch (adapter->hw.phy.type) {
235 case ixgbe_phy_tn:
Don Skidmorefe15e8e12010-11-16 19:27:16 -0800236 case ixgbe_phy_aq:
Don Skidmorec2c78d52015-06-09 16:04:59 -0700237 case ixgbe_phy_x550em_ext_t:
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000238 case ixgbe_phy_cu_unknown:
Jacob Kellerdb018962012-06-08 06:59:17 +0000239 ecmd->supported |= SUPPORTED_TP;
240 ecmd->advertising |= ADVERTISED_TP;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000241 ecmd->port = PORT_TP;
242 break;
243 case ixgbe_phy_qt:
Jacob Kellerdb018962012-06-08 06:59:17 +0000244 ecmd->supported |= SUPPORTED_FIBRE;
245 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000246 ecmd->port = PORT_FIBRE;
247 break;
248 case ixgbe_phy_nl:
Don Skidmoreea0a04d2010-05-18 16:00:13 +0000249 case ixgbe_phy_sfp_passive_tyco:
250 case ixgbe_phy_sfp_passive_unknown:
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000251 case ixgbe_phy_sfp_ftl:
252 case ixgbe_phy_sfp_avago:
253 case ixgbe_phy_sfp_intel:
254 case ixgbe_phy_sfp_unknown:
Emil Tantilovaf56b4d2015-11-09 15:07:12 -0800255 case ixgbe_phy_qsfp_passive_unknown:
256 case ixgbe_phy_qsfp_active_unknown:
257 case ixgbe_phy_qsfp_intel:
258 case ixgbe_phy_qsfp_unknown:
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000259 /* SFP+ devices, further checking needed */
Jacob Kellerdb018962012-06-08 06:59:17 +0000260 switch (adapter->hw.phy.sfp_type) {
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000261 case ixgbe_sfp_type_da_cu:
262 case ixgbe_sfp_type_da_cu_core0:
263 case ixgbe_sfp_type_da_cu_core1:
Jacob Kellerdb018962012-06-08 06:59:17 +0000264 ecmd->supported |= SUPPORTED_FIBRE;
265 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000266 ecmd->port = PORT_DA;
267 break;
268 case ixgbe_sfp_type_sr:
269 case ixgbe_sfp_type_lr:
270 case ixgbe_sfp_type_srlr_core0:
271 case ixgbe_sfp_type_srlr_core1:
Don Skidmore345be202013-04-11 06:23:34 +0000272 case ixgbe_sfp_type_1g_sx_core0:
273 case ixgbe_sfp_type_1g_sx_core1:
274 case ixgbe_sfp_type_1g_lx_core0:
275 case ixgbe_sfp_type_1g_lx_core1:
Jacob Kellerdb018962012-06-08 06:59:17 +0000276 ecmd->supported |= SUPPORTED_FIBRE;
277 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000278 ecmd->port = PORT_FIBRE;
279 break;
280 case ixgbe_sfp_type_not_present:
Jacob Kellerdb018962012-06-08 06:59:17 +0000281 ecmd->supported |= SUPPORTED_FIBRE;
282 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000283 ecmd->port = PORT_NONE;
284 break;
Don Skidmorecb836a92010-06-29 18:30:59 +0000285 case ixgbe_sfp_type_1g_cu_core0:
286 case ixgbe_sfp_type_1g_cu_core1:
Jacob Kellerdb018962012-06-08 06:59:17 +0000287 ecmd->supported |= SUPPORTED_TP;
288 ecmd->advertising |= ADVERTISED_TP;
Don Skidmorecb836a92010-06-29 18:30:59 +0000289 ecmd->port = PORT_TP;
Jacob Kellerdb018962012-06-08 06:59:17 +0000290 break;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000291 case ixgbe_sfp_type_unknown:
292 default:
Jacob Kellerdb018962012-06-08 06:59:17 +0000293 ecmd->supported |= SUPPORTED_FIBRE;
294 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000295 ecmd->port = PORT_OTHER;
296 break;
297 }
298 break;
299 case ixgbe_phy_xaui:
Jacob Kellerdb018962012-06-08 06:59:17 +0000300 ecmd->supported |= SUPPORTED_FIBRE;
301 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000302 ecmd->port = PORT_NONE;
303 break;
304 case ixgbe_phy_unknown:
305 case ixgbe_phy_generic:
306 case ixgbe_phy_sfp_unsupported:
307 default:
Jacob Kellerdb018962012-06-08 06:59:17 +0000308 ecmd->supported |= SUPPORTED_FIBRE;
309 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000310 ecmd->port = PORT_OTHER;
311 break;
312 }
313
Emil Tantilov0e4d4222015-12-03 15:20:06 -0800314 if (netif_carrier_ok(netdev)) {
315 switch (adapter->link_speed) {
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000316 case IXGBE_LINK_SPEED_10GB_FULL:
David Decotigny70739492011-04-27 18:32:40 +0000317 ethtool_cmd_speed_set(ecmd, SPEED_10000);
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000318 break;
Mark Rustad454adb02015-07-10 14:19:22 -0700319 case IXGBE_LINK_SPEED_2_5GB_FULL:
320 ethtool_cmd_speed_set(ecmd, SPEED_2500);
321 break;
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000322 case IXGBE_LINK_SPEED_1GB_FULL:
David Decotigny70739492011-04-27 18:32:40 +0000323 ethtool_cmd_speed_set(ecmd, SPEED_1000);
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000324 break;
325 case IXGBE_LINK_SPEED_100_FULL:
David Decotigny70739492011-04-27 18:32:40 +0000326 ethtool_cmd_speed_set(ecmd, SPEED_100);
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000327 break;
328 default:
329 break;
330 }
Auke Kok9a799d72007-09-15 14:07:45 -0700331 ecmd->duplex = DUPLEX_FULL;
332 } else {
Jiri Pirko537fae02014-06-06 14:17:00 +0200333 ethtool_cmd_speed_set(ecmd, SPEED_UNKNOWN);
334 ecmd->duplex = DUPLEX_UNKNOWN;
Auke Kok9a799d72007-09-15 14:07:45 -0700335 }
336
Auke Kok9a799d72007-09-15 14:07:45 -0700337 return 0;
338}
339
340static int ixgbe_set_settings(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000341 struct ethtool_cmd *ecmd)
Auke Kok9a799d72007-09-15 14:07:45 -0700342{
343 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800344 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700345 u32 advertised, old;
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000346 s32 err = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700347
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000348 if ((hw->phy.media_type == ixgbe_media_type_copper) ||
Mallikarjuna R Chilakalaa3801372009-06-30 11:44:16 +0000349 (hw->phy.multispeed_fiber)) {
Emil Tantilovabcc80d2011-07-29 06:46:10 +0000350 /*
351 * this function does not support duplex forcing, but can
352 * limit the advertising of the adapter to the specified speed
353 */
Emil Tantilovabcc80d2011-07-29 06:46:10 +0000354 if (ecmd->advertising & ~ecmd->supported)
355 return -EINVAL;
356
Emil Tantiloved33ff62013-08-30 07:55:24 +0000357 /* only allow one speed at a time if no autoneg */
358 if (!ecmd->autoneg && hw->phy.multispeed_fiber) {
359 if (ecmd->advertising ==
360 (ADVERTISED_10000baseT_Full |
361 ADVERTISED_1000baseT_Full))
362 return -EINVAL;
363 }
364
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700365 old = hw->phy.autoneg_advertised;
366 advertised = 0;
367 if (ecmd->advertising & ADVERTISED_10000baseT_Full)
368 advertised |= IXGBE_LINK_SPEED_10GB_FULL;
369
370 if (ecmd->advertising & ADVERTISED_1000baseT_Full)
371 advertised |= IXGBE_LINK_SPEED_1GB_FULL;
372
Emil Tantilov2b642ca2011-03-04 09:06:10 +0000373 if (ecmd->advertising & ADVERTISED_100baseT_Full)
374 advertised |= IXGBE_LINK_SPEED_100_FULL;
375
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700376 if (old == advertised)
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000377 return err;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700378 /* this sets the link speed and restarts auto-neg */
Emil Tantilove3215f02014-10-28 05:50:03 +0000379 while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
380 usleep_range(1000, 2000);
381
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000382 hw->mac.autotry_restart = true;
Josh Hayfd0326f2012-12-15 03:28:30 +0000383 err = hw->mac.ops.setup_link(hw, advertised, true);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700384 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000385 e_info(probe, "setup link failed with code %d\n", err);
Josh Hayfd0326f2012-12-15 03:28:30 +0000386 hw->mac.ops.setup_link(hw, old, true);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700387 }
Emil Tantilove3215f02014-10-28 05:50:03 +0000388 clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state);
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000389 } else {
390 /* in this case we currently only support 10Gb/FULL */
David Decotigny25db0332011-04-27 18:32:39 +0000391 u32 speed = ethtool_cmd_speed(ecmd);
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000392 if ((ecmd->autoneg == AUTONEG_ENABLE) ||
Mallikarjuna R Chilakalaa3801372009-06-30 11:44:16 +0000393 (ecmd->advertising != ADVERTISED_10000baseT_Full) ||
David Decotigny25db0332011-04-27 18:32:39 +0000394 (speed + ecmd->duplex != SPEED_10000 + DUPLEX_FULL))
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000395 return -EINVAL;
Auke Kok9a799d72007-09-15 14:07:45 -0700396 }
397
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000398 return err;
Auke Kok9a799d72007-09-15 14:07:45 -0700399}
400
401static void ixgbe_get_pauseparam(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000402 struct ethtool_pauseparam *pause)
Auke Kok9a799d72007-09-15 14:07:45 -0700403{
404 struct ixgbe_adapter *adapter = netdev_priv(netdev);
405 struct ixgbe_hw *hw = &adapter->hw;
406
Don Skidmore73d80953d2013-07-31 02:19:24 +0000407 if (ixgbe_device_supports_autoneg_fc(hw) &&
408 !hw->fc.disable_fc_autoneg)
Don Skidmore71fd5702009-03-31 21:35:05 +0000409 pause->autoneg = 1;
Don Skidmore73d80953d2013-07-31 02:19:24 +0000410 else
411 pause->autoneg = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700412
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800413 if (hw->fc.current_mode == ixgbe_fc_rx_pause) {
Auke Kok9a799d72007-09-15 14:07:45 -0700414 pause->rx_pause = 1;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800415 } else if (hw->fc.current_mode == ixgbe_fc_tx_pause) {
Auke Kok9a799d72007-09-15 14:07:45 -0700416 pause->tx_pause = 1;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800417 } else if (hw->fc.current_mode == ixgbe_fc_full) {
Auke Kok9a799d72007-09-15 14:07:45 -0700418 pause->rx_pause = 1;
419 pause->tx_pause = 1;
420 }
421}
422
423static int ixgbe_set_pauseparam(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000424 struct ethtool_pauseparam *pause)
Auke Kok9a799d72007-09-15 14:07:45 -0700425{
426 struct ixgbe_adapter *adapter = netdev_priv(netdev);
427 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck943561d2012-05-09 22:14:44 -0700428 struct ixgbe_fc_info fc = hw->fc;
Auke Kok9a799d72007-09-15 14:07:45 -0700429
Alexander Duyck943561d2012-05-09 22:14:44 -0700430 /* 82598 does no support link flow control with DCB enabled */
431 if ((hw->mac.type == ixgbe_mac_82598EB) &&
432 (adapter->flags & IXGBE_FLAG_DCB_ENABLED))
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +0000433 return -EINVAL;
434
Jacob Kellerdb2adc22012-10-24 07:26:02 +0000435 /* some devices do not support autoneg of link flow control */
436 if ((pause->autoneg == AUTONEG_ENABLE) &&
Don Skidmore73d80953d2013-07-31 02:19:24 +0000437 !ixgbe_device_supports_autoneg_fc(hw))
Jacob Kellerdb2adc22012-10-24 07:26:02 +0000438 return -EINVAL;
439
Alexander Duyck943561d2012-05-09 22:14:44 -0700440 fc.disable_fc_autoneg = (pause->autoneg != AUTONEG_ENABLE);
Don Skidmore71fd5702009-03-31 21:35:05 +0000441
Don Skidmore1c4f0ef2010-04-27 11:31:06 +0000442 if ((pause->rx_pause && pause->tx_pause) || pause->autoneg)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000443 fc.requested_mode = ixgbe_fc_full;
Auke Kok9a799d72007-09-15 14:07:45 -0700444 else if (pause->rx_pause && !pause->tx_pause)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000445 fc.requested_mode = ixgbe_fc_rx_pause;
Auke Kok9a799d72007-09-15 14:07:45 -0700446 else if (!pause->rx_pause && pause->tx_pause)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000447 fc.requested_mode = ixgbe_fc_tx_pause;
Ayyappan Veeraiyan9c83b0702008-02-01 15:58:59 -0800448 else
Alexander Duyck943561d2012-05-09 22:14:44 -0700449 fc.requested_mode = ixgbe_fc_none;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000450
451 /* if the thing changed then we'll update and use new autoneg */
452 if (memcmp(&fc, &hw->fc, sizeof(struct ixgbe_fc_info))) {
453 hw->fc = fc;
454 if (netif_running(netdev))
455 ixgbe_reinit_locked(adapter);
456 else
457 ixgbe_reset(adapter);
458 }
Auke Kok9a799d72007-09-15 14:07:45 -0700459
460 return 0;
461}
462
Auke Kok9a799d72007-09-15 14:07:45 -0700463static u32 ixgbe_get_msglevel(struct net_device *netdev)
464{
465 struct ixgbe_adapter *adapter = netdev_priv(netdev);
466 return adapter->msg_enable;
467}
468
469static void ixgbe_set_msglevel(struct net_device *netdev, u32 data)
470{
471 struct ixgbe_adapter *adapter = netdev_priv(netdev);
472 adapter->msg_enable = data;
473}
474
475static int ixgbe_get_regs_len(struct net_device *netdev)
476{
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700477#define IXGBE_REGS_LEN 1139
Auke Kok9a799d72007-09-15 14:07:45 -0700478 return IXGBE_REGS_LEN * sizeof(u32);
479}
480
481#define IXGBE_GET_STAT(_A_, _R_) _A_->stats._R_
482
483static void ixgbe_get_regs(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000484 struct ethtool_regs *regs, void *p)
Auke Kok9a799d72007-09-15 14:07:45 -0700485{
486 struct ixgbe_adapter *adapter = netdev_priv(netdev);
487 struct ixgbe_hw *hw = &adapter->hw;
488 u32 *regs_buff = p;
489 u8 i;
490
491 memset(p, 0, IXGBE_REGS_LEN * sizeof(u32));
492
Emil Tantilovc4a56de2013-04-19 09:31:17 +0000493 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
494 hw->device_id;
Auke Kok9a799d72007-09-15 14:07:45 -0700495
496 /* General Registers */
497 regs_buff[0] = IXGBE_READ_REG(hw, IXGBE_CTRL);
498 regs_buff[1] = IXGBE_READ_REG(hw, IXGBE_STATUS);
499 regs_buff[2] = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
500 regs_buff[3] = IXGBE_READ_REG(hw, IXGBE_ESDP);
501 regs_buff[4] = IXGBE_READ_REG(hw, IXGBE_EODSDP);
502 regs_buff[5] = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
503 regs_buff[6] = IXGBE_READ_REG(hw, IXGBE_FRTIMER);
504 regs_buff[7] = IXGBE_READ_REG(hw, IXGBE_TCPTIMER);
505
506 /* NVM Register */
Don Skidmore9a900ec2015-06-09 17:15:01 -0700507 regs_buff[8] = IXGBE_READ_REG(hw, IXGBE_EEC(hw));
Auke Kok9a799d72007-09-15 14:07:45 -0700508 regs_buff[9] = IXGBE_READ_REG(hw, IXGBE_EERD);
Don Skidmore9a900ec2015-06-09 17:15:01 -0700509 regs_buff[10] = IXGBE_READ_REG(hw, IXGBE_FLA(hw));
Auke Kok9a799d72007-09-15 14:07:45 -0700510 regs_buff[11] = IXGBE_READ_REG(hw, IXGBE_EEMNGCTL);
511 regs_buff[12] = IXGBE_READ_REG(hw, IXGBE_EEMNGDATA);
512 regs_buff[13] = IXGBE_READ_REG(hw, IXGBE_FLMNGCTL);
513 regs_buff[14] = IXGBE_READ_REG(hw, IXGBE_FLMNGDATA);
514 regs_buff[15] = IXGBE_READ_REG(hw, IXGBE_FLMNGCNT);
515 regs_buff[16] = IXGBE_READ_REG(hw, IXGBE_FLOP);
Don Skidmore9a900ec2015-06-09 17:15:01 -0700516 regs_buff[17] = IXGBE_READ_REG(hw, IXGBE_GRC(hw));
Auke Kok9a799d72007-09-15 14:07:45 -0700517
518 /* Interrupt */
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700519 /* don't read EICR because it can clear interrupt causes, instead
520 * read EICS which is a shadow but doesn't clear EICR */
521 regs_buff[18] = IXGBE_READ_REG(hw, IXGBE_EICS);
Auke Kok9a799d72007-09-15 14:07:45 -0700522 regs_buff[19] = IXGBE_READ_REG(hw, IXGBE_EICS);
523 regs_buff[20] = IXGBE_READ_REG(hw, IXGBE_EIMS);
524 regs_buff[21] = IXGBE_READ_REG(hw, IXGBE_EIMC);
525 regs_buff[22] = IXGBE_READ_REG(hw, IXGBE_EIAC);
526 regs_buff[23] = IXGBE_READ_REG(hw, IXGBE_EIAM);
527 regs_buff[24] = IXGBE_READ_REG(hw, IXGBE_EITR(0));
528 regs_buff[25] = IXGBE_READ_REG(hw, IXGBE_IVAR(0));
529 regs_buff[26] = IXGBE_READ_REG(hw, IXGBE_MSIXT);
530 regs_buff[27] = IXGBE_READ_REG(hw, IXGBE_MSIXPBA);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700531 regs_buff[28] = IXGBE_READ_REG(hw, IXGBE_PBACL(0));
Auke Kok9a799d72007-09-15 14:07:45 -0700532 regs_buff[29] = IXGBE_READ_REG(hw, IXGBE_GPIE);
533
534 /* Flow Control */
535 regs_buff[30] = IXGBE_READ_REG(hw, IXGBE_PFCTOP);
536 regs_buff[31] = IXGBE_READ_REG(hw, IXGBE_FCTTV(0));
537 regs_buff[32] = IXGBE_READ_REG(hw, IXGBE_FCTTV(1));
538 regs_buff[33] = IXGBE_READ_REG(hw, IXGBE_FCTTV(2));
539 regs_buff[34] = IXGBE_READ_REG(hw, IXGBE_FCTTV(3));
Alexander Duyckbd508172010-11-16 19:27:03 -0800540 for (i = 0; i < 8; i++) {
541 switch (hw->mac.type) {
542 case ixgbe_mac_82598EB:
543 regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTL(i));
544 regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTH(i));
545 break;
546 case ixgbe_mac_82599EB:
Emil Tantilov80bb25e2011-07-27 04:16:29 +0000547 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +0000548 case ixgbe_mac_X550:
549 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -0700550 case ixgbe_mac_x550em_a:
Alexander Duyckbd508172010-11-16 19:27:03 -0800551 regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTL_82599(i));
552 regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
553 break;
554 default:
555 break;
556 }
557 }
Auke Kok9a799d72007-09-15 14:07:45 -0700558 regs_buff[51] = IXGBE_READ_REG(hw, IXGBE_FCRTV);
559 regs_buff[52] = IXGBE_READ_REG(hw, IXGBE_TFCS);
560
561 /* Receive DMA */
562 for (i = 0; i < 64; i++)
563 regs_buff[53 + i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
564 for (i = 0; i < 64; i++)
565 regs_buff[117 + i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
566 for (i = 0; i < 64; i++)
567 regs_buff[181 + i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
568 for (i = 0; i < 64; i++)
569 regs_buff[245 + i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
570 for (i = 0; i < 64; i++)
571 regs_buff[309 + i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
572 for (i = 0; i < 64; i++)
573 regs_buff[373 + i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
574 for (i = 0; i < 16; i++)
575 regs_buff[437 + i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
576 for (i = 0; i < 16; i++)
577 regs_buff[453 + i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
578 regs_buff[469] = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
579 for (i = 0; i < 8; i++)
580 regs_buff[470 + i] = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i));
581 regs_buff[478] = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
582 regs_buff[479] = IXGBE_READ_REG(hw, IXGBE_DROPEN);
583
584 /* Receive */
585 regs_buff[480] = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
586 regs_buff[481] = IXGBE_READ_REG(hw, IXGBE_RFCTL);
587 for (i = 0; i < 16; i++)
588 regs_buff[482 + i] = IXGBE_READ_REG(hw, IXGBE_RAL(i));
589 for (i = 0; i < 16; i++)
590 regs_buff[498 + i] = IXGBE_READ_REG(hw, IXGBE_RAH(i));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700591 regs_buff[514] = IXGBE_READ_REG(hw, IXGBE_PSRTYPE(0));
Auke Kok9a799d72007-09-15 14:07:45 -0700592 regs_buff[515] = IXGBE_READ_REG(hw, IXGBE_FCTRL);
593 regs_buff[516] = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
594 regs_buff[517] = IXGBE_READ_REG(hw, IXGBE_MCSTCTRL);
595 regs_buff[518] = IXGBE_READ_REG(hw, IXGBE_MRQC);
596 regs_buff[519] = IXGBE_READ_REG(hw, IXGBE_VMD_CTL);
597 for (i = 0; i < 8; i++)
598 regs_buff[520 + i] = IXGBE_READ_REG(hw, IXGBE_IMIR(i));
599 for (i = 0; i < 8; i++)
600 regs_buff[528 + i] = IXGBE_READ_REG(hw, IXGBE_IMIREXT(i));
601 regs_buff[536] = IXGBE_READ_REG(hw, IXGBE_IMIRVP);
602
603 /* Transmit */
604 for (i = 0; i < 32; i++)
605 regs_buff[537 + i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
606 for (i = 0; i < 32; i++)
607 regs_buff[569 + i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
608 for (i = 0; i < 32; i++)
609 regs_buff[601 + i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
610 for (i = 0; i < 32; i++)
611 regs_buff[633 + i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
612 for (i = 0; i < 32; i++)
613 regs_buff[665 + i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
614 for (i = 0; i < 32; i++)
615 regs_buff[697 + i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
616 for (i = 0; i < 32; i++)
617 regs_buff[729 + i] = IXGBE_READ_REG(hw, IXGBE_TDWBAL(i));
618 for (i = 0; i < 32; i++)
619 regs_buff[761 + i] = IXGBE_READ_REG(hw, IXGBE_TDWBAH(i));
620 regs_buff[793] = IXGBE_READ_REG(hw, IXGBE_DTXCTL);
621 for (i = 0; i < 16; i++)
622 regs_buff[794 + i] = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(i));
623 regs_buff[810] = IXGBE_READ_REG(hw, IXGBE_TIPG);
624 for (i = 0; i < 8; i++)
625 regs_buff[811 + i] = IXGBE_READ_REG(hw, IXGBE_TXPBSIZE(i));
626 regs_buff[819] = IXGBE_READ_REG(hw, IXGBE_MNGTXMAP);
627
628 /* Wake Up */
629 regs_buff[820] = IXGBE_READ_REG(hw, IXGBE_WUC);
630 regs_buff[821] = IXGBE_READ_REG(hw, IXGBE_WUFC);
631 regs_buff[822] = IXGBE_READ_REG(hw, IXGBE_WUS);
632 regs_buff[823] = IXGBE_READ_REG(hw, IXGBE_IPAV);
633 regs_buff[824] = IXGBE_READ_REG(hw, IXGBE_IP4AT);
634 regs_buff[825] = IXGBE_READ_REG(hw, IXGBE_IP6AT);
635 regs_buff[826] = IXGBE_READ_REG(hw, IXGBE_WUPL);
636 regs_buff[827] = IXGBE_READ_REG(hw, IXGBE_WUPM);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000637 regs_buff[828] = IXGBE_READ_REG(hw, IXGBE_FHFT(0));
Auke Kok9a799d72007-09-15 14:07:45 -0700638
Alexander Duyck673ac602010-11-16 19:27:05 -0800639 /* DCB */
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700640 regs_buff[829] = IXGBE_READ_REG(hw, IXGBE_RMCS); /* same as FCCFG */
641 regs_buff[831] = IXGBE_READ_REG(hw, IXGBE_PDPMCS); /* same as RTTPCS */
642
643 switch (hw->mac.type) {
644 case ixgbe_mac_82598EB:
645 regs_buff[830] = IXGBE_READ_REG(hw, IXGBE_DPMCS);
646 regs_buff[832] = IXGBE_READ_REG(hw, IXGBE_RUPPBMR);
647 for (i = 0; i < 8; i++)
648 regs_buff[833 + i] =
649 IXGBE_READ_REG(hw, IXGBE_RT2CR(i));
650 for (i = 0; i < 8; i++)
651 regs_buff[841 + i] =
652 IXGBE_READ_REG(hw, IXGBE_RT2SR(i));
653 for (i = 0; i < 8; i++)
654 regs_buff[849 + i] =
655 IXGBE_READ_REG(hw, IXGBE_TDTQ2TCCR(i));
656 for (i = 0; i < 8; i++)
657 regs_buff[857 + i] =
658 IXGBE_READ_REG(hw, IXGBE_TDTQ2TCSR(i));
659 break;
660 case ixgbe_mac_82599EB:
661 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +0000662 case ixgbe_mac_X550:
663 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -0700664 case ixgbe_mac_x550em_a:
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700665 regs_buff[830] = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
666 regs_buff[832] = IXGBE_READ_REG(hw, IXGBE_RTRPCS);
667 for (i = 0; i < 8; i++)
668 regs_buff[833 + i] =
669 IXGBE_READ_REG(hw, IXGBE_RTRPT4C(i));
670 for (i = 0; i < 8; i++)
671 regs_buff[841 + i] =
672 IXGBE_READ_REG(hw, IXGBE_RTRPT4S(i));
673 for (i = 0; i < 8; i++)
674 regs_buff[849 + i] =
675 IXGBE_READ_REG(hw, IXGBE_RTTDT2C(i));
676 for (i = 0; i < 8; i++)
677 regs_buff[857 + i] =
678 IXGBE_READ_REG(hw, IXGBE_RTTDT2S(i));
679 break;
680 default:
681 break;
682 }
683
Auke Kok9a799d72007-09-15 14:07:45 -0700684 for (i = 0; i < 8; i++)
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700685 regs_buff[865 + i] =
686 IXGBE_READ_REG(hw, IXGBE_TDPT2TCCR(i)); /* same as RTTPT2C */
Auke Kok9a799d72007-09-15 14:07:45 -0700687 for (i = 0; i < 8; i++)
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700688 regs_buff[873 + i] =
689 IXGBE_READ_REG(hw, IXGBE_TDPT2TCSR(i)); /* same as RTTPT2S */
Auke Kok9a799d72007-09-15 14:07:45 -0700690
691 /* Statistics */
692 regs_buff[881] = IXGBE_GET_STAT(adapter, crcerrs);
693 regs_buff[882] = IXGBE_GET_STAT(adapter, illerrc);
694 regs_buff[883] = IXGBE_GET_STAT(adapter, errbc);
695 regs_buff[884] = IXGBE_GET_STAT(adapter, mspdc);
696 for (i = 0; i < 8; i++)
697 regs_buff[885 + i] = IXGBE_GET_STAT(adapter, mpc[i]);
698 regs_buff[893] = IXGBE_GET_STAT(adapter, mlfc);
699 regs_buff[894] = IXGBE_GET_STAT(adapter, mrfc);
700 regs_buff[895] = IXGBE_GET_STAT(adapter, rlec);
701 regs_buff[896] = IXGBE_GET_STAT(adapter, lxontxc);
702 regs_buff[897] = IXGBE_GET_STAT(adapter, lxonrxc);
703 regs_buff[898] = IXGBE_GET_STAT(adapter, lxofftxc);
704 regs_buff[899] = IXGBE_GET_STAT(adapter, lxoffrxc);
705 for (i = 0; i < 8; i++)
706 regs_buff[900 + i] = IXGBE_GET_STAT(adapter, pxontxc[i]);
707 for (i = 0; i < 8; i++)
708 regs_buff[908 + i] = IXGBE_GET_STAT(adapter, pxonrxc[i]);
709 for (i = 0; i < 8; i++)
710 regs_buff[916 + i] = IXGBE_GET_STAT(adapter, pxofftxc[i]);
711 for (i = 0; i < 8; i++)
712 regs_buff[924 + i] = IXGBE_GET_STAT(adapter, pxoffrxc[i]);
713 regs_buff[932] = IXGBE_GET_STAT(adapter, prc64);
714 regs_buff[933] = IXGBE_GET_STAT(adapter, prc127);
715 regs_buff[934] = IXGBE_GET_STAT(adapter, prc255);
716 regs_buff[935] = IXGBE_GET_STAT(adapter, prc511);
717 regs_buff[936] = IXGBE_GET_STAT(adapter, prc1023);
718 regs_buff[937] = IXGBE_GET_STAT(adapter, prc1522);
719 regs_buff[938] = IXGBE_GET_STAT(adapter, gprc);
720 regs_buff[939] = IXGBE_GET_STAT(adapter, bprc);
721 regs_buff[940] = IXGBE_GET_STAT(adapter, mprc);
722 regs_buff[941] = IXGBE_GET_STAT(adapter, gptc);
723 regs_buff[942] = IXGBE_GET_STAT(adapter, gorc);
724 regs_buff[944] = IXGBE_GET_STAT(adapter, gotc);
725 for (i = 0; i < 8; i++)
726 regs_buff[946 + i] = IXGBE_GET_STAT(adapter, rnbc[i]);
727 regs_buff[954] = IXGBE_GET_STAT(adapter, ruc);
728 regs_buff[955] = IXGBE_GET_STAT(adapter, rfc);
729 regs_buff[956] = IXGBE_GET_STAT(adapter, roc);
730 regs_buff[957] = IXGBE_GET_STAT(adapter, rjc);
731 regs_buff[958] = IXGBE_GET_STAT(adapter, mngprc);
732 regs_buff[959] = IXGBE_GET_STAT(adapter, mngpdc);
733 regs_buff[960] = IXGBE_GET_STAT(adapter, mngptc);
734 regs_buff[961] = IXGBE_GET_STAT(adapter, tor);
735 regs_buff[963] = IXGBE_GET_STAT(adapter, tpr);
736 regs_buff[964] = IXGBE_GET_STAT(adapter, tpt);
737 regs_buff[965] = IXGBE_GET_STAT(adapter, ptc64);
738 regs_buff[966] = IXGBE_GET_STAT(adapter, ptc127);
739 regs_buff[967] = IXGBE_GET_STAT(adapter, ptc255);
740 regs_buff[968] = IXGBE_GET_STAT(adapter, ptc511);
741 regs_buff[969] = IXGBE_GET_STAT(adapter, ptc1023);
742 regs_buff[970] = IXGBE_GET_STAT(adapter, ptc1522);
743 regs_buff[971] = IXGBE_GET_STAT(adapter, mptc);
744 regs_buff[972] = IXGBE_GET_STAT(adapter, bptc);
745 regs_buff[973] = IXGBE_GET_STAT(adapter, xec);
746 for (i = 0; i < 16; i++)
747 regs_buff[974 + i] = IXGBE_GET_STAT(adapter, qprc[i]);
748 for (i = 0; i < 16; i++)
749 regs_buff[990 + i] = IXGBE_GET_STAT(adapter, qptc[i]);
750 for (i = 0; i < 16; i++)
751 regs_buff[1006 + i] = IXGBE_GET_STAT(adapter, qbrc[i]);
752 for (i = 0; i < 16; i++)
753 regs_buff[1022 + i] = IXGBE_GET_STAT(adapter, qbtc[i]);
754
755 /* MAC */
756 regs_buff[1038] = IXGBE_READ_REG(hw, IXGBE_PCS1GCFIG);
757 regs_buff[1039] = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL);
758 regs_buff[1040] = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA);
759 regs_buff[1041] = IXGBE_READ_REG(hw, IXGBE_PCS1GDBG0);
760 regs_buff[1042] = IXGBE_READ_REG(hw, IXGBE_PCS1GDBG1);
761 regs_buff[1043] = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
762 regs_buff[1044] = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP);
763 regs_buff[1045] = IXGBE_READ_REG(hw, IXGBE_PCS1GANNP);
764 regs_buff[1046] = IXGBE_READ_REG(hw, IXGBE_PCS1GANLPNP);
765 regs_buff[1047] = IXGBE_READ_REG(hw, IXGBE_HLREG0);
766 regs_buff[1048] = IXGBE_READ_REG(hw, IXGBE_HLREG1);
767 regs_buff[1049] = IXGBE_READ_REG(hw, IXGBE_PAP);
768 regs_buff[1050] = IXGBE_READ_REG(hw, IXGBE_MACA);
769 regs_buff[1051] = IXGBE_READ_REG(hw, IXGBE_APAE);
770 regs_buff[1052] = IXGBE_READ_REG(hw, IXGBE_ARD);
771 regs_buff[1053] = IXGBE_READ_REG(hw, IXGBE_AIS);
772 regs_buff[1054] = IXGBE_READ_REG(hw, IXGBE_MSCA);
773 regs_buff[1055] = IXGBE_READ_REG(hw, IXGBE_MSRWD);
774 regs_buff[1056] = IXGBE_READ_REG(hw, IXGBE_MLADD);
775 regs_buff[1057] = IXGBE_READ_REG(hw, IXGBE_MHADD);
776 regs_buff[1058] = IXGBE_READ_REG(hw, IXGBE_TREG);
777 regs_buff[1059] = IXGBE_READ_REG(hw, IXGBE_PCSS1);
778 regs_buff[1060] = IXGBE_READ_REG(hw, IXGBE_PCSS2);
779 regs_buff[1061] = IXGBE_READ_REG(hw, IXGBE_XPCSS);
780 regs_buff[1062] = IXGBE_READ_REG(hw, IXGBE_SERDESC);
781 regs_buff[1063] = IXGBE_READ_REG(hw, IXGBE_MACS);
782 regs_buff[1064] = IXGBE_READ_REG(hw, IXGBE_AUTOC);
783 regs_buff[1065] = IXGBE_READ_REG(hw, IXGBE_LINKS);
784 regs_buff[1066] = IXGBE_READ_REG(hw, IXGBE_AUTOC2);
785 regs_buff[1067] = IXGBE_READ_REG(hw, IXGBE_AUTOC3);
786 regs_buff[1068] = IXGBE_READ_REG(hw, IXGBE_ANLP1);
787 regs_buff[1069] = IXGBE_READ_REG(hw, IXGBE_ANLP2);
788 regs_buff[1070] = IXGBE_READ_REG(hw, IXGBE_ATLASCTL);
789
790 /* Diagnostic */
791 regs_buff[1071] = IXGBE_READ_REG(hw, IXGBE_RDSTATCTL);
792 for (i = 0; i < 8; i++)
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700793 regs_buff[1072 + i] = IXGBE_READ_REG(hw, IXGBE_RDSTAT(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700794 regs_buff[1080] = IXGBE_READ_REG(hw, IXGBE_RDHMPN);
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700795 for (i = 0; i < 4; i++)
796 regs_buff[1081 + i] = IXGBE_READ_REG(hw, IXGBE_RIC_DW(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700797 regs_buff[1085] = IXGBE_READ_REG(hw, IXGBE_RDPROBE);
798 regs_buff[1086] = IXGBE_READ_REG(hw, IXGBE_TDSTATCTL);
799 for (i = 0; i < 8; i++)
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700800 regs_buff[1087 + i] = IXGBE_READ_REG(hw, IXGBE_TDSTAT(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700801 regs_buff[1095] = IXGBE_READ_REG(hw, IXGBE_TDHMPN);
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700802 for (i = 0; i < 4; i++)
803 regs_buff[1096 + i] = IXGBE_READ_REG(hw, IXGBE_TIC_DW(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700804 regs_buff[1100] = IXGBE_READ_REG(hw, IXGBE_TDPROBE);
805 regs_buff[1101] = IXGBE_READ_REG(hw, IXGBE_TXBUFCTRL);
806 regs_buff[1102] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA0);
807 regs_buff[1103] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA1);
808 regs_buff[1104] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA2);
809 regs_buff[1105] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA3);
810 regs_buff[1106] = IXGBE_READ_REG(hw, IXGBE_RXBUFCTRL);
811 regs_buff[1107] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA0);
812 regs_buff[1108] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA1);
813 regs_buff[1109] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA2);
814 regs_buff[1110] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA3);
815 for (i = 0; i < 8; i++)
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700816 regs_buff[1111 + i] = IXGBE_READ_REG(hw, IXGBE_PCIE_DIAG(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700817 regs_buff[1119] = IXGBE_READ_REG(hw, IXGBE_RFVAL);
818 regs_buff[1120] = IXGBE_READ_REG(hw, IXGBE_MDFTC1);
819 regs_buff[1121] = IXGBE_READ_REG(hw, IXGBE_MDFTC2);
820 regs_buff[1122] = IXGBE_READ_REG(hw, IXGBE_MDFTFIFO1);
821 regs_buff[1123] = IXGBE_READ_REG(hw, IXGBE_MDFTFIFO2);
822 regs_buff[1124] = IXGBE_READ_REG(hw, IXGBE_MDFTS);
823 regs_buff[1125] = IXGBE_READ_REG(hw, IXGBE_PCIEECCCTL);
824 regs_buff[1126] = IXGBE_READ_REG(hw, IXGBE_PBTXECC);
825 regs_buff[1127] = IXGBE_READ_REG(hw, IXGBE_PBRXECC);
Emil Tantilov217995e2011-09-15 06:23:10 +0000826
827 /* 82599 X540 specific registers */
828 regs_buff[1128] = IXGBE_READ_REG(hw, IXGBE_MFLCN);
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700829
830 /* 82599 X540 specific DCB registers */
831 regs_buff[1129] = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
832 regs_buff[1130] = IXGBE_READ_REG(hw, IXGBE_RTTUP2TC);
833 for (i = 0; i < 4; i++)
834 regs_buff[1131 + i] = IXGBE_READ_REG(hw, IXGBE_TXLLQ(i));
835 regs_buff[1135] = IXGBE_READ_REG(hw, IXGBE_RTTBCNRM);
836 /* same as RTTQCNRM */
837 regs_buff[1136] = IXGBE_READ_REG(hw, IXGBE_RTTBCNRD);
838 /* same as RTTQCNRR */
839
840 /* X540 specific DCB registers */
841 regs_buff[1137] = IXGBE_READ_REG(hw, IXGBE_RTTQCNCR);
842 regs_buff[1138] = IXGBE_READ_REG(hw, IXGBE_RTTQCNTG);
Auke Kok9a799d72007-09-15 14:07:45 -0700843}
844
845static int ixgbe_get_eeprom_len(struct net_device *netdev)
846{
847 struct ixgbe_adapter *adapter = netdev_priv(netdev);
848 return adapter->hw.eeprom.word_size * 2;
849}
850
851static int ixgbe_get_eeprom(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000852 struct ethtool_eeprom *eeprom, u8 *bytes)
Auke Kok9a799d72007-09-15 14:07:45 -0700853{
854 struct ixgbe_adapter *adapter = netdev_priv(netdev);
855 struct ixgbe_hw *hw = &adapter->hw;
856 u16 *eeprom_buff;
857 int first_word, last_word, eeprom_len;
858 int ret_val = 0;
859 u16 i;
860
861 if (eeprom->len == 0)
862 return -EINVAL;
863
864 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
865
866 first_word = eeprom->offset >> 1;
867 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
868 eeprom_len = last_word - first_word + 1;
869
870 eeprom_buff = kmalloc(sizeof(u16) * eeprom_len, GFP_KERNEL);
871 if (!eeprom_buff)
872 return -ENOMEM;
873
Emil Tantilov68c70052011-04-20 08:49:06 +0000874 ret_val = hw->eeprom.ops.read_buffer(hw, first_word, eeprom_len,
875 eeprom_buff);
Auke Kok9a799d72007-09-15 14:07:45 -0700876
877 /* Device's eeprom is always little-endian, word addressable */
878 for (i = 0; i < eeprom_len; i++)
879 le16_to_cpus(&eeprom_buff[i]);
880
881 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
882 kfree(eeprom_buff);
883
884 return ret_val;
885}
886
Emil Tantilov2fa5eef2011-10-06 08:57:04 +0000887static int ixgbe_set_eeprom(struct net_device *netdev,
888 struct ethtool_eeprom *eeprom, u8 *bytes)
889{
890 struct ixgbe_adapter *adapter = netdev_priv(netdev);
891 struct ixgbe_hw *hw = &adapter->hw;
892 u16 *eeprom_buff;
893 void *ptr;
894 int max_len, first_word, last_word, ret_val = 0;
895 u16 i;
896
897 if (eeprom->len == 0)
898 return -EINVAL;
899
900 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
901 return -EINVAL;
902
903 max_len = hw->eeprom.word_size * 2;
904
905 first_word = eeprom->offset >> 1;
906 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
907 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
908 if (!eeprom_buff)
909 return -ENOMEM;
910
911 ptr = eeprom_buff;
912
913 if (eeprom->offset & 1) {
914 /*
915 * need read/modify/write of first changed EEPROM word
916 * only the second byte of the word is being modified
917 */
918 ret_val = hw->eeprom.ops.read(hw, first_word, &eeprom_buff[0]);
919 if (ret_val)
920 goto err;
921
922 ptr++;
923 }
924 if ((eeprom->offset + eeprom->len) & 1) {
925 /*
926 * need read/modify/write of last changed EEPROM word
927 * only the first byte of the word is being modified
928 */
929 ret_val = hw->eeprom.ops.read(hw, last_word,
930 &eeprom_buff[last_word - first_word]);
931 if (ret_val)
932 goto err;
933 }
934
935 /* Device's eeprom is always little-endian, word addressable */
936 for (i = 0; i < last_word - first_word + 1; i++)
937 le16_to_cpus(&eeprom_buff[i]);
938
939 memcpy(ptr, bytes, eeprom->len);
940
941 for (i = 0; i < last_word - first_word + 1; i++)
942 cpu_to_le16s(&eeprom_buff[i]);
943
944 ret_val = hw->eeprom.ops.write_buffer(hw, first_word,
945 last_word - first_word + 1,
946 eeprom_buff);
947
948 /* Update the checksum */
949 if (ret_val == 0)
950 hw->eeprom.ops.update_checksum(hw);
951
952err:
953 kfree(eeprom_buff);
954 return ret_val;
955}
956
Auke Kok9a799d72007-09-15 14:07:45 -0700957static void ixgbe_get_drvinfo(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000958 struct ethtool_drvinfo *drvinfo)
Auke Kok9a799d72007-09-15 14:07:45 -0700959{
960 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Emil Tantilov15e52092011-09-29 05:01:29 +0000961 u32 nvm_track_id;
Auke Kok9a799d72007-09-15 14:07:45 -0700962
Rick Jones612a94d2011-11-14 08:13:25 +0000963 strlcpy(drvinfo->driver, ixgbe_driver_name, sizeof(drvinfo->driver));
964 strlcpy(drvinfo->version, ixgbe_driver_version,
965 sizeof(drvinfo->version));
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -0800966
Emil Tantilov15e52092011-09-29 05:01:29 +0000967 nvm_track_id = (adapter->eeprom_verh << 16) |
968 adapter->eeprom_verl;
Rick Jones612a94d2011-11-14 08:13:25 +0000969 snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), "0x%08x",
Emil Tantilov15e52092011-09-29 05:01:29 +0000970 nvm_track_id);
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -0800971
Rick Jones612a94d2011-11-14 08:13:25 +0000972 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
973 sizeof(drvinfo->bus_info));
Auke Kok9a799d72007-09-15 14:07:45 -0700974}
975
976static void ixgbe_get_ringparam(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000977 struct ethtool_ringparam *ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700978{
979 struct ixgbe_adapter *adapter = netdev_priv(netdev);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000980 struct ixgbe_ring *tx_ring = adapter->tx_ring[0];
981 struct ixgbe_ring *rx_ring = adapter->rx_ring[0];
Auke Kok9a799d72007-09-15 14:07:45 -0700982
983 ring->rx_max_pending = IXGBE_MAX_RXD;
984 ring->tx_max_pending = IXGBE_MAX_TXD;
Auke Kok9a799d72007-09-15 14:07:45 -0700985 ring->rx_pending = rx_ring->count;
986 ring->tx_pending = tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -0700987}
988
989static int ixgbe_set_ringparam(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000990 struct ethtool_ringparam *ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700991{
992 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck1f4702a2012-09-12 07:09:51 +0000993 struct ixgbe_ring *temp_ring;
Alexander Duyck759884b2009-10-26 11:32:05 +0000994 int i, err = 0;
Jesse Brandeburgc431f972008-09-11 19:59:16 -0700995 u32 new_rx_count, new_tx_count;
Auke Kok9a799d72007-09-15 14:07:45 -0700996
997 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
998 return -EINVAL;
999
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001000 new_tx_count = clamp_t(u32, ring->tx_pending,
1001 IXGBE_MIN_TXD, IXGBE_MAX_TXD);
Auke Kok9a799d72007-09-15 14:07:45 -07001002 new_tx_count = ALIGN(new_tx_count, IXGBE_REQ_TX_DESCRIPTOR_MULTIPLE);
1003
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001004 new_rx_count = clamp_t(u32, ring->rx_pending,
1005 IXGBE_MIN_RXD, IXGBE_MAX_RXD);
1006 new_rx_count = ALIGN(new_rx_count, IXGBE_REQ_RX_DESCRIPTOR_MULTIPLE);
1007
1008 if ((new_tx_count == adapter->tx_ring_count) &&
1009 (new_rx_count == adapter->rx_ring_count)) {
Auke Kok9a799d72007-09-15 14:07:45 -07001010 /* nothing to do */
1011 return 0;
1012 }
1013
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001014 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +00001015 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001016
Alexander Duyck759884b2009-10-26 11:32:05 +00001017 if (!netif_running(adapter->netdev)) {
1018 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001019 adapter->tx_ring[i]->count = new_tx_count;
Alexander Duyck759884b2009-10-26 11:32:05 +00001020 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001021 adapter->rx_ring[i]->count = new_rx_count;
Alexander Duyck759884b2009-10-26 11:32:05 +00001022 adapter->tx_ring_count = new_tx_count;
1023 adapter->rx_ring_count = new_rx_count;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001024 goto clear_reset;
Alexander Duyck759884b2009-10-26 11:32:05 +00001025 }
1026
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001027 /* allocate temporary buffer to store rings in */
1028 i = max_t(int, adapter->num_tx_queues, adapter->num_rx_queues);
1029 temp_ring = vmalloc(i * sizeof(struct ixgbe_ring));
1030
1031 if (!temp_ring) {
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001032 err = -ENOMEM;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001033 goto clear_reset;
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001034 }
1035
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001036 ixgbe_down(adapter);
1037
1038 /*
1039 * Setup new Tx resources and free the old Tx resources in that order.
1040 * We can then assign the new resources to the rings via a memcpy.
1041 * The advantage to this approach is that we are guaranteed to still
1042 * have resources even in the case of an allocation failure.
1043 */
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001044 if (new_tx_count != adapter->tx_ring_count) {
Auke Kok9a799d72007-09-15 14:07:45 -07001045 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001046 memcpy(&temp_ring[i], adapter->tx_ring[i],
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001047 sizeof(struct ixgbe_ring));
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001048
1049 temp_ring[i].count = new_tx_count;
1050 err = ixgbe_setup_tx_resources(&temp_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07001051 if (err) {
Jesse Brandeburgc431f972008-09-11 19:59:16 -07001052 while (i) {
1053 i--;
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001054 ixgbe_free_tx_resources(&temp_ring[i]);
Jesse Brandeburgc431f972008-09-11 19:59:16 -07001055 }
Auke Kok9a799d72007-09-15 14:07:45 -07001056 goto err_setup;
1057 }
Auke Kok9a799d72007-09-15 14:07:45 -07001058 }
Jesse Brandeburgc431f972008-09-11 19:59:16 -07001059
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001060 for (i = 0; i < adapter->num_tx_queues; i++) {
1061 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001062
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001063 memcpy(adapter->tx_ring[i], &temp_ring[i],
1064 sizeof(struct ixgbe_ring));
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001065 }
1066
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001067 adapter->tx_ring_count = new_tx_count;
Alexander Duyck759884b2009-10-26 11:32:05 +00001068 }
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001069
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001070 /* Repeat the process for the Rx rings if needed */
1071 if (new_rx_count != adapter->rx_ring_count) {
1072 for (i = 0; i < adapter->num_rx_queues; i++) {
1073 memcpy(&temp_ring[i], adapter->rx_ring[i],
1074 sizeof(struct ixgbe_ring));
1075
1076 temp_ring[i].count = new_rx_count;
1077 err = ixgbe_setup_rx_resources(&temp_ring[i]);
1078 if (err) {
1079 while (i) {
1080 i--;
1081 ixgbe_free_rx_resources(&temp_ring[i]);
1082 }
1083 goto err_setup;
1084 }
1085
1086 }
1087
1088 for (i = 0; i < adapter->num_rx_queues; i++) {
1089 ixgbe_free_rx_resources(adapter->rx_ring[i]);
1090
1091 memcpy(adapter->rx_ring[i], &temp_ring[i],
1092 sizeof(struct ixgbe_ring));
1093 }
1094
1095 adapter->rx_ring_count = new_rx_count;
1096 }
1097
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001098err_setup:
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001099 ixgbe_up(adapter);
1100 vfree(temp_ring);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001101clear_reset:
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001102 clear_bit(__IXGBE_RESETTING, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07001103 return err;
1104}
1105
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001106static int ixgbe_get_sset_count(struct net_device *netdev, int sset)
Auke Kok9a799d72007-09-15 14:07:45 -07001107{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001108 switch (sset) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001109 case ETH_SS_TEST:
1110 return IXGBE_TEST_LEN;
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001111 case ETH_SS_STATS:
1112 return IXGBE_STATS_LEN;
1113 default:
1114 return -EOPNOTSUPP;
1115 }
Auke Kok9a799d72007-09-15 14:07:45 -07001116}
1117
1118static void ixgbe_get_ethtool_stats(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001119 struct ethtool_stats *stats, u64 *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001120{
1121 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Eric Dumazet28172732010-07-07 14:58:56 -07001122 struct rtnl_link_stats64 temp;
1123 const struct rtnl_link_stats64 *net_stats;
Eric Dumazetde1036b2010-10-20 23:00:04 +00001124 unsigned int start;
1125 struct ixgbe_ring *ring;
1126 int i, j;
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001127 char *p = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001128
1129 ixgbe_update_stats(adapter);
Eric Dumazet28172732010-07-07 14:58:56 -07001130 net_stats = dev_get_stats(netdev, &temp);
Auke Kok9a799d72007-09-15 14:07:45 -07001131 for (i = 0; i < IXGBE_GLOBAL_STATS_LEN; i++) {
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001132 switch (ixgbe_gstrings_stats[i].type) {
1133 case NETDEV_STATS:
Eric Dumazet28172732010-07-07 14:58:56 -07001134 p = (char *) net_stats +
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001135 ixgbe_gstrings_stats[i].stat_offset;
1136 break;
1137 case IXGBE_STATS:
1138 p = (char *) adapter +
1139 ixgbe_gstrings_stats[i].stat_offset;
1140 break;
Josh Hayf752be92013-01-04 03:34:36 +00001141 default:
1142 data[i] = 0;
1143 continue;
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001144 }
1145
Auke Kok9a799d72007-09-15 14:07:45 -07001146 data[i] = (ixgbe_gstrings_stats[i].sizeof_stat ==
Jacob Kellere7cf7452014-04-09 06:03:10 +00001147 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
Auke Kok9a799d72007-09-15 14:07:45 -07001148 }
Don Skidmorebd8a1b12013-06-28 05:35:50 +00001149 for (j = 0; j < netdev->num_tx_queues; j++) {
Eric Dumazetde1036b2010-10-20 23:00:04 +00001150 ring = adapter->tx_ring[j];
John Fastabend9cc00b52012-01-28 03:32:17 +00001151 if (!ring) {
1152 data[i] = 0;
1153 data[i+1] = 0;
1154 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001155#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001156 data[i] = 0;
1157 data[i+1] = 0;
1158 data[i+2] = 0;
1159 i += 3;
1160#endif
John Fastabend9cc00b52012-01-28 03:32:17 +00001161 continue;
1162 }
1163
Eric Dumazetde1036b2010-10-20 23:00:04 +00001164 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001165 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazetde1036b2010-10-20 23:00:04 +00001166 data[i] = ring->stats.packets;
1167 data[i+1] = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001168 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazetde1036b2010-10-20 23:00:04 +00001169 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001170#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001171 data[i] = ring->stats.yields;
1172 data[i+1] = ring->stats.misses;
1173 data[i+2] = ring->stats.cleaned;
1174 i += 3;
1175#endif
Auke Kok9a799d72007-09-15 14:07:45 -07001176 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001177 for (j = 0; j < IXGBE_NUM_RX_QUEUES; j++) {
Eric Dumazetde1036b2010-10-20 23:00:04 +00001178 ring = adapter->rx_ring[j];
John Fastabend9cc00b52012-01-28 03:32:17 +00001179 if (!ring) {
1180 data[i] = 0;
1181 data[i+1] = 0;
1182 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001183#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001184 data[i] = 0;
1185 data[i+1] = 0;
1186 data[i+2] = 0;
1187 i += 3;
1188#endif
John Fastabend9cc00b52012-01-28 03:32:17 +00001189 continue;
1190 }
1191
Eric Dumazetde1036b2010-10-20 23:00:04 +00001192 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001193 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazetde1036b2010-10-20 23:00:04 +00001194 data[i] = ring->stats.packets;
1195 data[i+1] = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001196 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazetde1036b2010-10-20 23:00:04 +00001197 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001198#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001199 data[i] = ring->stats.yields;
1200 data[i+1] = ring->stats.misses;
1201 data[i+2] = ring->stats.cleaned;
1202 i += 3;
1203#endif
Auke Kok9a799d72007-09-15 14:07:45 -07001204 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001205
1206 for (j = 0; j < IXGBE_MAX_PACKET_BUFFERS; j++) {
1207 data[i++] = adapter->stats.pxontxc[j];
1208 data[i++] = adapter->stats.pxofftxc[j];
1209 }
1210 for (j = 0; j < IXGBE_MAX_PACKET_BUFFERS; j++) {
1211 data[i++] = adapter->stats.pxonrxc[j];
1212 data[i++] = adapter->stats.pxoffrxc[j];
Alexander Duyck2f90b862008-11-20 20:52:10 -08001213 }
Auke Kok9a799d72007-09-15 14:07:45 -07001214}
1215
1216static void ixgbe_get_strings(struct net_device *netdev, u32 stringset,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001217 u8 *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001218{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001219 char *p = (char *)data;
Auke Kok9a799d72007-09-15 14:07:45 -07001220 int i;
1221
1222 switch (stringset) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001223 case ETH_SS_TEST:
Josh Hayd2c47b62013-01-04 03:34:42 +00001224 for (i = 0; i < IXGBE_TEST_LEN; i++) {
1225 memcpy(data, ixgbe_gstrings_test[i], ETH_GSTRING_LEN);
1226 data += ETH_GSTRING_LEN;
1227 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001228 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001229 case ETH_SS_STATS:
1230 for (i = 0; i < IXGBE_GLOBAL_STATS_LEN; i++) {
1231 memcpy(p, ixgbe_gstrings_stats[i].stat_string,
1232 ETH_GSTRING_LEN);
1233 p += ETH_GSTRING_LEN;
1234 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001235 for (i = 0; i < netdev->num_tx_queues; i++) {
Auke Kok9a799d72007-09-15 14:07:45 -07001236 sprintf(p, "tx_queue_%u_packets", i);
1237 p += ETH_GSTRING_LEN;
1238 sprintf(p, "tx_queue_%u_bytes", i);
1239 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001240#ifdef BP_EXTENDED_STATS
1241 sprintf(p, "tx_queue_%u_bp_napi_yield", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001242 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001243 sprintf(p, "tx_queue_%u_bp_misses", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001244 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001245 sprintf(p, "tx_queue_%u_bp_cleaned", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001246 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001247#endif /* BP_EXTENDED_STATS */
Auke Kok9a799d72007-09-15 14:07:45 -07001248 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001249 for (i = 0; i < IXGBE_NUM_RX_QUEUES; i++) {
Auke Kok9a799d72007-09-15 14:07:45 -07001250 sprintf(p, "rx_queue_%u_packets", i);
1251 p += ETH_GSTRING_LEN;
1252 sprintf(p, "rx_queue_%u_bytes", i);
1253 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001254#ifdef BP_EXTENDED_STATS
1255 sprintf(p, "rx_queue_%u_bp_poll_yield", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001256 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001257 sprintf(p, "rx_queue_%u_bp_misses", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001258 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001259 sprintf(p, "rx_queue_%u_bp_cleaned", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001260 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001261#endif /* BP_EXTENDED_STATS */
Auke Kok9a799d72007-09-15 14:07:45 -07001262 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001263 for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++) {
1264 sprintf(p, "tx_pb_%u_pxon", i);
1265 p += ETH_GSTRING_LEN;
1266 sprintf(p, "tx_pb_%u_pxoff", i);
1267 p += ETH_GSTRING_LEN;
1268 }
1269 for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++) {
1270 sprintf(p, "rx_pb_%u_pxon", i);
1271 p += ETH_GSTRING_LEN;
1272 sprintf(p, "rx_pb_%u_pxoff", i);
1273 p += ETH_GSTRING_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08001274 }
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001275 /* BUG_ON(p - data != IXGBE_STATS_LEN * ETH_GSTRING_LEN); */
Auke Kok9a799d72007-09-15 14:07:45 -07001276 break;
1277 }
1278}
1279
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001280static int ixgbe_link_test(struct ixgbe_adapter *adapter, u64 *data)
1281{
1282 struct ixgbe_hw *hw = &adapter->hw;
1283 bool link_up;
1284 u32 link_speed = 0;
Mark Rustad0edd2bd2014-02-28 15:48:56 -08001285
1286 if (ixgbe_removed(hw->hw_addr)) {
1287 *data = 1;
1288 return 1;
1289 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001290 *data = 0;
1291
1292 hw->mac.ops.check_link(hw, &link_speed, &link_up, true);
1293 if (link_up)
1294 return *data;
1295 else
1296 *data = 1;
1297 return *data;
1298}
1299
1300/* ethtool register test data */
1301struct ixgbe_reg_test {
1302 u16 reg;
1303 u8 array_len;
1304 u8 test_type;
1305 u32 mask;
1306 u32 write;
1307};
1308
1309/* In the hardware, registers are laid out either singly, in arrays
1310 * spaced 0x40 bytes apart, or in contiguous tables. We assume
1311 * most tests take place on arrays or single registers (handled
1312 * as a single-element array) and special-case the tables.
1313 * Table tests are always pattern tests.
1314 *
1315 * We also make provision for some required setup steps by specifying
1316 * registers to be written without any read-back testing.
1317 */
1318
1319#define PATTERN_TEST 1
1320#define SET_READ_TEST 2
1321#define WRITE_NO_TEST 3
1322#define TABLE32_TEST 4
1323#define TABLE64_TEST_LO 5
1324#define TABLE64_TEST_HI 6
1325
1326/* default 82599 register test */
Jeff Kirsher66744502010-12-01 19:59:50 +00001327static const struct ixgbe_reg_test reg_test_82599[] = {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001328 { IXGBE_FCRTL_82599(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1329 { IXGBE_FCRTH_82599(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1330 { IXGBE_PFCTOP, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1331 { IXGBE_VLNCTRL, 1, PATTERN_TEST, 0x00000000, 0x00000000 },
1332 { IXGBE_RDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFF80 },
1333 { IXGBE_RDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1334 { IXGBE_RDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF },
1335 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE },
1336 { IXGBE_RDT(0), 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF },
1337 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, 0 },
1338 { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1339 { IXGBE_FCTTV(0), 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1340 { IXGBE_TDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF },
1341 { IXGBE_TDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1342 { IXGBE_TDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFF80 },
1343 { IXGBE_RXCTRL, 1, SET_READ_TEST, 0x00000001, 0x00000001 },
1344 { IXGBE_RAL(0), 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF },
1345 { IXGBE_RAL(0), 16, TABLE64_TEST_HI, 0x8001FFFF, 0x800CFFFF },
1346 { IXGBE_MTA(0), 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
Mark Rustadca8dfe22014-07-24 06:19:24 +00001347 { .reg = 0 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001348};
1349
1350/* default 82598 register test */
Jeff Kirsher66744502010-12-01 19:59:50 +00001351static const struct ixgbe_reg_test reg_test_82598[] = {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001352 { IXGBE_FCRTL(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1353 { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1354 { IXGBE_PFCTOP, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1355 { IXGBE_VLNCTRL, 1, PATTERN_TEST, 0x00000000, 0x00000000 },
1356 { IXGBE_RDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF },
1357 { IXGBE_RDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1358 { IXGBE_RDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF },
1359 /* Enable all four RX queues before testing. */
1360 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE },
1361 /* RDH is read-only for 82598, only test RDT. */
1362 { IXGBE_RDT(0), 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF },
1363 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, 0 },
1364 { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1365 { IXGBE_FCTTV(0), 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1366 { IXGBE_TIPG, 1, PATTERN_TEST, 0x000000FF, 0x000000FF },
1367 { IXGBE_TDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF },
1368 { IXGBE_TDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1369 { IXGBE_TDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF },
1370 { IXGBE_RXCTRL, 1, SET_READ_TEST, 0x00000003, 0x00000003 },
1371 { IXGBE_DTXCTL, 1, SET_READ_TEST, 0x00000005, 0x00000005 },
1372 { IXGBE_RAL(0), 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF },
1373 { IXGBE_RAL(0), 16, TABLE64_TEST_HI, 0x800CFFFF, 0x800CFFFF },
1374 { IXGBE_MTA(0), 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
Mark Rustadca8dfe22014-07-24 06:19:24 +00001375 { .reg = 0 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001376};
1377
Emil Tantilov95a46012011-04-14 07:46:41 +00001378static bool reg_pattern_test(struct ixgbe_adapter *adapter, u64 *data, int reg,
1379 u32 mask, u32 write)
1380{
1381 u32 pat, val, before;
1382 static const u32 test_pattern[] = {
1383 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF};
Jeff Kirsher66744502010-12-01 19:59:50 +00001384
Mark Rustadb0483c82014-01-14 18:53:17 -08001385 if (ixgbe_removed(adapter->hw.hw_addr)) {
1386 *data = 1;
Joe Perches4e833c52015-03-29 18:25:12 -07001387 return true;
Mark Rustadb0483c82014-01-14 18:53:17 -08001388 }
Emil Tantilov95a46012011-04-14 07:46:41 +00001389 for (pat = 0; pat < ARRAY_SIZE(test_pattern); pat++) {
Mark Rustad49bde312014-01-14 18:53:14 -08001390 before = ixgbe_read_reg(&adapter->hw, reg);
1391 ixgbe_write_reg(&adapter->hw, reg, test_pattern[pat] & write);
1392 val = ixgbe_read_reg(&adapter->hw, reg);
Emil Tantilov95a46012011-04-14 07:46:41 +00001393 if (val != (test_pattern[pat] & write & mask)) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00001394 e_err(drv, "pattern test reg %04X failed: got 0x%08X expected 0x%08X\n",
Emil Tantilov95a46012011-04-14 07:46:41 +00001395 reg, val, (test_pattern[pat] & write & mask));
1396 *data = reg;
Mark Rustad49bde312014-01-14 18:53:14 -08001397 ixgbe_write_reg(&adapter->hw, reg, before);
1398 return true;
Emil Tantilov95a46012011-04-14 07:46:41 +00001399 }
Mark Rustad49bde312014-01-14 18:53:14 -08001400 ixgbe_write_reg(&adapter->hw, reg, before);
Emil Tantilov95a46012011-04-14 07:46:41 +00001401 }
Mark Rustad49bde312014-01-14 18:53:14 -08001402 return false;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001403}
1404
Emil Tantilov95a46012011-04-14 07:46:41 +00001405static bool reg_set_and_check(struct ixgbe_adapter *adapter, u64 *data, int reg,
1406 u32 mask, u32 write)
1407{
1408 u32 val, before;
Mark Rustad49bde312014-01-14 18:53:14 -08001409
Mark Rustadb0483c82014-01-14 18:53:17 -08001410 if (ixgbe_removed(adapter->hw.hw_addr)) {
1411 *data = 1;
Joe Perches4e833c52015-03-29 18:25:12 -07001412 return true;
Mark Rustadb0483c82014-01-14 18:53:17 -08001413 }
Mark Rustad49bde312014-01-14 18:53:14 -08001414 before = ixgbe_read_reg(&adapter->hw, reg);
1415 ixgbe_write_reg(&adapter->hw, reg, write & mask);
1416 val = ixgbe_read_reg(&adapter->hw, reg);
Emil Tantilov95a46012011-04-14 07:46:41 +00001417 if ((write & mask) != (val & mask)) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00001418 e_err(drv, "set/check reg %04X test failed: got 0x%08X expected 0x%08X\n",
1419 reg, (val & mask), (write & mask));
Emil Tantilov95a46012011-04-14 07:46:41 +00001420 *data = reg;
Mark Rustad49bde312014-01-14 18:53:14 -08001421 ixgbe_write_reg(&adapter->hw, reg, before);
1422 return true;
Emil Tantilov95a46012011-04-14 07:46:41 +00001423 }
Mark Rustad49bde312014-01-14 18:53:14 -08001424 ixgbe_write_reg(&adapter->hw, reg, before);
1425 return false;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001426}
1427
1428static int ixgbe_reg_test(struct ixgbe_adapter *adapter, u64 *data)
1429{
Jeff Kirsher66744502010-12-01 19:59:50 +00001430 const struct ixgbe_reg_test *test;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001431 u32 value, before, after;
1432 u32 i, toggle;
1433
Mark Rustadb0483c82014-01-14 18:53:17 -08001434 if (ixgbe_removed(adapter->hw.hw_addr)) {
1435 e_err(drv, "Adapter removed - register test blocked\n");
1436 *data = 1;
1437 return 1;
1438 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001439 switch (adapter->hw.mac.type) {
1440 case ixgbe_mac_82598EB:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001441 toggle = 0x7FFFF3FF;
1442 test = reg_test_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08001443 break;
1444 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001445 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00001446 case ixgbe_mac_X550:
1447 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07001448 case ixgbe_mac_x550em_a:
Alexander Duyckbd508172010-11-16 19:27:03 -08001449 toggle = 0x7FFFF30F;
1450 test = reg_test_82599;
1451 break;
1452 default:
1453 *data = 1;
1454 return 1;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001455 }
1456
1457 /*
1458 * Because the status register is such a special case,
1459 * we handle it separately from the rest of the register
1460 * tests. Some bits are read-only, some toggle, and some
1461 * are writeable on newer MACs.
1462 */
Mark Rustad49bde312014-01-14 18:53:14 -08001463 before = ixgbe_read_reg(&adapter->hw, IXGBE_STATUS);
1464 value = (ixgbe_read_reg(&adapter->hw, IXGBE_STATUS) & toggle);
1465 ixgbe_write_reg(&adapter->hw, IXGBE_STATUS, toggle);
1466 after = ixgbe_read_reg(&adapter->hw, IXGBE_STATUS) & toggle;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001467 if (value != after) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00001468 e_err(drv, "failed STATUS register test got: 0x%08X expected: 0x%08X\n",
1469 after, value);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001470 *data = 1;
1471 return 1;
1472 }
1473 /* restore previous status */
Mark Rustad49bde312014-01-14 18:53:14 -08001474 ixgbe_write_reg(&adapter->hw, IXGBE_STATUS, before);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001475
1476 /*
1477 * Perform the remainder of the register test, looping through
1478 * the test table until we either fail or reach the null entry.
1479 */
1480 while (test->reg) {
1481 for (i = 0; i < test->array_len; i++) {
Mark Rustad49bde312014-01-14 18:53:14 -08001482 bool b = false;
1483
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001484 switch (test->test_type) {
1485 case PATTERN_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001486 b = reg_pattern_test(adapter, data,
1487 test->reg + (i * 0x40),
1488 test->mask,
1489 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001490 break;
1491 case SET_READ_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001492 b = reg_set_and_check(adapter, data,
1493 test->reg + (i * 0x40),
1494 test->mask,
1495 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001496 break;
1497 case WRITE_NO_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001498 ixgbe_write_reg(&adapter->hw,
1499 test->reg + (i * 0x40),
1500 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001501 break;
1502 case TABLE32_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001503 b = reg_pattern_test(adapter, data,
1504 test->reg + (i * 4),
1505 test->mask,
1506 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001507 break;
1508 case TABLE64_TEST_LO:
Mark Rustad49bde312014-01-14 18:53:14 -08001509 b = reg_pattern_test(adapter, data,
1510 test->reg + (i * 8),
1511 test->mask,
1512 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001513 break;
1514 case TABLE64_TEST_HI:
Mark Rustad49bde312014-01-14 18:53:14 -08001515 b = reg_pattern_test(adapter, data,
1516 (test->reg + 4) + (i * 8),
1517 test->mask,
1518 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001519 break;
1520 }
Mark Rustad49bde312014-01-14 18:53:14 -08001521 if (b)
1522 return 1;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001523 }
1524 test++;
1525 }
1526
1527 *data = 0;
1528 return 0;
1529}
1530
1531static int ixgbe_eeprom_test(struct ixgbe_adapter *adapter, u64 *data)
1532{
1533 struct ixgbe_hw *hw = &adapter->hw;
1534 if (hw->eeprom.ops.validate_checksum(hw, NULL))
1535 *data = 1;
1536 else
1537 *data = 0;
1538 return *data;
1539}
1540
1541static irqreturn_t ixgbe_test_intr(int irq, void *data)
1542{
1543 struct net_device *netdev = (struct net_device *) data;
1544 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1545
1546 adapter->test_icr |= IXGBE_READ_REG(&adapter->hw, IXGBE_EICR);
1547
1548 return IRQ_HANDLED;
1549}
1550
1551static int ixgbe_intr_test(struct ixgbe_adapter *adapter, u64 *data)
1552{
1553 struct net_device *netdev = adapter->netdev;
1554 u32 mask, i = 0, shared_int = true;
1555 u32 irq = adapter->pdev->irq;
1556
1557 *data = 0;
1558
1559 /* Hook up test interrupt handler just for this test */
1560 if (adapter->msix_entries) {
1561 /* NOTE: we don't test MSI-X interrupts here, yet */
1562 return 0;
1563 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
1564 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -08001565 if (request_irq(irq, ixgbe_test_intr, 0, netdev->name,
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001566 netdev)) {
1567 *data = 1;
1568 return -1;
1569 }
Joe Perchesa0607fd2009-11-18 23:29:17 -08001570 } else if (!request_irq(irq, ixgbe_test_intr, IRQF_PROBE_SHARED,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001571 netdev->name, netdev)) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001572 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -08001573 } else if (request_irq(irq, ixgbe_test_intr, IRQF_SHARED,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001574 netdev->name, netdev)) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001575 *data = 1;
1576 return -1;
1577 }
Emil Tantilov396e7992010-07-01 20:05:12 +00001578 e_info(hw, "testing %s interrupt\n", shared_int ?
1579 "shared" : "unshared");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001580
1581 /* Disable all the interrupts */
1582 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001583 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001584 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001585
1586 /* Test each interrupt */
1587 for (; i < 10; i++) {
1588 /* Interrupt to test */
1589 mask = 1 << i;
1590
1591 if (!shared_int) {
1592 /*
1593 * Disable the interrupts to be reported in
1594 * the cause register and then force the same
1595 * interrupt and see if one gets posted. If
1596 * an interrupt was posted to the bus, the
1597 * test failed.
1598 */
1599 adapter->test_icr = 0;
1600 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001601 ~mask & 0x00007FFF);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001602 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001603 ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001604 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001605 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001606
1607 if (adapter->test_icr & mask) {
1608 *data = 3;
1609 break;
1610 }
1611 }
1612
1613 /*
1614 * Enable the interrupt to be reported in the cause
1615 * register and then force the same interrupt and see
1616 * if one gets posted. If an interrupt was not posted
1617 * to the bus, the test failed.
1618 */
1619 adapter->test_icr = 0;
1620 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
1621 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001622 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001623 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001624
Jacob Keller8105ecd2014-04-09 06:03:16 +00001625 if (!(adapter->test_icr & mask)) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001626 *data = 4;
1627 break;
1628 }
1629
1630 if (!shared_int) {
1631 /*
1632 * Disable the other interrupts to be reported in
1633 * the cause register and then force the other
1634 * interrupts and see if any get posted. If
1635 * an interrupt was posted to the bus, the
1636 * test failed.
1637 */
1638 adapter->test_icr = 0;
1639 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001640 ~mask & 0x00007FFF);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001641 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001642 ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001643 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001644 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001645
1646 if (adapter->test_icr) {
1647 *data = 5;
1648 break;
1649 }
1650 }
1651 }
1652
1653 /* Disable all the interrupts */
1654 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001655 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001656 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001657
1658 /* Unhook test interrupt handler */
1659 free_irq(irq, netdev);
1660
1661 return *data;
1662}
1663
1664static void ixgbe_free_desc_rings(struct ixgbe_adapter *adapter)
1665{
1666 struct ixgbe_ring *tx_ring = &adapter->test_tx_ring;
1667 struct ixgbe_ring *rx_ring = &adapter->test_rx_ring;
1668 struct ixgbe_hw *hw = &adapter->hw;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001669 u32 reg_ctl;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001670
1671 /* shut down the DMA engines now so they can be reinitialized later */
1672
1673 /* first Rx */
Don Skidmore1f9ac572015-03-13 13:54:30 -07001674 hw->mac.ops.disable_rx(hw);
Yi Zou2d39d572011-01-06 14:29:56 +00001675 ixgbe_disable_rx_queue(adapter, rx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001676
1677 /* now Tx */
Alexander Duyck84418e32010-08-19 13:40:54 +00001678 reg_ctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(tx_ring->reg_idx));
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001679 reg_ctl &= ~IXGBE_TXDCTL_ENABLE;
Alexander Duyck84418e32010-08-19 13:40:54 +00001680 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(tx_ring->reg_idx), reg_ctl);
1681
Alexander Duyckbd508172010-11-16 19:27:03 -08001682 switch (hw->mac.type) {
1683 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001684 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00001685 case ixgbe_mac_X550:
1686 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07001687 case ixgbe_mac_x550em_a:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001688 reg_ctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1689 reg_ctl &= ~IXGBE_DMATXCTL_TE;
1690 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg_ctl);
Alexander Duyckbd508172010-11-16 19:27:03 -08001691 break;
1692 default:
1693 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001694 }
1695
1696 ixgbe_reset(adapter);
1697
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001698 ixgbe_free_tx_resources(&adapter->test_tx_ring);
1699 ixgbe_free_rx_resources(&adapter->test_rx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001700}
1701
1702static int ixgbe_setup_desc_rings(struct ixgbe_adapter *adapter)
1703{
1704 struct ixgbe_ring *tx_ring = &adapter->test_tx_ring;
1705 struct ixgbe_ring *rx_ring = &adapter->test_rx_ring;
Don Skidmore1f9ac572015-03-13 13:54:30 -07001706 struct ixgbe_hw *hw = &adapter->hw;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001707 u32 rctl, reg_data;
Alexander Duyck84418e32010-08-19 13:40:54 +00001708 int ret_val;
1709 int err;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001710
1711 /* Setup Tx descriptor ring and Tx buffers */
Alexander Duyck84418e32010-08-19 13:40:54 +00001712 tx_ring->count = IXGBE_DEFAULT_TXD;
1713 tx_ring->queue_index = 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001714 tx_ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001715 tx_ring->netdev = adapter->netdev;
Alexander Duyck84418e32010-08-19 13:40:54 +00001716 tx_ring->reg_idx = adapter->tx_ring[0]->reg_idx;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001717
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001718 err = ixgbe_setup_tx_resources(tx_ring);
Alexander Duyck84418e32010-08-19 13:40:54 +00001719 if (err)
1720 return 1;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001721
Alexander Duyckbd508172010-11-16 19:27:03 -08001722 switch (adapter->hw.mac.type) {
1723 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001724 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +00001725 case ixgbe_mac_X550:
1726 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07001727 case ixgbe_mac_x550em_a:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001728 reg_data = IXGBE_READ_REG(&adapter->hw, IXGBE_DMATXCTL);
1729 reg_data |= IXGBE_DMATXCTL_TE;
1730 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DMATXCTL, reg_data);
Alexander Duyckbd508172010-11-16 19:27:03 -08001731 break;
1732 default:
1733 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001734 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001735
Alexander Duyck84418e32010-08-19 13:40:54 +00001736 ixgbe_configure_tx_ring(adapter, tx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001737
1738 /* Setup Rx Descriptor ring and Rx buffers */
Alexander Duyck84418e32010-08-19 13:40:54 +00001739 rx_ring->count = IXGBE_DEFAULT_RXD;
1740 rx_ring->queue_index = 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001741 rx_ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001742 rx_ring->netdev = adapter->netdev;
Alexander Duyck84418e32010-08-19 13:40:54 +00001743 rx_ring->reg_idx = adapter->rx_ring[0]->reg_idx;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001744
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001745 err = ixgbe_setup_rx_resources(rx_ring);
Alexander Duyck84418e32010-08-19 13:40:54 +00001746 if (err) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001747 ret_val = 4;
1748 goto err_nomem;
1749 }
1750
Don Skidmore1f9ac572015-03-13 13:54:30 -07001751 hw->mac.ops.disable_rx(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001752
Alexander Duyck84418e32010-08-19 13:40:54 +00001753 ixgbe_configure_rx_ring(adapter, rx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001754
Don Skidmore1f9ac572015-03-13 13:54:30 -07001755 rctl = IXGBE_READ_REG(&adapter->hw, IXGBE_RXCTRL);
1756 rctl |= IXGBE_RXCTRL_DMBYPS;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001757 IXGBE_WRITE_REG(&adapter->hw, IXGBE_RXCTRL, rctl);
1758
Don Skidmore1f9ac572015-03-13 13:54:30 -07001759 hw->mac.ops.enable_rx(hw);
1760
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001761 return 0;
1762
1763err_nomem:
1764 ixgbe_free_desc_rings(adapter);
1765 return ret_val;
1766}
1767
1768static int ixgbe_setup_loopback_test(struct ixgbe_adapter *adapter)
1769{
1770 struct ixgbe_hw *hw = &adapter->hw;
1771 u32 reg_data;
1772
Don Skidmoree7fd9252011-04-16 05:29:14 +00001773
Alexander Duyck84418e32010-08-19 13:40:54 +00001774 /* Setup MAC loopback */
Emil Tantilov26b47422013-04-12 02:10:25 +00001775 reg_data = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001776 reg_data |= IXGBE_HLREG0_LPBK;
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001777 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, reg_data);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001778
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001779 reg_data = IXGBE_READ_REG(hw, IXGBE_FCTRL);
Alexander Duyck84418e32010-08-19 13:40:54 +00001780 reg_data |= IXGBE_FCTRL_BAM | IXGBE_FCTRL_SBP | IXGBE_FCTRL_MPE;
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001781 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, reg_data);
Alexander Duyck84418e32010-08-19 13:40:54 +00001782
Don Skidmore9a75a1a2014-11-07 03:53:35 +00001783 /* X540 and X550 needs to set the MACC.FLU bit to force link up */
1784 switch (adapter->hw.mac.type) {
1785 case ixgbe_mac_X540:
1786 case ixgbe_mac_X550:
1787 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07001788 case ixgbe_mac_x550em_a:
Emil Tantilov26b47422013-04-12 02:10:25 +00001789 reg_data = IXGBE_READ_REG(hw, IXGBE_MACC);
1790 reg_data |= IXGBE_MACC_FLU;
1791 IXGBE_WRITE_REG(hw, IXGBE_MACC, reg_data);
Don Skidmore9a75a1a2014-11-07 03:53:35 +00001792 break;
1793 default:
Emil Tantilov26b47422013-04-12 02:10:25 +00001794 if (hw->mac.orig_autoc) {
1795 reg_data = hw->mac.orig_autoc | IXGBE_AUTOC_FLU;
1796 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg_data);
1797 } else {
1798 return 10;
1799 }
1800 }
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001801 IXGBE_WRITE_FLUSH(hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001802 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001803
1804 /* Disable Atlas Tx lanes; re-enabled in reset path */
1805 if (hw->mac.type == ixgbe_mac_82598EB) {
1806 u8 atlas;
1807
1808 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &atlas);
1809 atlas |= IXGBE_ATLAS_PDN_TX_REG_EN;
1810 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, atlas);
1811
1812 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G, &atlas);
1813 atlas |= IXGBE_ATLAS_PDN_TX_10G_QL_ALL;
1814 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G, atlas);
1815
1816 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G, &atlas);
1817 atlas |= IXGBE_ATLAS_PDN_TX_1G_QL_ALL;
1818 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G, atlas);
1819
1820 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN, &atlas);
1821 atlas |= IXGBE_ATLAS_PDN_TX_AN_QL_ALL;
1822 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN, atlas);
1823 }
1824
1825 return 0;
1826}
1827
1828static void ixgbe_loopback_cleanup(struct ixgbe_adapter *adapter)
1829{
1830 u32 reg_data;
1831
1832 reg_data = IXGBE_READ_REG(&adapter->hw, IXGBE_HLREG0);
1833 reg_data &= ~IXGBE_HLREG0_LPBK;
1834 IXGBE_WRITE_REG(&adapter->hw, IXGBE_HLREG0, reg_data);
1835}
1836
1837static void ixgbe_create_lbtest_frame(struct sk_buff *skb,
Alexander Duyck3832b262012-02-08 07:50:09 +00001838 unsigned int frame_size)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001839{
1840 memset(skb->data, 0xFF, frame_size);
Alexander Duyck3832b262012-02-08 07:50:09 +00001841 frame_size >>= 1;
1842 memset(&skb->data[frame_size], 0xAA, frame_size / 2 - 1);
1843 memset(&skb->data[frame_size + 10], 0xBE, 1);
1844 memset(&skb->data[frame_size + 12], 0xAF, 1);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001845}
1846
Alexander Duyck3832b262012-02-08 07:50:09 +00001847static bool ixgbe_check_lbtest_frame(struct ixgbe_rx_buffer *rx_buffer,
1848 unsigned int frame_size)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001849{
Alexander Duyck3832b262012-02-08 07:50:09 +00001850 unsigned char *data;
1851 bool match = true;
1852
1853 frame_size >>= 1;
1854
Alexander Duyckf8003262012-03-03 02:35:52 +00001855 data = kmap(rx_buffer->page) + rx_buffer->page_offset;
Alexander Duyck3832b262012-02-08 07:50:09 +00001856
1857 if (data[3] != 0xFF ||
1858 data[frame_size + 10] != 0xBE ||
1859 data[frame_size + 12] != 0xAF)
1860 match = false;
1861
Alexander Duyckf8003262012-03-03 02:35:52 +00001862 kunmap(rx_buffer->page);
1863
Alexander Duyck3832b262012-02-08 07:50:09 +00001864 return match;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001865}
1866
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001867static u16 ixgbe_clean_test_rings(struct ixgbe_ring *rx_ring,
Alexander Duyck3832b262012-02-08 07:50:09 +00001868 struct ixgbe_ring *tx_ring,
1869 unsigned int size)
Alexander Duyck84418e32010-08-19 13:40:54 +00001870{
1871 union ixgbe_adv_rx_desc *rx_desc;
Alexander Duyck3832b262012-02-08 07:50:09 +00001872 struct ixgbe_rx_buffer *rx_buffer;
1873 struct ixgbe_tx_buffer *tx_buffer;
Alexander Duyck84418e32010-08-19 13:40:54 +00001874 u16 rx_ntc, tx_ntc, count = 0;
1875
1876 /* initialize next to clean and descriptor values */
1877 rx_ntc = rx_ring->next_to_clean;
1878 tx_ntc = tx_ring->next_to_clean;
Alexander Duycke4f74022012-01-31 02:59:44 +00001879 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ntc);
Alexander Duyck84418e32010-08-19 13:40:54 +00001880
Alexander Duyck3832b262012-02-08 07:50:09 +00001881 while (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD)) {
Alexander Duyck84418e32010-08-19 13:40:54 +00001882 /* check Rx buffer */
Alexander Duyck3832b262012-02-08 07:50:09 +00001883 rx_buffer = &rx_ring->rx_buffer_info[rx_ntc];
Alexander Duyck84418e32010-08-19 13:40:54 +00001884
Alexander Duyckf8003262012-03-03 02:35:52 +00001885 /* sync Rx buffer for CPU read */
1886 dma_sync_single_for_cpu(rx_ring->dev,
1887 rx_buffer->dma,
1888 ixgbe_rx_bufsz(rx_ring),
1889 DMA_FROM_DEVICE);
Alexander Duyck84418e32010-08-19 13:40:54 +00001890
1891 /* verify contents of skb */
Alexander Duyck3832b262012-02-08 07:50:09 +00001892 if (ixgbe_check_lbtest_frame(rx_buffer, size))
Alexander Duyck84418e32010-08-19 13:40:54 +00001893 count++;
1894
Alexander Duyckf8003262012-03-03 02:35:52 +00001895 /* sync Rx buffer for device write */
1896 dma_sync_single_for_device(rx_ring->dev,
1897 rx_buffer->dma,
1898 ixgbe_rx_bufsz(rx_ring),
1899 DMA_FROM_DEVICE);
1900
Alexander Duyck84418e32010-08-19 13:40:54 +00001901 /* unmap buffer on Tx side */
Alexander Duyck3832b262012-02-08 07:50:09 +00001902 tx_buffer = &tx_ring->tx_buffer_info[tx_ntc];
1903 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
Alexander Duyck84418e32010-08-19 13:40:54 +00001904
1905 /* increment Rx/Tx next to clean counters */
1906 rx_ntc++;
1907 if (rx_ntc == rx_ring->count)
1908 rx_ntc = 0;
1909 tx_ntc++;
1910 if (tx_ntc == tx_ring->count)
1911 tx_ntc = 0;
1912
1913 /* fetch next descriptor */
Alexander Duycke4f74022012-01-31 02:59:44 +00001914 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ntc);
Alexander Duyck84418e32010-08-19 13:40:54 +00001915 }
1916
John Fastabenddad8a3b2012-04-23 12:22:39 +00001917 netdev_tx_reset_queue(txring_txq(tx_ring));
1918
Alexander Duyck84418e32010-08-19 13:40:54 +00001919 /* re-map buffers to ring, store next to clean values */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001920 ixgbe_alloc_rx_buffers(rx_ring, count);
Alexander Duyck84418e32010-08-19 13:40:54 +00001921 rx_ring->next_to_clean = rx_ntc;
1922 tx_ring->next_to_clean = tx_ntc;
1923
1924 return count;
1925}
1926
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001927static int ixgbe_run_loopback_test(struct ixgbe_adapter *adapter)
1928{
1929 struct ixgbe_ring *tx_ring = &adapter->test_tx_ring;
1930 struct ixgbe_ring *rx_ring = &adapter->test_rx_ring;
Alexander Duyck84418e32010-08-19 13:40:54 +00001931 int i, j, lc, good_cnt, ret_val = 0;
1932 unsigned int size = 1024;
1933 netdev_tx_t tx_ret_val;
1934 struct sk_buff *skb;
Emil Tantilov91ffdc82013-07-23 01:56:58 +00001935 u32 flags_orig = adapter->flags;
1936
1937 /* DCB can modify the frames on Tx */
1938 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001939
Alexander Duyck84418e32010-08-19 13:40:54 +00001940 /* allocate test skb */
1941 skb = alloc_skb(size, GFP_KERNEL);
1942 if (!skb)
1943 return 11;
1944
1945 /* place data into test skb */
1946 ixgbe_create_lbtest_frame(skb, size);
1947 skb_put(skb, size);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001948
1949 /*
1950 * Calculate the loop count based on the largest descriptor ring
1951 * The idea is to wrap the largest ring a number of times using 64
1952 * send/receive pairs during each loop
1953 */
1954
1955 if (rx_ring->count <= tx_ring->count)
1956 lc = ((tx_ring->count / 64) * 2) + 1;
1957 else
1958 lc = ((rx_ring->count / 64) * 2) + 1;
1959
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001960 for (j = 0; j <= lc; j++) {
Alexander Duyck84418e32010-08-19 13:40:54 +00001961 /* reset count of good packets */
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001962 good_cnt = 0;
Alexander Duyck84418e32010-08-19 13:40:54 +00001963
1964 /* place 64 packets on the transmit queue*/
1965 for (i = 0; i < 64; i++) {
1966 skb_get(skb);
1967 tx_ret_val = ixgbe_xmit_frame_ring(skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00001968 adapter,
1969 tx_ring);
1970 if (tx_ret_val == NETDEV_TX_OK)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001971 good_cnt++;
Alexander Duyck84418e32010-08-19 13:40:54 +00001972 }
1973
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001974 if (good_cnt != 64) {
Alexander Duyck84418e32010-08-19 13:40:54 +00001975 ret_val = 12;
1976 break;
1977 }
1978
1979 /* allow 200 milliseconds for packets to go from Tx to Rx */
1980 msleep(200);
1981
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001982 good_cnt = ixgbe_clean_test_rings(rx_ring, tx_ring, size);
Alexander Duyck84418e32010-08-19 13:40:54 +00001983 if (good_cnt != 64) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001984 ret_val = 13;
1985 break;
1986 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001987 }
1988
Alexander Duyck84418e32010-08-19 13:40:54 +00001989 /* free the original skb */
1990 kfree_skb(skb);
Emil Tantilov91ffdc82013-07-23 01:56:58 +00001991 adapter->flags = flags_orig;
Alexander Duyck84418e32010-08-19 13:40:54 +00001992
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001993 return ret_val;
1994}
1995
1996static int ixgbe_loopback_test(struct ixgbe_adapter *adapter, u64 *data)
1997{
1998 *data = ixgbe_setup_desc_rings(adapter);
1999 if (*data)
2000 goto out;
2001 *data = ixgbe_setup_loopback_test(adapter);
2002 if (*data)
2003 goto err_loopback;
2004 *data = ixgbe_run_loopback_test(adapter);
2005 ixgbe_loopback_cleanup(adapter);
2006
2007err_loopback:
2008 ixgbe_free_desc_rings(adapter);
2009out:
2010 return *data;
2011}
2012
2013static void ixgbe_diag_test(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002014 struct ethtool_test *eth_test, u64 *data)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002015{
2016 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2017 bool if_running = netif_running(netdev);
2018
Mark Rustadb0483c82014-01-14 18:53:17 -08002019 if (ixgbe_removed(adapter->hw.hw_addr)) {
2020 e_err(hw, "Adapter removed - test blocked\n");
2021 data[0] = 1;
2022 data[1] = 1;
2023 data[2] = 1;
2024 data[3] = 1;
Mark Rustad0edd2bd2014-02-28 15:48:56 -08002025 data[4] = 1;
Mark Rustadb0483c82014-01-14 18:53:17 -08002026 eth_test->flags |= ETH_TEST_FL_FAILED;
2027 return;
2028 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002029 set_bit(__IXGBE_TESTING, &adapter->state);
2030 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Emil Tantilov4ec375b2013-07-10 02:47:24 +00002031 struct ixgbe_hw *hw = &adapter->hw;
2032
Greg Rosee7d481a2010-03-25 17:06:48 +00002033 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2034 int i;
2035 for (i = 0; i < adapter->num_vfs; i++) {
2036 if (adapter->vfinfo[i].clear_to_send) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00002037 netdev_warn(netdev, "offline diagnostic is not supported when VFs are present\n");
Greg Rosee7d481a2010-03-25 17:06:48 +00002038 data[0] = 1;
2039 data[1] = 1;
2040 data[2] = 1;
2041 data[3] = 1;
Mark Rustad0edd2bd2014-02-28 15:48:56 -08002042 data[4] = 1;
Greg Rosee7d481a2010-03-25 17:06:48 +00002043 eth_test->flags |= ETH_TEST_FL_FAILED;
2044 clear_bit(__IXGBE_TESTING,
2045 &adapter->state);
2046 goto skip_ol_tests;
2047 }
2048 }
2049 }
2050
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002051 /* Offline tests */
2052 e_info(hw, "offline testing starting\n");
2053
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002054 /* Link test performed before hardware reset so autoneg doesn't
2055 * interfere with test result
2056 */
2057 if (ixgbe_link_test(adapter, &data[4]))
2058 eth_test->flags |= ETH_TEST_FL_FAILED;
2059
Emil Tantilov4ec375b2013-07-10 02:47:24 +00002060 if (if_running)
2061 /* indicate we're in test mode */
Stefan Assmann6c211fe12016-02-03 09:20:48 +01002062 ixgbe_close(netdev);
Emil Tantilov4ec375b2013-07-10 02:47:24 +00002063 else
2064 ixgbe_reset(adapter);
2065
Emil Tantilov396e7992010-07-01 20:05:12 +00002066 e_info(hw, "register testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002067 if (ixgbe_reg_test(adapter, &data[0]))
2068 eth_test->flags |= ETH_TEST_FL_FAILED;
2069
2070 ixgbe_reset(adapter);
Emil Tantilov396e7992010-07-01 20:05:12 +00002071 e_info(hw, "eeprom testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002072 if (ixgbe_eeprom_test(adapter, &data[1]))
2073 eth_test->flags |= ETH_TEST_FL_FAILED;
2074
2075 ixgbe_reset(adapter);
Emil Tantilov396e7992010-07-01 20:05:12 +00002076 e_info(hw, "interrupt testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002077 if (ixgbe_intr_test(adapter, &data[2]))
2078 eth_test->flags |= ETH_TEST_FL_FAILED;
2079
Greg Rosebdbec4b2010-01-09 02:27:05 +00002080 /* If SRIOV or VMDq is enabled then skip MAC
2081 * loopback diagnostic. */
2082 if (adapter->flags & (IXGBE_FLAG_SRIOV_ENABLED |
2083 IXGBE_FLAG_VMDQ_ENABLED)) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00002084 e_info(hw, "Skip MAC loopback diagnostic in VT mode\n");
Greg Rosebdbec4b2010-01-09 02:27:05 +00002085 data[3] = 0;
2086 goto skip_loopback;
2087 }
2088
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002089 ixgbe_reset(adapter);
Emil Tantilov396e7992010-07-01 20:05:12 +00002090 e_info(hw, "loopback testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002091 if (ixgbe_loopback_test(adapter, &data[3]))
2092 eth_test->flags |= ETH_TEST_FL_FAILED;
2093
Greg Rosebdbec4b2010-01-09 02:27:05 +00002094skip_loopback:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002095 ixgbe_reset(adapter);
2096
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002097 /* clear testing bit and return adapter to previous state */
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002098 clear_bit(__IXGBE_TESTING, &adapter->state);
2099 if (if_running)
Stefan Assmann6c211fe12016-02-03 09:20:48 +01002100 ixgbe_open(netdev);
Emil Tantilov4ec375b2013-07-10 02:47:24 +00002101 else if (hw->mac.ops.disable_tx_laser)
2102 hw->mac.ops.disable_tx_laser(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002103 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00002104 e_info(hw, "online testing starting\n");
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002105
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002106 /* Online tests */
2107 if (ixgbe_link_test(adapter, &data[4]))
2108 eth_test->flags |= ETH_TEST_FL_FAILED;
2109
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002110 /* Offline tests aren't run; pass by default */
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002111 data[0] = 0;
2112 data[1] = 0;
2113 data[2] = 0;
2114 data[3] = 0;
2115
2116 clear_bit(__IXGBE_TESTING, &adapter->state);
2117 }
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002118
Greg Rosee7d481a2010-03-25 17:06:48 +00002119skip_ol_tests:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002120 msleep_interruptible(4 * 1000);
2121}
Auke Kok9a799d72007-09-15 14:07:45 -07002122
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002123static int ixgbe_wol_exclusion(struct ixgbe_adapter *adapter,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002124 struct ethtool_wolinfo *wol)
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002125{
2126 struct ixgbe_hw *hw = &adapter->hw;
Jacob Keller8e2813f2012-04-21 06:05:40 +00002127 int retval = 0;
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002128
Jacob Keller8e2813f2012-04-21 06:05:40 +00002129 /* WOL not supported for all devices */
2130 if (!ixgbe_wol_supported(adapter, hw->device_id,
2131 hw->subsystem_device_id)) {
2132 retval = 1;
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002133 wol->supported = 0;
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002134 }
2135
2136 return retval;
2137}
2138
Auke Kok9a799d72007-09-15 14:07:45 -07002139static void ixgbe_get_wol(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002140 struct ethtool_wolinfo *wol)
Auke Kok9a799d72007-09-15 14:07:45 -07002141{
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002142 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2143
2144 wol->supported = WAKE_UCAST | WAKE_MCAST |
Jacob Kellere7cf7452014-04-09 06:03:10 +00002145 WAKE_BCAST | WAKE_MAGIC;
Auke Kok9a799d72007-09-15 14:07:45 -07002146 wol->wolopts = 0;
2147
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002148 if (ixgbe_wol_exclusion(adapter, wol) ||
2149 !device_can_wakeup(&adapter->pdev->dev))
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002150 return;
2151
2152 if (adapter->wol & IXGBE_WUFC_EX)
2153 wol->wolopts |= WAKE_UCAST;
2154 if (adapter->wol & IXGBE_WUFC_MC)
2155 wol->wolopts |= WAKE_MCAST;
2156 if (adapter->wol & IXGBE_WUFC_BC)
2157 wol->wolopts |= WAKE_BCAST;
2158 if (adapter->wol & IXGBE_WUFC_MAG)
2159 wol->wolopts |= WAKE_MAGIC;
Auke Kok9a799d72007-09-15 14:07:45 -07002160}
2161
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002162static int ixgbe_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2163{
2164 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2165
2166 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
2167 return -EOPNOTSUPP;
2168
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002169 if (ixgbe_wol_exclusion(adapter, wol))
2170 return wol->wolopts ? -EOPNOTSUPP : 0;
2171
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002172 adapter->wol = 0;
2173
2174 if (wol->wolopts & WAKE_UCAST)
2175 adapter->wol |= IXGBE_WUFC_EX;
2176 if (wol->wolopts & WAKE_MCAST)
2177 adapter->wol |= IXGBE_WUFC_MC;
2178 if (wol->wolopts & WAKE_BCAST)
2179 adapter->wol |= IXGBE_WUFC_BC;
2180 if (wol->wolopts & WAKE_MAGIC)
2181 adapter->wol |= IXGBE_WUFC_MAG;
2182
2183 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
2184
2185 return 0;
2186}
2187
Auke Kok9a799d72007-09-15 14:07:45 -07002188static int ixgbe_nway_reset(struct net_device *netdev)
2189{
2190 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2191
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08002192 if (netif_running(netdev))
2193 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002194
2195 return 0;
2196}
2197
Emil Tantilov66e69612011-04-16 06:12:51 +00002198static int ixgbe_set_phys_id(struct net_device *netdev,
2199 enum ethtool_phys_id_state state)
Auke Kok9a799d72007-09-15 14:07:45 -07002200{
2201 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002202 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07002203
Emil Tantilov66e69612011-04-16 06:12:51 +00002204 switch (state) {
2205 case ETHTOOL_ID_ACTIVE:
2206 adapter->led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
2207 return 2;
Auke Kok9a799d72007-09-15 14:07:45 -07002208
Emil Tantilov66e69612011-04-16 06:12:51 +00002209 case ETHTOOL_ID_ON:
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002210 hw->mac.ops.led_on(hw, IXGBE_LED_ON);
Emil Tantilov66e69612011-04-16 06:12:51 +00002211 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002212
Emil Tantilov66e69612011-04-16 06:12:51 +00002213 case ETHTOOL_ID_OFF:
2214 hw->mac.ops.led_off(hw, IXGBE_LED_ON);
2215 break;
2216
2217 case ETHTOOL_ID_INACTIVE:
2218 /* Restore LED settings */
2219 IXGBE_WRITE_REG(&adapter->hw, IXGBE_LEDCTL, adapter->led_reg);
2220 break;
2221 }
Auke Kok9a799d72007-09-15 14:07:45 -07002222
2223 return 0;
2224}
2225
2226static int ixgbe_get_coalesce(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002227 struct ethtool_coalesce *ec)
Auke Kok9a799d72007-09-15 14:07:45 -07002228{
2229 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2230
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002231 /* only valid if in constant ITR mode */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002232 if (adapter->rx_itr_setting <= 1)
2233 ec->rx_coalesce_usecs = adapter->rx_itr_setting;
2234 else
2235 ec->rx_coalesce_usecs = adapter->rx_itr_setting >> 2;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002236
Shannon Nelsoncfb3f912009-11-24 18:51:06 +00002237 /* if in mixed tx/rx queues per vector mode, report only rx settings */
Alexander Duyck08c88332011-06-11 01:45:03 +00002238 if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count)
Shannon Nelsoncfb3f912009-11-24 18:51:06 +00002239 return 0;
2240
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002241 /* only valid if in constant ITR mode */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002242 if (adapter->tx_itr_setting <= 1)
2243 ec->tx_coalesce_usecs = adapter->tx_itr_setting;
2244 else
2245 ec->tx_coalesce_usecs = adapter->tx_itr_setting >> 2;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002246
Auke Kok9a799d72007-09-15 14:07:45 -07002247 return 0;
2248}
2249
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002250/*
2251 * this function must be called before setting the new value of
2252 * rx_itr_setting
2253 */
Alexander Duyck567d2de2012-02-11 07:18:57 +00002254static bool ixgbe_update_rsc(struct ixgbe_adapter *adapter)
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002255{
2256 struct net_device *netdev = adapter->netdev;
2257
Alexander Duyck567d2de2012-02-11 07:18:57 +00002258 /* nothing to do if LRO or RSC are not enabled */
2259 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) ||
2260 !(netdev->features & NETIF_F_LRO))
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002261 return false;
2262
Alexander Duyck567d2de2012-02-11 07:18:57 +00002263 /* check the feature flag value and enable RSC if necessary */
2264 if (adapter->rx_itr_setting == 1 ||
2265 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
2266 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002267 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Jacob Keller6ec1b712014-04-09 06:03:13 +00002268 e_info(probe, "rx-usecs value high enough to re-enable RSC\n");
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002269 return true;
2270 }
Alexander Duyck567d2de2012-02-11 07:18:57 +00002271 /* if interrupt rate is too high then disable RSC */
2272 } else if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
2273 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
2274 e_info(probe, "rx-usecs set too low, disabling RSC\n");
2275 return true;
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002276 }
2277 return false;
2278}
2279
Auke Kok9a799d72007-09-15 14:07:45 -07002280static int ixgbe_set_coalesce(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002281 struct ethtool_coalesce *ec)
Auke Kok9a799d72007-09-15 14:07:45 -07002282{
2283 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Don Skidmore237057a2009-08-11 13:18:14 +00002284 struct ixgbe_q_vector *q_vector;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002285 int i;
Emil Tantilov67da0972013-01-25 06:19:20 +00002286 u16 tx_itr_param, rx_itr_param, tx_itr_prev;
Jesse Brandeburgef021192010-04-27 01:37:41 +00002287 bool need_reset = false;
Auke Kok9a799d72007-09-15 14:07:45 -07002288
Emil Tantilov67da0972013-01-25 06:19:20 +00002289 if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count) {
2290 /* reject Tx specific changes in case of mixed RxTx vectors */
2291 if (ec->tx_coalesce_usecs)
2292 return -EINVAL;
2293 tx_itr_prev = adapter->rx_itr_setting;
2294 } else {
2295 tx_itr_prev = adapter->tx_itr_setting;
2296 }
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002297
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002298 if ((ec->rx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)) ||
2299 (ec->tx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)))
2300 return -EINVAL;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002301
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002302 if (ec->rx_coalesce_usecs > 1)
2303 adapter->rx_itr_setting = ec->rx_coalesce_usecs << 2;
2304 else
2305 adapter->rx_itr_setting = ec->rx_coalesce_usecs;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002306
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002307 if (adapter->rx_itr_setting == 1)
2308 rx_itr_param = IXGBE_20K_ITR;
2309 else
2310 rx_itr_param = adapter->rx_itr_setting;
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002311
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002312 if (ec->tx_coalesce_usecs > 1)
2313 adapter->tx_itr_setting = ec->tx_coalesce_usecs << 2;
2314 else
2315 adapter->tx_itr_setting = ec->tx_coalesce_usecs;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002316
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002317 if (adapter->tx_itr_setting == 1)
Alexander Duyck8ac34f12015-07-30 15:19:28 -07002318 tx_itr_param = IXGBE_12K_ITR;
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002319 else
2320 tx_itr_param = adapter->tx_itr_setting;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002321
Emil Tantilov67da0972013-01-25 06:19:20 +00002322 /* mixed Rx/Tx */
2323 if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count)
2324 adapter->tx_itr_setting = adapter->rx_itr_setting;
2325
Emil Tantilov67da0972013-01-25 06:19:20 +00002326 /* detect ITR changes that require update of TXDCTL.WTHRESH */
Emil Tantilov2e010382013-10-22 08:21:04 +00002327 if ((adapter->tx_itr_setting != 1) &&
Emil Tantilov67da0972013-01-25 06:19:20 +00002328 (adapter->tx_itr_setting < IXGBE_100K_ITR)) {
2329 if ((tx_itr_prev == 1) ||
Emil Tantilov2e010382013-10-22 08:21:04 +00002330 (tx_itr_prev >= IXGBE_100K_ITR))
Emil Tantilov67da0972013-01-25 06:19:20 +00002331 need_reset = true;
2332 } else {
Emil Tantilov2e010382013-10-22 08:21:04 +00002333 if ((tx_itr_prev != 1) &&
Emil Tantilov67da0972013-01-25 06:19:20 +00002334 (tx_itr_prev < IXGBE_100K_ITR))
2335 need_reset = true;
2336 }
Emil Tantilovffefa9f2014-09-18 08:05:02 +00002337
Alexander Duyck567d2de2012-02-11 07:18:57 +00002338 /* check the old value and enable RSC if necessary */
Emil Tantilov67da0972013-01-25 06:19:20 +00002339 need_reset |= ixgbe_update_rsc(adapter);
Alexander Duyck567d2de2012-02-11 07:18:57 +00002340
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002341 for (i = 0; i < adapter->num_q_vectors; i++) {
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002342 q_vector = adapter->q_vector[i];
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002343 if (q_vector->tx.count && !q_vector->rx.count)
2344 /* tx only */
2345 q_vector->itr = tx_itr_param;
2346 else
2347 /* rx only or mixed */
2348 q_vector->itr = rx_itr_param;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002349 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002350 }
2351
Jesse Brandeburgef021192010-04-27 01:37:41 +00002352 /*
2353 * do reset here at the end to make sure EITR==0 case is handled
2354 * correctly w.r.t stopping tx, and changing TXDCTL.WTHRESH settings
2355 * also locks in RSC enable/disable which requires reset
2356 */
Emil Tantilovc988ee82011-05-13 02:22:45 +00002357 if (need_reset)
2358 ixgbe_do_reset(netdev);
Jesse Brandeburgef021192010-04-27 01:37:41 +00002359
Auke Kok9a799d72007-09-15 14:07:45 -07002360 return 0;
2361}
2362
Alexander Duyck3e053342011-05-11 07:18:47 +00002363static int ixgbe_get_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2364 struct ethtool_rxnfc *cmd)
2365{
2366 union ixgbe_atr_input *mask = &adapter->fdir_mask;
2367 struct ethtool_rx_flow_spec *fsp =
2368 (struct ethtool_rx_flow_spec *)&cmd->fs;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002369 struct hlist_node *node2;
Alexander Duyck3e053342011-05-11 07:18:47 +00002370 struct ixgbe_fdir_filter *rule = NULL;
2371
2372 /* report total rule count */
2373 cmd->data = (1024 << adapter->fdir_pballoc) - 2;
2374
Sasha Levinb67bfe02013-02-27 17:06:00 -08002375 hlist_for_each_entry_safe(rule, node2,
Alexander Duyck3e053342011-05-11 07:18:47 +00002376 &adapter->fdir_filter_list, fdir_node) {
2377 if (fsp->location <= rule->sw_idx)
2378 break;
2379 }
2380
2381 if (!rule || fsp->location != rule->sw_idx)
2382 return -EINVAL;
2383
2384 /* fill out the flow spec entry */
2385
2386 /* set flow type field */
2387 switch (rule->filter.formatted.flow_type) {
2388 case IXGBE_ATR_FLOW_TYPE_TCPV4:
2389 fsp->flow_type = TCP_V4_FLOW;
2390 break;
2391 case IXGBE_ATR_FLOW_TYPE_UDPV4:
2392 fsp->flow_type = UDP_V4_FLOW;
2393 break;
2394 case IXGBE_ATR_FLOW_TYPE_SCTPV4:
2395 fsp->flow_type = SCTP_V4_FLOW;
2396 break;
2397 case IXGBE_ATR_FLOW_TYPE_IPV4:
2398 fsp->flow_type = IP_USER_FLOW;
2399 fsp->h_u.usr_ip4_spec.ip_ver = ETH_RX_NFC_IP4;
2400 fsp->h_u.usr_ip4_spec.proto = 0;
2401 fsp->m_u.usr_ip4_spec.proto = 0;
2402 break;
2403 default:
2404 return -EINVAL;
2405 }
2406
2407 fsp->h_u.tcp_ip4_spec.psrc = rule->filter.formatted.src_port;
2408 fsp->m_u.tcp_ip4_spec.psrc = mask->formatted.src_port;
2409 fsp->h_u.tcp_ip4_spec.pdst = rule->filter.formatted.dst_port;
2410 fsp->m_u.tcp_ip4_spec.pdst = mask->formatted.dst_port;
2411 fsp->h_u.tcp_ip4_spec.ip4src = rule->filter.formatted.src_ip[0];
2412 fsp->m_u.tcp_ip4_spec.ip4src = mask->formatted.src_ip[0];
2413 fsp->h_u.tcp_ip4_spec.ip4dst = rule->filter.formatted.dst_ip[0];
2414 fsp->m_u.tcp_ip4_spec.ip4dst = mask->formatted.dst_ip[0];
2415 fsp->h_ext.vlan_tci = rule->filter.formatted.vlan_id;
2416 fsp->m_ext.vlan_tci = mask->formatted.vlan_id;
2417 fsp->h_ext.vlan_etype = rule->filter.formatted.flex_bytes;
2418 fsp->m_ext.vlan_etype = mask->formatted.flex_bytes;
2419 fsp->h_ext.data[1] = htonl(rule->filter.formatted.vm_pool);
2420 fsp->m_ext.data[1] = htonl(mask->formatted.vm_pool);
2421 fsp->flow_type |= FLOW_EXT;
2422
2423 /* record action */
2424 if (rule->action == IXGBE_FDIR_DROP_QUEUE)
2425 fsp->ring_cookie = RX_CLS_FLOW_DISC;
2426 else
2427 fsp->ring_cookie = rule->action;
2428
2429 return 0;
2430}
2431
2432static int ixgbe_get_ethtool_fdir_all(struct ixgbe_adapter *adapter,
2433 struct ethtool_rxnfc *cmd,
2434 u32 *rule_locs)
2435{
Sasha Levinb67bfe02013-02-27 17:06:00 -08002436 struct hlist_node *node2;
Alexander Duyck3e053342011-05-11 07:18:47 +00002437 struct ixgbe_fdir_filter *rule;
2438 int cnt = 0;
2439
2440 /* report total rule count */
2441 cmd->data = (1024 << adapter->fdir_pballoc) - 2;
2442
Sasha Levinb67bfe02013-02-27 17:06:00 -08002443 hlist_for_each_entry_safe(rule, node2,
Alexander Duyck3e053342011-05-11 07:18:47 +00002444 &adapter->fdir_filter_list, fdir_node) {
2445 if (cnt == cmd->rule_cnt)
2446 return -EMSGSIZE;
2447 rule_locs[cnt] = rule->sw_idx;
2448 cnt++;
2449 }
2450
Ben Hutchings473e64e2011-09-06 13:52:47 +00002451 cmd->rule_cnt = cnt;
2452
Alexander Duyck3e053342011-05-11 07:18:47 +00002453 return 0;
2454}
2455
Alexander Duyckef6afc02012-02-08 07:51:53 +00002456static int ixgbe_get_rss_hash_opts(struct ixgbe_adapter *adapter,
2457 struct ethtool_rxnfc *cmd)
2458{
2459 cmd->data = 0;
2460
Alexander Duyckef6afc02012-02-08 07:51:53 +00002461 /* Report default options for RSS on ixgbe */
2462 switch (cmd->flow_type) {
2463 case TCP_V4_FLOW:
2464 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
Jacob Keller3bf23792014-04-09 06:03:17 +00002465 /* fallthrough */
Alexander Duyckef6afc02012-02-08 07:51:53 +00002466 case UDP_V4_FLOW:
2467 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
2468 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
Jacob Keller3bf23792014-04-09 06:03:17 +00002469 /* fallthrough */
Alexander Duyckef6afc02012-02-08 07:51:53 +00002470 case SCTP_V4_FLOW:
2471 case AH_ESP_V4_FLOW:
2472 case AH_V4_FLOW:
2473 case ESP_V4_FLOW:
2474 case IPV4_FLOW:
2475 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
2476 break;
2477 case TCP_V6_FLOW:
2478 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
Jacob Keller3bf23792014-04-09 06:03:17 +00002479 /* fallthrough */
Alexander Duyckef6afc02012-02-08 07:51:53 +00002480 case UDP_V6_FLOW:
2481 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2482 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
Jacob Keller3bf23792014-04-09 06:03:17 +00002483 /* fallthrough */
Alexander Duyckef6afc02012-02-08 07:51:53 +00002484 case SCTP_V6_FLOW:
2485 case AH_ESP_V6_FLOW:
2486 case AH_V6_FLOW:
2487 case ESP_V6_FLOW:
2488 case IPV6_FLOW:
2489 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
2490 break;
2491 default:
2492 return -EINVAL;
2493 }
2494
2495 return 0;
2496}
2497
Alexander Duyck91cd94b2011-05-11 07:18:41 +00002498static int ixgbe_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
Ben Hutchings815c7db2011-09-06 13:49:12 +00002499 u32 *rule_locs)
Alexander Duyck91cd94b2011-05-11 07:18:41 +00002500{
2501 struct ixgbe_adapter *adapter = netdev_priv(dev);
2502 int ret = -EOPNOTSUPP;
2503
2504 switch (cmd->cmd) {
2505 case ETHTOOL_GRXRINGS:
2506 cmd->data = adapter->num_rx_queues;
2507 ret = 0;
2508 break;
Alexander Duyck3e053342011-05-11 07:18:47 +00002509 case ETHTOOL_GRXCLSRLCNT:
2510 cmd->rule_cnt = adapter->fdir_filter_count;
2511 ret = 0;
2512 break;
2513 case ETHTOOL_GRXCLSRULE:
2514 ret = ixgbe_get_ethtool_fdir_entry(adapter, cmd);
2515 break;
2516 case ETHTOOL_GRXCLSRLALL:
Ben Hutchings815c7db2011-09-06 13:49:12 +00002517 ret = ixgbe_get_ethtool_fdir_all(adapter, cmd, rule_locs);
Alexander Duyck3e053342011-05-11 07:18:47 +00002518 break;
Alexander Duyckef6afc02012-02-08 07:51:53 +00002519 case ETHTOOL_GRXFH:
2520 ret = ixgbe_get_rss_hash_opts(adapter, cmd);
2521 break;
Alexander Duyck91cd94b2011-05-11 07:18:41 +00002522 default:
2523 break;
2524 }
2525
2526 return ret;
2527}
2528
John Fastabendb82b17d2016-02-16 21:18:53 -08002529int ixgbe_update_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2530 struct ixgbe_fdir_filter *input,
2531 u16 sw_idx)
Alexander Duycke4911d52011-05-11 07:18:52 +00002532{
2533 struct ixgbe_hw *hw = &adapter->hw;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002534 struct hlist_node *node2;
2535 struct ixgbe_fdir_filter *rule, *parent;
Alexander Duycke4911d52011-05-11 07:18:52 +00002536 int err = -EINVAL;
2537
2538 parent = NULL;
2539 rule = NULL;
2540
Sasha Levinb67bfe02013-02-27 17:06:00 -08002541 hlist_for_each_entry_safe(rule, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00002542 &adapter->fdir_filter_list, fdir_node) {
2543 /* hash found, or no matching entry */
2544 if (rule->sw_idx >= sw_idx)
2545 break;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002546 parent = rule;
Alexander Duycke4911d52011-05-11 07:18:52 +00002547 }
2548
2549 /* if there is an old rule occupying our place remove it */
2550 if (rule && (rule->sw_idx == sw_idx)) {
2551 if (!input || (rule->filter.formatted.bkt_hash !=
2552 input->filter.formatted.bkt_hash)) {
2553 err = ixgbe_fdir_erase_perfect_filter_82599(hw,
2554 &rule->filter,
2555 sw_idx);
2556 }
2557
2558 hlist_del(&rule->fdir_node);
2559 kfree(rule);
2560 adapter->fdir_filter_count--;
2561 }
2562
2563 /*
2564 * If no input this was a delete, err should be 0 if a rule was
2565 * successfully found and removed from the list else -EINVAL
2566 */
2567 if (!input)
2568 return err;
2569
2570 /* initialize node and set software index */
2571 INIT_HLIST_NODE(&input->fdir_node);
2572
2573 /* add filter to the list */
2574 if (parent)
Ken Helias1d023282014-08-06 16:09:16 -07002575 hlist_add_behind(&input->fdir_node, &parent->fdir_node);
Alexander Duycke4911d52011-05-11 07:18:52 +00002576 else
2577 hlist_add_head(&input->fdir_node,
2578 &adapter->fdir_filter_list);
2579
2580 /* update counts */
2581 adapter->fdir_filter_count++;
2582
2583 return 0;
2584}
2585
2586static int ixgbe_flowspec_to_flow_type(struct ethtool_rx_flow_spec *fsp,
2587 u8 *flow_type)
2588{
2589 switch (fsp->flow_type & ~FLOW_EXT) {
2590 case TCP_V4_FLOW:
2591 *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
2592 break;
2593 case UDP_V4_FLOW:
2594 *flow_type = IXGBE_ATR_FLOW_TYPE_UDPV4;
2595 break;
2596 case SCTP_V4_FLOW:
2597 *flow_type = IXGBE_ATR_FLOW_TYPE_SCTPV4;
2598 break;
2599 case IP_USER_FLOW:
2600 switch (fsp->h_u.usr_ip4_spec.proto) {
2601 case IPPROTO_TCP:
2602 *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
2603 break;
2604 case IPPROTO_UDP:
2605 *flow_type = IXGBE_ATR_FLOW_TYPE_UDPV4;
2606 break;
2607 case IPPROTO_SCTP:
2608 *flow_type = IXGBE_ATR_FLOW_TYPE_SCTPV4;
2609 break;
2610 case 0:
2611 if (!fsp->m_u.usr_ip4_spec.proto) {
2612 *flow_type = IXGBE_ATR_FLOW_TYPE_IPV4;
2613 break;
2614 }
2615 default:
2616 return 0;
2617 }
2618 break;
2619 default:
2620 return 0;
2621 }
2622
2623 return 1;
2624}
2625
2626static int ixgbe_add_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2627 struct ethtool_rxnfc *cmd)
2628{
2629 struct ethtool_rx_flow_spec *fsp =
2630 (struct ethtool_rx_flow_spec *)&cmd->fs;
2631 struct ixgbe_hw *hw = &adapter->hw;
2632 struct ixgbe_fdir_filter *input;
2633 union ixgbe_atr_input mask;
John Fastabend7aac8422015-05-26 08:23:33 -07002634 u8 queue;
Alexander Duycke4911d52011-05-11 07:18:52 +00002635 int err;
2636
2637 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
2638 return -EOPNOTSUPP;
2639
John Fastabend7aac8422015-05-26 08:23:33 -07002640 /* ring_cookie is a masked into a set of queues and ixgbe pools or
2641 * we use the drop index.
Alexander Duycke4911d52011-05-11 07:18:52 +00002642 */
John Fastabend7aac8422015-05-26 08:23:33 -07002643 if (fsp->ring_cookie == RX_CLS_FLOW_DISC) {
2644 queue = IXGBE_FDIR_DROP_QUEUE;
2645 } else {
2646 u32 ring = ethtool_get_flow_spec_ring(fsp->ring_cookie);
2647 u8 vf = ethtool_get_flow_spec_ring_vf(fsp->ring_cookie);
2648
2649 if (!vf && (ring >= adapter->num_rx_queues))
2650 return -EINVAL;
2651 else if (vf &&
2652 ((vf > adapter->num_vfs) ||
2653 ring >= adapter->num_rx_queues_per_pool))
2654 return -EINVAL;
2655
2656 /* Map the ring onto the absolute queue index */
2657 if (!vf)
2658 queue = adapter->rx_ring[ring]->reg_idx;
2659 else
2660 queue = ((vf - 1) *
2661 adapter->num_rx_queues_per_pool) + ring;
2662 }
Alexander Duycke4911d52011-05-11 07:18:52 +00002663
2664 /* Don't allow indexes to exist outside of available space */
2665 if (fsp->location >= ((1024 << adapter->fdir_pballoc) - 2)) {
2666 e_err(drv, "Location out of range\n");
2667 return -EINVAL;
2668 }
2669
2670 input = kzalloc(sizeof(*input), GFP_ATOMIC);
2671 if (!input)
2672 return -ENOMEM;
2673
2674 memset(&mask, 0, sizeof(union ixgbe_atr_input));
2675
2676 /* set SW index */
2677 input->sw_idx = fsp->location;
2678
2679 /* record flow type */
2680 if (!ixgbe_flowspec_to_flow_type(fsp,
2681 &input->filter.formatted.flow_type)) {
2682 e_err(drv, "Unrecognized flow type\n");
2683 goto err_out;
2684 }
2685
2686 mask.formatted.flow_type = IXGBE_ATR_L4TYPE_IPV6_MASK |
2687 IXGBE_ATR_L4TYPE_MASK;
2688
2689 if (input->filter.formatted.flow_type == IXGBE_ATR_FLOW_TYPE_IPV4)
2690 mask.formatted.flow_type &= IXGBE_ATR_L4TYPE_IPV6_MASK;
2691
2692 /* Copy input into formatted structures */
2693 input->filter.formatted.src_ip[0] = fsp->h_u.tcp_ip4_spec.ip4src;
2694 mask.formatted.src_ip[0] = fsp->m_u.tcp_ip4_spec.ip4src;
2695 input->filter.formatted.dst_ip[0] = fsp->h_u.tcp_ip4_spec.ip4dst;
2696 mask.formatted.dst_ip[0] = fsp->m_u.tcp_ip4_spec.ip4dst;
2697 input->filter.formatted.src_port = fsp->h_u.tcp_ip4_spec.psrc;
2698 mask.formatted.src_port = fsp->m_u.tcp_ip4_spec.psrc;
2699 input->filter.formatted.dst_port = fsp->h_u.tcp_ip4_spec.pdst;
2700 mask.formatted.dst_port = fsp->m_u.tcp_ip4_spec.pdst;
2701
2702 if (fsp->flow_type & FLOW_EXT) {
2703 input->filter.formatted.vm_pool =
2704 (unsigned char)ntohl(fsp->h_ext.data[1]);
2705 mask.formatted.vm_pool =
2706 (unsigned char)ntohl(fsp->m_ext.data[1]);
2707 input->filter.formatted.vlan_id = fsp->h_ext.vlan_tci;
2708 mask.formatted.vlan_id = fsp->m_ext.vlan_tci;
2709 input->filter.formatted.flex_bytes =
2710 fsp->h_ext.vlan_etype;
2711 mask.formatted.flex_bytes = fsp->m_ext.vlan_etype;
2712 }
2713
2714 /* determine if we need to drop or route the packet */
2715 if (fsp->ring_cookie == RX_CLS_FLOW_DISC)
2716 input->action = IXGBE_FDIR_DROP_QUEUE;
2717 else
2718 input->action = fsp->ring_cookie;
2719
2720 spin_lock(&adapter->fdir_perfect_lock);
2721
2722 if (hlist_empty(&adapter->fdir_filter_list)) {
2723 /* save mask and program input mask into HW */
2724 memcpy(&adapter->fdir_mask, &mask, sizeof(mask));
2725 err = ixgbe_fdir_set_input_mask_82599(hw, &mask);
2726 if (err) {
2727 e_err(drv, "Error writing mask\n");
2728 goto err_out_w_lock;
2729 }
2730 } else if (memcmp(&adapter->fdir_mask, &mask, sizeof(mask))) {
2731 e_err(drv, "Only one mask supported per port\n");
2732 goto err_out_w_lock;
2733 }
2734
2735 /* apply mask and compute/store hash */
2736 ixgbe_atr_compute_perfect_hash_82599(&input->filter, &mask);
2737
2738 /* program filters to filter memory */
2739 err = ixgbe_fdir_write_perfect_filter_82599(hw,
John Fastabend7aac8422015-05-26 08:23:33 -07002740 &input->filter, input->sw_idx, queue);
Alexander Duycke4911d52011-05-11 07:18:52 +00002741 if (err)
2742 goto err_out_w_lock;
2743
2744 ixgbe_update_ethtool_fdir_entry(adapter, input, input->sw_idx);
2745
2746 spin_unlock(&adapter->fdir_perfect_lock);
2747
2748 return err;
2749err_out_w_lock:
2750 spin_unlock(&adapter->fdir_perfect_lock);
2751err_out:
2752 kfree(input);
2753 return -EINVAL;
2754}
2755
2756static int ixgbe_del_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2757 struct ethtool_rxnfc *cmd)
2758{
2759 struct ethtool_rx_flow_spec *fsp =
2760 (struct ethtool_rx_flow_spec *)&cmd->fs;
2761 int err;
2762
2763 spin_lock(&adapter->fdir_perfect_lock);
2764 err = ixgbe_update_ethtool_fdir_entry(adapter, NULL, fsp->location);
2765 spin_unlock(&adapter->fdir_perfect_lock);
2766
2767 return err;
2768}
2769
Alexander Duyckef6afc02012-02-08 07:51:53 +00002770#define UDP_RSS_FLAGS (IXGBE_FLAG2_RSS_FIELD_IPV4_UDP | \
2771 IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2772static int ixgbe_set_rss_hash_opt(struct ixgbe_adapter *adapter,
2773 struct ethtool_rxnfc *nfc)
2774{
2775 u32 flags2 = adapter->flags2;
2776
2777 /*
2778 * RSS does not support anything other than hashing
2779 * to queues on src and dst IPs and ports
2780 */
2781 if (nfc->data & ~(RXH_IP_SRC | RXH_IP_DST |
2782 RXH_L4_B_0_1 | RXH_L4_B_2_3))
2783 return -EINVAL;
2784
2785 switch (nfc->flow_type) {
2786 case TCP_V4_FLOW:
2787 case TCP_V6_FLOW:
2788 if (!(nfc->data & RXH_IP_SRC) ||
2789 !(nfc->data & RXH_IP_DST) ||
2790 !(nfc->data & RXH_L4_B_0_1) ||
2791 !(nfc->data & RXH_L4_B_2_3))
2792 return -EINVAL;
2793 break;
2794 case UDP_V4_FLOW:
2795 if (!(nfc->data & RXH_IP_SRC) ||
2796 !(nfc->data & RXH_IP_DST))
2797 return -EINVAL;
2798 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
2799 case 0:
2800 flags2 &= ~IXGBE_FLAG2_RSS_FIELD_IPV4_UDP;
2801 break;
2802 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
2803 flags2 |= IXGBE_FLAG2_RSS_FIELD_IPV4_UDP;
2804 break;
2805 default:
2806 return -EINVAL;
2807 }
2808 break;
2809 case UDP_V6_FLOW:
2810 if (!(nfc->data & RXH_IP_SRC) ||
2811 !(nfc->data & RXH_IP_DST))
2812 return -EINVAL;
2813 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
2814 case 0:
2815 flags2 &= ~IXGBE_FLAG2_RSS_FIELD_IPV6_UDP;
2816 break;
2817 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
2818 flags2 |= IXGBE_FLAG2_RSS_FIELD_IPV6_UDP;
2819 break;
2820 default:
2821 return -EINVAL;
2822 }
2823 break;
2824 case AH_ESP_V4_FLOW:
2825 case AH_V4_FLOW:
2826 case ESP_V4_FLOW:
2827 case SCTP_V4_FLOW:
2828 case AH_ESP_V6_FLOW:
2829 case AH_V6_FLOW:
2830 case ESP_V6_FLOW:
2831 case SCTP_V6_FLOW:
2832 if (!(nfc->data & RXH_IP_SRC) ||
2833 !(nfc->data & RXH_IP_DST) ||
2834 (nfc->data & RXH_L4_B_0_1) ||
2835 (nfc->data & RXH_L4_B_2_3))
2836 return -EINVAL;
2837 break;
2838 default:
2839 return -EINVAL;
2840 }
2841
2842 /* if we changed something we need to update flags */
2843 if (flags2 != adapter->flags2) {
2844 struct ixgbe_hw *hw = &adapter->hw;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002845 u32 mrqc;
2846 unsigned int pf_pool = adapter->num_vfs;
2847
2848 if ((hw->mac.type >= ixgbe_mac_X550) &&
2849 (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2850 mrqc = IXGBE_READ_REG(hw, IXGBE_PFVFMRQC(pf_pool));
2851 else
2852 mrqc = IXGBE_READ_REG(hw, IXGBE_MRQC);
Alexander Duyckef6afc02012-02-08 07:51:53 +00002853
2854 if ((flags2 & UDP_RSS_FLAGS) &&
2855 !(adapter->flags2 & UDP_RSS_FLAGS))
Jacob Keller6ec1b712014-04-09 06:03:13 +00002856 e_warn(drv, "enabling UDP RSS: fragmented packets may arrive out of order to the stack above\n");
Alexander Duyckef6afc02012-02-08 07:51:53 +00002857
2858 adapter->flags2 = flags2;
2859
2860 /* Perform hash on these packet types */
2861 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2862 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2863 | IXGBE_MRQC_RSS_FIELD_IPV6
2864 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2865
2866 mrqc &= ~(IXGBE_MRQC_RSS_FIELD_IPV4_UDP |
2867 IXGBE_MRQC_RSS_FIELD_IPV6_UDP);
2868
2869 if (flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
2870 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
2871
2872 if (flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2873 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
2874
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002875 if ((hw->mac.type >= ixgbe_mac_X550) &&
2876 (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
2877 IXGBE_WRITE_REG(hw, IXGBE_PFVFMRQC(pf_pool), mrqc);
2878 else
2879 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
Alexander Duyckef6afc02012-02-08 07:51:53 +00002880 }
2881
2882 return 0;
2883}
2884
Alexander Duycke4911d52011-05-11 07:18:52 +00002885static int ixgbe_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
2886{
2887 struct ixgbe_adapter *adapter = netdev_priv(dev);
2888 int ret = -EOPNOTSUPP;
2889
2890 switch (cmd->cmd) {
2891 case ETHTOOL_SRXCLSRLINS:
2892 ret = ixgbe_add_ethtool_fdir_entry(adapter, cmd);
2893 break;
2894 case ETHTOOL_SRXCLSRLDEL:
2895 ret = ixgbe_del_ethtool_fdir_entry(adapter, cmd);
2896 break;
Alexander Duyckef6afc02012-02-08 07:51:53 +00002897 case ETHTOOL_SRXFH:
2898 ret = ixgbe_set_rss_hash_opt(adapter, cmd);
2899 break;
Alexander Duycke4911d52011-05-11 07:18:52 +00002900 default:
2901 break;
2902 }
2903
2904 return ret;
2905}
2906
Tom Barbette1c7cf072015-06-26 15:40:18 +02002907static int ixgbe_rss_indir_tbl_max(struct ixgbe_adapter *adapter)
2908{
2909 if (adapter->hw.mac.type < ixgbe_mac_X550)
2910 return 16;
2911 else
2912 return 64;
2913}
2914
Vlad Zolotarov7f276ef2015-03-30 21:18:58 +03002915static u32 ixgbe_get_rxfh_key_size(struct net_device *netdev)
2916{
2917 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2918
2919 return sizeof(adapter->rss_key);
2920}
2921
2922static u32 ixgbe_rss_indir_size(struct net_device *netdev)
2923{
2924 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2925
2926 return ixgbe_rss_indir_tbl_entries(adapter);
2927}
2928
2929static void ixgbe_get_reta(struct ixgbe_adapter *adapter, u32 *indir)
2930{
2931 int i, reta_size = ixgbe_rss_indir_tbl_entries(adapter);
2932
2933 for (i = 0; i < reta_size; i++)
2934 indir[i] = adapter->rss_indir_tbl[i];
2935}
2936
2937static int ixgbe_get_rxfh(struct net_device *netdev, u32 *indir, u8 *key,
2938 u8 *hfunc)
2939{
2940 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2941
2942 if (hfunc)
2943 *hfunc = ETH_RSS_HASH_TOP;
2944
2945 if (indir)
2946 ixgbe_get_reta(adapter, indir);
2947
2948 if (key)
2949 memcpy(key, adapter->rss_key, ixgbe_get_rxfh_key_size(netdev));
2950
2951 return 0;
2952}
2953
Tom Barbette1c7cf072015-06-26 15:40:18 +02002954static int ixgbe_set_rxfh(struct net_device *netdev, const u32 *indir,
2955 const u8 *key, const u8 hfunc)
2956{
2957 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2958 int i;
2959 u32 reta_entries = ixgbe_rss_indir_tbl_entries(adapter);
2960
2961 if (hfunc)
2962 return -EINVAL;
2963
2964 /* Fill out the redirection table */
2965 if (indir) {
2966 int max_queues = min_t(int, adapter->num_rx_queues,
2967 ixgbe_rss_indir_tbl_max(adapter));
2968
2969 /*Allow at least 2 queues w/ SR-IOV.*/
2970 if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) &&
2971 (max_queues < 2))
2972 max_queues = 2;
2973
2974 /* Verify user input. */
2975 for (i = 0; i < reta_entries; i++)
2976 if (indir[i] >= max_queues)
2977 return -EINVAL;
2978
2979 for (i = 0; i < reta_entries; i++)
2980 adapter->rss_indir_tbl[i] = indir[i];
2981 }
2982
2983 /* Fill out the rss hash key */
2984 if (key)
2985 memcpy(adapter->rss_key, key, ixgbe_get_rxfh_key_size(netdev));
2986
2987 ixgbe_store_reta(adapter);
2988
2989 return 0;
2990}
2991
Jacob Kellere3aac882012-05-04 02:56:12 +00002992static int ixgbe_get_ts_info(struct net_device *dev,
2993 struct ethtool_ts_info *info)
2994{
2995 struct ixgbe_adapter *adapter = netdev_priv(dev);
2996
2997 switch (adapter->hw.mac.type) {
Don Skidmore9a75a1a2014-11-07 03:53:35 +00002998 case ixgbe_mac_X550:
2999 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -07003000 case ixgbe_mac_x550em_a:
Jacob Kellere3aac882012-05-04 02:56:12 +00003001 case ixgbe_mac_X540:
3002 case ixgbe_mac_82599EB:
3003 info->so_timestamping =
Jacob Keller50f8d352012-10-31 22:30:54 +00003004 SOF_TIMESTAMPING_TX_SOFTWARE |
3005 SOF_TIMESTAMPING_RX_SOFTWARE |
3006 SOF_TIMESTAMPING_SOFTWARE |
Jacob Kellere3aac882012-05-04 02:56:12 +00003007 SOF_TIMESTAMPING_TX_HARDWARE |
3008 SOF_TIMESTAMPING_RX_HARDWARE |
3009 SOF_TIMESTAMPING_RAW_HARDWARE;
3010
3011 if (adapter->ptp_clock)
3012 info->phc_index = ptp_clock_index(adapter->ptp_clock);
3013 else
3014 info->phc_index = -1;
3015
3016 info->tx_types =
3017 (1 << HWTSTAMP_TX_OFF) |
3018 (1 << HWTSTAMP_TX_ON);
3019
3020 info->rx_filters =
3021 (1 << HWTSTAMP_FILTER_NONE) |
3022 (1 << HWTSTAMP_FILTER_PTP_V1_L4_SYNC) |
3023 (1 << HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) |
Jacob Keller1cc92eb2012-09-21 07:23:20 +00003024 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
Jacob Kellere3aac882012-05-04 02:56:12 +00003025 break;
Jacob Kellere3aac882012-05-04 02:56:12 +00003026 default:
3027 return ethtool_op_get_ts_info(dev, info);
Jacob Kellere3aac882012-05-04 02:56:12 +00003028 }
3029 return 0;
3030}
3031
Alexander Duyck5348c9d2013-01-12 06:33:52 +00003032static unsigned int ixgbe_max_channels(struct ixgbe_adapter *adapter)
3033{
3034 unsigned int max_combined;
3035 u8 tcs = netdev_get_num_tc(adapter->netdev);
3036
3037 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
3038 /* We only support one q_vector without MSI-X */
3039 max_combined = 1;
3040 } else if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
3041 /* SR-IOV currently only allows one queue on the PF */
3042 max_combined = 1;
3043 } else if (tcs > 1) {
3044 /* For DCB report channels per traffic class */
3045 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
3046 /* 8 TC w/ 4 queues per TC */
3047 max_combined = 4;
3048 } else if (tcs > 4) {
3049 /* 8 TC w/ 8 queues per TC */
3050 max_combined = 8;
3051 } else {
3052 /* 4 TC w/ 16 queues per TC */
3053 max_combined = 16;
3054 }
3055 } else if (adapter->atr_sample_rate) {
3056 /* support up to 64 queues with ATR */
3057 max_combined = IXGBE_MAX_FDIR_INDICES;
3058 } else {
3059 /* support up to 16 queues with RSS */
Don Skidmore0f9b2322014-11-18 09:35:08 +00003060 max_combined = ixgbe_max_rss_indices(adapter);
Alexander Duyck5348c9d2013-01-12 06:33:52 +00003061 }
3062
3063 return max_combined;
3064}
3065
3066static void ixgbe_get_channels(struct net_device *dev,
3067 struct ethtool_channels *ch)
3068{
3069 struct ixgbe_adapter *adapter = netdev_priv(dev);
3070
3071 /* report maximum channels */
3072 ch->max_combined = ixgbe_max_channels(adapter);
3073
3074 /* report info for other vector */
3075 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
3076 ch->max_other = NON_Q_VECTORS;
3077 ch->other_count = NON_Q_VECTORS;
3078 }
3079
3080 /* record RSS queues */
3081 ch->combined_count = adapter->ring_feature[RING_F_RSS].indices;
3082
3083 /* nothing else to report if RSS is disabled */
3084 if (ch->combined_count == 1)
3085 return;
3086
3087 /* we do not support ATR queueing if SR-IOV is enabled */
3088 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
3089 return;
3090
3091 /* same thing goes for being DCB enabled */
3092 if (netdev_get_num_tc(dev) > 1)
3093 return;
3094
3095 /* if ATR is disabled we can exit */
3096 if (!adapter->atr_sample_rate)
3097 return;
3098
3099 /* report flow director queues as maximum channels */
3100 ch->combined_count = adapter->ring_feature[RING_F_FDIR].indices;
3101}
3102
Alexander Duyck4c696ca2013-01-17 08:39:33 +00003103static int ixgbe_set_channels(struct net_device *dev,
3104 struct ethtool_channels *ch)
3105{
3106 struct ixgbe_adapter *adapter = netdev_priv(dev);
3107 unsigned int count = ch->combined_count;
Don Skidmore0f9b2322014-11-18 09:35:08 +00003108 u8 max_rss_indices = ixgbe_max_rss_indices(adapter);
Alexander Duyck4c696ca2013-01-17 08:39:33 +00003109
3110 /* verify they are not requesting separate vectors */
3111 if (!count || ch->rx_count || ch->tx_count)
3112 return -EINVAL;
3113
3114 /* verify other_count has not changed */
3115 if (ch->other_count != NON_Q_VECTORS)
3116 return -EINVAL;
3117
3118 /* verify the number of channels does not exceed hardware limits */
3119 if (count > ixgbe_max_channels(adapter))
3120 return -EINVAL;
3121
3122 /* update feature limits from largest to smallest supported values */
3123 adapter->ring_feature[RING_F_FDIR].limit = count;
3124
Don Skidmore0f9b2322014-11-18 09:35:08 +00003125 /* cap RSS limit */
3126 if (count > max_rss_indices)
3127 count = max_rss_indices;
Alexander Duyck4c696ca2013-01-17 08:39:33 +00003128 adapter->ring_feature[RING_F_RSS].limit = count;
3129
3130#ifdef IXGBE_FCOE
3131 /* cap FCoE limit at 8 */
3132 if (count > IXGBE_FCRETA_SIZE)
3133 count = IXGBE_FCRETA_SIZE;
3134 adapter->ring_feature[RING_F_FCOE].limit = count;
3135
3136#endif
3137 /* use setup TC to update any traffic class queue mapping */
3138 return ixgbe_setup_tc(dev, netdev_get_num_tc(dev));
3139}
3140
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003141static int ixgbe_get_module_info(struct net_device *dev,
3142 struct ethtool_modinfo *modinfo)
3143{
3144 struct ixgbe_adapter *adapter = netdev_priv(dev);
3145 struct ixgbe_hw *hw = &adapter->hw;
Mark Rustada1e869d2015-04-10 10:36:36 -07003146 s32 status;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003147 u8 sff8472_rev, addr_mode;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003148 bool page_swap = false;
3149
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003150 /* Check whether we support SFF-8472 or not */
3151 status = hw->phy.ops.read_i2c_eeprom(hw,
3152 IXGBE_SFF_SFF_8472_COMP,
3153 &sff8472_rev);
Mark Rustada1e869d2015-04-10 10:36:36 -07003154 if (status)
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003155 return -EIO;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003156
3157 /* addressing mode is not supported */
3158 status = hw->phy.ops.read_i2c_eeprom(hw,
3159 IXGBE_SFF_SFF_8472_SWAP,
3160 &addr_mode);
Mark Rustada1e869d2015-04-10 10:36:36 -07003161 if (status)
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003162 return -EIO;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003163
3164 if (addr_mode & IXGBE_SFF_ADDRESSING_MODE) {
3165 e_err(drv, "Address change required to access page 0xA2, but not supported. Please report the module type to the driver maintainers.\n");
3166 page_swap = true;
3167 }
3168
3169 if (sff8472_rev == IXGBE_SFF_SFF_8472_UNSUP || page_swap) {
3170 /* We have a SFP, but it does not support SFF-8472 */
3171 modinfo->type = ETH_MODULE_SFF_8079;
3172 modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN;
3173 } else {
3174 /* We have a SFP which supports a revision of SFF-8472. */
3175 modinfo->type = ETH_MODULE_SFF_8472;
3176 modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN;
3177 }
3178
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003179 return 0;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003180}
3181
3182static int ixgbe_get_module_eeprom(struct net_device *dev,
3183 struct ethtool_eeprom *ee,
3184 u8 *data)
3185{
3186 struct ixgbe_adapter *adapter = netdev_priv(dev);
3187 struct ixgbe_hw *hw = &adapter->hw;
Mark Rustada1e869d2015-04-10 10:36:36 -07003188 s32 status = IXGBE_ERR_PHY_ADDR_INVALID;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003189 u8 databyte = 0xFF;
3190 int i = 0;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003191
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003192 if (ee->len == 0)
3193 return -EINVAL;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003194
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003195 for (i = ee->offset; i < ee->offset + ee->len; i++) {
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003196 /* I2C reads can take long time */
3197 if (test_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
3198 return -EBUSY;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003199
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003200 if (i < ETH_MODULE_SFF_8079_LEN)
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003201 status = hw->phy.ops.read_i2c_eeprom(hw, i, &databyte);
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003202 else
3203 status = hw->phy.ops.read_i2c_sff8472(hw, i, &databyte);
3204
Mark Rustada1e869d2015-04-10 10:36:36 -07003205 if (status)
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003206 return -EIO;
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003207
3208 data[i - ee->offset] = databyte;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003209 }
3210
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003211 return 0;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003212}
3213
Jesse Brandeburgb9804972008-09-11 20:00:29 -07003214static const struct ethtool_ops ixgbe_ethtool_ops = {
Auke Kok9a799d72007-09-15 14:07:45 -07003215 .get_settings = ixgbe_get_settings,
3216 .set_settings = ixgbe_set_settings,
3217 .get_drvinfo = ixgbe_get_drvinfo,
3218 .get_regs_len = ixgbe_get_regs_len,
3219 .get_regs = ixgbe_get_regs,
3220 .get_wol = ixgbe_get_wol,
PJ Waskiewicze63d9762009-03-19 01:23:46 +00003221 .set_wol = ixgbe_set_wol,
Auke Kok9a799d72007-09-15 14:07:45 -07003222 .nway_reset = ixgbe_nway_reset,
3223 .get_link = ethtool_op_get_link,
3224 .get_eeprom_len = ixgbe_get_eeprom_len,
3225 .get_eeprom = ixgbe_get_eeprom,
Emil Tantilov2fa5eef2011-10-06 08:57:04 +00003226 .set_eeprom = ixgbe_set_eeprom,
Auke Kok9a799d72007-09-15 14:07:45 -07003227 .get_ringparam = ixgbe_get_ringparam,
3228 .set_ringparam = ixgbe_set_ringparam,
3229 .get_pauseparam = ixgbe_get_pauseparam,
3230 .set_pauseparam = ixgbe_set_pauseparam,
Auke Kok9a799d72007-09-15 14:07:45 -07003231 .get_msglevel = ixgbe_get_msglevel,
3232 .set_msglevel = ixgbe_set_msglevel,
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003233 .self_test = ixgbe_diag_test,
Auke Kok9a799d72007-09-15 14:07:45 -07003234 .get_strings = ixgbe_get_strings,
Emil Tantilov66e69612011-04-16 06:12:51 +00003235 .set_phys_id = ixgbe_set_phys_id,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07003236 .get_sset_count = ixgbe_get_sset_count,
Auke Kok9a799d72007-09-15 14:07:45 -07003237 .get_ethtool_stats = ixgbe_get_ethtool_stats,
3238 .get_coalesce = ixgbe_get_coalesce,
3239 .set_coalesce = ixgbe_set_coalesce,
Alexander Duyck91cd94b2011-05-11 07:18:41 +00003240 .get_rxnfc = ixgbe_get_rxnfc,
Alexander Duycke4911d52011-05-11 07:18:52 +00003241 .set_rxnfc = ixgbe_set_rxnfc,
Vlad Zolotarov7f276ef2015-03-30 21:18:58 +03003242 .get_rxfh_indir_size = ixgbe_rss_indir_size,
3243 .get_rxfh_key_size = ixgbe_get_rxfh_key_size,
3244 .get_rxfh = ixgbe_get_rxfh,
Tom Barbette1c7cf072015-06-26 15:40:18 +02003245 .set_rxfh = ixgbe_set_rxfh,
Alexander Duyck5348c9d2013-01-12 06:33:52 +00003246 .get_channels = ixgbe_get_channels,
Alexander Duyck4c696ca2013-01-17 08:39:33 +00003247 .set_channels = ixgbe_set_channels,
Jacob Kellere3aac882012-05-04 02:56:12 +00003248 .get_ts_info = ixgbe_get_ts_info,
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003249 .get_module_info = ixgbe_get_module_info,
3250 .get_module_eeprom = ixgbe_get_module_eeprom,
Auke Kok9a799d72007-09-15 14:07:45 -07003251};
3252
3253void ixgbe_set_ethtool_ops(struct net_device *netdev)
3254{
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00003255 netdev->ethtool_ops = &ixgbe_ethtool_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07003256}