blob: 6c55c14d082aa6285f43941e5d96ae86acdbb21b [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 + \
144 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,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700155 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
Emil Tantilov0f8fdab2013-08-31 03:08:20 +0000164 /* SFP type is needed for get_link_capabilities */
165 if (hw->phy.media_type & (ixgbe_media_type_fiber |
166 ixgbe_media_type_fiber_qsfp)) {
167 if (hw->phy.sfp_type == ixgbe_sfp_type_not_present)
168 hw->phy.ops.identify_sfp(hw);
169 }
170
Jacob Kellerdb018962012-06-08 06:59:17 +0000171 hw->mac.ops.get_link_capabilities(hw, &supported_link, &autoneg);
Auke Kok9a799d72007-09-15 14:07:45 -0700172
Jacob Kellerdb018962012-06-08 06:59:17 +0000173 /* set the supported link speeds */
174 if (supported_link & IXGBE_LINK_SPEED_10GB_FULL)
175 ecmd->supported |= SUPPORTED_10000baseT_Full;
176 if (supported_link & IXGBE_LINK_SPEED_1GB_FULL)
177 ecmd->supported |= SUPPORTED_1000baseT_Full;
178 if (supported_link & IXGBE_LINK_SPEED_100_FULL)
179 ecmd->supported |= SUPPORTED_100baseT_Full;
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000180
Jacob Kellerdb018962012-06-08 06:59:17 +0000181 /* set the advertised speeds */
182 if (hw->phy.autoneg_advertised) {
183 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_100_FULL)
184 ecmd->advertising |= ADVERTISED_100baseT_Full;
185 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_10GB_FULL)
186 ecmd->advertising |= ADVERTISED_10000baseT_Full;
187 if (hw->phy.autoneg_advertised & IXGBE_LINK_SPEED_1GB_FULL)
188 ecmd->advertising |= ADVERTISED_1000baseT_Full;
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800189 } else {
Jacob Kellerdb018962012-06-08 06:59:17 +0000190 /* default modes in case phy.autoneg_advertised isn't set */
191 if (supported_link & IXGBE_LINK_SPEED_10GB_FULL)
192 ecmd->advertising |= ADVERTISED_10000baseT_Full;
193 if (supported_link & IXGBE_LINK_SPEED_1GB_FULL)
194 ecmd->advertising |= ADVERTISED_1000baseT_Full;
195 if (supported_link & IXGBE_LINK_SPEED_100_FULL)
196 ecmd->advertising |= ADVERTISED_100baseT_Full;
Emil Tantiloved33ff62013-08-30 07:55:24 +0000197
198 if (hw->phy.multispeed_fiber && !autoneg) {
199 if (supported_link & IXGBE_LINK_SPEED_10GB_FULL)
200 ecmd->advertising = ADVERTISED_10000baseT_Full;
201 }
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800202 }
203
Jacob Kellerdb018962012-06-08 06:59:17 +0000204 if (autoneg) {
205 ecmd->supported |= SUPPORTED_Autoneg;
206 ecmd->advertising |= ADVERTISED_Autoneg;
207 ecmd->autoneg = AUTONEG_ENABLE;
208 } else
209 ecmd->autoneg = AUTONEG_DISABLE;
210
211 ecmd->transceiver = XCVR_EXTERNAL;
212
213 /* Determine the remaining settings based on the PHY type. */
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000214 switch (adapter->hw.phy.type) {
215 case ixgbe_phy_tn:
Don Skidmorefe15e8e12010-11-16 19:27:16 -0800216 case ixgbe_phy_aq:
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000217 case ixgbe_phy_cu_unknown:
Jacob Kellerdb018962012-06-08 06:59:17 +0000218 ecmd->supported |= SUPPORTED_TP;
219 ecmd->advertising |= ADVERTISED_TP;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000220 ecmd->port = PORT_TP;
221 break;
222 case ixgbe_phy_qt:
Jacob Kellerdb018962012-06-08 06:59:17 +0000223 ecmd->supported |= SUPPORTED_FIBRE;
224 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000225 ecmd->port = PORT_FIBRE;
226 break;
227 case ixgbe_phy_nl:
Don Skidmoreea0a04d2010-05-18 16:00:13 +0000228 case ixgbe_phy_sfp_passive_tyco:
229 case ixgbe_phy_sfp_passive_unknown:
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000230 case ixgbe_phy_sfp_ftl:
231 case ixgbe_phy_sfp_avago:
232 case ixgbe_phy_sfp_intel:
233 case ixgbe_phy_sfp_unknown:
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000234 /* SFP+ devices, further checking needed */
Jacob Kellerdb018962012-06-08 06:59:17 +0000235 switch (adapter->hw.phy.sfp_type) {
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000236 case ixgbe_sfp_type_da_cu:
237 case ixgbe_sfp_type_da_cu_core0:
238 case ixgbe_sfp_type_da_cu_core1:
Jacob Kellerdb018962012-06-08 06:59:17 +0000239 ecmd->supported |= SUPPORTED_FIBRE;
240 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000241 ecmd->port = PORT_DA;
242 break;
243 case ixgbe_sfp_type_sr:
244 case ixgbe_sfp_type_lr:
245 case ixgbe_sfp_type_srlr_core0:
246 case ixgbe_sfp_type_srlr_core1:
Don Skidmore345be202013-04-11 06:23:34 +0000247 case ixgbe_sfp_type_1g_sx_core0:
248 case ixgbe_sfp_type_1g_sx_core1:
249 case ixgbe_sfp_type_1g_lx_core0:
250 case ixgbe_sfp_type_1g_lx_core1:
Jacob Kellerdb018962012-06-08 06:59:17 +0000251 ecmd->supported |= SUPPORTED_FIBRE;
252 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000253 ecmd->port = PORT_FIBRE;
254 break;
255 case ixgbe_sfp_type_not_present:
Jacob Kellerdb018962012-06-08 06:59:17 +0000256 ecmd->supported |= SUPPORTED_FIBRE;
257 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000258 ecmd->port = PORT_NONE;
259 break;
Don Skidmorecb836a92010-06-29 18:30:59 +0000260 case ixgbe_sfp_type_1g_cu_core0:
261 case ixgbe_sfp_type_1g_cu_core1:
Jacob Kellerdb018962012-06-08 06:59:17 +0000262 ecmd->supported |= SUPPORTED_TP;
263 ecmd->advertising |= ADVERTISED_TP;
Don Skidmorecb836a92010-06-29 18:30:59 +0000264 ecmd->port = PORT_TP;
Jacob Kellerdb018962012-06-08 06:59:17 +0000265 break;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000266 case ixgbe_sfp_type_unknown:
267 default:
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_OTHER;
271 break;
272 }
273 break;
274 case ixgbe_phy_xaui:
Jacob Kellerdb018962012-06-08 06:59:17 +0000275 ecmd->supported |= SUPPORTED_FIBRE;
276 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000277 ecmd->port = PORT_NONE;
278 break;
279 case ixgbe_phy_unknown:
280 case ixgbe_phy_generic:
281 case ixgbe_phy_sfp_unsupported:
282 default:
Jacob Kellerdb018962012-06-08 06:59:17 +0000283 ecmd->supported |= SUPPORTED_FIBRE;
284 ecmd->advertising |= ADVERTISED_FIBRE;
PJ Waskiewicz3b8626b2009-11-25 00:11:54 +0000285 ecmd->port = PORT_OTHER;
286 break;
287 }
288
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700289 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800290 if (link_up) {
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000291 switch (link_speed) {
292 case IXGBE_LINK_SPEED_10GB_FULL:
David Decotigny70739492011-04-27 18:32:40 +0000293 ethtool_cmd_speed_set(ecmd, SPEED_10000);
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000294 break;
295 case IXGBE_LINK_SPEED_1GB_FULL:
David Decotigny70739492011-04-27 18:32:40 +0000296 ethtool_cmd_speed_set(ecmd, SPEED_1000);
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000297 break;
298 case IXGBE_LINK_SPEED_100_FULL:
David Decotigny70739492011-04-27 18:32:40 +0000299 ethtool_cmd_speed_set(ecmd, SPEED_100);
Atita Shirwaikar1b1c0a42011-01-05 02:00:55 +0000300 break;
301 default:
302 break;
303 }
Auke Kok9a799d72007-09-15 14:07:45 -0700304 ecmd->duplex = DUPLEX_FULL;
305 } else {
David Decotigny70739492011-04-27 18:32:40 +0000306 ethtool_cmd_speed_set(ecmd, -1);
Auke Kok9a799d72007-09-15 14:07:45 -0700307 ecmd->duplex = -1;
308 }
309
Auke Kok9a799d72007-09-15 14:07:45 -0700310 return 0;
311}
312
313static int ixgbe_set_settings(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700314 struct ethtool_cmd *ecmd)
Auke Kok9a799d72007-09-15 14:07:45 -0700315{
316 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Ayyappan Veeraiyan735441f2008-02-01 15:58:54 -0800317 struct ixgbe_hw *hw = &adapter->hw;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700318 u32 advertised, old;
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000319 s32 err = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700320
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000321 if ((hw->phy.media_type == ixgbe_media_type_copper) ||
Mallikarjuna R Chilakalaa3801372009-06-30 11:44:16 +0000322 (hw->phy.multispeed_fiber)) {
Emil Tantilovabcc80d2011-07-29 06:46:10 +0000323 /*
324 * this function does not support duplex forcing, but can
325 * limit the advertising of the adapter to the specified speed
326 */
Emil Tantilovabcc80d2011-07-29 06:46:10 +0000327 if (ecmd->advertising & ~ecmd->supported)
328 return -EINVAL;
329
Emil Tantiloved33ff62013-08-30 07:55:24 +0000330 /* only allow one speed at a time if no autoneg */
331 if (!ecmd->autoneg && hw->phy.multispeed_fiber) {
332 if (ecmd->advertising ==
333 (ADVERTISED_10000baseT_Full |
334 ADVERTISED_1000baseT_Full))
335 return -EINVAL;
336 }
337
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700338 old = hw->phy.autoneg_advertised;
339 advertised = 0;
340 if (ecmd->advertising & ADVERTISED_10000baseT_Full)
341 advertised |= IXGBE_LINK_SPEED_10GB_FULL;
342
343 if (ecmd->advertising & ADVERTISED_1000baseT_Full)
344 advertised |= IXGBE_LINK_SPEED_1GB_FULL;
345
Emil Tantilov2b642ca2011-03-04 09:06:10 +0000346 if (ecmd->advertising & ADVERTISED_100baseT_Full)
347 advertised |= IXGBE_LINK_SPEED_100_FULL;
348
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700349 if (old == advertised)
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000350 return err;
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700351 /* this sets the link speed and restarts auto-neg */
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000352 hw->mac.autotry_restart = true;
Josh Hayfd0326f2012-12-15 03:28:30 +0000353 err = hw->mac.ops.setup_link(hw, advertised, true);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700354 if (err) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000355 e_info(probe, "setup link failed with code %d\n", err);
Josh Hayfd0326f2012-12-15 03:28:30 +0000356 hw->mac.ops.setup_link(hw, old, true);
Jesse Brandeburg0befdb32008-10-31 00:46:40 -0700357 }
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000358 } else {
359 /* in this case we currently only support 10Gb/FULL */
David Decotigny25db0332011-04-27 18:32:39 +0000360 u32 speed = ethtool_cmd_speed(ecmd);
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000361 if ((ecmd->autoneg == AUTONEG_ENABLE) ||
Mallikarjuna R Chilakalaa3801372009-06-30 11:44:16 +0000362 (ecmd->advertising != ADVERTISED_10000baseT_Full) ||
David Decotigny25db0332011-04-27 18:32:39 +0000363 (speed + ecmd->duplex != SPEED_10000 + DUPLEX_FULL))
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000364 return -EINVAL;
Auke Kok9a799d72007-09-15 14:07:45 -0700365 }
366
Mallikarjuna R Chilakala74766012009-06-04 11:11:34 +0000367 return err;
Auke Kok9a799d72007-09-15 14:07:45 -0700368}
369
370static void ixgbe_get_pauseparam(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700371 struct ethtool_pauseparam *pause)
Auke Kok9a799d72007-09-15 14:07:45 -0700372{
373 struct ixgbe_adapter *adapter = netdev_priv(netdev);
374 struct ixgbe_hw *hw = &adapter->hw;
375
Don Skidmore73d80953d2013-07-31 02:19:24 +0000376 if (ixgbe_device_supports_autoneg_fc(hw) &&
377 !hw->fc.disable_fc_autoneg)
Don Skidmore71fd5702009-03-31 21:35:05 +0000378 pause->autoneg = 1;
Don Skidmore73d80953d2013-07-31 02:19:24 +0000379 else
380 pause->autoneg = 0;
Auke Kok9a799d72007-09-15 14:07:45 -0700381
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800382 if (hw->fc.current_mode == ixgbe_fc_rx_pause) {
Auke Kok9a799d72007-09-15 14:07:45 -0700383 pause->rx_pause = 1;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800384 } else if (hw->fc.current_mode == ixgbe_fc_tx_pause) {
Auke Kok9a799d72007-09-15 14:07:45 -0700385 pause->tx_pause = 1;
Peter P Waskiewicz Jr0ecc0612009-02-06 21:46:54 -0800386 } else if (hw->fc.current_mode == ixgbe_fc_full) {
Auke Kok9a799d72007-09-15 14:07:45 -0700387 pause->rx_pause = 1;
388 pause->tx_pause = 1;
389 }
390}
391
392static int ixgbe_set_pauseparam(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700393 struct ethtool_pauseparam *pause)
Auke Kok9a799d72007-09-15 14:07:45 -0700394{
395 struct ixgbe_adapter *adapter = netdev_priv(netdev);
396 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck943561d2012-05-09 22:14:44 -0700397 struct ixgbe_fc_info fc = hw->fc;
Auke Kok9a799d72007-09-15 14:07:45 -0700398
Alexander Duyck943561d2012-05-09 22:14:44 -0700399 /* 82598 does no support link flow control with DCB enabled */
400 if ((hw->mac.type == ixgbe_mac_82598EB) &&
401 (adapter->flags & IXGBE_FLAG_DCB_ENABLED))
Peter P Waskiewicz Jr264857b2009-05-17 12:35:16 +0000402 return -EINVAL;
403
Jacob Kellerdb2adc22012-10-24 07:26:02 +0000404 /* some devices do not support autoneg of link flow control */
405 if ((pause->autoneg == AUTONEG_ENABLE) &&
Don Skidmore73d80953d2013-07-31 02:19:24 +0000406 !ixgbe_device_supports_autoneg_fc(hw))
Jacob Kellerdb2adc22012-10-24 07:26:02 +0000407 return -EINVAL;
408
Alexander Duyck943561d2012-05-09 22:14:44 -0700409 fc.disable_fc_autoneg = (pause->autoneg != AUTONEG_ENABLE);
Don Skidmore71fd5702009-03-31 21:35:05 +0000410
Don Skidmore1c4f0ef2010-04-27 11:31:06 +0000411 if ((pause->rx_pause && pause->tx_pause) || pause->autoneg)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000412 fc.requested_mode = ixgbe_fc_full;
Auke Kok9a799d72007-09-15 14:07:45 -0700413 else if (pause->rx_pause && !pause->tx_pause)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000414 fc.requested_mode = ixgbe_fc_rx_pause;
Auke Kok9a799d72007-09-15 14:07:45 -0700415 else if (!pause->rx_pause && pause->tx_pause)
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000416 fc.requested_mode = ixgbe_fc_tx_pause;
Ayyappan Veeraiyan9c83b0702008-02-01 15:58:59 -0800417 else
Alexander Duyck943561d2012-05-09 22:14:44 -0700418 fc.requested_mode = ixgbe_fc_none;
Mallikarjuna R Chilakala620fa032009-06-04 11:11:13 +0000419
420 /* if the thing changed then we'll update and use new autoneg */
421 if (memcmp(&fc, &hw->fc, sizeof(struct ixgbe_fc_info))) {
422 hw->fc = fc;
423 if (netif_running(netdev))
424 ixgbe_reinit_locked(adapter);
425 else
426 ixgbe_reset(adapter);
427 }
Auke Kok9a799d72007-09-15 14:07:45 -0700428
429 return 0;
430}
431
Auke Kok9a799d72007-09-15 14:07:45 -0700432static u32 ixgbe_get_msglevel(struct net_device *netdev)
433{
434 struct ixgbe_adapter *adapter = netdev_priv(netdev);
435 return adapter->msg_enable;
436}
437
438static void ixgbe_set_msglevel(struct net_device *netdev, u32 data)
439{
440 struct ixgbe_adapter *adapter = netdev_priv(netdev);
441 adapter->msg_enable = data;
442}
443
444static int ixgbe_get_regs_len(struct net_device *netdev)
445{
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700446#define IXGBE_REGS_LEN 1139
Auke Kok9a799d72007-09-15 14:07:45 -0700447 return IXGBE_REGS_LEN * sizeof(u32);
448}
449
450#define IXGBE_GET_STAT(_A_, _R_) _A_->stats._R_
451
452static void ixgbe_get_regs(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700453 struct ethtool_regs *regs, void *p)
Auke Kok9a799d72007-09-15 14:07:45 -0700454{
455 struct ixgbe_adapter *adapter = netdev_priv(netdev);
456 struct ixgbe_hw *hw = &adapter->hw;
457 u32 *regs_buff = p;
458 u8 i;
459
460 memset(p, 0, IXGBE_REGS_LEN * sizeof(u32));
461
Emil Tantilovc4a56de2013-04-19 09:31:17 +0000462 regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
463 hw->device_id;
Auke Kok9a799d72007-09-15 14:07:45 -0700464
465 /* General Registers */
466 regs_buff[0] = IXGBE_READ_REG(hw, IXGBE_CTRL);
467 regs_buff[1] = IXGBE_READ_REG(hw, IXGBE_STATUS);
468 regs_buff[2] = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT);
469 regs_buff[3] = IXGBE_READ_REG(hw, IXGBE_ESDP);
470 regs_buff[4] = IXGBE_READ_REG(hw, IXGBE_EODSDP);
471 regs_buff[5] = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
472 regs_buff[6] = IXGBE_READ_REG(hw, IXGBE_FRTIMER);
473 regs_buff[7] = IXGBE_READ_REG(hw, IXGBE_TCPTIMER);
474
475 /* NVM Register */
476 regs_buff[8] = IXGBE_READ_REG(hw, IXGBE_EEC);
477 regs_buff[9] = IXGBE_READ_REG(hw, IXGBE_EERD);
478 regs_buff[10] = IXGBE_READ_REG(hw, IXGBE_FLA);
479 regs_buff[11] = IXGBE_READ_REG(hw, IXGBE_EEMNGCTL);
480 regs_buff[12] = IXGBE_READ_REG(hw, IXGBE_EEMNGDATA);
481 regs_buff[13] = IXGBE_READ_REG(hw, IXGBE_FLMNGCTL);
482 regs_buff[14] = IXGBE_READ_REG(hw, IXGBE_FLMNGDATA);
483 regs_buff[15] = IXGBE_READ_REG(hw, IXGBE_FLMNGCNT);
484 regs_buff[16] = IXGBE_READ_REG(hw, IXGBE_FLOP);
485 regs_buff[17] = IXGBE_READ_REG(hw, IXGBE_GRC);
486
487 /* Interrupt */
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700488 /* don't read EICR because it can clear interrupt causes, instead
489 * read EICS which is a shadow but doesn't clear EICR */
490 regs_buff[18] = IXGBE_READ_REG(hw, IXGBE_EICS);
Auke Kok9a799d72007-09-15 14:07:45 -0700491 regs_buff[19] = IXGBE_READ_REG(hw, IXGBE_EICS);
492 regs_buff[20] = IXGBE_READ_REG(hw, IXGBE_EIMS);
493 regs_buff[21] = IXGBE_READ_REG(hw, IXGBE_EIMC);
494 regs_buff[22] = IXGBE_READ_REG(hw, IXGBE_EIAC);
495 regs_buff[23] = IXGBE_READ_REG(hw, IXGBE_EIAM);
496 regs_buff[24] = IXGBE_READ_REG(hw, IXGBE_EITR(0));
497 regs_buff[25] = IXGBE_READ_REG(hw, IXGBE_IVAR(0));
498 regs_buff[26] = IXGBE_READ_REG(hw, IXGBE_MSIXT);
499 regs_buff[27] = IXGBE_READ_REG(hw, IXGBE_MSIXPBA);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700500 regs_buff[28] = IXGBE_READ_REG(hw, IXGBE_PBACL(0));
Auke Kok9a799d72007-09-15 14:07:45 -0700501 regs_buff[29] = IXGBE_READ_REG(hw, IXGBE_GPIE);
502
503 /* Flow Control */
504 regs_buff[30] = IXGBE_READ_REG(hw, IXGBE_PFCTOP);
505 regs_buff[31] = IXGBE_READ_REG(hw, IXGBE_FCTTV(0));
506 regs_buff[32] = IXGBE_READ_REG(hw, IXGBE_FCTTV(1));
507 regs_buff[33] = IXGBE_READ_REG(hw, IXGBE_FCTTV(2));
508 regs_buff[34] = IXGBE_READ_REG(hw, IXGBE_FCTTV(3));
Alexander Duyckbd508172010-11-16 19:27:03 -0800509 for (i = 0; i < 8; i++) {
510 switch (hw->mac.type) {
511 case ixgbe_mac_82598EB:
512 regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTL(i));
513 regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTH(i));
514 break;
515 case ixgbe_mac_82599EB:
Emil Tantilov80bb25e2011-07-27 04:16:29 +0000516 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -0800517 regs_buff[35 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTL_82599(i));
518 regs_buff[43 + i] = IXGBE_READ_REG(hw, IXGBE_FCRTH_82599(i));
519 break;
520 default:
521 break;
522 }
523 }
Auke Kok9a799d72007-09-15 14:07:45 -0700524 regs_buff[51] = IXGBE_READ_REG(hw, IXGBE_FCRTV);
525 regs_buff[52] = IXGBE_READ_REG(hw, IXGBE_TFCS);
526
527 /* Receive DMA */
528 for (i = 0; i < 64; i++)
529 regs_buff[53 + i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i));
530 for (i = 0; i < 64; i++)
531 regs_buff[117 + i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i));
532 for (i = 0; i < 64; i++)
533 regs_buff[181 + i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i));
534 for (i = 0; i < 64; i++)
535 regs_buff[245 + i] = IXGBE_READ_REG(hw, IXGBE_RDH(i));
536 for (i = 0; i < 64; i++)
537 regs_buff[309 + i] = IXGBE_READ_REG(hw, IXGBE_RDT(i));
538 for (i = 0; i < 64; i++)
539 regs_buff[373 + i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i));
540 for (i = 0; i < 16; i++)
541 regs_buff[437 + i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i));
542 for (i = 0; i < 16; i++)
543 regs_buff[453 + i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i));
544 regs_buff[469] = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
545 for (i = 0; i < 8; i++)
546 regs_buff[470 + i] = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i));
547 regs_buff[478] = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
548 regs_buff[479] = IXGBE_READ_REG(hw, IXGBE_DROPEN);
549
550 /* Receive */
551 regs_buff[480] = IXGBE_READ_REG(hw, IXGBE_RXCSUM);
552 regs_buff[481] = IXGBE_READ_REG(hw, IXGBE_RFCTL);
553 for (i = 0; i < 16; i++)
554 regs_buff[482 + i] = IXGBE_READ_REG(hw, IXGBE_RAL(i));
555 for (i = 0; i < 16; i++)
556 regs_buff[498 + i] = IXGBE_READ_REG(hw, IXGBE_RAH(i));
Jesse Brandeburgc44ade92008-09-11 19:59:59 -0700557 regs_buff[514] = IXGBE_READ_REG(hw, IXGBE_PSRTYPE(0));
Auke Kok9a799d72007-09-15 14:07:45 -0700558 regs_buff[515] = IXGBE_READ_REG(hw, IXGBE_FCTRL);
559 regs_buff[516] = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
560 regs_buff[517] = IXGBE_READ_REG(hw, IXGBE_MCSTCTRL);
561 regs_buff[518] = IXGBE_READ_REG(hw, IXGBE_MRQC);
562 regs_buff[519] = IXGBE_READ_REG(hw, IXGBE_VMD_CTL);
563 for (i = 0; i < 8; i++)
564 regs_buff[520 + i] = IXGBE_READ_REG(hw, IXGBE_IMIR(i));
565 for (i = 0; i < 8; i++)
566 regs_buff[528 + i] = IXGBE_READ_REG(hw, IXGBE_IMIREXT(i));
567 regs_buff[536] = IXGBE_READ_REG(hw, IXGBE_IMIRVP);
568
569 /* Transmit */
570 for (i = 0; i < 32; i++)
571 regs_buff[537 + i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i));
572 for (i = 0; i < 32; i++)
573 regs_buff[569 + i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i));
574 for (i = 0; i < 32; i++)
575 regs_buff[601 + i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i));
576 for (i = 0; i < 32; i++)
577 regs_buff[633 + i] = IXGBE_READ_REG(hw, IXGBE_TDH(i));
578 for (i = 0; i < 32; i++)
579 regs_buff[665 + i] = IXGBE_READ_REG(hw, IXGBE_TDT(i));
580 for (i = 0; i < 32; i++)
581 regs_buff[697 + i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i));
582 for (i = 0; i < 32; i++)
583 regs_buff[729 + i] = IXGBE_READ_REG(hw, IXGBE_TDWBAL(i));
584 for (i = 0; i < 32; i++)
585 regs_buff[761 + i] = IXGBE_READ_REG(hw, IXGBE_TDWBAH(i));
586 regs_buff[793] = IXGBE_READ_REG(hw, IXGBE_DTXCTL);
587 for (i = 0; i < 16; i++)
588 regs_buff[794 + i] = IXGBE_READ_REG(hw, IXGBE_DCA_TXCTRL(i));
589 regs_buff[810] = IXGBE_READ_REG(hw, IXGBE_TIPG);
590 for (i = 0; i < 8; i++)
591 regs_buff[811 + i] = IXGBE_READ_REG(hw, IXGBE_TXPBSIZE(i));
592 regs_buff[819] = IXGBE_READ_REG(hw, IXGBE_MNGTXMAP);
593
594 /* Wake Up */
595 regs_buff[820] = IXGBE_READ_REG(hw, IXGBE_WUC);
596 regs_buff[821] = IXGBE_READ_REG(hw, IXGBE_WUFC);
597 regs_buff[822] = IXGBE_READ_REG(hw, IXGBE_WUS);
598 regs_buff[823] = IXGBE_READ_REG(hw, IXGBE_IPAV);
599 regs_buff[824] = IXGBE_READ_REG(hw, IXGBE_IP4AT);
600 regs_buff[825] = IXGBE_READ_REG(hw, IXGBE_IP6AT);
601 regs_buff[826] = IXGBE_READ_REG(hw, IXGBE_WUPL);
602 regs_buff[827] = IXGBE_READ_REG(hw, IXGBE_WUPM);
PJ Waskiewicz11afc1b2009-02-27 15:44:30 +0000603 regs_buff[828] = IXGBE_READ_REG(hw, IXGBE_FHFT(0));
Auke Kok9a799d72007-09-15 14:07:45 -0700604
Alexander Duyck673ac602010-11-16 19:27:05 -0800605 /* DCB */
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700606 regs_buff[829] = IXGBE_READ_REG(hw, IXGBE_RMCS); /* same as FCCFG */
607 regs_buff[831] = IXGBE_READ_REG(hw, IXGBE_PDPMCS); /* same as RTTPCS */
608
609 switch (hw->mac.type) {
610 case ixgbe_mac_82598EB:
611 regs_buff[830] = IXGBE_READ_REG(hw, IXGBE_DPMCS);
612 regs_buff[832] = IXGBE_READ_REG(hw, IXGBE_RUPPBMR);
613 for (i = 0; i < 8; i++)
614 regs_buff[833 + i] =
615 IXGBE_READ_REG(hw, IXGBE_RT2CR(i));
616 for (i = 0; i < 8; i++)
617 regs_buff[841 + i] =
618 IXGBE_READ_REG(hw, IXGBE_RT2SR(i));
619 for (i = 0; i < 8; i++)
620 regs_buff[849 + i] =
621 IXGBE_READ_REG(hw, IXGBE_TDTQ2TCCR(i));
622 for (i = 0; i < 8; i++)
623 regs_buff[857 + i] =
624 IXGBE_READ_REG(hw, IXGBE_TDTQ2TCSR(i));
625 break;
626 case ixgbe_mac_82599EB:
627 case ixgbe_mac_X540:
628 regs_buff[830] = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
629 regs_buff[832] = IXGBE_READ_REG(hw, IXGBE_RTRPCS);
630 for (i = 0; i < 8; i++)
631 regs_buff[833 + i] =
632 IXGBE_READ_REG(hw, IXGBE_RTRPT4C(i));
633 for (i = 0; i < 8; i++)
634 regs_buff[841 + i] =
635 IXGBE_READ_REG(hw, IXGBE_RTRPT4S(i));
636 for (i = 0; i < 8; i++)
637 regs_buff[849 + i] =
638 IXGBE_READ_REG(hw, IXGBE_RTTDT2C(i));
639 for (i = 0; i < 8; i++)
640 regs_buff[857 + i] =
641 IXGBE_READ_REG(hw, IXGBE_RTTDT2S(i));
642 break;
643 default:
644 break;
645 }
646
Auke Kok9a799d72007-09-15 14:07:45 -0700647 for (i = 0; i < 8; i++)
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700648 regs_buff[865 + i] =
649 IXGBE_READ_REG(hw, IXGBE_TDPT2TCCR(i)); /* same as RTTPT2C */
Auke Kok9a799d72007-09-15 14:07:45 -0700650 for (i = 0; i < 8; i++)
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700651 regs_buff[873 + i] =
652 IXGBE_READ_REG(hw, IXGBE_TDPT2TCSR(i)); /* same as RTTPT2S */
Auke Kok9a799d72007-09-15 14:07:45 -0700653
654 /* Statistics */
655 regs_buff[881] = IXGBE_GET_STAT(adapter, crcerrs);
656 regs_buff[882] = IXGBE_GET_STAT(adapter, illerrc);
657 regs_buff[883] = IXGBE_GET_STAT(adapter, errbc);
658 regs_buff[884] = IXGBE_GET_STAT(adapter, mspdc);
659 for (i = 0; i < 8; i++)
660 regs_buff[885 + i] = IXGBE_GET_STAT(adapter, mpc[i]);
661 regs_buff[893] = IXGBE_GET_STAT(adapter, mlfc);
662 regs_buff[894] = IXGBE_GET_STAT(adapter, mrfc);
663 regs_buff[895] = IXGBE_GET_STAT(adapter, rlec);
664 regs_buff[896] = IXGBE_GET_STAT(adapter, lxontxc);
665 regs_buff[897] = IXGBE_GET_STAT(adapter, lxonrxc);
666 regs_buff[898] = IXGBE_GET_STAT(adapter, lxofftxc);
667 regs_buff[899] = IXGBE_GET_STAT(adapter, lxoffrxc);
668 for (i = 0; i < 8; i++)
669 regs_buff[900 + i] = IXGBE_GET_STAT(adapter, pxontxc[i]);
670 for (i = 0; i < 8; i++)
671 regs_buff[908 + i] = IXGBE_GET_STAT(adapter, pxonrxc[i]);
672 for (i = 0; i < 8; i++)
673 regs_buff[916 + i] = IXGBE_GET_STAT(adapter, pxofftxc[i]);
674 for (i = 0; i < 8; i++)
675 regs_buff[924 + i] = IXGBE_GET_STAT(adapter, pxoffrxc[i]);
676 regs_buff[932] = IXGBE_GET_STAT(adapter, prc64);
677 regs_buff[933] = IXGBE_GET_STAT(adapter, prc127);
678 regs_buff[934] = IXGBE_GET_STAT(adapter, prc255);
679 regs_buff[935] = IXGBE_GET_STAT(adapter, prc511);
680 regs_buff[936] = IXGBE_GET_STAT(adapter, prc1023);
681 regs_buff[937] = IXGBE_GET_STAT(adapter, prc1522);
682 regs_buff[938] = IXGBE_GET_STAT(adapter, gprc);
683 regs_buff[939] = IXGBE_GET_STAT(adapter, bprc);
684 regs_buff[940] = IXGBE_GET_STAT(adapter, mprc);
685 regs_buff[941] = IXGBE_GET_STAT(adapter, gptc);
686 regs_buff[942] = IXGBE_GET_STAT(adapter, gorc);
687 regs_buff[944] = IXGBE_GET_STAT(adapter, gotc);
688 for (i = 0; i < 8; i++)
689 regs_buff[946 + i] = IXGBE_GET_STAT(adapter, rnbc[i]);
690 regs_buff[954] = IXGBE_GET_STAT(adapter, ruc);
691 regs_buff[955] = IXGBE_GET_STAT(adapter, rfc);
692 regs_buff[956] = IXGBE_GET_STAT(adapter, roc);
693 regs_buff[957] = IXGBE_GET_STAT(adapter, rjc);
694 regs_buff[958] = IXGBE_GET_STAT(adapter, mngprc);
695 regs_buff[959] = IXGBE_GET_STAT(adapter, mngpdc);
696 regs_buff[960] = IXGBE_GET_STAT(adapter, mngptc);
697 regs_buff[961] = IXGBE_GET_STAT(adapter, tor);
698 regs_buff[963] = IXGBE_GET_STAT(adapter, tpr);
699 regs_buff[964] = IXGBE_GET_STAT(adapter, tpt);
700 regs_buff[965] = IXGBE_GET_STAT(adapter, ptc64);
701 regs_buff[966] = IXGBE_GET_STAT(adapter, ptc127);
702 regs_buff[967] = IXGBE_GET_STAT(adapter, ptc255);
703 regs_buff[968] = IXGBE_GET_STAT(adapter, ptc511);
704 regs_buff[969] = IXGBE_GET_STAT(adapter, ptc1023);
705 regs_buff[970] = IXGBE_GET_STAT(adapter, ptc1522);
706 regs_buff[971] = IXGBE_GET_STAT(adapter, mptc);
707 regs_buff[972] = IXGBE_GET_STAT(adapter, bptc);
708 regs_buff[973] = IXGBE_GET_STAT(adapter, xec);
709 for (i = 0; i < 16; i++)
710 regs_buff[974 + i] = IXGBE_GET_STAT(adapter, qprc[i]);
711 for (i = 0; i < 16; i++)
712 regs_buff[990 + i] = IXGBE_GET_STAT(adapter, qptc[i]);
713 for (i = 0; i < 16; i++)
714 regs_buff[1006 + i] = IXGBE_GET_STAT(adapter, qbrc[i]);
715 for (i = 0; i < 16; i++)
716 regs_buff[1022 + i] = IXGBE_GET_STAT(adapter, qbtc[i]);
717
718 /* MAC */
719 regs_buff[1038] = IXGBE_READ_REG(hw, IXGBE_PCS1GCFIG);
720 regs_buff[1039] = IXGBE_READ_REG(hw, IXGBE_PCS1GLCTL);
721 regs_buff[1040] = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA);
722 regs_buff[1041] = IXGBE_READ_REG(hw, IXGBE_PCS1GDBG0);
723 regs_buff[1042] = IXGBE_READ_REG(hw, IXGBE_PCS1GDBG1);
724 regs_buff[1043] = IXGBE_READ_REG(hw, IXGBE_PCS1GANA);
725 regs_buff[1044] = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP);
726 regs_buff[1045] = IXGBE_READ_REG(hw, IXGBE_PCS1GANNP);
727 regs_buff[1046] = IXGBE_READ_REG(hw, IXGBE_PCS1GANLPNP);
728 regs_buff[1047] = IXGBE_READ_REG(hw, IXGBE_HLREG0);
729 regs_buff[1048] = IXGBE_READ_REG(hw, IXGBE_HLREG1);
730 regs_buff[1049] = IXGBE_READ_REG(hw, IXGBE_PAP);
731 regs_buff[1050] = IXGBE_READ_REG(hw, IXGBE_MACA);
732 regs_buff[1051] = IXGBE_READ_REG(hw, IXGBE_APAE);
733 regs_buff[1052] = IXGBE_READ_REG(hw, IXGBE_ARD);
734 regs_buff[1053] = IXGBE_READ_REG(hw, IXGBE_AIS);
735 regs_buff[1054] = IXGBE_READ_REG(hw, IXGBE_MSCA);
736 regs_buff[1055] = IXGBE_READ_REG(hw, IXGBE_MSRWD);
737 regs_buff[1056] = IXGBE_READ_REG(hw, IXGBE_MLADD);
738 regs_buff[1057] = IXGBE_READ_REG(hw, IXGBE_MHADD);
739 regs_buff[1058] = IXGBE_READ_REG(hw, IXGBE_TREG);
740 regs_buff[1059] = IXGBE_READ_REG(hw, IXGBE_PCSS1);
741 regs_buff[1060] = IXGBE_READ_REG(hw, IXGBE_PCSS2);
742 regs_buff[1061] = IXGBE_READ_REG(hw, IXGBE_XPCSS);
743 regs_buff[1062] = IXGBE_READ_REG(hw, IXGBE_SERDESC);
744 regs_buff[1063] = IXGBE_READ_REG(hw, IXGBE_MACS);
745 regs_buff[1064] = IXGBE_READ_REG(hw, IXGBE_AUTOC);
746 regs_buff[1065] = IXGBE_READ_REG(hw, IXGBE_LINKS);
747 regs_buff[1066] = IXGBE_READ_REG(hw, IXGBE_AUTOC2);
748 regs_buff[1067] = IXGBE_READ_REG(hw, IXGBE_AUTOC3);
749 regs_buff[1068] = IXGBE_READ_REG(hw, IXGBE_ANLP1);
750 regs_buff[1069] = IXGBE_READ_REG(hw, IXGBE_ANLP2);
751 regs_buff[1070] = IXGBE_READ_REG(hw, IXGBE_ATLASCTL);
752
753 /* Diagnostic */
754 regs_buff[1071] = IXGBE_READ_REG(hw, IXGBE_RDSTATCTL);
755 for (i = 0; i < 8; i++)
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700756 regs_buff[1072 + i] = IXGBE_READ_REG(hw, IXGBE_RDSTAT(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700757 regs_buff[1080] = IXGBE_READ_REG(hw, IXGBE_RDHMPN);
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700758 for (i = 0; i < 4; i++)
759 regs_buff[1081 + i] = IXGBE_READ_REG(hw, IXGBE_RIC_DW(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700760 regs_buff[1085] = IXGBE_READ_REG(hw, IXGBE_RDPROBE);
761 regs_buff[1086] = IXGBE_READ_REG(hw, IXGBE_TDSTATCTL);
762 for (i = 0; i < 8; i++)
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700763 regs_buff[1087 + i] = IXGBE_READ_REG(hw, IXGBE_TDSTAT(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700764 regs_buff[1095] = IXGBE_READ_REG(hw, IXGBE_TDHMPN);
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700765 for (i = 0; i < 4; i++)
766 regs_buff[1096 + i] = IXGBE_READ_REG(hw, IXGBE_TIC_DW(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700767 regs_buff[1100] = IXGBE_READ_REG(hw, IXGBE_TDPROBE);
768 regs_buff[1101] = IXGBE_READ_REG(hw, IXGBE_TXBUFCTRL);
769 regs_buff[1102] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA0);
770 regs_buff[1103] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA1);
771 regs_buff[1104] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA2);
772 regs_buff[1105] = IXGBE_READ_REG(hw, IXGBE_TXBUFDATA3);
773 regs_buff[1106] = IXGBE_READ_REG(hw, IXGBE_RXBUFCTRL);
774 regs_buff[1107] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA0);
775 regs_buff[1108] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA1);
776 regs_buff[1109] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA2);
777 regs_buff[1110] = IXGBE_READ_REG(hw, IXGBE_RXBUFDATA3);
778 for (i = 0; i < 8; i++)
Jesse Brandeburg98c00a12008-09-11 19:56:41 -0700779 regs_buff[1111 + i] = IXGBE_READ_REG(hw, IXGBE_PCIE_DIAG(i));
Auke Kok9a799d72007-09-15 14:07:45 -0700780 regs_buff[1119] = IXGBE_READ_REG(hw, IXGBE_RFVAL);
781 regs_buff[1120] = IXGBE_READ_REG(hw, IXGBE_MDFTC1);
782 regs_buff[1121] = IXGBE_READ_REG(hw, IXGBE_MDFTC2);
783 regs_buff[1122] = IXGBE_READ_REG(hw, IXGBE_MDFTFIFO1);
784 regs_buff[1123] = IXGBE_READ_REG(hw, IXGBE_MDFTFIFO2);
785 regs_buff[1124] = IXGBE_READ_REG(hw, IXGBE_MDFTS);
786 regs_buff[1125] = IXGBE_READ_REG(hw, IXGBE_PCIEECCCTL);
787 regs_buff[1126] = IXGBE_READ_REG(hw, IXGBE_PBTXECC);
788 regs_buff[1127] = IXGBE_READ_REG(hw, IXGBE_PBRXECC);
Emil Tantilov217995e2011-09-15 06:23:10 +0000789
790 /* 82599 X540 specific registers */
791 regs_buff[1128] = IXGBE_READ_REG(hw, IXGBE_MFLCN);
Leonardo Potenza51e409f2013-10-01 04:33:52 -0700792
793 /* 82599 X540 specific DCB registers */
794 regs_buff[1129] = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC);
795 regs_buff[1130] = IXGBE_READ_REG(hw, IXGBE_RTTUP2TC);
796 for (i = 0; i < 4; i++)
797 regs_buff[1131 + i] = IXGBE_READ_REG(hw, IXGBE_TXLLQ(i));
798 regs_buff[1135] = IXGBE_READ_REG(hw, IXGBE_RTTBCNRM);
799 /* same as RTTQCNRM */
800 regs_buff[1136] = IXGBE_READ_REG(hw, IXGBE_RTTBCNRD);
801 /* same as RTTQCNRR */
802
803 /* X540 specific DCB registers */
804 regs_buff[1137] = IXGBE_READ_REG(hw, IXGBE_RTTQCNCR);
805 regs_buff[1138] = IXGBE_READ_REG(hw, IXGBE_RTTQCNTG);
Auke Kok9a799d72007-09-15 14:07:45 -0700806}
807
808static int ixgbe_get_eeprom_len(struct net_device *netdev)
809{
810 struct ixgbe_adapter *adapter = netdev_priv(netdev);
811 return adapter->hw.eeprom.word_size * 2;
812}
813
814static int ixgbe_get_eeprom(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700815 struct ethtool_eeprom *eeprom, u8 *bytes)
Auke Kok9a799d72007-09-15 14:07:45 -0700816{
817 struct ixgbe_adapter *adapter = netdev_priv(netdev);
818 struct ixgbe_hw *hw = &adapter->hw;
819 u16 *eeprom_buff;
820 int first_word, last_word, eeprom_len;
821 int ret_val = 0;
822 u16 i;
823
824 if (eeprom->len == 0)
825 return -EINVAL;
826
827 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
828
829 first_word = eeprom->offset >> 1;
830 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
831 eeprom_len = last_word - first_word + 1;
832
833 eeprom_buff = kmalloc(sizeof(u16) * eeprom_len, GFP_KERNEL);
834 if (!eeprom_buff)
835 return -ENOMEM;
836
Emil Tantilov68c70052011-04-20 08:49:06 +0000837 ret_val = hw->eeprom.ops.read_buffer(hw, first_word, eeprom_len,
838 eeprom_buff);
Auke Kok9a799d72007-09-15 14:07:45 -0700839
840 /* Device's eeprom is always little-endian, word addressable */
841 for (i = 0; i < eeprom_len; i++)
842 le16_to_cpus(&eeprom_buff[i]);
843
844 memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1), eeprom->len);
845 kfree(eeprom_buff);
846
847 return ret_val;
848}
849
Emil Tantilov2fa5eef2011-10-06 08:57:04 +0000850static int ixgbe_set_eeprom(struct net_device *netdev,
851 struct ethtool_eeprom *eeprom, u8 *bytes)
852{
853 struct ixgbe_adapter *adapter = netdev_priv(netdev);
854 struct ixgbe_hw *hw = &adapter->hw;
855 u16 *eeprom_buff;
856 void *ptr;
857 int max_len, first_word, last_word, ret_val = 0;
858 u16 i;
859
860 if (eeprom->len == 0)
861 return -EINVAL;
862
863 if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16)))
864 return -EINVAL;
865
866 max_len = hw->eeprom.word_size * 2;
867
868 first_word = eeprom->offset >> 1;
869 last_word = (eeprom->offset + eeprom->len - 1) >> 1;
870 eeprom_buff = kmalloc(max_len, GFP_KERNEL);
871 if (!eeprom_buff)
872 return -ENOMEM;
873
874 ptr = eeprom_buff;
875
876 if (eeprom->offset & 1) {
877 /*
878 * need read/modify/write of first changed EEPROM word
879 * only the second byte of the word is being modified
880 */
881 ret_val = hw->eeprom.ops.read(hw, first_word, &eeprom_buff[0]);
882 if (ret_val)
883 goto err;
884
885 ptr++;
886 }
887 if ((eeprom->offset + eeprom->len) & 1) {
888 /*
889 * need read/modify/write of last changed EEPROM word
890 * only the first byte of the word is being modified
891 */
892 ret_val = hw->eeprom.ops.read(hw, last_word,
893 &eeprom_buff[last_word - first_word]);
894 if (ret_val)
895 goto err;
896 }
897
898 /* Device's eeprom is always little-endian, word addressable */
899 for (i = 0; i < last_word - first_word + 1; i++)
900 le16_to_cpus(&eeprom_buff[i]);
901
902 memcpy(ptr, bytes, eeprom->len);
903
904 for (i = 0; i < last_word - first_word + 1; i++)
905 cpu_to_le16s(&eeprom_buff[i]);
906
907 ret_val = hw->eeprom.ops.write_buffer(hw, first_word,
908 last_word - first_word + 1,
909 eeprom_buff);
910
911 /* Update the checksum */
912 if (ret_val == 0)
913 hw->eeprom.ops.update_checksum(hw);
914
915err:
916 kfree(eeprom_buff);
917 return ret_val;
918}
919
Auke Kok9a799d72007-09-15 14:07:45 -0700920static void ixgbe_get_drvinfo(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700921 struct ethtool_drvinfo *drvinfo)
Auke Kok9a799d72007-09-15 14:07:45 -0700922{
923 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Emil Tantilov15e52092011-09-29 05:01:29 +0000924 u32 nvm_track_id;
Auke Kok9a799d72007-09-15 14:07:45 -0700925
Rick Jones612a94d2011-11-14 08:13:25 +0000926 strlcpy(drvinfo->driver, ixgbe_driver_name, sizeof(drvinfo->driver));
927 strlcpy(drvinfo->version, ixgbe_driver_version,
928 sizeof(drvinfo->version));
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -0800929
Emil Tantilov15e52092011-09-29 05:01:29 +0000930 nvm_track_id = (adapter->eeprom_verh << 16) |
931 adapter->eeprom_verl;
Rick Jones612a94d2011-11-14 08:13:25 +0000932 snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), "0x%08x",
Emil Tantilov15e52092011-09-29 05:01:29 +0000933 nvm_track_id);
Peter P Waskiewicz Jr34b03682009-02-05 23:54:42 -0800934
Rick Jones612a94d2011-11-14 08:13:25 +0000935 strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
936 sizeof(drvinfo->bus_info));
Auke Kok9a799d72007-09-15 14:07:45 -0700937 drvinfo->n_stats = IXGBE_STATS_LEN;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +0000938 drvinfo->testinfo_len = IXGBE_TEST_LEN;
Auke Kok9a799d72007-09-15 14:07:45 -0700939 drvinfo->regdump_len = ixgbe_get_regs_len(netdev);
940}
941
942static void ixgbe_get_ringparam(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700943 struct ethtool_ringparam *ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700944{
945 struct ixgbe_adapter *adapter = netdev_priv(netdev);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000946 struct ixgbe_ring *tx_ring = adapter->tx_ring[0];
947 struct ixgbe_ring *rx_ring = adapter->rx_ring[0];
Auke Kok9a799d72007-09-15 14:07:45 -0700948
949 ring->rx_max_pending = IXGBE_MAX_RXD;
950 ring->tx_max_pending = IXGBE_MAX_TXD;
Auke Kok9a799d72007-09-15 14:07:45 -0700951 ring->rx_pending = rx_ring->count;
952 ring->tx_pending = tx_ring->count;
Auke Kok9a799d72007-09-15 14:07:45 -0700953}
954
955static int ixgbe_set_ringparam(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -0700956 struct ethtool_ringparam *ring)
Auke Kok9a799d72007-09-15 14:07:45 -0700957{
958 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck1f4702a2012-09-12 07:09:51 +0000959 struct ixgbe_ring *temp_ring;
Alexander Duyck759884b2009-10-26 11:32:05 +0000960 int i, err = 0;
Jesse Brandeburgc431f972008-09-11 19:59:16 -0700961 u32 new_rx_count, new_tx_count;
Auke Kok9a799d72007-09-15 14:07:45 -0700962
963 if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending))
964 return -EINVAL;
965
Alexander Duyck1f4702a2012-09-12 07:09:51 +0000966 new_tx_count = clamp_t(u32, ring->tx_pending,
967 IXGBE_MIN_TXD, IXGBE_MAX_TXD);
Auke Kok9a799d72007-09-15 14:07:45 -0700968 new_tx_count = ALIGN(new_tx_count, IXGBE_REQ_TX_DESCRIPTOR_MULTIPLE);
969
Alexander Duyck1f4702a2012-09-12 07:09:51 +0000970 new_rx_count = clamp_t(u32, ring->rx_pending,
971 IXGBE_MIN_RXD, IXGBE_MAX_RXD);
972 new_rx_count = ALIGN(new_rx_count, IXGBE_REQ_RX_DESCRIPTOR_MULTIPLE);
973
974 if ((new_tx_count == adapter->tx_ring_count) &&
975 (new_rx_count == adapter->rx_ring_count)) {
Auke Kok9a799d72007-09-15 14:07:45 -0700976 /* nothing to do */
977 return 0;
978 }
979
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -0800980 while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state))
Don Skidmore032b4322011-03-18 09:32:53 +0000981 usleep_range(1000, 2000);
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -0800982
Alexander Duyck759884b2009-10-26 11:32:05 +0000983 if (!netif_running(adapter->netdev)) {
984 for (i = 0; i < adapter->num_tx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000985 adapter->tx_ring[i]->count = new_tx_count;
Alexander Duyck759884b2009-10-26 11:32:05 +0000986 for (i = 0; i < adapter->num_rx_queues; i++)
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000987 adapter->rx_ring[i]->count = new_rx_count;
Alexander Duyck759884b2009-10-26 11:32:05 +0000988 adapter->tx_ring_count = new_tx_count;
989 adapter->rx_ring_count = new_rx_count;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000990 goto clear_reset;
Alexander Duyck759884b2009-10-26 11:32:05 +0000991 }
992
Alexander Duyck1f4702a2012-09-12 07:09:51 +0000993 /* allocate temporary buffer to store rings in */
994 i = max_t(int, adapter->num_tx_queues, adapter->num_rx_queues);
995 temp_ring = vmalloc(i * sizeof(struct ixgbe_ring));
996
997 if (!temp_ring) {
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +0000998 err = -ENOMEM;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000999 goto clear_reset;
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001000 }
1001
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001002 ixgbe_down(adapter);
1003
1004 /*
1005 * Setup new Tx resources and free the old Tx resources in that order.
1006 * We can then assign the new resources to the rings via a memcpy.
1007 * The advantage to this approach is that we are guaranteed to still
1008 * have resources even in the case of an allocation failure.
1009 */
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001010 if (new_tx_count != adapter->tx_ring_count) {
Auke Kok9a799d72007-09-15 14:07:45 -07001011 for (i = 0; i < adapter->num_tx_queues; i++) {
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001012 memcpy(&temp_ring[i], adapter->tx_ring[i],
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001013 sizeof(struct ixgbe_ring));
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001014
1015 temp_ring[i].count = new_tx_count;
1016 err = ixgbe_setup_tx_resources(&temp_ring[i]);
Auke Kok9a799d72007-09-15 14:07:45 -07001017 if (err) {
Jesse Brandeburgc431f972008-09-11 19:59:16 -07001018 while (i) {
1019 i--;
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001020 ixgbe_free_tx_resources(&temp_ring[i]);
Jesse Brandeburgc431f972008-09-11 19:59:16 -07001021 }
Auke Kok9a799d72007-09-15 14:07:45 -07001022 goto err_setup;
1023 }
Auke Kok9a799d72007-09-15 14:07:45 -07001024 }
Jesse Brandeburgc431f972008-09-11 19:59:16 -07001025
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001026 for (i = 0; i < adapter->num_tx_queues; i++) {
1027 ixgbe_free_tx_resources(adapter->tx_ring[i]);
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001028
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001029 memcpy(adapter->tx_ring[i], &temp_ring[i],
1030 sizeof(struct ixgbe_ring));
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001031 }
1032
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001033 adapter->tx_ring_count = new_tx_count;
Alexander Duyck759884b2009-10-26 11:32:05 +00001034 }
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001035
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001036 /* Repeat the process for the Rx rings if needed */
1037 if (new_rx_count != adapter->rx_ring_count) {
1038 for (i = 0; i < adapter->num_rx_queues; i++) {
1039 memcpy(&temp_ring[i], adapter->rx_ring[i],
1040 sizeof(struct ixgbe_ring));
1041
1042 temp_ring[i].count = new_rx_count;
1043 err = ixgbe_setup_rx_resources(&temp_ring[i]);
1044 if (err) {
1045 while (i) {
1046 i--;
1047 ixgbe_free_rx_resources(&temp_ring[i]);
1048 }
1049 goto err_setup;
1050 }
1051
1052 }
1053
1054 for (i = 0; i < adapter->num_rx_queues; i++) {
1055 ixgbe_free_rx_resources(adapter->rx_ring[i]);
1056
1057 memcpy(adapter->rx_ring[i], &temp_ring[i],
1058 sizeof(struct ixgbe_ring));
1059 }
1060
1061 adapter->rx_ring_count = new_rx_count;
1062 }
1063
Mallikarjuna R Chilakalaf9ed8852009-03-31 21:35:24 +00001064err_setup:
Alexander Duyck1f4702a2012-09-12 07:09:51 +00001065 ixgbe_up(adapter);
1066 vfree(temp_ring);
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +00001067clear_reset:
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08001068 clear_bit(__IXGBE_RESETTING, &adapter->state);
Auke Kok9a799d72007-09-15 14:07:45 -07001069 return err;
1070}
1071
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001072static int ixgbe_get_sset_count(struct net_device *netdev, int sset)
Auke Kok9a799d72007-09-15 14:07:45 -07001073{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001074 switch (sset) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001075 case ETH_SS_TEST:
1076 return IXGBE_TEST_LEN;
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001077 case ETH_SS_STATS:
1078 return IXGBE_STATS_LEN;
1079 default:
1080 return -EOPNOTSUPP;
1081 }
Auke Kok9a799d72007-09-15 14:07:45 -07001082}
1083
1084static void ixgbe_get_ethtool_stats(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001085 struct ethtool_stats *stats, u64 *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001086{
1087 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Eric Dumazet28172732010-07-07 14:58:56 -07001088 struct rtnl_link_stats64 temp;
1089 const struct rtnl_link_stats64 *net_stats;
Eric Dumazetde1036b2010-10-20 23:00:04 +00001090 unsigned int start;
1091 struct ixgbe_ring *ring;
1092 int i, j;
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001093 char *p = NULL;
Auke Kok9a799d72007-09-15 14:07:45 -07001094
1095 ixgbe_update_stats(adapter);
Eric Dumazet28172732010-07-07 14:58:56 -07001096 net_stats = dev_get_stats(netdev, &temp);
Auke Kok9a799d72007-09-15 14:07:45 -07001097 for (i = 0; i < IXGBE_GLOBAL_STATS_LEN; i++) {
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001098 switch (ixgbe_gstrings_stats[i].type) {
1099 case NETDEV_STATS:
Eric Dumazet28172732010-07-07 14:58:56 -07001100 p = (char *) net_stats +
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001101 ixgbe_gstrings_stats[i].stat_offset;
1102 break;
1103 case IXGBE_STATS:
1104 p = (char *) adapter +
1105 ixgbe_gstrings_stats[i].stat_offset;
1106 break;
Josh Hayf752be92013-01-04 03:34:36 +00001107 default:
1108 data[i] = 0;
1109 continue;
Ajit Khaparde29c3a052009-10-13 01:47:33 +00001110 }
1111
Auke Kok9a799d72007-09-15 14:07:45 -07001112 data[i] = (ixgbe_gstrings_stats[i].sizeof_stat ==
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001113 sizeof(u64)) ? *(u64 *)p : *(u32 *)p;
Auke Kok9a799d72007-09-15 14:07:45 -07001114 }
Don Skidmorebd8a1b12013-06-28 05:35:50 +00001115 for (j = 0; j < netdev->num_tx_queues; j++) {
Eric Dumazetde1036b2010-10-20 23:00:04 +00001116 ring = adapter->tx_ring[j];
John Fastabend9cc00b52012-01-28 03:32:17 +00001117 if (!ring) {
1118 data[i] = 0;
1119 data[i+1] = 0;
1120 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001121#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001122 data[i] = 0;
1123 data[i+1] = 0;
1124 data[i+2] = 0;
1125 i += 3;
1126#endif
John Fastabend9cc00b52012-01-28 03:32:17 +00001127 continue;
1128 }
1129
Eric Dumazetde1036b2010-10-20 23:00:04 +00001130 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001131 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazetde1036b2010-10-20 23:00:04 +00001132 data[i] = ring->stats.packets;
1133 data[i+1] = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001134 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazetde1036b2010-10-20 23:00:04 +00001135 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001136#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001137 data[i] = ring->stats.yields;
1138 data[i+1] = ring->stats.misses;
1139 data[i+2] = ring->stats.cleaned;
1140 i += 3;
1141#endif
Auke Kok9a799d72007-09-15 14:07:45 -07001142 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001143 for (j = 0; j < IXGBE_NUM_RX_QUEUES; j++) {
Eric Dumazetde1036b2010-10-20 23:00:04 +00001144 ring = adapter->rx_ring[j];
John Fastabend9cc00b52012-01-28 03:32:17 +00001145 if (!ring) {
1146 data[i] = 0;
1147 data[i+1] = 0;
1148 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001149#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001150 data[i] = 0;
1151 data[i+1] = 0;
1152 data[i+2] = 0;
1153 i += 3;
1154#endif
John Fastabend9cc00b52012-01-28 03:32:17 +00001155 continue;
1156 }
1157
Eric Dumazetde1036b2010-10-20 23:00:04 +00001158 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001159 start = u64_stats_fetch_begin_irq(&ring->syncp);
Eric Dumazetde1036b2010-10-20 23:00:04 +00001160 data[i] = ring->stats.packets;
1161 data[i+1] = ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001162 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
Eric Dumazetde1036b2010-10-20 23:00:04 +00001163 i += 2;
Jacob Kellerb4640032013-10-01 04:33:54 -07001164#ifdef BP_EXTENDED_STATS
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001165 data[i] = ring->stats.yields;
1166 data[i+1] = ring->stats.misses;
1167 data[i+2] = ring->stats.cleaned;
1168 i += 3;
1169#endif
Auke Kok9a799d72007-09-15 14:07:45 -07001170 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001171
1172 for (j = 0; j < IXGBE_MAX_PACKET_BUFFERS; j++) {
1173 data[i++] = adapter->stats.pxontxc[j];
1174 data[i++] = adapter->stats.pxofftxc[j];
1175 }
1176 for (j = 0; j < IXGBE_MAX_PACKET_BUFFERS; j++) {
1177 data[i++] = adapter->stats.pxonrxc[j];
1178 data[i++] = adapter->stats.pxoffrxc[j];
Alexander Duyck2f90b862008-11-20 20:52:10 -08001179 }
Auke Kok9a799d72007-09-15 14:07:45 -07001180}
1181
1182static void ixgbe_get_strings(struct net_device *netdev, u32 stringset,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001183 u8 *data)
Auke Kok9a799d72007-09-15 14:07:45 -07001184{
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07001185 char *p = (char *)data;
Auke Kok9a799d72007-09-15 14:07:45 -07001186 int i;
1187
1188 switch (stringset) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001189 case ETH_SS_TEST:
Josh Hayd2c47b62013-01-04 03:34:42 +00001190 for (i = 0; i < IXGBE_TEST_LEN; i++) {
1191 memcpy(data, ixgbe_gstrings_test[i], ETH_GSTRING_LEN);
1192 data += ETH_GSTRING_LEN;
1193 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001194 break;
Auke Kok9a799d72007-09-15 14:07:45 -07001195 case ETH_SS_STATS:
1196 for (i = 0; i < IXGBE_GLOBAL_STATS_LEN; i++) {
1197 memcpy(p, ixgbe_gstrings_stats[i].stat_string,
1198 ETH_GSTRING_LEN);
1199 p += ETH_GSTRING_LEN;
1200 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001201 for (i = 0; i < netdev->num_tx_queues; i++) {
Auke Kok9a799d72007-09-15 14:07:45 -07001202 sprintf(p, "tx_queue_%u_packets", i);
1203 p += ETH_GSTRING_LEN;
1204 sprintf(p, "tx_queue_%u_bytes", i);
1205 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001206#ifdef BP_EXTENDED_STATS
1207 sprintf(p, "tx_queue_%u_bp_napi_yield", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001208 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001209 sprintf(p, "tx_queue_%u_bp_misses", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001210 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001211 sprintf(p, "tx_queue_%u_bp_cleaned", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001212 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001213#endif /* BP_EXTENDED_STATS */
Auke Kok9a799d72007-09-15 14:07:45 -07001214 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001215 for (i = 0; i < IXGBE_NUM_RX_QUEUES; i++) {
Auke Kok9a799d72007-09-15 14:07:45 -07001216 sprintf(p, "rx_queue_%u_packets", i);
1217 p += ETH_GSTRING_LEN;
1218 sprintf(p, "rx_queue_%u_bytes", i);
1219 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001220#ifdef BP_EXTENDED_STATS
1221 sprintf(p, "rx_queue_%u_bp_poll_yield", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001222 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001223 sprintf(p, "rx_queue_%u_bp_misses", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001224 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001225 sprintf(p, "rx_queue_%u_bp_cleaned", i);
Eliezer Tamir7e15b902013-06-10 11:40:31 +03001226 p += ETH_GSTRING_LEN;
Jacob Kellerb4640032013-10-01 04:33:54 -07001227#endif /* BP_EXTENDED_STATS */
Auke Kok9a799d72007-09-15 14:07:45 -07001228 }
John Fastabend9cc00b52012-01-28 03:32:17 +00001229 for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++) {
1230 sprintf(p, "tx_pb_%u_pxon", i);
1231 p += ETH_GSTRING_LEN;
1232 sprintf(p, "tx_pb_%u_pxoff", i);
1233 p += ETH_GSTRING_LEN;
1234 }
1235 for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++) {
1236 sprintf(p, "rx_pb_%u_pxon", i);
1237 p += ETH_GSTRING_LEN;
1238 sprintf(p, "rx_pb_%u_pxoff", i);
1239 p += ETH_GSTRING_LEN;
Alexander Duyck2f90b862008-11-20 20:52:10 -08001240 }
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07001241 /* BUG_ON(p - data != IXGBE_STATS_LEN * ETH_GSTRING_LEN); */
Auke Kok9a799d72007-09-15 14:07:45 -07001242 break;
1243 }
1244}
1245
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001246static int ixgbe_link_test(struct ixgbe_adapter *adapter, u64 *data)
1247{
1248 struct ixgbe_hw *hw = &adapter->hw;
1249 bool link_up;
1250 u32 link_speed = 0;
Mark Rustad0edd2bd2014-02-28 15:48:56 -08001251
1252 if (ixgbe_removed(hw->hw_addr)) {
1253 *data = 1;
1254 return 1;
1255 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001256 *data = 0;
1257
1258 hw->mac.ops.check_link(hw, &link_speed, &link_up, true);
1259 if (link_up)
1260 return *data;
1261 else
1262 *data = 1;
1263 return *data;
1264}
1265
1266/* ethtool register test data */
1267struct ixgbe_reg_test {
1268 u16 reg;
1269 u8 array_len;
1270 u8 test_type;
1271 u32 mask;
1272 u32 write;
1273};
1274
1275/* In the hardware, registers are laid out either singly, in arrays
1276 * spaced 0x40 bytes apart, or in contiguous tables. We assume
1277 * most tests take place on arrays or single registers (handled
1278 * as a single-element array) and special-case the tables.
1279 * Table tests are always pattern tests.
1280 *
1281 * We also make provision for some required setup steps by specifying
1282 * registers to be written without any read-back testing.
1283 */
1284
1285#define PATTERN_TEST 1
1286#define SET_READ_TEST 2
1287#define WRITE_NO_TEST 3
1288#define TABLE32_TEST 4
1289#define TABLE64_TEST_LO 5
1290#define TABLE64_TEST_HI 6
1291
1292/* default 82599 register test */
Jeff Kirsher66744502010-12-01 19:59:50 +00001293static const struct ixgbe_reg_test reg_test_82599[] = {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001294 { IXGBE_FCRTL_82599(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1295 { IXGBE_FCRTH_82599(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1296 { IXGBE_PFCTOP, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1297 { IXGBE_VLNCTRL, 1, PATTERN_TEST, 0x00000000, 0x00000000 },
1298 { IXGBE_RDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFF80 },
1299 { IXGBE_RDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1300 { IXGBE_RDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF },
1301 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE },
1302 { IXGBE_RDT(0), 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF },
1303 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, 0 },
1304 { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1305 { IXGBE_FCTTV(0), 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1306 { IXGBE_TDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF },
1307 { IXGBE_TDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1308 { IXGBE_TDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFF80 },
1309 { IXGBE_RXCTRL, 1, SET_READ_TEST, 0x00000001, 0x00000001 },
1310 { IXGBE_RAL(0), 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF },
1311 { IXGBE_RAL(0), 16, TABLE64_TEST_HI, 0x8001FFFF, 0x800CFFFF },
1312 { IXGBE_MTA(0), 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1313 { 0, 0, 0, 0 }
1314};
1315
1316/* default 82598 register test */
Jeff Kirsher66744502010-12-01 19:59:50 +00001317static const struct ixgbe_reg_test reg_test_82598[] = {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001318 { IXGBE_FCRTL(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1319 { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1320 { IXGBE_PFCTOP, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1321 { IXGBE_VLNCTRL, 1, PATTERN_TEST, 0x00000000, 0x00000000 },
1322 { IXGBE_RDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF },
1323 { IXGBE_RDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1324 { IXGBE_RDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF },
1325 /* Enable all four RX queues before testing. */
1326 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, IXGBE_RXDCTL_ENABLE },
1327 /* RDH is read-only for 82598, only test RDT. */
1328 { IXGBE_RDT(0), 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF },
1329 { IXGBE_RXDCTL(0), 4, WRITE_NO_TEST, 0, 0 },
1330 { IXGBE_FCRTH(0), 1, PATTERN_TEST, 0x8007FFF0, 0x8007FFF0 },
1331 { IXGBE_FCTTV(0), 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1332 { IXGBE_TIPG, 1, PATTERN_TEST, 0x000000FF, 0x000000FF },
1333 { IXGBE_TDBAL(0), 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF },
1334 { IXGBE_TDBAH(0), 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1335 { IXGBE_TDLEN(0), 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF },
1336 { IXGBE_RXCTRL, 1, SET_READ_TEST, 0x00000003, 0x00000003 },
1337 { IXGBE_DTXCTL, 1, SET_READ_TEST, 0x00000005, 0x00000005 },
1338 { IXGBE_RAL(0), 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF },
1339 { IXGBE_RAL(0), 16, TABLE64_TEST_HI, 0x800CFFFF, 0x800CFFFF },
1340 { IXGBE_MTA(0), 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF },
1341 { 0, 0, 0, 0 }
1342};
1343
Emil Tantilov95a46012011-04-14 07:46:41 +00001344static bool reg_pattern_test(struct ixgbe_adapter *adapter, u64 *data, int reg,
1345 u32 mask, u32 write)
1346{
1347 u32 pat, val, before;
1348 static const u32 test_pattern[] = {
1349 0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF};
Jeff Kirsher66744502010-12-01 19:59:50 +00001350
Mark Rustadb0483c82014-01-14 18:53:17 -08001351 if (ixgbe_removed(adapter->hw.hw_addr)) {
1352 *data = 1;
1353 return 1;
1354 }
Emil Tantilov95a46012011-04-14 07:46:41 +00001355 for (pat = 0; pat < ARRAY_SIZE(test_pattern); pat++) {
Mark Rustad49bde312014-01-14 18:53:14 -08001356 before = ixgbe_read_reg(&adapter->hw, reg);
1357 ixgbe_write_reg(&adapter->hw, reg, test_pattern[pat] & write);
1358 val = ixgbe_read_reg(&adapter->hw, reg);
Emil Tantilov95a46012011-04-14 07:46:41 +00001359 if (val != (test_pattern[pat] & write & mask)) {
1360 e_err(drv, "pattern test reg %04X failed: got "
1361 "0x%08X expected 0x%08X\n",
1362 reg, val, (test_pattern[pat] & write & mask));
1363 *data = reg;
Mark Rustad49bde312014-01-14 18:53:14 -08001364 ixgbe_write_reg(&adapter->hw, reg, before);
1365 return true;
Emil Tantilov95a46012011-04-14 07:46:41 +00001366 }
Mark Rustad49bde312014-01-14 18:53:14 -08001367 ixgbe_write_reg(&adapter->hw, reg, before);
Emil Tantilov95a46012011-04-14 07:46:41 +00001368 }
Mark Rustad49bde312014-01-14 18:53:14 -08001369 return false;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001370}
1371
Emil Tantilov95a46012011-04-14 07:46:41 +00001372static bool reg_set_and_check(struct ixgbe_adapter *adapter, u64 *data, int reg,
1373 u32 mask, u32 write)
1374{
1375 u32 val, before;
Mark Rustad49bde312014-01-14 18:53:14 -08001376
Mark Rustadb0483c82014-01-14 18:53:17 -08001377 if (ixgbe_removed(adapter->hw.hw_addr)) {
1378 *data = 1;
1379 return 1;
1380 }
Mark Rustad49bde312014-01-14 18:53:14 -08001381 before = ixgbe_read_reg(&adapter->hw, reg);
1382 ixgbe_write_reg(&adapter->hw, reg, write & mask);
1383 val = ixgbe_read_reg(&adapter->hw, reg);
Emil Tantilov95a46012011-04-14 07:46:41 +00001384 if ((write & mask) != (val & mask)) {
1385 e_err(drv, "set/check reg %04X test failed: got 0x%08X "
1386 "expected 0x%08X\n", reg, (val & mask), (write & mask));
1387 *data = reg;
Mark Rustad49bde312014-01-14 18:53:14 -08001388 ixgbe_write_reg(&adapter->hw, reg, before);
1389 return true;
Emil Tantilov95a46012011-04-14 07:46:41 +00001390 }
Mark Rustad49bde312014-01-14 18:53:14 -08001391 ixgbe_write_reg(&adapter->hw, reg, before);
1392 return false;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001393}
1394
1395static int ixgbe_reg_test(struct ixgbe_adapter *adapter, u64 *data)
1396{
Jeff Kirsher66744502010-12-01 19:59:50 +00001397 const struct ixgbe_reg_test *test;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001398 u32 value, before, after;
1399 u32 i, toggle;
1400
Mark Rustadb0483c82014-01-14 18:53:17 -08001401 if (ixgbe_removed(adapter->hw.hw_addr)) {
1402 e_err(drv, "Adapter removed - register test blocked\n");
1403 *data = 1;
1404 return 1;
1405 }
Alexander Duyckbd508172010-11-16 19:27:03 -08001406 switch (adapter->hw.mac.type) {
1407 case ixgbe_mac_82598EB:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001408 toggle = 0x7FFFF3FF;
1409 test = reg_test_82598;
Alexander Duyckbd508172010-11-16 19:27:03 -08001410 break;
1411 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001412 case ixgbe_mac_X540:
Alexander Duyckbd508172010-11-16 19:27:03 -08001413 toggle = 0x7FFFF30F;
1414 test = reg_test_82599;
1415 break;
1416 default:
1417 *data = 1;
1418 return 1;
1419 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001420 }
1421
1422 /*
1423 * Because the status register is such a special case,
1424 * we handle it separately from the rest of the register
1425 * tests. Some bits are read-only, some toggle, and some
1426 * are writeable on newer MACs.
1427 */
Mark Rustad49bde312014-01-14 18:53:14 -08001428 before = ixgbe_read_reg(&adapter->hw, IXGBE_STATUS);
1429 value = (ixgbe_read_reg(&adapter->hw, IXGBE_STATUS) & toggle);
1430 ixgbe_write_reg(&adapter->hw, IXGBE_STATUS, toggle);
1431 after = ixgbe_read_reg(&adapter->hw, IXGBE_STATUS) & toggle;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001432 if (value != after) {
Emil Tantilov396e7992010-07-01 20:05:12 +00001433 e_err(drv, "failed STATUS register test got: 0x%08X "
1434 "expected: 0x%08X\n", after, value);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001435 *data = 1;
1436 return 1;
1437 }
1438 /* restore previous status */
Mark Rustad49bde312014-01-14 18:53:14 -08001439 ixgbe_write_reg(&adapter->hw, IXGBE_STATUS, before);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001440
1441 /*
1442 * Perform the remainder of the register test, looping through
1443 * the test table until we either fail or reach the null entry.
1444 */
1445 while (test->reg) {
1446 for (i = 0; i < test->array_len; i++) {
Mark Rustad49bde312014-01-14 18:53:14 -08001447 bool b = false;
1448
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001449 switch (test->test_type) {
1450 case PATTERN_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001451 b = reg_pattern_test(adapter, data,
1452 test->reg + (i * 0x40),
1453 test->mask,
1454 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001455 break;
1456 case SET_READ_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001457 b = reg_set_and_check(adapter, data,
1458 test->reg + (i * 0x40),
1459 test->mask,
1460 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001461 break;
1462 case WRITE_NO_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001463 ixgbe_write_reg(&adapter->hw,
1464 test->reg + (i * 0x40),
1465 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001466 break;
1467 case TABLE32_TEST:
Mark Rustad49bde312014-01-14 18:53:14 -08001468 b = reg_pattern_test(adapter, data,
1469 test->reg + (i * 4),
1470 test->mask,
1471 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001472 break;
1473 case TABLE64_TEST_LO:
Mark Rustad49bde312014-01-14 18:53:14 -08001474 b = reg_pattern_test(adapter, data,
1475 test->reg + (i * 8),
1476 test->mask,
1477 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001478 break;
1479 case TABLE64_TEST_HI:
Mark Rustad49bde312014-01-14 18:53:14 -08001480 b = reg_pattern_test(adapter, data,
1481 (test->reg + 4) + (i * 8),
1482 test->mask,
1483 test->write);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001484 break;
1485 }
Mark Rustad49bde312014-01-14 18:53:14 -08001486 if (b)
1487 return 1;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001488 }
1489 test++;
1490 }
1491
1492 *data = 0;
1493 return 0;
1494}
1495
1496static int ixgbe_eeprom_test(struct ixgbe_adapter *adapter, u64 *data)
1497{
1498 struct ixgbe_hw *hw = &adapter->hw;
1499 if (hw->eeprom.ops.validate_checksum(hw, NULL))
1500 *data = 1;
1501 else
1502 *data = 0;
1503 return *data;
1504}
1505
1506static irqreturn_t ixgbe_test_intr(int irq, void *data)
1507{
1508 struct net_device *netdev = (struct net_device *) data;
1509 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1510
1511 adapter->test_icr |= IXGBE_READ_REG(&adapter->hw, IXGBE_EICR);
1512
1513 return IRQ_HANDLED;
1514}
1515
1516static int ixgbe_intr_test(struct ixgbe_adapter *adapter, u64 *data)
1517{
1518 struct net_device *netdev = adapter->netdev;
1519 u32 mask, i = 0, shared_int = true;
1520 u32 irq = adapter->pdev->irq;
1521
1522 *data = 0;
1523
1524 /* Hook up test interrupt handler just for this test */
1525 if (adapter->msix_entries) {
1526 /* NOTE: we don't test MSI-X interrupts here, yet */
1527 return 0;
1528 } else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) {
1529 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -08001530 if (request_irq(irq, ixgbe_test_intr, 0, netdev->name,
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001531 netdev)) {
1532 *data = 1;
1533 return -1;
1534 }
Joe Perchesa0607fd2009-11-18 23:29:17 -08001535 } else if (!request_irq(irq, ixgbe_test_intr, IRQF_PROBE_SHARED,
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001536 netdev->name, netdev)) {
1537 shared_int = false;
Joe Perchesa0607fd2009-11-18 23:29:17 -08001538 } else if (request_irq(irq, ixgbe_test_intr, IRQF_SHARED,
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001539 netdev->name, netdev)) {
1540 *data = 1;
1541 return -1;
1542 }
Emil Tantilov396e7992010-07-01 20:05:12 +00001543 e_info(hw, "testing %s interrupt\n", shared_int ?
1544 "shared" : "unshared");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001545
1546 /* Disable all the interrupts */
1547 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001548 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001549 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001550
1551 /* Test each interrupt */
1552 for (; i < 10; i++) {
1553 /* Interrupt to test */
1554 mask = 1 << i;
1555
1556 if (!shared_int) {
1557 /*
1558 * Disable the interrupts to be reported in
1559 * the cause register and then force the same
1560 * interrupt and see if one gets posted. If
1561 * an interrupt was posted to the bus, the
1562 * test failed.
1563 */
1564 adapter->test_icr = 0;
1565 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC,
1566 ~mask & 0x00007FFF);
1567 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS,
1568 ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001569 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001570 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001571
1572 if (adapter->test_icr & mask) {
1573 *data = 3;
1574 break;
1575 }
1576 }
1577
1578 /*
1579 * Enable the interrupt to be reported in the cause
1580 * register and then force the same interrupt and see
1581 * if one gets posted. If an interrupt was not posted
1582 * to the bus, the test failed.
1583 */
1584 adapter->test_icr = 0;
1585 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask);
1586 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001587 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001588 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001589
1590 if (!(adapter->test_icr &mask)) {
1591 *data = 4;
1592 break;
1593 }
1594
1595 if (!shared_int) {
1596 /*
1597 * Disable the other interrupts to be reported in
1598 * the cause register and then force the other
1599 * interrupts and see if any get posted. If
1600 * an interrupt was posted to the bus, the
1601 * test failed.
1602 */
1603 adapter->test_icr = 0;
1604 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC,
1605 ~mask & 0x00007FFF);
1606 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS,
1607 ~mask & 0x00007FFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001608 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001609 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001610
1611 if (adapter->test_icr) {
1612 *data = 5;
1613 break;
1614 }
1615 }
1616 }
1617
1618 /* Disable all the interrupts */
1619 IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFFFFFF);
Jesse Brandeburg945a5152011-07-20 00:56:21 +00001620 IXGBE_WRITE_FLUSH(&adapter->hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001621 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001622
1623 /* Unhook test interrupt handler */
1624 free_irq(irq, netdev);
1625
1626 return *data;
1627}
1628
1629static void ixgbe_free_desc_rings(struct ixgbe_adapter *adapter)
1630{
1631 struct ixgbe_ring *tx_ring = &adapter->test_tx_ring;
1632 struct ixgbe_ring *rx_ring = &adapter->test_rx_ring;
1633 struct ixgbe_hw *hw = &adapter->hw;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001634 u32 reg_ctl;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001635
1636 /* shut down the DMA engines now so they can be reinitialized later */
1637
1638 /* first Rx */
1639 reg_ctl = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
1640 reg_ctl &= ~IXGBE_RXCTRL_RXEN;
1641 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, reg_ctl);
Yi Zou2d39d572011-01-06 14:29:56 +00001642 ixgbe_disable_rx_queue(adapter, rx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001643
1644 /* now Tx */
Alexander Duyck84418e32010-08-19 13:40:54 +00001645 reg_ctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(tx_ring->reg_idx));
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001646 reg_ctl &= ~IXGBE_TXDCTL_ENABLE;
Alexander Duyck84418e32010-08-19 13:40:54 +00001647 IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(tx_ring->reg_idx), reg_ctl);
1648
Alexander Duyckbd508172010-11-16 19:27:03 -08001649 switch (hw->mac.type) {
1650 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001651 case ixgbe_mac_X540:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001652 reg_ctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
1653 reg_ctl &= ~IXGBE_DMATXCTL_TE;
1654 IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, reg_ctl);
Alexander Duyckbd508172010-11-16 19:27:03 -08001655 break;
1656 default:
1657 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001658 }
1659
1660 ixgbe_reset(adapter);
1661
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001662 ixgbe_free_tx_resources(&adapter->test_tx_ring);
1663 ixgbe_free_rx_resources(&adapter->test_rx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001664}
1665
1666static int ixgbe_setup_desc_rings(struct ixgbe_adapter *adapter)
1667{
1668 struct ixgbe_ring *tx_ring = &adapter->test_tx_ring;
1669 struct ixgbe_ring *rx_ring = &adapter->test_rx_ring;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001670 u32 rctl, reg_data;
Alexander Duyck84418e32010-08-19 13:40:54 +00001671 int ret_val;
1672 int err;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001673
1674 /* Setup Tx descriptor ring and Tx buffers */
Alexander Duyck84418e32010-08-19 13:40:54 +00001675 tx_ring->count = IXGBE_DEFAULT_TXD;
1676 tx_ring->queue_index = 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001677 tx_ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001678 tx_ring->netdev = adapter->netdev;
Alexander Duyck84418e32010-08-19 13:40:54 +00001679 tx_ring->reg_idx = adapter->tx_ring[0]->reg_idx;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001680
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001681 err = ixgbe_setup_tx_resources(tx_ring);
Alexander Duyck84418e32010-08-19 13:40:54 +00001682 if (err)
1683 return 1;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001684
Alexander Duyckbd508172010-11-16 19:27:03 -08001685 switch (adapter->hw.mac.type) {
1686 case ixgbe_mac_82599EB:
Don Skidmoreb93a2222010-11-16 19:27:17 -08001687 case ixgbe_mac_X540:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001688 reg_data = IXGBE_READ_REG(&adapter->hw, IXGBE_DMATXCTL);
1689 reg_data |= IXGBE_DMATXCTL_TE;
1690 IXGBE_WRITE_REG(&adapter->hw, IXGBE_DMATXCTL, reg_data);
Alexander Duyckbd508172010-11-16 19:27:03 -08001691 break;
1692 default:
1693 break;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001694 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001695
Alexander Duyck84418e32010-08-19 13:40:54 +00001696 ixgbe_configure_tx_ring(adapter, tx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001697
1698 /* Setup Rx Descriptor ring and Rx buffers */
Alexander Duyck84418e32010-08-19 13:40:54 +00001699 rx_ring->count = IXGBE_DEFAULT_RXD;
1700 rx_ring->queue_index = 0;
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001701 rx_ring->dev = &adapter->pdev->dev;
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001702 rx_ring->netdev = adapter->netdev;
Alexander Duyck84418e32010-08-19 13:40:54 +00001703 rx_ring->reg_idx = adapter->rx_ring[0]->reg_idx;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001704
Alexander Duyckb6ec8952010-11-16 19:26:49 -08001705 err = ixgbe_setup_rx_resources(rx_ring);
Alexander Duyck84418e32010-08-19 13:40:54 +00001706 if (err) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001707 ret_val = 4;
1708 goto err_nomem;
1709 }
1710
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001711 rctl = IXGBE_READ_REG(&adapter->hw, IXGBE_RXCTRL);
1712 IXGBE_WRITE_REG(&adapter->hw, IXGBE_RXCTRL, rctl & ~IXGBE_RXCTRL_RXEN);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001713
Alexander Duyck84418e32010-08-19 13:40:54 +00001714 ixgbe_configure_rx_ring(adapter, rx_ring);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001715
1716 rctl |= IXGBE_RXCTRL_RXEN | IXGBE_RXCTRL_DMBYPS;
1717 IXGBE_WRITE_REG(&adapter->hw, IXGBE_RXCTRL, rctl);
1718
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001719 return 0;
1720
1721err_nomem:
1722 ixgbe_free_desc_rings(adapter);
1723 return ret_val;
1724}
1725
1726static int ixgbe_setup_loopback_test(struct ixgbe_adapter *adapter)
1727{
1728 struct ixgbe_hw *hw = &adapter->hw;
1729 u32 reg_data;
1730
Don Skidmoree7fd9252011-04-16 05:29:14 +00001731
Alexander Duyck84418e32010-08-19 13:40:54 +00001732 /* Setup MAC loopback */
Emil Tantilov26b47422013-04-12 02:10:25 +00001733 reg_data = IXGBE_READ_REG(hw, IXGBE_HLREG0);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001734 reg_data |= IXGBE_HLREG0_LPBK;
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001735 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, reg_data);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001736
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001737 reg_data = IXGBE_READ_REG(hw, IXGBE_FCTRL);
Alexander Duyck84418e32010-08-19 13:40:54 +00001738 reg_data |= IXGBE_FCTRL_BAM | IXGBE_FCTRL_SBP | IXGBE_FCTRL_MPE;
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001739 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, reg_data);
Alexander Duyck84418e32010-08-19 13:40:54 +00001740
Emil Tantilov26b47422013-04-12 02:10:25 +00001741 /* X540 needs to set the MACC.FLU bit to force link up */
1742 if (adapter->hw.mac.type == ixgbe_mac_X540) {
1743 reg_data = IXGBE_READ_REG(hw, IXGBE_MACC);
1744 reg_data |= IXGBE_MACC_FLU;
1745 IXGBE_WRITE_REG(hw, IXGBE_MACC, reg_data);
1746 } else {
1747 if (hw->mac.orig_autoc) {
1748 reg_data = hw->mac.orig_autoc | IXGBE_AUTOC_FLU;
1749 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, reg_data);
1750 } else {
1751 return 10;
1752 }
1753 }
Alexander Duyck35c7f8a2011-07-15 03:06:01 +00001754 IXGBE_WRITE_FLUSH(hw);
Don Skidmore032b4322011-03-18 09:32:53 +00001755 usleep_range(10000, 20000);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001756
1757 /* Disable Atlas Tx lanes; re-enabled in reset path */
1758 if (hw->mac.type == ixgbe_mac_82598EB) {
1759 u8 atlas;
1760
1761 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &atlas);
1762 atlas |= IXGBE_ATLAS_PDN_TX_REG_EN;
1763 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, atlas);
1764
1765 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G, &atlas);
1766 atlas |= IXGBE_ATLAS_PDN_TX_10G_QL_ALL;
1767 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G, atlas);
1768
1769 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G, &atlas);
1770 atlas |= IXGBE_ATLAS_PDN_TX_1G_QL_ALL;
1771 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G, atlas);
1772
1773 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN, &atlas);
1774 atlas |= IXGBE_ATLAS_PDN_TX_AN_QL_ALL;
1775 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN, atlas);
1776 }
1777
1778 return 0;
1779}
1780
1781static void ixgbe_loopback_cleanup(struct ixgbe_adapter *adapter)
1782{
1783 u32 reg_data;
1784
1785 reg_data = IXGBE_READ_REG(&adapter->hw, IXGBE_HLREG0);
1786 reg_data &= ~IXGBE_HLREG0_LPBK;
1787 IXGBE_WRITE_REG(&adapter->hw, IXGBE_HLREG0, reg_data);
1788}
1789
1790static void ixgbe_create_lbtest_frame(struct sk_buff *skb,
Alexander Duyck3832b262012-02-08 07:50:09 +00001791 unsigned int frame_size)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001792{
1793 memset(skb->data, 0xFF, frame_size);
Alexander Duyck3832b262012-02-08 07:50:09 +00001794 frame_size >>= 1;
1795 memset(&skb->data[frame_size], 0xAA, frame_size / 2 - 1);
1796 memset(&skb->data[frame_size + 10], 0xBE, 1);
1797 memset(&skb->data[frame_size + 12], 0xAF, 1);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001798}
1799
Alexander Duyck3832b262012-02-08 07:50:09 +00001800static bool ixgbe_check_lbtest_frame(struct ixgbe_rx_buffer *rx_buffer,
1801 unsigned int frame_size)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001802{
Alexander Duyck3832b262012-02-08 07:50:09 +00001803 unsigned char *data;
1804 bool match = true;
1805
1806 frame_size >>= 1;
1807
Alexander Duyckf8003262012-03-03 02:35:52 +00001808 data = kmap(rx_buffer->page) + rx_buffer->page_offset;
Alexander Duyck3832b262012-02-08 07:50:09 +00001809
1810 if (data[3] != 0xFF ||
1811 data[frame_size + 10] != 0xBE ||
1812 data[frame_size + 12] != 0xAF)
1813 match = false;
1814
Alexander Duyckf8003262012-03-03 02:35:52 +00001815 kunmap(rx_buffer->page);
1816
Alexander Duyck3832b262012-02-08 07:50:09 +00001817 return match;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001818}
1819
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001820static u16 ixgbe_clean_test_rings(struct ixgbe_ring *rx_ring,
Alexander Duyck3832b262012-02-08 07:50:09 +00001821 struct ixgbe_ring *tx_ring,
1822 unsigned int size)
Alexander Duyck84418e32010-08-19 13:40:54 +00001823{
1824 union ixgbe_adv_rx_desc *rx_desc;
Alexander Duyck3832b262012-02-08 07:50:09 +00001825 struct ixgbe_rx_buffer *rx_buffer;
1826 struct ixgbe_tx_buffer *tx_buffer;
Alexander Duyck84418e32010-08-19 13:40:54 +00001827 u16 rx_ntc, tx_ntc, count = 0;
1828
1829 /* initialize next to clean and descriptor values */
1830 rx_ntc = rx_ring->next_to_clean;
1831 tx_ntc = tx_ring->next_to_clean;
Alexander Duycke4f74022012-01-31 02:59:44 +00001832 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ntc);
Alexander Duyck84418e32010-08-19 13:40:54 +00001833
Alexander Duyck3832b262012-02-08 07:50:09 +00001834 while (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD)) {
Alexander Duyck84418e32010-08-19 13:40:54 +00001835 /* check Rx buffer */
Alexander Duyck3832b262012-02-08 07:50:09 +00001836 rx_buffer = &rx_ring->rx_buffer_info[rx_ntc];
Alexander Duyck84418e32010-08-19 13:40:54 +00001837
Alexander Duyckf8003262012-03-03 02:35:52 +00001838 /* sync Rx buffer for CPU read */
1839 dma_sync_single_for_cpu(rx_ring->dev,
1840 rx_buffer->dma,
1841 ixgbe_rx_bufsz(rx_ring),
1842 DMA_FROM_DEVICE);
Alexander Duyck84418e32010-08-19 13:40:54 +00001843
1844 /* verify contents of skb */
Alexander Duyck3832b262012-02-08 07:50:09 +00001845 if (ixgbe_check_lbtest_frame(rx_buffer, size))
Alexander Duyck84418e32010-08-19 13:40:54 +00001846 count++;
1847
Alexander Duyckf8003262012-03-03 02:35:52 +00001848 /* sync Rx buffer for device write */
1849 dma_sync_single_for_device(rx_ring->dev,
1850 rx_buffer->dma,
1851 ixgbe_rx_bufsz(rx_ring),
1852 DMA_FROM_DEVICE);
1853
Alexander Duyck84418e32010-08-19 13:40:54 +00001854 /* unmap buffer on Tx side */
Alexander Duyck3832b262012-02-08 07:50:09 +00001855 tx_buffer = &tx_ring->tx_buffer_info[tx_ntc];
1856 ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer);
Alexander Duyck84418e32010-08-19 13:40:54 +00001857
1858 /* increment Rx/Tx next to clean counters */
1859 rx_ntc++;
1860 if (rx_ntc == rx_ring->count)
1861 rx_ntc = 0;
1862 tx_ntc++;
1863 if (tx_ntc == tx_ring->count)
1864 tx_ntc = 0;
1865
1866 /* fetch next descriptor */
Alexander Duycke4f74022012-01-31 02:59:44 +00001867 rx_desc = IXGBE_RX_DESC(rx_ring, rx_ntc);
Alexander Duyck84418e32010-08-19 13:40:54 +00001868 }
1869
John Fastabenddad8a3b2012-04-23 12:22:39 +00001870 netdev_tx_reset_queue(txring_txq(tx_ring));
1871
Alexander Duyck84418e32010-08-19 13:40:54 +00001872 /* re-map buffers to ring, store next to clean values */
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001873 ixgbe_alloc_rx_buffers(rx_ring, count);
Alexander Duyck84418e32010-08-19 13:40:54 +00001874 rx_ring->next_to_clean = rx_ntc;
1875 tx_ring->next_to_clean = tx_ntc;
1876
1877 return count;
1878}
1879
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001880static int ixgbe_run_loopback_test(struct ixgbe_adapter *adapter)
1881{
1882 struct ixgbe_ring *tx_ring = &adapter->test_tx_ring;
1883 struct ixgbe_ring *rx_ring = &adapter->test_rx_ring;
Alexander Duyck84418e32010-08-19 13:40:54 +00001884 int i, j, lc, good_cnt, ret_val = 0;
1885 unsigned int size = 1024;
1886 netdev_tx_t tx_ret_val;
1887 struct sk_buff *skb;
Emil Tantilov91ffdc82013-07-23 01:56:58 +00001888 u32 flags_orig = adapter->flags;
1889
1890 /* DCB can modify the frames on Tx */
1891 adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED;
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001892
Alexander Duyck84418e32010-08-19 13:40:54 +00001893 /* allocate test skb */
1894 skb = alloc_skb(size, GFP_KERNEL);
1895 if (!skb)
1896 return 11;
1897
1898 /* place data into test skb */
1899 ixgbe_create_lbtest_frame(skb, size);
1900 skb_put(skb, size);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001901
1902 /*
1903 * Calculate the loop count based on the largest descriptor ring
1904 * The idea is to wrap the largest ring a number of times using 64
1905 * send/receive pairs during each loop
1906 */
1907
1908 if (rx_ring->count <= tx_ring->count)
1909 lc = ((tx_ring->count / 64) * 2) + 1;
1910 else
1911 lc = ((rx_ring->count / 64) * 2) + 1;
1912
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001913 for (j = 0; j <= lc; j++) {
Alexander Duyck84418e32010-08-19 13:40:54 +00001914 /* reset count of good packets */
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001915 good_cnt = 0;
Alexander Duyck84418e32010-08-19 13:40:54 +00001916
1917 /* place 64 packets on the transmit queue*/
1918 for (i = 0; i < 64; i++) {
1919 skb_get(skb);
1920 tx_ret_val = ixgbe_xmit_frame_ring(skb,
Alexander Duyck84418e32010-08-19 13:40:54 +00001921 adapter,
1922 tx_ring);
1923 if (tx_ret_val == NETDEV_TX_OK)
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001924 good_cnt++;
Alexander Duyck84418e32010-08-19 13:40:54 +00001925 }
1926
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001927 if (good_cnt != 64) {
Alexander Duyck84418e32010-08-19 13:40:54 +00001928 ret_val = 12;
1929 break;
1930 }
1931
1932 /* allow 200 milliseconds for packets to go from Tx to Rx */
1933 msleep(200);
1934
Alexander Duyckfc77dc32010-11-16 19:26:51 -08001935 good_cnt = ixgbe_clean_test_rings(rx_ring, tx_ring, size);
Alexander Duyck84418e32010-08-19 13:40:54 +00001936 if (good_cnt != 64) {
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001937 ret_val = 13;
1938 break;
1939 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001940 }
1941
Alexander Duyck84418e32010-08-19 13:40:54 +00001942 /* free the original skb */
1943 kfree_skb(skb);
Emil Tantilov91ffdc82013-07-23 01:56:58 +00001944 adapter->flags = flags_orig;
Alexander Duyck84418e32010-08-19 13:40:54 +00001945
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001946 return ret_val;
1947}
1948
1949static int ixgbe_loopback_test(struct ixgbe_adapter *adapter, u64 *data)
1950{
1951 *data = ixgbe_setup_desc_rings(adapter);
1952 if (*data)
1953 goto out;
1954 *data = ixgbe_setup_loopback_test(adapter);
1955 if (*data)
1956 goto err_loopback;
1957 *data = ixgbe_run_loopback_test(adapter);
1958 ixgbe_loopback_cleanup(adapter);
1959
1960err_loopback:
1961 ixgbe_free_desc_rings(adapter);
1962out:
1963 return *data;
1964}
1965
1966static void ixgbe_diag_test(struct net_device *netdev,
1967 struct ethtool_test *eth_test, u64 *data)
1968{
1969 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1970 bool if_running = netif_running(netdev);
1971
Mark Rustadb0483c82014-01-14 18:53:17 -08001972 if (ixgbe_removed(adapter->hw.hw_addr)) {
1973 e_err(hw, "Adapter removed - test blocked\n");
1974 data[0] = 1;
1975 data[1] = 1;
1976 data[2] = 1;
1977 data[3] = 1;
Mark Rustad0edd2bd2014-02-28 15:48:56 -08001978 data[4] = 1;
Mark Rustadb0483c82014-01-14 18:53:17 -08001979 eth_test->flags |= ETH_TEST_FL_FAILED;
1980 return;
1981 }
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00001982 set_bit(__IXGBE_TESTING, &adapter->state);
1983 if (eth_test->flags == ETH_TEST_FL_OFFLINE) {
Emil Tantilov4ec375b2013-07-10 02:47:24 +00001984 struct ixgbe_hw *hw = &adapter->hw;
1985
Greg Rosee7d481a2010-03-25 17:06:48 +00001986 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
1987 int i;
1988 for (i = 0; i < adapter->num_vfs; i++) {
1989 if (adapter->vfinfo[i].clear_to_send) {
1990 netdev_warn(netdev, "%s",
1991 "offline diagnostic is not "
1992 "supported when VFs are "
1993 "present\n");
1994 data[0] = 1;
1995 data[1] = 1;
1996 data[2] = 1;
1997 data[3] = 1;
Mark Rustad0edd2bd2014-02-28 15:48:56 -08001998 data[4] = 1;
Greg Rosee7d481a2010-03-25 17:06:48 +00001999 eth_test->flags |= ETH_TEST_FL_FAILED;
2000 clear_bit(__IXGBE_TESTING,
2001 &adapter->state);
2002 goto skip_ol_tests;
2003 }
2004 }
2005 }
2006
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002007 /* Offline tests */
2008 e_info(hw, "offline testing starting\n");
2009
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002010 /* Link test performed before hardware reset so autoneg doesn't
2011 * interfere with test result
2012 */
2013 if (ixgbe_link_test(adapter, &data[4]))
2014 eth_test->flags |= ETH_TEST_FL_FAILED;
2015
Emil Tantilov4ec375b2013-07-10 02:47:24 +00002016 if (if_running)
2017 /* indicate we're in test mode */
2018 dev_close(netdev);
2019 else
2020 ixgbe_reset(adapter);
2021
Emil Tantilov396e7992010-07-01 20:05:12 +00002022 e_info(hw, "register testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002023 if (ixgbe_reg_test(adapter, &data[0]))
2024 eth_test->flags |= ETH_TEST_FL_FAILED;
2025
2026 ixgbe_reset(adapter);
Emil Tantilov396e7992010-07-01 20:05:12 +00002027 e_info(hw, "eeprom testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002028 if (ixgbe_eeprom_test(adapter, &data[1]))
2029 eth_test->flags |= ETH_TEST_FL_FAILED;
2030
2031 ixgbe_reset(adapter);
Emil Tantilov396e7992010-07-01 20:05:12 +00002032 e_info(hw, "interrupt testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002033 if (ixgbe_intr_test(adapter, &data[2]))
2034 eth_test->flags |= ETH_TEST_FL_FAILED;
2035
Greg Rosebdbec4b2010-01-09 02:27:05 +00002036 /* If SRIOV or VMDq is enabled then skip MAC
2037 * loopback diagnostic. */
2038 if (adapter->flags & (IXGBE_FLAG_SRIOV_ENABLED |
2039 IXGBE_FLAG_VMDQ_ENABLED)) {
Emil Tantilov396e7992010-07-01 20:05:12 +00002040 e_info(hw, "Skip MAC loopback diagnostic in VT "
2041 "mode\n");
Greg Rosebdbec4b2010-01-09 02:27:05 +00002042 data[3] = 0;
2043 goto skip_loopback;
2044 }
2045
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002046 ixgbe_reset(adapter);
Emil Tantilov396e7992010-07-01 20:05:12 +00002047 e_info(hw, "loopback testing starting\n");
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002048 if (ixgbe_loopback_test(adapter, &data[3]))
2049 eth_test->flags |= ETH_TEST_FL_FAILED;
2050
Greg Rosebdbec4b2010-01-09 02:27:05 +00002051skip_loopback:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002052 ixgbe_reset(adapter);
2053
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002054 /* clear testing bit and return adapter to previous state */
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002055 clear_bit(__IXGBE_TESTING, &adapter->state);
2056 if (if_running)
2057 dev_open(netdev);
Emil Tantilov4ec375b2013-07-10 02:47:24 +00002058 else if (hw->mac.ops.disable_tx_laser)
2059 hw->mac.ops.disable_tx_laser(hw);
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002060 } else {
Emil Tantilov396e7992010-07-01 20:05:12 +00002061 e_info(hw, "online testing starting\n");
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002062
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002063 /* Online tests */
2064 if (ixgbe_link_test(adapter, &data[4]))
2065 eth_test->flags |= ETH_TEST_FL_FAILED;
2066
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002067 /* Offline tests aren't run; pass by default */
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002068 data[0] = 0;
2069 data[1] = 0;
2070 data[2] = 0;
2071 data[3] = 0;
2072
2073 clear_bit(__IXGBE_TESTING, &adapter->state);
2074 }
Jacob Kellerdfcc4612012-11-08 07:07:08 +00002075
Greg Rosee7d481a2010-03-25 17:06:48 +00002076skip_ol_tests:
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00002077 msleep_interruptible(4 * 1000);
2078}
Auke Kok9a799d72007-09-15 14:07:45 -07002079
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002080static int ixgbe_wol_exclusion(struct ixgbe_adapter *adapter,
2081 struct ethtool_wolinfo *wol)
2082{
2083 struct ixgbe_hw *hw = &adapter->hw;
Jacob Keller8e2813f2012-04-21 06:05:40 +00002084 int retval = 0;
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002085
Jacob Keller8e2813f2012-04-21 06:05:40 +00002086 /* WOL not supported for all devices */
2087 if (!ixgbe_wol_supported(adapter, hw->device_id,
2088 hw->subsystem_device_id)) {
2089 retval = 1;
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002090 wol->supported = 0;
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002091 }
2092
2093 return retval;
2094}
2095
Auke Kok9a799d72007-09-15 14:07:45 -07002096static void ixgbe_get_wol(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07002097 struct ethtool_wolinfo *wol)
Auke Kok9a799d72007-09-15 14:07:45 -07002098{
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002099 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2100
2101 wol->supported = WAKE_UCAST | WAKE_MCAST |
2102 WAKE_BCAST | WAKE_MAGIC;
Auke Kok9a799d72007-09-15 14:07:45 -07002103 wol->wolopts = 0;
2104
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002105 if (ixgbe_wol_exclusion(adapter, wol) ||
2106 !device_can_wakeup(&adapter->pdev->dev))
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002107 return;
2108
2109 if (adapter->wol & IXGBE_WUFC_EX)
2110 wol->wolopts |= WAKE_UCAST;
2111 if (adapter->wol & IXGBE_WUFC_MC)
2112 wol->wolopts |= WAKE_MCAST;
2113 if (adapter->wol & IXGBE_WUFC_BC)
2114 wol->wolopts |= WAKE_BCAST;
2115 if (adapter->wol & IXGBE_WUFC_MAG)
2116 wol->wolopts |= WAKE_MAGIC;
Auke Kok9a799d72007-09-15 14:07:45 -07002117}
2118
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002119static int ixgbe_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol)
2120{
2121 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2122
2123 if (wol->wolopts & (WAKE_PHY | WAKE_ARP | WAKE_MAGICSECURE))
2124 return -EOPNOTSUPP;
2125
Alexander Duyckd6c519e2009-04-08 13:20:50 +00002126 if (ixgbe_wol_exclusion(adapter, wol))
2127 return wol->wolopts ? -EOPNOTSUPP : 0;
2128
PJ Waskiewicze63d9762009-03-19 01:23:46 +00002129 adapter->wol = 0;
2130
2131 if (wol->wolopts & WAKE_UCAST)
2132 adapter->wol |= IXGBE_WUFC_EX;
2133 if (wol->wolopts & WAKE_MCAST)
2134 adapter->wol |= IXGBE_WUFC_MC;
2135 if (wol->wolopts & WAKE_BCAST)
2136 adapter->wol |= IXGBE_WUFC_BC;
2137 if (wol->wolopts & WAKE_MAGIC)
2138 adapter->wol |= IXGBE_WUFC_MAG;
2139
2140 device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol);
2141
2142 return 0;
2143}
2144
Auke Kok9a799d72007-09-15 14:07:45 -07002145static int ixgbe_nway_reset(struct net_device *netdev)
2146{
2147 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2148
Ayyappan Veeraiyand4f80882008-02-01 15:58:41 -08002149 if (netif_running(netdev))
2150 ixgbe_reinit_locked(adapter);
Auke Kok9a799d72007-09-15 14:07:45 -07002151
2152 return 0;
2153}
2154
Emil Tantilov66e69612011-04-16 06:12:51 +00002155static int ixgbe_set_phys_id(struct net_device *netdev,
2156 enum ethtool_phys_id_state state)
Auke Kok9a799d72007-09-15 14:07:45 -07002157{
2158 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002159 struct ixgbe_hw *hw = &adapter->hw;
Auke Kok9a799d72007-09-15 14:07:45 -07002160
Emil Tantilov66e69612011-04-16 06:12:51 +00002161 switch (state) {
2162 case ETHTOOL_ID_ACTIVE:
2163 adapter->led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL);
2164 return 2;
Auke Kok9a799d72007-09-15 14:07:45 -07002165
Emil Tantilov66e69612011-04-16 06:12:51 +00002166 case ETHTOOL_ID_ON:
Jesse Brandeburgc44ade92008-09-11 19:59:59 -07002167 hw->mac.ops.led_on(hw, IXGBE_LED_ON);
Emil Tantilov66e69612011-04-16 06:12:51 +00002168 break;
Auke Kok9a799d72007-09-15 14:07:45 -07002169
Emil Tantilov66e69612011-04-16 06:12:51 +00002170 case ETHTOOL_ID_OFF:
2171 hw->mac.ops.led_off(hw, IXGBE_LED_ON);
2172 break;
2173
2174 case ETHTOOL_ID_INACTIVE:
2175 /* Restore LED settings */
2176 IXGBE_WRITE_REG(&adapter->hw, IXGBE_LEDCTL, adapter->led_reg);
2177 break;
2178 }
Auke Kok9a799d72007-09-15 14:07:45 -07002179
2180 return 0;
2181}
2182
2183static int ixgbe_get_coalesce(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07002184 struct ethtool_coalesce *ec)
Auke Kok9a799d72007-09-15 14:07:45 -07002185{
2186 struct ixgbe_adapter *adapter = netdev_priv(netdev);
2187
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002188 /* only valid if in constant ITR mode */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002189 if (adapter->rx_itr_setting <= 1)
2190 ec->rx_coalesce_usecs = adapter->rx_itr_setting;
2191 else
2192 ec->rx_coalesce_usecs = adapter->rx_itr_setting >> 2;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002193
Shannon Nelsoncfb3f912009-11-24 18:51:06 +00002194 /* if in mixed tx/rx queues per vector mode, report only rx settings */
Alexander Duyck08c88332011-06-11 01:45:03 +00002195 if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count)
Shannon Nelsoncfb3f912009-11-24 18:51:06 +00002196 return 0;
2197
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002198 /* only valid if in constant ITR mode */
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002199 if (adapter->tx_itr_setting <= 1)
2200 ec->tx_coalesce_usecs = adapter->tx_itr_setting;
2201 else
2202 ec->tx_coalesce_usecs = adapter->tx_itr_setting >> 2;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002203
Auke Kok9a799d72007-09-15 14:07:45 -07002204 return 0;
2205}
2206
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002207/*
2208 * this function must be called before setting the new value of
2209 * rx_itr_setting
2210 */
Alexander Duyck567d2de2012-02-11 07:18:57 +00002211static bool ixgbe_update_rsc(struct ixgbe_adapter *adapter)
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002212{
2213 struct net_device *netdev = adapter->netdev;
2214
Alexander Duyck567d2de2012-02-11 07:18:57 +00002215 /* nothing to do if LRO or RSC are not enabled */
2216 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) ||
2217 !(netdev->features & NETIF_F_LRO))
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002218 return false;
2219
Alexander Duyck567d2de2012-02-11 07:18:57 +00002220 /* check the feature flag value and enable RSC if necessary */
2221 if (adapter->rx_itr_setting == 1 ||
2222 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
2223 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002224 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
Alexander Duyck567d2de2012-02-11 07:18:57 +00002225 e_info(probe, "rx-usecs value high enough "
2226 "to re-enable RSC\n");
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002227 return true;
2228 }
Alexander Duyck567d2de2012-02-11 07:18:57 +00002229 /* if interrupt rate is too high then disable RSC */
2230 } else if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
2231 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
2232 e_info(probe, "rx-usecs set too low, disabling RSC\n");
2233 return true;
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002234 }
2235 return false;
2236}
2237
Auke Kok9a799d72007-09-15 14:07:45 -07002238static int ixgbe_set_coalesce(struct net_device *netdev,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07002239 struct ethtool_coalesce *ec)
Auke Kok9a799d72007-09-15 14:07:45 -07002240{
2241 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Don Skidmore237057a2009-08-11 13:18:14 +00002242 struct ixgbe_q_vector *q_vector;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002243 int i;
Emil Tantilov67da0972013-01-25 06:19:20 +00002244 u16 tx_itr_param, rx_itr_param, tx_itr_prev;
Jesse Brandeburgef021192010-04-27 01:37:41 +00002245 bool need_reset = false;
Auke Kok9a799d72007-09-15 14:07:45 -07002246
Emil Tantilov67da0972013-01-25 06:19:20 +00002247 if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count) {
2248 /* reject Tx specific changes in case of mixed RxTx vectors */
2249 if (ec->tx_coalesce_usecs)
2250 return -EINVAL;
2251 tx_itr_prev = adapter->rx_itr_setting;
2252 } else {
2253 tx_itr_prev = adapter->tx_itr_setting;
2254 }
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002255
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002256 if ((ec->rx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)) ||
2257 (ec->tx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)))
2258 return -EINVAL;
Jesse Brandeburg509ee932009-03-13 22:13:28 +00002259
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002260 if (ec->rx_coalesce_usecs > 1)
2261 adapter->rx_itr_setting = ec->rx_coalesce_usecs << 2;
2262 else
2263 adapter->rx_itr_setting = ec->rx_coalesce_usecs;
Jesse Brandeburg30efa5a2008-09-11 19:58:14 -07002264
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002265 if (adapter->rx_itr_setting == 1)
2266 rx_itr_param = IXGBE_20K_ITR;
2267 else
2268 rx_itr_param = adapter->rx_itr_setting;
Alexander Duyck80fba3f2010-11-16 19:26:57 -08002269
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002270 if (ec->tx_coalesce_usecs > 1)
2271 adapter->tx_itr_setting = ec->tx_coalesce_usecs << 2;
2272 else
2273 adapter->tx_itr_setting = ec->tx_coalesce_usecs;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002274
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002275 if (adapter->tx_itr_setting == 1)
2276 tx_itr_param = IXGBE_10K_ITR;
2277 else
2278 tx_itr_param = adapter->tx_itr_setting;
Nelson, Shannonf7554a22009-09-18 09:46:06 +00002279
Emil Tantilov67da0972013-01-25 06:19:20 +00002280 /* mixed Rx/Tx */
2281 if (adapter->q_vector[0]->tx.count && adapter->q_vector[0]->rx.count)
2282 adapter->tx_itr_setting = adapter->rx_itr_setting;
2283
2284#if IS_ENABLED(CONFIG_BQL)
2285 /* detect ITR changes that require update of TXDCTL.WTHRESH */
Emil Tantilov2e010382013-10-22 08:21:04 +00002286 if ((adapter->tx_itr_setting != 1) &&
Emil Tantilov67da0972013-01-25 06:19:20 +00002287 (adapter->tx_itr_setting < IXGBE_100K_ITR)) {
2288 if ((tx_itr_prev == 1) ||
Emil Tantilov2e010382013-10-22 08:21:04 +00002289 (tx_itr_prev >= IXGBE_100K_ITR))
Emil Tantilov67da0972013-01-25 06:19:20 +00002290 need_reset = true;
2291 } else {
Emil Tantilov2e010382013-10-22 08:21:04 +00002292 if ((tx_itr_prev != 1) &&
Emil Tantilov67da0972013-01-25 06:19:20 +00002293 (tx_itr_prev < IXGBE_100K_ITR))
2294 need_reset = true;
2295 }
2296#endif
Alexander Duyck567d2de2012-02-11 07:18:57 +00002297 /* check the old value and enable RSC if necessary */
Emil Tantilov67da0972013-01-25 06:19:20 +00002298 need_reset |= ixgbe_update_rsc(adapter);
Alexander Duyck567d2de2012-02-11 07:18:57 +00002299
Alexander Duyck49c7ffb2012-05-05 05:30:43 +00002300 for (i = 0; i < adapter->num_q_vectors; i++) {
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002301 q_vector = adapter->q_vector[i];
Emil Tantilovd5bf4f62011-08-31 00:01:16 +00002302 if (q_vector->tx.count && !q_vector->rx.count)
2303 /* tx only */
2304 q_vector->itr = tx_itr_param;
2305 else
2306 /* rx only or mixed */
2307 q_vector->itr = rx_itr_param;
Alexander Duyckfe49f042009-06-04 16:00:09 +00002308 ixgbe_write_eitr(q_vector);
Auke Kok9a799d72007-09-15 14:07:45 -07002309 }
2310
Jesse Brandeburgef021192010-04-27 01:37:41 +00002311 /*
2312 * do reset here at the end to make sure EITR==0 case is handled
2313 * correctly w.r.t stopping tx, and changing TXDCTL.WTHRESH settings
2314 * also locks in RSC enable/disable which requires reset
2315 */
Emil Tantilovc988ee82011-05-13 02:22:45 +00002316 if (need_reset)
2317 ixgbe_do_reset(netdev);
Jesse Brandeburgef021192010-04-27 01:37:41 +00002318
Auke Kok9a799d72007-09-15 14:07:45 -07002319 return 0;
2320}
2321
Alexander Duyck3e053342011-05-11 07:18:47 +00002322static int ixgbe_get_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2323 struct ethtool_rxnfc *cmd)
2324{
2325 union ixgbe_atr_input *mask = &adapter->fdir_mask;
2326 struct ethtool_rx_flow_spec *fsp =
2327 (struct ethtool_rx_flow_spec *)&cmd->fs;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002328 struct hlist_node *node2;
Alexander Duyck3e053342011-05-11 07:18:47 +00002329 struct ixgbe_fdir_filter *rule = NULL;
2330
2331 /* report total rule count */
2332 cmd->data = (1024 << adapter->fdir_pballoc) - 2;
2333
Sasha Levinb67bfe02013-02-27 17:06:00 -08002334 hlist_for_each_entry_safe(rule, node2,
Alexander Duyck3e053342011-05-11 07:18:47 +00002335 &adapter->fdir_filter_list, fdir_node) {
2336 if (fsp->location <= rule->sw_idx)
2337 break;
2338 }
2339
2340 if (!rule || fsp->location != rule->sw_idx)
2341 return -EINVAL;
2342
2343 /* fill out the flow spec entry */
2344
2345 /* set flow type field */
2346 switch (rule->filter.formatted.flow_type) {
2347 case IXGBE_ATR_FLOW_TYPE_TCPV4:
2348 fsp->flow_type = TCP_V4_FLOW;
2349 break;
2350 case IXGBE_ATR_FLOW_TYPE_UDPV4:
2351 fsp->flow_type = UDP_V4_FLOW;
2352 break;
2353 case IXGBE_ATR_FLOW_TYPE_SCTPV4:
2354 fsp->flow_type = SCTP_V4_FLOW;
2355 break;
2356 case IXGBE_ATR_FLOW_TYPE_IPV4:
2357 fsp->flow_type = IP_USER_FLOW;
2358 fsp->h_u.usr_ip4_spec.ip_ver = ETH_RX_NFC_IP4;
2359 fsp->h_u.usr_ip4_spec.proto = 0;
2360 fsp->m_u.usr_ip4_spec.proto = 0;
2361 break;
2362 default:
2363 return -EINVAL;
2364 }
2365
2366 fsp->h_u.tcp_ip4_spec.psrc = rule->filter.formatted.src_port;
2367 fsp->m_u.tcp_ip4_spec.psrc = mask->formatted.src_port;
2368 fsp->h_u.tcp_ip4_spec.pdst = rule->filter.formatted.dst_port;
2369 fsp->m_u.tcp_ip4_spec.pdst = mask->formatted.dst_port;
2370 fsp->h_u.tcp_ip4_spec.ip4src = rule->filter.formatted.src_ip[0];
2371 fsp->m_u.tcp_ip4_spec.ip4src = mask->formatted.src_ip[0];
2372 fsp->h_u.tcp_ip4_spec.ip4dst = rule->filter.formatted.dst_ip[0];
2373 fsp->m_u.tcp_ip4_spec.ip4dst = mask->formatted.dst_ip[0];
2374 fsp->h_ext.vlan_tci = rule->filter.formatted.vlan_id;
2375 fsp->m_ext.vlan_tci = mask->formatted.vlan_id;
2376 fsp->h_ext.vlan_etype = rule->filter.formatted.flex_bytes;
2377 fsp->m_ext.vlan_etype = mask->formatted.flex_bytes;
2378 fsp->h_ext.data[1] = htonl(rule->filter.formatted.vm_pool);
2379 fsp->m_ext.data[1] = htonl(mask->formatted.vm_pool);
2380 fsp->flow_type |= FLOW_EXT;
2381
2382 /* record action */
2383 if (rule->action == IXGBE_FDIR_DROP_QUEUE)
2384 fsp->ring_cookie = RX_CLS_FLOW_DISC;
2385 else
2386 fsp->ring_cookie = rule->action;
2387
2388 return 0;
2389}
2390
2391static int ixgbe_get_ethtool_fdir_all(struct ixgbe_adapter *adapter,
2392 struct ethtool_rxnfc *cmd,
2393 u32 *rule_locs)
2394{
Sasha Levinb67bfe02013-02-27 17:06:00 -08002395 struct hlist_node *node2;
Alexander Duyck3e053342011-05-11 07:18:47 +00002396 struct ixgbe_fdir_filter *rule;
2397 int cnt = 0;
2398
2399 /* report total rule count */
2400 cmd->data = (1024 << adapter->fdir_pballoc) - 2;
2401
Sasha Levinb67bfe02013-02-27 17:06:00 -08002402 hlist_for_each_entry_safe(rule, node2,
Alexander Duyck3e053342011-05-11 07:18:47 +00002403 &adapter->fdir_filter_list, fdir_node) {
2404 if (cnt == cmd->rule_cnt)
2405 return -EMSGSIZE;
2406 rule_locs[cnt] = rule->sw_idx;
2407 cnt++;
2408 }
2409
Ben Hutchings473e64e2011-09-06 13:52:47 +00002410 cmd->rule_cnt = cnt;
2411
Alexander Duyck3e053342011-05-11 07:18:47 +00002412 return 0;
2413}
2414
Alexander Duyckef6afc02012-02-08 07:51:53 +00002415static int ixgbe_get_rss_hash_opts(struct ixgbe_adapter *adapter,
2416 struct ethtool_rxnfc *cmd)
2417{
2418 cmd->data = 0;
2419
Alexander Duyckef6afc02012-02-08 07:51:53 +00002420 /* Report default options for RSS on ixgbe */
2421 switch (cmd->flow_type) {
2422 case TCP_V4_FLOW:
2423 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2424 case UDP_V4_FLOW:
2425 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
2426 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2427 case SCTP_V4_FLOW:
2428 case AH_ESP_V4_FLOW:
2429 case AH_V4_FLOW:
2430 case ESP_V4_FLOW:
2431 case IPV4_FLOW:
2432 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
2433 break;
2434 case TCP_V6_FLOW:
2435 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2436 case UDP_V6_FLOW:
2437 if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2438 cmd->data |= RXH_L4_B_0_1 | RXH_L4_B_2_3;
2439 case SCTP_V6_FLOW:
2440 case AH_ESP_V6_FLOW:
2441 case AH_V6_FLOW:
2442 case ESP_V6_FLOW:
2443 case IPV6_FLOW:
2444 cmd->data |= RXH_IP_SRC | RXH_IP_DST;
2445 break;
2446 default:
2447 return -EINVAL;
2448 }
2449
2450 return 0;
2451}
2452
Alexander Duyck91cd94b2011-05-11 07:18:41 +00002453static int ixgbe_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
Ben Hutchings815c7db2011-09-06 13:49:12 +00002454 u32 *rule_locs)
Alexander Duyck91cd94b2011-05-11 07:18:41 +00002455{
2456 struct ixgbe_adapter *adapter = netdev_priv(dev);
2457 int ret = -EOPNOTSUPP;
2458
2459 switch (cmd->cmd) {
2460 case ETHTOOL_GRXRINGS:
2461 cmd->data = adapter->num_rx_queues;
2462 ret = 0;
2463 break;
Alexander Duyck3e053342011-05-11 07:18:47 +00002464 case ETHTOOL_GRXCLSRLCNT:
2465 cmd->rule_cnt = adapter->fdir_filter_count;
2466 ret = 0;
2467 break;
2468 case ETHTOOL_GRXCLSRULE:
2469 ret = ixgbe_get_ethtool_fdir_entry(adapter, cmd);
2470 break;
2471 case ETHTOOL_GRXCLSRLALL:
Ben Hutchings815c7db2011-09-06 13:49:12 +00002472 ret = ixgbe_get_ethtool_fdir_all(adapter, cmd, rule_locs);
Alexander Duyck3e053342011-05-11 07:18:47 +00002473 break;
Alexander Duyckef6afc02012-02-08 07:51:53 +00002474 case ETHTOOL_GRXFH:
2475 ret = ixgbe_get_rss_hash_opts(adapter, cmd);
2476 break;
Alexander Duyck91cd94b2011-05-11 07:18:41 +00002477 default:
2478 break;
2479 }
2480
2481 return ret;
2482}
2483
Alexander Duycke4911d52011-05-11 07:18:52 +00002484static int ixgbe_update_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2485 struct ixgbe_fdir_filter *input,
2486 u16 sw_idx)
2487{
2488 struct ixgbe_hw *hw = &adapter->hw;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002489 struct hlist_node *node2;
2490 struct ixgbe_fdir_filter *rule, *parent;
Alexander Duycke4911d52011-05-11 07:18:52 +00002491 int err = -EINVAL;
2492
2493 parent = NULL;
2494 rule = NULL;
2495
Sasha Levinb67bfe02013-02-27 17:06:00 -08002496 hlist_for_each_entry_safe(rule, node2,
Alexander Duycke4911d52011-05-11 07:18:52 +00002497 &adapter->fdir_filter_list, fdir_node) {
2498 /* hash found, or no matching entry */
2499 if (rule->sw_idx >= sw_idx)
2500 break;
Sasha Levinb67bfe02013-02-27 17:06:00 -08002501 parent = rule;
Alexander Duycke4911d52011-05-11 07:18:52 +00002502 }
2503
2504 /* if there is an old rule occupying our place remove it */
2505 if (rule && (rule->sw_idx == sw_idx)) {
2506 if (!input || (rule->filter.formatted.bkt_hash !=
2507 input->filter.formatted.bkt_hash)) {
2508 err = ixgbe_fdir_erase_perfect_filter_82599(hw,
2509 &rule->filter,
2510 sw_idx);
2511 }
2512
2513 hlist_del(&rule->fdir_node);
2514 kfree(rule);
2515 adapter->fdir_filter_count--;
2516 }
2517
2518 /*
2519 * If no input this was a delete, err should be 0 if a rule was
2520 * successfully found and removed from the list else -EINVAL
2521 */
2522 if (!input)
2523 return err;
2524
2525 /* initialize node and set software index */
2526 INIT_HLIST_NODE(&input->fdir_node);
2527
2528 /* add filter to the list */
2529 if (parent)
Sasha Levinb67bfe02013-02-27 17:06:00 -08002530 hlist_add_after(&parent->fdir_node, &input->fdir_node);
Alexander Duycke4911d52011-05-11 07:18:52 +00002531 else
2532 hlist_add_head(&input->fdir_node,
2533 &adapter->fdir_filter_list);
2534
2535 /* update counts */
2536 adapter->fdir_filter_count++;
2537
2538 return 0;
2539}
2540
2541static int ixgbe_flowspec_to_flow_type(struct ethtool_rx_flow_spec *fsp,
2542 u8 *flow_type)
2543{
2544 switch (fsp->flow_type & ~FLOW_EXT) {
2545 case TCP_V4_FLOW:
2546 *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
2547 break;
2548 case UDP_V4_FLOW:
2549 *flow_type = IXGBE_ATR_FLOW_TYPE_UDPV4;
2550 break;
2551 case SCTP_V4_FLOW:
2552 *flow_type = IXGBE_ATR_FLOW_TYPE_SCTPV4;
2553 break;
2554 case IP_USER_FLOW:
2555 switch (fsp->h_u.usr_ip4_spec.proto) {
2556 case IPPROTO_TCP:
2557 *flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4;
2558 break;
2559 case IPPROTO_UDP:
2560 *flow_type = IXGBE_ATR_FLOW_TYPE_UDPV4;
2561 break;
2562 case IPPROTO_SCTP:
2563 *flow_type = IXGBE_ATR_FLOW_TYPE_SCTPV4;
2564 break;
2565 case 0:
2566 if (!fsp->m_u.usr_ip4_spec.proto) {
2567 *flow_type = IXGBE_ATR_FLOW_TYPE_IPV4;
2568 break;
2569 }
2570 default:
2571 return 0;
2572 }
2573 break;
2574 default:
2575 return 0;
2576 }
2577
2578 return 1;
2579}
2580
2581static int ixgbe_add_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2582 struct ethtool_rxnfc *cmd)
2583{
2584 struct ethtool_rx_flow_spec *fsp =
2585 (struct ethtool_rx_flow_spec *)&cmd->fs;
2586 struct ixgbe_hw *hw = &adapter->hw;
2587 struct ixgbe_fdir_filter *input;
2588 union ixgbe_atr_input mask;
2589 int err;
2590
2591 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE))
2592 return -EOPNOTSUPP;
2593
2594 /*
2595 * Don't allow programming if the action is a queue greater than
2596 * the number of online Rx queues.
2597 */
2598 if ((fsp->ring_cookie != RX_CLS_FLOW_DISC) &&
2599 (fsp->ring_cookie >= adapter->num_rx_queues))
2600 return -EINVAL;
2601
2602 /* Don't allow indexes to exist outside of available space */
2603 if (fsp->location >= ((1024 << adapter->fdir_pballoc) - 2)) {
2604 e_err(drv, "Location out of range\n");
2605 return -EINVAL;
2606 }
2607
2608 input = kzalloc(sizeof(*input), GFP_ATOMIC);
2609 if (!input)
2610 return -ENOMEM;
2611
2612 memset(&mask, 0, sizeof(union ixgbe_atr_input));
2613
2614 /* set SW index */
2615 input->sw_idx = fsp->location;
2616
2617 /* record flow type */
2618 if (!ixgbe_flowspec_to_flow_type(fsp,
2619 &input->filter.formatted.flow_type)) {
2620 e_err(drv, "Unrecognized flow type\n");
2621 goto err_out;
2622 }
2623
2624 mask.formatted.flow_type = IXGBE_ATR_L4TYPE_IPV6_MASK |
2625 IXGBE_ATR_L4TYPE_MASK;
2626
2627 if (input->filter.formatted.flow_type == IXGBE_ATR_FLOW_TYPE_IPV4)
2628 mask.formatted.flow_type &= IXGBE_ATR_L4TYPE_IPV6_MASK;
2629
2630 /* Copy input into formatted structures */
2631 input->filter.formatted.src_ip[0] = fsp->h_u.tcp_ip4_spec.ip4src;
2632 mask.formatted.src_ip[0] = fsp->m_u.tcp_ip4_spec.ip4src;
2633 input->filter.formatted.dst_ip[0] = fsp->h_u.tcp_ip4_spec.ip4dst;
2634 mask.formatted.dst_ip[0] = fsp->m_u.tcp_ip4_spec.ip4dst;
2635 input->filter.formatted.src_port = fsp->h_u.tcp_ip4_spec.psrc;
2636 mask.formatted.src_port = fsp->m_u.tcp_ip4_spec.psrc;
2637 input->filter.formatted.dst_port = fsp->h_u.tcp_ip4_spec.pdst;
2638 mask.formatted.dst_port = fsp->m_u.tcp_ip4_spec.pdst;
2639
2640 if (fsp->flow_type & FLOW_EXT) {
2641 input->filter.formatted.vm_pool =
2642 (unsigned char)ntohl(fsp->h_ext.data[1]);
2643 mask.formatted.vm_pool =
2644 (unsigned char)ntohl(fsp->m_ext.data[1]);
2645 input->filter.formatted.vlan_id = fsp->h_ext.vlan_tci;
2646 mask.formatted.vlan_id = fsp->m_ext.vlan_tci;
2647 input->filter.formatted.flex_bytes =
2648 fsp->h_ext.vlan_etype;
2649 mask.formatted.flex_bytes = fsp->m_ext.vlan_etype;
2650 }
2651
2652 /* determine if we need to drop or route the packet */
2653 if (fsp->ring_cookie == RX_CLS_FLOW_DISC)
2654 input->action = IXGBE_FDIR_DROP_QUEUE;
2655 else
2656 input->action = fsp->ring_cookie;
2657
2658 spin_lock(&adapter->fdir_perfect_lock);
2659
2660 if (hlist_empty(&adapter->fdir_filter_list)) {
2661 /* save mask and program input mask into HW */
2662 memcpy(&adapter->fdir_mask, &mask, sizeof(mask));
2663 err = ixgbe_fdir_set_input_mask_82599(hw, &mask);
2664 if (err) {
2665 e_err(drv, "Error writing mask\n");
2666 goto err_out_w_lock;
2667 }
2668 } else if (memcmp(&adapter->fdir_mask, &mask, sizeof(mask))) {
2669 e_err(drv, "Only one mask supported per port\n");
2670 goto err_out_w_lock;
2671 }
2672
2673 /* apply mask and compute/store hash */
2674 ixgbe_atr_compute_perfect_hash_82599(&input->filter, &mask);
2675
2676 /* program filters to filter memory */
2677 err = ixgbe_fdir_write_perfect_filter_82599(hw,
2678 &input->filter, input->sw_idx,
Alexander Duyck1f4d5182011-05-14 01:16:02 +00002679 (input->action == IXGBE_FDIR_DROP_QUEUE) ?
2680 IXGBE_FDIR_DROP_QUEUE :
Alexander Duycke4911d52011-05-11 07:18:52 +00002681 adapter->rx_ring[input->action]->reg_idx);
2682 if (err)
2683 goto err_out_w_lock;
2684
2685 ixgbe_update_ethtool_fdir_entry(adapter, input, input->sw_idx);
2686
2687 spin_unlock(&adapter->fdir_perfect_lock);
2688
2689 return err;
2690err_out_w_lock:
2691 spin_unlock(&adapter->fdir_perfect_lock);
2692err_out:
2693 kfree(input);
2694 return -EINVAL;
2695}
2696
2697static int ixgbe_del_ethtool_fdir_entry(struct ixgbe_adapter *adapter,
2698 struct ethtool_rxnfc *cmd)
2699{
2700 struct ethtool_rx_flow_spec *fsp =
2701 (struct ethtool_rx_flow_spec *)&cmd->fs;
2702 int err;
2703
2704 spin_lock(&adapter->fdir_perfect_lock);
2705 err = ixgbe_update_ethtool_fdir_entry(adapter, NULL, fsp->location);
2706 spin_unlock(&adapter->fdir_perfect_lock);
2707
2708 return err;
2709}
2710
Alexander Duyckef6afc02012-02-08 07:51:53 +00002711#define UDP_RSS_FLAGS (IXGBE_FLAG2_RSS_FIELD_IPV4_UDP | \
2712 IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2713static int ixgbe_set_rss_hash_opt(struct ixgbe_adapter *adapter,
2714 struct ethtool_rxnfc *nfc)
2715{
2716 u32 flags2 = adapter->flags2;
2717
2718 /*
2719 * RSS does not support anything other than hashing
2720 * to queues on src and dst IPs and ports
2721 */
2722 if (nfc->data & ~(RXH_IP_SRC | RXH_IP_DST |
2723 RXH_L4_B_0_1 | RXH_L4_B_2_3))
2724 return -EINVAL;
2725
2726 switch (nfc->flow_type) {
2727 case TCP_V4_FLOW:
2728 case TCP_V6_FLOW:
2729 if (!(nfc->data & RXH_IP_SRC) ||
2730 !(nfc->data & RXH_IP_DST) ||
2731 !(nfc->data & RXH_L4_B_0_1) ||
2732 !(nfc->data & RXH_L4_B_2_3))
2733 return -EINVAL;
2734 break;
2735 case UDP_V4_FLOW:
2736 if (!(nfc->data & RXH_IP_SRC) ||
2737 !(nfc->data & RXH_IP_DST))
2738 return -EINVAL;
2739 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
2740 case 0:
2741 flags2 &= ~IXGBE_FLAG2_RSS_FIELD_IPV4_UDP;
2742 break;
2743 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
2744 flags2 |= IXGBE_FLAG2_RSS_FIELD_IPV4_UDP;
2745 break;
2746 default:
2747 return -EINVAL;
2748 }
2749 break;
2750 case UDP_V6_FLOW:
2751 if (!(nfc->data & RXH_IP_SRC) ||
2752 !(nfc->data & RXH_IP_DST))
2753 return -EINVAL;
2754 switch (nfc->data & (RXH_L4_B_0_1 | RXH_L4_B_2_3)) {
2755 case 0:
2756 flags2 &= ~IXGBE_FLAG2_RSS_FIELD_IPV6_UDP;
2757 break;
2758 case (RXH_L4_B_0_1 | RXH_L4_B_2_3):
2759 flags2 |= IXGBE_FLAG2_RSS_FIELD_IPV6_UDP;
2760 break;
2761 default:
2762 return -EINVAL;
2763 }
2764 break;
2765 case AH_ESP_V4_FLOW:
2766 case AH_V4_FLOW:
2767 case ESP_V4_FLOW:
2768 case SCTP_V4_FLOW:
2769 case AH_ESP_V6_FLOW:
2770 case AH_V6_FLOW:
2771 case ESP_V6_FLOW:
2772 case SCTP_V6_FLOW:
2773 if (!(nfc->data & RXH_IP_SRC) ||
2774 !(nfc->data & RXH_IP_DST) ||
2775 (nfc->data & RXH_L4_B_0_1) ||
2776 (nfc->data & RXH_L4_B_2_3))
2777 return -EINVAL;
2778 break;
2779 default:
2780 return -EINVAL;
2781 }
2782
2783 /* if we changed something we need to update flags */
2784 if (flags2 != adapter->flags2) {
2785 struct ixgbe_hw *hw = &adapter->hw;
2786 u32 mrqc = IXGBE_READ_REG(hw, IXGBE_MRQC);
2787
2788 if ((flags2 & UDP_RSS_FLAGS) &&
2789 !(adapter->flags2 & UDP_RSS_FLAGS))
2790 e_warn(drv, "enabling UDP RSS: fragmented packets"
2791 " may arrive out of order to the stack above\n");
2792
2793 adapter->flags2 = flags2;
2794
2795 /* Perform hash on these packet types */
2796 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4
2797 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP
2798 | IXGBE_MRQC_RSS_FIELD_IPV6
2799 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP;
2800
2801 mrqc &= ~(IXGBE_MRQC_RSS_FIELD_IPV4_UDP |
2802 IXGBE_MRQC_RSS_FIELD_IPV6_UDP);
2803
2804 if (flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP)
2805 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP;
2806
2807 if (flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP)
2808 mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP;
2809
2810 IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc);
2811 }
2812
2813 return 0;
2814}
2815
Alexander Duycke4911d52011-05-11 07:18:52 +00002816static int ixgbe_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
2817{
2818 struct ixgbe_adapter *adapter = netdev_priv(dev);
2819 int ret = -EOPNOTSUPP;
2820
2821 switch (cmd->cmd) {
2822 case ETHTOOL_SRXCLSRLINS:
2823 ret = ixgbe_add_ethtool_fdir_entry(adapter, cmd);
2824 break;
2825 case ETHTOOL_SRXCLSRLDEL:
2826 ret = ixgbe_del_ethtool_fdir_entry(adapter, cmd);
2827 break;
Alexander Duyckef6afc02012-02-08 07:51:53 +00002828 case ETHTOOL_SRXFH:
2829 ret = ixgbe_set_rss_hash_opt(adapter, cmd);
2830 break;
Alexander Duycke4911d52011-05-11 07:18:52 +00002831 default:
2832 break;
2833 }
2834
2835 return ret;
2836}
2837
Jacob Kellere3aac882012-05-04 02:56:12 +00002838static int ixgbe_get_ts_info(struct net_device *dev,
2839 struct ethtool_ts_info *info)
2840{
2841 struct ixgbe_adapter *adapter = netdev_priv(dev);
2842
2843 switch (adapter->hw.mac.type) {
Jacob Kellere3aac882012-05-04 02:56:12 +00002844 case ixgbe_mac_X540:
2845 case ixgbe_mac_82599EB:
2846 info->so_timestamping =
Jacob Keller50f8d352012-10-31 22:30:54 +00002847 SOF_TIMESTAMPING_TX_SOFTWARE |
2848 SOF_TIMESTAMPING_RX_SOFTWARE |
2849 SOF_TIMESTAMPING_SOFTWARE |
Jacob Kellere3aac882012-05-04 02:56:12 +00002850 SOF_TIMESTAMPING_TX_HARDWARE |
2851 SOF_TIMESTAMPING_RX_HARDWARE |
2852 SOF_TIMESTAMPING_RAW_HARDWARE;
2853
2854 if (adapter->ptp_clock)
2855 info->phc_index = ptp_clock_index(adapter->ptp_clock);
2856 else
2857 info->phc_index = -1;
2858
2859 info->tx_types =
2860 (1 << HWTSTAMP_TX_OFF) |
2861 (1 << HWTSTAMP_TX_ON);
2862
2863 info->rx_filters =
2864 (1 << HWTSTAMP_FILTER_NONE) |
2865 (1 << HWTSTAMP_FILTER_PTP_V1_L4_SYNC) |
2866 (1 << HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) |
Jacob Kelleraeb82642012-11-15 01:10:37 +00002867 (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
2868 (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT) |
2869 (1 << HWTSTAMP_FILTER_PTP_V2_SYNC) |
2870 (1 << HWTSTAMP_FILTER_PTP_V2_L2_SYNC) |
2871 (1 << HWTSTAMP_FILTER_PTP_V2_L4_SYNC) |
2872 (1 << HWTSTAMP_FILTER_PTP_V2_DELAY_REQ) |
2873 (1 << HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ) |
2874 (1 << HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ) |
Jacob Keller1cc92eb2012-09-21 07:23:20 +00002875 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
Jacob Kellere3aac882012-05-04 02:56:12 +00002876 break;
Jacob Kellere3aac882012-05-04 02:56:12 +00002877 default:
2878 return ethtool_op_get_ts_info(dev, info);
2879 break;
2880 }
2881 return 0;
2882}
2883
Alexander Duyck5348c9d2013-01-12 06:33:52 +00002884static unsigned int ixgbe_max_channels(struct ixgbe_adapter *adapter)
2885{
2886 unsigned int max_combined;
2887 u8 tcs = netdev_get_num_tc(adapter->netdev);
2888
2889 if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) {
2890 /* We only support one q_vector without MSI-X */
2891 max_combined = 1;
2892 } else if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
2893 /* SR-IOV currently only allows one queue on the PF */
2894 max_combined = 1;
2895 } else if (tcs > 1) {
2896 /* For DCB report channels per traffic class */
2897 if (adapter->hw.mac.type == ixgbe_mac_82598EB) {
2898 /* 8 TC w/ 4 queues per TC */
2899 max_combined = 4;
2900 } else if (tcs > 4) {
2901 /* 8 TC w/ 8 queues per TC */
2902 max_combined = 8;
2903 } else {
2904 /* 4 TC w/ 16 queues per TC */
2905 max_combined = 16;
2906 }
2907 } else if (adapter->atr_sample_rate) {
2908 /* support up to 64 queues with ATR */
2909 max_combined = IXGBE_MAX_FDIR_INDICES;
2910 } else {
2911 /* support up to 16 queues with RSS */
2912 max_combined = IXGBE_MAX_RSS_INDICES;
2913 }
2914
2915 return max_combined;
2916}
2917
2918static void ixgbe_get_channels(struct net_device *dev,
2919 struct ethtool_channels *ch)
2920{
2921 struct ixgbe_adapter *adapter = netdev_priv(dev);
2922
2923 /* report maximum channels */
2924 ch->max_combined = ixgbe_max_channels(adapter);
2925
2926 /* report info for other vector */
2927 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) {
2928 ch->max_other = NON_Q_VECTORS;
2929 ch->other_count = NON_Q_VECTORS;
2930 }
2931
2932 /* record RSS queues */
2933 ch->combined_count = adapter->ring_feature[RING_F_RSS].indices;
2934
2935 /* nothing else to report if RSS is disabled */
2936 if (ch->combined_count == 1)
2937 return;
2938
2939 /* we do not support ATR queueing if SR-IOV is enabled */
2940 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
2941 return;
2942
2943 /* same thing goes for being DCB enabled */
2944 if (netdev_get_num_tc(dev) > 1)
2945 return;
2946
2947 /* if ATR is disabled we can exit */
2948 if (!adapter->atr_sample_rate)
2949 return;
2950
2951 /* report flow director queues as maximum channels */
2952 ch->combined_count = adapter->ring_feature[RING_F_FDIR].indices;
2953}
2954
Alexander Duyck4c696ca2013-01-17 08:39:33 +00002955static int ixgbe_set_channels(struct net_device *dev,
2956 struct ethtool_channels *ch)
2957{
2958 struct ixgbe_adapter *adapter = netdev_priv(dev);
2959 unsigned int count = ch->combined_count;
2960
2961 /* verify they are not requesting separate vectors */
2962 if (!count || ch->rx_count || ch->tx_count)
2963 return -EINVAL;
2964
2965 /* verify other_count has not changed */
2966 if (ch->other_count != NON_Q_VECTORS)
2967 return -EINVAL;
2968
2969 /* verify the number of channels does not exceed hardware limits */
2970 if (count > ixgbe_max_channels(adapter))
2971 return -EINVAL;
2972
2973 /* update feature limits from largest to smallest supported values */
2974 adapter->ring_feature[RING_F_FDIR].limit = count;
2975
2976 /* cap RSS limit at 16 */
2977 if (count > IXGBE_MAX_RSS_INDICES)
2978 count = IXGBE_MAX_RSS_INDICES;
2979 adapter->ring_feature[RING_F_RSS].limit = count;
2980
2981#ifdef IXGBE_FCOE
2982 /* cap FCoE limit at 8 */
2983 if (count > IXGBE_FCRETA_SIZE)
2984 count = IXGBE_FCRETA_SIZE;
2985 adapter->ring_feature[RING_F_FCOE].limit = count;
2986
2987#endif
2988 /* use setup TC to update any traffic class queue mapping */
2989 return ixgbe_setup_tc(dev, netdev_get_num_tc(dev));
2990}
2991
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00002992static int ixgbe_get_module_info(struct net_device *dev,
2993 struct ethtool_modinfo *modinfo)
2994{
2995 struct ixgbe_adapter *adapter = netdev_priv(dev);
2996 struct ixgbe_hw *hw = &adapter->hw;
2997 u32 status;
2998 u8 sff8472_rev, addr_mode;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00002999 bool page_swap = false;
3000
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003001 /* Check whether we support SFF-8472 or not */
3002 status = hw->phy.ops.read_i2c_eeprom(hw,
3003 IXGBE_SFF_SFF_8472_COMP,
3004 &sff8472_rev);
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003005 if (status != 0)
3006 return -EIO;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003007
3008 /* addressing mode is not supported */
3009 status = hw->phy.ops.read_i2c_eeprom(hw,
3010 IXGBE_SFF_SFF_8472_SWAP,
3011 &addr_mode);
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003012 if (status != 0)
3013 return -EIO;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003014
3015 if (addr_mode & IXGBE_SFF_ADDRESSING_MODE) {
3016 e_err(drv, "Address change required to access page 0xA2, but not supported. Please report the module type to the driver maintainers.\n");
3017 page_swap = true;
3018 }
3019
3020 if (sff8472_rev == IXGBE_SFF_SFF_8472_UNSUP || page_swap) {
3021 /* We have a SFP, but it does not support SFF-8472 */
3022 modinfo->type = ETH_MODULE_SFF_8079;
3023 modinfo->eeprom_len = ETH_MODULE_SFF_8079_LEN;
3024 } else {
3025 /* We have a SFP which supports a revision of SFF-8472. */
3026 modinfo->type = ETH_MODULE_SFF_8472;
3027 modinfo->eeprom_len = ETH_MODULE_SFF_8472_LEN;
3028 }
3029
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003030 return 0;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003031}
3032
3033static int ixgbe_get_module_eeprom(struct net_device *dev,
3034 struct ethtool_eeprom *ee,
3035 u8 *data)
3036{
3037 struct ixgbe_adapter *adapter = netdev_priv(dev);
3038 struct ixgbe_hw *hw = &adapter->hw;
3039 u32 status = IXGBE_ERR_PHY_ADDR_INVALID;
3040 u8 databyte = 0xFF;
3041 int i = 0;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003042
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003043 if (ee->len == 0)
3044 return -EINVAL;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003045
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003046 for (i = ee->offset; i < ee->offset + ee->len; i++) {
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003047 /* I2C reads can take long time */
3048 if (test_bit(__IXGBE_IN_SFP_INIT, &adapter->state))
3049 return -EBUSY;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003050
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003051 if (i < ETH_MODULE_SFF_8079_LEN)
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003052 status = hw->phy.ops.read_i2c_eeprom(hw, i, &databyte);
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003053 else
3054 status = hw->phy.ops.read_i2c_sff8472(hw, i, &databyte);
3055
3056 if (status != 0)
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003057 return -EIO;
Emil Tantilova4b6fc62013-05-29 06:23:10 +00003058
3059 data[i - ee->offset] = databyte;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003060 }
3061
Emil Tantilov31c7d2b2013-08-13 04:59:29 +00003062 return 0;
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003063}
3064
Jesse Brandeburgb9804972008-09-11 20:00:29 -07003065static const struct ethtool_ops ixgbe_ethtool_ops = {
Auke Kok9a799d72007-09-15 14:07:45 -07003066 .get_settings = ixgbe_get_settings,
3067 .set_settings = ixgbe_set_settings,
3068 .get_drvinfo = ixgbe_get_drvinfo,
3069 .get_regs_len = ixgbe_get_regs_len,
3070 .get_regs = ixgbe_get_regs,
3071 .get_wol = ixgbe_get_wol,
PJ Waskiewicze63d9762009-03-19 01:23:46 +00003072 .set_wol = ixgbe_set_wol,
Auke Kok9a799d72007-09-15 14:07:45 -07003073 .nway_reset = ixgbe_nway_reset,
3074 .get_link = ethtool_op_get_link,
3075 .get_eeprom_len = ixgbe_get_eeprom_len,
3076 .get_eeprom = ixgbe_get_eeprom,
Emil Tantilov2fa5eef2011-10-06 08:57:04 +00003077 .set_eeprom = ixgbe_set_eeprom,
Auke Kok9a799d72007-09-15 14:07:45 -07003078 .get_ringparam = ixgbe_get_ringparam,
3079 .set_ringparam = ixgbe_set_ringparam,
3080 .get_pauseparam = ixgbe_get_pauseparam,
3081 .set_pauseparam = ixgbe_set_pauseparam,
Auke Kok9a799d72007-09-15 14:07:45 -07003082 .get_msglevel = ixgbe_get_msglevel,
3083 .set_msglevel = ixgbe_set_msglevel,
Peter P Waskiewicz Jrda4dd0f2009-06-04 11:10:35 +00003084 .self_test = ixgbe_diag_test,
Auke Kok9a799d72007-09-15 14:07:45 -07003085 .get_strings = ixgbe_get_strings,
Emil Tantilov66e69612011-04-16 06:12:51 +00003086 .set_phys_id = ixgbe_set_phys_id,
Peter P Waskiewiczb4617242008-09-11 20:04:46 -07003087 .get_sset_count = ixgbe_get_sset_count,
Auke Kok9a799d72007-09-15 14:07:45 -07003088 .get_ethtool_stats = ixgbe_get_ethtool_stats,
3089 .get_coalesce = ixgbe_get_coalesce,
3090 .set_coalesce = ixgbe_set_coalesce,
Alexander Duyck91cd94b2011-05-11 07:18:41 +00003091 .get_rxnfc = ixgbe_get_rxnfc,
Alexander Duycke4911d52011-05-11 07:18:52 +00003092 .set_rxnfc = ixgbe_set_rxnfc,
Alexander Duyck5348c9d2013-01-12 06:33:52 +00003093 .get_channels = ixgbe_get_channels,
Alexander Duyck4c696ca2013-01-17 08:39:33 +00003094 .set_channels = ixgbe_set_channels,
Jacob Kellere3aac882012-05-04 02:56:12 +00003095 .get_ts_info = ixgbe_get_ts_info,
Aurélien Guillaume71858ac2013-01-17 06:55:24 +00003096 .get_module_info = ixgbe_get_module_info,
3097 .get_module_eeprom = ixgbe_get_module_eeprom,
Auke Kok9a799d72007-09-15 14:07:45 -07003098};
3099
3100void ixgbe_set_ethtool_ops(struct net_device *netdev)
3101{
3102 SET_ETHTOOL_OPS(netdev, &ixgbe_ethtool_ops);
3103}