blob: e4100b5737b67a3cb862428e120e67d51bd1b7fd [file] [log] [blame]
Auke Kok9a799d72007-09-15 14:07:45 -07001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustad0edd2bd2014-02-28 15:48:56 -08004 Copyright(c) 1999 - 2014 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
Auke Kok9a799d72007-09-15 14:07:45 -0700154static int ixgbe_get_settings(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000155 struct ethtool_cmd *ecmd)
Auke Kok9a799d72007-09-15 14:07:45 -0700156{
157 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800158 struct ixgbe_hw *hw = &adapter->hw;
Jacob Kellerdb018962012-06-08 06:59:17 +0000159 ixgbe_link_speed supported_link;
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800160 u32 link_speed = 0;
Josh Hayfd0326f2012-12-15 03:28:30 +0000161 bool autoneg = false;
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800162 bool link_up;
Auke Kok9a799d72007-09-15 14:07:45 -0700163
Jacob Kellerdb018962012-06-08 06:59:17 +0000164 hw->mac.ops.get_link_capabilities(hw, &supported_link, &autoneg);
Auke Kok9a799d72007-09-15 14:07:45 -0700165
Jacob Kellerdb018962012-06-08 06:59:17 +0000166 /* set the supported link speeds */
167 if (supported_link & IXGBE_LINK_SPEED_10GB_FULL)
168 ecmd->supported |= SUPPORTED_10000baseT_Full;
169 if (supported_link & IXGBE_LINK_SPEED_1GB_FULL)
170 ecmd->supported |= SUPPORTED_1000baseT_Full;
171 if (supported_link & IXGBE_LINK_SPEED_100_FULL)
172 ecmd->supported |= SUPPORTED_100baseT_Full;
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000173
Jacob Kellerdb018962012-06-08 06:59:17 +0000174 /* set the advertised speeds */
175 if (hw->phy.autoneg_advertised) {
176 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_100_FULL)
177 ecmd->advertising |= ADVERTISED_100baseT_Full;
178 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_10GB_FULL)
179 ecmd->advertising |= ADVERTISED_10000baseT_Full;
180 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_1GB_FULL)
181 ecmd->advertising |= ADVERTISED_1000baseT_Full;
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800182 } else {
Jacob Kellerdb018962012-06-08 06:59:17 +0000183 /* default modes in case phy.autoneg_advertised isn't set */
184 if (supported_link & IXGBE_LINK_SPEED_10GB_FULL)
185 ecmd->advertising |= ADVERTISED_10000baseT_Full;
186 if (supported_link & IXGBE_LINK_SPEED_1GB_FULL)
187 ecmd->advertising |= ADVERTISED_1000baseT_Full;
188 if (supported_link & IXGBE_LINK_SPEED_100_FULL)
189 ecmd->advertising |= ADVERTISED_100baseT_Full;
Emil Tantiloved33ff62013-08-30 07:55:24 +0000190
191 if (hw->phy.multispeed_fiber && !autoneg) {
192 if (supported_link & IXGBE_LINK_SPEED_10GB_FULL)
193 ecmd->advertising = ADVERTISED_10000baseT_Full;
194 }
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800195 }
196
Jacob Kellerdb018962012-06-08 06:59:17 +0000197 if (autoneg) {
198 ecmd->supported |= SUPPORTED_Autoneg;
199 ecmd->advertising |= ADVERTISED_Autoneg;
200 ecmd->autoneg = AUTONEG_ENABLE;
201 } else
202 ecmd->autoneg = AUTONEG_DISABLE;
203
204 ecmd->transceiver = XCVR_EXTERNAL;
205
206 /* Determine the remaining settings based on the PHY type. */
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000207 switch (adapter->hw.phy.type) {
208 case ixgbe_phy_tn:
Don Skidmorefe15e8e12010-11-16 19:27:16 -0800209 case ixgbe_phy_aq:
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000210 case ixgbe_phy_cu_unknown:
Jacob Kellerdb018962012-06-08 06:59:17 +0000211 ecmd->supported |= SUPPORTED_TP;
212 ecmd->advertising |= ADVERTISED_TP;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000213 ecmd->port = PORT_TP;
214 break;
215 case ixgbe_phy_qt:
Jacob Kellerdb018962012-06-08 06:59:17 +0000216 ecmd->supported |= SUPPORTED_FIBRE;
217 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000218 ecmd->port = PORT_FIBRE;
219 break;
220 case ixgbe_phy_nl:
Don Skidmoreea0a04d2010-05-18 16:00:13 +0000221 case ixgbe_phy_sfp_passive_tyco:
222 case ixgbe_phy_sfp_passive_unknown:
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000223 case ixgbe_phy_sfp_ftl:
224 case ixgbe_phy_sfp_avago:
225 case ixgbe_phy_sfp_intel:
226 case ixgbe_phy_sfp_unknown:
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000227 /* SFP+ devices, further checking needed */
Jacob Kellerdb018962012-06-08 06:59:17 +0000228 switch (adapter->hw.phy.sfp_type) {
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000229 case ixgbe_sfp_type_da_cu:
230 case ixgbe_sfp_type_da_cu_core0:
231 case ixgbe_sfp_type_da_cu_core1:
Jacob Kellerdb018962012-06-08 06:59:17 +0000232 ecmd->supported |= SUPPORTED_FIBRE;
233 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000234 ecmd->port = PORT_DA;
235 break;
236 case ixgbe_sfp_type_sr:
237 case ixgbe_sfp_type_lr:
238 case ixgbe_sfp_type_srlr_core0:
239 case ixgbe_sfp_type_srlr_core1:
Don Skidmore345be202013-04-11 06:23:34 +0000240 case ixgbe_sfp_type_1g_sx_core0:
241 case ixgbe_sfp_type_1g_sx_core1:
242 case ixgbe_sfp_type_1g_lx_core0:
243 case ixgbe_sfp_type_1g_lx_core1:
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_sfp_type_not_present:
Jacob Kellerdb018962012-06-08 06:59:17 +0000249 ecmd->supported |= SUPPORTED_FIBRE;
250 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000251 ecmd->port = PORT_NONE;
252 break;
Don Skidmorecb836a92010-06-29 18:30:59 +0000253 case ixgbe_sfp_type_1g_cu_core0:
254 case ixgbe_sfp_type_1g_cu_core1:
Jacob Kellerdb018962012-06-08 06:59:17 +0000255 ecmd->supported |= SUPPORTED_TP;
256 ecmd->advertising |= ADVERTISED_TP;
Don Skidmorecb836a92010-06-29 18:30:59 +0000257 ecmd->port = PORT_TP;
Jacob Kellerdb018962012-06-08 06:59:17 +0000258 break;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000259 case ixgbe_sfp_type_unknown:
260 default:
Jacob Kellerdb018962012-06-08 06:59:17 +0000261 ecmd->supported |= SUPPORTED_FIBRE;
262 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000263 ecmd->port = PORT_OTHER;
264 break;
265 }
266 break;
267 case ixgbe_phy_xaui:
Jacob Kellerdb018962012-06-08 06:59:17 +0000268 ecmd->supported |= SUPPORTED_FIBRE;
269 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000270 ecmd->port = PORT_NONE;
271 break;
272 case ixgbe_phy_unknown:
273 case ixgbe_phy_generic:
274 case ixgbe_phy_sfp_unsupported:
275 default:
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_OTHER;
279 break;
280 }
281
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700282 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800283 if (link_up) {
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000284 switch (link_speed) {
285 case IXGBE_LINK_SPEED_10GB_FULL:
David Decotigny70739492011-04-27 18:32:40 +0000286 ethtool_cmd_speed_set(ecmd, SPEED_10000);
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000287 break;
288 case IXGBE_LINK_SPEED_1GB_FULL:
David Decotigny70739492011-04-27 18:32:40 +0000289 ethtool_cmd_speed_set(ecmd, SPEED_1000);
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000290 break;
291 case IXGBE_LINK_SPEED_100_FULL:
David Decotigny70739492011-04-27 18:32:40 +0000292 ethtool_cmd_speed_set(ecmd, SPEED_100);
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000293 break;
294 default:
295 break;
296 }
Auke Kok9a799d72007-09-15 14:07:45 -0700297 ecmd->duplex = DUPLEX_FULL;
298 } else {
Jiri Pirko537fae02014-06-06 14:17:00 +0200299 ethtool_cmd_speed_set(ecmd, SPEED_UNKNOWN);
300 ecmd->duplex = DUPLEX_UNKNOWN;
Auke Kok9a799d72007-09-15 14:07:45 -0700301 }
302
Auke Kok9a799d72007-09-15 14:07:45 -0700303 return 0;
304}
305
306static int ixgbe_set_settings(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000307 struct ethtool_cmd *ecmd)
Auke Kok9a799d72007-09-15 14:07:45 -0700308{
309 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800310 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700311 u32 advertised, old;
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000312 s32 err = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700313
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000314 if ((hw->phy.media_type == ixgbe_media_type_copper) ||
Mallikarjuna R Chilakalaa3801372009-06-30 11:44:16 +0000315 (hw->phy.multispeed_fiber)) {
Emil Tantilovabcc80d2011-07-29 06:46:10 +0000316 /*
317 * this function does not support duplex forcing, but can
318 * limit the advertising of the adapter to the specified speed
319 */
Emil Tantilovabcc80d2011-07-29 06:46:10 +0000320 if (ecmd->advertising & ~ecmd->supported)
321 return -EINVAL;
322
Emil Tantiloved33ff62013-08-30 07:55:24 +0000323 /* only allow one speed at a time if no autoneg */
324 if (!ecmd->autoneg && hw->phy.multispeed_fiber) {
325 if (ecmd->advertising ==
326 (ADVERTISED_10000baseT_Full |
327 ADVERTISED_1000baseT_Full))
328 return -EINVAL;
329 }
330
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700331 old = hw->phy.autoneg_advertised;
332 advertised = 0;
333 if (ecmd->advertising & ADVERTISED_10000baseT_Full)
334 advertised |= IXGBE_LINK_SPEED_10GB_FULL;
335
336 if (ecmd->advertising & ADVERTISED_1000baseT_Full)
337 advertised |= IXGBE_LINK_SPEED_1GB_FULL;
338
Emil Tantilov2b642ca2011-03-04 09:06:10 +0000339 if (ecmd->advertising & ADVERTISED_100baseT_Full)
340 advertised |= IXGBE_LINK_SPEED_100_FULL;
341
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700342 if (old == advertised)
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000343 return err;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700344 /* this sets the link speed and restarts auto-neg */
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000345 hw->mac.autotry_restart = true;
Josh Hayfd0326f2012-12-15 03:28:30 +0000346 err = hw->mac.ops.setup_link(hw, advertised, true);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700347 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000348 e_info(probe, "setup link failed with code %d\n", err);
Josh Hayfd0326f2012-12-15 03:28:30 +0000349 hw->mac.ops.setup_link(hw, old, true);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700350 }
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000351 } else {
352 /* in this case we currently only support 10Gb/FULL */
David Decotigny25db0332011-04-27 18:32:39 +0000353 u32 speed = ethtool_cmd_speed(ecmd);
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000354 if ((ecmd->autoneg == AUTONEG_ENABLE) ||
Mallikarjuna R Chilakalaa3801372009-06-30 11:44:16 +0000355 (ecmd->advertising != ADVERTISED_10000baseT_Full) ||
David Decotigny25db0332011-04-27 18:32:39 +0000356 (speed + ecmd->duplex != SPEED_10000 + DUPLEX_FULL))
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000357 return -EINVAL;
Auke Kok9a799d72007-09-15 14:07:45 -0700358 }
359
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000360 return err;
Auke Kok9a799d72007-09-15 14:07:45 -0700361}
362
363static void ixgbe_get_pauseparam(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000364 struct ethtool_pauseparam *pause)
Auke Kok9a799d72007-09-15 14:07:45 -0700365{
366 struct ixgbe_adapter *adapter = netdev_priv(netdev);
367 struct ixgbe_hw *hw = &adapter->hw;
368
Don Skidmore73d80953d2013-07-31 02:19:24 +0000369 if (ixgbe_device_supports_autoneg_fc(hw) &&
370 !hw->fc.disable_fc_autoneg)
Don Skidmore71fd5702009-03-31 21:35:05 +0000371 pause->autoneg = 1;
Don Skidmore73d80953d2013-07-31 02:19:24 +0000372 else
373 pause->autoneg = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700374
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800375 if (hw->fc.current_mode == ixgbe_fc_rx_pause) {
Auke Kok9a799d72007-09-15 14:07:45 -0700376 pause->rx_pause = 1;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800377 } else if (hw->fc.current_mode == ixgbe_fc_tx_pause) {
Auke Kok9a799d72007-09-15 14:07:45 -0700378 pause->tx_pause = 1;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800379 } else if (hw->fc.current_mode == ixgbe_fc_full) {
Auke Kok9a799d72007-09-15 14:07:45 -0700380 pause->rx_pause = 1;
381 pause->tx_pause = 1;
382 }
383}
384
385static int ixgbe_set_pauseparam(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000386 struct ethtool_pauseparam *pause)
Auke Kok9a799d72007-09-15 14:07:45 -0700387{
388 struct ixgbe_adapter *adapter = netdev_priv(netdev);
389 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck943561d2012-05-09 22:14:44 -0700390 struct ixgbe_fc_info fc = hw->fc;
Auke Kok9a799d72007-09-15 14:07:45 -0700391
Alexander Duyck943561d2012-05-09 22:14:44 -0700392 /* 82598 does no support link flow control with DCB enabled */
393 if ((hw->mac.type == ixgbe_mac_82598EB) &&
394 (adapter->flags & IXGBE_FLAG_DCB_ENABLED))
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +0000395 return -EINVAL;
396
Jacob Kellerdb2adc22012-10-24 07:26:02 +0000397 /* some devices do not support autoneg of link flow control */
398 if ((pause->autoneg == AUTONEG_ENABLE) &&
Don Skidmore73d80953d2013-07-31 02:19:24 +0000399 !ixgbe_device_supports_autoneg_fc(hw))
Jacob Kellerdb2adc22012-10-24 07:26:02 +0000400 return -EINVAL;
401
Alexander Duyck943561d2012-05-09 22:14:44 -0700402 fc.disable_fc_autoneg = (pause->autoneg != AUTONEG_ENABLE);
Don Skidmore71fd5702009-03-31 21:35:05 +0000403
Don Skidmore1c4f0ef2010-04-27 11:31:06 +0000404 if ((pause->rx_pause && pause->tx_pause) || pause->autoneg)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000405 fc.requested_mode = ixgbe_fc_full;
Auke Kok9a799d72007-09-15 14:07:45 -0700406 else if (pause->rx_pause && !pause->tx_pause)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000407 fc.requested_mode = ixgbe_fc_rx_pause;
Auke Kok9a799d72007-09-15 14:07:45 -0700408 else if (!pause->rx_pause && pause->tx_pause)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000409 fc.requested_mode = ixgbe_fc_tx_pause;
Ayyappan Veeraiyan9c83b0702008-02-01 15:58:59 -0800410 else
Alexander Duyck943561d2012-05-09 22:14:44 -0700411 fc.requested_mode = ixgbe_fc_none;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000412
413 /* if the thing changed then we'll update and use new autoneg */
414 if (memcmp(&fc, &hw->fc, sizeof(struct ixgbe_fc_info))) {
415 hw->fc = fc;
416 if (netif_running(netdev))
417 ixgbe_reinit_locked(adapter);
418 else
419 ixgbe_reset(adapter);
420 }
Auke Kok9a799d72007-09-15 14:07:45 -0700421
422 return 0;
423}
424
Auke Kok9a799d72007-09-15 14:07:45 -0700425static u32 ixgbe_get_msglevel(struct net_device *netdev)
426{
427 struct ixgbe_adapter *adapter = netdev_priv(netdev);
428 return adapter->msg_enable;
429}
430
431static void ixgbe_set_msglevel(struct net_device *netdev, u32 data)
432{
433 struct ixgbe_adapter *adapter = netdev_priv(netdev);
434 adapter->msg_enable = data;
435}
436
437static int ixgbe_get_regs_len(struct net_device *netdev)
438{
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700439#define IXGBE_REGS_LEN 1139
Auke Kok9a799d72007-09-15 14:07:45 -0700440 return IXGBE_REGS_LEN * sizeof(u32);
441}
442
443#define IXGBE_GET_STAT(_A_, _R_) _A_->stats._R_
444
445static void ixgbe_get_regs(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000446 struct ethtool_regs *regs, void *p)
Auke Kok9a799d72007-09-15 14:07:45 -0700447{
448 struct ixgbe_adapter *adapter = netdev_priv(netdev);
449 struct ixgbe_hw *hw = &adapter->hw;
450 u32 *regs_buff = p;
451 u8 i;
452
453 memset(p, 0, IXGBE_REGS_LEN * sizeof(u32));
454
Emil Tantilovc4a56de2013-04-19 09:31:17 +0000455 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
456 hw->device_id;
Auke Kok9a799d72007-09-15 14:07:45 -0700457
458 /* General Registers */
459 regs_buff[0] = IXGBE_READ_REG(hw, IXGBE_CTRL);
460 regs_buff[1] = IXGBE_READ_REG(hw, IXGBE_STATUS);
461 regs_buff[2] = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
462 regs_buff[3] = IXGBE_READ_REG(hw, IXGBE_ESDP);
463 regs_buff[4] = IXGBE_READ_REG(hw, IXGBE_EODSDP);
464 regs_buff[5] = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
465 regs_buff[6] = IXGBE_READ_REG(hw, IXGBE_FRTIMER);
466 regs_buff[7] = IXGBE_READ_REG(hw, IXGBE_TCPTIMER);
467
468 /* NVM Register */
469 regs_buff[8] = IXGBE_READ_REG(hw, IXGBE_EEC);
470 regs_buff[9] = IXGBE_READ_REG(hw, IXGBE_EERD);
471 regs_buff[10] = IXGBE_READ_REG(hw, IXGBE_FLA);
472 regs_buff[11] = IXGBE_READ_REG(hw, IXGBE_EEMNGCTL);
473 regs_buff[12] = IXGBE_READ_REG(hw, IXGBE_EEMNGDATA);
474 regs_buff[13] = IXGBE_READ_REG(hw, IXGBE_FLMNGCTL);
475 regs_buff[14] = IXGBE_READ_REG(hw, IXGBE_FLMNGDATA);
476 regs_buff[15] = IXGBE_READ_REG(hw, IXGBE_FLMNGCNT);
477 regs_buff[16] = IXGBE_READ_REG(hw, IXGBE_FLOP);
478 regs_buff[17] = IXGBE_READ_REG(hw, IXGBE_GRC);
479
480 /* Interrupt */
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700481 /* don't read EICR because it can clear interrupt causes, instead
482 * read EICS which is a shadow but doesn't clear EICR */
483 regs_buff[18] = IXGBE_READ_REG(hw, IXGBE_EICS);
Auke Kok9a799d72007-09-15 14:07:45 -0700484 regs_buff[19] = IXGBE_READ_REG(hw, IXGBE_EICS);
485 regs_buff[20] = IXGBE_READ_REG(hw, IXGBE_EIMS);
486 regs_buff[21] = IXGBE_READ_REG(hw, IXGBE_EIMC);
487 regs_buff[22] = IXGBE_READ_REG(hw, IXGBE_EIAC);
488 regs_buff[23] = IXGBE_READ_REG(hw, IXGBE_EIAM);
489 regs_buff[24] = IXGBE_READ_REG(hw, IXGBE_EITR(0));
490 regs_buff[25] = IXGBE_READ_REG(hw, IXGBE_IVAR(0));
491 regs_buff[26] = IXGBE_READ_REG(hw, IXGBE_MSIXT);
492 regs_buff[27] = IXGBE_READ_REG(hw, IXGBE_MSIXPBA);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700493 regs_buff[28] = IXGBE_READ_REG(hw, IXGBE_PBACL(0));
Auke Kok9a799d72007-09-15 14:07:45 -0700494 regs_buff[29] = IXGBE_READ_REG(hw, IXGBE_GPIE);
495
496 /* Flow Control */
497 regs_buff[30] = IXGBE_READ_REG(hw, IXGBE_PFCTOP);
498 regs_buff[31] = IXGBE_READ_REG(hw, IXGBE_FCTTV(0));
499 regs_buff[32] = IXGBE_READ_REG(hw, IXGBE_FCTTV(1));
500 regs_buff[33] = IXGBE_READ_REG(hw, IXGBE_FCTTV(2));
501 regs_buff[34] = IXGBE_READ_REG(hw, IXGBE_FCTTV(3));
Alexander Duyckbd508172010-11-16 19:27:03 -0800502 for (i = 0; i < 8; i++) {
503 switch (hw->mac.type) {
504 case ixgbe_mac_82598EB:
505 regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTL(i));
506 regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTH(i));
507 break;
508 case ixgbe_mac_82599EB:
Emil Tantilov80bb25e2011-07-27 04:16:29 +0000509 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -0800510 regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTL_82599(i));
511 regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
512 break;
513 default:
514 break;
515 }
516 }
Auke Kok9a799d72007-09-15 14:07:45 -0700517 regs_buff[51] = IXGBE_READ_REG(hw, IXGBE_FCRTV);
518 regs_buff[52] = IXGBE_READ_REG(hw, IXGBE_TFCS);
519
520 /* Receive DMA */
521 for (i = 0; i < 64; i++)
522 regs_buff[53 + i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
523 for (i = 0; i < 64; i++)
524 regs_buff[117 + i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
525 for (i = 0; i < 64; i++)
526 regs_buff[181 + i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
527 for (i = 0; i < 64; i++)
528 regs_buff[245 + i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
529 for (i = 0; i < 64; i++)
530 regs_buff[309 + i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
531 for (i = 0; i < 64; i++)
532 regs_buff[373 + i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
533 for (i = 0; i < 16; i++)
534 regs_buff[437 + i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
535 for (i = 0; i < 16; i++)
536 regs_buff[453 + i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
537 regs_buff[469] = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
538 for (i = 0; i < 8; i++)
539 regs_buff[470 + i] = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i));
540 regs_buff[478] = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
541 regs_buff[479] = IXGBE_READ_REG(hw, IXGBE_DROPEN);
542
543 /* Receive */
544 regs_buff[480] = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
545 regs_buff[481] = IXGBE_READ_REG(hw, IXGBE_RFCTL);
546 for (i = 0; i < 16; i++)
547 regs_buff[482 + i] = IXGBE_READ_REG(hw, IXGBE_RAL(i));
548 for (i = 0; i < 16; i++)
549 regs_buff[498 + i] = IXGBE_READ_REG(hw, IXGBE_RAH(i));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700550 regs_buff[514] = IXGBE_READ_REG(hw, IXGBE_PSRTYPE(0));
Auke Kok9a799d72007-09-15 14:07:45 -0700551 regs_buff[515] = IXGBE_READ_REG(hw, IXGBE_FCTRL);
552 regs_buff[516] = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
553 regs_buff[517] = IXGBE_READ_REG(hw, IXGBE_MCSTCTRL);
554 regs_buff[518] = IXGBE_READ_REG(hw, IXGBE_MRQC);
555 regs_buff[519] = IXGBE_READ_REG(hw, IXGBE_VMD_CTL);
556 for (i = 0; i < 8; i++)
557 regs_buff[520 + i] = IXGBE_READ_REG(hw, IXGBE_IMIR(i));
558 for (i = 0; i < 8; i++)
559 regs_buff[528 + i] = IXGBE_READ_REG(hw, IXGBE_IMIREXT(i));
560 regs_buff[536] = IXGBE_READ_REG(hw, IXGBE_IMIRVP);
561
562 /* Transmit */
563 for (i = 0; i < 32; i++)
564 regs_buff[537 + i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
565 for (i = 0; i < 32; i++)
566 regs_buff[569 + i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
567 for (i = 0; i < 32; i++)
568 regs_buff[601 + i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
569 for (i = 0; i < 32; i++)
570 regs_buff[633 + i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
571 for (i = 0; i < 32; i++)
572 regs_buff[665 + i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
573 for (i = 0; i < 32; i++)
574 regs_buff[697 + i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
575 for (i = 0; i < 32; i++)
576 regs_buff[729 + i] = IXGBE_READ_REG(hw, IXGBE_TDWBAL(i));
577 for (i = 0; i < 32; i++)
578 regs_buff[761 + i] = IXGBE_READ_REG(hw, IXGBE_TDWBAH(i));
579 regs_buff[793] = IXGBE_READ_REG(hw, IXGBE_DTXCTL);
580 for (i = 0; i < 16; i++)
581 regs_buff[794 + i] = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(i));
582 regs_buff[810] = IXGBE_READ_REG(hw, IXGBE_TIPG);
583 for (i = 0; i < 8; i++)
584 regs_buff[811 + i] = IXGBE_READ_REG(hw, IXGBE_TXPBSIZE(i));
585 regs_buff[819] = IXGBE_READ_REG(hw, IXGBE_MNGTXMAP);
586
587 /* Wake Up */
588 regs_buff[820] = IXGBE_READ_REG(hw, IXGBE_WUC);
589 regs_buff[821] = IXGBE_READ_REG(hw, IXGBE_WUFC);
590 regs_buff[822] = IXGBE_READ_REG(hw, IXGBE_WUS);
591 regs_buff[823] = IXGBE_READ_REG(hw, IXGBE_IPAV);
592 regs_buff[824] = IXGBE_READ_REG(hw, IXGBE_IP4AT);
593 regs_buff[825] = IXGBE_READ_REG(hw, IXGBE_IP6AT);
594 regs_buff[826] = IXGBE_READ_REG(hw, IXGBE_WUPL);
595 regs_buff[827] = IXGBE_READ_REG(hw, IXGBE_WUPM);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000596 regs_buff[828] = IXGBE_READ_REG(hw, IXGBE_FHFT(0));
Auke Kok9a799d72007-09-15 14:07:45 -0700597
Alexander Duyck673ac602010-11-16 19:27:05 -0800598 /* DCB */
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700599 regs_buff[829] = IXGBE_READ_REG(hw, IXGBE_RMCS); /* same as FCCFG */
600 regs_buff[831] = IXGBE_READ_REG(hw, IXGBE_PDPMCS); /* same as RTTPCS */
601
602 switch (hw->mac.type) {
603 case ixgbe_mac_82598EB:
604 regs_buff[830] = IXGBE_READ_REG(hw, IXGBE_DPMCS);
605 regs_buff[832] = IXGBE_READ_REG(hw, IXGBE_RUPPBMR);
606 for (i = 0; i < 8; i++)
607 regs_buff[833 + i] =
608 IXGBE_READ_REG(hw, IXGBE_RT2CR(i));
609 for (i = 0; i < 8; i++)
610 regs_buff[841 + i] =
611 IXGBE_READ_REG(hw, IXGBE_RT2SR(i));
612 for (i = 0; i < 8; i++)
613 regs_buff[849 + i] =
614 IXGBE_READ_REG(hw, IXGBE_TDTQ2TCCR(i));
615 for (i = 0; i < 8; i++)
616 regs_buff[857 + i] =
617 IXGBE_READ_REG(hw, IXGBE_TDTQ2TCSR(i));
618 break;
619 case ixgbe_mac_82599EB:
620 case ixgbe_mac_X540:
621 regs_buff[830] = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
622 regs_buff[832] = IXGBE_READ_REG(hw, IXGBE_RTRPCS);
623 for (i = 0; i < 8; i++)
624 regs_buff[833 + i] =
625 IXGBE_READ_REG(hw, IXGBE_RTRPT4C(i));
626 for (i = 0; i < 8; i++)
627 regs_buff[841 + i] =
628 IXGBE_READ_REG(hw, IXGBE_RTRPT4S(i));
629 for (i = 0; i < 8; i++)
630 regs_buff[849 + i] =
631 IXGBE_READ_REG(hw, IXGBE_RTTDT2C(i));
632 for (i = 0; i < 8; i++)
633 regs_buff[857 + i] =
634 IXGBE_READ_REG(hw, IXGBE_RTTDT2S(i));
635 break;
636 default:
637 break;
638 }
639
Auke Kok9a799d72007-09-15 14:07:45 -0700640 for (i = 0; i < 8; i++)
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700641 regs_buff[865 + i] =
642 IXGBE_READ_REG(hw, IXGBE_TDPT2TCCR(i)); /* same as RTTPT2C */
Auke Kok9a799d72007-09-15 14:07:45 -0700643 for (i = 0; i < 8; i++)
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700644 regs_buff[873 + i] =
645 IXGBE_READ_REG(hw, IXGBE_TDPT2TCSR(i)); /* same as RTTPT2S */
Auke Kok9a799d72007-09-15 14:07:45 -0700646
647 /* Statistics */
648 regs_buff[881] = IXGBE_GET_STAT(adapter, crcerrs);
649 regs_buff[882] = IXGBE_GET_STAT(adapter, illerrc);
650 regs_buff[883] = IXGBE_GET_STAT(adapter, errbc);
651 regs_buff[884] = IXGBE_GET_STAT(adapter, mspdc);
652 for (i = 0; i < 8; i++)
653 regs_buff[885 + i] = IXGBE_GET_STAT(adapter, mpc[i]);
654 regs_buff[893] = IXGBE_GET_STAT(adapter, mlfc);
655 regs_buff[894] = IXGBE_GET_STAT(adapter, mrfc);
656 regs_buff[895] = IXGBE_GET_STAT(adapter, rlec);
657 regs_buff[896] = IXGBE_GET_STAT(adapter, lxontxc);
658 regs_buff[897] = IXGBE_GET_STAT(adapter, lxonrxc);
659 regs_buff[898] = IXGBE_GET_STAT(adapter, lxofftxc);
660 regs_buff[899] = IXGBE_GET_STAT(adapter, lxoffrxc);
661 for (i = 0; i < 8; i++)
662 regs_buff[900 + i] = IXGBE_GET_STAT(adapter, pxontxc[i]);
663 for (i = 0; i < 8; i++)
664 regs_buff[908 + i] = IXGBE_GET_STAT(adapter, pxonrxc[i]);
665 for (i = 0; i < 8; i++)
666 regs_buff[916 + i] = IXGBE_GET_STAT(adapter, pxofftxc[i]);
667 for (i = 0; i < 8; i++)
668 regs_buff[924 + i] = IXGBE_GET_STAT(adapter, pxoffrxc[i]);
669 regs_buff[932] = IXGBE_GET_STAT(adapter, prc64);
670 regs_buff[933] = IXGBE_GET_STAT(adapter, prc127);
671 regs_buff[934] = IXGBE_GET_STAT(adapter, prc255);
672 regs_buff[935] = IXGBE_GET_STAT(adapter, prc511);
673 regs_buff[936] = IXGBE_GET_STAT(adapter, prc1023);
674 regs_buff[937] = IXGBE_GET_STAT(adapter, prc1522);
675 regs_buff[938] = IXGBE_GET_STAT(adapter, gprc);
676 regs_buff[939] = IXGBE_GET_STAT(adapter, bprc);
677 regs_buff[940] = IXGBE_GET_STAT(adapter, mprc);
678 regs_buff[941] = IXGBE_GET_STAT(adapter, gptc);
679 regs_buff[942] = IXGBE_GET_STAT(adapter, gorc);
680 regs_buff[944] = IXGBE_GET_STAT(adapter, gotc);
681 for (i = 0; i < 8; i++)
682 regs_buff[946 + i] = IXGBE_GET_STAT(adapter, rnbc[i]);
683 regs_buff[954] = IXGBE_GET_STAT(adapter, ruc);
684 regs_buff[955] = IXGBE_GET_STAT(adapter, rfc);
685 regs_buff[956] = IXGBE_GET_STAT(adapter, roc);
686 regs_buff[957] = IXGBE_GET_STAT(adapter, rjc);
687 regs_buff[958] = IXGBE_GET_STAT(adapter, mngprc);
688 regs_buff[959] = IXGBE_GET_STAT(adapter, mngpdc);
689 regs_buff[960] = IXGBE_GET_STAT(adapter, mngptc);
690 regs_buff[961] = IXGBE_GET_STAT(adapter, tor);
691 regs_buff[963] = IXGBE_GET_STAT(adapter, tpr);
692 regs_buff[964] = IXGBE_GET_STAT(adapter, tpt);
693 regs_buff[965] = IXGBE_GET_STAT(adapter, ptc64);
694 regs_buff[966] = IXGBE_GET_STAT(adapter, ptc127);
695 regs_buff[967] = IXGBE_GET_STAT(adapter, ptc255);
696 regs_buff[968] = IXGBE_GET_STAT(adapter, ptc511);
697 regs_buff[969] = IXGBE_GET_STAT(adapter, ptc1023);
698 regs_buff[970] = IXGBE_GET_STAT(adapter, ptc1522);
699 regs_buff[971] = IXGBE_GET_STAT(adapter, mptc);
700 regs_buff[972] = IXGBE_GET_STAT(adapter, bptc);
701 regs_buff[973] = IXGBE_GET_STAT(adapter, xec);
702 for (i = 0; i < 16; i++)
703 regs_buff[974 + i] = IXGBE_GET_STAT(adapter, qprc[i]);
704 for (i = 0; i < 16; i++)
705 regs_buff[990 + i] = IXGBE_GET_STAT(adapter, qptc[i]);
706 for (i = 0; i < 16; i++)
707 regs_buff[1006 + i] = IXGBE_GET_STAT(adapter, qbrc[i]);
708 for (i = 0; i < 16; i++)
709 regs_buff[1022 + i] = IXGBE_GET_STAT(adapter, qbtc[i]);
710
711 /* MAC */
712 regs_buff[1038] = IXGBE_READ_REG(hw, IXGBE_PCS1GCFIG);
713 regs_buff[1039] = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL);
714 regs_buff[1040] = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA);
715 regs_buff[1041] = IXGBE_READ_REG(hw, IXGBE_PCS1GDBG0);
716 regs_buff[1042] = IXGBE_READ_REG(hw, IXGBE_PCS1GDBG1);
717 regs_buff[1043] = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
718 regs_buff[1044] = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP);
719 regs_buff[1045] = IXGBE_READ_REG(hw, IXGBE_PCS1GANNP);
720 regs_buff[1046] = IXGBE_READ_REG(hw, IXGBE_PCS1GANLPNP);
721 regs_buff[1047] = IXGBE_READ_REG(hw, IXGBE_HLREG0);
722 regs_buff[1048] = IXGBE_READ_REG(hw, IXGBE_HLREG1);
723 regs_buff[1049] = IXGBE_READ_REG(hw, IXGBE_PAP);
724 regs_buff[1050] = IXGBE_READ_REG(hw, IXGBE_MACA);
725 regs_buff[1051] = IXGBE_READ_REG(hw, IXGBE_APAE);
726 regs_buff[1052] = IXGBE_READ_REG(hw, IXGBE_ARD);
727 regs_buff[1053] = IXGBE_READ_REG(hw, IXGBE_AIS);
728 regs_buff[1054] = IXGBE_READ_REG(hw, IXGBE_MSCA);
729 regs_buff[1055] = IXGBE_READ_REG(hw, IXGBE_MSRWD);
730 regs_buff[1056] = IXGBE_READ_REG(hw, IXGBE_MLADD);
731 regs_buff[1057] = IXGBE_READ_REG(hw, IXGBE_MHADD);
732 regs_buff[1058] = IXGBE_READ_REG(hw, IXGBE_TREG);
733 regs_buff[1059] = IXGBE_READ_REG(hw, IXGBE_PCSS1);
734 regs_buff[1060] = IXGBE_READ_REG(hw, IXGBE_PCSS2);
735 regs_buff[1061] = IXGBE_READ_REG(hw, IXGBE_XPCSS);
736 regs_buff[1062] = IXGBE_READ_REG(hw, IXGBE_SERDESC);
737 regs_buff[1063] = IXGBE_READ_REG(hw, IXGBE_MACS);
738 regs_buff[1064] = IXGBE_READ_REG(hw, IXGBE_AUTOC);
739 regs_buff[1065] = IXGBE_READ_REG(hw, IXGBE_LINKS);
740 regs_buff[1066] = IXGBE_READ_REG(hw, IXGBE_AUTOC2);
741 regs_buff[1067] = IXGBE_READ_REG(hw, IXGBE_AUTOC3);
742 regs_buff[1068] = IXGBE_READ_REG(hw, IXGBE_ANLP1);
743 regs_buff[1069] = IXGBE_READ_REG(hw, IXGBE_ANLP2);
744 regs_buff[1070] = IXGBE_READ_REG(hw, IXGBE_ATLASCTL);
745
746 /* Diagnostic */
747 regs_buff[1071] = IXGBE_READ_REG(hw, IXGBE_RDSTATCTL);
748 for (i = 0; i < 8; i++)
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700749 regs_buff[1072 + i] = IXGBE_READ_REG(hw, IXGBE_RDSTAT(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700750 regs_buff[1080] = IXGBE_READ_REG(hw, IXGBE_RDHMPN);
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700751 for (i = 0; i < 4; i++)
752 regs_buff[1081 + i] = IXGBE_READ_REG(hw, IXGBE_RIC_DW(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700753 regs_buff[1085] = IXGBE_READ_REG(hw, IXGBE_RDPROBE);
754 regs_buff[1086] = IXGBE_READ_REG(hw, IXGBE_TDSTATCTL);
755 for (i = 0; i < 8; i++)
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700756 regs_buff[1087 + i] = IXGBE_READ_REG(hw, IXGBE_TDSTAT(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700757 regs_buff[1095] = IXGBE_READ_REG(hw, IXGBE_TDHMPN);
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700758 for (i = 0; i < 4; i++)
759 regs_buff[1096 + i] = IXGBE_READ_REG(hw, IXGBE_TIC_DW(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700760 regs_buff[1100] = IXGBE_READ_REG(hw, IXGBE_TDPROBE);
761 regs_buff[1101] = IXGBE_READ_REG(hw, IXGBE_TXBUFCTRL);
762 regs_buff[1102] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA0);
763 regs_buff[1103] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA1);
764 regs_buff[1104] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA2);
765 regs_buff[1105] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA3);
766 regs_buff[1106] = IXGBE_READ_REG(hw, IXGBE_RXBUFCTRL);
767 regs_buff[1107] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA0);
768 regs_buff[1108] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA1);
769 regs_buff[1109] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA2);
770 regs_buff[1110] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA3);
771 for (i = 0; i < 8; i++)
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700772 regs_buff[1111 + i] = IXGBE_READ_REG(hw, IXGBE_PCIE_DIAG(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700773 regs_buff[1119] = IXGBE_READ_REG(hw, IXGBE_RFVAL);
774 regs_buff[1120] = IXGBE_READ_REG(hw, IXGBE_MDFTC1);
775 regs_buff[1121] = IXGBE_READ_REG(hw, IXGBE_MDFTC2);
776 regs_buff[1122] = IXGBE_READ_REG(hw, IXGBE_MDFTFIFO1);
777 regs_buff[1123] = IXGBE_READ_REG(hw, IXGBE_MDFTFIFO2);
778 regs_buff[1124] = IXGBE_READ_REG(hw, IXGBE_MDFTS);
779 regs_buff[1125] = IXGBE_READ_REG(hw, IXGBE_PCIEECCCTL);
780 regs_buff[1126] = IXGBE_READ_REG(hw, IXGBE_PBTXECC);
781 regs_buff[1127] = IXGBE_READ_REG(hw, IXGBE_PBRXECC);
Emil Tantilov217995e2011-09-15 06:23:10 +0000782
783 /* 82599 X540 specific registers */
784 regs_buff[1128] = IXGBE_READ_REG(hw, IXGBE_MFLCN);
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700785
786 /* 82599 X540 specific DCB registers */
787 regs_buff[1129] = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
788 regs_buff[1130] = IXGBE_READ_REG(hw, IXGBE_RTTUP2TC);
789 for (i = 0; i < 4; i++)
790 regs_buff[1131 + i] = IXGBE_READ_REG(hw, IXGBE_TXLLQ(i));
791 regs_buff[1135] = IXGBE_READ_REG(hw, IXGBE_RTTBCNRM);
792 /* same as RTTQCNRM */
793 regs_buff[1136] = IXGBE_READ_REG(hw, IXGBE_RTTBCNRD);
794 /* same as RTTQCNRR */
795
796 /* X540 specific DCB registers */
797 regs_buff[1137] = IXGBE_READ_REG(hw, IXGBE_RTTQCNCR);
798 regs_buff[1138] = IXGBE_READ_REG(hw, IXGBE_RTTQCNTG);
Auke Kok9a799d72007-09-15 14:07:45 -0700799}
800
801static int ixgbe_get_eeprom_len(struct net_device *netdev)
802{
803 struct ixgbe_adapter *adapter = netdev_priv(netdev);
804 return adapter->hw.eeprom.word_size * 2;
805}
806
807static int ixgbe_get_eeprom(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000808 struct ethtool_eeprom *eeprom, u8 *bytes)
Auke Kok9a799d72007-09-15 14:07:45 -0700809{
810 struct ixgbe_adapter *adapter = netdev_priv(netdev);
811 struct ixgbe_hw *hw = &adapter->hw;
812 u16 *eeprom_buff;
813 int first_word, last_word, eeprom_len;
814 int ret_val = 0;
815 u16 i;
816
817 if (eeprom->len == 0)
818 return -EINVAL;
819
820 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
821
822 first_word = eeprom->offset >> 1;
823 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
824 eeprom_len = last_word - first_word + 1;
825
826 eeprom_buff = kmalloc(sizeof(u16) * eeprom_len, GFP_KERNEL);
827 if (!eeprom_buff)
828 return -ENOMEM;
829
Emil Tantilov68c70052011-04-20 08:49:06 +0000830 ret_val = hw->eeprom.ops.read_buffer(hw, first_word, eeprom_len,
831 eeprom_buff);
Auke Kok9a799d72007-09-15 14:07:45 -0700832
833 /* Device's eeprom is always little-endian, word addressable */
834 for (i = 0; i < eeprom_len; i++)
835 le16_to_cpus(&eeprom_buff[i]);
836
837 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
838 kfree(eeprom_buff);
839
840 return ret_val;
841}
842
Emil Tantilov2fa5eef2011-10-06 08:57:04 +0000843static int ixgbe_set_eeprom(struct net_device *netdev,
844 struct ethtool_eeprom *eeprom, u8 *bytes)
845{
846 struct ixgbe_adapter *adapter = netdev_priv(netdev);
847 struct ixgbe_hw *hw = &adapter->hw;
848 u16 *eeprom_buff;
849 void *ptr;
850 int max_len, first_word, last_word, ret_val = 0;
851 u16 i;
852
853 if (eeprom->len == 0)
854 return -EINVAL;
855
856 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
857 return -EINVAL;
858
859 max_len = hw->eeprom.word_size * 2;
860
861 first_word = eeprom->offset >> 1;
862 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
863 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
864 if (!eeprom_buff)
865 return -ENOMEM;
866
867 ptr = eeprom_buff;
868
869 if (eeprom->offset & 1) {
870 /*
871 * need read/modify/write of first changed EEPROM word
872 * only the second byte of the word is being modified
873 */
874 ret_val = hw->eeprom.ops.read(hw, first_word, &eeprom_buff[0]);
875 if (ret_val)
876 goto err;
877
878 ptr++;
879 }
880 if ((eeprom->offset + eeprom->len) & 1) {
881 /*
882 * need read/modify/write of last changed EEPROM word
883 * only the first byte of the word is being modified
884 */
885 ret_val = hw->eeprom.ops.read(hw, last_word,
886 &eeprom_buff[last_word - first_word]);
887 if (ret_val)
888 goto err;
889 }
890
891 /* Device's eeprom is always little-endian, word addressable */
892 for (i = 0; i < last_word - first_word + 1; i++)
893 le16_to_cpus(&eeprom_buff[i]);
894
895 memcpy(ptr, bytes, eeprom->len);
896
897 for (i = 0; i < last_word - first_word + 1; i++)
898 cpu_to_le16s(&eeprom_buff[i]);
899
900 ret_val = hw->eeprom.ops.write_buffer(hw, first_word,
901 last_word - first_word + 1,
902 eeprom_buff);
903
904 /* Update the checksum */
905 if (ret_val == 0)
906 hw->eeprom.ops.update_checksum(hw);
907
908err:
909 kfree(eeprom_buff);
910 return ret_val;
911}
912
Auke Kok9a799d72007-09-15 14:07:45 -0700913static void ixgbe_get_drvinfo(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000914 struct ethtool_drvinfo *drvinfo)
Auke Kok9a799d72007-09-15 14:07:45 -0700915{
916 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Emil Tantilov15e52092011-09-29 05:01:29 +0000917 u32 nvm_track_id;
Auke Kok9a799d72007-09-15 14:07:45 -0700918
Rick Jones612a94d2011-11-14 08:13:25 +0000919 strlcpy(drvinfo->driver, ixgbe_driver_name, sizeof(drvinfo->driver));
920 strlcpy(drvinfo->version, ixgbe_driver_version,
921 sizeof(drvinfo->version));
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -0800922
Emil Tantilov15e52092011-09-29 05:01:29 +0000923 nvm_track_id = (adapter->eeprom_verh << 16) |
924 adapter->eeprom_verl;
Rick Jones612a94d2011-11-14 08:13:25 +0000925 snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), "0x%08x",
Emil Tantilov15e52092011-09-29 05:01:29 +0000926 nvm_track_id);
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -0800927
Rick Jones612a94d2011-11-14 08:13:25 +0000928 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
929 sizeof(drvinfo->bus_info));
Auke Kok9a799d72007-09-15 14:07:45 -0700930 drvinfo->n_stats = IXGBE_STATS_LEN;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +0000931 drvinfo->testinfo_len = IXGBE_TEST_LEN;
Auke Kok9a799d72007-09-15 14:07:45 -0700932 drvinfo->regdump_len = ixgbe_get_regs_len(netdev);
933}
934
935static void ixgbe_get_ringparam(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000936 struct ethtool_ringparam *ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700937{
938 struct ixgbe_adapter *adapter = netdev_priv(netdev);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000939 struct ixgbe_ring *tx_ring = adapter->tx_ring[0];
940 struct ixgbe_ring *rx_ring = adapter->rx_ring[0];
Auke Kok9a799d72007-09-15 14:07:45 -0700941
942 ring->rx_max_pending = IXGBE_MAX_RXD;
943 ring->tx_max_pending = IXGBE_MAX_TXD;
Auke Kok9a799d72007-09-15 14:07:45 -0700944 ring->rx_pending = rx_ring->count;
945 ring->tx_pending = tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -0700946}
947
948static int ixgbe_set_ringparam(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000949 struct ethtool_ringparam *ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700950{
951 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck1f4702a2012-09-12 07:09:51 +0000952 struct ixgbe_ring *temp_ring;
Alexander Duyck759884b2009-10-26 11:32:05 +0000953 int i, err = 0;
Jesse Brandeburgc431f972008-09-11 19:59:16 -0700954 u32 new_rx_count, new_tx_count;
Auke Kok9a799d72007-09-15 14:07:45 -0700955
956 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
957 return -EINVAL;
958
Alexander Duyck1f4702a2012-09-12 07:09:51 +0000959 new_tx_count = clamp_t(u32, ring->tx_pending,
960 IXGBE_MIN_TXD, IXGBE_MAX_TXD);
Auke Kok9a799d72007-09-15 14:07:45 -0700961 new_tx_count = ALIGN(new_tx_count, IXGBE_REQ_TX_DESCRIPTOR_MULTIPLE);
962
Alexander Duyck1f4702a2012-09-12 07:09:51 +0000963 new_rx_count = clamp_t(u32, ring->rx_pending,
964 IXGBE_MIN_RXD, IXGBE_MAX_RXD);
965 new_rx_count = ALIGN(new_rx_count, IXGBE_REQ_RX_DESCRIPTOR_MULTIPLE);
966
967 if ((new_tx_count == adapter->tx_ring_count) &&
968 (new_rx_count == adapter->rx_ring_count)) {
Auke Kok9a799d72007-09-15 14:07:45 -0700969 /* nothing to do */
970 return 0;
971 }
972
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -0800973 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +0000974 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -0800975
Alexander Duyck759884b2009-10-26 11:32:05 +0000976 if (!netif_running(adapter->netdev)) {
977 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000978 adapter->tx_ring[i]->count = new_tx_count;
Alexander Duyck759884b2009-10-26 11:32:05 +0000979 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000980 adapter->rx_ring[i]->count = new_rx_count;
Alexander Duyck759884b2009-10-26 11:32:05 +0000981 adapter->tx_ring_count = new_tx_count;
982 adapter->rx_ring_count = new_rx_count;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000983 goto clear_reset;
Alexander Duyck759884b2009-10-26 11:32:05 +0000984 }
985
Alexander Duyck1f4702a2012-09-12 07:09:51 +0000986 /* allocate temporary buffer to store rings in */
987 i = max_t(int, adapter->num_tx_queues, adapter->num_rx_queues);
988 temp_ring = vmalloc(i * sizeof(struct ixgbe_ring));
989
990 if (!temp_ring) {
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +0000991 err = -ENOMEM;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000992 goto clear_reset;
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +0000993 }
994
Alexander Duyck1f4702a2012-09-12 07:09:51 +0000995 ixgbe_down(adapter);
996
997 /*
998 * Setup new Tx resources and free the old Tx resources in that order.
999 * We can then assign the new resources to the rings via a memcpy.
1000 * The advantage to this approach is that we are guaranteed to still
1001 * have resources even in the case of an allocation failure.
1002 */
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001003 if (new_tx_count != adapter->tx_ring_count) {
Auke Kok9a799d72007-09-15 14:07:45 -07001004 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001005 memcpy(&temp_ring[i], adapter->tx_ring[i],
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001006 sizeof(struct ixgbe_ring));
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001007
1008 temp_ring[i].count = new_tx_count;
1009 err = ixgbe_setup_tx_resources(&temp_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07001010 if (err) {
Jesse Brandeburgc431f972008-09-11 19:59:16 -07001011 while (i) {
1012 i--;
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001013 ixgbe_free_tx_resources(&temp_ring[i]);
Jesse Brandeburgc431f972008-09-11 19:59:16 -07001014 }
Auke Kok9a799d72007-09-15 14:07:45 -07001015 goto err_setup;
1016 }
Auke Kok9a799d72007-09-15 14:07:45 -07001017 }
Jesse Brandeburgc431f972008-09-11 19:59:16 -07001018
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001019 for (i = 0; i < adapter->num_tx_queues; i++) {
1020 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001021
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001022 memcpy(adapter->tx_ring[i], &temp_ring[i],
1023 sizeof(struct ixgbe_ring));
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001024 }
1025
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001026 adapter->tx_ring_count = new_tx_count;
Alexander Duyck759884b2009-10-26 11:32:05 +00001027 }
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001028
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001029 /* Repeat the process for the Rx rings if needed */
1030 if (new_rx_count != adapter->rx_ring_count) {
1031 for (i = 0; i < adapter->num_rx_queues; i++) {
1032 memcpy(&temp_ring[i], adapter->rx_ring[i],
1033 sizeof(struct ixgbe_ring));
1034
1035 temp_ring[i].count = new_rx_count;
1036 err = ixgbe_setup_rx_resources(&temp_ring[i]);
1037 if (err) {
1038 while (i) {
1039 i--;
1040 ixgbe_free_rx_resources(&temp_ring[i]);
1041 }
1042 goto err_setup;
1043 }
1044
1045 }
1046
1047 for (i = 0; i < adapter->num_rx_queues; i++) {
1048 ixgbe_free_rx_resources(adapter->rx_ring[i]);
1049
1050 memcpy(adapter->rx_ring[i], &temp_ring[i],
1051 sizeof(struct ixgbe_ring));
1052 }
1053
1054 adapter->rx_ring_count = new_rx_count;
1055 }
1056
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001057err_setup:
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001058 ixgbe_up(adapter);
1059 vfree(temp_ring);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001060clear_reset:
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001061 clear_bit(__IXGBE_RESETTING, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07001062 return err;
1063}
1064
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001065static int ixgbe_get_sset_count(struct net_device *netdev, int sset)
Auke Kok9a799d72007-09-15 14:07:45 -07001066{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001067 switch (sset) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001068 case ETH_SS_TEST:
1069 return IXGBE_TEST_LEN;
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001070 case ETH_SS_STATS:
1071 return IXGBE_STATS_LEN;
1072 default:
1073 return -EOPNOTSUPP;
1074 }
Auke Kok9a799d72007-09-15 14:07:45 -07001075}
1076
1077static void ixgbe_get_ethtool_stats(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001078 struct ethtool_stats *stats, u64 *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001079{
1080 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Eric Dumazet28172732010-07-07 14:58:56 -07001081 struct rtnl_link_stats64 temp;
1082 const struct rtnl_link_stats64 *net_stats;
Eric Dumazetde1036b2010-10-20 23:00:04 +00001083 unsigned int start;
1084 struct ixgbe_ring *ring;
1085 int i, j;
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001086 char *p = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001087
1088 ixgbe_update_stats(adapter);
Eric Dumazet28172732010-07-07 14:58:56 -07001089 net_stats = dev_get_stats(netdev, &temp);
Auke Kok9a799d72007-09-15 14:07:45 -07001090 for (i = 0; i < IXGBE_GLOBAL_STATS_LEN; i++) {
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001091 switch (ixgbe_gstrings_stats[i].type) {
1092 case NETDEV_STATS:
Eric Dumazet28172732010-07-07 14:58:56 -07001093 p = (char *) net_stats +
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001094 ixgbe_gstrings_stats[i].stat_offset;
1095 break;
1096 case IXGBE_STATS:
1097 p = (char *) adapter +
1098 ixgbe_gstrings_stats[i].stat_offset;
1099 break;
Josh Hayf752be92013-01-04 03:34:36 +00001100 default:
1101 data[i] = 0;
1102 continue;
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001103 }
1104
Auke Kok9a799d72007-09-15 14:07:45 -07001105 data[i] = (ixgbe_gstrings_stats[i].sizeof_stat ==
Jacob Kellere7cf7452014-04-09 06:03:10 +00001106 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
Auke Kok9a799d72007-09-15 14:07:45 -07001107 }
Don Skidmorebd8a1b12013-06-28 05:35:50 +00001108 for (j = 0; j < netdev->num_tx_queues; j++) {
Eric Dumazetde1036b2010-10-20 23:00:04 +00001109 ring = adapter->tx_ring[j];
John Fastabend9cc00b52012-01-28 03:32:17 +00001110 if (!ring) {
1111 data[i] = 0;
1112 data[i+1] = 0;
1113 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001114#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001115 data[i] = 0;
1116 data[i+1] = 0;
1117 data[i+2] = 0;
1118 i += 3;
1119#endif
John Fastabend9cc00b52012-01-28 03:32:17 +00001120 continue;
1121 }
1122
Eric Dumazetde1036b2010-10-20 23:00:04 +00001123 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001124 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazetde1036b2010-10-20 23:00:04 +00001125 data[i] = ring->stats.packets;
1126 data[i+1] = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001127 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazetde1036b2010-10-20 23:00:04 +00001128 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001129#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001130 data[i] = ring->stats.yields;
1131 data[i+1] = ring->stats.misses;
1132 data[i+2] = ring->stats.cleaned;
1133 i += 3;
1134#endif
Auke Kok9a799d72007-09-15 14:07:45 -07001135 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001136 for (j = 0; j < IXGBE_NUM_RX_QUEUES; j++) {
Eric Dumazetde1036b2010-10-20 23:00:04 +00001137 ring = adapter->rx_ring[j];
John Fastabend9cc00b52012-01-28 03:32:17 +00001138 if (!ring) {
1139 data[i] = 0;
1140 data[i+1] = 0;
1141 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001142#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001143 data[i] = 0;
1144 data[i+1] = 0;
1145 data[i+2] = 0;
1146 i += 3;
1147#endif
John Fastabend9cc00b52012-01-28 03:32:17 +00001148 continue;
1149 }
1150
Eric Dumazetde1036b2010-10-20 23:00:04 +00001151 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001152 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazetde1036b2010-10-20 23:00:04 +00001153 data[i] = ring->stats.packets;
1154 data[i+1] = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001155 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazetde1036b2010-10-20 23:00:04 +00001156 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001157#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001158 data[i] = ring->stats.yields;
1159 data[i+1] = ring->stats.misses;
1160 data[i+2] = ring->stats.cleaned;
1161 i += 3;
1162#endif
Auke Kok9a799d72007-09-15 14:07:45 -07001163 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001164
1165 for (j = 0; j < IXGBE_MAX_PACKET_BUFFERS; j++) {
1166 data[i++] = adapter->stats.pxontxc[j];
1167 data[i++] = adapter->stats.pxofftxc[j];
1168 }
1169 for (j = 0; j < IXGBE_MAX_PACKET_BUFFERS; j++) {
1170 data[i++] = adapter->stats.pxonrxc[j];
1171 data[i++] = adapter->stats.pxoffrxc[j];
Alexander Duyck2f90b862008-11-20 20:52:10 -08001172 }
Auke Kok9a799d72007-09-15 14:07:45 -07001173}
1174
1175static void ixgbe_get_strings(struct net_device *netdev, u32 stringset,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001176 u8 *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001177{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001178 char *p = (char *)data;
Auke Kok9a799d72007-09-15 14:07:45 -07001179 int i;
1180
1181 switch (stringset) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001182 case ETH_SS_TEST:
Josh Hayd2c47b62013-01-04 03:34:42 +00001183 for (i = 0; i < IXGBE_TEST_LEN; i++) {
1184 memcpy(data, ixgbe_gstrings_test[i], ETH_GSTRING_LEN);
1185 data += ETH_GSTRING_LEN;
1186 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001187 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001188 case ETH_SS_STATS:
1189 for (i = 0; i < IXGBE_GLOBAL_STATS_LEN; i++) {
1190 memcpy(p, ixgbe_gstrings_stats[i].stat_string,
1191 ETH_GSTRING_LEN);
1192 p += ETH_GSTRING_LEN;
1193 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001194 for (i = 0; i < netdev->num_tx_queues; i++) {
Auke Kok9a799d72007-09-15 14:07:45 -07001195 sprintf(p, "tx_queue_%u_packets", i);
1196 p += ETH_GSTRING_LEN;
1197 sprintf(p, "tx_queue_%u_bytes", i);
1198 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001199#ifdef BP_EXTENDED_STATS
1200 sprintf(p, "tx_queue_%u_bp_napi_yield", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001201 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001202 sprintf(p, "tx_queue_%u_bp_misses", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001203 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001204 sprintf(p, "tx_queue_%u_bp_cleaned", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001205 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001206#endif /* BP_EXTENDED_STATS */
Auke Kok9a799d72007-09-15 14:07:45 -07001207 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001208 for (i = 0; i < IXGBE_NUM_RX_QUEUES; i++) {
Auke Kok9a799d72007-09-15 14:07:45 -07001209 sprintf(p, "rx_queue_%u_packets", i);
1210 p += ETH_GSTRING_LEN;
1211 sprintf(p, "rx_queue_%u_bytes", i);
1212 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001213#ifdef BP_EXTENDED_STATS
1214 sprintf(p, "rx_queue_%u_bp_poll_yield", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001215 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001216 sprintf(p, "rx_queue_%u_bp_misses", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001217 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001218 sprintf(p, "rx_queue_%u_bp_cleaned", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001219 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001220#endif /* BP_EXTENDED_STATS */
Auke Kok9a799d72007-09-15 14:07:45 -07001221 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001222 for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++) {
1223 sprintf(p, "tx_pb_%u_pxon", i);
1224 p += ETH_GSTRING_LEN;
1225 sprintf(p, "tx_pb_%u_pxoff", i);
1226 p += ETH_GSTRING_LEN;
1227 }
1228 for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++) {
1229 sprintf(p, "rx_pb_%u_pxon", i);
1230 p += ETH_GSTRING_LEN;
1231 sprintf(p, "rx_pb_%u_pxoff", i);
1232 p += ETH_GSTRING_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08001233 }
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001234 /* BUG_ON(p - data != IXGBE_STATS_LEN * ETH_GSTRING_LEN); */
Auke Kok9a799d72007-09-15 14:07:45 -07001235 break;
1236 }
1237}
1238
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001239static int ixgbe_link_test(struct ixgbe_adapter *adapter, u64 *data)
1240{
1241 struct ixgbe_hw *hw = &adapter->hw;
1242 bool link_up;
1243 u32 link_speed = 0;
Mark Rustad0edd2bd2014-02-28 15:48:56 -08001244
1245 if (ixgbe_removed(hw->hw_addr)) {
1246 *data = 1;
1247 return 1;
1248 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001249 *data = 0;
1250
1251 hw->mac.ops.check_link(hw, &link_speed, &link_up, true);
1252 if (link_up)
1253 return *data;
1254 else
1255 *data = 1;
1256 return *data;
1257}
1258
1259/* ethtool register test data */
1260struct ixgbe_reg_test {
1261 u16 reg;
1262 u8 array_len;
1263 u8 test_type;
1264 u32 mask;
1265 u32 write;
1266};
1267
1268/* In the hardware, registers are laid out either singly, in arrays
1269 * spaced 0x40 bytes apart, or in contiguous tables. We assume
1270 * most tests take place on arrays or single registers (handled
1271 * as a single-element array) and special-case the tables.
1272 * Table tests are always pattern tests.
1273 *
1274 * We also make provision for some required setup steps by specifying
1275 * registers to be written without any read-back testing.
1276 */
1277
1278#define PATTERN_TEST 1
1279#define SET_READ_TEST 2
1280#define WRITE_NO_TEST 3
1281#define TABLE32_TEST 4
1282#define TABLE64_TEST_LO 5
1283#define TABLE64_TEST_HI 6
1284
1285/* default 82599 register test */
Jeff Kirsher66744502010-12-01 19:59:50 +00001286static const struct ixgbe_reg_test reg_test_82599[] = {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001287 { IXGBE_FCRTL_82599(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1288 { IXGBE_FCRTH_82599(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1289 { IXGBE_PFCTOP, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1290 { IXGBE_VLNCTRL, 1, PATTERN_TEST, 0x00000000, 0x00000000 },
1291 { IXGBE_RDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFF80 },
1292 { IXGBE_RDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1293 { IXGBE_RDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF },
1294 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE },
1295 { IXGBE_RDT(0), 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF },
1296 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, 0 },
1297 { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1298 { IXGBE_FCTTV(0), 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1299 { IXGBE_TDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF },
1300 { IXGBE_TDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1301 { IXGBE_TDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFF80 },
1302 { IXGBE_RXCTRL, 1, SET_READ_TEST, 0x00000001, 0x00000001 },
1303 { IXGBE_RAL(0), 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF },
1304 { IXGBE_RAL(0), 16, TABLE64_TEST_HI, 0x8001FFFF, 0x800CFFFF },
1305 { IXGBE_MTA(0), 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1306 { 0, 0, 0, 0 }
1307};
1308
1309/* default 82598 register test */
Jeff Kirsher66744502010-12-01 19:59:50 +00001310static const struct ixgbe_reg_test reg_test_82598[] = {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001311 { IXGBE_FCRTL(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1312 { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1313 { IXGBE_PFCTOP, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1314 { IXGBE_VLNCTRL, 1, PATTERN_TEST, 0x00000000, 0x00000000 },
1315 { IXGBE_RDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF },
1316 { IXGBE_RDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1317 { IXGBE_RDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF },
1318 /* Enable all four RX queues before testing. */
1319 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE },
1320 /* RDH is read-only for 82598, only test RDT. */
1321 { IXGBE_RDT(0), 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF },
1322 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, 0 },
1323 { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1324 { IXGBE_FCTTV(0), 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1325 { IXGBE_TIPG, 1, PATTERN_TEST, 0x000000FF, 0x000000FF },
1326 { IXGBE_TDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF },
1327 { IXGBE_TDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1328 { IXGBE_TDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF },
1329 { IXGBE_RXCTRL, 1, SET_READ_TEST, 0x00000003, 0x00000003 },
1330 { IXGBE_DTXCTL, 1, SET_READ_TEST, 0x00000005, 0x00000005 },
1331 { IXGBE_RAL(0), 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF },
1332 { IXGBE_RAL(0), 16, TABLE64_TEST_HI, 0x800CFFFF, 0x800CFFFF },
1333 { IXGBE_MTA(0), 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1334 { 0, 0, 0, 0 }
1335};
1336
Emil Tantilov95a46012011-04-14 07:46:41 +00001337static bool reg_pattern_test(struct ixgbe_adapter *adapter, u64 *data, int reg,
1338 u32 mask, u32 write)
1339{
1340 u32 pat, val, before;
1341 static const u32 test_pattern[] = {
1342 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF};
Jeff Kirsher66744502010-12-01 19:59:50 +00001343
Mark Rustadb0483c82014-01-14 18:53:17 -08001344 if (ixgbe_removed(adapter->hw.hw_addr)) {
1345 *data = 1;
1346 return 1;
1347 }
Emil Tantilov95a46012011-04-14 07:46:41 +00001348 for (pat = 0; pat < ARRAY_SIZE(test_pattern); pat++) {
Mark Rustad49bde312014-01-14 18:53:14 -08001349 before = ixgbe_read_reg(&adapter->hw, reg);
1350 ixgbe_write_reg(&adapter->hw, reg, test_pattern[pat] & write);
1351 val = ixgbe_read_reg(&adapter->hw, reg);
Emil Tantilov95a46012011-04-14 07:46:41 +00001352 if (val != (test_pattern[pat] & write & mask)) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00001353 e_err(drv, "pattern test reg %04X failed: got 0x%08X expected 0x%08X\n",
Emil Tantilov95a46012011-04-14 07:46:41 +00001354 reg, val, (test_pattern[pat] & write & mask));
1355 *data = reg;
Mark Rustad49bde312014-01-14 18:53:14 -08001356 ixgbe_write_reg(&adapter->hw, reg, before);
1357 return true;
Emil Tantilov95a46012011-04-14 07:46:41 +00001358 }
Mark Rustad49bde312014-01-14 18:53:14 -08001359 ixgbe_write_reg(&adapter->hw, reg, before);
Emil Tantilov95a46012011-04-14 07:46:41 +00001360 }
Mark Rustad49bde312014-01-14 18:53:14 -08001361 return false;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001362}
1363
Emil Tantilov95a46012011-04-14 07:46:41 +00001364static bool reg_set_and_check(struct ixgbe_adapter *adapter, u64 *data, int reg,
1365 u32 mask, u32 write)
1366{
1367 u32 val, before;
Mark Rustad49bde312014-01-14 18:53:14 -08001368
Mark Rustadb0483c82014-01-14 18:53:17 -08001369 if (ixgbe_removed(adapter->hw.hw_addr)) {
1370 *data = 1;
1371 return 1;
1372 }
Mark Rustad49bde312014-01-14 18:53:14 -08001373 before = ixgbe_read_reg(&adapter->hw, reg);
1374 ixgbe_write_reg(&adapter->hw, reg, write & mask);
1375 val = ixgbe_read_reg(&adapter->hw, reg);
Emil Tantilov95a46012011-04-14 07:46:41 +00001376 if ((write & mask) != (val & mask)) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00001377 e_err(drv, "set/check reg %04X test failed: got 0x%08X expected 0x%08X\n",
1378 reg, (val & mask), (write & mask));
Emil Tantilov95a46012011-04-14 07:46:41 +00001379 *data = reg;
Mark Rustad49bde312014-01-14 18:53:14 -08001380 ixgbe_write_reg(&adapter->hw, reg, before);
1381 return true;
Emil Tantilov95a46012011-04-14 07:46:41 +00001382 }
Mark Rustad49bde312014-01-14 18:53:14 -08001383 ixgbe_write_reg(&adapter->hw, reg, before);
1384 return false;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001385}
1386
1387static int ixgbe_reg_test(struct ixgbe_adapter *adapter, u64 *data)
1388{
Jeff Kirsher66744502010-12-01 19:59:50 +00001389 const struct ixgbe_reg_test *test;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001390 u32 value, before, after;
1391 u32 i, toggle;
1392
Mark Rustadb0483c82014-01-14 18:53:17 -08001393 if (ixgbe_removed(adapter->hw.hw_addr)) {
1394 e_err(drv, "Adapter removed - register test blocked\n");
1395 *data = 1;
1396 return 1;
1397 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001398 switch (adapter->hw.mac.type) {
1399 case ixgbe_mac_82598EB:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001400 toggle = 0x7FFFF3FF;
1401 test = reg_test_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08001402 break;
1403 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001404 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08001405 toggle = 0x7FFFF30F;
1406 test = reg_test_82599;
1407 break;
1408 default:
1409 *data = 1;
1410 return 1;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001411 }
1412
1413 /*
1414 * Because the status register is such a special case,
1415 * we handle it separately from the rest of the register
1416 * tests. Some bits are read-only, some toggle, and some
1417 * are writeable on newer MACs.
1418 */
Mark Rustad49bde312014-01-14 18:53:14 -08001419 before = ixgbe_read_reg(&adapter->hw, IXGBE_STATUS);
1420 value = (ixgbe_read_reg(&adapter->hw, IXGBE_STATUS) & toggle);
1421 ixgbe_write_reg(&adapter->hw, IXGBE_STATUS, toggle);
1422 after = ixgbe_read_reg(&adapter->hw, IXGBE_STATUS) & toggle;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001423 if (value != after) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00001424 e_err(drv, "failed STATUS register test got: 0x%08X expected: 0x%08X\n",
1425 after, value);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001426 *data = 1;
1427 return 1;
1428 }
1429 /* restore previous status */
Mark Rustad49bde312014-01-14 18:53:14 -08001430 ixgbe_write_reg(&adapter->hw, IXGBE_STATUS, before);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001431
1432 /*
1433 * Perform the remainder of the register test, looping through
1434 * the test table until we either fail or reach the null entry.
1435 */
1436 while (test->reg) {
1437 for (i = 0; i < test->array_len; i++) {
Mark Rustad49bde312014-01-14 18:53:14 -08001438 bool b = false;
1439
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001440 switch (test->test_type) {
1441 case PATTERN_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001442 b = reg_pattern_test(adapter, data,
1443 test->reg + (i * 0x40),
1444 test->mask,
1445 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001446 break;
1447 case SET_READ_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001448 b = reg_set_and_check(adapter, data,
1449 test->reg + (i * 0x40),
1450 test->mask,
1451 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001452 break;
1453 case WRITE_NO_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001454 ixgbe_write_reg(&adapter->hw,
1455 test->reg + (i * 0x40),
1456 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001457 break;
1458 case TABLE32_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001459 b = reg_pattern_test(adapter, data,
1460 test->reg + (i * 4),
1461 test->mask,
1462 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001463 break;
1464 case TABLE64_TEST_LO:
Mark Rustad49bde312014-01-14 18:53:14 -08001465 b = reg_pattern_test(adapter, data,
1466 test->reg + (i * 8),
1467 test->mask,
1468 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001469 break;
1470 case TABLE64_TEST_HI:
Mark Rustad49bde312014-01-14 18:53:14 -08001471 b = reg_pattern_test(adapter, data,
1472 (test->reg + 4) + (i * 8),
1473 test->mask,
1474 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001475 break;
1476 }
Mark Rustad49bde312014-01-14 18:53:14 -08001477 if (b)
1478 return 1;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001479 }
1480 test++;
1481 }
1482
1483 *data = 0;
1484 return 0;
1485}
1486
1487static int ixgbe_eeprom_test(struct ixgbe_adapter *adapter, u64 *data)
1488{
1489 struct ixgbe_hw *hw = &adapter->hw;
1490 if (hw->eeprom.ops.validate_checksum(hw, NULL))
1491 *data = 1;
1492 else
1493 *data = 0;
1494 return *data;
1495}
1496
1497static irqreturn_t ixgbe_test_intr(int irq, void *data)
1498{
1499 struct net_device *netdev = (struct net_device *) data;
1500 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1501
1502 adapter->test_icr |= IXGBE_READ_REG(&adapter->hw, IXGBE_EICR);
1503
1504 return IRQ_HANDLED;
1505}
1506
1507static int ixgbe_intr_test(struct ixgbe_adapter *adapter, u64 *data)
1508{
1509 struct net_device *netdev = adapter->netdev;
1510 u32 mask, i = 0, shared_int = true;
1511 u32 irq = adapter->pdev->irq;
1512
1513 *data = 0;
1514
1515 /* Hook up test interrupt handler just for this test */
1516 if (adapter->msix_entries) {
1517 /* NOTE: we don't test MSI-X interrupts here, yet */
1518 return 0;
1519 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
1520 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -08001521 if (request_irq(irq, ixgbe_test_intr, 0, netdev->name,
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001522 netdev)) {
1523 *data = 1;
1524 return -1;
1525 }
Joe Perchesa0607fd2009-11-18 23:29:17 -08001526 } else if (!request_irq(irq, ixgbe_test_intr, IRQF_PROBE_SHARED,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001527 netdev->name, netdev)) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001528 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -08001529 } else if (request_irq(irq, ixgbe_test_intr, IRQF_SHARED,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001530 netdev->name, netdev)) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001531 *data = 1;
1532 return -1;
1533 }
Emil Tantilov396e7992010-07-01 20:05:12 +00001534 e_info(hw, "testing %s interrupt\n", shared_int ?
1535 "shared" : "unshared");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001536
1537 /* Disable all the interrupts */
1538 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001539 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001540 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001541
1542 /* Test each interrupt */
1543 for (; i < 10; i++) {
1544 /* Interrupt to test */
1545 mask = 1 << i;
1546
1547 if (!shared_int) {
1548 /*
1549 * Disable the interrupts to be reported in
1550 * the cause register and then force the same
1551 * interrupt and see if one gets posted. If
1552 * an interrupt was posted to the bus, the
1553 * test failed.
1554 */
1555 adapter->test_icr = 0;
1556 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001557 ~mask & 0x00007FFF);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001558 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001559 ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001560 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001561 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001562
1563 if (adapter->test_icr & mask) {
1564 *data = 3;
1565 break;
1566 }
1567 }
1568
1569 /*
1570 * Enable the interrupt to be reported in the cause
1571 * register and then force the same interrupt and see
1572 * if one gets posted. If an interrupt was not posted
1573 * to the bus, the test failed.
1574 */
1575 adapter->test_icr = 0;
1576 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
1577 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001578 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001579 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001580
Jacob Keller8105ecd2014-04-09 06:03:16 +00001581 if (!(adapter->test_icr & mask)) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001582 *data = 4;
1583 break;
1584 }
1585
1586 if (!shared_int) {
1587 /*
1588 * Disable the other interrupts to be reported in
1589 * the cause register and then force the other
1590 * interrupts and see if any get posted. If
1591 * an interrupt was posted to the bus, the
1592 * test failed.
1593 */
1594 adapter->test_icr = 0;
1595 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001596 ~mask & 0x00007FFF);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001597 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001598 ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001599 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001600 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001601
1602 if (adapter->test_icr) {
1603 *data = 5;
1604 break;
1605 }
1606 }
1607 }
1608
1609 /* Disable all the interrupts */
1610 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001611 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001612 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001613
1614 /* Unhook test interrupt handler */
1615 free_irq(irq, netdev);
1616
1617 return *data;
1618}
1619
1620static void ixgbe_free_desc_rings(struct ixgbe_adapter *adapter)
1621{
1622 struct ixgbe_ring *tx_ring = &adapter->test_tx_ring;
1623 struct ixgbe_ring *rx_ring = &adapter->test_rx_ring;
1624 struct ixgbe_hw *hw = &adapter->hw;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001625 u32 reg_ctl;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001626
1627 /* shut down the DMA engines now so they can be reinitialized later */
1628
1629 /* first Rx */
1630 reg_ctl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
1631 reg_ctl &= ~IXGBE_RXCTRL_RXEN;
1632 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, reg_ctl);
Yi Zou2d39d572011-01-06 14:29:56 +00001633 ixgbe_disable_rx_queue(adapter, rx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001634
1635 /* now Tx */
Alexander Duyck84418e32010-08-19 13:40:54 +00001636 reg_ctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(tx_ring->reg_idx));
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001637 reg_ctl &= ~IXGBE_TXDCTL_ENABLE;
Alexander Duyck84418e32010-08-19 13:40:54 +00001638 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(tx_ring->reg_idx), reg_ctl);
1639
Alexander Duyckbd508172010-11-16 19:27:03 -08001640 switch (hw->mac.type) {
1641 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001642 case ixgbe_mac_X540:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001643 reg_ctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1644 reg_ctl &= ~IXGBE_DMATXCTL_TE;
1645 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg_ctl);
Alexander Duyckbd508172010-11-16 19:27:03 -08001646 break;
1647 default:
1648 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001649 }
1650
1651 ixgbe_reset(adapter);
1652
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001653 ixgbe_free_tx_resources(&adapter->test_tx_ring);
1654 ixgbe_free_rx_resources(&adapter->test_rx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001655}
1656
1657static int ixgbe_setup_desc_rings(struct ixgbe_adapter *adapter)
1658{
1659 struct ixgbe_ring *tx_ring = &adapter->test_tx_ring;
1660 struct ixgbe_ring *rx_ring = &adapter->test_rx_ring;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001661 u32 rctl, reg_data;
Alexander Duyck84418e32010-08-19 13:40:54 +00001662 int ret_val;
1663 int err;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001664
1665 /* Setup Tx descriptor ring and Tx buffers */
Alexander Duyck84418e32010-08-19 13:40:54 +00001666 tx_ring->count = IXGBE_DEFAULT_TXD;
1667 tx_ring->queue_index = 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001668 tx_ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001669 tx_ring->netdev = adapter->netdev;
Alexander Duyck84418e32010-08-19 13:40:54 +00001670 tx_ring->reg_idx = adapter->tx_ring[0]->reg_idx;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001671
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001672 err = ixgbe_setup_tx_resources(tx_ring);
Alexander Duyck84418e32010-08-19 13:40:54 +00001673 if (err)
1674 return 1;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001675
Alexander Duyckbd508172010-11-16 19:27:03 -08001676 switch (adapter->hw.mac.type) {
1677 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001678 case ixgbe_mac_X540:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001679 reg_data = IXGBE_READ_REG(&adapter->hw, IXGBE_DMATXCTL);
1680 reg_data |= IXGBE_DMATXCTL_TE;
1681 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DMATXCTL, reg_data);
Alexander Duyckbd508172010-11-16 19:27:03 -08001682 break;
1683 default:
1684 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001685 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001686
Alexander Duyck84418e32010-08-19 13:40:54 +00001687 ixgbe_configure_tx_ring(adapter, tx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001688
1689 /* Setup Rx Descriptor ring and Rx buffers */
Alexander Duyck84418e32010-08-19 13:40:54 +00001690 rx_ring->count = IXGBE_DEFAULT_RXD;
1691 rx_ring->queue_index = 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001692 rx_ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001693 rx_ring->netdev = adapter->netdev;
Alexander Duyck84418e32010-08-19 13:40:54 +00001694 rx_ring->reg_idx = adapter->rx_ring[0]->reg_idx;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001695
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001696 err = ixgbe_setup_rx_resources(rx_ring);
Alexander Duyck84418e32010-08-19 13:40:54 +00001697 if (err) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001698 ret_val = 4;
1699 goto err_nomem;
1700 }
1701
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001702 rctl = IXGBE_READ_REG(&adapter->hw, IXGBE_RXCTRL);
1703 IXGBE_WRITE_REG(&adapter->hw, IXGBE_RXCTRL, rctl & ~IXGBE_RXCTRL_RXEN);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001704
Alexander Duyck84418e32010-08-19 13:40:54 +00001705 ixgbe_configure_rx_ring(adapter, rx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001706
1707 rctl |= IXGBE_RXCTRL_RXEN | IXGBE_RXCTRL_DMBYPS;
1708 IXGBE_WRITE_REG(&adapter->hw, IXGBE_RXCTRL, rctl);
1709
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001710 return 0;
1711
1712err_nomem:
1713 ixgbe_free_desc_rings(adapter);
1714 return ret_val;
1715}
1716
1717static int ixgbe_setup_loopback_test(struct ixgbe_adapter *adapter)
1718{
1719 struct ixgbe_hw *hw = &adapter->hw;
1720 u32 reg_data;
1721
Don Skidmoree7fd9252011-04-16 05:29:14 +00001722
Alexander Duyck84418e32010-08-19 13:40:54 +00001723 /* Setup MAC loopback */
Emil Tantilov26b47422013-04-12 02:10:25 +00001724 reg_data = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001725 reg_data |= IXGBE_HLREG0_LPBK;
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001726 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, reg_data);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001727
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001728 reg_data = IXGBE_READ_REG(hw, IXGBE_FCTRL);
Alexander Duyck84418e32010-08-19 13:40:54 +00001729 reg_data |= IXGBE_FCTRL_BAM | IXGBE_FCTRL_SBP | IXGBE_FCTRL_MPE;
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001730 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, reg_data);
Alexander Duyck84418e32010-08-19 13:40:54 +00001731
Emil Tantilov26b47422013-04-12 02:10:25 +00001732 /* X540 needs to set the MACC.FLU bit to force link up */
1733 if (adapter->hw.mac.type == ixgbe_mac_X540) {
1734 reg_data = IXGBE_READ_REG(hw, IXGBE_MACC);
1735 reg_data |= IXGBE_MACC_FLU;
1736 IXGBE_WRITE_REG(hw, IXGBE_MACC, reg_data);
1737 } else {
1738 if (hw->mac.orig_autoc) {
1739 reg_data = hw->mac.orig_autoc | IXGBE_AUTOC_FLU;
1740 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg_data);
1741 } else {
1742 return 10;
1743 }
1744 }
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001745 IXGBE_WRITE_FLUSH(hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001746 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001747
1748 /* Disable Atlas Tx lanes; re-enabled in reset path */
1749 if (hw->mac.type == ixgbe_mac_82598EB) {
1750 u8 atlas;
1751
1752 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &atlas);
1753 atlas |= IXGBE_ATLAS_PDN_TX_REG_EN;
1754 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, atlas);
1755
1756 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G, &atlas);
1757 atlas |= IXGBE_ATLAS_PDN_TX_10G_QL_ALL;
1758 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G, atlas);
1759
1760 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G, &atlas);
1761 atlas |= IXGBE_ATLAS_PDN_TX_1G_QL_ALL;
1762 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G, atlas);
1763
1764 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN, &atlas);
1765 atlas |= IXGBE_ATLAS_PDN_TX_AN_QL_ALL;
1766 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN, atlas);
1767 }
1768
1769 return 0;
1770}
1771
1772static void ixgbe_loopback_cleanup(struct ixgbe_adapter *adapter)
1773{
1774 u32 reg_data;
1775
1776 reg_data = IXGBE_READ_REG(&adapter->hw, IXGBE_HLREG0);
1777 reg_data &= ~IXGBE_HLREG0_LPBK;
1778 IXGBE_WRITE_REG(&adapter->hw, IXGBE_HLREG0, reg_data);
1779}
1780
1781static void ixgbe_create_lbtest_frame(struct sk_buff *skb,
Alexander Duyck3832b262012-02-08 07:50:09 +00001782 unsigned int frame_size)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001783{
1784 memset(skb->data, 0xFF, frame_size);
Alexander Duyck3832b262012-02-08 07:50:09 +00001785 frame_size >>= 1;
1786 memset(&skb->data[frame_size], 0xAA, frame_size / 2 - 1);
1787 memset(&skb->data[frame_size + 10], 0xBE, 1);
1788 memset(&skb->data[frame_size + 12], 0xAF, 1);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001789}
1790
Alexander Duyck3832b262012-02-08 07:50:09 +00001791static bool ixgbe_check_lbtest_frame(struct ixgbe_rx_buffer *rx_buffer,
1792 unsigned int frame_size)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001793{
Alexander Duyck3832b262012-02-08 07:50:09 +00001794 unsigned char *data;
1795 bool match = true;
1796
1797 frame_size >>= 1;
1798
Alexander Duyckf8003262012-03-03 02:35:52 +00001799 data = kmap(rx_buffer->page) + rx_buffer->page_offset;
Alexander Duyck3832b262012-02-08 07:50:09 +00001800
1801 if (data[3] != 0xFF ||
1802 data[frame_size + 10] != 0xBE ||
1803 data[frame_size + 12] != 0xAF)
1804 match = false;
1805
Alexander Duyckf8003262012-03-03 02:35:52 +00001806 kunmap(rx_buffer->page);
1807
Alexander Duyck3832b262012-02-08 07:50:09 +00001808 return match;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001809}
1810
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001811static u16 ixgbe_clean_test_rings(struct ixgbe_ring *rx_ring,
Alexander Duyck3832b262012-02-08 07:50:09 +00001812 struct ixgbe_ring *tx_ring,
1813 unsigned int size)
Alexander Duyck84418e32010-08-19 13:40:54 +00001814{
1815 union ixgbe_adv_rx_desc *rx_desc;
Alexander Duyck3832b262012-02-08 07:50:09 +00001816 struct ixgbe_rx_buffer *rx_buffer;
1817 struct ixgbe_tx_buffer *tx_buffer;
Alexander Duyck84418e32010-08-19 13:40:54 +00001818 u16 rx_ntc, tx_ntc, count = 0;
1819
1820 /* initialize next to clean and descriptor values */
1821 rx_ntc = rx_ring->next_to_clean;
1822 tx_ntc = tx_ring->next_to_clean;
Alexander Duycke4f74022012-01-31 02:59:44 +00001823 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ntc);
Alexander Duyck84418e32010-08-19 13:40:54 +00001824
Alexander Duyck3832b262012-02-08 07:50:09 +00001825 while (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD)) {
Alexander Duyck84418e32010-08-19 13:40:54 +00001826 /* check Rx buffer */
Alexander Duyck3832b262012-02-08 07:50:09 +00001827 rx_buffer = &rx_ring->rx_buffer_info[rx_ntc];
Alexander Duyck84418e32010-08-19 13:40:54 +00001828
Alexander Duyckf8003262012-03-03 02:35:52 +00001829 /* sync Rx buffer for CPU read */
1830 dma_sync_single_for_cpu(rx_ring->dev,
1831 rx_buffer->dma,
1832 ixgbe_rx_bufsz(rx_ring),
1833 DMA_FROM_DEVICE);
Alexander Duyck84418e32010-08-19 13:40:54 +00001834
1835 /* verify contents of skb */
Alexander Duyck3832b262012-02-08 07:50:09 +00001836 if (ixgbe_check_lbtest_frame(rx_buffer, size))
Alexander Duyck84418e32010-08-19 13:40:54 +00001837 count++;
1838
Alexander Duyckf8003262012-03-03 02:35:52 +00001839 /* sync Rx buffer for device write */
1840 dma_sync_single_for_device(rx_ring->dev,
1841 rx_buffer->dma,
1842 ixgbe_rx_bufsz(rx_ring),
1843 DMA_FROM_DEVICE);
1844
Alexander Duyck84418e32010-08-19 13:40:54 +00001845 /* unmap buffer on Tx side */
Alexander Duyck3832b262012-02-08 07:50:09 +00001846 tx_buffer = &tx_ring->tx_buffer_info[tx_ntc];
1847 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
Alexander Duyck84418e32010-08-19 13:40:54 +00001848
1849 /* increment Rx/Tx next to clean counters */
1850 rx_ntc++;
1851 if (rx_ntc == rx_ring->count)
1852 rx_ntc = 0;
1853 tx_ntc++;
1854 if (tx_ntc == tx_ring->count)
1855 tx_ntc = 0;
1856
1857 /* fetch next descriptor */
Alexander Duycke4f74022012-01-31 02:59:44 +00001858 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ntc);
Alexander Duyck84418e32010-08-19 13:40:54 +00001859 }
1860
John Fastabenddad8a3b2012-04-23 12:22:39 +00001861 netdev_tx_reset_queue(txring_txq(tx_ring));
1862
Alexander Duyck84418e32010-08-19 13:40:54 +00001863 /* re-map buffers to ring, store next to clean values */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001864 ixgbe_alloc_rx_buffers(rx_ring, count);
Alexander Duyck84418e32010-08-19 13:40:54 +00001865 rx_ring->next_to_clean = rx_ntc;
1866 tx_ring->next_to_clean = tx_ntc;
1867
1868 return count;
1869}
1870
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001871static int ixgbe_run_loopback_test(struct ixgbe_adapter *adapter)
1872{
1873 struct ixgbe_ring *tx_ring = &adapter->test_tx_ring;
1874 struct ixgbe_ring *rx_ring = &adapter->test_rx_ring;
Alexander Duyck84418e32010-08-19 13:40:54 +00001875 int i, j, lc, good_cnt, ret_val = 0;
1876 unsigned int size = 1024;
1877 netdev_tx_t tx_ret_val;
1878 struct sk_buff *skb;
Emil Tantilov91ffdc82013-07-23 01:56:58 +00001879 u32 flags_orig = adapter->flags;
1880
1881 /* DCB can modify the frames on Tx */
1882 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001883
Alexander Duyck84418e32010-08-19 13:40:54 +00001884 /* allocate test skb */
1885 skb = alloc_skb(size, GFP_KERNEL);
1886 if (!skb)
1887 return 11;
1888
1889 /* place data into test skb */
1890 ixgbe_create_lbtest_frame(skb, size);
1891 skb_put(skb, size);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001892
1893 /*
1894 * Calculate the loop count based on the largest descriptor ring
1895 * The idea is to wrap the largest ring a number of times using 64
1896 * send/receive pairs during each loop
1897 */
1898
1899 if (rx_ring->count <= tx_ring->count)
1900 lc = ((tx_ring->count / 64) * 2) + 1;
1901 else
1902 lc = ((rx_ring->count / 64) * 2) + 1;
1903
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001904 for (j = 0; j <= lc; j++) {
Alexander Duyck84418e32010-08-19 13:40:54 +00001905 /* reset count of good packets */
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001906 good_cnt = 0;
Alexander Duyck84418e32010-08-19 13:40:54 +00001907
1908 /* place 64 packets on the transmit queue*/
1909 for (i = 0; i < 64; i++) {
1910 skb_get(skb);
1911 tx_ret_val = ixgbe_xmit_frame_ring(skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00001912 adapter,
1913 tx_ring);
1914 if (tx_ret_val == NETDEV_TX_OK)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001915 good_cnt++;
Alexander Duyck84418e32010-08-19 13:40:54 +00001916 }
1917
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001918 if (good_cnt != 64) {
Alexander Duyck84418e32010-08-19 13:40:54 +00001919 ret_val = 12;
1920 break;
1921 }
1922
1923 /* allow 200 milliseconds for packets to go from Tx to Rx */
1924 msleep(200);
1925
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001926 good_cnt = ixgbe_clean_test_rings(rx_ring, tx_ring, size);
Alexander Duyck84418e32010-08-19 13:40:54 +00001927 if (good_cnt != 64) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001928 ret_val = 13;
1929 break;
1930 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001931 }
1932
Alexander Duyck84418e32010-08-19 13:40:54 +00001933 /* free the original skb */
1934 kfree_skb(skb);
Emil Tantilov91ffdc82013-07-23 01:56:58 +00001935 adapter->flags = flags_orig;
Alexander Duyck84418e32010-08-19 13:40:54 +00001936
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001937 return ret_val;
1938}
1939
1940static int ixgbe_loopback_test(struct ixgbe_adapter *adapter, u64 *data)
1941{
1942 *data = ixgbe_setup_desc_rings(adapter);
1943 if (*data)
1944 goto out;
1945 *data = ixgbe_setup_loopback_test(adapter);
1946 if (*data)
1947 goto err_loopback;
1948 *data = ixgbe_run_loopback_test(adapter);
1949 ixgbe_loopback_cleanup(adapter);
1950
1951err_loopback:
1952 ixgbe_free_desc_rings(adapter);
1953out:
1954 return *data;
1955}
1956
1957static void ixgbe_diag_test(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +00001958 struct ethtool_test *eth_test, u64 *data)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001959{
1960 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1961 bool if_running = netif_running(netdev);
1962
Mark Rustadb0483c82014-01-14 18:53:17 -08001963 if (ixgbe_removed(adapter->hw.hw_addr)) {
1964 e_err(hw, "Adapter removed - test blocked\n");
1965 data[0] = 1;
1966 data[1] = 1;
1967 data[2] = 1;
1968 data[3] = 1;
Mark Rustad0edd2bd2014-02-28 15:48:56 -08001969 data[4] = 1;
Mark Rustadb0483c82014-01-14 18:53:17 -08001970 eth_test->flags |= ETH_TEST_FL_FAILED;
1971 return;
1972 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001973 set_bit(__IXGBE_TESTING, &adapter->state);
1974 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Emil Tantilov4ec375b2013-07-10 02:47:24 +00001975 struct ixgbe_hw *hw = &adapter->hw;
1976
Greg Rosee7d481a2010-03-25 17:06:48 +00001977 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
1978 int i;
1979 for (i = 0; i < adapter->num_vfs; i++) {
1980 if (adapter->vfinfo[i].clear_to_send) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00001981 netdev_warn(netdev, "offline diagnostic is not supported when VFs are present\n");
Greg Rosee7d481a2010-03-25 17:06:48 +00001982 data[0] = 1;
1983 data[1] = 1;
1984 data[2] = 1;
1985 data[3] = 1;
Mark Rustad0edd2bd2014-02-28 15:48:56 -08001986 data[4] = 1;
Greg Rosee7d481a2010-03-25 17:06:48 +00001987 eth_test->flags |= ETH_TEST_FL_FAILED;
1988 clear_bit(__IXGBE_TESTING,
1989 &adapter->state);
1990 goto skip_ol_tests;
1991 }
1992 }
1993 }
1994
Jacob Kellerdfcc4612012-11-08 07:07:08 +00001995 /* Offline tests */
1996 e_info(hw, "offline testing starting\n");
1997
Jacob Kellerdfcc4612012-11-08 07:07:08 +00001998 /* Link test performed before hardware reset so autoneg doesn't
1999 * interfere with test result
2000 */
2001 if (ixgbe_link_test(adapter, &data[4]))
2002 eth_test->flags |= ETH_TEST_FL_FAILED;
2003
Emil Tantilov4ec375b2013-07-10 02:47:24 +00002004 if (if_running)
2005 /* indicate we're in test mode */
2006 dev_close(netdev);
2007 else
2008 ixgbe_reset(adapter);
2009
Emil Tantilov396e7992010-07-01 20:05:12 +00002010 e_info(hw, "register testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002011 if (ixgbe_reg_test(adapter, &data[0]))
2012 eth_test->flags |= ETH_TEST_FL_FAILED;
2013
2014 ixgbe_reset(adapter);
Emil Tantilov396e7992010-07-01 20:05:12 +00002015 e_info(hw, "eeprom testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002016 if (ixgbe_eeprom_test(adapter, &data[1]))
2017 eth_test->flags |= ETH_TEST_FL_FAILED;
2018
2019 ixgbe_reset(adapter);
Emil Tantilov396e7992010-07-01 20:05:12 +00002020 e_info(hw, "interrupt testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002021 if (ixgbe_intr_test(adapter, &data[2]))
2022 eth_test->flags |= ETH_TEST_FL_FAILED;
2023
Greg Rosebdbec4b2010-01-09 02:27:05 +00002024 /* If SRIOV or VMDq is enabled then skip MAC
2025 * loopback diagnostic. */
2026 if (adapter->flags & (IXGBE_FLAG_SRIOV_ENABLED |
2027 IXGBE_FLAG_VMDQ_ENABLED)) {
Jacob Keller6ec1b712014-04-09 06:03:13 +00002028 e_info(hw, "Skip MAC loopback diagnostic in VT mode\n");
Greg Rosebdbec4b2010-01-09 02:27:05 +00002029 data[3] = 0;
2030 goto skip_loopback;
2031 }
2032
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002033 ixgbe_reset(adapter);
Emil Tantilov396e7992010-07-01 20:05:12 +00002034 e_info(hw, "loopback testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002035 if (ixgbe_loopback_test(adapter, &data[3]))
2036 eth_test->flags |= ETH_TEST_FL_FAILED;
2037
Greg Rosebdbec4b2010-01-09 02:27:05 +00002038skip_loopback:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002039 ixgbe_reset(adapter);
2040
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002041 /* clear testing bit and return adapter to previous state */
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002042 clear_bit(__IXGBE_TESTING, &adapter->state);
2043 if (if_running)
2044 dev_open(netdev);
Emil Tantilov4ec375b2013-07-10 02:47:24 +00002045 else if (hw->mac.ops.disable_tx_laser)
2046 hw->mac.ops.disable_tx_laser(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002047 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00002048 e_info(hw, "online testing starting\n");
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002049
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002050 /* Online tests */
2051 if (ixgbe_link_test(adapter, &data[4]))
2052 eth_test->flags |= ETH_TEST_FL_FAILED;
2053
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002054 /* Offline tests aren't run; pass by default */
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002055 data[0] = 0;
2056 data[1] = 0;
2057 data[2] = 0;
2058 data[3] = 0;
2059
2060 clear_bit(__IXGBE_TESTING, &adapter->state);
2061 }
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002062
Greg Rosee7d481a2010-03-25 17:06:48 +00002063skip_ol_tests:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002064 msleep_interruptible(4 * 1000);
2065}
Auke Kok9a799d72007-09-15 14:07:45 -07002066
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002067static int ixgbe_wol_exclusion(struct ixgbe_adapter *adapter,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002068 struct ethtool_wolinfo *wol)
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002069{
2070 struct ixgbe_hw *hw = &adapter->hw;
Jacob Keller8e2813f2012-04-21 06:05:40 +00002071 int retval = 0;
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002072
Jacob Keller8e2813f2012-04-21 06:05:40 +00002073 /* WOL not supported for all devices */
2074 if (!ixgbe_wol_supported(adapter, hw->device_id,
2075 hw->subsystem_device_id)) {
2076 retval = 1;
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002077 wol->supported = 0;
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002078 }
2079
2080 return retval;
2081}
2082
Auke Kok9a799d72007-09-15 14:07:45 -07002083static void ixgbe_get_wol(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002084 struct ethtool_wolinfo *wol)
Auke Kok9a799d72007-09-15 14:07:45 -07002085{
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002086 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2087
2088 wol->supported = WAKE_UCAST | WAKE_MCAST |
Jacob Kellere7cf7452014-04-09 06:03:10 +00002089 WAKE_BCAST | WAKE_MAGIC;
Auke Kok9a799d72007-09-15 14:07:45 -07002090 wol->wolopts = 0;
2091
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002092 if (ixgbe_wol_exclusion(adapter, wol) ||
2093 !device_can_wakeup(&adapter->pdev->dev))
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002094 return;
2095
2096 if (adapter->wol & IXGBE_WUFC_EX)
2097 wol->wolopts |= WAKE_UCAST;
2098 if (adapter->wol & IXGBE_WUFC_MC)
2099 wol->wolopts |= WAKE_MCAST;
2100 if (adapter->wol & IXGBE_WUFC_BC)
2101 wol->wolopts |= WAKE_BCAST;
2102 if (adapter->wol & IXGBE_WUFC_MAG)
2103 wol->wolopts |= WAKE_MAGIC;
Auke Kok9a799d72007-09-15 14:07:45 -07002104}
2105
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002106static int ixgbe_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2107{
2108 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2109
2110 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
2111 return -EOPNOTSUPP;
2112
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002113 if (ixgbe_wol_exclusion(adapter, wol))
2114 return wol->wolopts ? -EOPNOTSUPP : 0;
2115
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002116 adapter->wol = 0;
2117
2118 if (wol->wolopts & WAKE_UCAST)
2119 adapter->wol |= IXGBE_WUFC_EX;
2120 if (wol->wolopts & WAKE_MCAST)
2121 adapter->wol |= IXGBE_WUFC_MC;
2122 if (wol->wolopts & WAKE_BCAST)
2123 adapter->wol |= IXGBE_WUFC_BC;
2124 if (wol->wolopts & WAKE_MAGIC)
2125 adapter->wol |= IXGBE_WUFC_MAG;
2126
2127 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
2128
2129 return 0;
2130}
2131
Auke Kok9a799d72007-09-15 14:07:45 -07002132static int ixgbe_nway_reset(struct net_device *netdev)
2133{
2134 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2135
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08002136 if (netif_running(netdev))
2137 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002138
2139 return 0;
2140}
2141
Emil Tantilov66e69612011-04-16 06:12:51 +00002142static int ixgbe_set_phys_id(struct net_device *netdev,
2143 enum ethtool_phys_id_state state)
Auke Kok9a799d72007-09-15 14:07:45 -07002144{
2145 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002146 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07002147
Emil Tantilov66e69612011-04-16 06:12:51 +00002148 switch (state) {
2149 case ETHTOOL_ID_ACTIVE:
2150 adapter->led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
2151 return 2;
Auke Kok9a799d72007-09-15 14:07:45 -07002152
Emil Tantilov66e69612011-04-16 06:12:51 +00002153 case ETHTOOL_ID_ON:
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002154 hw->mac.ops.led_on(hw, IXGBE_LED_ON);
Emil Tantilov66e69612011-04-16 06:12:51 +00002155 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002156
Emil Tantilov66e69612011-04-16 06:12:51 +00002157 case ETHTOOL_ID_OFF:
2158 hw->mac.ops.led_off(hw, IXGBE_LED_ON);
2159 break;
2160
2161 case ETHTOOL_ID_INACTIVE:
2162 /* Restore LED settings */
2163 IXGBE_WRITE_REG(&adapter->hw, IXGBE_LEDCTL, adapter->led_reg);
2164 break;
2165 }
Auke Kok9a799d72007-09-15 14:07:45 -07002166
2167 return 0;
2168}
2169
2170static int ixgbe_get_coalesce(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002171 struct ethtool_coalesce *ec)
Auke Kok9a799d72007-09-15 14:07:45 -07002172{
2173 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2174
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002175 /* only valid if in constant ITR mode */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002176 if (adapter->rx_itr_setting <= 1)
2177 ec->rx_coalesce_usecs = adapter->rx_itr_setting;
2178 else
2179 ec->rx_coalesce_usecs = adapter->rx_itr_setting >> 2;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002180
Shannon Nelsoncfb3f912009-11-24 18:51:06 +00002181 /* if in mixed tx/rx queues per vector mode, report only rx settings */
Alexander Duyck08c88332011-06-11 01:45:03 +00002182 if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count)
Shannon Nelsoncfb3f912009-11-24 18:51:06 +00002183 return 0;
2184
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002185 /* only valid if in constant ITR mode */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002186 if (adapter->tx_itr_setting <= 1)
2187 ec->tx_coalesce_usecs = adapter->tx_itr_setting;
2188 else
2189 ec->tx_coalesce_usecs = adapter->tx_itr_setting >> 2;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002190
Auke Kok9a799d72007-09-15 14:07:45 -07002191 return 0;
2192}
2193
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002194/*
2195 * this function must be called before setting the new value of
2196 * rx_itr_setting
2197 */
Alexander Duyck567d2de2012-02-11 07:18:57 +00002198static bool ixgbe_update_rsc(struct ixgbe_adapter *adapter)
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002199{
2200 struct net_device *netdev = adapter->netdev;
2201
Alexander Duyck567d2de2012-02-11 07:18:57 +00002202 /* nothing to do if LRO or RSC are not enabled */
2203 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) ||
2204 !(netdev->features & NETIF_F_LRO))
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002205 return false;
2206
Alexander Duyck567d2de2012-02-11 07:18:57 +00002207 /* check the feature flag value and enable RSC if necessary */
2208 if (adapter->rx_itr_setting == 1 ||
2209 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
2210 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002211 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Jacob Keller6ec1b712014-04-09 06:03:13 +00002212 e_info(probe, "rx-usecs value high enough to re-enable RSC\n");
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002213 return true;
2214 }
Alexander Duyck567d2de2012-02-11 07:18:57 +00002215 /* if interrupt rate is too high then disable RSC */
2216 } else if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
2217 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
2218 e_info(probe, "rx-usecs set too low, disabling RSC\n");
2219 return true;
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002220 }
2221 return false;
2222}
2223
Auke Kok9a799d72007-09-15 14:07:45 -07002224static int ixgbe_set_coalesce(struct net_device *netdev,
Jacob Kellere7cf7452014-04-09 06:03:10 +00002225 struct ethtool_coalesce *ec)
Auke Kok9a799d72007-09-15 14:07:45 -07002226{
2227 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Don Skidmore237057a2009-08-11 13:18:14 +00002228 struct ixgbe_q_vector *q_vector;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002229 int i;
Emil Tantilov67da0972013-01-25 06:19:20 +00002230 u16 tx_itr_param, rx_itr_param, tx_itr_prev;
Jesse Brandeburgef021192010-04-27 01:37:41 +00002231 bool need_reset = false;
Auke Kok9a799d72007-09-15 14:07:45 -07002232
Emil Tantilov67da0972013-01-25 06:19:20 +00002233 if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count) {
2234 /* reject Tx specific changes in case of mixed RxTx vectors */
2235 if (ec->tx_coalesce_usecs)
2236 return -EINVAL;
2237 tx_itr_prev = adapter->rx_itr_setting;
2238 } else {
2239 tx_itr_prev = adapter->tx_itr_setting;
2240 }
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002241
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002242 if ((ec->rx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)) ||
2243 (ec->tx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)))
2244 return -EINVAL;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002245
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002246 if (ec->rx_coalesce_usecs > 1)
2247 adapter->rx_itr_setting = ec->rx_coalesce_usecs << 2;
2248 else
2249 adapter->rx_itr_setting = ec->rx_coalesce_usecs;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002250
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002251 if (adapter->rx_itr_setting == 1)
2252 rx_itr_param = IXGBE_20K_ITR;
2253 else
2254 rx_itr_param = adapter->rx_itr_setting;
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002255
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002256 if (ec->tx_coalesce_usecs > 1)
2257 adapter->tx_itr_setting = ec->tx_coalesce_usecs << 2;
2258 else
2259 adapter->tx_itr_setting = ec->tx_coalesce_usecs;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002260
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002261 if (adapter->tx_itr_setting == 1)
2262 tx_itr_param = IXGBE_10K_ITR;
2263 else
2264 tx_itr_param = adapter->tx_itr_setting;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002265
Emil Tantilov67da0972013-01-25 06:19:20 +00002266 /* mixed Rx/Tx */
2267 if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count)
2268 adapter->tx_itr_setting = adapter->rx_itr_setting;
2269
2270#if IS_ENABLED(CONFIG_BQL)
2271 /* detect ITR changes that require update of TXDCTL.WTHRESH */
Emil Tantilov2e010382013-10-22 08:21:04 +00002272 if ((adapter->tx_itr_setting != 1) &&
Emil Tantilov67da0972013-01-25 06:19:20 +00002273 (adapter->tx_itr_setting < IXGBE_100K_ITR)) {
2274 if ((tx_itr_prev == 1) ||
Emil Tantilov2e010382013-10-22 08:21:04 +00002275 (tx_itr_prev >= IXGBE_100K_ITR))
Emil Tantilov67da0972013-01-25 06:19:20 +00002276 need_reset = true;
2277 } else {
Emil Tantilov2e010382013-10-22 08:21:04 +00002278 if ((tx_itr_prev != 1) &&
Emil Tantilov67da0972013-01-25 06:19:20 +00002279 (tx_itr_prev < IXGBE_100K_ITR))
2280 need_reset = true;
2281 }
2282#endif
Alexander Duyck567d2de2012-02-11 07:18:57 +00002283 /* check the old value and enable RSC if necessary */
Emil Tantilov67da0972013-01-25 06:19:20 +00002284 need_reset |= ixgbe_update_rsc(adapter);
Alexander Duyck567d2de2012-02-11 07:18:57 +00002285
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002286 for (i = 0; i < adapter->num_q_vectors; i++) {
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002287 q_vector = adapter->q_vector[i];
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002288 if (q_vector->tx.count && !q_vector->rx.count)
2289 /* tx only */
2290 q_vector->itr = tx_itr_param;
2291 else
2292 /* rx only or mixed */
2293 q_vector->itr = rx_itr_param;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002294 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002295 }
2296
Jesse Brandeburgef021192010-04-27 01:37:41 +00002297 /*
2298 * do reset here at the end to make sure EITR==0 case is handled
2299 * correctly w.r.t stopping tx, and changing TXDCTL.WTHRESH settings
2300 * also locks in RSC enable/disable which requires reset
2301 */
Emil Tantilovc988ee82011-05-13 02:22:45 +00002302 if (need_reset)
2303 ixgbe_do_reset(netdev);
Jesse Brandeburgef021192010-04-27 01:37:41 +00002304
Auke Kok9a799d72007-09-15 14:07:45 -07002305 return 0;
2306}
2307
Alexander Duyck3e053342011-05-11 07:18:47 +00002308static int ixgbe_get_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2309 struct ethtool_rxnfc *cmd)
2310{
2311 union ixgbe_atr_input *mask = &adapter->fdir_mask;
2312 struct ethtool_rx_flow_spec *fsp =
2313 (struct ethtool_rx_flow_spec *)&cmd->fs;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002314 struct hlist_node *node2;
Alexander Duyck3e053342011-05-11 07:18:47 +00002315 struct ixgbe_fdir_filter *rule = NULL;
2316
2317 /* report total rule count */
2318 cmd->data = (1024 << adapter->fdir_pballoc) - 2;
2319
Sasha Levinb67bfe02013-02-27 17:06:00 -08002320 hlist_for_each_entry_safe(rule, node2,
Alexander Duyck3e053342011-05-11 07:18:47 +00002321 &adapter->fdir_filter_list, fdir_node) {
2322 if (fsp->location <= rule->sw_idx)
2323 break;
2324 }
2325
2326 if (!rule || fsp->location != rule->sw_idx)
2327 return -EINVAL;
2328
2329 /* fill out the flow spec entry */
2330
2331 /* set flow type field */
2332 switch (rule->filter.formatted.flow_type) {
2333 case IXGBE_ATR_FLOW_TYPE_TCPV4:
2334 fsp->flow_type = TCP_V4_FLOW;
2335 break;
2336 case IXGBE_ATR_FLOW_TYPE_UDPV4:
2337 fsp->flow_type = UDP_V4_FLOW;
2338 break;
2339 case IXGBE_ATR_FLOW_TYPE_SCTPV4:
2340 fsp->flow_type = SCTP_V4_FLOW;
2341 break;
2342 case IXGBE_ATR_FLOW_TYPE_IPV4:
2343 fsp->flow_type = IP_USER_FLOW;
2344 fsp->h_u.usr_ip4_spec.ip_ver = ETH_RX_NFC_IP4;
2345 fsp->h_u.usr_ip4_spec.proto = 0;
2346 fsp->m_u.usr_ip4_spec.proto = 0;
2347 break;
2348 default:
2349 return -EINVAL;
2350 }
2351
2352 fsp->h_u.tcp_ip4_spec.psrc = rule->filter.formatted.src_port;
2353 fsp->m_u.tcp_ip4_spec.psrc = mask->formatted.src_port;
2354 fsp->h_u.tcp_ip4_spec.pdst = rule->filter.formatted.dst_port;
2355 fsp->m_u.tcp_ip4_spec.pdst = mask->formatted.dst_port;
2356 fsp->h_u.tcp_ip4_spec.ip4src = rule->filter.formatted.src_ip[0];
2357 fsp->m_u.tcp_ip4_spec.ip4src = mask->formatted.src_ip[0];
2358 fsp->h_u.tcp_ip4_spec.ip4dst = rule->filter.formatted.dst_ip[0];
2359 fsp->m_u.tcp_ip4_spec.ip4dst = mask->formatted.dst_ip[0];
2360 fsp->h_ext.vlan_tci = rule->filter.formatted.vlan_id;
2361 fsp->m_ext.vlan_tci = mask->formatted.vlan_id;
2362 fsp->h_ext.vlan_etype = rule->filter.formatted.flex_bytes;
2363 fsp->m_ext.vlan_etype = mask->formatted.flex_bytes;
2364 fsp->h_ext.data[1] = htonl(rule->filter.formatted.vm_pool);
2365 fsp->m_ext.data[1] = htonl(mask->formatted.vm_pool);
2366 fsp->flow_type |= FLOW_EXT;
2367
2368 /* record action */
2369 if (rule->action == IXGBE_FDIR_DROP_QUEUE)
2370 fsp->ring_cookie = RX_CLS_FLOW_DISC;
2371 else
2372 fsp->ring_cookie = rule->action;
2373
2374 return 0;
2375}
2376
2377static int ixgbe_get_ethtool_fdir_all(struct ixgbe_adapter *adapter,
2378 struct ethtool_rxnfc *cmd,
2379 u32 *rule_locs)
2380{
Sasha Levinb67bfe02013-02-27 17:06:00 -08002381 struct hlist_node *node2;
Alexander Duyck3e053342011-05-11 07:18:47 +00002382 struct ixgbe_fdir_filter *rule;
2383 int cnt = 0;
2384
2385 /* report total rule count */
2386 cmd->data = (1024 << adapter->fdir_pballoc) - 2;
2387
Sasha Levinb67bfe02013-02-27 17:06:00 -08002388 hlist_for_each_entry_safe(rule, node2,
Alexander Duyck3e053342011-05-11 07:18:47 +00002389 &adapter->fdir_filter_list, fdir_node) {
2390 if (cnt == cmd->rule_cnt)
2391 return -EMSGSIZE;
2392 rule_locs[cnt] = rule->sw_idx;
2393 cnt++;
2394 }
2395
Ben Hutchings473e64e2011-09-06 13:52:47 +00002396 cmd->rule_cnt = cnt;
2397
Alexander Duyck3e053342011-05-11 07:18:47 +00002398 return 0;
2399}
2400
Alexander Duyckef6afc02012-02-08 07:51:53 +00002401static int ixgbe_get_rss_hash_opts(struct ixgbe_adapter *adapter,
2402 struct ethtool_rxnfc *cmd)
2403{
2404 cmd->data = 0;
2405
Alexander Duyckef6afc02012-02-08 07:51:53 +00002406 /* Report default options for RSS on ixgbe */
2407 switch (cmd->flow_type) {
2408 case TCP_V4_FLOW:
2409 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
Jacob Keller3bf23792014-04-09 06:03:17 +00002410 /* fallthrough */
Alexander Duyckef6afc02012-02-08 07:51:53 +00002411 case UDP_V4_FLOW:
2412 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
2413 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
Jacob Keller3bf23792014-04-09 06:03:17 +00002414 /* fallthrough */
Alexander Duyckef6afc02012-02-08 07:51:53 +00002415 case SCTP_V4_FLOW:
2416 case AH_ESP_V4_FLOW:
2417 case AH_V4_FLOW:
2418 case ESP_V4_FLOW:
2419 case IPV4_FLOW:
2420 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
2421 break;
2422 case TCP_V6_FLOW:
2423 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
Jacob Keller3bf23792014-04-09 06:03:17 +00002424 /* fallthrough */
Alexander Duyckef6afc02012-02-08 07:51:53 +00002425 case UDP_V6_FLOW:
2426 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2427 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
Jacob Keller3bf23792014-04-09 06:03:17 +00002428 /* fallthrough */
Alexander Duyckef6afc02012-02-08 07:51:53 +00002429 case SCTP_V6_FLOW:
2430 case AH_ESP_V6_FLOW:
2431 case AH_V6_FLOW:
2432 case ESP_V6_FLOW:
2433 case IPV6_FLOW:
2434 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
2435 break;
2436 default:
2437 return -EINVAL;
2438 }
2439
2440 return 0;
2441}
2442
Alexander Duyck91cd94b2011-05-11 07:18:41 +00002443static int ixgbe_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
Ben Hutchings815c7db2011-09-06 13:49:12 +00002444 u32 *rule_locs)
Alexander Duyck91cd94b2011-05-11 07:18:41 +00002445{
2446 struct ixgbe_adapter *adapter = netdev_priv(dev);
2447 int ret = -EOPNOTSUPP;
2448
2449 switch (cmd->cmd) {
2450 case ETHTOOL_GRXRINGS:
2451 cmd->data = adapter->num_rx_queues;
2452 ret = 0;
2453 break;
Alexander Duyck3e053342011-05-11 07:18:47 +00002454 case ETHTOOL_GRXCLSRLCNT:
2455 cmd->rule_cnt = adapter->fdir_filter_count;
2456 ret = 0;
2457 break;
2458 case ETHTOOL_GRXCLSRULE:
2459 ret = ixgbe_get_ethtool_fdir_entry(adapter, cmd);
2460 break;
2461 case ETHTOOL_GRXCLSRLALL:
Ben Hutchings815c7db2011-09-06 13:49:12 +00002462 ret = ixgbe_get_ethtool_fdir_all(adapter, cmd, rule_locs);
Alexander Duyck3e053342011-05-11 07:18:47 +00002463 break;
Alexander Duyckef6afc02012-02-08 07:51:53 +00002464 case ETHTOOL_GRXFH:
2465 ret = ixgbe_get_rss_hash_opts(adapter, cmd);
2466 break;
Alexander Duyck91cd94b2011-05-11 07:18:41 +00002467 default:
2468 break;
2469 }
2470
2471 return ret;
2472}
2473
Alexander Duycke4911d52011-05-11 07:18:52 +00002474static int ixgbe_update_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2475 struct ixgbe_fdir_filter *input,
2476 u16 sw_idx)
2477{
2478 struct ixgbe_hw *hw = &adapter->hw;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002479 struct hlist_node *node2;
2480 struct ixgbe_fdir_filter *rule, *parent;
Alexander Duycke4911d52011-05-11 07:18:52 +00002481 int err = -EINVAL;
2482
2483 parent = NULL;
2484 rule = NULL;
2485
Sasha Levinb67bfe02013-02-27 17:06:00 -08002486 hlist_for_each_entry_safe(rule, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00002487 &adapter->fdir_filter_list, fdir_node) {
2488 /* hash found, or no matching entry */
2489 if (rule->sw_idx >= sw_idx)
2490 break;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002491 parent = rule;
Alexander Duycke4911d52011-05-11 07:18:52 +00002492 }
2493
2494 /* if there is an old rule occupying our place remove it */
2495 if (rule && (rule->sw_idx == sw_idx)) {
2496 if (!input || (rule->filter.formatted.bkt_hash !=
2497 input->filter.formatted.bkt_hash)) {
2498 err = ixgbe_fdir_erase_perfect_filter_82599(hw,
2499 &rule->filter,
2500 sw_idx);
2501 }
2502
2503 hlist_del(&rule->fdir_node);
2504 kfree(rule);
2505 adapter->fdir_filter_count--;
2506 }
2507
2508 /*
2509 * If no input this was a delete, err should be 0 if a rule was
2510 * successfully found and removed from the list else -EINVAL
2511 */
2512 if (!input)
2513 return err;
2514
2515 /* initialize node and set software index */
2516 INIT_HLIST_NODE(&input->fdir_node);
2517
2518 /* add filter to the list */
2519 if (parent)
Ken Helias1d023282014-08-06 16:09:16 -07002520 hlist_add_behind(&input->fdir_node, &parent->fdir_node);
Alexander Duycke4911d52011-05-11 07:18:52 +00002521 else
2522 hlist_add_head(&input->fdir_node,
2523 &adapter->fdir_filter_list);
2524
2525 /* update counts */
2526 adapter->fdir_filter_count++;
2527
2528 return 0;
2529}
2530
2531static int ixgbe_flowspec_to_flow_type(struct ethtool_rx_flow_spec *fsp,
2532 u8 *flow_type)
2533{
2534 switch (fsp->flow_type & ~FLOW_EXT) {
2535 case TCP_V4_FLOW:
2536 *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
2537 break;
2538 case UDP_V4_FLOW:
2539 *flow_type = IXGBE_ATR_FLOW_TYPE_UDPV4;
2540 break;
2541 case SCTP_V4_FLOW:
2542 *flow_type = IXGBE_ATR_FLOW_TYPE_SCTPV4;
2543 break;
2544 case IP_USER_FLOW:
2545 switch (fsp->h_u.usr_ip4_spec.proto) {
2546 case IPPROTO_TCP:
2547 *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
2548 break;
2549 case IPPROTO_UDP:
2550 *flow_type = IXGBE_ATR_FLOW_TYPE_UDPV4;
2551 break;
2552 case IPPROTO_SCTP:
2553 *flow_type = IXGBE_ATR_FLOW_TYPE_SCTPV4;
2554 break;
2555 case 0:
2556 if (!fsp->m_u.usr_ip4_spec.proto) {
2557 *flow_type = IXGBE_ATR_FLOW_TYPE_IPV4;
2558 break;
2559 }
2560 default:
2561 return 0;
2562 }
2563 break;
2564 default:
2565 return 0;
2566 }
2567
2568 return 1;
2569}
2570
2571static int ixgbe_add_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2572 struct ethtool_rxnfc *cmd)
2573{
2574 struct ethtool_rx_flow_spec *fsp =
2575 (struct ethtool_rx_flow_spec *)&cmd->fs;
2576 struct ixgbe_hw *hw = &adapter->hw;
2577 struct ixgbe_fdir_filter *input;
2578 union ixgbe_atr_input mask;
2579 int err;
2580
2581 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
2582 return -EOPNOTSUPP;
2583
2584 /*
2585 * Don't allow programming if the action is a queue greater than
2586 * the number of online Rx queues.
2587 */
2588 if ((fsp->ring_cookie != RX_CLS_FLOW_DISC) &&
2589 (fsp->ring_cookie >= adapter->num_rx_queues))
2590 return -EINVAL;
2591
2592 /* Don't allow indexes to exist outside of available space */
2593 if (fsp->location >= ((1024 << adapter->fdir_pballoc) - 2)) {
2594 e_err(drv, "Location out of range\n");
2595 return -EINVAL;
2596 }
2597
2598 input = kzalloc(sizeof(*input), GFP_ATOMIC);
2599 if (!input)
2600 return -ENOMEM;
2601
2602 memset(&mask, 0, sizeof(union ixgbe_atr_input));
2603
2604 /* set SW index */
2605 input->sw_idx = fsp->location;
2606
2607 /* record flow type */
2608 if (!ixgbe_flowspec_to_flow_type(fsp,
2609 &input->filter.formatted.flow_type)) {
2610 e_err(drv, "Unrecognized flow type\n");
2611 goto err_out;
2612 }
2613
2614 mask.formatted.flow_type = IXGBE_ATR_L4TYPE_IPV6_MASK |
2615 IXGBE_ATR_L4TYPE_MASK;
2616
2617 if (input->filter.formatted.flow_type == IXGBE_ATR_FLOW_TYPE_IPV4)
2618 mask.formatted.flow_type &= IXGBE_ATR_L4TYPE_IPV6_MASK;
2619
2620 /* Copy input into formatted structures */
2621 input->filter.formatted.src_ip[0] = fsp->h_u.tcp_ip4_spec.ip4src;
2622 mask.formatted.src_ip[0] = fsp->m_u.tcp_ip4_spec.ip4src;
2623 input->filter.formatted.dst_ip[0] = fsp->h_u.tcp_ip4_spec.ip4dst;
2624 mask.formatted.dst_ip[0] = fsp->m_u.tcp_ip4_spec.ip4dst;
2625 input->filter.formatted.src_port = fsp->h_u.tcp_ip4_spec.psrc;
2626 mask.formatted.src_port = fsp->m_u.tcp_ip4_spec.psrc;
2627 input->filter.formatted.dst_port = fsp->h_u.tcp_ip4_spec.pdst;
2628 mask.formatted.dst_port = fsp->m_u.tcp_ip4_spec.pdst;
2629
2630 if (fsp->flow_type & FLOW_EXT) {
2631 input->filter.formatted.vm_pool =
2632 (unsigned char)ntohl(fsp->h_ext.data[1]);
2633 mask.formatted.vm_pool =
2634 (unsigned char)ntohl(fsp->m_ext.data[1]);
2635 input->filter.formatted.vlan_id = fsp->h_ext.vlan_tci;
2636 mask.formatted.vlan_id = fsp->m_ext.vlan_tci;
2637 input->filter.formatted.flex_bytes =
2638 fsp->h_ext.vlan_etype;
2639 mask.formatted.flex_bytes = fsp->m_ext.vlan_etype;
2640 }
2641
2642 /* determine if we need to drop or route the packet */
2643 if (fsp->ring_cookie == RX_CLS_FLOW_DISC)
2644 input->action = IXGBE_FDIR_DROP_QUEUE;
2645 else
2646 input->action = fsp->ring_cookie;
2647
2648 spin_lock(&adapter->fdir_perfect_lock);
2649
2650 if (hlist_empty(&adapter->fdir_filter_list)) {
2651 /* save mask and program input mask into HW */
2652 memcpy(&adapter->fdir_mask, &mask, sizeof(mask));
2653 err = ixgbe_fdir_set_input_mask_82599(hw, &mask);
2654 if (err) {
2655 e_err(drv, "Error writing mask\n");
2656 goto err_out_w_lock;
2657 }
2658 } else if (memcmp(&adapter->fdir_mask, &mask, sizeof(mask))) {
2659 e_err(drv, "Only one mask supported per port\n");
2660 goto err_out_w_lock;
2661 }
2662
2663 /* apply mask and compute/store hash */
2664 ixgbe_atr_compute_perfect_hash_82599(&input->filter, &mask);
2665
2666 /* program filters to filter memory */
2667 err = ixgbe_fdir_write_perfect_filter_82599(hw,
2668 &input->filter, input->sw_idx,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00002669 (input->action == IXGBE_FDIR_DROP_QUEUE) ?
2670 IXGBE_FDIR_DROP_QUEUE :
Alexander Duycke4911d52011-05-11 07:18:52 +00002671 adapter->rx_ring[input->action]->reg_idx);
2672 if (err)
2673 goto err_out_w_lock;
2674
2675 ixgbe_update_ethtool_fdir_entry(adapter, input, input->sw_idx);
2676
2677 spin_unlock(&adapter->fdir_perfect_lock);
2678
2679 return err;
2680err_out_w_lock:
2681 spin_unlock(&adapter->fdir_perfect_lock);
2682err_out:
2683 kfree(input);
2684 return -EINVAL;
2685}
2686
2687static int ixgbe_del_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2688 struct ethtool_rxnfc *cmd)
2689{
2690 struct ethtool_rx_flow_spec *fsp =
2691 (struct ethtool_rx_flow_spec *)&cmd->fs;
2692 int err;
2693
2694 spin_lock(&adapter->fdir_perfect_lock);
2695 err = ixgbe_update_ethtool_fdir_entry(adapter, NULL, fsp->location);
2696 spin_unlock(&adapter->fdir_perfect_lock);
2697
2698 return err;
2699}
2700
Alexander Duyckef6afc02012-02-08 07:51:53 +00002701#define UDP_RSS_FLAGS (IXGBE_FLAG2_RSS_FIELD_IPV4_UDP | \
2702 IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2703static int ixgbe_set_rss_hash_opt(struct ixgbe_adapter *adapter,
2704 struct ethtool_rxnfc *nfc)
2705{
2706 u32 flags2 = adapter->flags2;
2707
2708 /*
2709 * RSS does not support anything other than hashing
2710 * to queues on src and dst IPs and ports
2711 */
2712 if (nfc->data & ~(RXH_IP_SRC | RXH_IP_DST |
2713 RXH_L4_B_0_1 | RXH_L4_B_2_3))
2714 return -EINVAL;
2715
2716 switch (nfc->flow_type) {
2717 case TCP_V4_FLOW:
2718 case TCP_V6_FLOW:
2719 if (!(nfc->data & RXH_IP_SRC) ||
2720 !(nfc->data & RXH_IP_DST) ||
2721 !(nfc->data & RXH_L4_B_0_1) ||
2722 !(nfc->data & RXH_L4_B_2_3))
2723 return -EINVAL;
2724 break;
2725 case UDP_V4_FLOW:
2726 if (!(nfc->data & RXH_IP_SRC) ||
2727 !(nfc->data & RXH_IP_DST))
2728 return -EINVAL;
2729 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
2730 case 0:
2731 flags2 &= ~IXGBE_FLAG2_RSS_FIELD_IPV4_UDP;
2732 break;
2733 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
2734 flags2 |= IXGBE_FLAG2_RSS_FIELD_IPV4_UDP;
2735 break;
2736 default:
2737 return -EINVAL;
2738 }
2739 break;
2740 case UDP_V6_FLOW:
2741 if (!(nfc->data & RXH_IP_SRC) ||
2742 !(nfc->data & RXH_IP_DST))
2743 return -EINVAL;
2744 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
2745 case 0:
2746 flags2 &= ~IXGBE_FLAG2_RSS_FIELD_IPV6_UDP;
2747 break;
2748 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
2749 flags2 |= IXGBE_FLAG2_RSS_FIELD_IPV6_UDP;
2750 break;
2751 default:
2752 return -EINVAL;
2753 }
2754 break;
2755 case AH_ESP_V4_FLOW:
2756 case AH_V4_FLOW:
2757 case ESP_V4_FLOW:
2758 case SCTP_V4_FLOW:
2759 case AH_ESP_V6_FLOW:
2760 case AH_V6_FLOW:
2761 case ESP_V6_FLOW:
2762 case SCTP_V6_FLOW:
2763 if (!(nfc->data & RXH_IP_SRC) ||
2764 !(nfc->data & RXH_IP_DST) ||
2765 (nfc->data & RXH_L4_B_0_1) ||
2766 (nfc->data & RXH_L4_B_2_3))
2767 return -EINVAL;
2768 break;
2769 default:
2770 return -EINVAL;
2771 }
2772
2773 /* if we changed something we need to update flags */
2774 if (flags2 != adapter->flags2) {
2775 struct ixgbe_hw *hw = &adapter->hw;
2776 u32 mrqc = IXGBE_READ_REG(hw, IXGBE_MRQC);
2777
2778 if ((flags2 & UDP_RSS_FLAGS) &&
2779 !(adapter->flags2 & UDP_RSS_FLAGS))
Jacob Keller6ec1b712014-04-09 06:03:13 +00002780 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 +00002781
2782 adapter->flags2 = flags2;
2783
2784 /* Perform hash on these packet types */
2785 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2786 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2787 | IXGBE_MRQC_RSS_FIELD_IPV6
2788 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2789
2790 mrqc &= ~(IXGBE_MRQC_RSS_FIELD_IPV4_UDP |
2791 IXGBE_MRQC_RSS_FIELD_IPV6_UDP);
2792
2793 if (flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
2794 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
2795
2796 if (flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2797 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
2798
2799 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
2800 }
2801
2802 return 0;
2803}
2804
Alexander Duycke4911d52011-05-11 07:18:52 +00002805static int ixgbe_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
2806{
2807 struct ixgbe_adapter *adapter = netdev_priv(dev);
2808 int ret = -EOPNOTSUPP;
2809
2810 switch (cmd->cmd) {
2811 case ETHTOOL_SRXCLSRLINS:
2812 ret = ixgbe_add_ethtool_fdir_entry(adapter, cmd);
2813 break;
2814 case ETHTOOL_SRXCLSRLDEL:
2815 ret = ixgbe_del_ethtool_fdir_entry(adapter, cmd);
2816 break;
Alexander Duyckef6afc02012-02-08 07:51:53 +00002817 case ETHTOOL_SRXFH:
2818 ret = ixgbe_set_rss_hash_opt(adapter, cmd);
2819 break;
Alexander Duycke4911d52011-05-11 07:18:52 +00002820 default:
2821 break;
2822 }
2823
2824 return ret;
2825}
2826
Jacob Kellere3aac882012-05-04 02:56:12 +00002827static int ixgbe_get_ts_info(struct net_device *dev,
2828 struct ethtool_ts_info *info)
2829{
2830 struct ixgbe_adapter *adapter = netdev_priv(dev);
2831
2832 switch (adapter->hw.mac.type) {
Jacob Kellere3aac882012-05-04 02:56:12 +00002833 case ixgbe_mac_X540:
2834 case ixgbe_mac_82599EB:
2835 info->so_timestamping =
Jacob Keller50f8d352012-10-31 22:30:54 +00002836 SOF_TIMESTAMPING_TX_SOFTWARE |
2837 SOF_TIMESTAMPING_RX_SOFTWARE |
2838 SOF_TIMESTAMPING_SOFTWARE |
Jacob Kellere3aac882012-05-04 02:56:12 +00002839 SOF_TIMESTAMPING_TX_HARDWARE |
2840 SOF_TIMESTAMPING_RX_HARDWARE |
2841 SOF_TIMESTAMPING_RAW_HARDWARE;
2842
2843 if (adapter->ptp_clock)
2844 info->phc_index = ptp_clock_index(adapter->ptp_clock);
2845 else
2846 info->phc_index = -1;
2847
2848 info->tx_types =
2849 (1 << HWTSTAMP_TX_OFF) |
2850 (1 << HWTSTAMP_TX_ON);
2851
2852 info->rx_filters =
2853 (1 << HWTSTAMP_FILTER_NONE) |
2854 (1 << HWTSTAMP_FILTER_PTP_V1_L4_SYNC) |
2855 (1 << HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) |
Jacob Kelleraeb82642012-11-15 01:10:37 +00002856 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
2857 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT) |
2858 (1 << HWTSTAMP_FILTER_PTP_V2_SYNC) |
2859 (1 << HWTSTAMP_FILTER_PTP_V2_L2_SYNC) |
2860 (1 << HWTSTAMP_FILTER_PTP_V2_L4_SYNC) |
2861 (1 << HWTSTAMP_FILTER_PTP_V2_DELAY_REQ) |
2862 (1 << HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ) |
2863 (1 << HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ) |
Jacob Keller1cc92eb2012-09-21 07:23:20 +00002864 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
Jacob Kellere3aac882012-05-04 02:56:12 +00002865 break;
Jacob Kellere3aac882012-05-04 02:56:12 +00002866 default:
2867 return ethtool_op_get_ts_info(dev, info);
Jacob Kellere3aac882012-05-04 02:56:12 +00002868 }
2869 return 0;
2870}
2871
Alexander Duyck5348c9d2013-01-12 06:33:52 +00002872static unsigned int ixgbe_max_channels(struct ixgbe_adapter *adapter)
2873{
2874 unsigned int max_combined;
2875 u8 tcs = netdev_get_num_tc(adapter->netdev);
2876
2877 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
2878 /* We only support one q_vector without MSI-X */
2879 max_combined = 1;
2880 } else if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2881 /* SR-IOV currently only allows one queue on the PF */
2882 max_combined = 1;
2883 } else if (tcs > 1) {
2884 /* For DCB report channels per traffic class */
2885 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
2886 /* 8 TC w/ 4 queues per TC */
2887 max_combined = 4;
2888 } else if (tcs > 4) {
2889 /* 8 TC w/ 8 queues per TC */
2890 max_combined = 8;
2891 } else {
2892 /* 4 TC w/ 16 queues per TC */
2893 max_combined = 16;
2894 }
2895 } else if (adapter->atr_sample_rate) {
2896 /* support up to 64 queues with ATR */
2897 max_combined = IXGBE_MAX_FDIR_INDICES;
2898 } else {
2899 /* support up to 16 queues with RSS */
2900 max_combined = IXGBE_MAX_RSS_INDICES;
2901 }
2902
2903 return max_combined;
2904}
2905
2906static void ixgbe_get_channels(struct net_device *dev,
2907 struct ethtool_channels *ch)
2908{
2909 struct ixgbe_adapter *adapter = netdev_priv(dev);
2910
2911 /* report maximum channels */
2912 ch->max_combined = ixgbe_max_channels(adapter);
2913
2914 /* report info for other vector */
2915 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2916 ch->max_other = NON_Q_VECTORS;
2917 ch->other_count = NON_Q_VECTORS;
2918 }
2919
2920 /* record RSS queues */
2921 ch->combined_count = adapter->ring_feature[RING_F_RSS].indices;
2922
2923 /* nothing else to report if RSS is disabled */
2924 if (ch->combined_count == 1)
2925 return;
2926
2927 /* we do not support ATR queueing if SR-IOV is enabled */
2928 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
2929 return;
2930
2931 /* same thing goes for being DCB enabled */
2932 if (netdev_get_num_tc(dev) > 1)
2933 return;
2934
2935 /* if ATR is disabled we can exit */
2936 if (!adapter->atr_sample_rate)
2937 return;
2938
2939 /* report flow director queues as maximum channels */
2940 ch->combined_count = adapter->ring_feature[RING_F_FDIR].indices;
2941}
2942
Alexander Duyck4c696ca2013-01-17 08:39:33 +00002943static int ixgbe_set_channels(struct net_device *dev,
2944 struct ethtool_channels *ch)
2945{
2946 struct ixgbe_adapter *adapter = netdev_priv(dev);
2947 unsigned int count = ch->combined_count;
2948
2949 /* verify they are not requesting separate vectors */
2950 if (!count || ch->rx_count || ch->tx_count)
2951 return -EINVAL;
2952
2953 /* verify other_count has not changed */
2954 if (ch->other_count != NON_Q_VECTORS)
2955 return -EINVAL;
2956
2957 /* verify the number of channels does not exceed hardware limits */
2958 if (count > ixgbe_max_channels(adapter))
2959 return -EINVAL;
2960
2961 /* update feature limits from largest to smallest supported values */
2962 adapter->ring_feature[RING_F_FDIR].limit = count;
2963
2964 /* cap RSS limit at 16 */
2965 if (count > IXGBE_MAX_RSS_INDICES)
2966 count = IXGBE_MAX_RSS_INDICES;
2967 adapter->ring_feature[RING_F_RSS].limit = count;
2968
2969#ifdef IXGBE_FCOE
2970 /* cap FCoE limit at 8 */
2971 if (count > IXGBE_FCRETA_SIZE)
2972 count = IXGBE_FCRETA_SIZE;
2973 adapter->ring_feature[RING_F_FCOE].limit = count;
2974
2975#endif
2976 /* use setup TC to update any traffic class queue mapping */
2977 return ixgbe_setup_tc(dev, netdev_get_num_tc(dev));
2978}
2979
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00002980static int ixgbe_get_module_info(struct net_device *dev,
2981 struct ethtool_modinfo *modinfo)
2982{
2983 struct ixgbe_adapter *adapter = netdev_priv(dev);
2984 struct ixgbe_hw *hw = &adapter->hw;
2985 u32 status;
2986 u8 sff8472_rev, addr_mode;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00002987 bool page_swap = false;
2988
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00002989 /* Check whether we support SFF-8472 or not */
2990 status = hw->phy.ops.read_i2c_eeprom(hw,
2991 IXGBE_SFF_SFF_8472_COMP,
2992 &sff8472_rev);
Emil Tantilova4b6fc62013-05-29 06:23:10 +00002993 if (status != 0)
2994 return -EIO;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00002995
2996 /* addressing mode is not supported */
2997 status = hw->phy.ops.read_i2c_eeprom(hw,
2998 IXGBE_SFF_SFF_8472_SWAP,
2999 &addr_mode);
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003000 if (status != 0)
3001 return -EIO;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003002
3003 if (addr_mode & IXGBE_SFF_ADDRESSING_MODE) {
3004 e_err(drv, "Address change required to access page 0xA2, but not supported. Please report the module type to the driver maintainers.\n");
3005 page_swap = true;
3006 }
3007
3008 if (sff8472_rev == IXGBE_SFF_SFF_8472_UNSUP || page_swap) {
3009 /* We have a SFP, but it does not support SFF-8472 */
3010 modinfo->type = ETH_MODULE_SFF_8079;
3011 modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN;
3012 } else {
3013 /* We have a SFP which supports a revision of SFF-8472. */
3014 modinfo->type = ETH_MODULE_SFF_8472;
3015 modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN;
3016 }
3017
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003018 return 0;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003019}
3020
3021static int ixgbe_get_module_eeprom(struct net_device *dev,
3022 struct ethtool_eeprom *ee,
3023 u8 *data)
3024{
3025 struct ixgbe_adapter *adapter = netdev_priv(dev);
3026 struct ixgbe_hw *hw = &adapter->hw;
3027 u32 status = IXGBE_ERR_PHY_ADDR_INVALID;
3028 u8 databyte = 0xFF;
3029 int i = 0;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003030
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003031 if (ee->len == 0)
3032 return -EINVAL;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003033
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003034 for (i = ee->offset; i < ee->offset + ee->len; i++) {
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003035 /* I2C reads can take long time */
3036 if (test_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
3037 return -EBUSY;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003038
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003039 if (i < ETH_MODULE_SFF_8079_LEN)
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003040 status = hw->phy.ops.read_i2c_eeprom(hw, i, &databyte);
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003041 else
3042 status = hw->phy.ops.read_i2c_sff8472(hw, i, &databyte);
3043
3044 if (status != 0)
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003045 return -EIO;
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003046
3047 data[i - ee->offset] = databyte;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003048 }
3049
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003050 return 0;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003051}
3052
Jesse Brandeburgb9804972008-09-11 20:00:29 -07003053static const struct ethtool_ops ixgbe_ethtool_ops = {
Auke Kok9a799d72007-09-15 14:07:45 -07003054 .get_settings = ixgbe_get_settings,
3055 .set_settings = ixgbe_set_settings,
3056 .get_drvinfo = ixgbe_get_drvinfo,
3057 .get_regs_len = ixgbe_get_regs_len,
3058 .get_regs = ixgbe_get_regs,
3059 .get_wol = ixgbe_get_wol,
PJ Waskiewicze63d9762009-03-19 01:23:46 +00003060 .set_wol = ixgbe_set_wol,
Auke Kok9a799d72007-09-15 14:07:45 -07003061 .nway_reset = ixgbe_nway_reset,
3062 .get_link = ethtool_op_get_link,
3063 .get_eeprom_len = ixgbe_get_eeprom_len,
3064 .get_eeprom = ixgbe_get_eeprom,
Emil Tantilov2fa5eef2011-10-06 08:57:04 +00003065 .set_eeprom = ixgbe_set_eeprom,
Auke Kok9a799d72007-09-15 14:07:45 -07003066 .get_ringparam = ixgbe_get_ringparam,
3067 .set_ringparam = ixgbe_set_ringparam,
3068 .get_pauseparam = ixgbe_get_pauseparam,
3069 .set_pauseparam = ixgbe_set_pauseparam,
Auke Kok9a799d72007-09-15 14:07:45 -07003070 .get_msglevel = ixgbe_get_msglevel,
3071 .set_msglevel = ixgbe_set_msglevel,
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003072 .self_test = ixgbe_diag_test,
Auke Kok9a799d72007-09-15 14:07:45 -07003073 .get_strings = ixgbe_get_strings,
Emil Tantilov66e69612011-04-16 06:12:51 +00003074 .set_phys_id = ixgbe_set_phys_id,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07003075 .get_sset_count = ixgbe_get_sset_count,
Auke Kok9a799d72007-09-15 14:07:45 -07003076 .get_ethtool_stats = ixgbe_get_ethtool_stats,
3077 .get_coalesce = ixgbe_get_coalesce,
3078 .set_coalesce = ixgbe_set_coalesce,
Alexander Duyck91cd94b2011-05-11 07:18:41 +00003079 .get_rxnfc = ixgbe_get_rxnfc,
Alexander Duycke4911d52011-05-11 07:18:52 +00003080 .set_rxnfc = ixgbe_set_rxnfc,
Alexander Duyck5348c9d2013-01-12 06:33:52 +00003081 .get_channels = ixgbe_get_channels,
Alexander Duyck4c696ca2013-01-17 08:39:33 +00003082 .set_channels = ixgbe_set_channels,
Jacob Kellere3aac882012-05-04 02:56:12 +00003083 .get_ts_info = ixgbe_get_ts_info,
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003084 .get_module_info = ixgbe_get_module_info,
3085 .get_module_eeprom = ixgbe_get_module_eeprom,
Auke Kok9a799d72007-09-15 14:07:45 -07003086};
3087
3088void ixgbe_set_ethtool_ops(struct net_device *netdev)
3089{
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00003090 netdev->ethtool_ops = &ixgbe_ethtool_ops;
Auke Kok9a799d72007-09-15 14:07:45 -07003091}